Initial commit of Twenty Fifteen
This commit is contained in:
parent
7ac1fa40e8
commit
05a61a02c9
148 changed files with 30516 additions and 0 deletions
30
twentyfifteen/404.php
Normal file
30
twentyfifteen/404.php
Normal file
|
@ -0,0 +1,30 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying 404 pages (not found)
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<section class="error-404 not-found">
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php _e( 'Oops! That page can’t be found.', 'twentyfifteen' ); ?></h1>
|
||||
</header><!-- .page-header -->
|
||||
|
||||
<div class="page-content">
|
||||
<p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentyfifteen' ); ?></p>
|
||||
|
||||
<?php get_search_form(); ?>
|
||||
</div><!-- .page-content -->
|
||||
</section><!-- .error-404 -->
|
||||
|
||||
</main><!-- .site-main -->
|
||||
</div><!-- .content-area -->
|
||||
|
||||
<?php get_footer(); ?>
|
64
twentyfifteen/archive.php
Normal file
64
twentyfifteen/archive.php
Normal file
|
@ -0,0 +1,64 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying archive pages
|
||||
*
|
||||
* Used to display archive-type pages if nothing more specific matches a query.
|
||||
* For example, puts together date-based pages if no date.php file exists.
|
||||
*
|
||||
* If you'd like to further customize these archive views, you may create a
|
||||
* new template file for each one. For example, tag.php (Tag archives),
|
||||
* category.php (Category archives), author.php (Author archives), etc.
|
||||
*
|
||||
* @link https://codex.wordpress.org/Template_Hierarchy
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<section id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<header class="page-header">
|
||||
<?php
|
||||
the_archive_title( '<h1 class="page-title">', '</h1>' );
|
||||
the_archive_description( '<div class="taxonomy-description">', '</div>' );
|
||||
?>
|
||||
</header><!-- .page-header -->
|
||||
|
||||
<?php
|
||||
// Start the Loop.
|
||||
while ( have_posts() ) : the_post();
|
||||
|
||||
/*
|
||||
* Include the Post-Format-specific template for the content.
|
||||
* If you want to override this in a child theme, then include a file
|
||||
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'content', get_post_format() );
|
||||
|
||||
// End the loop.
|
||||
endwhile;
|
||||
|
||||
// Previous/next page navigation.
|
||||
the_posts_pagination( array(
|
||||
'prev_text' => __( 'Previous page', 'twentyfifteen' ),
|
||||
'next_text' => __( 'Next page', 'twentyfifteen' ),
|
||||
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>',
|
||||
) );
|
||||
|
||||
// If no content, include the "No posts found" template.
|
||||
else :
|
||||
get_template_part( 'content', 'none' );
|
||||
|
||||
endif;
|
||||
?>
|
||||
|
||||
</main><!-- .site-main -->
|
||||
</section><!-- .content-area -->
|
||||
|
||||
<?php get_footer(); ?>
|
39
twentyfifteen/author-bio.php
Normal file
39
twentyfifteen/author-bio.php
Normal file
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying Author bios
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
?>
|
||||
|
||||
<div class="author-info">
|
||||
<h2 class="author-heading"><?php _e( 'Published by', 'twentyfifteen' ); ?></h2>
|
||||
<div class="author-avatar">
|
||||
<?php
|
||||
/**
|
||||
* Filter the author bio avatar size.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param int $size The avatar height and width size in pixels.
|
||||
*/
|
||||
$author_bio_avatar_size = apply_filters( 'twentyfifteen_author_bio_avatar_size', 56 );
|
||||
|
||||
echo get_avatar( get_the_author_meta( 'user_email' ), $author_bio_avatar_size );
|
||||
?>
|
||||
</div><!-- .author-avatar -->
|
||||
|
||||
<div class="author-description">
|
||||
<h3 class="author-title"><?php echo get_the_author(); ?></h3>
|
||||
|
||||
<p class="author-bio">
|
||||
<?php the_author_meta( 'description' ); ?>
|
||||
<a class="author-link" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" rel="author">
|
||||
<?php printf( __( 'View all posts by %s', 'twentyfifteen' ), get_the_author() ); ?>
|
||||
</a>
|
||||
</p><!-- .author-bio -->
|
||||
|
||||
</div><!-- .author-description -->
|
||||
</div><!-- .author-info -->
|
74
twentyfifteen/comments.php
Normal file
74
twentyfifteen/comments.php
Normal file
|
@ -0,0 +1,74 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying comments
|
||||
*
|
||||
* The area of the page that contains both current comments
|
||||
* and the comment form.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
|
||||
/*
|
||||
* If the current post is protected by a password and
|
||||
* the visitor has not yet entered the password we will
|
||||
* return early without loading the comments.
|
||||
*/
|
||||
if ( post_password_required() ) {
|
||||
return;
|
||||
}
|
||||
?>
|
||||
|
||||
<div id="comments" class="comments-area">
|
||||
|
||||
<?php if ( have_comments() ) : ?>
|
||||
<h2 class="comments-title">
|
||||
<?php
|
||||
$comments_number = get_comments_number();
|
||||
if ( '1' === $comments_number ) {
|
||||
/* translators: %s: post title */
|
||||
printf( _x( 'One thought on “%s”', 'comments title', 'twentyfifteen' ), get_the_title() );
|
||||
} else {
|
||||
printf(
|
||||
/* translators: 1: number of comments, 2: post title */
|
||||
_nx(
|
||||
'%1$s thought on “%2$s”',
|
||||
'%1$s thoughts on “%2$s”',
|
||||
$comments_number,
|
||||
'comments title',
|
||||
'twentyfifteen'
|
||||
),
|
||||
number_format_i18n( $comments_number ),
|
||||
get_the_title()
|
||||
);
|
||||
}
|
||||
?>
|
||||
</h2>
|
||||
|
||||
<?php twentyfifteen_comment_nav(); ?>
|
||||
|
||||
<ol class="comment-list">
|
||||
<?php
|
||||
wp_list_comments( array(
|
||||
'style' => 'ol',
|
||||
'short_ping' => true,
|
||||
'avatar_size' => 56,
|
||||
) );
|
||||
?>
|
||||
</ol><!-- .comment-list -->
|
||||
|
||||
<?php twentyfifteen_comment_nav(); ?>
|
||||
|
||||
<?php endif; // have_comments() ?>
|
||||
|
||||
<?php
|
||||
// If comments are closed and there are comments, let's leave a little note, shall we?
|
||||
if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
|
||||
?>
|
||||
<p class="no-comments"><?php _e( 'Comments are closed.', 'twentyfifteen' ); ?></p>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php comment_form(); ?>
|
||||
|
||||
</div><!-- .comments-area -->
|
60
twentyfifteen/content-link.php
Normal file
60
twentyfifteen/content-link.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying link post formats
|
||||
*
|
||||
* Used for both single and index/archive/search.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<?php twentyfifteen_post_thumbnail(); ?>
|
||||
|
||||
<header class="entry-header">
|
||||
<?php
|
||||
if ( is_single() ) :
|
||||
the_title( sprintf( '<h1 class="entry-title"><a href="%s">', esc_url( twentyfifteen_get_link_url() ) ), '</a></h1>' );
|
||||
else :
|
||||
the_title( sprintf( '<h2 class="entry-title"><a href="%s">', esc_url( twentyfifteen_get_link_url() ) ), '</a></h2>' );
|
||||
endif;
|
||||
?>
|
||||
</header>
|
||||
<!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
__( 'Continue reading %s', 'twentyfifteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span>', false )
|
||||
) );
|
||||
|
||||
wp_link_pages( array(
|
||||
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfifteen' ) . '</span>',
|
||||
'after' => '</div>',
|
||||
'link_before' => '<span>',
|
||||
'link_after' => '</span>',
|
||||
'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>%',
|
||||
'separator' => '<span class="screen-reader-text">, </span>',
|
||||
) );
|
||||
?>
|
||||
</div>
|
||||
<!-- .entry-content -->
|
||||
|
||||
<?php
|
||||
// Author bio.
|
||||
if ( is_single() && get_the_author_meta( 'description' ) ) :
|
||||
get_template_part( 'author-bio' );
|
||||
endif;
|
||||
?>
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php twentyfifteen_entry_meta(); ?>
|
||||
<?php edit_post_link( __( 'Edit', 'twentyfifteen' ), '<span class="edit-link">', '</span>' ); ?>
|
||||
</footer>
|
||||
<!-- .entry-footer -->
|
||||
|
||||
</article><!-- #post-## -->
|
37
twentyfifteen/content-none.php
Normal file
37
twentyfifteen/content-none.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
/**
|
||||
* The template part for displaying a message that posts cannot be found
|
||||
*
|
||||
* Learn more: {@link https://codex.wordpress.org/Template_Hierarchy}
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
?>
|
||||
|
||||
<section class="no-results not-found">
|
||||
<header class="page-header">
|
||||
<h1 class="page-title"><?php _e( 'Nothing Found', 'twentyfifteen' ); ?></h1>
|
||||
</header><!-- .page-header -->
|
||||
|
||||
<div class="page-content">
|
||||
|
||||
<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
|
||||
|
||||
<p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'twentyfifteen' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
|
||||
|
||||
<?php elseif ( is_search() ) : ?>
|
||||
|
||||
<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'twentyfifteen' ); ?></p>
|
||||
<?php get_search_form(); ?>
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'twentyfifteen' ); ?></p>
|
||||
<?php get_search_form(); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</div><!-- .page-content -->
|
||||
</section><!-- .no-results -->
|
37
twentyfifteen/content-page.php
Normal file
37
twentyfifteen/content-page.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
/**
|
||||
* The template used for displaying page content
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<?php
|
||||
// Post thumbnail.
|
||||
twentyfifteen_post_thumbnail();
|
||||
?>
|
||||
|
||||
<header class="entry-header">
|
||||
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php the_content(); ?>
|
||||
<?php
|
||||
wp_link_pages( array(
|
||||
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfifteen' ) . '</span>',
|
||||
'after' => '</div>',
|
||||
'link_before' => '<span>',
|
||||
'link_after' => '</span>',
|
||||
'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>%',
|
||||
'separator' => '<span class="screen-reader-text">, </span>',
|
||||
) );
|
||||
?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<?php edit_post_link( __( 'Edit', 'twentyfifteen' ), '<footer class="entry-footer"><span class="edit-link">', '</span></footer><!-- .entry-footer -->' ); ?>
|
||||
|
||||
</article><!-- #post-## -->
|
37
twentyfifteen/content-search.php
Normal file
37
twentyfifteen/content-search.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
/**
|
||||
* The template part for displaying results in search pages
|
||||
*
|
||||
* Learn more: {@link https://codex.wordpress.org/Template_Hierarchy}
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<?php twentyfifteen_post_thumbnail(); ?>
|
||||
|
||||
<header class="entry-header">
|
||||
<?php the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' ); ?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-summary">
|
||||
<?php the_excerpt(); ?>
|
||||
</div><!-- .entry-summary -->
|
||||
|
||||
<?php if ( 'post' == get_post_type() ) : ?>
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php twentyfifteen_entry_meta(); ?>
|
||||
<?php edit_post_link( __( 'Edit', 'twentyfifteen' ), '<span class="edit-link">', '</span>' ); ?>
|
||||
</footer><!-- .entry-footer -->
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<?php edit_post_link( __( 'Edit', 'twentyfifteen' ), '<footer class="entry-footer"><span class="edit-link">', '</span></footer><!-- .entry-footer -->' ); ?>
|
||||
|
||||
<?php endif; ?>
|
||||
|
||||
</article><!-- #post-## -->
|
60
twentyfifteen/content.php
Normal file
60
twentyfifteen/content.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
/**
|
||||
* The default template for displaying content
|
||||
*
|
||||
* Used for both single and index/archive/search.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<?php
|
||||
// Post thumbnail.
|
||||
twentyfifteen_post_thumbnail();
|
||||
?>
|
||||
|
||||
<header class="entry-header">
|
||||
<?php
|
||||
if ( is_single() ) :
|
||||
the_title( '<h1 class="entry-title">', '</h1>' );
|
||||
else :
|
||||
the_title( sprintf( '<h2 class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h2>' );
|
||||
endif;
|
||||
?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
<?php
|
||||
/* translators: %s: Name of current post */
|
||||
the_content( sprintf(
|
||||
__( 'Continue reading %s', 'twentyfifteen' ),
|
||||
the_title( '<span class="screen-reader-text">', '</span>', false )
|
||||
) );
|
||||
|
||||
wp_link_pages( array(
|
||||
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfifteen' ) . '</span>',
|
||||
'after' => '</div>',
|
||||
'link_before' => '<span>',
|
||||
'link_after' => '</span>',
|
||||
'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>%',
|
||||
'separator' => '<span class="screen-reader-text">, </span>',
|
||||
) );
|
||||
?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<?php
|
||||
// Author bio.
|
||||
if ( is_single() && get_the_author_meta( 'description' ) ) :
|
||||
get_template_part( 'author-bio' );
|
||||
endif;
|
||||
?>
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php twentyfifteen_entry_meta(); ?>
|
||||
<?php edit_post_link( __( 'Edit', 'twentyfifteen' ), '<span class="edit-link">', '</span>' ); ?>
|
||||
</footer><!-- .entry-footer -->
|
||||
|
||||
</article><!-- #post-## -->
|
482
twentyfifteen/css/editor-style.css
Normal file
482
twentyfifteen/css/editor-style.css
Normal file
|
@ -0,0 +1,482 @@
|
|||
/*
|
||||
Theme Name: Twenty Fifteen
|
||||
Description: Used to style the TinyMCE editor.
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Table of Contents:
|
||||
*
|
||||
* 1.0 - Body
|
||||
* 2.0 - Typography
|
||||
* 3.0 - Elements
|
||||
* 4.0 - Alignment
|
||||
* 5.0 - Caption
|
||||
* 6.0 - Galleries
|
||||
* 7.0 - Audio / Video
|
||||
* 8.0 - RTL
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* 1.0 Body
|
||||
*/
|
||||
|
||||
body {
|
||||
color: #333;
|
||||
font-family: "Noto Serif", serif;
|
||||
font-weight: 400;
|
||||
font-size: 17px;
|
||||
line-height: 1.6471;
|
||||
margin: 20px 40px;
|
||||
max-width: 660px;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 2.0 Typography
|
||||
*/
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
clear: both;
|
||||
font-weight: 700;
|
||||
margin: 56px 0 28px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 35px;
|
||||
line-height: 1.2308;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 29px;
|
||||
line-height: 1.2069;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 24px;
|
||||
line-height: 1.1667;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 20px;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
h5,
|
||||
h6 {
|
||||
font-size: 17px;
|
||||
letter-spacing: 0.1em;
|
||||
line-height: 1.2353;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
h1:first-child,
|
||||
h2:first-child,
|
||||
h3:first-child,
|
||||
h4:first-child,
|
||||
h5:first-child,
|
||||
h6:first-child {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: 0 0 28px;
|
||||
}
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
dfn,
|
||||
cite,
|
||||
em,
|
||||
i {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: 4px solid #707070;
|
||||
color: #707070;
|
||||
font-size: 20px;
|
||||
font-style: italic;
|
||||
line-height: 1.8182;
|
||||
margin: 0 0 35px -21px;
|
||||
padding-left: 17px;
|
||||
}
|
||||
|
||||
blockquote > blockquote {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
blockquote p {
|
||||
margin-bottom: 35px;
|
||||
}
|
||||
|
||||
blockquote > p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
blockquote cite,
|
||||
blockquote small {
|
||||
color: #333;
|
||||
font-family: "Noto Sans", sans-serif;
|
||||
font-size: 17px;
|
||||
line-height: 1.6471;
|
||||
}
|
||||
|
||||
blockquote em,
|
||||
blockquote i,
|
||||
blockquote cite {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
blockquote strong,
|
||||
blockquote b {
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
address {
|
||||
font-style: italic;
|
||||
margin: 0 0 28px;
|
||||
}
|
||||
|
||||
code,
|
||||
kbd,
|
||||
tt,
|
||||
var,
|
||||
samp,
|
||||
pre {
|
||||
font-family: Inconsolata, monospace;
|
||||
}
|
||||
|
||||
pre {
|
||||
background-color: #fcfcfc;
|
||||
border: 1px solid #eaeaea;
|
||||
font-size: 17px;
|
||||
line-height: 1.2353;
|
||||
margin-bottom: 28px;
|
||||
max-width: 100%;
|
||||
overflow: auto;
|
||||
padding: 14px;
|
||||
white-space: pre;
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted #eaeaea;
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
mark,
|
||||
ins {
|
||||
background-color: #fff9c0;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
sup,
|
||||
sub {
|
||||
font-size: 75%;
|
||||
height: 0;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
bottom: 1ex;
|
||||
}
|
||||
|
||||
sub {
|
||||
top: .5ex;
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 75%;
|
||||
}
|
||||
|
||||
big {
|
||||
font-size: 125%;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 3.0 Elements
|
||||
*/
|
||||
|
||||
hr {
|
||||
background-color: #eaeaea;
|
||||
border: 0;
|
||||
height: 1px;
|
||||
margin-bottom: 28px;
|
||||
}
|
||||
|
||||
ul,
|
||||
ol {
|
||||
margin: 0 0 28px 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: disc;
|
||||
}
|
||||
|
||||
ol {
|
||||
list-style: decimal;
|
||||
}
|
||||
|
||||
li > ul,
|
||||
li > ol {
|
||||
margin: 0 0 0 23px;
|
||||
}
|
||||
|
||||
blockquote > ul,
|
||||
blockquote > ol {
|
||||
margin-left: 28px;
|
||||
}
|
||||
|
||||
dl {
|
||||
margin: 0 0 28px;
|
||||
}
|
||||
|
||||
dt {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
dd {
|
||||
margin: 0 0 28px;
|
||||
}
|
||||
|
||||
table,
|
||||
th,
|
||||
td,
|
||||
.mce-item-table,
|
||||
.mce-item-table th,
|
||||
.mce-item-table td {
|
||||
border: 1px solid #eaeaea;
|
||||
}
|
||||
|
||||
table a {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
table,
|
||||
.mce-item-table {
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
border-width: 1px 0 0 1px;
|
||||
margin: 0 0 28px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
table th,
|
||||
.mce-item-table th,
|
||||
table caption {
|
||||
border-width: 0 1px 1px 0;
|
||||
font-family: "Noto Serif", serif;
|
||||
font-size: 17px;
|
||||
font-weight: 700;
|
||||
padding: 7px;
|
||||
text-align: left;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
table td,
|
||||
.mce-item-table td {
|
||||
border-width: 0 1px 1px 0;
|
||||
font-family: "Noto Serif", serif;
|
||||
font-size: 17px;
|
||||
padding: 7px;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
height: auto;
|
||||
max-width: 100%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
figure {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
del {
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
a {
|
||||
border-bottom: 1px solid #333;
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 4.0 Alignment
|
||||
*/
|
||||
|
||||
.alignleft {
|
||||
float: left;
|
||||
margin: 7px 28px 28px 0;
|
||||
}
|
||||
|
||||
.alignright {
|
||||
float: right;
|
||||
margin: 7px 0 28px 28px;
|
||||
}
|
||||
|
||||
.aligncenter {
|
||||
clear: both;
|
||||
display: block;
|
||||
margin: 7px auto;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 5.0 Caption
|
||||
*/
|
||||
|
||||
.wp-caption {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: #707070;
|
||||
font-family: "Noto Sans", sans-serif;
|
||||
margin: 0 0 28px 0;
|
||||
max-width: 100%;
|
||||
padding: 0;
|
||||
text-align: inherit;
|
||||
}
|
||||
|
||||
.wp-caption.alignleft {
|
||||
margin: 7px 28px 21px 0;
|
||||
}
|
||||
|
||||
.wp-caption.alignright {
|
||||
margin: 7px 0 21px 28px;
|
||||
}
|
||||
|
||||
.wp-caption.aligncenter {
|
||||
margin: 7px auto;
|
||||
}
|
||||
|
||||
.wp-caption .wp-caption-text,
|
||||
.wp-caption-dd {
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
padding: 7px 0;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 6.0 Galleries
|
||||
*/
|
||||
|
||||
.gallery-item {
|
||||
display: inline-block;
|
||||
padding: 1.79104477%;
|
||||
text-align: center;
|
||||
vertical-align: top;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.gallery-columns-2 .gallery-item {
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
.gallery-columns-3 .gallery-item {
|
||||
max-width: 33.33%;
|
||||
}
|
||||
|
||||
.gallery-columns-4 .gallery-item {
|
||||
max-width: 25%;
|
||||
}
|
||||
|
||||
.gallery-columns-5 .gallery-item {
|
||||
max-width: 20%;
|
||||
}
|
||||
|
||||
.gallery-columns-6 .gallery-item {
|
||||
max-width: 16.66%;
|
||||
}
|
||||
|
||||
.gallery-columns-7 .gallery-item {
|
||||
max-width: 14.28%;
|
||||
}
|
||||
|
||||
.gallery-columns-8 .gallery-item {
|
||||
max-width: 12.5%;
|
||||
}
|
||||
|
||||
.gallery-columns-9 .gallery-item {
|
||||
max-width: 11.11%;
|
||||
}
|
||||
|
||||
.gallery .gallery-caption {
|
||||
color: #707070;
|
||||
display: block;
|
||||
font-family: "Noto Sans", sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
padding: 7px 0;
|
||||
}
|
||||
|
||||
.gallery-columns-6 .gallery-caption,
|
||||
.gallery-columns-7 .gallery-caption,
|
||||
.gallery-columns-8 .gallery-caption,
|
||||
.gallery-columns-9 .gallery-caption {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 7.0 Audio / Video
|
||||
*/
|
||||
|
||||
.mce-content-body .wpview-wrap {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.mce-content-body .wp-audio-playlist {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 8.0 RTL
|
||||
*/
|
||||
|
||||
body.rtl {
|
||||
font-family: Arial, Tahoma, sans-serif;
|
||||
}
|
||||
|
||||
.rtl blockquote {
|
||||
border-left: none;
|
||||
border-right: 4px solid #707070;
|
||||
margin: 0 -21px 35px 0;
|
||||
padding-left: 0;
|
||||
padding-right: 17px;
|
||||
}
|
||||
|
||||
.rtl blockquote > blockquote {
|
||||
margin-left: auto;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.rtl li > ul,
|
||||
.rtl li > ol {
|
||||
margin: 0 23px 0 0;
|
||||
}
|
||||
|
||||
.rtl table th,
|
||||
.rtl table caption {
|
||||
text-align: right;
|
||||
}
|
948
twentyfifteen/css/ie.css
Normal file
948
twentyfifteen/css/ie.css
Normal file
|
@ -0,0 +1,948 @@
|
|||
/*
|
||||
Theme Name: Twenty Fifteen
|
||||
Description: Global Styles for older IE versions (previous to IE9).
|
||||
*/
|
||||
|
||||
body,
|
||||
button,
|
||||
input,
|
||||
select,
|
||||
textarea {
|
||||
font-size: 19px;
|
||||
line-height: 1.6842;
|
||||
}
|
||||
|
||||
button,
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
p,
|
||||
address,
|
||||
pre,
|
||||
hr,
|
||||
ul,
|
||||
ol,
|
||||
dl,
|
||||
dd,
|
||||
table {
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
ul,
|
||||
ol {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
li > ul,
|
||||
li > ol,
|
||||
blockquote > ul,
|
||||
blockquote > ol {
|
||||
margin-left: 1.3333em;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-color: inherit;
|
||||
border-style: solid;
|
||||
border-width: 0 0 0 4px;
|
||||
font-size: 22px;
|
||||
line-height: 1.8182;
|
||||
margin-bottom: 1.8182em;
|
||||
margin-left: -1.0909em;
|
||||
padding-left: 0.9091em;
|
||||
}
|
||||
|
||||
blockquote > blockquote {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
blockquote p {
|
||||
margin-bottom: 1.8182em;
|
||||
}
|
||||
|
||||
blockquote cite,
|
||||
blockquote small {
|
||||
font-size: 19px;
|
||||
line-height: 1.6842;
|
||||
}
|
||||
|
||||
pre {
|
||||
line-height: 1.2632;
|
||||
}
|
||||
|
||||
.entry-content img,
|
||||
.entry-summary img,
|
||||
.page-content img,
|
||||
.comment-content img,
|
||||
.widget img {
|
||||
max-width: 660px;
|
||||
}
|
||||
|
||||
img.size-full,
|
||||
img.size-large,
|
||||
img.header-image,
|
||||
img.wp-post-image,
|
||||
img[class*="align"],
|
||||
img[class*="wp-image-"],
|
||||
img[class*="attachment-"] {
|
||||
height: auto;
|
||||
width: auto; /* Prevent stretching of full-size and large-size images with height and width attributes in IE8 */
|
||||
}
|
||||
|
||||
button,
|
||||
input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"],
|
||||
.post-password-form input[type="submit"],
|
||||
.widecolumn #submit,
|
||||
.widecolumn .mu_register input[type="submit"] {
|
||||
font-size: 16px;
|
||||
padding: 0.8125em 1.625em;
|
||||
}
|
||||
|
||||
input[type="text"],
|
||||
input[type="email"],
|
||||
input[type="url"],
|
||||
input[type="password"],
|
||||
input[type="search"],
|
||||
textarea {
|
||||
padding: 0.5278em;
|
||||
}
|
||||
|
||||
.main-navigation {
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
margin: 9.0909%;
|
||||
}
|
||||
|
||||
.main-navigation ul ul {
|
||||
border-bottom: 0;
|
||||
border-top: 0;
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.main-navigation a {
|
||||
padding: 0.75em 0;
|
||||
}
|
||||
|
||||
.main-navigation .menu-item-has-children > a {
|
||||
padding-right: 48px;
|
||||
}
|
||||
|
||||
.main-navigation .menu-item-description {
|
||||
font-size: 13px;
|
||||
line-height: 1.8462;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.social-navigation {
|
||||
margin: 9.0909%;
|
||||
max-width: 660px;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.social-navigation ul {
|
||||
margin-bottom: -1.2632em;
|
||||
}
|
||||
|
||||
.social-navigation a {
|
||||
width: 2.5263em;
|
||||
height: 2.5263em;
|
||||
}
|
||||
|
||||
.secondary-toggle {
|
||||
margin-top: -32px;
|
||||
right: 7.6897%;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
|
||||
.secondary-toggle:before {
|
||||
line-height: 64px;
|
||||
}
|
||||
|
||||
.post-password-form label,
|
||||
.post-navigation .meta-nav,
|
||||
.comment-navigation,
|
||||
.image-navigation,
|
||||
.author-heading,
|
||||
.author-bio,
|
||||
.entry-footer,
|
||||
.page-links a,
|
||||
.page-links span,
|
||||
.comment-metadata,
|
||||
.pingback .edit-link,
|
||||
.comment-list .reply,
|
||||
.comment-notes,
|
||||
.comment-awaiting-moderation,
|
||||
.logged-in-as,
|
||||
.comment-form label,
|
||||
.form-allowed-tags,
|
||||
.site-info,
|
||||
.wp-caption-text,
|
||||
.gallery-caption,
|
||||
.entry-caption,
|
||||
.widecolumn label,
|
||||
.widecolumn .mu_register label {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.post-navigation .post-title {
|
||||
font-size: 24px;
|
||||
line-height: 1.1667;
|
||||
}
|
||||
|
||||
.pagination .nav-links {
|
||||
min-height: 3.3684em;
|
||||
}
|
||||
|
||||
.pagination .page-numbers {
|
||||
line-height: 3.3684em;
|
||||
padding: 0 0.8421em;
|
||||
}
|
||||
|
||||
.pagination .prev,
|
||||
.pagination .next {
|
||||
padding: 0;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
|
||||
.pagination .prev:before,
|
||||
.pagination .next:before {
|
||||
line-height: 64px;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
}
|
||||
|
||||
.image-navigation a {
|
||||
display: block;
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
.image-navigation .nav-previous,
|
||||
.comment-navigation .nav-previous {
|
||||
float: left;
|
||||
width: 50%;
|
||||
}
|
||||
.image-navigation .nav-next,
|
||||
.comment-navigation .nav-next {
|
||||
float: right;
|
||||
text-align: right;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.image-navigation .nav-previous a:before,
|
||||
.image-navigation .nav-next a:after,
|
||||
.comment-navigation .nav-previous a:before,
|
||||
.comment-navigation .nav-next a:after {
|
||||
font-size: 24px;
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
blockquote.alignleft,
|
||||
.wp-caption.alignleft,
|
||||
img.alignleft {
|
||||
margin: 0.4211em 1.6842em 1.6842em 0;
|
||||
}
|
||||
|
||||
blockquote.alignright,
|
||||
.wp-caption.alignright,
|
||||
img.alignright {
|
||||
margin: 0.4211em 0 1.6842em 1.6842em;
|
||||
}
|
||||
|
||||
blockquote.aligncenter,
|
||||
.wp-caption.aligncenter,
|
||||
img.aligncenter {
|
||||
margin-top: 0.4211em;
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
border-top: 1px solid transparent;
|
||||
border-bottom: 1px solid transparent;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.secondary {
|
||||
background-color: #fff;
|
||||
margin: 0 auto;
|
||||
max-width: 807px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.site-main {
|
||||
padding: 7.6923% 0;
|
||||
}
|
||||
|
||||
.site-content {
|
||||
margin: 0 auto;
|
||||
max-width: 954px;
|
||||
}
|
||||
|
||||
.site-branding {
|
||||
background-color: inherit;
|
||||
margin: 0 auto;
|
||||
max-width: 954px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.site-title {
|
||||
font-size: 32px;
|
||||
line-height: 1.25;
|
||||
margin: 7.6897% 7.6897% 0;
|
||||
}
|
||||
|
||||
.site-description {
|
||||
background-color: inherit;
|
||||
display: block;
|
||||
filter: alpha(opacity=70);
|
||||
font-size: 16px;
|
||||
margin: 0.5em 7.6897% 7.6897%;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
position: static !important;
|
||||
}
|
||||
|
||||
.widget-area {
|
||||
clear: both;
|
||||
margin: 9.0909% 9.0909% 0;
|
||||
max-width: 660px;
|
||||
}
|
||||
|
||||
.widget {
|
||||
font-size: 16px;
|
||||
margin: 0 0 11.1111%;
|
||||
}
|
||||
|
||||
.widget p,
|
||||
.widget address,
|
||||
.widget hr,
|
||||
.widget ul,
|
||||
.widget ol,
|
||||
.widget dl,
|
||||
.widget dd,
|
||||
.widget table,
|
||||
.widget pre {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.widget li > ul,
|
||||
.widget li > ol {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.widget blockquote {
|
||||
font-size: 19px;
|
||||
line-height: 1.6842;
|
||||
margin-bottom: 1.6842em;
|
||||
margin-left: -1.2632em;
|
||||
padding-left: 1.0526em;
|
||||
}
|
||||
|
||||
.widget blockquote > blockquote {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.widget blockquote p {
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.widget blockquote cite,
|
||||
.widget blockquote small {
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.widget pre {
|
||||
line-height: 1.5;
|
||||
padding: 0.75em;
|
||||
}
|
||||
|
||||
.widget button,
|
||||
.widget input,
|
||||
.widget select,
|
||||
.widget textarea {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.widget button,
|
||||
.widget input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
.widget button,
|
||||
.widget input[type="button"],
|
||||
.widget input[type="reset"],
|
||||
.widget input[type="submit"] {
|
||||
font-size: 16px;
|
||||
padding: 0.8125em 1.625em;
|
||||
}
|
||||
|
||||
.widget input[type="text"],
|
||||
.widget input[type="email"],
|
||||
.widget input[type="url"],
|
||||
.widget input[type="password"],
|
||||
.widget input[type="search"],
|
||||
.widget textarea {
|
||||
padding: 0.75em;
|
||||
}
|
||||
|
||||
.widget-title {
|
||||
margin: 0 0 1.5em;
|
||||
}
|
||||
|
||||
.widget_calendar td,
|
||||
.widget_calendar th {
|
||||
line-height: 2.9375;
|
||||
}
|
||||
|
||||
.widget_calendar caption {
|
||||
margin: 0 0 1.5em;
|
||||
}
|
||||
|
||||
.widget_archive li,
|
||||
.widget_categories li,
|
||||
.widget_links li,
|
||||
.widget_meta li,
|
||||
.widget_nav_menu li,
|
||||
.widget_pages li,
|
||||
.widget_recent_comments li,
|
||||
.widget_recent_entries li {
|
||||
padding: 0.7188em 0;
|
||||
}
|
||||
|
||||
.widget_categories .children,
|
||||
.widget_nav_menu .sub-menu,
|
||||
.widget_pages .children {
|
||||
margin: 0.7188em 0 0 1em;
|
||||
padding-top: 0.7188em;
|
||||
}
|
||||
|
||||
.widget_rss li {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.widget_rss .rss-date,
|
||||
.widget_rss cite {
|
||||
font-size: 13px;
|
||||
line-height: 1.8462;
|
||||
}
|
||||
|
||||
.widget .wp-caption-text,
|
||||
.widget .gallery-caption {
|
||||
line-height: 1.5;
|
||||
padding: 0.5em 0;
|
||||
}
|
||||
|
||||
.hentry,
|
||||
.page-header,
|
||||
.page-content {
|
||||
margin: 0 7.6923%;
|
||||
}
|
||||
|
||||
.hentry + .hentry,
|
||||
.page-header + .hentry,
|
||||
.page-header + .page-content {
|
||||
margin-top: 7.6923%;
|
||||
}
|
||||
|
||||
.post-thumbnail {
|
||||
margin-bottom: 2.9474em;
|
||||
}
|
||||
|
||||
.entry-header {
|
||||
padding: 0 9.0909%;
|
||||
}
|
||||
|
||||
.entry-title,
|
||||
.widecolumn h2 {
|
||||
font-size: 39px;
|
||||
line-height: 1.2308;
|
||||
margin-bottom: 1.2308em;
|
||||
}
|
||||
|
||||
.entry-content,
|
||||
.entry-summary {
|
||||
padding: 0 9.0909% 9.0909%;
|
||||
}
|
||||
|
||||
.entry-content h1,
|
||||
.entry-summary h1,
|
||||
.page-content h1,
|
||||
.comment-content h1 {
|
||||
font-size: 39px;
|
||||
line-height: 1.2308;
|
||||
margin-top: 1.641em;
|
||||
margin-bottom: 0.8205em;
|
||||
}
|
||||
|
||||
.entry-content h2,
|
||||
.entry-summary h2,
|
||||
.page-content h2,
|
||||
.comment-content h2 {
|
||||
font-size: 32px;
|
||||
line-height: 1.25;
|
||||
margin-top: 2em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.entry-content h3,
|
||||
.entry-summary h3,
|
||||
.page-content h3,
|
||||
.comment-content h3 {
|
||||
font-size: 27px;
|
||||
line-height: 1.1852;
|
||||
margin-top: 2.3704em;
|
||||
margin-bottom: 1.1852em;
|
||||
}
|
||||
|
||||
.entry-content h4,
|
||||
.entry-summary h4,
|
||||
.page-content h4,
|
||||
.comment-content h4 {
|
||||
font-size: 22px;
|
||||
line-height: 1.4545;
|
||||
margin-top: 2.9091em;
|
||||
margin-bottom: 1.4545em;
|
||||
}
|
||||
|
||||
.entry-content h5,
|
||||
.entry-content h6,
|
||||
.entry-summary h5,
|
||||
.entry-summary h6,
|
||||
.page-content h5,
|
||||
.page-content h6,
|
||||
.comment-content h5,
|
||||
.comment-content h6 {
|
||||
font-size: 19px;
|
||||
line-height: 1.2632;
|
||||
margin-top: 3.3684em;
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.entry-content .more-link:after {
|
||||
font-size: 24px;
|
||||
top: 3px;
|
||||
}
|
||||
|
||||
.author-info {
|
||||
margin: 0 9.0909%;
|
||||
padding: 9.0909% 0;
|
||||
}
|
||||
|
||||
.author-info .avatar {
|
||||
margin: 0 1.6842em 1.6842em 0;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
}
|
||||
|
||||
.author-link:after {
|
||||
font-size: 24px;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.entry-footer {
|
||||
padding: 4.5454% 9.0909%;
|
||||
}
|
||||
|
||||
.posted-on:before,
|
||||
.byline:before,
|
||||
.cat-links:before,
|
||||
.tags-links:before,
|
||||
.comments-link:before,
|
||||
.entry-format:before,
|
||||
.edit-link:before,
|
||||
.full-size-link:before {
|
||||
top: 4px;
|
||||
}
|
||||
|
||||
.updated {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.updated.published {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
border-color: inherit;
|
||||
border-style: solid;
|
||||
border-width: 0 0 0 7px;
|
||||
padding: 3.8461% 7.6923%;
|
||||
}
|
||||
|
||||
.page-title,
|
||||
.taxonomy-description {
|
||||
margin-left: -7px;
|
||||
}
|
||||
|
||||
.taxonomy-description {
|
||||
padding-top: 0.4211em;
|
||||
}
|
||||
|
||||
.page-title,
|
||||
.comments-title,
|
||||
.comment-reply-title,
|
||||
.post-navigation .post-title {
|
||||
font-size: 27px;
|
||||
line-height: 1.1852;
|
||||
}
|
||||
|
||||
.page-content {
|
||||
padding: 7.6923%;
|
||||
}
|
||||
|
||||
.page-links {
|
||||
margin-bottom: 1.4736em;
|
||||
}
|
||||
|
||||
.page-links a,
|
||||
.page-links > span {
|
||||
margin: 0 0.25em 0.25em 0;
|
||||
}
|
||||
|
||||
.format-aside .entry-title,
|
||||
.format-image .entry-title,
|
||||
.format-video .entry-title,
|
||||
.format-quote .entry-title,
|
||||
.format-gallery .entry-title,
|
||||
.format-status .entry-title,
|
||||
.format-link .entry-title,
|
||||
.format-audio .entry-title,
|
||||
.format-chat .entry-title {
|
||||
font-size: 22px;
|
||||
line-height: 1.4545;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.format-link .entry-title a:after {
|
||||
top: 0.125em;
|
||||
}
|
||||
|
||||
.comments-title {
|
||||
margin-bottom: 1.4545em;
|
||||
}
|
||||
|
||||
.comment-list article,
|
||||
.comment-list .pingback,
|
||||
.comment-list .trackback {
|
||||
padding: 1.6842em 0;
|
||||
}
|
||||
|
||||
.comment-list + .comment-respond,
|
||||
.comment-navigation + .comment-respond {
|
||||
padding-top: 1.6842em;
|
||||
}
|
||||
|
||||
.comment-list .children > li {
|
||||
padding-left: 1.4737em;
|
||||
}
|
||||
|
||||
.comment-meta {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.comment-author {
|
||||
margin-bottom: 0;
|
||||
padding-left: 4.6315em;
|
||||
}
|
||||
|
||||
.comment-author .avatar {
|
||||
margin: 0;
|
||||
position: absolute;
|
||||
top: 3px;
|
||||
left: 0;
|
||||
width: 56px;
|
||||
height: 56px;
|
||||
}
|
||||
|
||||
.comment-metadata {
|
||||
line-height: 2;
|
||||
padding-left: 5.5em;
|
||||
}
|
||||
|
||||
.comment-metadata .edit-link:before,
|
||||
.pingback .edit-link:before {
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
.bypostauthor > article .fn:after {
|
||||
top: 8px;
|
||||
left: 6px;
|
||||
}
|
||||
|
||||
.comment-content ul,
|
||||
.comment-content ol {
|
||||
margin: 0 0 1.6842em 0;
|
||||
}
|
||||
|
||||
.comment-content li > ul,
|
||||
.comment-content li > ol,
|
||||
.comment-content blockquote > ul,
|
||||
.comment-content blockquote > ol {
|
||||
margin-left: 1.3333em;
|
||||
}
|
||||
|
||||
.comment-list .reply a {
|
||||
padding: 0.4375em 0.875em;
|
||||
}
|
||||
|
||||
.comment-form,
|
||||
.no-comments {
|
||||
padding-top: 1.6842em;
|
||||
}
|
||||
|
||||
.comment-reply-title small a:before {
|
||||
top: -1px;
|
||||
}
|
||||
|
||||
.comment-list .reply {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.site-footer {
|
||||
border-top: 1px solid transparent;
|
||||
border-bottom: 1px solid transparent;
|
||||
margin: 0 auto;
|
||||
max-width: 806px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.site-info {
|
||||
margin: 4.5454% 9.0909%;
|
||||
}
|
||||
|
||||
.post-navigation {
|
||||
border-top: 0;
|
||||
margin: 7.6923% 7.6923% 0;
|
||||
}
|
||||
|
||||
.post-navigation a {
|
||||
padding: 4.5454% 9.0909%;
|
||||
}
|
||||
|
||||
.pagination {
|
||||
border-top: 0;
|
||||
margin: 7.6923% 7.6923% 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.pagination .page-numbers {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.pagination .meta-nav {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.image-navigation {
|
||||
padding: 0 9.0909%;
|
||||
}
|
||||
|
||||
.comments-area {
|
||||
border-top: 0;
|
||||
margin: 7.6923% 7.6923% 0;
|
||||
}
|
||||
|
||||
embed,
|
||||
iframe,
|
||||
object,
|
||||
video {
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.wp-audio-shortcode,
|
||||
.wp-video,
|
||||
.wp-playlist.wp-audio-playlist {
|
||||
font-size: 19px;
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.wp-caption,
|
||||
.gallery {
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.wp-caption-text,
|
||||
.gallery-caption {
|
||||
padding: 0.5em 0;
|
||||
}
|
||||
|
||||
.widecolumn {
|
||||
margin: 7.6923%;
|
||||
}
|
||||
|
||||
.widecolumn .mu_alert {
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.widecolumn p {
|
||||
margin: 1.6842em 0;
|
||||
}
|
||||
|
||||
.widecolumn p + h2 {
|
||||
margin-top: 1.641em;
|
||||
}
|
||||
|
||||
.widecolumn #key,
|
||||
.widecolumn .mu_register #blog_title,
|
||||
.widecolumn .mu_register #user_email,
|
||||
.widecolumn .mu_register #blogname,
|
||||
.widecolumn .mu_register #user_name {
|
||||
font-size: 19px;
|
||||
}
|
||||
|
||||
.widecolumn .mu_register #blog_title,
|
||||
.widecolumn .mu_register #user_email,
|
||||
.widecolumn .mu_register #user_name {
|
||||
margin: 0 0 0.421em;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* RTL
|
||||
*/
|
||||
|
||||
.rtl ul,
|
||||
.rtl ol {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.rtl li > ul,
|
||||
.rtl li > ol,
|
||||
.rtl blockquote > ul,
|
||||
.rtl blockquote > ol {
|
||||
margin-right: 1.3333em;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.rtl blockquote {
|
||||
border-width: 0 4px 0 0;
|
||||
margin-right: -1.0909em;
|
||||
margin-left: auto;
|
||||
padding-right: 0.9091em;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl blockquote > blockquote {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.rtl .main-navigation ul ul {
|
||||
margin-right: 1em;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.rtl .main-navigation .menu-item-has-children > a {
|
||||
padding-right: 0;
|
||||
padding-left: 48px;
|
||||
}
|
||||
|
||||
.rtl .secondary-toggle {
|
||||
right: auto;
|
||||
left: 7.6897%;
|
||||
}
|
||||
|
||||
.rtl .image-navigation .nav-previous,
|
||||
.rtl .comment-navigation .nav-previous {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.rtl .image-navigation .nav-next,
|
||||
.rtl .comment-navigation .nav-next {
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.rtl blockquote.alignright,
|
||||
.rtl .wp-caption.alignright,
|
||||
.rtl img.alignright {
|
||||
margin: 0.4211em 0 1.6842em 1.6842em;
|
||||
}
|
||||
|
||||
.rtl blockquote.alignleft,
|
||||
.rtl .wp-caption.alignleft,
|
||||
.rtl img.alignleft {
|
||||
margin: 0.4211em 1.6842em 1.6842em 0;
|
||||
}
|
||||
|
||||
.rtl .widget blockquote {
|
||||
margin-right: -1.2632em;
|
||||
margin-left: auto;
|
||||
padding-right: 1.0526em;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl .widget blockquote > blockquote {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.rtl .widget_categories .children,
|
||||
.rtl .widget_nav_menu .sub-menu,
|
||||
.rtl .widget_pages .children {
|
||||
margin: 0.7188em 1em 0 0;
|
||||
}
|
||||
|
||||
.rtl .page-links a,
|
||||
.rtl .page-links > span {
|
||||
margin: 0 0 0.25em 0.25em;
|
||||
}
|
||||
|
||||
.rtl .author-info .avatar {
|
||||
margin: 0 0 1.6842em 1.6842em;
|
||||
}
|
||||
|
||||
.rtl .page-header {
|
||||
border-width: 0 7px 0 0;
|
||||
}
|
||||
|
||||
.rtl .page-title,
|
||||
.rtl .taxonomy-description {
|
||||
margin-right: -7px;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.rtl .comment-list .children > li {
|
||||
padding-right: 1.4737em;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl .comment-author {
|
||||
padding-right: 4.6315em;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl .comment-author .avatar {
|
||||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
|
||||
.rtl .comment-content ul,
|
||||
.rtl .comment-content ol {
|
||||
margin-right: 0;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.rtl .comment-content li > ul,
|
||||
.rtl .comment-content li > ol,
|
||||
.rtl .comment-content blockquote > ul,
|
||||
.rtl .comment-content blockquote > ol {
|
||||
margin-right: 1.3333em;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.rtl .comment-metadata {
|
||||
padding-right: 5.5em;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.rtl .bypostauthor > article .fn:after {
|
||||
right: 6px;
|
||||
left: auto;
|
||||
}
|
89
twentyfifteen/css/ie7.css
Normal file
89
twentyfifteen/css/ie7.css
Normal file
|
@ -0,0 +1,89 @@
|
|||
/*
|
||||
Theme Name: Twenty Fifteen
|
||||
Description: IE7 specific style.
|
||||
*/
|
||||
|
||||
.screen-reader-text {
|
||||
clip: rect(1px 1px 1px 1px);
|
||||
}
|
||||
|
||||
.secondary-toggle {
|
||||
color: #333;
|
||||
font-size: 16px;
|
||||
line-height: 60px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.pagination .prev,
|
||||
.pagination .next {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
line-height: 64px;
|
||||
padding: 0 19px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.image-navigation,
|
||||
.comment-navigation {
|
||||
width: 662px;
|
||||
}
|
||||
|
||||
.post-navigation {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.site-main {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hentry {
|
||||
margin-bottom: 7.6923%;
|
||||
text-align: left;
|
||||
width: 808px;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
margin-bottom: 7.6923%;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.comments-area {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.comment-list,
|
||||
.comment-navigation {
|
||||
margin-bottom: 1.6471em;
|
||||
}
|
||||
|
||||
.gallery-columns-2 .gallery-item {
|
||||
max-width: 48%;
|
||||
}
|
||||
|
||||
.gallery-columns-3 .gallery-item {
|
||||
max-width: 31%;
|
||||
}
|
||||
|
||||
.gallery-columns-4 .gallery-item {
|
||||
max-width: 22%;
|
||||
}
|
||||
|
||||
.gallery-columns-5 .gallery-item {
|
||||
max-width: 17%;
|
||||
}
|
||||
|
||||
.gallery-columns-6 .gallery-item {
|
||||
max-width: 13.5%;
|
||||
}
|
||||
|
||||
.gallery-columns-7 .gallery-item {
|
||||
max-width: 11%;
|
||||
}
|
||||
|
||||
.gallery-columns-8 .gallery-item {
|
||||
max-width: 9.5%;
|
||||
}
|
||||
|
||||
.gallery-columns-9 .gallery-item {
|
||||
max-width: 8%;
|
||||
}
|
992
twentyfifteen/css/style-wpcom.css
Normal file
992
twentyfifteen/css/style-wpcom.css
Normal file
|
@ -0,0 +1,992 @@
|
|||
/**
|
||||
* WP.com stylesheet for Twenty Fifteen
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Reblog
|
||||
*/
|
||||
|
||||
.hentry .wpcom-reblog-snapshot .reblogger-note {
|
||||
border-color: #eaeaea;
|
||||
border-color: rgba(51, 51, 51, 0.1);
|
||||
margin-bottom: 1.6em;
|
||||
padding-bottom: 1.6em;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot p.reblogger-headline {
|
||||
line-height: inherit;
|
||||
margin-bottom: 1.6em;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot p.reblog-from {
|
||||
margin-bottom: 1.6em;
|
||||
}
|
||||
|
||||
/**
|
||||
* Jetpack Cpmments (WP.com)
|
||||
*/
|
||||
|
||||
.comments-area #respond {
|
||||
font-family: inherit;
|
||||
font-weight: inherit;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.comment-list + #respond {
|
||||
border-top: 1px solid #eaeaea;
|
||||
border-top: 1px solid rgba(51, 51, 51, 0.1);
|
||||
}
|
||||
|
||||
.comments-area .comment-list + #respond,
|
||||
.comments-area .comment-navigation + #respond {
|
||||
padding-top: 1.6em;
|
||||
}
|
||||
|
||||
.comments-area .comment #respond {
|
||||
padding-bottom: 1.6em;
|
||||
}
|
||||
|
||||
.comments-area #respond h3 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.comments-area #respond form {
|
||||
background: transparent;
|
||||
margin-top: 1.6em;
|
||||
}
|
||||
|
||||
.comments-area #respond #comment-form-comment,
|
||||
.comments-area #comment-form-share-text-padder,
|
||||
.comments-area #respond .comment-form-fields div.comment-form-input {
|
||||
background: #f7f7f7;
|
||||
border: 1px solid #eaeaea;
|
||||
border: 1px solid rgba(51, 51, 51, 0.1);
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
box-shadow: none;
|
||||
-webkit-transition-duration: 0;
|
||||
-moz-transition-duration: 0;
|
||||
transition-duration: 0;
|
||||
}
|
||||
|
||||
.comments-area #respond #comment-form-comment.active,
|
||||
.comments-area #comment-form-share-text-padder.active,
|
||||
.comments-area #respond .comment-form-fields div.comment-form-input.active {
|
||||
background: #fff;
|
||||
border: 1px solid #c1c1c1;
|
||||
border: 1px solid rgba(51, 51, 51, 0.3);
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
box-shadow: none;
|
||||
-webkit-transition-duration: 0;
|
||||
-moz-transition-duration: 0;
|
||||
transition-duration: 0;
|
||||
}
|
||||
|
||||
.comments-area #respond #comment-form-comment textarea,
|
||||
.comments-area #comment-form-share-text-padder textarea {
|
||||
color: #707070;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.comments-area #respond #comment-form-comment.active textarea,
|
||||
.comments-area #comment-form-share-text-padder.active textarea {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.comments-area #respond #comment-form-identity #comment-form-nascar {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.comments-area #respond .comment-form-service {
|
||||
background: transparent;
|
||||
border-color: #eaeaea;
|
||||
border-color: rgba(51, 51, 51, 0.1);
|
||||
}
|
||||
|
||||
.comments-area #respond .comment-form-padder {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.comments-area #respond .comment-form-avatar img {
|
||||
border: 0;
|
||||
background: transparent;
|
||||
margin-top: 1px;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.comments-area #respond .comment-form-fields p.comment-form-posting-as,
|
||||
.comments-area #respond .comment-form-fields p.comment-form-log-out,
|
||||
.comments-area #respond #comment-form-identity #comment-form-nascar p {
|
||||
color: #707070;
|
||||
font-family: "Noto Sans", sans-serif;
|
||||
}
|
||||
|
||||
.comments-area #respond .comment-form-fields p.comment-form-posting-as a {
|
||||
border-bottom: 1px solid #333;
|
||||
}
|
||||
|
||||
.comments-area #respond .comment-form-service {
|
||||
padding: 16px 0;
|
||||
}
|
||||
|
||||
.comments-area #respond .comment-form-service a {
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.comments-area #respond #comment-form-identity #comment-form-nascar p {
|
||||
padding: 8px 0 0 0;
|
||||
}
|
||||
|
||||
.comments-area #respond #comment-form-identity #comment-form-nascar ul {
|
||||
margin: 8px -5px -8px 12px;
|
||||
}
|
||||
|
||||
.comments-area #respond .comment-form-fields div.comment-form-field {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.comments-area #respond .comment-form-fields div.comment-form-input {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.comments-area #respond .comment-form-fields .comment-form-url div.comment-form-input {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.comments-area #respond #comment-form-subscribe {
|
||||
padding-left: 0;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
.comments-area #respond #comment-form-subscribe p {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.comments-area #respond .form-submit {
|
||||
font-size: 1.6rem !important;
|
||||
font-size: 16px !important;
|
||||
line-height: 1 !important;
|
||||
padding: 16px 0 0;
|
||||
}
|
||||
|
||||
.comments-area #respond p.form-submit input#comment-submit {
|
||||
background: #333 !important;
|
||||
border: 0;
|
||||
-webkit-border-radius: 0 !important;
|
||||
-moz-border-radius: 0 !important;
|
||||
border-radius: 0 !important;
|
||||
color: #fff !important;
|
||||
font-family: "Noto Sans", sans-serif;
|
||||
font-size: inherit !important;
|
||||
font-weight: bold !important;
|
||||
line-height: inherit !important;
|
||||
padding: 13px 16px !important;
|
||||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
#respond .comment-reply-title small a {
|
||||
display: block;
|
||||
width: 26px;
|
||||
}
|
||||
|
||||
.comment-content p.comment-likes span.comment-like-feedback {
|
||||
font-family: "Noto Sans", sans-serif;
|
||||
line-height: 19px;
|
||||
opacity: 0.7;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Sharing (WP.com)
|
||||
*/
|
||||
|
||||
.hentry #jp-post-flair {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.sd-rating + .sharedaddy,
|
||||
.sd-rating + #jp-relatedposts {
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.sharedaddy + #jp-relatedposts {
|
||||
margin-top: 7px;
|
||||
}
|
||||
|
||||
div.jp-relatedposts .jp-relatedposts-headline em:after {
|
||||
content: ":";
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Rating
|
||||
*/
|
||||
|
||||
.pd-rating {
|
||||
font-family: "Noto Sans", sans-serif;
|
||||
font-size: 1.2rem;
|
||||
font-size: 12px;
|
||||
line-height: 1.3334;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* WP.com Widgets
|
||||
*/
|
||||
|
||||
/* About Me */
|
||||
.aboutme_widget #am_thumbnail img {
|
||||
border: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.aboutme_widget #am_thumbnail,
|
||||
.aboutme_widget #am_name,
|
||||
.aboutme_widget #am_headline,
|
||||
.aboutme_widget #am_bio,
|
||||
.aboutme_widget #am_bio p {
|
||||
margin-bottom: 0.8em;
|
||||
}
|
||||
|
||||
.aboutme_widget #am_name {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.aboutme_widget #am_name a {
|
||||
font-size: inherit !important;
|
||||
}
|
||||
|
||||
.aboutme_widget > :last-child {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
/* Akismet Widget */
|
||||
.widget_akismet_widget a {
|
||||
color: rgba(255,255,255,0.6) !important;
|
||||
}
|
||||
|
||||
/* Author Grid Widget */
|
||||
.widget.widget_author_grid ul {
|
||||
margin: 0 0 -3px 0;
|
||||
}
|
||||
|
||||
/* Authors Widget */
|
||||
.widget_authors .avatar {
|
||||
margin-right: 6px;
|
||||
}
|
||||
|
||||
.widget_authors strong {
|
||||
font-family: "Noto Sans", sans-serif;
|
||||
}
|
||||
|
||||
/* Blogs I follow Widget */
|
||||
.widget_jp_blogs_i_follow .widget-grid-view-image {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
max-width: 51px;
|
||||
}
|
||||
|
||||
.widget_jp_blogs_i_follow .widget-grid-view-image a,
|
||||
.widget_jp_blogs_i_follow .widget-grid-view-image:nth-child(even) a {
|
||||
margin: 0 3px 3px 0;
|
||||
}
|
||||
|
||||
.widget_jp_blogs_i_follow .widgets-grid-layout {
|
||||
margin-bottom: -3px;
|
||||
}
|
||||
|
||||
/* Contact Info Widget */
|
||||
.widget_contact_info #contact-map {
|
||||
margin-bottom: 1.6em;
|
||||
}
|
||||
|
||||
/* Flickr Widget */
|
||||
.widget_flickr #flickr_badge_wrapper,
|
||||
.widget_flickr #flickr_badge_uber_wrapper,
|
||||
.widget_flickr table td {
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#flickr_badge_uber_wrapper {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.widget_flickr #flickr_badge_uber_wrapper a {
|
||||
font-size: inherit;
|
||||
line-height: inherit;
|
||||
}
|
||||
|
||||
.widget_flickr #flickr_badge_uber_wrapper a:link,
|
||||
.widget_flickr #flickr_badge_uber_wrapper a:active,
|
||||
.widget_flickr #flickr_badge_uber_wrapper a:visited,
|
||||
.widget_flickr #flickr_badge_uber_wrapper a:hover {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
/* Follow Blog Widget */
|
||||
.widget_blog_subscription #subscribe-field {
|
||||
padding: 0.375em !important;
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
/* Follow Button Widget */
|
||||
.widget_follow_button_widget iframe {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Goodreads Widget */
|
||||
.widget_goodreads div[class^="gr_custom_container"] {
|
||||
background-color: transparent;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
color: inherit;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.widget_goodreads div[class^="gr_custom_container"] a {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.widget_goodreads div[class^="gr_custom_each_container"] {
|
||||
border: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Gravatar Widget */
|
||||
.widget_gravatar .avatar {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.widget_gravatar a {
|
||||
border-bottom: 1px solid #333;
|
||||
}
|
||||
|
||||
.widget_gravatar a:hover {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.grav-widget-left {
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
.grav-widget-right {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
/* Instagram Widget */
|
||||
.widget_wpcom_instagram_widget .wpcom-instagram-images {
|
||||
grid-gap: 5px;
|
||||
}
|
||||
|
||||
/* Milestone Widget */
|
||||
.widget-area .milestone-widget {
|
||||
margin-bottom: 9.09090%;
|
||||
}
|
||||
|
||||
.widget-area .milestone-content {
|
||||
margin-top: 0;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.widget-area .milestone-header,
|
||||
.widget-area .milestone-countdown,
|
||||
.widget-area .milestone-message {
|
||||
background-color: transparent;
|
||||
border: 1px solid #eaeaea;
|
||||
border: 1px solid rgba(51, 51, 51, 0.1);
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.milestone-widget .event,
|
||||
.milestone-widget .difference {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.widget-area .milestone-countdown,
|
||||
.widget-area .milestone-message {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
/* My Community Widget */
|
||||
.widget.widgets-multi-column-grid {
|
||||
margin-bottom: -3px;
|
||||
}
|
||||
|
||||
/* Posts I Like Widget */
|
||||
.widget_jetpack_posts_i_like .widgets-list-layout li {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.widget_jetpack_posts_i_like .widget-grid-view-image {
|
||||
display: inline-block;
|
||||
float: none;
|
||||
max-width: 51px;
|
||||
}
|
||||
|
||||
.widget_jetpack_posts_i_like .widget-grid-view-image a,
|
||||
.widget_jetpack_posts_i_like .widget-grid-view-image:nth-child(even) a {
|
||||
margin: 0 3px 3px 0;
|
||||
}
|
||||
|
||||
.widget_jetpack_posts_i_like .widgets-grid-layout {
|
||||
margin-bottom: -3px;
|
||||
}
|
||||
|
||||
/* Recent Comments (WP.com) */
|
||||
.widget_recent_comments table,
|
||||
.widget_recent_comments td {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.widget_recent_comments .recentcommentsavatar {
|
||||
margin-bottom: -0.8em;
|
||||
}
|
||||
|
||||
.widget_recent_comments td.recentcommentsavatartop,
|
||||
.widget_recent_comments td.recentcommentsavatarend {
|
||||
padding: 0 0 0.8em 0;
|
||||
}
|
||||
|
||||
.widget_recent_comments td.recentcommentstexttop,
|
||||
.widget_recent_comments td.recentcommentstextend {
|
||||
padding: 0 0 0.8em 0.8em;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* Recent Image Widget */
|
||||
.widget_recent_images .recent_images img {
|
||||
margin: 0 1px 5px 0;
|
||||
}
|
||||
|
||||
.widget_recent_images .recent_images {
|
||||
margin-bottom: -5px;
|
||||
}
|
||||
|
||||
/* Top Rated Widget */
|
||||
.top_rated div > p {
|
||||
font-family: "Noto Sans", sans-serif;
|
||||
font-weight: 700;
|
||||
margin-bottom: 0.7667em;
|
||||
}
|
||||
|
||||
/* List style for widgets */
|
||||
.widget_authors ul,
|
||||
.widget_jp_blogs_i_follow ol,
|
||||
.widget_blog-stats ul,
|
||||
.widget_delicious ul,
|
||||
.widgets-list-layout ul,
|
||||
.widget_top-clicks ul,
|
||||
.top_rated ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.widget_authors li,
|
||||
.widget_jp_blogs_i_follow li,
|
||||
.widget_blog-stats li,
|
||||
.widget_delicious li,
|
||||
.widgets-list-layout li,
|
||||
.widget_top-clicks li,
|
||||
.top_rated li {
|
||||
border-top: 1px solid #eaeaea;
|
||||
border-top: 1px solid rgba(51, 51, 51, 0.1);
|
||||
padding: 0.7667em 0;
|
||||
}
|
||||
|
||||
.widget_authors li:first-child,
|
||||
.widget_jp_blogs_i_follow li:first-child,
|
||||
.widget_blog-stats li:first-child,
|
||||
.widget_delicious li:first-child,
|
||||
.widgets-list-layout li:first-child,
|
||||
.widget_top-clicks li:first-child {
|
||||
border-top: 0;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.widget_authors li:last-child,
|
||||
.widget_jp_blogs_i_follow li:last-child,
|
||||
.widget_blog-stats li:last-child,
|
||||
.widget_delicious li:last-child,
|
||||
.widgets-list-layout li:last-child,
|
||||
.widget_top-clicks li:last-child,
|
||||
.top_rated li:last-child {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.widget_authors ul ul {
|
||||
border-top: 1px solid #eaeaea;
|
||||
border-top: 1px solid rgba(51, 51, 51, 0.1);
|
||||
margin-top: 0.7667em;
|
||||
padding-top: 0.7667em;
|
||||
}
|
||||
|
||||
/* Tag cloud */
|
||||
.wp_widget_tag_cloud ul {
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.wp_widget_tag_cloud ul li {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/**
|
||||
* Syntax Highlighter
|
||||
*/
|
||||
|
||||
.syntaxhighlighter table {
|
||||
table-layout: auto;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Ads
|
||||
*/
|
||||
|
||||
.hentry .wpa .u>div,
|
||||
.hentry .wpadvert>div>* {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.wpcnt {
|
||||
margin-bottom: 1.6em;
|
||||
}
|
||||
|
||||
.hentry .wpa-notice {
|
||||
border-color: rgba(51, 51, 51, 0.1);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* VideoPress quickfix
|
||||
*/
|
||||
|
||||
.video-player,
|
||||
.widget_media_video iframe[src*='videopress.com'] {
|
||||
height: auto !important;
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Site Logo support only for WP.com
|
||||
*/
|
||||
|
||||
.site-logo-link {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.site-logo {
|
||||
max-height: 84px;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.has-site-logo .site-title {
|
||||
margin-top: 0.545454545em;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Media Queries
|
||||
*/
|
||||
|
||||
/* Mobile Large 620px */
|
||||
@media screen and (min-width: 38.75em) {
|
||||
.widget-area .milestone-widget {
|
||||
margin-bottom: 11.1111%;
|
||||
}
|
||||
}
|
||||
|
||||
/* Tablet Small 740px */
|
||||
@media screen and (min-width: 46.25em) {
|
||||
.comments-area .comment-list + #respond,
|
||||
.comments-area .comment-navigation + #respond {
|
||||
padding-top: 1.6471em;
|
||||
}
|
||||
|
||||
.comments-area .comment #respond {
|
||||
padding-bottom: 1.6471em;
|
||||
}
|
||||
|
||||
.comments-area #respond form {
|
||||
margin-top: 1.6471em;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot .reblogger-note {
|
||||
margin-bottom: 1.6471em;
|
||||
padding-bottom: 1.6471em;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot p.reblogger-headline,
|
||||
.hentry .wpcom-reblog-snapshot p.reblog-from {
|
||||
margin-bottom: 1.6471em;
|
||||
}
|
||||
|
||||
.aboutme_widget #am_thumbnail,
|
||||
.aboutme_widget #am_name,
|
||||
.aboutme_widget #am_headline,
|
||||
.aboutme_widget #am_bio,
|
||||
.aboutme_widget #am_bio p {
|
||||
margin-bottom: 0.75em;
|
||||
}
|
||||
|
||||
.widget_contact_info #contact-map {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
|
||||
.widget_blog_subscription #subscribe-field {
|
||||
padding: 0.5625em !important;
|
||||
}
|
||||
|
||||
.widget_recent_comments .recentcommentsavatar {
|
||||
margin-bottom: -0.75em;
|
||||
}
|
||||
|
||||
.widget_recent_comments td.recentcommentsavatartop,
|
||||
.widget_recent_comments td.recentcommentsavatarend {
|
||||
padding: 0 0 0.75em 0;
|
||||
}
|
||||
|
||||
.widget_recent_comments td.recentcommentstexttop,
|
||||
.widget_recent_comments td.recentcommentstextend {
|
||||
padding: 0 0 0.75em 0.75em;
|
||||
}
|
||||
|
||||
.widget_authors li,
|
||||
.widget_jp_blogs_i_follow li,
|
||||
.widget_blog-stats li,
|
||||
.widget_delicious li,
|
||||
.widgets-list-layout li,
|
||||
.widget_top-clicks li,
|
||||
.widget_top-posts li,
|
||||
.top_rated li,
|
||||
.widget_upcoming_events_widget .upcoming-events li {
|
||||
padding: 0.9643em 0;
|
||||
}
|
||||
|
||||
.widget_authors ul ul {
|
||||
margin-top: 0.9643em;
|
||||
padding-top: 0.9643em;
|
||||
}
|
||||
|
||||
.wpcnt {
|
||||
margin-bottom: 1.6471em;
|
||||
}
|
||||
|
||||
.site-logo {
|
||||
max-height: 105px;
|
||||
}
|
||||
|
||||
.has-site-logo .site-title {
|
||||
margin-top: 0.482758621em;
|
||||
}
|
||||
}
|
||||
|
||||
/* Tablet Large 880px */
|
||||
@media screen and (min-width: 55em) {
|
||||
.comments-area .comment-list + #respond,
|
||||
.comments-area .comment-navigation + #respond {
|
||||
padding-top: 1.6842em;
|
||||
}
|
||||
|
||||
.comments-area .comment #respond {
|
||||
padding-bottom: 1.6842;
|
||||
}
|
||||
|
||||
.comments-area #respond form {
|
||||
margin-top: 1.6842em;
|
||||
}
|
||||
|
||||
.comment-content p.comment-likes span.comment-like-feedback {
|
||||
font-size: 14px;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot .reblogger-note {
|
||||
margin-bottom: 1.6842em;
|
||||
padding-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot p.reblogger-headline,
|
||||
.hentry .wpcom-reblog-snapshot p.reblog-from {
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.widget_blog_subscription #subscribe-field {
|
||||
padding: 0.75em !important;
|
||||
}
|
||||
|
||||
.top_rated div > p {
|
||||
margin-bottom: 0.7188em;
|
||||
}
|
||||
|
||||
.widget_authors li,
|
||||
.widget_jp_blogs_i_follow li,
|
||||
.widget_blog-stats li,
|
||||
.widget_delicious li,
|
||||
.widgets-list-layout li,
|
||||
.widget_top-clicks li,
|
||||
.widget_top-posts li,
|
||||
.top_rated li,
|
||||
.widget_upcoming_events_widget .upcoming-events li {
|
||||
padding: 0.7188em 0;
|
||||
}
|
||||
|
||||
.widget_authors ul ul {
|
||||
margin-top: 0.7188em;
|
||||
padding-top: 0.7188em;
|
||||
}
|
||||
|
||||
.wpcnt {
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.site-logo {
|
||||
max-height: 104px;
|
||||
}
|
||||
|
||||
.has-site-logo .site-title {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
}
|
||||
|
||||
/* Desktop Small 955px */
|
||||
@media screen and (min-width: 59.6875em) {
|
||||
.comments-area .comment-list + #respond,
|
||||
.comments-area .comment-navigation + #respond {
|
||||
padding-top: 1.6em;
|
||||
}
|
||||
|
||||
.comments-area .comment #respond {
|
||||
padding-bottom: 1.6em;
|
||||
}
|
||||
|
||||
.comments-area #respond form {
|
||||
margin-top: 1.6em;
|
||||
}
|
||||
|
||||
.comment-content p.comment-likes span.comment-like-feedback {
|
||||
font-size: 12px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot .reblogger-note {
|
||||
margin-bottom: 1.6em;
|
||||
padding-bottom: 1.6em;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot p.reblogger-headline,
|
||||
.hentry .wpcom-reblog-snapshot p.reblog-from {
|
||||
margin-bottom: 1.6em;
|
||||
}
|
||||
|
||||
.widget_blog_subscription #subscribe-field {
|
||||
padding: 0.4583em !important;
|
||||
}
|
||||
|
||||
.widget-area .milestone-widget {
|
||||
margin-bottom: 20%;
|
||||
}
|
||||
|
||||
.top_rated div > p {
|
||||
margin-bottom: 0.4583em;
|
||||
}
|
||||
|
||||
.widget_authors li,
|
||||
.widget_jp_blogs_i_follow li,
|
||||
.widget_blog-stats li,
|
||||
.widget_delicious li,
|
||||
.widgets-list-layout li,
|
||||
.widget_top-clicks li,
|
||||
.widget_top-posts li,
|
||||
.top_rated li,
|
||||
.widget_upcoming_events_widget .upcoming-events li {
|
||||
padding: 0.4583em 0;
|
||||
}
|
||||
|
||||
.widget_authors ul ul {
|
||||
margin-top: 0.4583em;
|
||||
padding-top: 0.4583em;
|
||||
}
|
||||
|
||||
.wpcnt {
|
||||
margin-bottom: 1.6em;
|
||||
}
|
||||
|
||||
.site-logo {
|
||||
max-height: 96px;
|
||||
}
|
||||
|
||||
.has-site-logo .site-title {
|
||||
margin-top: 0.545454545em;
|
||||
}
|
||||
}
|
||||
|
||||
/* Desktop Medium 1100px */
|
||||
@media screen and (min-width: 68.75em) {
|
||||
.comments-area .comment-list + #respond,
|
||||
.comments-area .comment-navigation + #respond {
|
||||
padding-top: 1.6471em;
|
||||
}
|
||||
|
||||
.comments-area .comment #respond {
|
||||
padding-bottom: 1.6471em;
|
||||
}
|
||||
|
||||
.comments-area #respond form {
|
||||
margin-top: 1.6471em;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot .reblogger-note {
|
||||
margin-bottom: 1.6471em;
|
||||
padding-bottom: 1.6471em;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot p.reblogger-headline,
|
||||
.hentry .wpcom-reblog-snapshot p.reblog-from {
|
||||
margin-bottom: 1.6471em;
|
||||
}
|
||||
|
||||
.widget_blog_subscription #subscribe-field {
|
||||
padding: 0.5em !important;
|
||||
}
|
||||
|
||||
.top_rated div > p {
|
||||
margin-bottom: 0.4643em;
|
||||
}
|
||||
|
||||
.widget_authors li,
|
||||
.widget_jp_blogs_i_follow li,
|
||||
.widget_blog-stats li,
|
||||
.widget_delicious li,
|
||||
.widgets-list-layout li,
|
||||
.widget_top-clicks li,
|
||||
.widget_top-posts li,
|
||||
.top_rated li,
|
||||
.widget_upcoming_events_widget .upcoming-events li {
|
||||
padding: 0.4643em 0;
|
||||
}
|
||||
|
||||
.widget_authors ul ul {
|
||||
margin-top: 0.4643em;
|
||||
padding-top: 0.4643em;
|
||||
}
|
||||
|
||||
.wpcnt {
|
||||
margin-bottom: 1.6471em;
|
||||
}
|
||||
|
||||
.site-logo {
|
||||
max-height: 126px;
|
||||
}
|
||||
|
||||
.has-site-logo .site-title {
|
||||
margin-top: 0.583333333em;
|
||||
}
|
||||
}
|
||||
|
||||
/* Desktop Large 1240px */
|
||||
@media screen and (min-width: 77.5em) {
|
||||
.comments-area .comment-list + #respond,
|
||||
.comments-area .comment-navigation + #respond {
|
||||
padding-top: 1.6842em;
|
||||
}
|
||||
|
||||
.comments-area .comment #respond {
|
||||
padding-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.comments-area #respond form {
|
||||
margin-top: 1.6842em;
|
||||
}
|
||||
|
||||
.comment-content p.comment-likes span.comment-like-feedback {
|
||||
font-size: 14px;
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
|
||||
.pd-rating {
|
||||
font-size: 1.3rem;
|
||||
font-size: 13px;
|
||||
line-height: 1.2308;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot .reblogger-note {
|
||||
margin-bottom: 1.6842em;
|
||||
padding-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.hentry .wpcom-reblog-snapshot p.reblogger-headline,
|
||||
.hentry .wpcom-reblog-snapshot p.reblog-from {
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.top_rated div > p {
|
||||
margin-bottom: 0.4688em;
|
||||
}
|
||||
|
||||
.widget_authors li,
|
||||
.widget_jp_blogs_i_follow li,
|
||||
.widget_blog-stats li,
|
||||
.widget_delicious li,
|
||||
.widgets-list-layout li,
|
||||
.widget_top-clicks li,
|
||||
.widget_top-posts li,
|
||||
.top_rated li,
|
||||
.widget_upcoming_events_widget .upcoming-events li {
|
||||
padding: 0.4688em 0;
|
||||
}
|
||||
|
||||
.widget_authors ul ul {
|
||||
margin-top: 0.4688em;
|
||||
padding-top: 0.4688em;
|
||||
}
|
||||
|
||||
.wpcnt {
|
||||
margin-bottom: 1.6842em;
|
||||
}
|
||||
|
||||
.site-logo {
|
||||
max-height: 136px;
|
||||
}
|
||||
|
||||
.has-site-logo .site-title {
|
||||
margin-top: 0.592592593em;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* RTL
|
||||
*/
|
||||
|
||||
.rtl .widget_recent_comments td.recentcommentstexttop,
|
||||
.rtl .widget_recent_comments td.recentcommentstextend {
|
||||
padding: 0 0.8em 0.8em 0;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 46.25em) {
|
||||
.rtl .widget_recent_comments td.recentcommentstexttop,
|
||||
.rtl .widget_recent_comments td.recentcommentstextend {
|
||||
padding: 0 0.75em 0.75em 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Print
|
||||
*/
|
||||
|
||||
@media print {
|
||||
.comments-area #respond h3,
|
||||
#bit.loggedout-follow-normal {
|
||||
display: none;
|
||||
}
|
||||
}
|
34
twentyfifteen/footer.php
Normal file
34
twentyfifteen/footer.php
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying the footer
|
||||
*
|
||||
* Contains the closing of the "site-content" div and all content after.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
?>
|
||||
|
||||
</div><!-- .site-content -->
|
||||
|
||||
<footer id="colophon" class="site-footer" role="contentinfo">
|
||||
<div class="site-info">
|
||||
<?php
|
||||
/**
|
||||
* Fires before the Twenty Fifteen footer text for footer customization.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
do_action( 'twentyfifteen_credits' );
|
||||
?>
|
||||
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfifteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); ?></a>
|
||||
</div><!-- .site-info -->
|
||||
</footer><!-- .site-footer -->
|
||||
|
||||
</div><!-- .site -->
|
||||
|
||||
<?php wp_footer(); ?>
|
||||
|
||||
</body>
|
||||
</html>
|
416
twentyfifteen/functions.php
Normal file
416
twentyfifteen/functions.php
Normal file
|
@ -0,0 +1,416 @@
|
|||
<?php
|
||||
/**
|
||||
* Twenty Fifteen functions and definitions
|
||||
*
|
||||
* Set up the theme and provides some helper functions, which are used in the
|
||||
* theme as custom template tags. Others are attached to action and filter
|
||||
* hooks in WordPress to change core functionality.
|
||||
*
|
||||
* When using a child theme you can override certain functions (those wrapped
|
||||
* in a function_exists() call) by defining them first in your child theme's
|
||||
* functions.php file. The child theme's functions.php file is included before
|
||||
* the parent theme's file, so the child theme functions would be used.
|
||||
*
|
||||
* @link https://codex.wordpress.org/Theme_Development
|
||||
* @link https://codex.wordpress.org/Child_Themes
|
||||
*
|
||||
* Functions that are not pluggable (not wrapped in function_exists()) are
|
||||
* instead attached to a filter or action hook.
|
||||
*
|
||||
* For more information on hooks, actions, and filters,
|
||||
* {@link https://codex.wordpress.org/Plugin_API}
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Set the content width based on the theme's design and stylesheet.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
if ( ! isset( $content_width ) ) {
|
||||
$content_width = 660;
|
||||
}
|
||||
|
||||
/**
|
||||
* Twenty Fifteen only works in WordPress 4.1 or later.
|
||||
*/
|
||||
if ( version_compare( $GLOBALS['wp_version'], '4.1-alpha', '<' ) ) {
|
||||
require get_template_directory() . '/inc/back-compat.php';
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_setup' ) ) :
|
||||
/**
|
||||
* Sets up theme defaults and registers support for various WordPress features.
|
||||
*
|
||||
* Note that this function is hooked into the after_setup_theme hook, which
|
||||
* runs before the init hook. The init hook is too late for some features, such
|
||||
* as indicating support for post thumbnails.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_setup() {
|
||||
|
||||
/*
|
||||
* Make theme available for translation.
|
||||
* Translations can be filed in the /languages/ directory.
|
||||
* If you're building a theme based on twentyfifteen, use a find and replace
|
||||
* to change 'twentyfifteen' to the name of your theme in all the template files
|
||||
*/
|
||||
load_theme_textdomain( 'twentyfifteen', get_template_directory() . '/languages' );
|
||||
|
||||
// Add default posts and comments RSS feed links to head.
|
||||
add_theme_support( 'automatic-feed-links' );
|
||||
|
||||
/*
|
||||
* Let WordPress manage the document title.
|
||||
* By adding theme support, we declare that this theme does not use a
|
||||
* hard-coded <title> tag in the document head, and expect WordPress to
|
||||
* provide it for us.
|
||||
*/
|
||||
add_theme_support( 'title-tag' );
|
||||
|
||||
/*
|
||||
* Enable support for Post Thumbnails on posts and pages.
|
||||
*
|
||||
* See: https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails
|
||||
*/
|
||||
add_theme_support( 'post-thumbnails' );
|
||||
set_post_thumbnail_size( 825, 510, true );
|
||||
|
||||
// This theme uses wp_nav_menu() in two locations.
|
||||
register_nav_menus( array(
|
||||
'primary' => __( 'Primary Menu', 'twentyfifteen' ),
|
||||
'social' => __( 'Social Links Menu', 'twentyfifteen' ),
|
||||
) );
|
||||
|
||||
/*
|
||||
* Switch default core markup for search form, comment form, and comments
|
||||
* to output valid HTML5.
|
||||
*/
|
||||
add_theme_support( 'html5', array(
|
||||
'search-form', 'comment-form', 'comment-list', 'gallery', 'caption'
|
||||
) );
|
||||
|
||||
/*
|
||||
* Enable support for Post Formats.
|
||||
*
|
||||
* See: https://codex.wordpress.org/Post_Formats
|
||||
*/
|
||||
add_theme_support( 'post-formats', array(
|
||||
'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat'
|
||||
) );
|
||||
|
||||
$color_scheme = twentyfifteen_get_color_scheme();
|
||||
$default_color = trim( $color_scheme[0], '#' );
|
||||
|
||||
// Setup the WordPress core custom background feature.
|
||||
|
||||
/**
|
||||
* Filter Twenty Fifteen custom-header support arguments.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param array $args {
|
||||
* An array of custom-header support arguments.
|
||||
*
|
||||
* @type string $default-color Default color of the header.
|
||||
* @type string $default-attachment Default attachment of the header.
|
||||
* }
|
||||
*/
|
||||
add_theme_support( 'custom-background', apply_filters( 'twentyfifteen_custom_background_args', array(
|
||||
'default-color' => $default_color,
|
||||
'default-attachment' => 'fixed',
|
||||
) ) );
|
||||
|
||||
/*
|
||||
* This theme styles the visual editor to resemble the theme style,
|
||||
* specifically font, colors, icons, and column width.
|
||||
*/
|
||||
add_editor_style( array( 'css/editor-style.css', 'genericons/genericons.css', twentyfifteen_fonts_url() ) );
|
||||
|
||||
// Indicate widget sidebars can use selective refresh in the Customizer.
|
||||
add_theme_support( 'customize-selective-refresh-widgets' );
|
||||
}
|
||||
endif; // twentyfifteen_setup
|
||||
add_action( 'after_setup_theme', 'twentyfifteen_setup' );
|
||||
|
||||
/**
|
||||
* Register widget area.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @link https://codex.wordpress.org/Function_Reference/register_sidebar
|
||||
*/
|
||||
function twentyfifteen_widgets_init() {
|
||||
register_sidebar( array(
|
||||
'name' => __( 'Widget Area', 'twentyfifteen' ),
|
||||
'id' => 'sidebar-1',
|
||||
'description' => __( 'Add widgets here to appear in your sidebar.', 'twentyfifteen' ),
|
||||
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
|
||||
'after_widget' => '</aside>',
|
||||
'before_title' => '<h2 class="widget-title">',
|
||||
'after_title' => '</h2>',
|
||||
) );
|
||||
}
|
||||
add_action( 'widgets_init', 'twentyfifteen_widgets_init' );
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_fonts_url' ) ) :
|
||||
/**
|
||||
* Register Google fonts for Twenty Fifteen.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @return string Google fonts URL for the theme.
|
||||
*/
|
||||
function twentyfifteen_fonts_url() {
|
||||
$fonts_url = '';
|
||||
$fonts = array();
|
||||
$subsets = 'latin,latin-ext';
|
||||
|
||||
/*
|
||||
* Translators: If there are characters in your language that are not supported
|
||||
* by Noto Sans, translate this to 'off'. Do not translate into your own language.
|
||||
*/
|
||||
if ( 'off' !== _x( 'on', 'Noto Sans font: on or off', 'twentyfifteen' ) ) {
|
||||
$fonts[] = 'Noto Sans:400italic,700italic,400,700';
|
||||
}
|
||||
|
||||
/*
|
||||
* Translators: If there are characters in your language that are not supported
|
||||
* by Noto Serif, translate this to 'off'. Do not translate into your own language.
|
||||
*/
|
||||
if ( 'off' !== _x( 'on', 'Noto Serif font: on or off', 'twentyfifteen' ) ) {
|
||||
$fonts[] = 'Noto Serif:400italic,700italic,400,700';
|
||||
}
|
||||
|
||||
/*
|
||||
* Translators: If there are characters in your language that are not supported
|
||||
* by Inconsolata, translate this to 'off'. Do not translate into your own language.
|
||||
*/
|
||||
if ( 'off' !== _x( 'on', 'Inconsolata font: on or off', 'twentyfifteen' ) ) {
|
||||
$fonts[] = 'Inconsolata:400,700';
|
||||
}
|
||||
|
||||
/*
|
||||
* Translators: To add an additional character subset specific to your language,
|
||||
* translate this to 'greek', 'cyrillic', 'devanagari' or 'vietnamese'. Do not translate into your own language.
|
||||
*/
|
||||
$subset = _x( 'no-subset', 'Add new subset (greek, cyrillic, devanagari, vietnamese)', 'twentyfifteen' );
|
||||
|
||||
if ( 'cyrillic' == $subset ) {
|
||||
$subsets .= ',cyrillic,cyrillic-ext';
|
||||
} elseif ( 'greek' == $subset ) {
|
||||
$subsets .= ',greek,greek-ext';
|
||||
} elseif ( 'devanagari' == $subset ) {
|
||||
$subsets .= ',devanagari';
|
||||
} elseif ( 'vietnamese' == $subset ) {
|
||||
$subsets .= ',vietnamese';
|
||||
}
|
||||
|
||||
if ( $fonts ) {
|
||||
$fonts_url = add_query_arg( array(
|
||||
'family' => urlencode( implode( '|', $fonts ) ),
|
||||
'subset' => urlencode( $subsets ),
|
||||
), 'https://fonts.googleapis.com/css' );
|
||||
}
|
||||
|
||||
return $fonts_url;
|
||||
}
|
||||
endif;
|
||||
|
||||
/**
|
||||
* JavaScript Detection.
|
||||
*
|
||||
* Adds a `js` class to the root `<html>` element when JavaScript is detected.
|
||||
*
|
||||
* @since Twenty Fifteen 1.1
|
||||
*/
|
||||
function twentyfifteen_javascript_detection() {
|
||||
echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n";
|
||||
}
|
||||
add_action( 'wp_head', 'twentyfifteen_javascript_detection', 0 );
|
||||
|
||||
/**
|
||||
* Enqueue scripts and styles.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_scripts() {
|
||||
// Add custom fonts, used in the main stylesheet.
|
||||
wp_enqueue_style( 'twentyfifteen-fonts', twentyfifteen_fonts_url(), array(), null );
|
||||
|
||||
// Add Genericons, used in the main stylesheet.
|
||||
wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.2' );
|
||||
|
||||
// Load our main stylesheet.
|
||||
wp_enqueue_style( 'twentyfifteen-style', get_stylesheet_uri() );
|
||||
|
||||
// Load the Internet Explorer specific stylesheet.
|
||||
wp_enqueue_style( 'twentyfifteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfifteen-style' ), '20141010' );
|
||||
wp_style_add_data( 'twentyfifteen-ie', 'conditional', 'lt IE 9' );
|
||||
|
||||
// Load the Internet Explorer 7 specific stylesheet.
|
||||
wp_enqueue_style( 'twentyfifteen-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'twentyfifteen-style' ), '20141010' );
|
||||
wp_style_add_data( 'twentyfifteen-ie7', 'conditional', 'lt IE 8' );
|
||||
|
||||
wp_enqueue_script( 'twentyfifteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20141010', true );
|
||||
|
||||
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
|
||||
wp_enqueue_script( 'comment-reply' );
|
||||
}
|
||||
|
||||
if ( is_singular() && wp_attachment_is_image() ) {
|
||||
wp_enqueue_script( 'twentyfifteen-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20141010' );
|
||||
}
|
||||
|
||||
wp_enqueue_script( 'twentyfifteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20150330', true );
|
||||
wp_localize_script( 'twentyfifteen-script', 'screenReaderText', array(
|
||||
'expand' => '<span class="screen-reader-text">' . __( 'expand child menu', 'twentyfifteen' ) . '</span>',
|
||||
'collapse' => '<span class="screen-reader-text">' . __( 'collapse child menu', 'twentyfifteen' ) . '</span>',
|
||||
) );
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'twentyfifteen_scripts' );
|
||||
|
||||
/**
|
||||
* Add preconnect for Google Fonts.
|
||||
*
|
||||
* @since Twenty Fifteen 1.7
|
||||
*
|
||||
* @param array $urls URLs to print for resource hints.
|
||||
* @param string $relation_type The relation type the URLs are printed.
|
||||
* @return array URLs to print for resource hints.
|
||||
*/
|
||||
function twentyfifteen_resource_hints( $urls, $relation_type ) {
|
||||
if ( wp_style_is( 'twentyfifteen-fonts', 'queue' ) && 'preconnect' === $relation_type ) {
|
||||
if ( version_compare( $GLOBALS['wp_version'], '4.7-alpha', '>=' ) ) {
|
||||
$urls[] = array(
|
||||
'href' => 'https://fonts.gstatic.com',
|
||||
'crossorigin',
|
||||
);
|
||||
} else {
|
||||
$urls[] = 'https://fonts.gstatic.com';
|
||||
}
|
||||
}
|
||||
|
||||
return $urls;
|
||||
}
|
||||
add_filter( 'wp_resource_hints', 'twentyfifteen_resource_hints', 10, 2 );
|
||||
|
||||
/**
|
||||
* Add featured image as background image to post navigation elements.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @see wp_add_inline_style()
|
||||
*/
|
||||
function twentyfifteen_post_nav_background() {
|
||||
if ( ! is_single() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true );
|
||||
$next = get_adjacent_post( false, '', false );
|
||||
$css = '';
|
||||
|
||||
if ( is_attachment() && 'attachment' == $previous->post_type ) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ( $previous && has_post_thumbnail( $previous->ID ) ) {
|
||||
$prevthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $previous->ID ), 'post-thumbnail' );
|
||||
$css .= '
|
||||
.post-navigation .nav-previous { background-image: url(' . esc_url( $prevthumb[0] ) . '); }
|
||||
.post-navigation .nav-previous .post-title, .post-navigation .nav-previous a:hover .post-title, .post-navigation .nav-previous .meta-nav { color: #fff; }
|
||||
.post-navigation .nav-previous a:before { background-color: rgba(0, 0, 0, 0.4); }
|
||||
';
|
||||
}
|
||||
|
||||
if ( $next && has_post_thumbnail( $next->ID ) ) {
|
||||
$nextthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $next->ID ), 'post-thumbnail' );
|
||||
$css .= '
|
||||
.post-navigation .nav-next { background-image: url(' . esc_url( $nextthumb[0] ) . '); border-top: 0; }
|
||||
.post-navigation .nav-next .post-title, .post-navigation .nav-next a:hover .post-title, .post-navigation .nav-next .meta-nav { color: #fff; }
|
||||
.post-navigation .nav-next a:before { background-color: rgba(0, 0, 0, 0.4); }
|
||||
';
|
||||
}
|
||||
|
||||
wp_add_inline_style( 'twentyfifteen-style', $css );
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'twentyfifteen_post_nav_background' );
|
||||
|
||||
/**
|
||||
* Display descriptions in main navigation.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param string $item_output The menu item output.
|
||||
* @param WP_Post $item Menu item object.
|
||||
* @param int $depth Depth of the menu.
|
||||
* @param array $args wp_nav_menu() arguments.
|
||||
* @return string Menu item with possible description.
|
||||
*/
|
||||
function twentyfifteen_nav_description( $item_output, $item, $depth, $args ) {
|
||||
if ( 'primary' == $args->theme_location && $item->description ) {
|
||||
$item_output = str_replace( $args->link_after . '</a>', '<div class="menu-item-description">' . $item->description . '</div>' . $args->link_after . '</a>', $item_output );
|
||||
}
|
||||
|
||||
return $item_output;
|
||||
}
|
||||
add_filter( 'walker_nav_menu_start_el', 'twentyfifteen_nav_description', 10, 4 );
|
||||
|
||||
/**
|
||||
* Add a `screen-reader-text` class to the search form's submit button.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param string $html Search form HTML.
|
||||
* @return string Modified search form HTML.
|
||||
*/
|
||||
function twentyfifteen_search_form_modify( $html ) {
|
||||
return str_replace( 'class="search-submit"', 'class="search-submit screen-reader-text"', $html );
|
||||
}
|
||||
add_filter( 'get_search_form', 'twentyfifteen_search_form_modify' );
|
||||
|
||||
/**
|
||||
* Modifies tag cloud widget arguments to display all tags in the same font size
|
||||
* and use list format for better accessibility.
|
||||
*
|
||||
* @since Twenty Fifteen 1.9
|
||||
*
|
||||
* @param array $args Arguments for tag cloud widget.
|
||||
* @return array The filtered arguments for tag cloud widget.
|
||||
*/
|
||||
function twentyfifteen_widget_tag_cloud_args( $args ) {
|
||||
$args['largest'] = 22;
|
||||
$args['smallest'] = 8;
|
||||
$args['unit'] = 'pt';
|
||||
$args['format'] = 'list';
|
||||
|
||||
return $args;
|
||||
}
|
||||
add_filter( 'widget_tag_cloud_args', 'twentyfifteen_widget_tag_cloud_args' );
|
||||
|
||||
|
||||
/**
|
||||
* Implement the Custom Header feature.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
require get_template_directory() . '/inc/custom-header.php';
|
||||
|
||||
/**
|
||||
* Custom template tags for this theme.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
require get_template_directory() . '/inc/template-tags.php';
|
||||
|
||||
/**
|
||||
* Customizer additions.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
require get_template_directory() . '/inc/customizer.php';
|
9
twentyfifteen/genericons/COPYING.txt
Normal file
9
twentyfifteen/genericons/COPYING.txt
Normal file
|
@ -0,0 +1,9 @@
|
|||
Genericons is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
|
||||
|
||||
The fonts are distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.
|
||||
|
||||
This license does not convey any intellectual property rights to third party trademarks that may be included in the icon font; such marks remain subject to all rights and guidelines of use of their owner.
|
BIN
twentyfifteen/genericons/Genericons.eot
Normal file
BIN
twentyfifteen/genericons/Genericons.eot
Normal file
Binary file not shown.
543
twentyfifteen/genericons/Genericons.svg
Normal file
543
twentyfifteen/genericons/Genericons.svg
Normal file
|
@ -0,0 +1,543 @@
|
|||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
||||
<!--
|
||||
2014-10-3: Created.
|
||||
-->
|
||||
<svg xmlns="http://www.w3.org/2000/svg">
|
||||
<metadata>
|
||||
Created by FontForge 20120731 at Fri Oct 3 09:39:07 2014
|
||||
By Joen
|
||||
Created by Joen with FontForge 2.0 (http://fontforge.sf.net)
|
||||
</metadata>
|
||||
<defs>
|
||||
<font id="Genericons" horiz-adv-x="2048" >
|
||||
<font-face
|
||||
font-family="Genericons"
|
||||
font-weight="500"
|
||||
font-stretch="normal"
|
||||
units-per-em="2048"
|
||||
panose-1="2 0 6 9 0 0 0 0 0 0"
|
||||
ascent="2048"
|
||||
descent="0"
|
||||
bbox="-0.0140489 0 2048.01 2048"
|
||||
underline-thickness="102.4"
|
||||
underline-position="-204.8"
|
||||
unicode-range="U+F100-F517"
|
||||
/>
|
||||
<missing-glyph />
|
||||
<glyph glyph-name="uniF413" unicode=""
|
||||
d="M256 1280c565.504 0 1024 -458.496 1024 -1024h-256c0 423.552 -344.448 768 -768 768v256zM256 1792c848.256 0 1536 -687.744 1536 -1536h-256c0 705.792 -574.208 1280 -1280 1280v256zM448 640c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192
|
||||
s-192 86.0156 -192 192s85.8877 192 192 192z" />
|
||||
<glyph glyph-name="uniF462" unicode=""
|
||||
d="M618.502 1337l-213.004 142.004l-303.335 -455.002l303.335 -455.002l213.004 142.004l-208.665 312.998zM1642.5 1479l-213.004 -142.004l208.665 -312.998l-208.665 -312.998l213.004 -142.004l303.335 455.002zM771.821 543.045l248.357 -62.0898l256 1024
|
||||
l-248.357 62.0898z" />
|
||||
<glyph glyph-name="uniF457" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 512c70.6562 0 128 57.4717 128 128s-57.3438 128 -128 128c-70.7842 0 -128 -57.4717 -128 -128s57.2158 -128 128 -128z
|
||||
M1342.72 1155.84c24.832 38.9121 37.248 85.1201 37.1201 138.752c0 74.4961 -27.6475 133.504 -83.7119 176.641c-55.9355 43.2637 -133.632 64.7676 -231.936 64.7676c-119.809 0 -234.496 -31.2324 -344.32 -93.9521l91.9043 -180.096
|
||||
c89.2158 47.2314 167.168 70.9121 233.983 70.9121c26.752 0 48.5127 -5.37598 65.2803 -16.2559c17.2803 -10.752 25.4717 -25.4727 25.4717 -44.0322c0 -23.2959 -8.06348 -44.0322 -23.5518 -62.208c-16 -18.0479 -41.4717 -38.4004 -77.1836 -60.9277
|
||||
c-45.1846 -28.1602 -76.416 -57.0889 -94.3359 -87.04c-17.5361 -29.6963 -26.3682 -66.4326 -26.3682 -109.44v-56.96h203.647v34.0479c0 18.6885 5.50391 35.2002 17.2803 48.8965c12.0322 14.0801 40.96 36.0957 86.9121 66.0479
|
||||
c55.04 34.8154 94.5918 71.6797 119.808 110.848z" />
|
||||
<glyph glyph-name="uniF403" unicode=""
|
||||
d="M1541.38 1530.62l506.624 -506.624l-506.624 -506.624c-131.456 -134.272 -314.752 -217.728 -517.376 -217.728c-202.752 0 -386.048 83.4551 -517.504 217.983l-506.496 506.368v0l506.496 506.496c131.456 134.4 314.624 217.984 517.504 217.984
|
||||
c202.752 0 385.92 -83.584 517.376 -217.856zM1404.42 651.776l372.096 372.224l-370.943 370.944c-102.528 104.704 -237.568 161.536 -381.568 161.536c-144.128 0 -279.168 -56.9609 -380.288 -160.385l-372.096 -372.096l370.688 -370.56
|
||||
c102.528 -104.96 237.696 -161.792 381.824 -161.792c144 0 279.168 56.832 380.288 160.128zM1408 1024zM640 1024c0 212.096 172.032 384 384 384s384 -171.904 384 -384c0 -211.968 -172.032 -384 -384 -384s-384 172.032 -384 384zM768 1152
|
||||
c0 -70.6562 57.2158 -128 128 -128c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128c-70.7842 0 -128 -57.3438 -128 -128z" />
|
||||
<glyph glyph-name="uniF505" unicode=""
|
||||
d="M256 1408v256h256v-256h-256zM768 1664h1024v-256h-1024v256zM256 896v256h256v-256h-256zM1408 1152v-256h-640v256h640zM256 384v256h256v-256h-256zM768 384v256h896v-256h-896z" />
|
||||
<glyph glyph-name="uniF50F" unicode=""
|
||||
d="M1920 1024l-384 -384v256h-384v-384h256l-384 -384l-384 384h256v384h-384v-256l-384 384l384 384v-256h384v384h-256l384 384l384 -384h-256v-384h384v256z" />
|
||||
<glyph glyph-name="uniF307" unicode=""
|
||||
d="M768 640v128h128v-128h-128zM768 896v128h128v-128h-128zM768 1152v128h128v-128h-128zM512 640v128h128v-128h-128zM512 896v128h128v-128h-128zM1280 896v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 1152v128h128v-128h-128zM1408 1664h256v-1280h-1408
|
||||
v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128zM1024 896v128h128v-128h-128zM1024 640v128h128v-128h-128z
|
||||
" />
|
||||
<glyph glyph-name="uniF460" unicode=""
|
||||
d="M1664 1280h128l-256 -768h-768l256 768h128l86.2725 256h339.455zM1300.86 1280h214.271l-43.1357 128h-128zM809.728 1536l86.2725 -256l-256 -768h-128l-256 768h128l86.2725 256h339.455zM532.864 1280h214.271l-43.1357 128h-128z" />
|
||||
<glyph glyph-name="uniF430" unicode=""
|
||||
d="M1024 1453.31l86.6562 -86.6553l-342.656 -342.656h896v-128h-896l342.656 -342.656l-86.6562 -86.6553l-493.312 493.312z" />
|
||||
<glyph glyph-name="uniF515" unicode=""
|
||||
d="M1024 1920c494.848 0 896 -401.152 896 -896s-401.152 -896 -896 -896s-896 401.152 -896 896s401.152 896 896 896zM1387.52 601.216c29.4404 0 55.6807 23.6807 55.8086 56.0645c0 33.1514 -13.0557 46.4639 -35.4561 59.5195
|
||||
c-150.4 90.1123 -325.12 135.168 -521.216 135.168c-114.433 0 -224.769 -14.4639 -335.36 -39.6797c-27.1357 -5.12012 -48.7676 -23.8076 -48.7676 -61.4404c0 -29.1836 22.6553 -56.3193 56.7041 -56.3193c11.0078 0 29.4395 5.75977 44.1592 8.83203
|
||||
c90.2402 18.6875 186.752 30.9756 282.624 30.9756c171.776 0 333.696 -41.3438 463.616 -119.808c13.5684 -8.32031 23.4238 -13.3125 37.8877 -13.3125zM1485.18 838.4c38.9121 0 69.7607 31.3594 69.8887 70.0156c0 31.8721 -11.0078 53.6318 -40.832 70.7842
|
||||
c-178.433 106.752 -405.376 165.12 -639.872 165.12c-149.76 0 -252.544 -21.248 -353.28 -48.8965c-37.248 -10.624 -55.6797 -36.7354 -55.6797 -74.8799c0 -38.7842 31.3594 -70.1436 69.8877 -70.1436c16.3838 0 26.1123 5.11914 43.5205 10.1113
|
||||
c81.1514 21.5039 179.071 37.376 292.479 37.376c221.185 0 423.168 -57.4717 568.96 -144c13.3125 -7.55176 25.6006 -15.4873 44.9277 -15.4873zM1596.29 1114.24c45.3115 0 84.6084 35.0713 84.3516 83.8398c0 42.752 -18.9434 66.0479 -46.208 81.4082
|
||||
c-202.111 118.912 -478.976 172.928 -742.016 172.928c-155.008 0 -297.472 -17.5361 -425.216 -55.168c-32.5117 -9.59961 -62.7197 -36.9922 -62.7197 -85.6318c0 -47.8721 36.7354 -85.6318 84.4795 -85.6318c16.5117 0 33.0244 6.39941 46.0801 9.72754
|
||||
c113.024 30.5918 236.416 43.0078 357.888 43.0078c243.328 0 495.104 -53.5039 657.28 -150.784c17.0244 -9.34375 27.7764 -13.6953 46.0801 -13.6953z" />
|
||||
<glyph glyph-name="uniF448" unicode=""
|
||||
d="M512 384v1280h384v-1280h-384zM1152 1664h384v-1280h-384v1280z" />
|
||||
<glyph glyph-name="uniF453" unicode=""
|
||||
d="M1536 2048c141.312 0 256 -114.688 256 -256v-1536c0 -141.312 -114.688 -256 -256 -256h-1024c-141.312 0 -256 114.688 -256 256v1536c0 141.312 114.688 256 256 256h1024zM1024 128c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
|
||||
c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1536 512v1280h-1024v-1280h1024z" />
|
||||
<glyph glyph-name="uniF419" unicode=""
|
||||
d="M0 256v256h2048v-256h-2048zM0 1792h2048v-256h-2048v256zM0 896v256h2048v-256h-2048z" />
|
||||
<glyph glyph-name="uniF423" unicode=""
|
||||
d="M567.936 1440.9l-267.136 -480.896h403.2v-384h-128v256h-492.8l372.864 671.104zM1644.8 960h403.2v-384h-128v256h-492.8l372.864 671.104l112 -62.207zM1088 1344c176.768 0 320 -143.232 320 -320s-143.232 -320 -320 -320s-320 143.232 -320 320
|
||||
s143.232 320 320 320zM1088 832c105.856 0 192 86.1436 192 192s-86.1436 192 -192 192s-192 -86.1436 -192 -192s86.1436 -192 192 -192z" />
|
||||
<glyph glyph-name="uniF512" unicode=""
|
||||
d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312z" />
|
||||
<glyph glyph-name="uniF417" unicode=""
|
||||
d="M960 1792c318.08 0 576 -257.92 576 -576c0 -159.232 -64.6396 -303.36 -169.088 -407.68l-406.912 -407.04l-406.912 407.04c-104.448 104.319 -169.088 248.447 -169.088 407.68c0 318.08 257.92 576 576 576zM960 896c176.64 0 320 143.36 320 320
|
||||
s-143.36 320 -320 320c-176.768 0 -320 -143.36 -320 -320s143.232 -320 320 -320z" />
|
||||
<glyph glyph-name="uniF410" unicode=""
|
||||
d="M256 1536h1536v-128l-768 -384l-768 384v128zM256 1216l768 -384l768 384v-704h-1536v704z" />
|
||||
<glyph glyph-name="uniF449" unicode=""
|
||||
d="M512 512v1024h1024v-1024h-1024z" />
|
||||
<glyph glyph-name="uniF467" unicode=""
|
||||
d="M1280 1280c282.752 0 512 -229.248 512 -512v-299.904l-150.016 149.889c-99.9688 99.9678 -231.04 150.016 -361.984 150.016h-256v-384l-640 640l640 640v-384h256z" />
|
||||
<glyph glyph-name="uniF224" unicode=""
|
||||
d="M1536 1792c141.312 0 256 -114.688 256 -256v-384c0 -424.064 -343.936 -768 -768 -768s-768 343.936 -768 768v384c0 141.312 114.688 256 256 256h1024zM1498.5 1189.5c50.0479 50.0479 50.0479 131.072 0 180.992c-50.0479 50.0479 -130.944 50.0479 -180.992 0
|
||||
l-293.504 -293.504l-293.504 293.504c-50.0479 50.0479 -131.072 50.0479 -180.992 0c-50.0479 -49.9199 -50.0479 -130.944 0 -180.992l361.984 -361.984l4.22363 4.22461c22.4004 -37.376 61.5684 -63.7441 108.288 -63.7441s85.8877 26.3682 108.288 63.7441
|
||||
l4.22363 -4.22461z" />
|
||||
<glyph glyph-name="uniF203" unicode=""
|
||||
d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-281.856v711.168h269.44l12.416 259.456h-281.984v192.384v0.255859v12.0322c0 71.2959 15.2324 114.432 108.544 114.432c86.6562 0 166.017 -0.639648 166.017 -0.639648
|
||||
l5.8877 242.304s-77.6963 9.98438 -182.528 9.98438c-259.584 0 -372.096 -159.872 -372.096 -333.952v-236.8h-254.336v-259.328h254.336v-711.296h-723.84c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280z" />
|
||||
<glyph glyph-name="uniF502" unicode=""
|
||||
d="M128 2048h1920l-960 -960z" />
|
||||
<glyph glyph-name="uniF412" unicode=""
|
||||
d="M1920 832l-640 -640v448h-1024v704l384 384v-704h640v448z" />
|
||||
<glyph glyph-name="uniF440" unicode=""
|
||||
d="M1152 640v-256h256l-384 -384l-384 384h256v256h256zM1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-384v256h-512v-256h-384c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.40039c-4.09668 20.7363 -6.40039 42.1123 -6.40039 64
|
||||
c0 176.768 143.232 320 320 320c89.3438 0 169.984 -36.7363 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
|
||||
<glyph glyph-name="uniF305" unicode=""
|
||||
d="M1408 1664h256v-1280h-1408v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128zM960 1280
|
||||
c35.3281 0 64 -28.6719 64 -64v-512c0 -35.3281 -28.6719 -64 -64 -64s-64 28.6719 -64 64v448h-64c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h128z" />
|
||||
<glyph glyph-name="uniF443" unicode=""
|
||||
d="M1152 1664l384 -384v-121.472v-6.52832v-768h-1024v1280h512h128zM1408 512v640h-256h-128v128v256h-384v-1024h768z" />
|
||||
<glyph glyph-name="uniF411" unicode=""
|
||||
d="M1280 1728l448 -448l-896 -896h-448v448zM1280 1536l-594.688 -594.688l96 -96l594.688 594.688zM768 512l128 128l-96 96v0l-64 64v0l-96 96l-128 -128zM845.312 781.312l96 -96l594.688 594.688l-96 96z" />
|
||||
<glyph glyph-name="uniF402" unicode=""
|
||||
d="M896 1536v-256h256v-128h-256v-256h-128v256h-256v128h256v256h128zM1297.15 878.848l494.848 -494.848l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576
|
||||
c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM832 768c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448s200.576 -448 448 -448z" />
|
||||
<glyph glyph-name="uniF420" unicode=""
|
||||
d="M483.2 1564.8l-227.2 227.2h640v-640l-232.32 232.32c-93.0557 -92.1602 -151.68 -218.88 -151.68 -360.32c0 -238.208 163.584 -436.736 384 -493.824v-262.656c-363.008 61.0566 -640 376.064 -640 756.48c0 212.096 88.0645 402.048 227.2 540.8zM1792 1024
|
||||
c0 -212.096 -88.0645 -401.92 -227.2 -540.8l227.2 -227.2h-640v640l18.5596 -18.5596l213.761 -213.761c93.0557 92.1602 151.68 218.88 151.68 360.32c0 238.208 -163.584 436.736 -384 493.824v262.656c363.008 -61.0566 640 -376.064 640 -756.48z" />
|
||||
<glyph glyph-name="uniF425" unicode=""
|
||||
d="M704 1024c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64s-64 28.6719 -64 64s28.6719 64 64 64zM704 1280c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64s-64 28.6719 -64 64s28.6719 64 64 64zM704 768c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64
|
||||
s-64 28.6719 -64 64s28.6719 64 64 64zM896 896v128h384v-128h-384zM896 640v128h384v-128h-384zM1280 1664h256v-1280h-1152v1280h256c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM832 1664c-35.3281 0 -64 -28.6719 -64 -64s28.6719 -64 64 -64
|
||||
h256c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256zM1408 512v1024h-128v-128h-640v128h-128v-1024h896zM896 1152v128h384v-128h-384z" />
|
||||
<glyph glyph-name="uniF508" unicode=""
|
||||
d="M1450.5 1395.2c45.6963 -69.376 124.288 -115.2 213.504 -115.2c5.50391 0 10.4961 1.28027 15.8721 1.66406l-399.872 -799.872l-256 512l-256 -512l-128 256l-256 -512l-299.776 599.424l228.992 114.561l70.7842 -141.568l256 512l128 -256l256 512l256 -512z
|
||||
M1664 1728c106.112 0 192 -86.0156 192 -192s-85.8877 -192 -192 -192s-192 86.0156 -192 192s85.8877 192 192 192z" />
|
||||
<glyph glyph-name="uniF507" unicode=""
|
||||
d="M1792 604.544c76.2881 -44.416 128 -126.08 128 -220.544c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256c0 94.5918 51.7119 176.128 128 220.544v163.456c0 70.7842 -57.2158 128 -128 128h-256v-291.456c76.2881 -44.416 128 -126.08 128 -220.544
|
||||
c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256c0 94.4639 51.8398 176.128 128 220.544v291.456h-256c-70.6562 0 -128 -57.2158 -128 -128v-163.456c76.1602 -44.416 128 -126.08 128 -220.544c0 -141.312 -114.688 -256 -256 -256s-256 114.688 -256 256
|
||||
c0 94.4639 51.8398 176.128 128 220.544v163.456c0 212.096 171.904 384 384 384h256v291.456c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256c0 -94.4639 -51.7119 -176.128 -128 -220.544v-291.456h256
|
||||
c211.968 0 384 -171.904 384 -384v-163.456zM1024 1792c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM384 256c70.6562 0 128 57.2158 128 128s-57.3438 128 -128 128s-128 -57.2158 -128 -128
|
||||
s57.3438 -128 128 -128zM1024 256c70.6562 0 128 57.2158 128 128s-57.3438 128 -128 128s-128 -57.2158 -128 -128s57.3438 -128 128 -128zM1664 256c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128s-128 -57.2158 -128 -128s57.2158 -128 128 -128z" />
|
||||
<glyph glyph-name="uniF306" unicode=""
|
||||
d="M1151.87 1219.46c0.12793 -0.511719 0.12793 -0.896484 0.12793 -1.4082v-1.79199v-0.255859c0 -5.12012 -0.639648 -10.3682 -1.91992 -15.4883l-128 -512c-8.57617 -34.1758 -43.2637 -55.04 -77.5684 -46.5918c-34.3037 8.57617 -55.168 43.2637 -46.5918 77.5684
|
||||
l108.16 432.512h-174.08c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h256h1.53613h1.28027c1.02344 -0.12793 1.91992 -0.12793 2.81543 -0.255859h0.255859c30.3359 -2.68848 54.5283 -26.624 57.8564 -56.96v0c0 -0.768555 0.12793 -1.4082 0.12793 -2.04785
|
||||
v-1.28027zM1408 1664h256v-1280h-1408v1280h256v128h128v-128h640v128h128v-128zM1536 640v640c0 70.7842 -57.2158 128 -128 128h-896c-70.6562 0 -128 -57.2158 -128 -128v-640c0 -70.7842 57.3438 -128 128 -128h896c70.7842 0 128 57.2158 128 128z" />
|
||||
<glyph glyph-name="uniF406" unicode=""
|
||||
d="M2048 1920l-832 -832l832 -832l-128 -128l-832 832l-832 -832l-128 128l832 832l-832 832l128 128l832 -832l832 832z" />
|
||||
<glyph glyph-name="uniF215" unicode=""
|
||||
d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280zM1024 1408c-212.096 0 -384 -171.904 -384 -384c0 -211.968 171.904 -384 384 -384
|
||||
c211.968 0 384 172.032 384 384c0 212.096 -172.032 384 -384 384zM1792 384v768h-274.176c10.624 -41.0879 18.1758 -83.4561 18.1758 -128c0 -282.752 -229.248 -512 -512 -512s-512 229.248 -512 512c0 44.5439 7.42383 86.9121 18.1758 128h-274.176v-768
|
||||
c0 -70.7842 57.3438 -128 128 -128h1280c70.7842 0 128 57.2158 128 128zM1792 1536v128c0 70.6562 -57.2158 128 -128 128h-128c-70.7842 0 -128 -57.3438 -128 -128v-128c0 -70.6562 57.2158 -128 128 -128h128c70.7842 0 128 57.3438 128 128z" />
|
||||
<glyph glyph-name="uniF202" unicode=""
|
||||
d="M1920 1583.74c-49.2803 -73.7285 -111.744 -138.368 -183.552 -190.208c0.767578 -15.7441 1.2793 -31.6162 1.2793 -47.4883c0 -485.76 -369.92 -1046.02 -1046.27 -1046.02c-207.616 0 -400.768 60.7998 -563.456 165.248
|
||||
c28.7998 -3.45605 58.1123 -5.24805 87.8076 -5.24805c172.032 0 330.752 58.752 456.448 157.439c-160.768 2.81641 -296.576 108.929 -343.424 255.104c22.5283 -3.96777 45.4404 -6.52832 69.248 -6.52832c33.5361 0 65.9199 4.48047 96.7676 12.7998
|
||||
c-168.319 33.792 -294.912 182.272 -294.912 360.448v4.73633c49.6641 -27.5205 106.368 -44.0322 166.528 -45.9521c-98.6875 65.9199 -163.456 178.432 -163.456 305.92c0 67.3281 18.1758 130.688 49.792 184.96c181.376 -222.464 452.353 -368.768 757.889 -384.128
|
||||
c-6.27246 26.8799 -9.60059 54.9121 -9.60059 83.7119c0 203.008 164.608 367.616 367.616 367.616c105.855 0 201.472 -44.6719 268.544 -116.096c83.584 16.5117 162.304 47.1035 233.216 89.2158c-27.3916 -85.8887 -85.7598 -157.952 -161.536 -203.393
|
||||
c74.3682 8.83203 145.152 28.5439 211.072 57.8564z" />
|
||||
<glyph glyph-name="uniF222" unicode=""
|
||||
d="M1223.94 775.936c20.0967 20.0967 52.0967 19.9688 72.0645 0c19.9678 -19.9678 19.9678 -52.9912 0 -72.96c-56.96 -56.96 -145.92 -86.0156 -270.976 -86.0156c-126.977 0 -216.064 29.0557 -273.024 86.0156c-19.9678 19.9688 -19.9678 52.9922 0 72.96
|
||||
c19.9678 19.9688 51.9678 19.9688 71.9355 0c38.0166 -38.0156 103.04 -56.0635 199.04 -56.0635c97.9209 0 162.944 18.0479 200.96 56.0635zM894.976 982.016c0 -61.0557 -49.9199 -112 -112 -112c-60.9277 0 -110.976 50.9443 -110.976 112
|
||||
c0 61.9521 49.9199 112 110.976 112c61.9521 0 112 -50.0479 112 -112zM1265.02 1094.02c61.9512 0 112 -50.0479 112 -112c0 -61.0557 -50.0488 -112 -112 -112c-61.9521 0 -112 50.9443 -112 112c0 61.9521 50.0479 112 112 112zM1698.05 1089.02
|
||||
c24.96 17.9199 43.0078 45.9512 43.1357 78.9756c0 54.0156 -44.0312 98.0479 -98.0479 98.0479c-32 0 -57.9834 -16 -76.0322 -39.04c53.8887 -39.9355 98.9443 -87.04 130.944 -137.983zM1021.06 500.992c347.904 0 631.937 177.023 632.064 393.983
|
||||
c0 219.009 -284.032 396.032 -632.064 396.032c-349.056 0 -632.96 -177.023 -632.96 -395.008s283.904 -395.008 632.96 -395.008zM306.944 1168c0 -30.9756 16 -57.9844 39.9355 -74.8799c32 50.9443 76.9277 97.0234 131.968 136.96
|
||||
c-17.9199 22.0156 -43.0078 35.9678 -72.96 35.9678c-54.9121 0 -98.9434 -44.0322 -98.9434 -98.0479zM1600 1805.06c-41.9844 0 -77.0557 -35.0713 -77.0557 -77.0557s35.0713 -77.0557 77.0557 -77.0557s77.0557 34.9434 77.0557 77.0557
|
||||
s-35.0713 77.0557 -77.0557 77.0557zM1842.94 1168c0 -75.0078 -41.9844 -137.984 -101.889 -173.056c8.95996 -32 13.9521 -64.8965 13.9521 -98.9443c0 -274.944 -329.088 -498.048 -734.08 -498.048s-734.976 222.976 -734.976 497.023
|
||||
c0 35.9688 6.01562 70.0166 16.1279 104.064c-57.9844 34.9443 -97.0244 97.0244 -97.0244 168.96c0 110.976 89.9844 200.96 200.96 200.96c66.0488 0 124.032 -32.8955 160 -82.9443c114.944 60.9287 257.024 99.9688 411.904 105.984l92.0322 456.96
|
||||
c3.07227 14.0801 11.0078 25.9844 23.04 33.0244c12.0322 8.06348 25.9834 9.9834 39.04 7.04004l312.96 -72.0645c30.9756 52.9922 88.96 89.9844 155.008 89.9844c98.9443 0 179.072 -80 179.072 -178.944s-80 -178.944 -178.944 -178.944
|
||||
c-95.1035 0 -172.032 73.9844 -178.048 167.937l-262.016 60.0322l-77.0566 -386.049c148.992 -7.93555 285.952 -46.9756 397.057 -108.031c35.9678 51.9678 94.9756 86.0156 162.943 86.0156c109.952 0 199.937 -89.9844 199.937 -200.96z" />
|
||||
<glyph glyph-name="uniF214" unicode=""
|
||||
d="M1091.2 1920v-452.992h425.216v-281.216h-425.216v-459.52c0 -103.937 5.50391 -170.624 16.6396 -200.192c10.8799 -29.3125 31.4883 -52.8643 61.3125 -70.5283c39.6797 -23.8076 84.8633 -35.7119 135.936 -35.7119c90.624 0 180.864 29.4404 270.72 88.4482v-282.624
|
||||
c-76.6719 -35.9678 -146.048 -61.3125 -208 -75.9043c-61.9512 -14.4639 -129.023 -21.7598 -201.216 -21.7598c-81.9199 0 -154.368 10.3682 -217.344 30.9756c-62.9756 20.6084 -116.608 50.3047 -161.024 88.4482c-44.5439 38.2725 -75.2637 78.9766 -92.416 122.112
|
||||
c-17.1514 43.1357 -25.7275 105.6 -25.7275 187.52v628.736h-198.016v253.568c70.3994 22.9121 130.688 55.6797 180.863 98.4316c50.3047 42.624 90.4961 93.8242 120.832 153.856c30.3359 59.7754 51.2002 135.808 62.7207 228.352h254.72z" />
|
||||
<glyph glyph-name="uniF104" unicode=""
|
||||
d="M512 1664l1152 -640l-1152 -640v1280z" />
|
||||
<glyph glyph-name="uniF50B" unicode=""
|
||||
d="M1408 1152l-384 -384l-384 384h256v512h256v-512h256zM384 640h1280v-256h-1280v256z" />
|
||||
<glyph glyph-name="uniF409" unicode=""
|
||||
d="M1024 1664l640 -512l-128 -128v-512h-1024v512l-128 128zM1152 576v448h-256v-448h256z" />
|
||||
<glyph glyph-name="uniF458" unicode=""
|
||||
d="M1920 1024l-1024 -640v480l-768 -480v1280l768 -480v480z" />
|
||||
<glyph glyph-name="uniF218" unicode=""
|
||||
d="M1792 1152h256v-128h-256v-256h-128v256h-256v128h256v256h128v-256zM1301.5 1920l-150.528 -84.7363h-145.792c54.0166 -44.6719 167.04 -138.624 167.04 -317.439c0 -173.952 -98.8154 -256.256 -197.504 -333.952
|
||||
c-30.5918 -30.4639 -65.9199 -63.4883 -65.9199 -115.2s35.3281 -79.8721 61.1846 -101.12l84.7354 -65.792c103.424 -86.9121 197.376 -166.912 197.376 -329.216c0 -221.184 -213.888 -444.544 -618.368 -444.544c-341.119 0 -505.728 162.304 -505.728 336.384
|
||||
c0 84.6084 42.3682 204.544 181.12 286.849c145.792 89.4717 343.424 101.119 449.152 108.159c-32.8965 42.3682 -70.5283 87.04 -70.5283 159.744c0 40.1924 11.7754 63.7441 23.5518 91.7764c-25.9844 -2.04785 -51.7119 -4.6084 -75.2637 -4.6084
|
||||
c-249.216 0 -390.4 185.856 -390.4 369.28c0 108.032 49.4082 227.968 150.528 315.008c134.144 110.592 294.016 129.408 420.864 129.408h484.479zM1094.53 480.768c0 119.809 -77.5684 183.425 -256.385 310.528c-18.8154 2.30371 -30.5918 2.30371 -54.0156 2.30371
|
||||
c-21.1201 0 -148.224 -4.60742 -246.912 -37.6318c-51.8398 -18.8154 -202.368 -75.1357 -202.368 -242.304c0 -166.784 162.305 -286.848 413.952 -286.848c225.792 0 345.729 108.159 345.729 253.951zM906.496 1238.02c54.0156 54.1445 58.752 129.408 58.624 171.648
|
||||
c0 169.344 -101.12 432.768 -296.192 432.768c-61.3115 0 -127.104 -30.5918 -164.735 -77.5674c-39.9365 -49.4082 -51.7119 -112.896 -51.7119 -174.08c0 -157.568 91.6475 -418.561 294.016 -418.561c58.752 0 122.368 28.2881 160 65.792z" />
|
||||
<glyph glyph-name="uniF513" unicode=""
|
||||
d="M1920 1280l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496l212.991 636.032l-555.264 387.968h685.312l210.688 640l210.688 -640h685.312zM1024 807.68l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456l-118.016 358.528v-702.849z
|
||||
" />
|
||||
<glyph glyph-name="uniF301" unicode=""
|
||||
d="M704 1152h960l-256 -640h-1024v1024h384l64 -128h448v-128h-640l-128 -256h128z" />
|
||||
<glyph glyph-name="uniF474" unicode=""
|
||||
d="M128 1408v384h384zM640 768v512h768v-512h-768zM1536 1792h384v-384zM128 640l384 -384h-384v384zM1536 256l384 384v-384h-384zM1536 1408l256 384l128 -128zM1536 640l384 -256l-128 -128zM128 384l384 256l-256 -384zM128 1664l128 128l256 -384z" />
|
||||
<glyph glyph-name="uniF438" unicode=""
|
||||
d="M1280 1792c141.312 0 256 -114.688 256 -256v-1024c0 -141.312 -114.688 -256 -256 -256h-512c-141.312 0 -256 114.688 -256 256v384h128v-128h768v768h-768v-128h-128v128c0 141.312 114.688 256 256 256h512zM1024 384c70.7842 0 128 57.2158 128 128
|
||||
s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM768 896v128h-512v256h512v128l384 -256z" />
|
||||
<glyph glyph-name="uniF451" unicode=""
|
||||
d="M256 384v1280l1024 -640zM1408 1664h384v-1280h-384v1280z" />
|
||||
<glyph glyph-name="uniF404" unicode=""
|
||||
d="M1024 640c-19.8398 0 -39.04 2.43164 -57.8564 5.63184l436.225 436.225c3.2002 -18.8164 5.63184 -38.0166 5.63184 -57.8564c0 -211.968 -172.032 -384 -384 -384zM1696.26 1375.74l351.744 -351.744l-506.624 -506.624
|
||||
c-131.456 -134.272 -314.752 -217.728 -517.376 -217.728c-117.248 0 -226.944 29.3115 -324.864 79.1035l147.072 146.944c56.7041 -20.6084 115.968 -34.0479 177.92 -34.0479c144 0 279.168 56.832 380.288 160.128l372.096 372.224l-216.063 215.936zM1606.02 1722.11
|
||||
l128.641 -129.024l-1279.87 -1279.87l-128.896 128.769l128 128.128l-453.888 453.888v0l506.496 506.496c131.456 134.4 314.624 217.984 517.504 217.984c170.368 0 324.48 -61.8242 448 -160.385zM896 1024c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128
|
||||
c-70.7842 0 -128 -57.3438 -128 -128s57.2158 -128 128 -128zM1229.18 1345.28l105.729 105.728c-90.752 66.8164 -197.12 105.473 -310.912 105.473c-144.128 0 -279.168 -56.9609 -380.288 -160.385l-372.096 -372.096l318.208 -318.336l113.023 113.024
|
||||
c-38.6553 59.5195 -62.8477 129.023 -62.8477 205.312c0 212.096 172.032 384 384 384c76.2881 0 145.792 -24.1924 205.184 -62.7197z" />
|
||||
<glyph glyph-name="uniF209" unicode=""
|
||||
d="M1073.15 2048c481.664 0 798.976 -348.672 798.976 -722.944c0 -495.104 -275.328 -865.151 -680.96 -865.151c-136.32 0 -264.448 73.7275 -308.352 157.439c0 0 -73.2168 -290.943 -88.832 -347.136c-26.8809 -97.2803 -79.2324 -194.56 -127.104 -270.208
|
||||
l-148.992 54.0156c-3.58398 88.3203 -0.639648 194.049 22.0166 289.92c24.1914 102.4 162.304 687.744 162.304 687.744s-40.3203 80.6406 -40.3203 199.809c0 187.008 108.544 326.784 243.456 326.784c114.816 0 170.24 -86.1445 170.24 -189.44
|
||||
c0 -115.328 -73.7275 -288 -111.488 -448c-31.6152 -133.632 67.2002 -242.816 199.168 -242.816c239.232 0 400.128 307.072 400.128 670.977c0 276.607 -186.367 483.712 -525.184 483.712c-382.72 0 -621.312 -285.568 -621.312 -604.544
|
||||
c0 -110.08 32.5117 -187.521 83.1992 -247.424c23.5527 -27.7764 26.624 -38.9121 18.3047 -70.6562c-6.0166 -23.04 -19.9688 -78.9766 -25.7285 -101.248c-8.44824 -32 -34.3037 -43.2637 -63.2314 -31.3604c-176.257 71.6807 -258.433 264.96 -258.433 482.048
|
||||
c0 358.656 302.336 788.48 902.145 788.48z" />
|
||||
<glyph glyph-name="uniF217" unicode=""
|
||||
d="M1024 1920c494.08 0 896 -402.048 896 -896c0 -494.08 -401.92 -896 -896 -896c-493.952 0 -896 401.92 -896 896c0 493.952 402.048 896 896 896zM1112.83 1769.47c-211.2 10.4961 -420.864 -73.4717 -564.608 -220.16
|
||||
c-146.432 -144.256 -216.063 -354.176 -189.695 -551.68c23.4238 -197.248 142.592 -378.496 307.584 -476.032c160.768 -96 365.312 -104.191 530.943 -29.0557c-47.1035 -13.0557 -96.6396 -20.3516 -147.712 -20.3516c-303.487 0 -550.399 246.911 -550.399 550.399
|
||||
c0 143.872 55.6797 274.944 146.304 373.12c1.02441 1.02441 1.91992 1.91992 2.81641 2.94434c4.60742 4.73535 9.08789 9.47168 13.6953 14.208c0.512695 0.383789 0.896484 1.02344 1.4082 1.2793c128 148.353 317.056 242.177 528.256 242.177
|
||||
c221.057 0 418.176 -102.912 546.048 -263.424c-20.8633 33.5352 -44.0312 65.6631 -69.376 95.6152c-137.983 168.832 -343.68 273.408 -555.264 280.96zM1415.04 1006.21c4.35156 -90.3682 -25.3438 -182.912 -80.7676 -257.152
|
||||
c-55.5527 -73.8555 -135.169 -129.664 -225.28 -156.928c-74.8799 -22.7842 -156.544 -25.5996 -234.112 -7.04004c54.0166 -21.6318 112.896 -33.6641 174.464 -33.6641c259.968 0 471.296 211.456 471.296 471.296c0 0.768555 -0.12793 1.66406 -0.12793 2.68848
|
||||
c-13.6953 142.336 -88.1914 276.352 -200.319 359.168c-137.345 104.576 -332.288 116.864 -479.232 38.0156c-73.2158 -38.5273 -136.832 -97.1514 -176.896 -166.912c-40.5762 -69.8877 -58.4961 -151.68 -52.2246 -230.912
|
||||
c10.624 -158.976 124.8 -305.023 271.616 -345.216c146.432 -44.0322 313.344 19.584 391.936 142.849c82.5605 120.447 62.7207 293.119 -36.3516 391.68c-94.0801 104.192 -260.992 115.968 -367.872 36.8643c-54.0156 -38.6562 -92.5439 -94.3359 -105.344 -157.057
|
||||
c-13.3125 -62.0801 -1.66406 -128.64 30.4639 -181.76c32.1279 -53.7598 83.7119 -93.5684 141.952 -108.032c58.2402 -15.1035 121.6 -4.86328 171.52 25.6006c50.5605 30.4639 87.5518 80.1279 97.9199 135.68c11.3926 55.2959 -1.66406 114.432 -34.3037 158.848
|
||||
c-32.1279 45.5684 -82.8164 73.3447 -135.936 76.9287c-52.9922 4.0957 -105.856 -17.2803 -141.568 -54.2725c-36.6084 -35.9678 -52.0957 -89.0879 -44.6719 -137.855c7.55176 -48.6406 38.2715 -93.6963 80 -115.584c26.4961 -14.7207 57.4717 -19.8408 86.9121 -16.3848
|
||||
c-62.0801 1.53613 -114.177 43.2646 -131.456 100.097c-0.512695 0.767578 -1.02441 1.66406 -1.4082 2.6875c-17.9199 41.4717 -13.0557 94.3359 16.1279 133.376c28.416 38.7842 77.5684 63.3604 128.768 60.7998c51.0723 -1.66406 101.376 -33.0234 128 -78.9756
|
||||
c27.3926 -45.8242 32 -106.752 7.80859 -158.336c-24.0645 -51.7119 -73.7285 -90.2402 -131.584 -101.632c-57.4717 -12.416 -122.752 4.73535 -167.68 47.3594c-44.8008 40.96 -72.0645 104.192 -67.4561 168.32c3.83984 133.12 150.911 237.44 287.104 200.96
|
||||
c138.368 -31.6162 226.944 -196.736 173.824 -338.304c-48.6406 -142.72 -224.769 -225.536 -373.888 -166.912c-74.1123 27.5195 -134.784 85.8877 -169.729 157.568c-34.9443 72.1914 -42.2402 158.592 -17.9199 237.695c47.8721 161.664 226.176 269.185 398.848 238.464
|
||||
c175.36 -25.5996 313.217 -192.64 317.568 -374.016zM1024 207.488c319.232 0 595.968 184.319 730.112 451.712c37.248 84.7354 58.8799 175.744 58.8799 265.728c0 318.977 -247.04 554.368 -553.216 607.616c154.496 -64 279.296 -200.32 331.52 -362.496
|
||||
c70.1445 -203.136 20.8643 -447.872 -133.12 -608.896c-148.224 -162.944 -384.384 -245.633 -608.128 -206.208c-226.048 35.584 -422.912 198.271 -517.504 407.936c-97.792 209.408 -90.3682 468.224 26.8799 674.432c116.736 206.337 329.344 354.433 566.272 395.009
|
||||
c11.7754 2.17578 23.6797 3.96777 35.584 5.37598c-420.992 -32.1279 -753.664 -384.641 -753.664 -813.696c0 -450.304 366.208 -816.512 816.384 -816.512z" />
|
||||
<glyph glyph-name="uniF469" unicode=""
|
||||
d="M256 1280h1536v-768h-256v384h-1024v-384h-256v768zM1408 1664v-256h-768v256h768zM1408 640c0 -98.3037 37.5039 -196.48 112.512 -271.488l112.513 -112.512h-768l-112.513 112.512c-75.0078 75.0078 -112.512 173.185 -112.512 271.488v128h768v-128z" />
|
||||
<glyph glyph-name="uniF476" unicode=""
|
||||
d="M384 1248c123.776 0 224 -100.224 224 -224c0 -123.648 -100.224 -224 -224 -224s-224 100.352 -224 224c0 123.776 100.224 224 224 224zM1024 1248c123.648 0 224 -100.224 224 -224c0 -123.648 -100.352 -224 -224 -224c-123.776 0 -224 100.352 -224 224
|
||||
c0 123.776 100.224 224 224 224zM1664 1248c123.648 0 224 -100.224 224 -224c0 -123.648 -100.352 -224 -224 -224s-224 100.352 -224 224c0 123.776 100.352 224 224 224z" />
|
||||
<glyph glyph-name="uniF211" unicode=""
|
||||
d="M1472 1440c229.888 0 416 -186.24 416 -416s-186.112 -416 -416 -416s-416 186.24 -416 416s186.112 416 416 416zM576 1440c229.76 0 416 -186.24 416 -416s-186.24 -416 -416 -416s-416 186.24 -416 416s186.24 416 416 416z" />
|
||||
<glyph glyph-name="uniF456" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896
|
||||
l51.584 640h-281.6l51.2002 -640h178.815z" />
|
||||
<glyph glyph-name="uniF471" unicode=""
|
||||
d="M512 1664h358.656c163.328 0 281.855 -23.2959 355.712 -69.7598c73.7275 -46.4639 110.592 -120.448 110.592 -221.824c0 -68.8643 -16.1279 -125.312 -48.3838 -169.344c-32.3838 -44.1602 -75.2646 -70.6562 -128.769 -79.6162v-7.93652
|
||||
c72.96 -16.2559 125.568 -46.7197 157.952 -91.3916c32.2559 -44.6719 48.5127 -104.063 48.5127 -178.048c0 -105.088 -38.0166 -187.008 -113.921 -245.888c-76.0312 -58.8809 -178.943 -88.1924 -309.248 -88.1924h-431.104v1152zM768 1207.81h130.176
|
||||
c66.3047 0 114.176 10.2402 143.872 30.7207c29.5684 20.4795 44.5439 54.3994 44.5439 101.632c0 44.1602 -16.1279 75.7754 -48.5117 94.9756c-32.3838 19.0723 -83.4561 28.7998 -153.344 28.7998h-116.736v-256.128zM768 1013.89v-300.16h147.456
|
||||
c67.2002 0 116.864 12.9287 148.864 38.6562c32.1279 25.7285 48.1279 65.1523 48.1279 118.145c0 95.6152 -68.3525 143.487 -204.929 143.487h-139.52v-0.12793z" />
|
||||
<glyph glyph-name="uniF433" unicode=""
|
||||
d="M0 896l896 -896h-896v896z" />
|
||||
<glyph glyph-name="uniF447" unicode=""
|
||||
d="M1408 512c70.7842 0 128 -57.2158 128 -128s-57.2158 -128 -128 -128s-128 57.2158 -128 128s57.2158 128 128 128zM640 512c70.6562 0 128 -57.2158 128 -128s-57.3438 -128 -128 -128s-128 57.2158 -128 128s57.3438 128 128 128zM1536 896h-896v-128h896v-128h-1024
|
||||
v1024h-256v128h384v-256h1152z" />
|
||||
<glyph glyph-name="uniF511" unicode=""
|
||||
d="M1024 1510.53l-118.016 -358.528h-371.328l300.288 -209.92l-118.272 -353.28l307.328 218.88l307.584 -219.136l-118.4 353.536l300.288 209.92h-371.456zM1024 1920v0l210.688 -640h685.312l-555.136 -387.968l212.863 -636.032l-553.728 394.496l-553.728 -394.496
|
||||
l212.991 636.032l-555.264 387.968h685.312z" />
|
||||
<glyph glyph-name="uniF427" unicode=""
|
||||
d="M1717.72 1436.21c99.7246 -99.7246 99.7246 -261.281 0 -361.006l-232.861 -232.989c-98.5723 -98.5723 -257.44 -99.3398 -357.421 -2.81543l-455.353 -455.354h-288.036v287.908l455.097 454.969l-0.767578 0.768555c-99.5967 99.5957 -99.5967 261.408 0 361.005
|
||||
l232.989 232.989c99.5957 99.7246 261.408 99.7246 361.005 0zM1344.04 1104.01l160.02 160.021l-256.031 256.031l-160.021 -160.02z" />
|
||||
<glyph glyph-name="uniF219" unicode=""
|
||||
d="M1438.08 1832.7c0 0 563.456 -229.376 370.176 -838.4c-267.264 -554.496 -784.64 -349.056 -784.64 -349.056v-277.504s-19.7119 -153.344 -202.88 -220.288c-183.296 -66.6885 -351.616 59.5195 -351.616 59.5195v279.809
|
||||
c83.584 -85.5039 195.712 -134.272 240.128 -9.98438v945.92h311.68v-537.472s460.416 -138.496 522.368 289.792c9.85645 475.392 -546.944 472.832 -546.944 472.832s-349.184 22.2715 -522.495 -257.536c-131.2 -222.848 37.1191 -423.424 37.1191 -423.424
|
||||
l-225.279 -200.448s-339.2 418.433 -7.42383 871.552c430.848 487.681 1159.81 194.688 1159.81 194.688z" />
|
||||
<glyph glyph-name="uniF100" unicode=""
|
||||
d="M512 1408h1024v-128h-1024v128zM1152 1152v-128h-640v128h640zM1280 1024v128h256v-128h-256zM896 768v128h640v-128h-640zM768 896v-128h-256v128h256zM512 512v128h768v-128h-768z" />
|
||||
<glyph glyph-name="uniF400" unicode=""
|
||||
d="M1792 384l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM384 1216c0 -247.424 200.576 -448 448 -448
|
||||
c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448z" />
|
||||
<glyph glyph-name="uniF439" unicode=""
|
||||
d="M896 1664v-384h-256v384c0 70.7842 57.3438 128 128 128s128 -57.2158 128 -128zM1408 1664v-384h-256v384c0 70.7842 57.2158 128 128 128s128 -57.2158 128 -128zM384 1152h1280c0 -309.632 -219.904 -567.68 -512 -627.072v-268.928h-256v268.928
|
||||
c-292.096 59.2646 -512 317.44 -512 627.072z" />
|
||||
<glyph glyph-name="uniF509" unicode=""
|
||||
d="M1534.21 717.824l147.712 -88.5762c-134.4 -223.36 -378.24 -373.248 -657.92 -373.248c-279.552 0 -523.52 149.888 -657.92 373.248l147.712 88.7041c92.1602 -98.1758 226.816 -168.96 382.208 -194.688v500.736h-128v128h128v163.456
|
||||
c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256c0 -94.4639 -51.7119 -176.128 -128 -220.544v-163.456h128v-128h-128v-500.864c155.52 25.7285 289.92 96.3838 382.208 194.688zM1024 1664
|
||||
c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128c70.7842 0 128 57.3438 128 128s-57.2158 128 -128 128z" />
|
||||
<glyph glyph-name="uniF510" unicode=""
|
||||
d="M1664 1152v-256h-512v-512h-256v512h-512v256h512v512h256v-512h512z" />
|
||||
<glyph glyph-name="uniF445" unicode=""
|
||||
d="M1888 748.032l-57.5996 -139.648l-305.408 21.8887c-31.3604 -39.9365 -66.9443 -75.6484 -106.88 -107.009l21.7598 -305.536l-139.264 -57.5996l-200.704 231.552c-25.2158 -3.07129 -49.9199 -7.67969 -75.9043 -7.67969c-25.7275 0 -50.1758 4.6084 -75.1357 7.67969
|
||||
l-200.96 -231.808l-139.393 57.7275l21.7607 305.408c-39.9365 31.3604 -75.5205 66.9443 -107.009 106.88l-305.536 -21.7598l-57.7275 139.264l231.68 200.832c-3.07129 25.0879 -7.67969 49.792 -7.67969 75.7764c0 25.7275 4.6084 50.1758 7.55176 75.1357
|
||||
l-231.552 200.96l57.7275 139.393l305.28 -21.7607c31.4883 39.9365 67.2002 75.7764 107.265 107.265l-21.7607 305.408l139.137 57.5996l200.96 -231.68c24.96 2.94336 49.5352 7.67969 75.3916 7.67969s50.4316 -4.73633 75.3916 -7.67969l200.96 231.68
|
||||
l139.265 -57.5996l-21.8887 -305.408c39.9365 -31.3604 75.6484 -67.0723 107.137 -107.008l305.408 21.6318l57.5996 -139.136l-231.552 -200.832c3.07129 -25.0889 7.67969 -49.6641 7.67969 -75.6484c0 -25.7275 -4.6084 -50.3037 -7.67969 -75.2637zM1280 1024
|
||||
c0 141.312 -114.688 256 -256 256s-256 -114.688 -256 -256s114.688 -256 256 -256s256 114.688 256 256z" />
|
||||
<glyph glyph-name="uniF516" unicode=""
|
||||
d="M1024 1452.42v-467.328h-155.776v467.328h155.776zM1408 1452.42v-467.328h-155.776v467.328h155.776zM323.2 1920h1596.8v-1090.82l-467.456 -445.184h-350.464l-233.6 -256h-228.48v256h-512v1224.32zM1764.22 907.136v857.088h-1285.5v-1129.73h350.977v-211.328
|
||||
l233.472 211.328h428.16z" />
|
||||
<glyph glyph-name="uniF435" unicode=""
|
||||
d="M384 512l640 640l640 -640h-1280zM384 1408h1280v-128h-1280v128z" />
|
||||
<glyph glyph-name="uniF300" unicode=""
|
||||
d="M1536 1536c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-448l-448 -448v448h-128c-141.312 0 -256 114.688 -256 256v384c0 141.312 114.688 256 256 256h1024z" />
|
||||
<glyph glyph-name="uniF514" unicode=""
|
||||
d="M1664 768v128l256 -256l-256 -256v128h-256c-282.752 0 -512 229.248 -512 512c0 141.312 -114.688 256 -256 256h-384v256h384c282.752 0 512 -229.248 512 -512c0 -141.312 114.688 -256 256 -256h256zM1408 1280c-61.8242 0 -117.888 -22.9121 -162.176 -59.3916
|
||||
c-27.3926 83.9678 -70.7842 160 -128 224.768c82.5596 56.96 182.271 90.624 290.176 90.624h256v128l256 -256l-256 -256v128h-256zM640 768c61.8242 0 117.888 22.9121 162.176 59.3916c27.3926 -83.9678 70.7842 -160 128 -224.768
|
||||
c-82.5596 -56.832 -182.271 -90.624 -290.176 -90.624h-384v256h384z" />
|
||||
<glyph glyph-name="uniF102" unicode=""
|
||||
d="M1408 1408l512 -128v-896h-1792v896l512 128l128 256h512zM1024 512.256c247.552 0 448 200.448 448 448c0 247.424 -200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448c0 -247.552 200.576 -448 448 -448zM512 1600v-96.1279l-256 -64v160.128h256z
|
||||
M1024 1280.13c176.768 0 320 -143.231 320 -320c0 -176.768 -143.232 -320 -320 -320s-320 143.232 -320 320c0 176.769 143.232 320 320 320z" />
|
||||
<glyph glyph-name="uniF466" unicode=""
|
||||
d="M640 1344l-320 -320l320 -320v-320l-640 640l640 640v-320zM1408 1280c282.752 0 512 -229.248 512 -512v-299.904l-150.016 149.889c-99.9688 99.9678 -231.04 150.016 -361.984 150.016h-256v-384l-640 640l640 640v-384h256z" />
|
||||
<glyph glyph-name="uniF463" unicode=""
|
||||
d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
|
||||
M1920 640v128h-256v256h-128v-256h-256v-128h256v-256h128v256h256z" />
|
||||
<glyph glyph-name="uniF422" unicode=""
|
||||
d="M384 1536h1152v-1024h-1152v1024zM1408 640v640h-896v-640h896z" />
|
||||
<glyph glyph-name="uniF201" unicode=""
|
||||
d="M1024 128c128 0 256 32 368 80c-16 144 -64 368 -208 688c-288 -96 -560 -304 -704 -576c144 -128 336 -192 544 -192zM1536 288c208 144 352 384 384 640c-192 32 -368 32 -576 0c16 -32 128 -304 192 -640zM128 1088v-64c0 -224 80 -432 224 -592
|
||||
c176 288 496 496 784 592c-16 48 -48 112 -80 176c-368 -112 -592 -144 -928 -112zM1760 1536c-160 -128 -368 -192 -560 -288c48 -64 64 -112 96 -176c208 48 480 32 624 0c-16 176 -64 336 -160 464zM672 1856c-256 -112 -448 -336 -512 -624c288 -32 688 48 832 96
|
||||
c-96 192 -192 352 -320 528zM1024 1920c-64 0 -128 -16 -192 -16c128 -208 192 -320 304 -512c128 48 384 128 528 256c-160 160 -384 272 -640 272zM1024 2048c560 0 1024 -464 1024 -1024s-464 -1024 -1024 -1024s-1024 464 -1024 1024s464 1024 1024 1024z" />
|
||||
<glyph glyph-name="uniF426" unicode=""
|
||||
d="M1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.52832c-4.35254 20.8643 -6.52832 41.9844 -6.52832 64c0 176.768 143.232 320 320 320
|
||||
c89.3438 0 169.984 -36.8643 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
|
||||
<glyph glyph-name="uniF446" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM1536 1024c0 282.752 -229.248 512 -512 512c-94.8477 0 -182.528 -27.5195 -258.688 -72.4482l698.368 -698.24
|
||||
c44.8008 76.1602 72.3203 163.969 72.3203 258.688zM512 1024c0 -282.752 229.248 -512 512 -512c94.7197 0 182.4 27.5195 258.56 72.3203l-698.239 698.239c-44.8008 -76.1592 -72.3203 -163.84 -72.3203 -258.56z" />
|
||||
<glyph glyph-name="uniF504" unicode=""
|
||||
d="M1664 1536c0 -94.4639 -51.7119 -176.128 -128 -220.544v-163.456c0 -282.752 -229.248 -512 -512 -512c-141.312 0 -256 -114.688 -256 -256v-128h-256v1059.46c-76.1602 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256
|
||||
c0 -94.4639 -51.8398 -176.128 -128 -220.544v-490.496c75.5195 44.0322 162.304 71.04 256 71.04c141.312 0 256 114.688 256 256v163.456c-76.2881 44.416 -128 126.08 -128 220.544c0 141.312 114.688 256 256 256s256 -114.688 256 -256zM640 1664
|
||||
c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM1408 1408c70.7842 0 128 57.3438 128 128s-57.2158 128 -128 128s-128 -57.3438 -128 -128s57.2158 -128 128 -128z" />
|
||||
<glyph glyph-name="uniF465" unicode=""
|
||||
d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
|
||||
M1531.52 384l452.48 452.48l-90.4961 90.4951l-361.984 -361.983l-180.991 180.992l-90.4961 -90.4961z" />
|
||||
<glyph glyph-name="uniF424" unicode=""
|
||||
d="M1408 1792l384 -384v-768l-384 -384h-768l-384 384v768l384 384h768zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896l51.584 640h-281.6l51.2002 -640h178.815z" />
|
||||
<glyph glyph-name="uniF418" unicode=""
|
||||
d="M1408 1504l128 -96l-512 -768h-128l-288 416l128 128l224 -192z" />
|
||||
<glyph glyph-name="uniF429" unicode=""
|
||||
d="M1024 1453.31l493.312 -493.312l-493.312 -493.312l-86.6562 86.6553l342.656 342.656h-896v128h896l-342.656 342.656z" />
|
||||
<glyph glyph-name="uniF308" unicode=""
|
||||
d="M477.696 568.192l543.104 543.104l90.3682 -90.624l-542.976 -542.976c-100.225 -100.353 -152.32 -115.84 -226.305 -135.809c20.0967 74.1123 35.584 126.08 135.809 226.305zM1189.5 1732.61l180.992 180.991l542.976 -543.104l-180.991 -180.992
|
||||
c-50.0488 50.0479 -130.944 50.0479 -180.992 0l-180.992 -180.992c-50.0479 -50.0479 -50.0479 -130.943 0 -180.992l-180.992 -180.991l-543.104 542.976l180.991 180.992c50.0488 -50.0479 131.072 -50.0479 181.12 0l180.992 181.12
|
||||
c50.0479 50.0479 50.0479 130.943 0 180.992z" />
|
||||
<glyph glyph-name="uniF226" unicode=""
|
||||
d="M1477.76 1792c120.32 0 152.576 -68.6084 126.464 -195.584l-51.8398 -258.688c-40.96 -206.848 -88.0635 -445.695 -94.0801 -470.144c-11.0078 -44.1602 -27.9033 -119.168 -132.992 -119.168h-250.367c-9.98438 0 -9.98438 0 -20.0967 -10.1123
|
||||
c-6.65527 -6.65527 -393.344 -455.424 -393.344 -455.424c-30.208 -34.6875 -80.3838 -28.5439 -98.6875 -21.1201c-18.3047 7.2959 -50.6885 29.6963 -50.6885 89.9844v1301.63s33.2803 138.624 146.304 138.624h819.328zM1394.94 1391.1l34.3037 179.2
|
||||
c6.27148 29.6963 -16.3838 52.4805 -40.5762 52.4805h-657.536c-29.8242 0 -49.792 -26.8799 -49.792 -49.792v-1015.68c0 -3.19922 2.43262 -3.83984 4.86426 -1.15137c0 0 242.304 290.815 269.184 324.352c26.8809 33.4082 39.168 38.6562 79.3604 38.6562h221.184
|
||||
c30.208 0 47.2324 25.3438 50.3047 40.1924c3.2002 14.8477 28.9277 149.12 34.4316 176.256s-19.3281 54.9121 -44.7998 54.9121h-270.976c-35.9688 0 -61.8242 25.4717 -61.8242 61.3115v39.04c0 35.9678 25.7275 60.416 61.5674 60.416h319.232
|
||||
s46.9756 20.4805 51.0723 39.8076z" />
|
||||
<glyph glyph-name="uniF205" unicode=""
|
||||
d="M1024 1920c493.952 0 896 -401.92 896 -896c0 -493.952 -402.048 -896 -896 -896c-494.08 0 -896 402.048 -896 896c0 494.08 401.92 896 896 896zM218.496 1024c0 -318.848 185.216 -594.432 454.016 -724.992l-384.256 1052.93
|
||||
c-44.6719 -100.224 -69.7598 -211.071 -69.7598 -327.936zM1024 218.496c93.8242 0 183.808 16.1279 267.648 45.5684c-2.17676 3.45508 -4.09668 7.16797 -5.76074 11.2637l-247.552 678.271l-241.92 -702.336c72.1924 -21.248 148.48 -32.7676 227.584 -32.7676z
|
||||
M1134.98 1401.73l291.072 -866.176l80.3838 268.544c34.9443 111.488 61.3125 191.488 61.3125 260.48c0 99.584 -35.8398 168.576 -66.4326 222.08c-40.7031 66.4316 -78.9756 122.624 -78.9756 189.056c0 74.1123 56.1924 142.977 135.168 142.977
|
||||
c3.58398 0 7.04004 -0.384766 10.4961 -0.640625c-143.36 131.328 -334.208 211.456 -544 211.456c-281.472 0 -529.024 -144.256 -673.024 -363.008c18.9443 -0.639648 36.7363 -0.896484 51.8408 -0.896484c84.2236 0 214.655 10.2402 214.655 10.2402
|
||||
c43.3926 2.56055 48.5127 -61.3115 5.24805 -66.4316c0 0 -43.7754 -5.12012 -92.1602 -7.68066l293.12 -872.575l176.256 528.64l-125.439 343.936c-43.3926 2.56055 -84.4805 7.68066 -84.4805 7.68066c-43.2637 2.55957 -38.2715 68.9922 5.12012 66.4316
|
||||
c0 0 132.992 -10.2402 212.225 -10.2402c84.2236 0 214.783 10.2402 214.783 10.2402c43.3926 2.56055 48.5127 -61.3115 5.12012 -66.4316c0 0 -43.6475 -5.12012 -92.2881 -7.68066zM1730.82 1410.56c3.58398 -25.7275 5.50391 -53.248 5.63184 -82.8154
|
||||
c0 -81.792 -15.4883 -173.696 -61.3125 -288.512l-246.144 -711.425c239.488 139.521 400.512 399.104 400.512 696.192c0 140.16 -35.8398 271.872 -98.6875 386.56z" />
|
||||
<glyph glyph-name="uniF472" unicode=""
|
||||
d="M1368.06 1408h-128l-240.129 -768h128l-39.9355 -128h-448l39.9355 128h128l240.129 768h-128l39.9355 128h448z" />
|
||||
<glyph glyph-name="uniF216" unicode=""
|
||||
d="M1791.62 1265.92c0.383789 -2.94434 0.639648 -5.75977 0.639648 -8.7041v-466.943c0 -2.94434 -0.255859 -5.76074 -0.511719 -8.96094c-0.12793 -0.767578 -0.383789 -1.79199 -0.511719 -2.81543c-0.384766 -1.79199 -0.640625 -3.58398 -1.15234 -5.50391
|
||||
c-0.255859 -1.02441 -0.768555 -2.04785 -1.02441 -3.07227c-0.639648 -1.66406 -1.15137 -3.2002 -1.79199 -4.86426c-0.511719 -1.02344 -1.02344 -2.04785 -1.53613 -3.07129c-0.639648 -1.53613 -1.40723 -2.94434 -2.30371 -4.48047
|
||||
c-0.511719 -0.895508 -1.28027 -1.91992 -1.91992 -2.94434c-0.767578 -1.2793 -1.66406 -2.55957 -2.6875 -3.96777c-0.768555 -0.895508 -1.53613 -1.79199 -2.30469 -2.81543c-1.02344 -1.02441 -2.04785 -2.30469 -3.32812 -3.45605
|
||||
c-0.767578 -0.896484 -1.66406 -1.79199 -2.6875 -2.68848c-1.02441 -0.895508 -2.30371 -2.04785 -3.71191 -3.07227c-0.768555 -0.767578 -1.79199 -1.53516 -2.81641 -2.30371l-1.15137 -0.767578l-702.208 -467.072
|
||||
c-11.1367 -7.42383 -23.8086 -11.0078 -36.6084 -11.0078s-25.4717 3.58398 -36.7363 11.2637l-702.208 467.072c-0.255859 0.255859 -0.639648 0.511719 -1.02344 0.767578l-2.94434 2.30469c-1.28027 0.895508 -2.55957 2.04785 -3.71191 3.07129
|
||||
c-0.895508 0.896484 -1.79199 1.79199 -2.6875 2.68848c-1.02441 1.02344 -2.17676 2.30371 -3.2002 3.45605c-0.768555 0.895508 -1.53613 1.79199 -2.30469 2.81543c-0.895508 1.28027 -1.79199 2.56055 -2.6875 3.96875
|
||||
c-0.768555 0.895508 -1.4082 1.91992 -1.91992 2.94336c-0.896484 1.53613 -1.66406 2.94434 -2.30371 4.48047c-0.512695 0.895508 -1.02441 1.91992 -1.53613 3.07129c-0.640625 1.66406 -1.15234 3.2002 -1.66406 4.86426
|
||||
c-0.383789 0.896484 -0.768555 1.91992 -1.02441 3.07227c-0.511719 1.91992 -0.767578 3.71191 -1.15137 5.50391c-0.128906 1.02441 -0.384766 2.04785 -0.512695 2.94434c-0.383789 2.81543 -0.639648 5.75977 -0.639648 8.57617v466.943
|
||||
c0 2.94434 0.255859 5.75977 0.639648 8.7041c0.12793 0.896484 0.383789 1.79199 0.512695 2.81641c0.383789 1.91992 0.639648 3.71191 1.15137 5.50391c0.255859 1.15137 0.640625 2.17578 1.02441 3.2002c0.511719 1.53516 1.02344 3.19922 1.66406 4.86328
|
||||
c0.511719 1.02441 1.02344 2.04785 1.53613 3.2002c0.639648 1.53613 1.40723 2.81641 2.30371 4.48047c0.639648 0.895508 1.28027 1.91992 1.91992 2.94336c0.767578 1.28027 1.79199 2.68848 2.6875 3.96875c0.640625 1.02344 1.4082 1.79199 2.30469 2.81543
|
||||
c1.02344 1.28027 2.04785 2.43164 3.2002 3.58398c0.895508 0.768555 1.79199 1.66406 2.6875 2.68848c1.15234 1.02344 2.43164 2.04785 3.71191 3.07129l2.94434 2.17676c0.383789 0.255859 0.767578 0.639648 1.15137 0.895508l702.208 466.944
|
||||
c22.1445 14.7197 51.0723 14.7197 73.2168 0l702.08 -467.2c0.383789 -0.255859 0.767578 -0.639648 1.15137 -0.896484c0.896484 -0.767578 1.91992 -1.53516 2.81641 -2.30371c1.2793 -0.895508 2.55957 -1.91992 3.71191 -3.07227
|
||||
c1.02344 -0.895508 1.91992 -1.79199 2.6875 -2.6875c1.15234 -1.02441 2.17676 -2.17578 3.32812 -3.45605c0.768555 -0.896484 1.53613 -1.79199 2.30469 -2.81641c0.895508 -1.2793 1.79199 -2.55957 2.6875 -3.96777
|
||||
c0.639648 -0.895508 1.4082 -1.91992 1.91992 -2.94434c0.896484 -1.53516 1.66406 -2.81543 2.30371 -4.35156c0.512695 -1.02441 1.02441 -2.04785 1.53613 -3.2002c0.640625 -1.66406 1.15234 -3.2002 1.79199 -4.73535
|
||||
c0.255859 -1.02441 0.768555 -2.04883 1.02441 -3.2002c0.511719 -1.79199 0.767578 -3.58398 1.15137 -5.50391c0.128906 -0.896484 0.384766 -1.79199 0.512695 -2.81641zM1090.05 1601.28v-307.328l286.208 -190.977l231.168 154.24zM957.952 1601.28l-517.248 -344.064
|
||||
l231.04 -154.24l286.208 191.104v307.2zM387.84 1133.95v-220.416l165.12 110.208zM957.952 446.208v307.328l-286.208 190.976l-231.04 -154.111zM1024 867.84l233.472 155.904l-233.472 155.904l-233.472 -155.904zM1090.05 446.208l517.376 344.064l-231.168 154.111
|
||||
l-286.208 -190.976v-307.2zM1660.29 913.536v220.416l-165.248 -110.208z" />
|
||||
<glyph glyph-name="uniF475" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM476.16 1340.54l-2.81641 3.96777c-4.60742 -7.93555 -8.83203 -16.1279 -13.1836 -24.3193l4.47949 1.02344l17.5361 6.27246l30.208 2.6875zM1024 384
|
||||
c265.088 0 493.056 162.176 590.208 392.576l-6.52832 10.4961l14.9766 50.8154l-34.6885 25.2158l-25.3438 7.55273l-23.5518 19.8398l-55.8086 -21.1201l-52.7354 -3.07227l-39.9365 29.0566l-39.04 53.5039l-0.767578 32.5117l0.895508 54.2725l5.63184 7.55176
|
||||
l4.86426 18.1758l22.7842 35.0723l13.3125 13.0557l18.6875 20.7363l13.0557 25.5996l36.8643 34.9443l37.7598 -0.383789l27.6484 9.59961l66.4316 7.16797l25.9844 -36.8643l24.1924 -10.4961c-8.44824 39.4248 -20.2246 77.6963 -35.585 114.049l-5.50391 5.11914
|
||||
l-13.4395 -6.65527l-28.9277 -2.68848l-23.8086 -21.248l-25.9834 -35.0723l-50.6885 -11.6475l-23.5518 9.21582l2.6875 40.5762l13.3125 25.2158l46.4639 -2.6875l8.57617 21.8877l-24.0645 26.624l20.6084 8.32031l40.4482 22.0156l14.4639 11.6484
|
||||
c-49.1523 77.6953 -113.664 144.256 -190.721 194.688l-4.35156 -1.79199l20.3516 -17.792l-32.8955 5.24805l-4.6084 -9.34375l21.248 -2.56055l-7.93555 -8.95996l-59.9043 -10.3682l-77.3115 -34.3037l-59.9043 -28.9277l-6.27246 59.6475l16.8965 32.6406
|
||||
l-12.416 21.7598l-45.9521 19.4561l-22.1436 17.1523l32.1279 7.67969l69.1201 16.8955l29.8232 1.66406c-64.7676 22.1445 -132.991 36.7363 -205.056 36.7363c-146.56 0 -280.064 -51.4561 -388.096 -134.656l38.2715 1.15234l47.7441 -12.2881l32 -8.19238
|
||||
l34.8164 7.80859l47.6152 -6.0166l29.9521 7.2959l5.63184 18.0488l28.1602 -2.94434l11.0078 -22.7842l47.6162 4.35254l-74.752 -24.7041l-36.0957 -20.8643l-55.168 -42.2402l13.6963 -14.9756l38.3994 -18.0479l27.3926 -28.0322l33.6641 34.4316l19.4551 37.8887
|
||||
l33.0244 22.6553l33.0244 -16.7676l9.08789 -18.4316l28.9277 10.2393l10.2402 -55.168l20.4795 -20.0957l-74.752 -19.0723l-54.7842 -21.5039l42.752 11.7764l-5.24707 -17.1523l13.5674 -15.3604l11.2646 -7.16797l-45.9521 -18.6875l16.1279 18.8154l-25.9844 -5.63184
|
||||
l-31.2314 -14.8477l-14.208 -16.5117l-34.9443 -19.3281l-25.6006 -20.2246l-9.72754 -23.4238l-32.7676 -26.752l-25.8564 -59.3916l-8.06348 -25.7285l-23.6807 47.4883l-46.208 -0.12793l-38.3994 0.255859l-49.2803 -39.6797l-6.52832 -43.5205l29.6963 -32.3838
|
||||
l57.2158 30.7197l-14.8477 -43.5195l-40.4482 -26.1123l-39.2959 9.47266l-43.5205 18.1758l-49.9199 79.1035l-22.1436 47.2324l-5.24805 16.2559l7.42383 -66.0479l-0.639648 -17.1523l-8.19238 10.2402l-4.99219 16.6396l-9.9834 12.416l-5.12012 22.9121
|
||||
l-0.255859 35.9678l-26.752 46.3359c-17.4082 -58.1113 -29.5684 -118.399 -29.5684 -182.144c0 -295.936 202.88 -543.232 476.16 -616.192l-4.0957 12.6729l-9.60059 137.6l-11.1357 62.8477l-67.3281 65.792l-31.7441 56.3203l-10.624 27.9043l7.67969 16.5117
|
||||
l14.0801 52.9922l7.55273 61.6953l-8.32031 4.73633l-14.9756 -10.8799l-19.9688 9.34375l13.4404 6.27246l59.9043 13.8242l39.4238 17.6631l-2.43262 -26.752l14.5928 24.1924l19.7119 -6.91211l67.7119 -21.6318l48.5117 -33.6641l34.9443 -19.3281l8.31934 -5.50391
|
||||
l-8.19141 -48.7676l33.4082 9.47168l-8.32031 -16.6396l47.3604 -10.1123l48 -3.96777l31.3594 -19.7119l1.28027 -57.3447l-22.7842 -65.4072l-27.6475 -68.0967l-50.1768 -30.8477l-39.9355 -90.8799l-36.0957 5.12012l17.1514 -23.4238l-1.91992 -16.5127
|
||||
l-33.2803 -26.4961c19.4561 -1.79199 38.1445 -5.8877 57.9844 -5.8877z" />
|
||||
<glyph glyph-name="uniF432" unicode=""
|
||||
d="M1408 640l-448 448l-448 -448l-128 128l576 576l576 -576z" />
|
||||
<glyph glyph-name="uniF210" unicode=""
|
||||
d="M1024 2048c565.632 0 1024 -458.496 1024 -1024c0 -565.632 -458.368 -1024 -1024 -1024c-100.864 0 -198.016 14.7197 -290.176 42.1123c38.7842 61.4395 81.2793 140.288 103.04 219.264c12.6719 45.5684 72.0635 281.6 72.0635 281.6
|
||||
c35.7119 -67.9678 139.648 -127.743 250.24 -127.743c329.088 0 552.448 300.159 552.448 701.823c0 303.744 -257.28 586.624 -648.192 586.624c-486.527 0 -731.904 -348.8 -731.904 -639.744c0 -176.128 66.5605 -332.928 209.664 -391.168
|
||||
c23.4248 -9.59961 44.416 -0.511719 51.2002 25.4727c4.73633 18.0479 16 63.4873 20.9922 82.1758c6.78418 25.7275 4.0957 34.6875 -14.8477 57.2158c-41.0879 48.6406 -67.4561 111.488 -67.4561 200.704c0 258.816 193.536 490.496 504.063 490.496
|
||||
c274.944 0 426.112 -168.064 426.112 -392.448c0 -295.296 -130.432 -544.384 -324.608 -544.384c-107.136 0 -187.264 88.5762 -161.664 197.12c30.7207 129.664 90.4961 269.824 90.4961 363.392c0 83.8398 -44.9277 153.729 -138.111 153.729
|
||||
c-109.44 0 -197.504 -113.28 -197.504 -265.088c0 -96.6406 32.7676 -162.049 32.7676 -162.049s-112.128 -474.88 -131.712 -557.951c-18.4316 -77.8242 -20.7363 -163.456 -17.9199 -235.137c-360.832 158.336 -612.992 518.784 -612.992 937.984
|
||||
c0 565.504 458.496 1024 1024 1024z" />
|
||||
<glyph glyph-name="uniF437" unicode=""
|
||||
d="M1280 1792c141.312 0 256 -114.688 256 -256v-1024c0 -141.312 -114.688 -256 -256 -256h-512c-141.312 0 -256 114.688 -256 256v1024c0 141.312 114.688 256 256 256h512zM1024 384c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
|
||||
c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1408 768v768h-768v-768h768z" />
|
||||
<glyph glyph-name="uniF468" unicode=""
|
||||
d="M256 256v1536h256v-1536h-256zM1536 1664h256v-768h-256c-256 0 -256 128 -512 128s-256 -128 -384 -128v768c128 0 128 128 384 128s256 -128 512 -128z" />
|
||||
<glyph glyph-name="uniF107" unicode=""
|
||||
d="M1088 1792c176.768 0 320 -143.232 320 -320v-384c0 -131.2 -78.9756 -243.584 -192 -292.992v150.912c39.04 35.2002 64 85.6318 64 142.08v384c0 105.856 -86.1436 192 -192 192s-192 -86.1436 -192 -192v-384c0 -56.4482 24.96 -106.88 64 -142.08v-150.912
|
||||
c-112.896 49.4082 -192 161.792 -192 292.992v384c0 176.768 143.232 320 320 320zM960 1380.99c112.896 -49.4082 192 -161.792 192 -292.992v-384c0 -176.768 -143.232 -320 -320 -320s-320 143.232 -320 320v384c0 131.2 79.1035 243.584 192 292.992v-150.912
|
||||
c-39.04 -35.2002 -64 -85.6318 -64 -142.08v-384c0 -105.856 86.1436 -192 192 -192s192 86.1436 192 192v384c0 56.4482 -24.96 106.88 -64 142.08v150.912z" />
|
||||
<glyph glyph-name="uniF442" unicode=""
|
||||
d="M1280 640v256l128 128v-512h-896v896h512l-128 -128h-256v-640h640zM1024 1664h640v-640h-128v421.504l-549.504 -549.504l-90.4961 90.4961l549.504 549.504h-421.504v128z" />
|
||||
<glyph glyph-name="uniF221" unicode=""
|
||||
d="M1664 1024c0 -55.9355 -35.9678 -102.912 -85.8877 -120.32c13.8232 -20.6074 21.8877 -45.0557 21.8877 -71.6797c0 -55.8076 -35.9678 -102.784 -85.8877 -120.32c13.8232 -20.6074 21.8877 -45.0557 21.8877 -71.6797c0 -70.6562 -57.3438 -128 -128 -128h-64
|
||||
c70.6562 0 128 -57.3438 128 -128s-57.3438 -128 -128 -128h-448c-192 0 -256 128 -384 128h-128v640h192c128 0 320 256 320 640c0 0 0 128 64 128s192 -144 192 -320c0 -192 -32 -320 -32 -320h416c70.6562 0 128 -57.3438 128 -128z" />
|
||||
<glyph glyph-name="uniF50A" unicode=""
|
||||
d="M1856 1024c35.3281 0 64 -28.6719 64 -64s-28.6719 -64 -64 -64h-204.928c-9.85645 -48.7676 -26.624 -94.5918 -46.8486 -138.624c116.608 -134.528 187.776 -309.376 187.776 -501.376v-64c0 -35.2002 -28.6719 -64 -64 -64s-64 28.7998 -64 64v64
|
||||
c0 144.896 -48.7676 277.888 -130.048 385.152c-116.736 -155.265 -300.672 -257.152 -509.952 -257.152c-208.768 0 -392.448 101.504 -509.312 256.128c-81.2803 -106.88 -130.688 -239.231 -130.688 -384.128v-64c0 -35.2002 -28.6719 -64 -64 -64s-64 28.7998 -64 64v64
|
||||
c0 192 71.2959 366.72 187.904 501.376c-20.3525 44.0322 -36.9922 89.8564 -46.9766 138.624h-204.928c-35.3281 0 -64 28.6719 -64 64s28.6719 64 64 64h192c0 61.6963 12.1602 119.936 29.0557 176c-98.1758 129.024 -157.056 289.408 -157.056 464v64
|
||||
c0 35.3281 28.6719 64 64 64s64 -28.6719 64 -64v-64c0 -353.408 286.592 -640 640 -640c353.536 0 640 286.592 640 640v64c0 35.3281 28.6719 64 64 64s64 -28.6719 64 -64v-64c0 -173.952 -58.4961 -333.824 -156.032 -462.592
|
||||
c17.2803 -56.3203 28.0322 -115.328 28.0322 -177.408h192zM1024 1152c-208.896 0 -388.352 126.08 -467.84 305.92c116.864 126.08 282.496 206.08 467.84 206.08c185.472 0 350.976 -80 467.84 -206.08c-79.4883 -179.84 -258.815 -305.92 -467.84 -305.92z" />
|
||||
<glyph glyph-name="uniF455" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768c-424.192 0 -768 343.936 -768 768s343.808 768 768 768zM1024 1536c-70.7842 0 -128 -57.3438 -128 -128s57.2158 -128 128 -128c70.6562 0 128 57.3438 128 128s-57.3438 128 -128 128zM1280 512
|
||||
v128h-160v512h-320.128v-128h128.128v-384h-160v-128h512z" />
|
||||
<glyph glyph-name="uniF223" unicode=""
|
||||
d="M1105.28 1232.51v92.9287c0 44.1592 -36.4805 79.8711 -81.2803 79.8711s-81.2803 -35.7119 -81.2803 -79.8711l-0.383789 -481.024c-2.55957 -184.192 -155.008 -332.416 -342.912 -332.416c-189.696 0 -343.424 150.912 -343.424 337.28v209.151h262.784v-206.592
|
||||
c0 -43.9043 36.3516 -79.7441 81.2803 -79.7441c44.9277 0 81.2793 35.7119 81.2793 79.7441v487.168c6.65625 180.48 157.185 324.992 342.656 324.992c186.112 0 337.152 -145.536 342.656 -327.04v-106.624l-156.416 -45.8242zM1529.22 1058.43h262.784v-209.151
|
||||
c0 -186.368 -153.728 -337.28 -343.424 -337.28c-188.544 0 -341.632 149.376 -343.296 334.08v210.304l104.96 -48l156.288 45.8242v-211.84c0 -44.2881 36.3516 -80 81.4072 -80c44.9287 0 81.2803 35.7119 81.2803 80v216.063z" />
|
||||
<glyph glyph-name="uniF212" unicode=""
|
||||
d="M1658.75 1791.87c184.192 -5.37598 270.976 -123.776 260.352 -355.072c-7.93555 -172.928 -129.792 -409.472 -365.439 -710.016c-243.584 -313.729 -449.792 -470.784 -618.368 -470.784c-104.448 0 -192.896 95.6162 -264.96 286.72
|
||||
c-48.2559 175.232 -96.5117 350.336 -144.64 525.568c-53.6318 190.976 -111.232 286.592 -172.672 286.592c-13.4404 0 -60.416 -27.7764 -140.673 -83.584l-84.3516 107.648c88.4482 77.0557 175.616 154.111 261.504 231.168
|
||||
c117.888 100.991 206.464 154.111 265.472 159.487c139.521 13.3125 225.28 -81.2793 257.536 -283.392c34.8164 -218.24 58.8799 -353.92 72.4482 -407.04c40.1924 -180.992 84.4805 -271.36 132.736 -271.36c37.5039 0 93.8232 58.752 169.088 176.128
|
||||
c75.0078 117.376 115.2 206.849 120.576 268.16c10.624 101.376 -29.4404 152.192 -120.576 152.192c-43.0078 0 -87.2959 -9.98438 -132.736 -29.1846c88.0645 285.952 256.512 424.704 504.704 416.769z" />
|
||||
<glyph glyph-name="uniF206" unicode=""
|
||||
d="M571.904 570.112c-36.4805 0 -71.6807 -1.02441 -110.208 -1.02441c-127.36 0 -240.513 -32 -333.696 -83.3281v484.864c78.0801 -78.208 189.696 -126.208 329.984 -126.336c20.2236 0 39.6797 1.02344 58.8799 2.43164
|
||||
c-18.8164 -35.9678 -32.2559 -76.1602 -32.2559 -118.271c0 -70.9121 39.04 -111.36 87.2959 -158.336zM575.232 937.088c-163.584 4.86426 -319.104 155.008 -347.265 369.792c-28.2881 214.912 81.4082 379.264 244.992 374.4
|
||||
c163.584 -4.86426 303.488 -181.12 331.648 -396.032c28.2881 -214.784 -65.9199 -353.024 -229.376 -348.16zM965.504 217.856c4.99219 -21.248 7.80762 -43.1367 7.80762 -65.5361c0 -8.19238 -0.639648 -16.2559 -1.02344 -24.3203h-588.288
|
||||
c-115.328 0 -211.712 76.7998 -243.712 181.504c74.8799 110.72 228.224 189.824 401.408 187.904c56.832 -0.640625 109.823 -9.72852 157.952 -25.3438c132.352 -91.9043 238.976 -149.376 265.855 -254.208zM1920 1536h-256v256h-128v-256h-256v-128h256v-256h128v256
|
||||
h256v-1024.13c0 -141.312 -114.688 -256 -256 -256h-506.624c2.55957 16.7676 4.22363 33.5361 4.22363 50.3037c0 183.937 -39.6797 276.48 -235.647 423.424c-56.1924 42.2402 -178.688 128.769 -178.688 186.881c0 67.9678 19.4561 101.632 121.856 181.504
|
||||
c104.96 82.0479 179.328 190.208 179.328 324.352c0 146.176 -59.7764 278.912 -172.16 343.296h159.36l135.68 142.464h-606.977c-174.336 0 -332.159 -72.832 -436.352 -181.376v65.2803c0 141.312 114.688 256 256 256h1280c141.312 0 256 -114.688 256 -256v-128z" />
|
||||
<glyph glyph-name="uniF407" unicode=""
|
||||
d="M1280 1536l256 -128v-128h-128h-128h-128h-128h-128h-128h-128h-128h-128v128l256 128c0 70.7842 57.3438 128 128 128h384c70.7842 0 128 -57.2158 128 -128zM1088 1408c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64h-256c-35.3281 0 -64 -28.6719 -64 -64
|
||||
s28.6719 -64 64 -64h256zM1280 1216h128v-704c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.6562 0 -128 57.2158 -128 128v704h128v-704h128v704h128v-704h128v704h128v-704h128v704z" />
|
||||
<glyph glyph-name="uniF414" unicode=""
|
||||
d="M1996.03 601.984c116.992 -190.208 29.6953 -345.984 -193.536 -345.984h-1556.99c-223.231 0 -310.528 155.776 -193.536 345.984l759.552 1236.99c116.864 190.336 308.097 190.336 424.961 0zM1024 512c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128
|
||||
c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128zM1113.22 896l51.584 640h-281.6l51.2002 -640h178.815z" />
|
||||
<glyph glyph-name="uniF50E" unicode=""
|
||||
d="M384 896v256h1280v-256h-1280z" />
|
||||
<glyph glyph-name="uniF461" unicode=""
|
||||
d="M1024 384l-647.552 612.992c-149.376 141.312 -161.408 383.231 -27.1367 540.288c134.4 157.184 364.416 169.855 513.792 28.5439l160.896 -152.32l160.768 152.32c149.248 141.184 379.393 128.64 513.792 -28.5439
|
||||
c134.656 -157.057 122.368 -398.977 -27.0078 -540.416z" />
|
||||
<glyph glyph-name="uniF470" unicode=""
|
||||
d="M1536 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-1024c-70.6562 0 -128 57.2158 -128 128v640c0 70.6562 57.3438 128 128 128v128c0 282.752 229.248 512 512 512s512 -229.248 512 -512v-128zM768 1152h512v128
|
||||
c0 141.312 -114.688 256 -256 256s-256 -114.688 -256 -256v-128z" />
|
||||
<glyph glyph-name="uniF50C" unicode=""
|
||||
d="M1479.55 819.2c98.5605 -32 203.137 -51.2002 312.448 -51.2002v-512c-848.256 0 -1536 687.744 -1536 1536h512c0 -162.048 38.5283 -314.752 105.856 -450.816l-189.185 -189.184c136.192 -235.008 344.96 -422.4 595.328 -532.224z" />
|
||||
<glyph glyph-name="uniF220" unicode=""
|
||||
d="M1856.77 834.048c32.3848 -65.6641 50.6885 -138.88 50.3047 -217.344c0 -269.696 -218.88 -488.704 -488.576 -488.704c-83.584 0 -161.92 21.376 -230.656 58.1123c-50.4316 -8.83203 -102.016 -13.8242 -154.496 -13.8242
|
||||
c-465.279 0 -842.624 377.216 -842.624 842.496c0 58.2402 6.14453 114.688 17.2803 169.6c-42.4961 72.1924 -67.0723 156.8 -67.0723 246.912c0 269.824 218.88 488.704 488.704 488.704c95.7441 0 184.704 -27.3916 260.225 -75.0078
|
||||
c46.4639 7.80762 94.5918 12.416 143.871 12.416c465.408 0 842.624 -377.344 842.624 -842.624c0 -62.0801 -6.65527 -122.752 -19.584 -180.736zM1466.11 612.096c38.9121 55.5527 58.624 118.656 58.752 188.16c0 58.2402 -11.2646 107.904 -34.1758 148.353
|
||||
c-22.9121 40.3193 -54.7842 73.8555 -95.2324 100.224c-39.168 25.7275 -87.8076 48.1279 -143.744 66.0479c-55.4238 17.9199 -118.271 34.1758 -186.496 48.6396c-53.7598 12.416 -93.0557 21.8887 -116.479 28.6729c-23.04 6.14355 -45.4404 15.2314 -67.8398 26.3672
|
||||
c-21.8887 10.624 -38.5283 23.5527 -50.4326 38.0166c-11.1357 13.9521 -16.7676 30.3359 -16.7676 49.2803c0 31.2314 16.8955 57.4717 52.2236 80.5117c36.3525 23.5518 85.6318 35.9678 146.048 35.9678c64.8965 0 112.384 -11.2637 140.544 -32.6396
|
||||
c29.1846 -21.6318 54.2725 -53.6318 75.5205 -93.3125c18.5596 -31.3594 34.9434 -53.248 50.6875 -67.2002c16.3838 -14.5918 40.5762 -22.3994 71.9365 -22.3994c34.9434 0 63.8721 12.416 86.9121 36.4795c23.04 23.4248 34.6875 50.8164 34.6875 81.1523
|
||||
c0 31.3604 -9.08789 63.3604 -25.2158 95.7441c-17.2803 32.3838 -44.7998 63.1035 -81.9199 92.2881c-36.8643 28.5439 -83.8398 52.0957 -139.008 69.5039c-55.8086 16.7676 -121.729 25.5996 -196.736 25.5996c-94.7197 0 -177.536 -13.1836 -247.424 -39.04
|
||||
c-70.5283 -26.3682 -125.952 -64.3838 -163.584 -113.664c-38.0166 -49.2793 -56.96 -106.496 -56.96 -170.239c0 -67.2002 17.792 -123.776 54.2715 -169.217c35.0723 -44.1592 83.9688 -79.8721 144.385 -105.728c58.752 -25.2158 133.247 -47.3604 220.672 -66.0479
|
||||
c64.2559 -13.3125 115.712 -26.2402 154.239 -38.0166c36.8643 -11.2637 67.3281 -27.9033 89.9844 -49.2793c22.1436 -20.7363 32.6396 -46.9766 32.6396 -80.1279c0 -42.3682 -20.2236 -76.8008 -62.0801 -105.345c-43.1357 -29.0557 -100.352 -43.9033 -169.728 -43.9033
|
||||
c-50.9443 0 -92.416 7.16797 -122.624 21.6318c-30.3359 13.9521 -54.2715 32.5117 -70.5283 54.2715c-17.2793 22.6562 -33.4072 51.4561 -48.6396 85.7607c-13.4404 31.3594 -29.5684 55.8076 -49.2803 72.0635c-20.7354 17.2803 -45.3115 25.7285 -74.4961 25.7285
|
||||
c-35.0713 0 -64.7676 -10.3682 -87.8076 -32.3848c-23.5518 -21.8877 -35.3281 -48.6396 -35.3281 -79.6152c0 -48.8965 17.9199 -100.608 53.8877 -152.192c35.0723 -50.9443 82.3047 -92.416 138.752 -123.136c79.3604 -41.8564 180.864 -63.1045 301.696 -63.1045
|
||||
c100.736 0 189.44 15.4883 263.04 46.208c75.3926 30.9766 132.225 74.4961 171.648 129.92z" />
|
||||
<glyph glyph-name="uniF415" unicode=""
|
||||
d="M1408 1024h512v-256h-310.016c-98.8164 -225.92 -323.584 -384 -585.984 -384c-176.768 0 -335.488 72.832 -451.072 188.928l0.640625 0.640625c-50.0488 50.0479 -50.0488 130.943 0 180.991c50.0479 50.0488 130.943 50.1768 180.991 0
|
||||
c69.376 -69.6318 163.456 -114.56 269.44 -114.56c212.096 0 384 171.904 384 384zM1024 1408c-212.096 0 -384 -171.904 -384 -384h-512v256h310.016c98.8164 225.92 323.712 384 585.984 384c176.896 0 335.488 -72.96 451.072 -188.928
|
||||
c50.0479 -50.0479 50.0479 -130.944 0 -180.992s-130.944 -50.0479 -180.992 0l-0.639648 -0.639648c-69.376 69.6318 -163.328 114.56 -269.44 114.56zM832 1024c0 106.112 86.0156 192 192 192c106.112 0 192 -85.8877 192 -192s-85.8877 -192 -192 -192
|
||||
c-105.984 0 -192 85.8877 -192 192z" />
|
||||
<glyph glyph-name="uniF207" unicode=""
|
||||
d="M604.672 256h-329.216v990.72h329.216v-990.72zM440.064 1381.89h-2.04883c-110.464 0 -182.016 76.1602 -182.016 171.137c0 97.1514 73.5996 171.136 186.368 171.136c112.512 0 181.888 -74.1123 184.063 -171.136c0 -94.9766 -71.5518 -171.137 -186.367 -171.137z
|
||||
M1792 256h-329.216v530.048c0 133.12 -47.3604 224 -166.656 224c-91.1357 0 -145.28 -61.1836 -169.088 -120.32c-8.57617 -21.2471 -10.752 -50.9434 -10.752 -80.5117v-553.216h-329.344s4.35156 897.792 0 990.72h329.344v-140.416
|
||||
c43.7764 67.4561 121.984 163.584 296.448 163.584c216.704 0 379.264 -141.567 379.264 -445.823v-568.064z" />
|
||||
<glyph glyph-name="uniF500" unicode=""
|
||||
d="M2048 0h-1920l960 959.872z" />
|
||||
<glyph glyph-name="uniF302" unicode=""
|
||||
d="M1024 1536h512v-512l-768 -768l-512 512zM1280 1152c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128s-128 -57.2158 -128 -128s57.2158 -128 128 -128z" />
|
||||
<glyph glyph-name="uniF108" unicode=""
|
||||
d="M1664 1536c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-128v-448l-448 448h-331.008l128 128h395.008c211.712 0 384 172.288 384 384v384zM1280 1792c141.312 0 256 -114.688 256 -256v-384c0 -141.312 -114.688 -256 -256 -256h-448
|
||||
l-448 -448v448h-128c-141.312 0 -256 114.688 -256 256v384c0 141.312 114.688 256 256 256h1024z" />
|
||||
<glyph glyph-name="uniF405" unicode=""
|
||||
d="M1536 1408l-320 -320l320 -320l-128 -128l-320 320l-320 -320l-128 128l320 320l-320 320l128 128l320 -320l320 320z" />
|
||||
<glyph glyph-name="uniF501" unicode=""
|
||||
d="M0 128v1920l960 -960z" />
|
||||
<glyph glyph-name="uniF50D" unicode=""
|
||||
d="M1024.13 896c-105.984 0 -192.128 86.0156 -192.128 192v512c0 105.856 86.1436 192 192.128 192c106.112 0 191.872 -86.1436 191.872 -192v-512c0 -105.984 -85.7598 -192 -191.872 -192zM1401.47 1024h192c-27.3916 -244.48 -206.464 -441.984 -441.472 -496v-272
|
||||
h-256v272c-234.88 54.0156 -414.08 251.52 -441.472 496h192c30.5918 -181.504 187.52 -320 377.472 -320c190.208 0 347.008 138.496 377.472 320z" />
|
||||
<glyph glyph-name="uniF503" unicode=""
|
||||
d="M2048 2048v-1920l-960 960z" />
|
||||
<glyph glyph-name="uniF101" unicode=""
|
||||
d="M1024 1792c424.064 0 768 -343.936 768 -768s-343.936 -768 -768 -768s-768 343.936 -768 768s343.936 768 768 768zM1024 768c141.312 0 256 114.688 256 256s-114.688 256 -256 256s-256 -114.688 -256 -256s114.688 -256 256 -256z" />
|
||||
<glyph glyph-name="uniF204" unicode=""
|
||||
d="M1182.21 1271.81h328.704l-14.4639 -302.72h-314.24v-841.088h-320.128v841.088h-222.08v302.72h222.08v258.561c0 203.008 131.456 389.632 434.176 389.632c122.496 0 212.992 -11.6484 212.992 -11.6484l-7.04004 -282.624s-92.5439 0.640625 -193.536 0.640625
|
||||
c-108.928 0 -126.464 -50.3037 -126.464 -133.504c0 -12.416 0 -15.3604 0 -13.9521v-207.104z" />
|
||||
<glyph glyph-name="uniF444" unicode=""
|
||||
d="M1600 640c-70.7842 0 -128 -57.2158 -128 -128s57.2158 -128 128 -128h64v-128h-1024c-141.312 0 -256 114.688 -256 256v1024c0 141.312 114.688 256 256 256h1024v-1152h-64zM640 384h817.92c-30.7197 34.0479 -49.9199 78.5918 -49.9199 128
|
||||
s19.2002 93.9521 49.9199 128h-817.92c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128z" />
|
||||
<glyph glyph-name="uniF416" unicode=""
|
||||
d="M1088 1792c176.768 0 320 -143.232 320 -320v-640c0 -247.424 -200.576 -448 -448 -448s-448 200.576 -448 448v320h128v-320c0 -176.768 143.232 -320 320 -320c176.64 0 320 143.232 320 320v640c0 105.984 -86.0156 192 -192 192c-106.112 0 -192 -86.0156 -192 -192
|
||||
v-512c0 -35.3281 28.6719 -64 64 -64s64 28.6719 64 64v451.968h128v-451.968c0 -105.984 -86.0156 -192 -192 -192c-106.112 0 -192 86.0156 -192 192v512c0 176.768 143.232 320 320 320z" />
|
||||
<glyph glyph-name="uniF459" unicode=""
|
||||
d="M1920 1664v-1280l-768 480v-480l-1024 640l1024 640v-480z" />
|
||||
<glyph glyph-name="uniF441" unicode=""
|
||||
d="M1664 1024c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256h-512v256h256l-384 384l-384 -384h256v-256h-512c-141.312 0 -256 114.688 -256 256s114.688 256 256 256h6.40039c-4.09668 20.7363 -6.40039 42.1123 -6.40039 64c0 176.768 143.232 320 320 320
|
||||
c89.3438 0 169.984 -36.7363 227.968 -95.8721c60.7998 131.84 193.408 223.872 348.032 223.872c211.968 0 384 -171.904 384 -384c0 -45.1836 -9.21582 -87.8076 -23.5518 -128h23.5518z" />
|
||||
<glyph glyph-name="uniF506" unicode=""
|
||||
d="M768 1920l489.344 -489.472l-640 -640l-268.928 269.056c-49.792 49.792 -49.792 131.2 0 180.992l292.864 292.735l-1.28027 2.68848s128 128 128 384zM1738.24 565.76c33.1514 -32.7676 53.7598 -78.208 53.7598 -128.64c0 -99.9678 -81.1523 -181.12 -181.12 -181.12
|
||||
c-50.4316 0 -95.7441 20.6084 -128.64 53.7598l-330.24 330.24v128l-64 64c-35.2002 35.2002 -104.704 23.2959 -154.496 -26.4961l-75.0078 -75.0078c-49.792 -49.792 -131.2 -49.792 -180.992 0l-14.8477 14.8477l640 640l14.8477 -14.8477
|
||||
c49.792 -49.792 49.792 -131.2 0 -180.992l-75.0078 -75.0078c-49.792 -49.792 -61.6963 -119.296 -26.4961 -154.496l64 -64h128zM1610.88 373.12c35.3281 0 64 28.6719 64 64s-28.6719 64 -64 64s-64 -28.6719 -64 -64s28.6719 -64 64 -64z" />
|
||||
<glyph glyph-name="uniF105" unicode=""
|
||||
d="M1408 1408c0 -167.04 -107.264 -307.584 -256 -360.448v-535.552l-256 -128v663.552c-148.864 52.8643 -256 193.408 -256 360.448c0 212.096 171.904 384 384 384c211.968 0 384 -171.904 384 -384z" />
|
||||
<glyph glyph-name="uniF473" unicode=""
|
||||
d="M384 1664h1280v-1280h-1280v1280zM768 1408c-70.6562 0 -128 -57.3438 -128 -128s57.3438 -128 128 -128s128 57.3438 128 128s-57.3438 128 -128 128zM1536 512v576l-128 192l-448 -672l-192 288l-256 -384h1024z" />
|
||||
<glyph glyph-name="uniF452" unicode=""
|
||||
d="M512 1664l1024 -640l-1024 -640v1280z" />
|
||||
<glyph glyph-name="uniF408" unicode=""
|
||||
d="M1792 1150.72l-475.904 -329.983l182.528 -535.04l-474.624 331.903l-474.624 -331.903l182.528 535.04l-475.904 329.983l587.52 -1.02344l180.48 535.68l180.48 -535.68z" />
|
||||
<glyph glyph-name="uniF450" unicode=""
|
||||
d="M768 1024l1024 640v-1280zM256 384v1280h384v-1280h-384z" />
|
||||
<glyph glyph-name="uniF517" unicode=""
|
||||
d="M1408 1152l384 384v-1024l-384 384v-256c0 -70.7842 -57.2158 -128 -128 -128h-896c-70.6562 0 -128 57.2158 -128 128v768c0 70.6562 57.3438 128 128 128h896c70.7842 0 128 -57.3438 128 -128v-256z" />
|
||||
<glyph glyph-name="uniF106" unicode=""
|
||||
d="M256 896v640h640v-640c0 -282.752 -229.248 -512 -512 -512v256c141.312 0 256 114.688 256 256h-384zM1152 1536h640v-640c0 -282.752 -229.248 -512 -512 -512v256c141.312 0 256 114.688 256 256h-384v640z" />
|
||||
<glyph glyph-name="uniF208" unicode=""
|
||||
d="M1664 1920c141.312 0 256 -114.688 256 -256v-1280c0 -141.312 -114.688 -256 -256 -256h-1280c-141.312 0 -256 114.688 -256 256v1280c0 141.312 114.688 256 256 256h1280zM663.168 384v792.96h-263.552v-792.96h263.552zM531.328 1285.25
|
||||
c91.9043 0 149.12 60.9277 149.12 136.96c-1.66406 77.6963 -57.2158 136.96 -147.328 136.96c-90.2402 0 -149.12 -59.2637 -149.12 -136.96c0 -76.0322 57.2158 -136.96 145.664 -136.96h1.66406zM1613.44 384v454.656c0 243.456 -130.049 356.863 -303.488 356.863
|
||||
c-139.776 0 -202.496 -76.9277 -237.44 -130.943v112.384h-263.552c3.45605 -74.3682 0 -792.96 0 -792.96h263.552v442.88c0 23.6797 1.79199 47.3604 8.57617 64.1279c19.0723 47.3604 62.4639 96.3838 135.296 96.3838c95.4883 0 133.504 -72.7031 133.504 -179.199
|
||||
v-424.192h263.553z" />
|
||||
<glyph glyph-name="uniF304" unicode=""
|
||||
d="M1024 1152c-141.312 0 -256 114.688 -256 256s114.688 256 256 256s256 -114.688 256 -256s-114.688 -256 -256 -256zM1152 1024c211.968 0 384 -171.904 384 -384v-256h-1024v256c0 212.096 172.032 384 384 384h256z" />
|
||||
<glyph glyph-name="uniF225" unicode=""
|
||||
d="M655.104 1857.54l368.896 -307.968l-531.456 -328.192l-364.544 291.84zM128 929.536l364.544 291.84l531.456 -328.064l-368.896 -308.096zM1024 893.312l531.456 328.064l364.544 -291.84l-527.232 -344.32zM1920 1513.22l-364.544 -291.84l-531.456 328.192
|
||||
l368.768 307.968zM1025.02 826.88l369.92 -306.944l158.464 103.297v-115.713l-528.384 -317.056l-528.257 317.056v115.713l158.336 -103.297z" />
|
||||
<glyph glyph-name="uniF103" unicode=""
|
||||
d="M1152 1408h896v-896h-896v896zM128 1024v384h896v-384h-896zM640 512v384h384v-384h-384zM128 512v384h384v-384h-384z" />
|
||||
<glyph glyph-name="uniF431" unicode=""
|
||||
d="M1408 1280l128 -128l-576 -576l-576 576l128 128l448 -448z" />
|
||||
<glyph glyph-name="uniF200" unicode=""
|
||||
d="M1024 2048c565.504 0 1024 -458.496 1024 -1024c0 -452.224 -293.12 -835.712 -699.776 -971.392c-51.9678 -9.98438 -70.3994 21.7598 -70.3994 49.2793c0 33.4082 1.2793 144 1.2793 280.704c0 95.7441 -32.7676 158.208 -69.5039 189.696
|
||||
c228.097 25.3438 467.456 112 467.456 505.344c0 111.744 -39.5518 203.136 -105.088 274.688c10.4961 25.8555 45.6963 130.048 -10.2402 270.976c0 0 -85.8877 27.5205 -281.344 -104.96c-81.792 22.7842 -169.344 34.0479 -256.384 34.4316
|
||||
c-87.04 -0.383789 -174.592 -11.6475 -256.384 -34.4316c-195.584 132.48 -281.601 104.96 -281.601 104.96c-55.6797 -140.928 -20.4795 -244.992 -9.85547 -270.976c-65.5361 -71.5527 -105.472 -162.944 -105.472 -274.688c0 -392.32 239.104 -480.384 466.432 -506.112
|
||||
c-29.3125 -25.7275 -55.6797 -70.6553 -65.0244 -136.96c-58.2393 -26.2393 -206.72 -71.2959 -297.983 85.248c0 0 -54.1445 98.1768 -156.929 105.473c0 0 -100.096 1.2793 -7.04004 -62.208c0 0 67.0723 -31.4883 113.664 -150.017c0 0 60.0322 -198.912 344.96 -137.216
|
||||
c0.512695 -85.248 1.4082 -149.76 1.4082 -173.952c0 -27.2637 -18.6875 -58.752 -69.8877 -49.5361c-406.912 135.425 -700.288 519.168 -700.288 971.648c0 565.504 458.496 1024 1024 1024z" />
|
||||
<glyph glyph-name="uniF421" unicode=""
|
||||
d="M384 896v256h1152v-256h-1152z" />
|
||||
<glyph glyph-name="uniF454" unicode=""
|
||||
d="M640 896v128h-512v256h512v128l384 -256zM1536 2048c141.312 0 256 -114.688 256 -256v-1536c0 -141.312 -114.688 -256 -256 -256h-1024c-141.312 0 -256 114.688 -256 256v640h256v-384h1024v1280h-1024v-384h-256v384c0 141.312 114.688 256 256 256h1024zM1024 128
|
||||
c70.7842 0 128 57.2158 128 128s-57.2158 128 -128 128c-70.6562 0 -128 -57.2158 -128 -128s57.3438 -128 128 -128z" />
|
||||
<glyph glyph-name="uniF213" unicode=""
|
||||
d="M1536 1664c211.968 0 384 -171.904 384 -384v-512c0 -212.096 -172.032 -384 -384 -384h-1024c-212.096 0 -384 171.904 -384 384v512c0 212.096 171.904 384 384 384h1024zM768 640l640 384l-640 384v-768z" />
|
||||
<glyph glyph-name="uniF401" unicode=""
|
||||
d="M1297.15 878.848l494.848 -494.848l-128 -128l-494.848 494.848c-94.8486 -68.9912 -210.816 -110.848 -337.152 -110.848c-318.08 0 -576 257.92 -576 576s257.92 576 576 576s576 -257.92 576 -576c0 -126.336 -41.8564 -242.304 -110.848 -337.152zM832 768
|
||||
c247.552 0 448 200.576 448 448s-200.448 448 -448 448c-247.424 0 -448 -200.576 -448 -448s200.576 -448 448 -448zM512 1152v128h640v-128h-640z" />
|
||||
<glyph glyph-name="uniF436" unicode=""
|
||||
d="M512 1408v128h128v-128h-128zM768 1408v128h128v-128h-128zM1024 1408v128h128v-128h-128zM1280 1536h128v-128h-128v128zM512 1152v128h128v-128h-128zM768 1152v128h128v-128h-128zM1024 1152v128h128v-128h-128zM1280 1152v128h128v-128h-128zM512 896v128h128v-128
|
||||
h-128zM768 896v128h128v-128h-128zM1024 896v128h128v-128h-128zM1280 896v128h128v-128h-128zM512 640v128h128v-128h-128zM768 640v128h128v-128h-128zM1024 640v128h128v-128h-128zM1280 640v128h128v-128h-128z" />
|
||||
<glyph glyph-name="uniF434" unicode=""
|
||||
d="M1152 0l896 896v-896h-896z" />
|
||||
<glyph glyph-name="uniF303" unicode=""
|
||||
d="M960 1792c388.736 0 704 -315.136 704 -704c0 -388.736 -315.264 -704 -704 -704c-388.864 0 -704 315.264 -704 704c0 388.864 315.136 704 704 704zM960 512c317.952 0 576 257.92 576 576s-258.048 576 -576 576c-318.08 0 -576 -257.92 -576 -576
|
||||
s257.92 -576 576 -576zM1024 1536v-421.504l297.984 -297.984l-90.4961 -90.4961l-335.488 335.488v474.496h128z" />
|
||||
<glyph glyph-name="uniF464" unicode=""
|
||||
d="M1536 1408l-768 -384l-768 384v128h1536v-128zM0 1216l768 -384l256 128v-448h-1024v704zM1920 1152c70.7842 0 128 -57.3438 128 -128v-640c0 -70.7842 -57.2158 -128 -128 -128h-640c-70.7842 0 -128 57.2158 -128 128v640c0 70.6562 57.2158 128 128 128h640z
|
||||
M1920 640v128h-640v-128h640z" />
|
||||
<glyph glyph-name="uniF109" unicode=""
|
||||
d="M256 1280h384l384 384v-1280l-384 384h-384v512zM1295.49 1295.62c69.5039 -69.5039 112.512 -165.504 112.512 -271.616s-43.0078 -202.112 -112.512 -271.488l-90.4961 90.4961c46.3359 46.208 75.0078 110.208 75.0078 180.992
|
||||
c0 70.6562 -28.6719 134.656 -75.0078 181.12zM1476.61 1476.61c115.712 -115.841 187.392 -275.841 187.392 -452.608c0 -176.896 -71.6797 -336.896 -187.392 -452.608l-90.4961 90.4961c92.6719 92.6719 149.888 220.672 149.888 362.112
|
||||
c0 141.312 -57.2158 269.44 -149.888 361.984z" />
|
||||
<glyph glyph-name="uniF428" unicode=""
|
||||
d="M1024 1280c141.312 0 256 -114.688 256 -256s-114.688 -256 -256 -256s-256 114.688 -256 256s114.688 256 256 256z" />
|
||||
</font>
|
||||
</defs></svg>
|
After Width: | Height: | Size: 77 KiB |
BIN
twentyfifteen/genericons/Genericons.ttf
Normal file
BIN
twentyfifteen/genericons/Genericons.ttf
Normal file
Binary file not shown.
BIN
twentyfifteen/genericons/Genericons.woff
Normal file
BIN
twentyfifteen/genericons/Genericons.woff
Normal file
Binary file not shown.
339
twentyfifteen/genericons/LICENSE.txt
Normal file
339
twentyfifteen/genericons/LICENSE.txt
Normal file
|
@ -0,0 +1,339 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Lesser General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License.
|
152
twentyfifteen/genericons/README.md
Normal file
152
twentyfifteen/genericons/README.md
Normal file
|
@ -0,0 +1,152 @@
|
|||
## Genericons
|
||||
|
||||
Genericons are vector icons embedded in a webfont designed to be clean and simple keeping with a generic aesthetic.
|
||||
|
||||
Use genericons for instant HiDPI, to change icon colors on the fly, or even with CSS effects such as drop-shadows or gradients!
|
||||
|
||||
|
||||
### Usage
|
||||
|
||||
To use it, place the `font` folder in your stylesheet directory and enqueue the genericons.css file. Now you can create an icon like this:
|
||||
|
||||
```
|
||||
.my-icon:before {
|
||||
content: '\f101';
|
||||
font: normal 16px/1 'Genericons';
|
||||
display: inline-block;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
```
|
||||
|
||||
This will output a comment icon before every element with the class "my-icon". The `content: '\f101';` part of this CSS is easily copied from the helper tool at http://genericons.com/, or `example.html` in the `font` directory.
|
||||
|
||||
You can also use the bundled example.css if you'd rather insert the icons using HTML tags.
|
||||
|
||||
|
||||
### Notes
|
||||
|
||||
**Photoshop mockups**
|
||||
|
||||
The `Genericons.ttf` file found in the `font` directory can be placed in your system fonts folder and used Photoshop or other graphics apps if you like.
|
||||
|
||||
If you're using Genericons in your Photoshop mockups, please remember to delete the old version of the font from Font Book, and grab the new one from the zip file. This also affects using it in your webdesigns: if you have an old version of the font installed locally, that's the font that'll be used in your website as well, so if you're missing icons, check for old versions of the font on your system.
|
||||
|
||||
**Pixel grid**
|
||||
|
||||
Genericons has been designed for a 16x16px grid. That means it'll look sharp at font-size: 16px exactly. It'll also be crisp at multiples thereof, such as 32px or 64px. It'll look reasonably crisp at in-between font sizes such as 24px or 48px, but not quite as crisp as 16 or 32. Please don't set the font-size to 17px, though, that'll just look terrible blurry.
|
||||
|
||||
**Antialiasing**
|
||||
|
||||
If you keep intact the `-webkit-font-smoothing: antialiased;` and `-moz-osx-font-smoothing: grayscale;` CSS properties. That'll make the icons look their best possible, in Firefox and WebKit based browsers.
|
||||
|
||||
**optimizeLegibility**
|
||||
|
||||
Note: On Android browsers with version 4.2, 4.3, and probably later, Genericons will simply not show up if you're using the CSS property "text-rendering" set to "optimizeLegibility.
|
||||
|
||||
**Updates**
|
||||
|
||||
We don't often update icons, but do very carefully when we get good feedback suggesting improvements. Please be mindful if you upgrade, and check that the updated icons behave as you intended.
|
||||
|
||||
|
||||
### Changelog
|
||||
|
||||
**3.2**
|
||||
|
||||
A number of new icons and a couple of quick updates.
|
||||
|
||||
* New: Activity
|
||||
* New: HTML anchor
|
||||
* New: Bug
|
||||
* New: Download
|
||||
* New: Handset
|
||||
* New: Microphone
|
||||
* New: Minus
|
||||
* New: Plus
|
||||
* New: Move
|
||||
* New: Rating stars, empty, half, full
|
||||
* New: Shuffle
|
||||
* New: video camera
|
||||
* New: Spotify
|
||||
* New: Twitch
|
||||
* Update: Fixed geometry in Edit icon
|
||||
* Update: Updated Foursquare icon
|
||||
|
||||
Twitch and Spotify mark the last social icons that will be added to Genericons.
|
||||
Future social icons will have to happen in a separate font.
|
||||
|
||||
**3.1**
|
||||
|
||||
Genericons is now generated using a commandline tool called FontCustom. This makes it far easier to add new icons to the font, but the switch means the download zip now has a different layout, fonts have different filenames, there's now no .otf font included (but the .ttf should suffice), and the font now has slightly different metrics. I've taken great care to ensure this new version should work as a drop-in replacement, but please be mindful and test carefully if you choose to upgrade.
|
||||
|
||||
* Per feedback, the baked-in 16px width and height has been removed from the helper CSS. It wasn't really necessary (the glyph itself has these dimensions naturally), and it caused some headaches.
|
||||
* Base64 encoding is now included by default in the helper CSS. This makes it drop-in easy to get Genericons working in Firefox even when using a CDN.
|
||||
* Title attribute on website tool.
|
||||
* New: Website.
|
||||
* New: Ellipsis.
|
||||
* New: Foursquare.
|
||||
* New: X-post.
|
||||
* New: Sitemap.
|
||||
* New: Hierarchy.
|
||||
* New: Paintbrush.
|
||||
* Updated: Show and Hide icons were updated for clarity.
|
||||
|
||||
**3.0.3**
|
||||
|
||||
Bunch of updates mostly.
|
||||
|
||||
* Two new icons, Dropbox and Fullscreen.
|
||||
* Updates to all icons containing an exclamation mark.
|
||||
* Updates to Image and Quote.
|
||||
* Nicer "Share" icon.
|
||||
* Bigger default Linkedin icon.
|
||||
|
||||
**3.0.2**
|
||||
|
||||
A slew of new stuff and updates.
|
||||
|
||||
* Social icons: Skype, Digg, Reddit, Stumbleupon, Pocket.
|
||||
* New generic icons: heart, lock and print.
|
||||
* New editing icons: code, bold, italic, image
|
||||
* New interaction icons: subscribe, unsubscribe, subscribed, reply all, reply, flag.
|
||||
* The hyperlink icon has been updated to be clearer, chunkier.
|
||||
* The "home" icon has been updated for style, size and clarity.
|
||||
* The email icon has been updated for style and clarity, and to fit with the new subscribe icons.
|
||||
* The document icon has been updated for style.
|
||||
* The "pin" icon has been updated for style and clarity.
|
||||
* The Twitter icon has been scaled down to fit with the other social icons.
|
||||
|
||||
**3.0.1**
|
||||
|
||||
Mostly maintenance.
|
||||
|
||||
* Fixed an issue with the example page that showed an old "top" icon instead of the actual NEW "refresh" icon.
|
||||
* Added inverse Google+ and Path.
|
||||
* Replaced tabs with spaces in the helper CSS.
|
||||
* Changed the Genericons.com copy/paste tool to serve span's instead of div's for casual icon insertion. It's being converted to "inline-block" anyway.
|
||||
|
||||
**3.0**
|
||||
|
||||
Mainly maintenance and a few new icons.
|
||||
|
||||
* Fast forward, rewind, PollDaddy, Notice, Info, Help, Portfolio
|
||||
* Updated the feed icon. It's a bit smaller now for consistency, the previous one was rather big.
|
||||
* So, the previous version numbering, 2.09, wasn't very PHP version compare friendly. So from now on it'll be 3.0, 3.1 etc. Props Ipstenu.
|
||||
* Genericons.com now has a mini release blog.
|
||||
* The CSS has prettier formatting, props Konstantin Obenland.
|
||||
|
||||
**2.09**
|
||||
|
||||
Updated Facebook icon to new version. Updated Instagram logo to use new one-color version. Updated Google+ icon to use same radius as Instagram and Facebook. Added a bunch of new icons, cog, unapprove, cart, media player buttons, tablet, send to tablet.
|
||||
|
||||
**2.06**
|
||||
|
||||
Included Base64 encoded version. This is necessary for Genericons to work with CDNs in Firefox. Firefox blocks fonts linked from a different domain. A CDN (typically s.example.com) usually puts the font on a subdomain, and is hence blocked in Firefox.
|
||||
|
||||
**2.05**
|
||||
|
||||
Added a bunch of new icons, including upload to cloud, download to cloud, many more.
|
||||
|
||||
**2.0**
|
||||
|
||||
Initial public release
|
209
twentyfifteen/genericons/genericons.css
Normal file
209
twentyfifteen/genericons/genericons.css
Normal file
File diff suppressed because one or more lines are too long
52
twentyfifteen/header.php
Normal file
52
twentyfifteen/header.php
Normal file
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying the header
|
||||
*
|
||||
* Displays all of the head element and everything up until the "site-content" div.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
?><!DOCTYPE html>
|
||||
<html <?php language_attributes(); ?> class="no-js">
|
||||
<head>
|
||||
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<link rel="profile" href="http://gmpg.org/xfn/11">
|
||||
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
|
||||
<!--[if lt IE 9]>
|
||||
<script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js"></script>
|
||||
<![endif]-->
|
||||
<?php wp_head(); ?>
|
||||
</head>
|
||||
|
||||
<body <?php body_class(); ?>>
|
||||
<div id="page" class="hfeed site">
|
||||
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentyfifteen' ); ?></a>
|
||||
|
||||
<div id="sidebar" class="sidebar">
|
||||
<header id="masthead" class="site-header" role="banner">
|
||||
<div class="site-branding">
|
||||
<?php twentyfifteen_the_site_logo(); ?>
|
||||
|
||||
<?php
|
||||
if ( is_front_page() && is_home() ) : ?>
|
||||
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
|
||||
<?php else : ?>
|
||||
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
|
||||
<?php endif;
|
||||
|
||||
$description = get_bloginfo( 'description', 'display' );
|
||||
if ( $description || is_customize_preview() ) : ?>
|
||||
<p class="site-description"><?php echo $description; ?></p>
|
||||
<?php endif;
|
||||
?>
|
||||
<button class="secondary-toggle"><?php _e( 'Menu and widgets', 'twentyfifteen' ); ?></button>
|
||||
</div><!-- .site-branding -->
|
||||
</header><!-- .site-header -->
|
||||
|
||||
<?php get_sidebar(); ?>
|
||||
</div><!-- .sidebar -->
|
||||
|
||||
<div id="content" class="site-content">
|
94
twentyfifteen/image.php
Normal file
94
twentyfifteen/image.php
Normal file
|
@ -0,0 +1,94 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying image attachments
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php
|
||||
// Start the loop.
|
||||
while ( have_posts() ) : the_post();
|
||||
?>
|
||||
|
||||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
|
||||
<nav id="image-navigation" class="navigation image-navigation">
|
||||
<div class="nav-links">
|
||||
<div class="nav-previous"><?php previous_image_link( false, __( 'Previous Image', 'twentyfifteen' ) ); ?></div><div class="nav-next"><?php next_image_link( false, __( 'Next Image', 'twentyfifteen' ) ); ?></div>
|
||||
</div><!-- .nav-links -->
|
||||
</nav><!-- .image-navigation -->
|
||||
|
||||
<header class="entry-header">
|
||||
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<div class="entry-content">
|
||||
|
||||
<div class="entry-attachment">
|
||||
<?php
|
||||
/**
|
||||
* Filter the default Twenty Fifteen image attachment size.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param string $image_size Image size. Default 'large'.
|
||||
*/
|
||||
$image_size = apply_filters( 'twentyfifteen_attachment_size', 'large' );
|
||||
|
||||
echo wp_get_attachment_image( get_the_ID(), $image_size );
|
||||
?>
|
||||
|
||||
<?php if ( has_excerpt() ) : ?>
|
||||
<div class="entry-caption">
|
||||
<?php the_excerpt(); ?>
|
||||
</div><!-- .entry-caption -->
|
||||
<?php endif; ?>
|
||||
|
||||
</div><!-- .entry-attachment -->
|
||||
|
||||
<?php
|
||||
the_content();
|
||||
wp_link_pages( array(
|
||||
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentyfifteen' ) . '</span>',
|
||||
'after' => '</div>',
|
||||
'link_before' => '<span>',
|
||||
'link_after' => '</span>',
|
||||
'pagelink' => '<span class="screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>%',
|
||||
'separator' => '<span class="screen-reader-text">, </span>',
|
||||
) );
|
||||
?>
|
||||
</div><!-- .entry-content -->
|
||||
|
||||
<footer class="entry-footer">
|
||||
<?php twentyfifteen_entry_meta(); ?>
|
||||
<?php edit_post_link( __( 'Edit', 'twentyfifteen' ), '<span class="edit-link">', '</span>' ); ?>
|
||||
</footer><!-- .entry-footer -->
|
||||
|
||||
</article><!-- #post-## -->
|
||||
|
||||
<?php
|
||||
// If comments are open or we have at least one comment, load up the comment template
|
||||
if ( comments_open() || get_comments_number() ) :
|
||||
comments_template();
|
||||
endif;
|
||||
|
||||
// Previous/next post navigation.
|
||||
the_post_navigation( array(
|
||||
'prev_text' => _x( '<span class="meta-nav">Published in</span><span class="post-title">%title</span>', 'Parent post link', 'twentyfifteen' ),
|
||||
) );
|
||||
|
||||
// End the loop.
|
||||
endwhile;
|
||||
?>
|
||||
|
||||
</main><!-- .site-main -->
|
||||
</div><!-- .content-area -->
|
||||
|
||||
<?php get_footer(); ?>
|
63
twentyfifteen/inc/back-compat.php
Normal file
63
twentyfifteen/inc/back-compat.php
Normal file
|
@ -0,0 +1,63 @@
|
|||
<?php
|
||||
/**
|
||||
* Twenty Fifteen back compat functionality
|
||||
*
|
||||
* Prevents Twenty Fifteen from running on WordPress versions prior to 4.1,
|
||||
* since this theme is not meant to be backward compatible beyond that and
|
||||
* relies on many newer functions and markup changes introduced in 4.1.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Prevent switching to Twenty Fifteen on old versions of WordPress.
|
||||
*
|
||||
* Switches to the default theme.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_switch_theme() {
|
||||
switch_theme( WP_DEFAULT_THEME, WP_DEFAULT_THEME );
|
||||
unset( $_GET['activated'] );
|
||||
add_action( 'admin_notices', 'twentyfifteen_upgrade_notice' );
|
||||
}
|
||||
add_action( 'after_switch_theme', 'twentyfifteen_switch_theme' );
|
||||
|
||||
/**
|
||||
* Add message for unsuccessful theme switch.
|
||||
*
|
||||
* Prints an update nag after an unsuccessful attempt to switch to
|
||||
* Twenty Fifteen on WordPress versions prior to 4.1.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_upgrade_notice() {
|
||||
$message = sprintf( __( 'Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again.', 'twentyfifteen' ), $GLOBALS['wp_version'] );
|
||||
printf( '<div class="error"><p>%s</p></div>', $message );
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent the Customizer from being loaded on WordPress versions prior to 4.1.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_customize() {
|
||||
wp_die( sprintf( __( 'Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again.', 'twentyfifteen' ), $GLOBALS['wp_version'] ), '', array(
|
||||
'back_link' => true,
|
||||
) );
|
||||
}
|
||||
add_action( 'load-customize.php', 'twentyfifteen_customize' );
|
||||
|
||||
/**
|
||||
* Prevent the Theme Preview from being loaded on WordPress versions prior to 4.1.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_preview() {
|
||||
if ( isset( $_GET['preview'] ) ) {
|
||||
wp_die( sprintf( __( 'Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again.', 'twentyfifteen' ), $GLOBALS['wp_version'] ) );
|
||||
}
|
||||
}
|
||||
add_action( 'template_redirect', 'twentyfifteen_preview' );
|
370
twentyfifteen/inc/custom-header.php
Normal file
370
twentyfifteen/inc/custom-header.php
Normal file
|
@ -0,0 +1,370 @@
|
|||
<?php
|
||||
/**
|
||||
* Custom Header functionality for Twenty Fifteen
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Set up the WordPress core custom header feature.
|
||||
*
|
||||
* @uses twentyfifteen_header_style()
|
||||
*/
|
||||
function twentyfifteen_custom_header_setup() {
|
||||
$color_scheme = twentyfifteen_get_color_scheme();
|
||||
$default_text_color = trim( $color_scheme[4], '#' );
|
||||
|
||||
/**
|
||||
* Filter Twenty Fifteen custom-header support arguments.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param array $args {
|
||||
* An array of custom-header support arguments.
|
||||
*
|
||||
* @type string $default_text_color Default color of the header text.
|
||||
* @type int $width Width in pixels of the custom header image. Default 954.
|
||||
* @type int $height Height in pixels of the custom header image. Default 1300.
|
||||
* @type string $wp-head-callback Callback function used to styles the header image and text
|
||||
* displayed on the blog.
|
||||
* }
|
||||
*/
|
||||
add_theme_support( 'custom-header', apply_filters( 'twentyfifteen_custom_header_args', array(
|
||||
'default-text-color' => $default_text_color,
|
||||
'width' => 954,
|
||||
'height' => 1300,
|
||||
'wp-head-callback' => 'twentyfifteen_header_style',
|
||||
) ) );
|
||||
}
|
||||
add_action( 'after_setup_theme', 'twentyfifteen_custom_header_setup' );
|
||||
|
||||
/**
|
||||
* Convert HEX to RGB.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param string $color The original color, in 3- or 6-digit hexadecimal form.
|
||||
* @return array Array containing RGB (red, green, and blue) values for the given
|
||||
* HEX code, empty array otherwise.
|
||||
*/
|
||||
function twentyfifteen_hex2rgb( $color ) {
|
||||
$color = trim( $color, '#' );
|
||||
|
||||
if ( strlen( $color ) == 3 ) {
|
||||
$r = hexdec( substr( $color, 0, 1 ).substr( $color, 0, 1 ) );
|
||||
$g = hexdec( substr( $color, 1, 1 ).substr( $color, 1, 1 ) );
|
||||
$b = hexdec( substr( $color, 2, 1 ).substr( $color, 2, 1 ) );
|
||||
} else if ( strlen( $color ) == 6 ) {
|
||||
$r = hexdec( substr( $color, 0, 2 ) );
|
||||
$g = hexdec( substr( $color, 2, 2 ) );
|
||||
$b = hexdec( substr( $color, 4, 2 ) );
|
||||
} else {
|
||||
return array();
|
||||
}
|
||||
|
||||
return array( 'red' => $r, 'green' => $g, 'blue' => $b );
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_header_style' ) ) :
|
||||
/**
|
||||
* Styles the header image and text displayed on the blog.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @see twentyfifteen_custom_header_setup()
|
||||
*/
|
||||
function twentyfifteen_header_style() {
|
||||
$header_image = get_header_image();
|
||||
|
||||
// If no custom options for text are set, let's bail.
|
||||
if ( empty( $header_image ) && display_header_text() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// If we get this far, we have custom styles. Let's do this.
|
||||
?>
|
||||
<style type="text/css" id="twentyfifteen-header-css">
|
||||
<?php
|
||||
// Short header for when there is no Custom Header and Header Text is hidden.
|
||||
if ( empty( $header_image ) && ! display_header_text() ) :
|
||||
?>
|
||||
.site-header {
|
||||
padding-top: 14px;
|
||||
padding-bottom: 14px;
|
||||
}
|
||||
|
||||
.site-branding {
|
||||
min-height: 42px;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 46.25em) {
|
||||
.site-header {
|
||||
padding-top: 21px;
|
||||
padding-bottom: 21px;
|
||||
}
|
||||
.site-branding {
|
||||
min-height: 56px;
|
||||
}
|
||||
}
|
||||
@media screen and (min-width: 55em) {
|
||||
.site-header {
|
||||
padding-top: 25px;
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
.site-branding {
|
||||
min-height: 62px;
|
||||
}
|
||||
}
|
||||
@media screen and (min-width: 59.6875em) {
|
||||
.site-header {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.site-branding {
|
||||
min-height: 0;
|
||||
}
|
||||
}
|
||||
<?php
|
||||
endif;
|
||||
|
||||
// Has a Custom Header been added?
|
||||
if ( ! empty( $header_image ) ) :
|
||||
?>
|
||||
.site-header {
|
||||
|
||||
/*
|
||||
* No shorthand so the Customizer can override individual properties.
|
||||
* @see https://core.trac.wordpress.org/ticket/31460
|
||||
*/
|
||||
background-image: url(<?php header_image(); ?>);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50% 50%;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 59.6875em) {
|
||||
body:before {
|
||||
|
||||
/*
|
||||
* No shorthand so the Customizer can override individual properties.
|
||||
* @see https://core.trac.wordpress.org/ticket/31460
|
||||
*/
|
||||
background-image: url(<?php header_image(); ?>);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 100% 50%;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
background: transparent;
|
||||
}
|
||||
}
|
||||
<?php
|
||||
endif;
|
||||
|
||||
// Has the text been hidden?
|
||||
if ( ! display_header_text() ) :
|
||||
?>
|
||||
.site-title,
|
||||
.site-description {
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
position: absolute;
|
||||
}
|
||||
<?php endif; ?>
|
||||
</style>
|
||||
<?php
|
||||
}
|
||||
endif; // twentyfifteen_header_style
|
||||
|
||||
/**
|
||||
* Enqueues front-end CSS for the header background color.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @see wp_add_inline_style()
|
||||
*/
|
||||
function twentyfifteen_header_background_color_css() {
|
||||
$color_scheme = twentyfifteen_get_color_scheme();
|
||||
$default_color = $color_scheme[1];
|
||||
$header_background_color = get_theme_mod( 'header_background_color', $default_color );
|
||||
|
||||
// Don't do anything if the current color is the default.
|
||||
if ( $header_background_color === $default_color ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$css = '
|
||||
/* Custom Header Background Color */
|
||||
body:before,
|
||||
.site-header {
|
||||
background-color: %1$s;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 59.6875em) {
|
||||
.site-header,
|
||||
.secondary {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.widget button,
|
||||
.widget input[type="button"],
|
||||
.widget input[type="reset"],
|
||||
.widget input[type="submit"],
|
||||
.widget_calendar tbody a,
|
||||
.widget_calendar tbody a:hover,
|
||||
.widget_calendar tbody a:focus {
|
||||
color: %1$s;
|
||||
}
|
||||
}
|
||||
';
|
||||
|
||||
wp_add_inline_style( 'twentyfifteen-style', sprintf( $css, $header_background_color ) );
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'twentyfifteen_header_background_color_css', 11 );
|
||||
|
||||
/**
|
||||
* Enqueues front-end CSS for the sidebar text color.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_sidebar_text_color_css() {
|
||||
$color_scheme = twentyfifteen_get_color_scheme();
|
||||
$default_color = $color_scheme[4];
|
||||
$sidebar_link_color = get_theme_mod( 'sidebar_textcolor', $default_color );
|
||||
|
||||
// Don't do anything if the current color is the default.
|
||||
if ( $sidebar_link_color === $default_color ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// If we get this far, we have custom styles. Let's do this.
|
||||
$sidebar_link_color_rgb = twentyfifteen_hex2rgb( $sidebar_link_color );
|
||||
$sidebar_text_color = vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.7)', $sidebar_link_color_rgb );
|
||||
$sidebar_border_color = vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.1)', $sidebar_link_color_rgb );
|
||||
$sidebar_border_focus_color = vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.3)', $sidebar_link_color_rgb );
|
||||
|
||||
$css = '
|
||||
/* Custom Sidebar Text Color */
|
||||
.site-title a,
|
||||
.site-description,
|
||||
.secondary-toggle:before {
|
||||
color: %1$s;
|
||||
}
|
||||
|
||||
.site-title a:hover,
|
||||
.site-title a:focus {
|
||||
color: %1$s; /* Fallback for IE7 and IE8 */
|
||||
color: %2$s;
|
||||
}
|
||||
|
||||
.secondary-toggle {
|
||||
border-color: %1$s; /* Fallback for IE7 and IE8 */
|
||||
border-color: %3$s;
|
||||
}
|
||||
|
||||
.secondary-toggle:hover,
|
||||
.secondary-toggle:focus {
|
||||
border-color: %1$s; /* Fallback for IE7 and IE8 */
|
||||
border-color: %4$s;
|
||||
}
|
||||
|
||||
.site-title a {
|
||||
outline-color: %1$s; /* Fallback for IE7 and IE8 */
|
||||
outline-color: %4$s;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 59.6875em) {
|
||||
.secondary a,
|
||||
.dropdown-toggle:after,
|
||||
.widget-title,
|
||||
.widget blockquote cite,
|
||||
.widget blockquote small {
|
||||
color: %1$s;
|
||||
}
|
||||
|
||||
.widget button,
|
||||
.widget input[type="button"],
|
||||
.widget input[type="reset"],
|
||||
.widget input[type="submit"],
|
||||
.widget_calendar tbody a {
|
||||
background-color: %1$s;
|
||||
}
|
||||
|
||||
.textwidget a {
|
||||
border-color: %1$s;
|
||||
}
|
||||
|
||||
.secondary a:hover,
|
||||
.secondary a:focus,
|
||||
.main-navigation .menu-item-description,
|
||||
.widget,
|
||||
.widget blockquote,
|
||||
.widget .wp-caption-text,
|
||||
.widget .gallery-caption {
|
||||
color: %2$s;
|
||||
}
|
||||
|
||||
.widget button:hover,
|
||||
.widget button:focus,
|
||||
.widget input[type="button"]:hover,
|
||||
.widget input[type="button"]:focus,
|
||||
.widget input[type="reset"]:hover,
|
||||
.widget input[type="reset"]:focus,
|
||||
.widget input[type="submit"]:hover,
|
||||
.widget input[type="submit"]:focus,
|
||||
.widget_calendar tbody a:hover,
|
||||
.widget_calendar tbody a:focus {
|
||||
background-color: %2$s;
|
||||
}
|
||||
|
||||
.widget blockquote {
|
||||
border-color: %2$s;
|
||||
}
|
||||
|
||||
.main-navigation ul,
|
||||
.main-navigation li,
|
||||
.secondary-toggle,
|
||||
.widget input,
|
||||
.widget textarea,
|
||||
.widget table,
|
||||
.widget th,
|
||||
.widget td,
|
||||
.widget pre,
|
||||
.widget li,
|
||||
.widget_categories .children,
|
||||
.widget_nav_menu .sub-menu,
|
||||
.widget_pages .children,
|
||||
.widget abbr[title] {
|
||||
border-color: %3$s;
|
||||
}
|
||||
|
||||
.dropdown-toggle:hover,
|
||||
.dropdown-toggle:focus,
|
||||
.widget hr {
|
||||
background-color: %3$s;
|
||||
}
|
||||
|
||||
.widget input:focus,
|
||||
.widget textarea:focus {
|
||||
border-color: %4$s;
|
||||
}
|
||||
|
||||
.sidebar a:focus,
|
||||
.dropdown-toggle:focus {
|
||||
outline-color: %4$s;
|
||||
}
|
||||
}
|
||||
';
|
||||
|
||||
wp_add_inline_style( 'twentyfifteen-style', sprintf( $css, $sidebar_link_color, $sidebar_text_color, $sidebar_border_color, $sidebar_border_focus_color ) );
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'twentyfifteen_sidebar_text_color_css', 11 );
|
773
twentyfifteen/inc/customizer.php
Normal file
773
twentyfifteen/inc/customizer.php
Normal file
|
@ -0,0 +1,773 @@
|
|||
<?php
|
||||
/**
|
||||
* Twenty Fifteen Customizer functionality
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* Add postMessage support for site title and description for the Customizer.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param WP_Customize_Manager $wp_customize Customizer object.
|
||||
*/
|
||||
function twentyfifteen_customize_register( $wp_customize ) {
|
||||
$color_scheme = twentyfifteen_get_color_scheme();
|
||||
|
||||
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
|
||||
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
|
||||
|
||||
if ( isset( $wp_customize->selective_refresh ) ) {
|
||||
$wp_customize->selective_refresh->add_partial( 'blogname', array(
|
||||
'selector' => '.site-title a',
|
||||
'container_inclusive' => false,
|
||||
'render_callback' => 'twentyfifteen_customize_partial_blogname',
|
||||
) );
|
||||
$wp_customize->selective_refresh->add_partial( 'blogdescription', array(
|
||||
'selector' => '.site-description',
|
||||
'container_inclusive' => false,
|
||||
'render_callback' => 'twentyfifteen_customize_partial_blogdescription',
|
||||
) );
|
||||
}
|
||||
|
||||
// Add color scheme setting and control.
|
||||
$wp_customize->add_setting( 'color_scheme', array(
|
||||
'default' => 'default',
|
||||
'sanitize_callback' => 'twentyfifteen_sanitize_color_scheme',
|
||||
'transport' => 'postMessage',
|
||||
) );
|
||||
|
||||
$wp_customize->add_control( 'color_scheme', array(
|
||||
'label' => __( 'Base Color Scheme', 'twentyfifteen' ),
|
||||
'section' => 'colors',
|
||||
'type' => 'select',
|
||||
'choices' => twentyfifteen_get_color_scheme_choices(),
|
||||
'priority' => 1,
|
||||
) );
|
||||
|
||||
// Add custom header and sidebar text color setting and control.
|
||||
$wp_customize->add_setting( 'sidebar_textcolor', array(
|
||||
'default' => $color_scheme[4],
|
||||
'sanitize_callback' => 'sanitize_hex_color',
|
||||
'transport' => 'postMessage',
|
||||
) );
|
||||
|
||||
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'sidebar_textcolor', array(
|
||||
'label' => __( 'Header and Sidebar Text Color', 'twentyfifteen' ),
|
||||
'description' => __( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' ),
|
||||
'section' => 'colors',
|
||||
) ) );
|
||||
|
||||
// Remove the core header textcolor control, as it shares the sidebar text color.
|
||||
$wp_customize->remove_control( 'header_textcolor' );
|
||||
|
||||
// Add custom header and sidebar background color setting and control.
|
||||
$wp_customize->add_setting( 'header_background_color', array(
|
||||
'default' => $color_scheme[1],
|
||||
'sanitize_callback' => 'sanitize_hex_color',
|
||||
'transport' => 'postMessage',
|
||||
) );
|
||||
|
||||
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header_background_color', array(
|
||||
'label' => __( 'Header and Sidebar Background Color', 'twentyfifteen' ),
|
||||
'description' => __( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' ),
|
||||
'section' => 'colors',
|
||||
) ) );
|
||||
|
||||
// Add an additional description to the header image section.
|
||||
$wp_customize->get_section( 'header_image' )->description = __( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' );
|
||||
}
|
||||
add_action( 'customize_register', 'twentyfifteen_customize_register', 11 );
|
||||
|
||||
/**
|
||||
* Render the site title for the selective refresh partial.
|
||||
*
|
||||
* @since Twenty Fifteen 1.5
|
||||
* @see twentyfifteen_customize_register()
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function twentyfifteen_customize_partial_blogname() {
|
||||
bloginfo( 'name' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the site tagline for the selective refresh partial.
|
||||
*
|
||||
* @since Twenty Fifteen 1.5
|
||||
* @see twentyfifteen_customize_register()
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function twentyfifteen_customize_partial_blogdescription() {
|
||||
bloginfo( 'description' );
|
||||
}
|
||||
|
||||
/**
|
||||
* Register color schemes for Twenty Fifteen.
|
||||
*
|
||||
* Can be filtered with {@see 'twentyfifteen_color_schemes'}.
|
||||
*
|
||||
* The order of colors in a colors array:
|
||||
* 1. Main Background Color.
|
||||
* 2. Sidebar Background Color.
|
||||
* 3. Box Background Color.
|
||||
* 4. Main Text and Link Color.
|
||||
* 5. Sidebar Text and Link Color.
|
||||
* 6. Meta Box Background Color.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @return array An associative array of color scheme options.
|
||||
*/
|
||||
function twentyfifteen_get_color_schemes() {
|
||||
/**
|
||||
* Filter the color schemes registered for use with Twenty Fifteen.
|
||||
*
|
||||
* The default schemes include 'default', 'dark', 'yellow', 'pink', 'purple', and 'blue'.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param array $schemes {
|
||||
* Associative array of color schemes data.
|
||||
*
|
||||
* @type array $slug {
|
||||
* Associative array of information for setting up the color scheme.
|
||||
*
|
||||
* @type string $label Color scheme label.
|
||||
* @type array $colors HEX codes for default colors prepended with a hash symbol ('#').
|
||||
* Colors are defined in the following order: Main background, sidebar
|
||||
* background, box background, main text and link, sidebar text and link,
|
||||
* meta box background.
|
||||
* }
|
||||
* }
|
||||
*/
|
||||
return apply_filters( 'twentyfifteen_color_schemes', array(
|
||||
'default' => array(
|
||||
'label' => __( 'Default', 'twentyfifteen' ),
|
||||
'colors' => array(
|
||||
'#f1f1f1',
|
||||
'#ffffff',
|
||||
'#ffffff',
|
||||
'#333333',
|
||||
'#333333',
|
||||
'#f7f7f7',
|
||||
),
|
||||
),
|
||||
'dark' => array(
|
||||
'label' => __( 'Dark', 'twentyfifteen' ),
|
||||
'colors' => array(
|
||||
'#111111',
|
||||
'#202020',
|
||||
'#202020',
|
||||
'#bebebe',
|
||||
'#bebebe',
|
||||
'#1b1b1b',
|
||||
),
|
||||
),
|
||||
'yellow' => array(
|
||||
'label' => __( 'Yellow', 'twentyfifteen' ),
|
||||
'colors' => array(
|
||||
'#f4ca16',
|
||||
'#ffdf00',
|
||||
'#ffffff',
|
||||
'#111111',
|
||||
'#111111',
|
||||
'#f1f1f1',
|
||||
),
|
||||
),
|
||||
'pink' => array(
|
||||
'label' => __( 'Pink', 'twentyfifteen' ),
|
||||
'colors' => array(
|
||||
'#ffe5d1',
|
||||
'#e53b51',
|
||||
'#ffffff',
|
||||
'#352712',
|
||||
'#ffffff',
|
||||
'#f1f1f1',
|
||||
),
|
||||
),
|
||||
'purple' => array(
|
||||
'label' => __( 'Purple', 'twentyfifteen' ),
|
||||
'colors' => array(
|
||||
'#674970',
|
||||
'#2e2256',
|
||||
'#ffffff',
|
||||
'#2e2256',
|
||||
'#ffffff',
|
||||
'#f1f1f1',
|
||||
),
|
||||
),
|
||||
'blue' => array(
|
||||
'label' => __( 'Blue', 'twentyfifteen' ),
|
||||
'colors' => array(
|
||||
'#e9f2f9',
|
||||
'#55c3dc',
|
||||
'#ffffff',
|
||||
'#22313f',
|
||||
'#ffffff',
|
||||
'#f1f1f1',
|
||||
),
|
||||
),
|
||||
) );
|
||||
}
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_get_color_scheme' ) ) :
|
||||
/**
|
||||
* Get the current Twenty Fifteen color scheme.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @return array An associative array of either the current or default color scheme hex values.
|
||||
*/
|
||||
function twentyfifteen_get_color_scheme() {
|
||||
$color_scheme_option = get_theme_mod( 'color_scheme', 'default' );
|
||||
$color_schemes = twentyfifteen_get_color_schemes();
|
||||
|
||||
if ( array_key_exists( $color_scheme_option, $color_schemes ) ) {
|
||||
return $color_schemes[ $color_scheme_option ]['colors'];
|
||||
}
|
||||
|
||||
return $color_schemes['default']['colors'];
|
||||
}
|
||||
endif; // twentyfifteen_get_color_scheme
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_get_color_scheme_choices' ) ) :
|
||||
/**
|
||||
* Returns an array of color scheme choices registered for Twenty Fifteen.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @return array Array of color schemes.
|
||||
*/
|
||||
function twentyfifteen_get_color_scheme_choices() {
|
||||
$color_schemes = twentyfifteen_get_color_schemes();
|
||||
$color_scheme_control_options = array();
|
||||
|
||||
foreach ( $color_schemes as $color_scheme => $value ) {
|
||||
$color_scheme_control_options[ $color_scheme ] = $value['label'];
|
||||
}
|
||||
|
||||
return $color_scheme_control_options;
|
||||
}
|
||||
endif; // twentyfifteen_get_color_scheme_choices
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_sanitize_color_scheme' ) ) :
|
||||
/**
|
||||
* Sanitization callback for color schemes.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param string $value Color scheme name value.
|
||||
* @return string Color scheme name.
|
||||
*/
|
||||
function twentyfifteen_sanitize_color_scheme( $value ) {
|
||||
$color_schemes = twentyfifteen_get_color_scheme_choices();
|
||||
|
||||
if ( ! array_key_exists( $value, $color_schemes ) ) {
|
||||
$value = 'default';
|
||||
}
|
||||
|
||||
return $value;
|
||||
}
|
||||
endif; // twentyfifteen_sanitize_color_scheme
|
||||
|
||||
/**
|
||||
* Enqueues front-end CSS for color scheme.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @see wp_add_inline_style()
|
||||
*/
|
||||
function twentyfifteen_color_scheme_css() {
|
||||
$color_scheme_option = get_theme_mod( 'color_scheme', 'default' );
|
||||
|
||||
// Don't do anything if the default color scheme is selected.
|
||||
if ( 'default' === $color_scheme_option ) {
|
||||
return;
|
||||
}
|
||||
|
||||
$color_scheme = twentyfifteen_get_color_scheme();
|
||||
|
||||
// Convert main and sidebar text hex color to rgba.
|
||||
$color_textcolor_rgb = twentyfifteen_hex2rgb( $color_scheme[3] );
|
||||
$color_sidebar_textcolor_rgb = twentyfifteen_hex2rgb( $color_scheme[4] );
|
||||
$colors = array(
|
||||
'background_color' => $color_scheme[0],
|
||||
'header_background_color' => $color_scheme[1],
|
||||
'box_background_color' => $color_scheme[2],
|
||||
'textcolor' => $color_scheme[3],
|
||||
'secondary_textcolor' => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.7)', $color_textcolor_rgb ),
|
||||
'border_color' => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.1)', $color_textcolor_rgb ),
|
||||
'border_focus_color' => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.3)', $color_textcolor_rgb ),
|
||||
'sidebar_textcolor' => $color_scheme[4],
|
||||
'sidebar_border_color' => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.1)', $color_sidebar_textcolor_rgb ),
|
||||
'sidebar_border_focus_color' => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.3)', $color_sidebar_textcolor_rgb ),
|
||||
'secondary_sidebar_textcolor' => vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.7)', $color_sidebar_textcolor_rgb ),
|
||||
'meta_box_background_color' => $color_scheme[5],
|
||||
);
|
||||
|
||||
$color_scheme_css = twentyfifteen_get_color_scheme_css( $colors );
|
||||
|
||||
wp_add_inline_style( 'twentyfifteen-style', $color_scheme_css );
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'twentyfifteen_color_scheme_css' );
|
||||
|
||||
/**
|
||||
* Binds JS listener to make Customizer color_scheme control.
|
||||
*
|
||||
* Passes color scheme data as colorScheme global.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_customize_control_js() {
|
||||
wp_enqueue_script( 'color-scheme-control', get_template_directory_uri() . '/js/color-scheme-control.js', array( 'customize-controls', 'iris', 'underscore', 'wp-util' ), '20141216', true );
|
||||
wp_localize_script( 'color-scheme-control', 'colorScheme', twentyfifteen_get_color_schemes() );
|
||||
}
|
||||
add_action( 'customize_controls_enqueue_scripts', 'twentyfifteen_customize_control_js' );
|
||||
|
||||
/**
|
||||
* Binds JS handlers to make the Customizer preview reload changes asynchronously.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_customize_preview_js() {
|
||||
wp_enqueue_script( 'twentyfifteen-customize-preview', get_template_directory_uri() . '/js/customize-preview.js', array( 'customize-preview' ), '20141216', true );
|
||||
}
|
||||
add_action( 'customize_preview_init', 'twentyfifteen_customize_preview_js' );
|
||||
|
||||
/**
|
||||
* Returns CSS for the color schemes.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @param array $colors Color scheme colors.
|
||||
* @return string Color scheme CSS.
|
||||
*/
|
||||
function twentyfifteen_get_color_scheme_css( $colors ) {
|
||||
$colors = wp_parse_args( $colors, array(
|
||||
'background_color' => '',
|
||||
'header_background_color' => '',
|
||||
'box_background_color' => '',
|
||||
'textcolor' => '',
|
||||
'secondary_textcolor' => '',
|
||||
'border_color' => '',
|
||||
'border_focus_color' => '',
|
||||
'sidebar_textcolor' => '',
|
||||
'sidebar_border_color' => '',
|
||||
'sidebar_border_focus_color' => '',
|
||||
'secondary_sidebar_textcolor' => '',
|
||||
'meta_box_background_color' => '',
|
||||
) );
|
||||
|
||||
$css = <<<CSS
|
||||
/* Color Scheme */
|
||||
|
||||
/* Background Color */
|
||||
body {
|
||||
background-color: {$colors['background_color']};
|
||||
}
|
||||
|
||||
/* Sidebar Background Color */
|
||||
body:before,
|
||||
.site-header {
|
||||
background-color: {$colors['header_background_color']};
|
||||
}
|
||||
|
||||
/* Box Background Color */
|
||||
.post-navigation,
|
||||
.pagination,
|
||||
.secondary,
|
||||
.site-footer,
|
||||
.hentry,
|
||||
.page-header,
|
||||
.page-content,
|
||||
.comments-area,
|
||||
.widecolumn {
|
||||
background-color: {$colors['box_background_color']};
|
||||
}
|
||||
|
||||
/* Box Background Color */
|
||||
button,
|
||||
input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"],
|
||||
.pagination .prev,
|
||||
.pagination .next,
|
||||
.widget_calendar tbody a,
|
||||
.widget_calendar tbody a:hover,
|
||||
.widget_calendar tbody a:focus,
|
||||
.page-links a,
|
||||
.page-links a:hover,
|
||||
.page-links a:focus,
|
||||
.sticky-post {
|
||||
color: {$colors['box_background_color']};
|
||||
}
|
||||
|
||||
/* Main Text Color */
|
||||
button,
|
||||
input[type="button"],
|
||||
input[type="reset"],
|
||||
input[type="submit"],
|
||||
.pagination .prev,
|
||||
.pagination .next,
|
||||
.widget_calendar tbody a,
|
||||
.page-links a,
|
||||
.sticky-post {
|
||||
background-color: {$colors['textcolor']};
|
||||
}
|
||||
|
||||
/* Main Text Color */
|
||||
body,
|
||||
blockquote cite,
|
||||
blockquote small,
|
||||
a,
|
||||
.dropdown-toggle:after,
|
||||
.image-navigation a:hover,
|
||||
.image-navigation a:focus,
|
||||
.comment-navigation a:hover,
|
||||
.comment-navigation a:focus,
|
||||
.widget-title,
|
||||
.entry-footer a:hover,
|
||||
.entry-footer a:focus,
|
||||
.comment-metadata a:hover,
|
||||
.comment-metadata a:focus,
|
||||
.pingback .edit-link a:hover,
|
||||
.pingback .edit-link a:focus,
|
||||
.comment-list .reply a:hover,
|
||||
.comment-list .reply a:focus,
|
||||
.site-info a:hover,
|
||||
.site-info a:focus {
|
||||
color: {$colors['textcolor']};
|
||||
}
|
||||
|
||||
/* Main Text Color */
|
||||
.entry-content a,
|
||||
.entry-summary a,
|
||||
.page-content a,
|
||||
.comment-content a,
|
||||
.pingback .comment-body > a,
|
||||
.author-description a,
|
||||
.taxonomy-description a,
|
||||
.textwidget a,
|
||||
.entry-footer a:hover,
|
||||
.comment-metadata a:hover,
|
||||
.pingback .edit-link a:hover,
|
||||
.comment-list .reply a:hover,
|
||||
.site-info a:hover {
|
||||
border-color: {$colors['textcolor']};
|
||||
}
|
||||
|
||||
/* Secondary Text Color */
|
||||
button:hover,
|
||||
button:focus,
|
||||
input[type="button"]:hover,
|
||||
input[type="button"]:focus,
|
||||
input[type="reset"]:hover,
|
||||
input[type="reset"]:focus,
|
||||
input[type="submit"]:hover,
|
||||
input[type="submit"]:focus,
|
||||
.pagination .prev:hover,
|
||||
.pagination .prev:focus,
|
||||
.pagination .next:hover,
|
||||
.pagination .next:focus,
|
||||
.widget_calendar tbody a:hover,
|
||||
.widget_calendar tbody a:focus,
|
||||
.page-links a:hover,
|
||||
.page-links a:focus {
|
||||
background-color: {$colors['textcolor']}; /* Fallback for IE7 and IE8 */
|
||||
background-color: {$colors['secondary_textcolor']};
|
||||
}
|
||||
|
||||
/* Secondary Text Color */
|
||||
blockquote,
|
||||
a:hover,
|
||||
a:focus,
|
||||
.main-navigation .menu-item-description,
|
||||
.post-navigation .meta-nav,
|
||||
.post-navigation a:hover .post-title,
|
||||
.post-navigation a:focus .post-title,
|
||||
.image-navigation,
|
||||
.image-navigation a,
|
||||
.comment-navigation,
|
||||
.comment-navigation a,
|
||||
.widget,
|
||||
.author-heading,
|
||||
.entry-footer,
|
||||
.entry-footer a,
|
||||
.taxonomy-description,
|
||||
.page-links > .page-links-title,
|
||||
.entry-caption,
|
||||
.comment-author,
|
||||
.comment-metadata,
|
||||
.comment-metadata a,
|
||||
.pingback .edit-link,
|
||||
.pingback .edit-link a,
|
||||
.post-password-form label,
|
||||
.comment-form label,
|
||||
.comment-notes,
|
||||
.comment-awaiting-moderation,
|
||||
.logged-in-as,
|
||||
.form-allowed-tags,
|
||||
.no-comments,
|
||||
.site-info,
|
||||
.site-info a,
|
||||
.wp-caption-text,
|
||||
.gallery-caption,
|
||||
.comment-list .reply a,
|
||||
.widecolumn label,
|
||||
.widecolumn .mu_register label {
|
||||
color: {$colors['textcolor']}; /* Fallback for IE7 and IE8 */
|
||||
color: {$colors['secondary_textcolor']};
|
||||
}
|
||||
|
||||
/* Secondary Text Color */
|
||||
blockquote,
|
||||
.logged-in-as a:hover,
|
||||
.comment-author a:hover {
|
||||
border-color: {$colors['textcolor']}; /* Fallback for IE7 and IE8 */
|
||||
border-color: {$colors['secondary_textcolor']};
|
||||
}
|
||||
|
||||
/* Border Color */
|
||||
hr,
|
||||
.dropdown-toggle:hover,
|
||||
.dropdown-toggle:focus {
|
||||
background-color: {$colors['textcolor']}; /* Fallback for IE7 and IE8 */
|
||||
background-color: {$colors['border_color']};
|
||||
}
|
||||
|
||||
/* Border Color */
|
||||
pre,
|
||||
abbr[title],
|
||||
table,
|
||||
th,
|
||||
td,
|
||||
input,
|
||||
textarea,
|
||||
.main-navigation ul,
|
||||
.main-navigation li,
|
||||
.post-navigation,
|
||||
.post-navigation div + div,
|
||||
.pagination,
|
||||
.comment-navigation,
|
||||
.widget li,
|
||||
.widget_categories .children,
|
||||
.widget_nav_menu .sub-menu,
|
||||
.widget_pages .children,
|
||||
.site-header,
|
||||
.site-footer,
|
||||
.hentry + .hentry,
|
||||
.author-info,
|
||||
.entry-content .page-links a,
|
||||
.page-links > span,
|
||||
.page-header,
|
||||
.comments-area,
|
||||
.comment-list + .comment-respond,
|
||||
.comment-list article,
|
||||
.comment-list .pingback,
|
||||
.comment-list .trackback,
|
||||
.comment-list .reply a,
|
||||
.no-comments {
|
||||
border-color: {$colors['textcolor']}; /* Fallback for IE7 and IE8 */
|
||||
border-color: {$colors['border_color']};
|
||||
}
|
||||
|
||||
/* Border Focus Color */
|
||||
a:focus,
|
||||
button:focus,
|
||||
input:focus {
|
||||
outline-color: {$colors['textcolor']}; /* Fallback for IE7 and IE8 */
|
||||
outline-color: {$colors['border_focus_color']};
|
||||
}
|
||||
|
||||
input:focus,
|
||||
textarea:focus {
|
||||
border-color: {$colors['textcolor']}; /* Fallback for IE7 and IE8 */
|
||||
border-color: {$colors['border_focus_color']};
|
||||
}
|
||||
|
||||
/* Sidebar Link Color */
|
||||
.secondary-toggle:before {
|
||||
color: {$colors['sidebar_textcolor']};
|
||||
}
|
||||
|
||||
.site-title a,
|
||||
.site-description {
|
||||
color: {$colors['sidebar_textcolor']};
|
||||
}
|
||||
|
||||
/* Sidebar Text Color */
|
||||
.site-title a:hover,
|
||||
.site-title a:focus {
|
||||
color: {$colors['secondary_sidebar_textcolor']};
|
||||
}
|
||||
|
||||
/* Sidebar Border Color */
|
||||
.secondary-toggle {
|
||||
border-color: {$colors['sidebar_textcolor']}; /* Fallback for IE7 and IE8 */
|
||||
border-color: {$colors['sidebar_border_color']};
|
||||
}
|
||||
|
||||
/* Sidebar Border Focus Color */
|
||||
.secondary-toggle:hover,
|
||||
.secondary-toggle:focus {
|
||||
border-color: {$colors['sidebar_textcolor']}; /* Fallback for IE7 and IE8 */
|
||||
border-color: {$colors['sidebar_border_focus_color']};
|
||||
}
|
||||
|
||||
.site-title a {
|
||||
outline-color: {$colors['sidebar_textcolor']}; /* Fallback for IE7 and IE8 */
|
||||
outline-color: {$colors['sidebar_border_focus_color']};
|
||||
}
|
||||
|
||||
/* Meta Background Color */
|
||||
.entry-footer {
|
||||
background-color: {$colors['meta_box_background_color']};
|
||||
}
|
||||
|
||||
@media screen and (min-width: 38.75em) {
|
||||
/* Main Text Color */
|
||||
.page-header {
|
||||
border-color: {$colors['textcolor']};
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 59.6875em) {
|
||||
/* Make sure its transparent on desktop */
|
||||
.site-header,
|
||||
.secondary {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/* Sidebar Background Color */
|
||||
.widget button,
|
||||
.widget input[type="button"],
|
||||
.widget input[type="reset"],
|
||||
.widget input[type="submit"],
|
||||
.widget_calendar tbody a,
|
||||
.widget_calendar tbody a:hover,
|
||||
.widget_calendar tbody a:focus {
|
||||
color: {$colors['header_background_color']};
|
||||
}
|
||||
|
||||
/* Sidebar Link Color */
|
||||
.secondary a,
|
||||
.dropdown-toggle:after,
|
||||
.widget-title,
|
||||
.widget blockquote cite,
|
||||
.widget blockquote small {
|
||||
color: {$colors['sidebar_textcolor']};
|
||||
}
|
||||
|
||||
.widget button,
|
||||
.widget input[type="button"],
|
||||
.widget input[type="reset"],
|
||||
.widget input[type="submit"],
|
||||
.widget_calendar tbody a {
|
||||
background-color: {$colors['sidebar_textcolor']};
|
||||
}
|
||||
|
||||
.textwidget a {
|
||||
border-color: {$colors['sidebar_textcolor']};
|
||||
}
|
||||
|
||||
/* Sidebar Text Color */
|
||||
.secondary a:hover,
|
||||
.secondary a:focus,
|
||||
.main-navigation .menu-item-description,
|
||||
.widget,
|
||||
.widget blockquote,
|
||||
.widget .wp-caption-text,
|
||||
.widget .gallery-caption {
|
||||
color: {$colors['secondary_sidebar_textcolor']};
|
||||
}
|
||||
|
||||
.widget button:hover,
|
||||
.widget button:focus,
|
||||
.widget input[type="button"]:hover,
|
||||
.widget input[type="button"]:focus,
|
||||
.widget input[type="reset"]:hover,
|
||||
.widget input[type="reset"]:focus,
|
||||
.widget input[type="submit"]:hover,
|
||||
.widget input[type="submit"]:focus,
|
||||
.widget_calendar tbody a:hover,
|
||||
.widget_calendar tbody a:focus {
|
||||
background-color: {$colors['secondary_sidebar_textcolor']};
|
||||
}
|
||||
|
||||
.widget blockquote {
|
||||
border-color: {$colors['secondary_sidebar_textcolor']};
|
||||
}
|
||||
|
||||
/* Sidebar Border Color */
|
||||
.main-navigation ul,
|
||||
.main-navigation li,
|
||||
.widget input,
|
||||
.widget textarea,
|
||||
.widget table,
|
||||
.widget th,
|
||||
.widget td,
|
||||
.widget pre,
|
||||
.widget li,
|
||||
.widget_categories .children,
|
||||
.widget_nav_menu .sub-menu,
|
||||
.widget_pages .children,
|
||||
.widget abbr[title] {
|
||||
border-color: {$colors['sidebar_border_color']};
|
||||
}
|
||||
|
||||
.dropdown-toggle:hover,
|
||||
.dropdown-toggle:focus,
|
||||
.widget hr {
|
||||
background-color: {$colors['sidebar_border_color']};
|
||||
}
|
||||
|
||||
.widget input:focus,
|
||||
.widget textarea:focus {
|
||||
border-color: {$colors['sidebar_border_focus_color']};
|
||||
}
|
||||
|
||||
.sidebar a:focus,
|
||||
.dropdown-toggle:focus {
|
||||
outline-color: {$colors['sidebar_border_focus_color']};
|
||||
}
|
||||
}
|
||||
CSS;
|
||||
|
||||
return $css;
|
||||
}
|
||||
|
||||
/**
|
||||
* Output an Underscore template for generating CSS for the color scheme.
|
||||
*
|
||||
* The template generates the css dynamically for instant display in the Customizer
|
||||
* preview.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_color_scheme_css_template() {
|
||||
$colors = array(
|
||||
'background_color' => '{{ data.background_color }}',
|
||||
'header_background_color' => '{{ data.header_background_color }}',
|
||||
'box_background_color' => '{{ data.box_background_color }}',
|
||||
'textcolor' => '{{ data.textcolor }}',
|
||||
'secondary_textcolor' => '{{ data.secondary_textcolor }}',
|
||||
'border_color' => '{{ data.border_color }}',
|
||||
'border_focus_color' => '{{ data.border_focus_color }}',
|
||||
'sidebar_textcolor' => '{{ data.sidebar_textcolor }}',
|
||||
'sidebar_border_color' => '{{ data.sidebar_border_color }}',
|
||||
'sidebar_border_focus_color' => '{{ data.sidebar_border_focus_color }}',
|
||||
'secondary_sidebar_textcolor' => '{{ data.secondary_sidebar_textcolor }}',
|
||||
'meta_box_background_color' => '{{ data.meta_box_background_color }}',
|
||||
);
|
||||
?>
|
||||
<script type="text/html" id="tmpl-twentyfifteen-color-scheme">
|
||||
<?php echo twentyfifteen_get_color_scheme_css( $colors ); ?>
|
||||
</script>
|
||||
<?php
|
||||
}
|
||||
add_action( 'customize_controls_print_footer_scripts', 'twentyfifteen_color_scheme_css_template' );
|
76
twentyfifteen/inc/headstart/en.json
Normal file
76
twentyfifteen/inc/headstart/en.json
Normal file
File diff suppressed because one or more lines are too long
1867
twentyfifteen/inc/jetpack-fonts.php
Normal file
1867
twentyfifteen/inc/jetpack-fonts.php
Normal file
File diff suppressed because it is too large
Load diff
243
twentyfifteen/inc/template-tags.php
Normal file
243
twentyfifteen/inc/template-tags.php
Normal file
|
@ -0,0 +1,243 @@
|
|||
<?php
|
||||
/**
|
||||
* Custom template tags for Twenty Fifteen
|
||||
*
|
||||
* Eventually, some of the functionality here could be replaced by core features.
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_comment_nav' ) ) :
|
||||
/**
|
||||
* Display navigation to next/previous comments when applicable.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_comment_nav() {
|
||||
// Are there comments to navigate through?
|
||||
if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :
|
||||
?>
|
||||
<nav class="navigation comment-navigation" role="navigation">
|
||||
<h2 class="screen-reader-text"><?php _e( 'Comment navigation', 'twentyfifteen' ); ?></h2>
|
||||
<div class="nav-links">
|
||||
<?php
|
||||
if ( $prev_link = get_previous_comments_link( __( 'Older Comments', 'twentyfifteen' ) ) ) :
|
||||
printf( '<div class="nav-previous">%s</div>', $prev_link );
|
||||
endif;
|
||||
|
||||
if ( $next_link = get_next_comments_link( __( 'Newer Comments', 'twentyfifteen' ) ) ) :
|
||||
printf( '<div class="nav-next">%s</div>', $next_link );
|
||||
endif;
|
||||
?>
|
||||
</div><!-- .nav-links -->
|
||||
</nav><!-- .comment-navigation -->
|
||||
<?php
|
||||
endif;
|
||||
}
|
||||
endif;
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_entry_meta' ) ) :
|
||||
/**
|
||||
* Prints HTML with meta information for the categories, tags.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_entry_meta() {
|
||||
if ( is_sticky() && is_home() && ! is_paged() ) {
|
||||
printf( '<span class="sticky-post">%s</span>', __( 'Featured', 'twentyfifteen' ) );
|
||||
}
|
||||
|
||||
$format = get_post_format();
|
||||
if ( current_theme_supports( 'post-formats', $format ) ) {
|
||||
printf( '<span class="entry-format">%1$s<a href="%2$s">%3$s</a></span>',
|
||||
sprintf( '<span class="screen-reader-text">%s </span>', _x( 'Format', 'Used before post format.', 'twentyfifteen' ) ),
|
||||
esc_url( get_post_format_link( $format ) ),
|
||||
get_post_format_string( $format )
|
||||
);
|
||||
}
|
||||
|
||||
if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) ) {
|
||||
$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
|
||||
|
||||
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
|
||||
$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
|
||||
}
|
||||
|
||||
$time_string = sprintf( $time_string,
|
||||
esc_attr( get_the_date( 'c' ) ),
|
||||
get_the_date(),
|
||||
esc_attr( get_the_modified_date( 'c' ) ),
|
||||
get_the_modified_date()
|
||||
);
|
||||
|
||||
printf( '<span class="posted-on"><span class="screen-reader-text">%1$s </span><a href="%2$s" rel="bookmark">%3$s</a></span>',
|
||||
_x( 'Posted on', 'Used before publish date.', 'twentyfifteen' ),
|
||||
esc_url( get_permalink() ),
|
||||
$time_string
|
||||
);
|
||||
}
|
||||
|
||||
if ( 'post' == get_post_type() ) {
|
||||
if ( is_singular() || is_multi_author() ) {
|
||||
printf( '<span class="byline"><span class="author vcard"><span class="screen-reader-text">%1$s </span><a class="url fn n" href="%2$s">%3$s</a></span></span>',
|
||||
_x( 'Author', 'Used before post author name.', 'twentyfifteen' ),
|
||||
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
|
||||
get_the_author()
|
||||
);
|
||||
}
|
||||
|
||||
$categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'twentyfifteen' ) );
|
||||
if ( $categories_list && twentyfifteen_categorized_blog() ) {
|
||||
printf( '<span class="cat-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
|
||||
_x( 'Categories', 'Used before category names.', 'twentyfifteen' ),
|
||||
$categories_list
|
||||
);
|
||||
}
|
||||
|
||||
$tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'twentyfifteen' ) );
|
||||
if ( $tags_list && ! is_wp_error( $tags_list ) ) {
|
||||
printf( '<span class="tags-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
|
||||
_x( 'Tags', 'Used before tag names.', 'twentyfifteen' ),
|
||||
$tags_list
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if ( is_attachment() && wp_attachment_is_image() ) {
|
||||
// Retrieve attachment metadata.
|
||||
$metadata = wp_get_attachment_metadata();
|
||||
|
||||
printf( '<span class="full-size-link"><span class="screen-reader-text">%1$s </span><a href="%2$s">%3$s × %4$s</a></span>',
|
||||
_x( 'Full size', 'Used before full size attachment link.', 'twentyfifteen' ),
|
||||
esc_url( wp_get_attachment_url() ),
|
||||
$metadata['width'],
|
||||
$metadata['height']
|
||||
);
|
||||
}
|
||||
|
||||
if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
|
||||
echo '<span class="comments-link">';
|
||||
/* translators: %s: post title */
|
||||
comments_popup_link( sprintf( __( 'Leave a comment<span class="screen-reader-text"> on %s</span>', 'twentyfifteen' ), get_the_title() ) );
|
||||
echo '</span>';
|
||||
}
|
||||
}
|
||||
endif;
|
||||
|
||||
/**
|
||||
* Determine whether blog/site has more than one category.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @return bool True of there is more than one category, false otherwise.
|
||||
*/
|
||||
function twentyfifteen_categorized_blog() {
|
||||
if ( false === ( $all_the_cool_cats = get_transient( 'twentyfifteen_categories' ) ) ) {
|
||||
// Create an array of all the categories that are attached to posts.
|
||||
$all_the_cool_cats = get_categories( array(
|
||||
'fields' => 'ids',
|
||||
'hide_empty' => 1,
|
||||
|
||||
// We only need to know if there is more than one category.
|
||||
'number' => 2,
|
||||
) );
|
||||
|
||||
// Count the number of categories that are attached to the posts.
|
||||
$all_the_cool_cats = count( $all_the_cool_cats );
|
||||
|
||||
set_transient( 'twentyfifteen_categories', $all_the_cool_cats );
|
||||
}
|
||||
|
||||
if ( $all_the_cool_cats > 1 || is_preview() ) {
|
||||
// This blog has more than 1 category so twentyfifteen_categorized_blog should return true.
|
||||
return true;
|
||||
} else {
|
||||
// This blog has only 1 category so twentyfifteen_categorized_blog should return false.
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Flush out the transients used in {@see twentyfifteen_categorized_blog()}.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_category_transient_flusher() {
|
||||
// Like, beat it. Dig?
|
||||
delete_transient( 'twentyfifteen_categories' );
|
||||
}
|
||||
add_action( 'edit_category', 'twentyfifteen_category_transient_flusher' );
|
||||
add_action( 'save_post', 'twentyfifteen_category_transient_flusher' );
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_post_thumbnail' ) ) :
|
||||
/**
|
||||
* Display an optional post thumbnail.
|
||||
*
|
||||
* Wraps the post thumbnail in an anchor element on index views, or a div
|
||||
* element when on single views.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
function twentyfifteen_post_thumbnail() {
|
||||
if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ( is_singular() ) :
|
||||
?>
|
||||
|
||||
<div class="post-thumbnail">
|
||||
<?php the_post_thumbnail(); ?>
|
||||
</div><!-- .post-thumbnail -->
|
||||
|
||||
<?php else : ?>
|
||||
|
||||
<a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true">
|
||||
<?php
|
||||
the_post_thumbnail( 'post-thumbnail', array( 'alt' => get_the_title() ) );
|
||||
?>
|
||||
</a>
|
||||
|
||||
<?php endif; // End is_singular()
|
||||
}
|
||||
endif;
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_get_link_url' ) ) :
|
||||
/**
|
||||
* Return the post URL.
|
||||
*
|
||||
* Falls back to the post permalink if no URL is found in the post.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @see get_url_in_content()
|
||||
*
|
||||
* @return string The Link format URL.
|
||||
*/
|
||||
function twentyfifteen_get_link_url() {
|
||||
$has_url = get_url_in_content( get_the_content() );
|
||||
|
||||
return $has_url ? $has_url : apply_filters( 'the_permalink', get_permalink() );
|
||||
}
|
||||
endif;
|
||||
|
||||
if ( ! function_exists( 'twentyfifteen_excerpt_more' ) && ! is_admin() ) :
|
||||
/**
|
||||
* Replaces "[...]" (appended to automatically generated excerpts) with ... and a 'Continue reading' link.
|
||||
*
|
||||
* @since Twenty Fifteen 1.0
|
||||
*
|
||||
* @return string 'Continue reading' link prepended with an ellipsis.
|
||||
*/
|
||||
function twentyfifteen_excerpt_more( $more ) {
|
||||
$link = sprintf( '<a href="%1$s" class="more-link">%2$s</a>',
|
||||
esc_url( get_permalink( get_the_ID() ) ),
|
||||
/* translators: %s: Name of current post */
|
||||
sprintf( __( 'Continue reading %s', 'twentyfifteen' ), '<span class="screen-reader-text">' . get_the_title( get_the_ID() ) . '</span>' )
|
||||
);
|
||||
return ' … ' . $link;
|
||||
}
|
||||
add_filter( 'excerpt_more', 'twentyfifteen_excerpt_more' );
|
||||
endif;
|
305
twentyfifteen/inc/wpcom-colors.php
Normal file
305
twentyfifteen/inc/wpcom-colors.php
Normal file
|
@ -0,0 +1,305 @@
|
|||
<?php
|
||||
// Main Background Color
|
||||
add_color_rule( 'bg', '#f1f1f1', array(
|
||||
// Background
|
||||
array(
|
||||
'body', 'background-color',
|
||||
),
|
||||
),
|
||||
__( 'Background', 'twentyfifteen' ) );
|
||||
|
||||
|
||||
// Header and Sidebar Background Color
|
||||
add_color_rule( 'txt', '#ffffff', array(
|
||||
// Background
|
||||
array(
|
||||
'body:before,
|
||||
.small-screen .site-header', 'background-color'
|
||||
),
|
||||
|
||||
// Color - Same as the background color
|
||||
array(
|
||||
'.widget button,
|
||||
.widget input[type="button"],
|
||||
.widget input[type="reset"],
|
||||
.widget input[type="submit"],
|
||||
.widget_calendar tbody a,
|
||||
.widget_calendar tbody a:hover,
|
||||
.widget_calendar tbody a:focus', 'color'
|
||||
),
|
||||
|
||||
// Border
|
||||
array(
|
||||
'.secondary-toggle:hover,
|
||||
.secondary-toggle:focus,
|
||||
.widget input:focus,
|
||||
.widget textarea:focus', 'border-color', 'txt', 1.4
|
||||
),
|
||||
|
||||
// Outline
|
||||
array(
|
||||
'.site-title a,
|
||||
.sidebar a:focus,
|
||||
.dropdown-toggle:focus', 'outline-color', 'txt', 1.4
|
||||
),
|
||||
|
||||
// Border Lower contrast
|
||||
array(
|
||||
'.main-navigation ul,
|
||||
.main-navigation li,
|
||||
.secondary-toggle,
|
||||
.widget input,
|
||||
.widget textarea,
|
||||
.widget table,
|
||||
.widget th,
|
||||
.widget td,
|
||||
.widget pre,
|
||||
.widget li,
|
||||
.widget ul ul,
|
||||
.widget_categories .children,
|
||||
.widget_nav_menu .sub-menu,
|
||||
.widget_pages .children,
|
||||
.widget abbr[title],
|
||||
.widget-area .milestone-header,
|
||||
.widget-area .milestone-countdown,
|
||||
.widget-area .milestone-message', 'border-color', 'txt', 1.2
|
||||
),
|
||||
|
||||
// Background Color - Same as the border color above
|
||||
array(
|
||||
'.dropdown-toggle:hover,
|
||||
.dropdown-toggle:focus,
|
||||
.widget hr', 'background-color', 'txt', 1.2
|
||||
),
|
||||
),
|
||||
__( 'Header and Sidebar Background Color', 'twentyfifteen' ) );
|
||||
|
||||
|
||||
// Header and Sidebar Link Color.
|
||||
add_color_rule( 'link', '#333333', array(
|
||||
// Background
|
||||
array(
|
||||
'.widget button,
|
||||
.widget input[type="button"],
|
||||
.widget input[type="reset"],
|
||||
.widget input[type="submit"],
|
||||
.widget_calendar tbody a', 'background-color', 'txt', 3
|
||||
),
|
||||
|
||||
// Color
|
||||
array(
|
||||
'.site-title a,
|
||||
.site-description,
|
||||
.secondary-toggle,
|
||||
.secondary-toggle:before,
|
||||
.secondary a,
|
||||
.dropdown-toggle:after,
|
||||
.widget-title,
|
||||
.widget blockquote cite,
|
||||
.widget blockquote small,
|
||||
.milestone-widget .event,
|
||||
.milestone-widget .difference', 'color', 'txt', 3
|
||||
),
|
||||
|
||||
// Border
|
||||
array(
|
||||
'.textwidget a,
|
||||
.widget_gravatar a', 'border-color', 'txt', 3
|
||||
),
|
||||
),
|
||||
__( 'Header and Sidebar Link Color', 'twentyfifteen' ) );
|
||||
|
||||
|
||||
// Header and Sidebar Text Color
|
||||
add_color_rule( 'fg1', '#707070', array(
|
||||
// Background Color
|
||||
array(
|
||||
'.widget button:hover,
|
||||
.widget button:focus,
|
||||
.widget input[type="button"]:hover,
|
||||
.widget input[type="button"]:focus,
|
||||
.widget input[type="reset"]:hover,
|
||||
.widget input[type="reset"]:focus,
|
||||
.widget input[type="submit"]:hover,
|
||||
.widget input[type="submit"]:focus,
|
||||
.widget_calendar tbody a:hover,
|
||||
.widget_calendar tbody a:focus', 'background-color', 'txt', 1.6
|
||||
),
|
||||
|
||||
// Color
|
||||
array(
|
||||
'.site-title a:hover,
|
||||
.site-title a:focus,
|
||||
.secondary a:hover,
|
||||
.secondary a:focus,
|
||||
.main-navigation .menu-item-description,
|
||||
.widget,
|
||||
.widget blockquote,
|
||||
.widget .wp-caption-text,
|
||||
.widget .gallery-caption', 'color', 'txt', 1.6
|
||||
),
|
||||
|
||||
// Border Color
|
||||
array(
|
||||
'.widget blockquote', 'border-color', 'txt', 1.6
|
||||
),
|
||||
),
|
||||
__( 'Header and Sidebar Text Color', 'twentyfifteen' ) );
|
||||
|
||||
|
||||
// Additional CSS
|
||||
add_theme_support( 'custom_colors_extra_css', 'twentyfifteen_extra_css' );
|
||||
function twentyfifteen_extra_css() { ?>
|
||||
.small-screen .widget button,
|
||||
.small-screen .widget input[type="button"],
|
||||
.small-screen .widget input[type="reset"],
|
||||
.small-screen .widget input[type="submit"],
|
||||
.small-screen .widget_calendar tbody a,
|
||||
.small-screen .widget_calendar tbody a:hover,
|
||||
.small-screen .widget_calendar tbody a:focus {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.small-screen .widget button,
|
||||
.small-screen .widget input[type="button"],
|
||||
.small-screen .widget input[type="reset"],
|
||||
.small-screen .widget input[type="submit"],
|
||||
.small-screen .widget_calendar tbody a {
|
||||
background-color: #333;
|
||||
}
|
||||
|
||||
.small-screen .secondary a,
|
||||
.small-screen .dropdown-toggle:after,
|
||||
.small-screen .widget-title,
|
||||
.small-screen .widget blockquote cite,
|
||||
.small-screen .widget blockquote small {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.small-screen .textwidget a {
|
||||
border-color: #333;
|
||||
}
|
||||
|
||||
.small-screen .widget button:hover,
|
||||
.small-screen .widget button:focus,
|
||||
.small-screen .widget input[type="button"]:hover,
|
||||
.small-screen .widget input[type="button"]:focus,
|
||||
.small-screen .widget input[type="reset"]:hover,
|
||||
.small-screen .widget input[type="reset"]:focus,
|
||||
.small-screen .widget input[type="submit"]:hover,
|
||||
.small-screen .widget input[type="submit"]:focus,
|
||||
.small-screen .widget_calendar tbody a:hover,
|
||||
.small-screen .widget_calendar tbody a:focus {
|
||||
background-color: #707070;
|
||||
background-color: rgba(51, 51, 51, 0.7);
|
||||
}
|
||||
|
||||
.small-screen .secondary a:hover,
|
||||
.small-screen .secondary a:focus,
|
||||
.small-screen .main-navigation .menu-item-description,
|
||||
.small-screen .widget,
|
||||
.small-screen .widget blockquote,
|
||||
.small-screen .widget .wp-caption-text,
|
||||
.small-screen .widget .gallery-caption {
|
||||
color: #707070;
|
||||
color: rgba(51, 51, 51, 0.7);
|
||||
}
|
||||
|
||||
.small-screen .widget blockquote {
|
||||
border-color: #707070;
|
||||
border-color: rgba(51, 51, 51, 0.7);
|
||||
}
|
||||
|
||||
.small-screen .widget input:focus,
|
||||
.small-screen .widget textarea:focus {
|
||||
border-color: #c1c1c1;
|
||||
border-color: rgba(51, 51, 51, 0.3);
|
||||
}
|
||||
|
||||
.small-screen .sidebar a:focus,
|
||||
.small-screen .dropdown-toggle:focus {
|
||||
outline-color: #c1c1c1;
|
||||
outline-color: rgba(51, 51, 51, 0.3);
|
||||
}
|
||||
|
||||
.small-screen .main-navigation ul,
|
||||
.small-screen .main-navigation li,
|
||||
.small-screen .widget input,
|
||||
.small-screen .widget textarea,
|
||||
.small-screen .widget table,
|
||||
.small-screen .widget th,
|
||||
.small-screen .widget td,
|
||||
.small-screen .widget pre,
|
||||
.small-screen .widget li,
|
||||
.small-screen .widget ul ul,
|
||||
.small-screen .widget_categories .children,
|
||||
.small-screen .widget_nav_menu .sub-menu,
|
||||
.small-screen .widget_pages .children,
|
||||
.small-screen .widget abbr[title] {
|
||||
border-color: #eaeaea;
|
||||
border-color: rgba(51, 51, 51, 0.1);
|
||||
}
|
||||
|
||||
.small-screen .dropdown-toggle:hover,
|
||||
.small-screen .dropdown-toggle:focus,
|
||||
.small-screen .widget hr {
|
||||
background-color: #eaeaea;
|
||||
background-color: rgba(51, 51, 51, 0.1);
|
||||
}
|
||||
|
||||
.small-screen .widget-area .milestone-header,
|
||||
.small-screen .widget-area .milestone-countdown,
|
||||
.small-screen .widget-area .milestone-message {
|
||||
border-color: #eaeaea;
|
||||
border-color: rgba(51, 51, 51, 0.1);
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.small-screen .milestone-widget .event,
|
||||
.small-screen .milestone-widget .difference {
|
||||
color: #333;
|
||||
}
|
||||
<?php
|
||||
}
|
||||
|
||||
|
||||
// Free color palettes
|
||||
add_color_palette( array(
|
||||
'#f4ca16', // Main Background Color
|
||||
'#ffdf00', // Header and Sidebar Background Color
|
||||
'#111111', // Header and Sidebar Link Color
|
||||
'#706624', // Header and Sidebar Text Color
|
||||
'',
|
||||
), 'Yellow' );
|
||||
|
||||
add_color_palette( array(
|
||||
'#ffe5d1',
|
||||
'#e53b51',
|
||||
'#ffffff',
|
||||
'#f7c5cb',
|
||||
'',
|
||||
), 'Pink' );
|
||||
|
||||
add_color_palette( array(
|
||||
'#674970',
|
||||
'#2e2256',
|
||||
'#ffffff',
|
||||
'#c1bdcd',
|
||||
'',
|
||||
), 'Purple' );
|
||||
|
||||
add_color_palette( array(
|
||||
'#e9f2f9',
|
||||
'#55c3dc',
|
||||
'#ffffff',
|
||||
'#ccedf5',
|
||||
'',
|
||||
), 'Blue' );
|
||||
|
||||
add_color_palette( array(
|
||||
'#111111',
|
||||
'#202020',
|
||||
'#bebebe',
|
||||
'#8f8f8f',
|
||||
'',
|
||||
), 'Dark' );
|
80
twentyfifteen/inc/wpcom.php
Normal file
80
twentyfifteen/inc/wpcom.php
Normal file
|
@ -0,0 +1,80 @@
|
|||
<?php
|
||||
/**
|
||||
* WordPress.com-specific functions and definitions
|
||||
*
|
||||
* @package Twenty Fifteen
|
||||
*/
|
||||
|
||||
/**
|
||||
* Adds support for wp.com-specific theme functions.
|
||||
*
|
||||
* @global array $themecolors
|
||||
* @return void
|
||||
*/
|
||||
function twentyfifteen_wpcom_setup() {
|
||||
global $themecolors;
|
||||
|
||||
// Set theme colors for third party services.
|
||||
if ( ! isset( $themecolors ) ) {
|
||||
$themecolors = array(
|
||||
'bg' => 'ffffff',
|
||||
'border' => 'eaeaea',
|
||||
'text' => '333333',
|
||||
'link' => '333333',
|
||||
'url' => '333333',
|
||||
);
|
||||
}
|
||||
|
||||
// Add theme support for Site Logo.
|
||||
add_image_size( 'twentyfifteen-logo', 1466, 272 );
|
||||
add_theme_support( 'site-logo', array( 'size' => 'twentyfifteen-logo' ) );
|
||||
}
|
||||
add_action( 'after_setup_theme', 'twentyfifteen_wpcom_setup' );
|
||||
|
||||
/**
|
||||
* Return early if Site Logo is not available.
|
||||
*/
|
||||
function twentyfifteen_the_site_logo() {
|
||||
if ( ! function_exists( 'jetpack_the_site_logo' ) ) {
|
||||
return;
|
||||
} else {
|
||||
jetpack_the_site_logo();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* De-queue Google fonts if custom fonts are being used instead.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function twentyfifteen_dequeue_fonts() {
|
||||
if ( class_exists( 'Jetpack_Fonts' ) && class_exists( 'CustomDesign' ) && CustomDesign::is_upgrade_active() ) {
|
||||
if ( class_exists( 'TypekitUtil' ) ) {
|
||||
$custom_fonts = Jetpack_Fonts::get_instance()->get_fonts();
|
||||
if ( ! empty( $custom_fonts ) && TypekitUtil::any_selected_fonts( $custom_fonts ) ) {
|
||||
wp_dequeue_style( 'twentyfifteen-fonts' );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'twentyfifteen_dequeue_fonts' );
|
||||
|
||||
/**
|
||||
* Enqueue our WP.com styles for front-end.
|
||||
* Loads after style.css so we can add overrides.
|
||||
*/
|
||||
function twentyfifteen_wpcom_scripts() {
|
||||
wp_enqueue_style( 'twentyfifteen-wpcom-style', get_template_directory_uri() . '/css/style-wpcom.css', array( 'twentyfifteen-style' ), '20141202' );
|
||||
|
||||
wp_enqueue_script( 'twentyfifteen-wpcom-js', get_template_directory_uri() . '/js/wpcom.js', array( 'jquery' ), '20141208', true );
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'twentyfifteen_wpcom_scripts' );
|
||||
|
||||
/**
|
||||
* Remove color scheme related stuff in favor of Custom Color in WP.com.
|
||||
*/
|
||||
remove_action( 'wp_enqueue_scripts', 'twentyfifteen_color_scheme_css' );
|
||||
remove_action( 'customize_controls_enqueue_scripts', 'twentyfifteen_customize_control_js' );
|
||||
remove_action( 'customize_controls_print_footer_scripts', 'twentyfifteen_color_scheme_css_template' );
|
||||
remove_action( 'wp_enqueue_scripts', 'twentyfifteen_header_background_color_css', 11 );
|
||||
remove_action( 'wp_enqueue_scripts', 'twentyfifteen_sidebar_text_color_css', 11 );
|
61
twentyfifteen/index.php
Normal file
61
twentyfifteen/index.php
Normal file
|
@ -0,0 +1,61 @@
|
|||
<?php
|
||||
/**
|
||||
* The main template file
|
||||
*
|
||||
* This is the most generic template file in a WordPress theme
|
||||
* and one of the two required files for a theme (the other being style.css).
|
||||
* It is used to display a page when nothing more specific matches a query.
|
||||
* e.g., it puts together the home page when no home.php file exists.
|
||||
*
|
||||
* Learn more: {@link https://codex.wordpress.org/Template_Hierarchy}
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Fifteen
|
||||
* @since Twenty Fifteen 1.0
|
||||
*/
|
||||
|
||||
get_header(); ?>
|
||||
|
||||
<div id="primary" class="content-area">
|
||||
<main id="main" class="site-main" role="main">
|
||||
|
||||
<?php if ( have_posts() ) : ?>
|
||||
|
||||
<?php if ( is_home() && ! is_front_page() ) : ?>
|
||||
<header>
|
||||
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
|
||||
</header>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php
|
||||
// Start the loop.
|
||||
while ( have_posts() ) : the_post();
|
||||
|
||||
/*
|
||||
* Include the Post-Format-specific template for the content.
|
||||
* If you want to override this in a child theme, then include a file
|
||||
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'content', get_post_format() );
|
||||
|
||||
// End the loop.
|
||||
endwhile;
|
||||
|
||||
// Previous/next page navigation.
|
||||
the_posts_pagination( array(
|
||||
'prev_text' => __( 'Previous page', 'twentyfifteen' ),
|
||||
'next_text' => __( 'Next page', 'twentyfifteen' ),
|
||||
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentyfifteen' ) . ' </span>',
|
||||
) );
|
||||
|
||||
// If no content, include the "No posts found" template.
|
||||
else :
|
||||
get_template_part( 'content', 'none' );
|
||||
|
||||
endif;
|
||||
?>
|
||||
|
||||
</main><!-- .site-main -->
|
||||
</div><!-- .content-area -->
|
||||
|
||||
<?php get_footer(); ?>
|
78
twentyfifteen/js/color-scheme-control.js
Normal file
78
twentyfifteen/js/color-scheme-control.js
Normal file
|
@ -0,0 +1,78 @@
|
|||
/* global colorScheme, Color */
|
||||
/**
|
||||
* Add a listener to the Color Scheme control to update other color controls to new values/defaults.
|
||||
* Also trigger an update of the Color Scheme CSS when a color is changed.
|
||||
*/
|
||||
|
||||
( function( api ) {
|
||||
var cssTemplate = wp.template( 'twentyfifteen-color-scheme' ),
|
||||
colorSchemeKeys = [
|
||||
'background_color',
|
||||
'header_background_color',
|
||||
'box_background_color',
|
||||
'textcolor',
|
||||
'sidebar_textcolor',
|
||||
'meta_box_background_color'
|
||||
],
|
||||
colorSettings = [
|
||||
'background_color',
|
||||
'header_background_color',
|
||||
'sidebar_textcolor'
|
||||
];
|
||||
|
||||
api.controlConstructor.select = api.Control.extend( {
|
||||
ready: function() {
|
||||
if ( 'color_scheme' === this.id ) {
|
||||
this.setting.bind( 'change', function( value ) {
|
||||
// Update Background Color.
|
||||
api( 'background_color' ).set( colorScheme[value].colors[0] );
|
||||
api.control( 'background_color' ).container.find( '.color-picker-hex' )
|
||||
.data( 'data-default-color', colorScheme[value].colors[0] )
|
||||
.wpColorPicker( 'defaultColor', colorScheme[value].colors[0] );
|
||||
|
||||
// Update Header/Sidebar Background Color.
|
||||
api( 'header_background_color' ).set( colorScheme[value].colors[1] );
|
||||
api.control( 'header_background_color' ).container.find( '.color-picker-hex' )
|
||||
.data( 'data-default-color', colorScheme[value].colors[1] )
|
||||
.wpColorPicker( 'defaultColor', colorScheme[value].colors[1] );
|
||||
|
||||
// Update Header/Sidebar Text Color.
|
||||
api( 'sidebar_textcolor' ).set( colorScheme[value].colors[4] );
|
||||
api.control( 'sidebar_textcolor' ).container.find( '.color-picker-hex' )
|
||||
.data( 'data-default-color', colorScheme[value].colors[4] )
|
||||
.wpColorPicker( 'defaultColor', colorScheme[value].colors[4] );
|
||||
} );
|
||||
}
|
||||
}
|
||||
} );
|
||||
|
||||
// Generate the CSS for the current Color Scheme.
|
||||
function updateCSS() {
|
||||
var scheme = api( 'color_scheme' )(), css,
|
||||
colors = _.object( colorSchemeKeys, colorScheme[ scheme ].colors );
|
||||
|
||||
// Merge in color scheme overrides.
|
||||
_.each( colorSettings, function( setting ) {
|
||||
colors[ setting ] = api( setting )();
|
||||
});
|
||||
|
||||
// Add additional colors.
|
||||
colors.secondary_textcolor = Color( colors.textcolor ).toCSS( 'rgba', 0.7 );
|
||||
colors.border_color = Color( colors.textcolor ).toCSS( 'rgba', 0.1 );
|
||||
colors.border_focus_color = Color( colors.textcolor ).toCSS( 'rgba', 0.3 );
|
||||
colors.secondary_sidebar_textcolor = Color( colors.sidebar_textcolor ).toCSS( 'rgba', 0.7 );
|
||||
colors.sidebar_border_color = Color( colors.sidebar_textcolor ).toCSS( 'rgba', 0.1 );
|
||||
colors.sidebar_border_focus_color = Color( colors.sidebar_textcolor ).toCSS( 'rgba', 0.3 );
|
||||
|
||||
css = cssTemplate( colors );
|
||||
|
||||
api.previewer.send( 'update-color-scheme-css', css );
|
||||
}
|
||||
|
||||
// Update the CSS whenever a color setting is changed.
|
||||
_.each( colorSettings, function( setting ) {
|
||||
api( setting, function( setting ) {
|
||||
setting.bind( updateCSS );
|
||||
} );
|
||||
} );
|
||||
} )( wp.customize );
|
35
twentyfifteen/js/customize-preview.js
Normal file
35
twentyfifteen/js/customize-preview.js
Normal file
|
@ -0,0 +1,35 @@
|
|||
/**
|
||||
* Live-update changed settings in real time in the Customizer preview.
|
||||
*/
|
||||
|
||||
( function( $ ) {
|
||||
var $style = $( '#twentyfifteen-color-scheme-css' ),
|
||||
api = wp.customize;
|
||||
|
||||
if ( ! $style.length ) {
|
||||
$style = $( 'head' ).append( '<style type="text/css" id="twentyfifteen-color-scheme-css" />' )
|
||||
.find( '#twentyfifteen-color-scheme-css' );
|
||||
}
|
||||
|
||||
// Site title.
|
||||
api( 'blogname', function( value ) {
|
||||
value.bind( function( to ) {
|
||||
$( '.site-title a' ).text( to );
|
||||
} );
|
||||
} );
|
||||
|
||||
// Site tagline.
|
||||
api( 'blogdescription', function( value ) {
|
||||
value.bind( function( to ) {
|
||||
$( '.site-description' ).text( to );
|
||||
} );
|
||||
} );
|
||||
|
||||
// Color Scheme CSS.
|
||||
api.bind( 'preview-ready', function() {
|
||||
api.preview.bind( 'update-color-scheme-css', function( css ) {
|
||||
$style.html( css );
|
||||
} );
|
||||
} );
|
||||
|
||||
} )( jQuery );
|
178
twentyfifteen/js/functions.js
Normal file
178
twentyfifteen/js/functions.js
Normal file
|
@ -0,0 +1,178 @@
|
|||
/* global screenReaderText */
|
||||
/**
|
||||
* Theme functions file.
|
||||
*
|
||||
* Contains handlers for navigation and widget area.
|
||||
*/
|
||||
|
||||
( function( $ ) {
|
||||
var $body, $window, $sidebar, adminbarOffset, top = false,
|
||||
bottom = false, windowWidth, windowHeight, lastWindowPos = 0,
|
||||
topOffset = 0, bodyHeight, sidebarHeight, resizeTimer,
|
||||
secondary, button;
|
||||
|
||||
function initMainNavigation( container ) {
|
||||
// Add dropdown toggle that display child menu items.
|
||||
container.find( '.menu-item-has-children > a' ).after( '<button class="dropdown-toggle" aria-expanded="false">' + screenReaderText.expand + '</button>' );
|
||||
|
||||
// Toggle buttons and submenu items with active children menu items.
|
||||
container.find( '.current-menu-ancestor > button' ).addClass( 'toggle-on' );
|
||||
container.find( '.current-menu-ancestor > .sub-menu' ).addClass( 'toggled-on' );
|
||||
|
||||
container.find( '.dropdown-toggle' ).click( function( e ) {
|
||||
var _this = $( this );
|
||||
e.preventDefault();
|
||||
_this.toggleClass( 'toggle-on' );
|
||||
_this.next( '.children, .sub-menu' ).toggleClass( 'toggled-on' );
|
||||
_this.attr( 'aria-expanded', _this.attr( 'aria-expanded' ) === 'false' ? 'true' : 'false' );
|
||||
_this.html( _this.html() === screenReaderText.expand ? screenReaderText.collapse : screenReaderText.expand );
|
||||
} );
|
||||
}
|
||||
initMainNavigation( $( '.main-navigation' ) );
|
||||
|
||||
// Re-initialize the main navigation when it is updated, persisting any existing submenu expanded states.
|
||||
$( document ).on( 'customize-preview-menu-refreshed', function( e, params ) {
|
||||
if ( 'primary' === params.wpNavMenuArgs.theme_location ) {
|
||||
initMainNavigation( params.newContainer );
|
||||
|
||||
// Re-sync expanded states from oldContainer.
|
||||
params.oldContainer.find( '.dropdown-toggle.toggle-on' ).each(function() {
|
||||
var containerId = $( this ).parent().prop( 'id' );
|
||||
$( params.newContainer ).find( '#' + containerId + ' > .dropdown-toggle' ).triggerHandler( 'click' );
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
secondary = $( '#secondary' );
|
||||
button = $( '.site-branding' ).find( '.secondary-toggle' );
|
||||
|
||||
// Enable menu toggle for small screens.
|
||||
( function() {
|
||||
var menu, widgets, social;
|
||||
if ( ! secondary.length || ! button.length ) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Hide button if there are no widgets and the menus are missing or empty.
|
||||
menu = secondary.find( '.nav-menu' );
|
||||
widgets = secondary.find( '#widget-area' );
|
||||
social = secondary.find( '#social-navigation' );
|
||||
if ( ! widgets.length && ! social.length && ( ! menu.length || ! menu.children().length ) ) {
|
||||
button.hide();
|
||||
return;
|
||||
}
|
||||
|
||||
button.on( 'click.twentyfifteen', function() {
|
||||
secondary.toggleClass( 'toggled-on' );
|
||||
secondary.trigger( 'resize' );
|
||||
$( this ).toggleClass( 'toggled-on' );
|
||||
if ( $( this, secondary ).hasClass( 'toggled-on' ) ) {
|
||||
$( this ).attr( 'aria-expanded', 'true' );
|
||||
secondary.attr( 'aria-expanded', 'true' );
|
||||
} else {
|
||||
$( this ).attr( 'aria-expanded', 'false' );
|
||||
secondary.attr( 'aria-expanded', 'false' );
|
||||
}
|
||||
} );
|
||||
} )();
|
||||
|
||||
/**
|
||||
* @summary Add or remove ARIA attributes.
|
||||
* Uses jQuery's width() function to determine the size of the window and add
|
||||
* the default ARIA attributes for the menu toggle if it's visible.
|
||||
* @since Twenty Fifteen 1.1
|
||||
*/
|
||||
function onResizeARIA() {
|
||||
if ( 955 > $window.width() ) {
|
||||
button.attr( 'aria-expanded', 'false' );
|
||||
secondary.attr( 'aria-expanded', 'false' );
|
||||
button.attr( 'aria-controls', 'secondary' );
|
||||
} else {
|
||||
button.removeAttr( 'aria-expanded' );
|
||||
secondary.removeAttr( 'aria-expanded' );
|
||||
button.removeAttr( 'aria-controls' );
|
||||
}
|
||||
}
|
||||
|
||||
// Sidebar scrolling.
|
||||
function resize() {
|
||||
windowWidth = $window.width();
|
||||
|
||||
if ( 955 > windowWidth ) {
|
||||
top = bottom = false;
|
||||
$sidebar.removeAttr( 'style' );
|
||||
}
|
||||
}
|
||||
|
||||
function scroll() {
|
||||
var windowPos = $window.scrollTop();
|
||||
|
||||
if ( 955 > windowWidth ) {
|
||||
return;
|
||||
}
|
||||
|
||||
sidebarHeight = $sidebar.height();
|
||||
windowHeight = $window.height();
|
||||
bodyHeight = $body.height();
|
||||
|
||||
if ( sidebarHeight + adminbarOffset > windowHeight ) {
|
||||
if ( windowPos > lastWindowPos ) {
|
||||
if ( top ) {
|
||||
top = false;
|
||||
topOffset = ( $sidebar.offset().top > 0 ) ? $sidebar.offset().top - adminbarOffset : 0;
|
||||
$sidebar.attr( 'style', 'top: ' + topOffset + 'px;' );
|
||||
} else if ( ! bottom && windowPos + windowHeight > sidebarHeight + $sidebar.offset().top && sidebarHeight + adminbarOffset < bodyHeight ) {
|
||||
bottom = true;
|
||||
$sidebar.attr( 'style', 'position: fixed; bottom: 0;' );
|
||||
}
|
||||
} else if ( windowPos < lastWindowPos ) {
|
||||
if ( bottom ) {
|
||||
bottom = false;
|
||||
topOffset = ( $sidebar.offset().top > 0 ) ? $sidebar.offset().top - adminbarOffset : 0;
|
||||
$sidebar.attr( 'style', 'top: ' + topOffset + 'px;' );
|
||||
} else if ( ! top && windowPos + adminbarOffset < $sidebar.offset().top ) {
|
||||
top = true;
|
||||
$sidebar.attr( 'style', 'position: fixed;' );
|
||||
}
|
||||
} else {
|
||||
top = bottom = false;
|
||||
topOffset = ( $sidebar.offset().top > 0 ) ? $sidebar.offset().top - adminbarOffset : 0;
|
||||
$sidebar.attr( 'style', 'top: ' + topOffset + 'px;' );
|
||||
}
|
||||
} else if ( ! top ) {
|
||||
top = true;
|
||||
$sidebar.attr( 'style', 'position: fixed;' );
|
||||
}
|
||||
|
||||
lastWindowPos = windowPos;
|
||||
}
|
||||
|
||||
function resizeAndScroll() {
|
||||
resize();
|
||||
scroll();
|
||||
}
|
||||
|
||||
$( document ).ready( function() {
|
||||
$body = $( document.body );
|
||||
$window = $( window );
|
||||
$sidebar = $( '#sidebar' ).first();
|
||||
adminbarOffset = $body.is( '.admin-bar' ) ? $( '#wpadminbar' ).height() : 0;
|
||||
|
||||
$window
|
||||
.on( 'scroll.twentyfifteen', scroll )
|
||||
.on( 'load.twentyfifteen', onResizeARIA )
|
||||
.on( 'resize.twentyfifteen', function() {
|
||||
clearTimeout( resizeTimer );
|
||||
resizeTimer = setTimeout( resizeAndScroll, 500 );
|
||||
onResizeARIA();
|
||||
} );
|
||||
$sidebar.on( 'click.twentyfifteen keydown.twentyfifteen', 'button', resizeAndScroll );
|
||||
|
||||
resizeAndScroll();
|
||||
|
||||
for ( var i = 1; i < 6; i++ ) {
|
||||
setTimeout( resizeAndScroll, 100 * i );
|
||||
}
|
||||
} );
|
||||
|
||||
} )( jQuery );
|
9
twentyfifteen/js/html5.js
Normal file
9
twentyfifteen/js/html5.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
/*
|
||||
* HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
|
||||
*/
|
||||
|
||||
(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag();
|
||||
a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}</style>";
|
||||
c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode||
|
||||
"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);
|
||||
if(g)return a.createDocumentFragment();for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document);
|
22
twentyfifteen/js/keyboard-image-navigation.js
Normal file
22
twentyfifteen/js/keyboard-image-navigation.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* Twenty Fifteen keyboard support for image navigation.
|
||||
*/
|
||||
|
||||
( function( $ ) {
|
||||
$( document ).on( 'keydown.twentyfifteen', function( e ) {
|
||||
var url = false;
|
||||
|
||||
// Left arrow key code.
|
||||
if ( e.which === 37 ) {
|
||||
url = $( '.nav-previous a' ).attr( 'href' );
|
||||
|
||||
// Right arrow key code.
|
||||
} else if ( e.which === 39 ) {
|
||||
url = $( '.nav-next a' ).attr( 'href' );
|
||||
}
|
||||
|
||||
if ( url && ( ! $( 'textarea, input' ).is( ':focus' ) ) ) {
|
||||
window.location = url;
|
||||
}
|
||||
} );
|
||||
} )( jQuery );
|
26
twentyfifteen/js/skip-link-focus-fix.js
Normal file
26
twentyfifteen/js/skip-link-focus-fix.js
Normal file
|
@ -0,0 +1,26 @@
|
|||
/**
|
||||
* Makes "skip to content" link work correctly in IE9, Chrome, and Opera
|
||||
* for better accessibility.
|
||||
*
|
||||
* @link http://www.nczonline.net/blog/2013/01/15/fixing-skip-to-content-links/
|
||||
*/
|
||||
|
||||
( function() {
|
||||
var ua = navigator.userAgent.toLowerCase();
|
||||
|
||||
if ( ( ua.indexOf( 'webkit' ) > -1 || ua.indexOf( 'opera' ) > -1 || ua.indexOf( 'msie' ) > -1 ) &&
|
||||
document.getElementById && window.addEventListener ) {
|
||||
|
||||
window.addEventListener( 'hashchange', function() {
|
||||
var element = document.getElementById( location.hash.substring( 1 ) );
|
||||
|
||||
if ( element ) {
|
||||
if ( ! /^(?:a|select|input|button|textarea)$/i.test( element.nodeName ) ) {
|
||||
element.tabIndex = -1;
|
||||
}
|
||||
|
||||
element.focus();
|
||||
}
|
||||
}, false );
|
||||
}
|
||||
} )();
|
34
twentyfifteen/js/wpcom.js
Normal file
34
twentyfifteen/js/wpcom.js
Normal file
|
@ -0,0 +1,34 @@
|
|||
( function( $ ) {
|
||||
var $body = $( 'body' ),
|
||||
$window = $( window );
|
||||
|
||||
/**
|
||||
* Add a body class for less than 955 viewport, IE8, and below.
|
||||
* This is only for Custom Colors that doesn't handle media queries.
|
||||
*/
|
||||
function bodyClass() {
|
||||
if ( ( document.all && ! document.addEventListener ) || ( $window.width() <= 954 ) ) {
|
||||
$body.addClass( 'small-screen' );
|
||||
} else {
|
||||
$body.removeClass( 'small-screen' );
|
||||
}
|
||||
}
|
||||
|
||||
function debouncedBodyClass() {
|
||||
var timeout;
|
||||
return function() {
|
||||
clearTimeout( timeout );
|
||||
timeout = setTimeout( function() {
|
||||
timeout = null;
|
||||
bodyClass();
|
||||
}, 150 );
|
||||
};
|
||||
}
|
||||
|
||||
$( document ).ready( function() {
|
||||
$window
|
||||
.on( 'load.twentyfifteen', bodyClass() )
|
||||
.on( 'resize.twentyfifteen', debouncedBodyClass() );
|
||||
} );
|
||||
|
||||
} )( jQuery );
|
BIN
twentyfifteen/languages/ar.mo
Normal file
BIN
twentyfifteen/languages/ar.mo
Normal file
Binary file not shown.
290
twentyfifteen/languages/ar.po
Normal file
290
twentyfifteen/languages/ar.po
Normal file
|
@ -0,0 +1,290 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Arabic
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: ar\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "لون رابط الشريط الجانبي والترويسة"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "خلفية"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "قالبنا الإفتراضي لعام 2015 بسيط، يركز على المدونات، تم تصميمه من أجل النقاء. Twenty Fifteen قابل للقراءة على تشكيلة واسعة من أحجام الشاشات، ومناسب لعدة لغات. لقد قمنا بتصميمه بإستخدام نهج الموبايل-أولاً، مما يعني بأن المحتوى سيعرض بشكل ملائم، بغض النظر عما إن وصل زوار موقعك عن طريق الهاتف الذكي، الجهاز اللوحي، كمبيوتر محمول أو كمبيوتر سطح مكتب."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "المقالة السابقة:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "السابق"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "المقالة التالية:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "التالي"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "نتائج البحث عن: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "الحجم الكامل"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "الوسوم"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "التصنيفات"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "الكاتب"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "نُشرت في"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "البنية"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "مميز"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "التعليقات الأحدث"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "التعليقات الأقدم"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "تصفح التعليق"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "أزرق"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "أرجواني"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "وردي"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "أصفر"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "داكن"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "إفتراضي"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "لون خلفية الترويسة والشريط الجانبي"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "يستخدم على الترويسة في الشاشات الصغيرة والشريط الجانبي في الشاشات الواسعة."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "لون نص الترويسة والشريط الجانبي"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "نظام الألوان الأساسي"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen يتطلب ووردبريس 4.1 على الأقل. أنت تستخدم النسخة %s. فيرجى الترقية والمحاولة مرة أخرى."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">نُشرت على</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "الصورة التالية"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "الصورة السابقة"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "القائمة والودجات"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "التجاوز إلى المحتوى"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "طي القائمة الفرعية"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "توسيع القائمة الفرعية"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "أضف الودجات هنا لتظهر في الشريط الجانبي."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "منطقة الودجات"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "قائمة الروابط الإجتماعية"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "القائمة الرئيسية"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "مدعوم بفخر من %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "يظهر انه لا يمكننا الوصول لما تبحث عنه. يمكن ان يساعدك البحث."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "آسفين, ولكن لا يوجد شئ مطابق لكلمات البحث التي ادخلتها, حاول بكلمات اخرى مرة ثانية."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "هل أنت على استعداد لنشر مقالتك الأولى؟ <a href=\"%1$s\">ابدأ من هنا</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "لا يوجد شيء"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "تحرير"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "الصفحات:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "متابعة قراءة %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "التعليقات مغلقة."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "لا توجد أراء حول “%2$s”"
|
||||
msgstr[1] "رأي واحد حول “%2$s”"
|
||||
msgstr[2] "رأيان حول “%2$s”"
|
||||
msgstr[3] "%1$s رأي حول “%2$s”"
|
||||
msgstr[4] "%1$s رأي حول “%2$s”"
|
||||
msgstr[5] "%1$s رأي حول “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "عرض كل المقالات بواسطة %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "نُشرت بواسطة"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "الصفحة"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "الصفحة التالية"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "الصفحة السابقة"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "يبدو أنه لا يوجد شيء هنا. ربما حاول استعمال البحث؟"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "اوبس! الصفحة غير موجودة."
|
BIN
twentyfifteen/languages/az.mo
Normal file
BIN
twentyfifteen/languages/az.mo
Normal file
Binary file not shown.
286
twentyfifteen/languages/az.po
Normal file
286
twentyfifteen/languages/az.po
Normal file
|
@ -0,0 +1,286 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Azerbaijani
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:23+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: az\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "Başlıq və Yanmenyu Bağlantı Rəngi"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Arxa fon"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "2015 mövcud mövzumuz təmiz, bloq fokuslu və şəffaflıq ön planda tutularaq dizayn edildi. İyirmi Onbeş-in bəsit, gələcəyə yönəlik tipoqrafiyası, geniş bir çətirdəki ekran ölçüləri və bir çox dil üçün en üst səviyyədə oxuna bilmə imkanı təqdim edir. Mobil öncəlikli olaraq dizayn etdiyimiz mövzuda, ziyarətçiləriniz istər ağıllı telefonlar, tabletlər, dizüstü bilgisayarlardan, istərlərsə masaüstü bilgisayarlardan baxsınlar, içərik hər zaman mərkəzdədir."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Öncəki yazı:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Öncəki"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Sonrakı yazı:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Sonrakı"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Axtarışın nəticələri: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Tam ölçü"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Etiketlər"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kateqoriyalar"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Müəllif"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Yayım tarixi"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Format"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Xüsusi"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Ən yeni Şərhlər"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Ən əski Şərhlər"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Şərh naviqasiyası"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Mavi"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Tünd qırmızı"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Çəhrayı"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Sarı"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Qoyu"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Mövcud"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Başlıq və Yanmenyu Arxa Fonu"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Kiçik ekranlarda başlığa, geniş ekranlarda yan sütuna tətbiq edilir."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Başlıq və Yanmenyu Mətn Rəngi"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Baza Rəng Sxemi"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Iyirmi onbeş ən az WordPress 4.1 ilə işləyir. Siz hazırda %s versiyasından istifadə edirsiniz. Lütfən yeniləyib təkrar yoxlayın."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Yayım yeri</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Sonrakı təsvir"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Öncəki təsvir"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menyu və vidcetlər"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Mühtəviyyata keç"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "uşaq mövzusunu bağla"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "uşaq mövzusunu genişlət"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "alt-set yoxdur"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "açıq"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "açıq"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "açıq"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Yan sütunda görünəcək vidcetləri buradan əlavə edin."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Vidcet Sahəsi"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Sosial Bağlantı Menyusu"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Əsas menyu"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "%s qürurla təqdim edər"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Axtardığınız səhifə tapılmadı. Bəlkə axtarış qutusu axtardığınızı tapmaqda sizə kömək edər."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Bağışlayın, axtarış kriteriyalarınıza uyğun heç bir şey tapılmadı. Bəzi fərqli açar kəlmələrdən istifadə edərək təkrar yoxlayın."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "İlk yazınızı dərc etməyə hazırsınızmı? <a href=\"%1$s\">Buradan başlayın</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Heç nə tapılmadı"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Redaktə et"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Səhifələr:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "%s oxumağa davam et"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Şərh üçün bağlıdır."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "“%2$s” üçün bir şərh"
|
||||
msgstr[1] "“%2$s” üçün %1$s şərh"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "%s tərəfindən yazılan bütün yazılara bax"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Dərc edən"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Səhifə"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Sonrakı səhifə"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Öncəki səhifə"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Burada heç nə tapa bilmədik. Axtarış etməyi sınamaq istəyirsinizmi?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Əfsuslar! Bu səhifə tapıla bilməz."
|
BIN
twentyfifteen/languages/bg.mo
Normal file
BIN
twentyfifteen/languages/bg.mo
Normal file
Binary file not shown.
282
twentyfifteen/languages/bg.po
Normal file
282
twentyfifteen/languages/bg.po
Normal file
|
@ -0,0 +1,282 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Bulgarian
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: bg\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Фон"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Темата по подразбиране за 2015-та е изчистена, блог-фокусирана и създадена с идеята за яснота. Типографията на Twenty Fifteen е проста, функционална и надеждна за всички размери екрани, както и подходяща за много езици. Темата е създадена с мисъл първо за мобилното потребление, което значи, че съдържанието ви винаги е представено добре, независимо дали се чете през телефон, таблет, лаптоп или настолен компютър."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Предишна публикация:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Предишна"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Следваща публикация:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Следваща"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Резултати от търсене за: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Пълен размер"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Етикети"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Категории"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Автор"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Публикувано на"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Формат"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Избрано"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "По-нови коментари"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "По-стари коментари"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Навигация в коментарите"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Синьо"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Лилаво"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Розово"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Жълто"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Тъмно"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "По подразбиране"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Цвят на заглавката и фона на страничната колона"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Приложено към заглавката на малки екрани и страничната колона на големи."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Цвят на текста в заглавката и страничната колона"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Основна цветова схема"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "За да използвате Twenty Fifteen версията ви на WordPress трябва да бъде поне 4.1. В момента използвате версия %s. Опитайте отново след като обновите."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Публикувано в</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Следващо изображение"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Предишно изображение"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Меню и джаджи"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Към съдържанието"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "свиване на дъщерното меню"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "разширяване на дъщерното меню"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "cyrillic"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "включен"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "включен"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "включен"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Джаджите, добавени тук, ще се появят в страничната ви колона."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Зона за джаджи"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Меню с линкове към социални мрежи"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Главно меню"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Създаден с %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Страницата не съществува. Пробвайте да потърсите каквото ви трябва."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Няма резултати, отговарящи на вашето търсене. Опитайте отново с други ключови думи. "
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Време е за първата ви публикация. <a href=\"%1$s\">Започнете от тук</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Нищо не е открито"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Редактиране"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Страници:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Нататък %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Коментарите са затворени."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Един коментар към “%2$s”"
|
||||
msgstr[1] "%1$s коментара към “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Всички публикации от %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Публикувано от"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Страница"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Следваща страница"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Предишна страница"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Тук няма нищо. Опитайте с търсене?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Страницата не е открита."
|
BIN
twentyfifteen/languages/bs.mo
Normal file
BIN
twentyfifteen/languages/bs.mo
Normal file
Binary file not shown.
283
twentyfifteen/languages/bs.po
Normal file
283
twentyfifteen/languages/bs.po
Normal file
|
@ -0,0 +1,283 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Bosnian
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:23+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: bs_BA\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Pozadina"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Naša tema 2014 je pregledna, blog-fokusirana sa fokusom na jednostavnost. Twenty Fifteen koristi jednostavno čitljive fontove koji se bez problema prikazuju na različitim veličinama ekrana i na različitim jezicima. Pri dizajnu smo se najviše fokusirali na mobilnost što znači da vaš sadržaj zauzima glavni dio prostora, bez obzira na to da li vaši posjetioci koriste pametni telefon, tablet, laptop ili desktop računar."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Prethodni članak:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Prethodna"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Sljedeći članak:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Sljedeća"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Rezultati pretrage za: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Puna veličina"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Oznake"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategorije"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Autor"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Objavljeno"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Format"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Istaknuto"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Noviji komentari"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Stariji komentari"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navigacija komentara"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Plavo"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Ljubičasto"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Roze"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Žuto"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Tamna"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Početno"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Boja pozadine zaglavlja i bočne trake"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Primjenjuje se na zaglavlje na malim ekranima i u bočnoj traci na velikim ekranima."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Boja teksta zaglavlja i bočne trake"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Osnovna šema boja"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen zahtjeva barem WordPress 4.1. Vi imate verziju %s. Molimo vas da izvršite nadogradnju i pokušate ponovo."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Objavljeno kao</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Sljedeća slika"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Prethodna slika"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Meniji i dodaci"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Idi na sadržaj"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "zatvori podmeni"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "proširi podmeni"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Dodajte dodatke ovdje i oni će se pojaviti u vašoj bočnoj traci."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Oblast dodatka"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Meni linkova za društvene mreže"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Glavni meni"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Pokreće %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Izgleda da ne možemo prikazati ono što vam treba. Možda pretraga pomogne."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Žao nam je, ali nema rezultata za tražene pojmove. Molimo vas da pokušate ponovo koristeći druge ključne riječi."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Spremni ste da objavite vaš prvi članak? <a href=\"%1$s\">Započnite ovdje</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Ništa nije pronađeno"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Uredi"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Stranice:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Nastavi čitati %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Komentari su isključeni."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "%1$s komentar na “%2$s”"
|
||||
msgstr[1] "%1$s komentara na “%2$s”"
|
||||
msgstr[2] "%1$s komentara na “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Pregledaj sve članke od %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Autor"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Stranica"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Sljedeća stranica"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Prethodna stranica"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Izgleda da ne postoji sadržaj na ovoj lokaciji. Želite pokušati s pretragom?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ups! Ta stranica nije pronađena."
|
BIN
twentyfifteen/languages/ca.mo
Normal file
BIN
twentyfifteen/languages/ca.mo
Normal file
Binary file not shown.
282
twentyfifteen/languages/ca.po
Normal file
282
twentyfifteen/languages/ca.po
Normal file
|
@ -0,0 +1,282 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Catalan
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: ca\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Fons"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "El tema predeterminat 2015 és net, centrat en el blog, i dissenyat amb claredat. La seva tipografia simple i senzilla, es llegeix clarament en una àmplia varietat de mides de pantalla i és adequada per múltiples llengües. L'hem dissenyat fent servir un primer enfocament a mòbils, és a dir, el contingut té un escenari predominant, independentment de si els visitants provenen d'un mòbil, una tauleta, un portàil o un ordinador de sobretaula."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Entrada anterior:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Entrada següent:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Següent"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Resultats de la cerca per a: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Mida sencera"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Etiquetes"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Categories"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Autor"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Publicat el"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Format"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Destacat"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Comentaris recents"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Comentaris anteriors"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navegació pels comentaris"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Blau"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Porpra"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Rosat"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Groc"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Fosc"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Predeterminat"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Color de fons de la capçalera i barra lateral"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "S'aplica a la capçalera de pantalles petites i a la barra lateral en pantalles amples."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Color del text de la capçalera i barra lateral"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Esquema de color base"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "El tema Twenty Fifteen necessita, almenys, de la versió 4.1 del WordPress. Esteu executant la versió %s. Actualitzeu i torneu a provar."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Publicat en</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Imatge següent"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Imatge anterior"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menú i ginys"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Vés al contingut"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "contrau el menú fill"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "amplia el menú fill"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "activa"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "activa"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "activa"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Afegix ginys aquí que apareixeran a la barra lateral."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Àrea de ginys"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Menú d'enllaços socials"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Menú principal"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Gràcies al %s."
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Sembla que no podem trobar el que busqueu. Potser el cercador us pot ajudar."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Res no coincideix amb els termes de cerca. Torneu-ho a provar amb algunes paraules claus diferents."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Preparats per a publicar la primera entrada? <a href=\"%s\">Comenceu aquí</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "No s'ha trobat res"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Edita"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Pàgines:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Continua la lectura de %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Els comentaris estan tancats."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Un pensament sobre “%2$s”"
|
||||
msgstr[1] "%1$s pensaments sobre “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Mostra totes les entrades de %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Publicat per"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Pàgina"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Pàgina següent"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Pàgina anterior"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Sembla que no s'ha trobat res aquí. Voleu intentar una cerca?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Buf! Aquesta pàgina no es pot trobar."
|
BIN
twentyfifteen/languages/cs.mo
Normal file
BIN
twentyfifteen/languages/cs.mo
Normal file
Binary file not shown.
283
twentyfifteen/languages/cs.po
Normal file
283
twentyfifteen/languages/cs.po
Normal file
|
@ -0,0 +1,283 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Czech
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:23+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: cs_CZ\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Pozadí"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Twenty Fifteen (2015) je nová výchozí šablona pro WordPress, kterou můžete použít zejména na osobní weby (a obecně blogování). Čistá a jasná grafika působí srozumitelně a přehledně, z typografického hlediska zase určitě oceníte dobře čitelný text a dostatečný kontrast. Jednoduchý a přímočarý vzhled také usnadňuje použití v rozmanitých jazykových verzích. Šablona se umí automaticky přizpůsobit zařízením s různou velikostí a byla tak navržena už od samého počátku, takže je hlavní obsah směřován na střed webu, a to bez ohledu na to, zda návštěvník přichází z mobilu, tabletu, notebooku nebo klasického počítače."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Předchozí příspěvek:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Předchozí"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Následující příspěvek:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Následující"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Výsledky vyhledávání: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Původní velikost:"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Štítky:"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Rubriky:"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Autor:"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Publikováno:"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Formát:"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Doporučeno"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Novější komentáře"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Starší komentáře"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navigace pro komentáře"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Modré"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Fialové"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Růžové"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Žluté"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Tmavé"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Základní"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Barva pozadí pro záhlaví a postranní panel"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Nastavení bude použito pro postranní panel pouze na dostatečně širokých zařízeních, jinak se projeví pouze v samotném záhlaví."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Barva textu pro záhlaví a postranní panel"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Barevné schéma šablony"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Šablona Twenty Fifteen vyžaduje alespoň WordPress 4.1, zatímco aktuálně používáte starší verzi %s. Nejdříve proveďte prosím aktualizaci a potom to můžete zkusit znovu."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Přiřazeno:</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Další obrázek"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Předchozí obrázek"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menu a widgety"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Přejít k obsahu webu"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "Skrýt podřazené položky"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "Zobrazit podřazené položky"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Rozmístěné widgety se budou zobrazovat v postranním panelu."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Oblast pro widgety"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Menu pro sociální sítě"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Základní menu"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Používáme %s (v češtině)."
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://cs.wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Požadovaný obsah se na webu bohužel nenachází. Můžete ale zkusit vyhledávání konkrétního klíčového slova."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Omlouváme se, ale zadaný výraz nebyl na webu nalezen. Zkuste prosím hledat znovu nějaké jiné klíčové slovo."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Chystáte se publikovat první příspěvek? <a href=\"%1$s\">Můžete začít rovnou zde</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Nenalezeno"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Upravit"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Stránky:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Pokračování textu %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Komentáře nejsou povoleny."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "1 komentář: „%2$s“"
|
||||
msgstr[1] "%1$s komentáře: „%2$s“"
|
||||
msgstr[2] "%1$s komentářů: „%2$s“"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Zobrazit archiv autora: %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Autor"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Stránka:"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Další stránka"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Předchozí stránka"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Patrně jste chtěli zobrazit stránku, která se na webu bohužel nenachází. Můžete ale zkusit vyhledávání konkrétního klíčového slova."
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Omlouváme se, ale stránka nebyla nalezena."
|
BIN
twentyfifteen/languages/cy.mo
Normal file
BIN
twentyfifteen/languages/cy.mo
Normal file
Binary file not shown.
289
twentyfifteen/languages/cy.po
Normal file
289
twentyfifteen/languages/cy.po
Normal file
|
@ -0,0 +1,289 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Welsh
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2017-11-12 16:09:08+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: cy_GB\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Cefndir"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Mae thema 2015 yn un glân a chlir ac wedi ei gynllunio'n bennaf ar gyfer blogiau. Mae teipograffeg Twenty Fifteen yn un syml a darllenadwy ar amrywiaeth eang o faint sgriniau ac yn addas ar gyfer ieithoedd lluosog. Rydym wedi ei chynllunio ar gyfer dyfeisiau symudol yn bennaf fel bod eich cynnwys yn amlycach, p'un bynnag yw eich ymwelwyr yn dod i'ch gwefan gan defnyddio llechen, gliniadur neu gyfrifiadur bwrdd gwaith."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Cofnod blaenorol:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Blaenorol"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Cofnod nesaf:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Nesaf"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Canlyniadau Chwilio am: %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Gadewch sylw<span class=\"screen-reader-text\"> ar %s</span> "
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Maint llawn"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Tagiau"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Categorïau"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Awdur"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Cofnodwyd ar"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Fformat"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Nodwedd"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Sylwadau Diweddarach"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Sylwadau Hŷn"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Symud o amgylch sylwadau"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Glas"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Porffor"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Pinc"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Melyn"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Tywyll"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Rhagosodiad"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Lliw Cefndir y Bar Ochr a'r Pennyn"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Ei osod i'r pennyn ar sgriniau bach ac i'r bar ochr ar sgriniau llydan."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Lliw Testun y Bar Ochr a'r Pennyn"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Cynllun Lliw'r Sail"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Mae Twenty Fifteen angen WordPress 4.1 o leiaf. Rydych yn rhedeg fersiwn %s. Diweddarwch a cheisiwch eto."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Cyhoeddwyd yn</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Delwedd Nesaf"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Delwedd Flaenorol"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Dewislen a theclynnau"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Mynd i'r cynnwys"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "cau'r ddewislen plentyn"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "ehangu'r ddewislen plentyn"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "ymlaen"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "ymlaen"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "ymlaen"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Ychwanegwch declynnau yma i ymddangos yn eich bar ochr."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Ardal Teclynnau"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Dewisiadau Dolenni Cymdeithasol"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Dewislen Cynradd"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Grymuso gan %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Nid ydym yn gallu canfod yr hyn rydych yn chwilio amdano, Beth am chwilio?"
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Does dim yn cydweddu eich geiriau chwilio. Ceisiwch eto gydag allweddeiriau gwahanol."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Barod i gyhoeddi eich cofnod cyntaf? <a href=\"%1$s\">Cychwyn fan hyn</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Heb Ganfod Dim"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Golygu"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Tudalennau:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Parhau i ddarllen %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Mae'r sylwadau wedi cau."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Un sylw ar “%2$s”"
|
||||
msgstr[1] "%1$s sylw ar “%2$s”"
|
||||
msgstr[2] "%1$s sylw ar “%2$s”"
|
||||
msgstr[3] "%1$s sylw ar “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Gweld pob cofnod gan %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Cyhoeddwyd gan"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Tudalen"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Tudalen nesaf"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Tudalen flaenorol"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Doedd dim byd fan hyn. Beth am chwilio?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Wps! Dim golwg o'r dudalen honno."
|
BIN
twentyfifteen/languages/da.mo
Normal file
BIN
twentyfifteen/languages/da.mo
Normal file
Binary file not shown.
282
twentyfifteen/languages/da.po
Normal file
282
twentyfifteen/languages/da.po
Normal file
|
@ -0,0 +1,282 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Danish
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: da_DK\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Baggrund"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Vores standardtema for 2015 er rent, blog-fokuseret og designet til klarhed. Den enkle og ligefremme typografi i Twenty Fifteen er læsbar på en bred vifte af skærmstørrelser og egnet til flere sprog. Vi har designet det ved hjælp af en mobile-first tilgang, hvilket betyder, at dit indhold er i centrum, uanset om dine besøgende benytter en smartphone, tablet, laptop eller stationær computer."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Forrige indlæg:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Forrige"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Næste indlæg:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Næste"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Søgeresultater for: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Original størrelse"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategorier"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Forfatter"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Udgivet i"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Format"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Udvalgt"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Nyere kommentarer"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Ældre kommentarer"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Kommentar navigation"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Blå"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Lilla"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Lyserød"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Gul"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Mørk"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Baggrundsfarve til header og sidebar"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Bruges til sidehovedet på små skærme og sidebaren på brede skærme."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Tekstfarve til header og sidebar"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Basis farveskema"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen kræver minimum WordPress version 4.1 Du bruger version %s. Opgrader venligst og prøv igen."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Udgivet i</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Næste billede"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Forrige billede"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menu og widgets"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Videre til indhold"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "skjul undermenu"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "udvid undermenu"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Tilføj widgets her for at vise dem i din sidebar."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Widget-område"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Menu til sociale links"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Primær menu"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Drevet af %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Det ser ud til, at vi ikke kan finde det, du leder efter. Måske kan en søgning hjælpe?"
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Beklager, men intet matchede dine søgeord. Prøv igen med nogle andre ord."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Klar til at udgive dit første indlæg? <a href=\"%1$s\">Start her</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Intet fundet"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Rediger"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Sider:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Læs mere %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Der er lukket for kommentarer."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "En kommentar til “%2$s”"
|
||||
msgstr[1] "%1$s kommentarer til “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Vis alle indlæg fra %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Udgivet af"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Side"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Næste side"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Forrige side"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Det ser ud til, at vi ikke kan finde det, du leder efter. Måske vil en søgning hjælpe."
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Hov! Siden, du prøver at tilgå, findes ikke."
|
BIN
twentyfifteen/languages/de.mo
Normal file
BIN
twentyfifteen/languages/de.mo
Normal file
Binary file not shown.
291
twentyfifteen/languages/de.po
Normal file
291
twentyfifteen/languages/de.po
Normal file
|
@ -0,0 +1,291 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in German
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2017-11-09 11:00:46+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: de\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "Farbe der Links in Header und Seitenleiste"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Hintergrund"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Unser Standard-Theme für 2015 ist reduziert, stellt das Bloggen in den Mittelpunkt und ist auf ein klares Erscheinungsbild ausgerichtet. Twenty Fifteens einfache, gradlinige Typografie lässt sich in verschiedenen Bildschirmauflösungen und zahlreichen Sprachen gut lesen. Wir sind bei unserem Design primär von mobilen Endgeräten ausgegangen, so dass deine Inhalte in den Mittelpunkt rücken – ganz gleich, ob deine Besucher die Seiten mit einem Smartphone, Tablet, Laptop oder Desktop-Computer ansehen."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Vorheriger Beitrag:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Vorheriger Beitrag"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Nächster Beitrag:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Weiter"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Suchergebnisse für: %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Schreibe einen Kommentar<span class=\"screen-reader-text\"> zu %s</span>"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Volle Größe"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Katgeorien"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Autor"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Veröffentlicht am"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Format"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Bemerkenswert"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Neuere Kommentare"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Ältere Kommentare"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Kommentar-Navigation"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Blau"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Violett"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Pink"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Gelb"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Dunkel"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Standard"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Header- und Seitenleisten-Hintergrundfarbe"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Wird bei kleinen Bildschirmen auf den Header angewendet und bei großen Bildschirmen auf die Sidebar."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Header- und Seitenleisten-Textfarbe"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Basis-Farbschema"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen erfordert mindestens WordPress in der Version 4.1. Du benutzt Version %s. Bitte aktualisiere dein WordPress und versuche es noch einmal."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Veröffentlicht in</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Nächstes Bild"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Vorheriges Bild"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menü und Widgets"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Zum Inhalt springen"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "Untermenü verbergen"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "Untermenü anzeigen"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Widgets hier hinzufügen, um sie in der Seitenleiste einzubauen."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Widgetbereich"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Social-Links-Menü"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Primäres Menü"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Stolz präsentiert von %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Es sieht so aus, als ob wir nicht das finden konnten, wonach du gesucht hast. Möglicherweise hilft eine Suche."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Entschuldigung, aber zu deinen Suchbegriffen wurde nichts passendes gefunden. Bitte versuche es mit anderen Stichworten noch einmal."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Bereit, um deinen ersten Beitrag zu veröffentlichen? <a href=\"%1$s\">Starte hier</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Nichts gefunden"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Seiten:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "%s weiterlesen"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Kommentare sind geschlossen."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Ein Gedanke zu „%2$s“"
|
||||
msgstr[1] "%1$s Gedanken zu „%2$s“"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Zeige alle Beiträge von %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Veröffentlicht von"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Seite"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Nächste Seite"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Vorherige Seite"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Wie es aussieht, wurde an dieser Stelle nichts gefunden. Möchtest du danach suchen?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Diese Seite konnte leider nicht gefunden werden."
|
BIN
twentyfifteen/languages/el.mo
Normal file
BIN
twentyfifteen/languages/el.mo
Normal file
Binary file not shown.
286
twentyfifteen/languages/el.po
Normal file
286
twentyfifteen/languages/el.po
Normal file
|
@ -0,0 +1,286 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Greek
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:23+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: el_GR\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "Χρώμα Συνδέσμων Κεφαλίδας και Πλευρικής Στήλης"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Φόντο"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Το προεπιλεγμένο θέμα 2015 ειναι καθαρό, εστιάζει στο ιστολόγιο, και είναι σχεδιασμένο για σαφήνεια. H απλή τυπογραφία του Twenty Fifteen είναι αναγνώσιμη σε μια ευρεία ποικιλία μεγεθών οθόνης, και είναι κατάλληλη για πολλές γλώσσες. Το σχεδιάσαμε προσέγγιζοντας το με πρώτη σκεψη το κινητο, που σημαίνει ότι το περιεχόμενό σας παίρνει το κέντρο της σκηνής, ανεξάρτητα από το εάν οι επισκέπτες σας φτάνουν από το smartphone, tablet, laptop, ή επιτραπέζιο υπολογιστή."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Προηγούμενο άρθρο:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Προηγούμενες"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Επόμενο άρθρο:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Επόμενες"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Αποτελέσματα αναζήτησης για : %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Πλήρη μέγεθος"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Ετικέτες"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Κατηγορίες"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ","
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Συντάκτης"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Δημοσιεύτηκε την"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Μορφή"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Προβεβλημένα"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Νεώτερα σχόλια"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Παλιότερα σχόλια"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Πλοήγηση σχολίων"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Μπλε"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Μωβ"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Ροζ"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Κίτρινο"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Σκούρο"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Προεπιλεγμένο"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Χρώμα Παρασκηνίου Επικεφαλίδας και Πλευρικής Στήλης"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Εφαρμόζεται στην επικεφαλίδα στις μικρότερες οθόνες και στην πλάγια στήλη στις πιο πλατιές."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Χρώμα Κειμένου Επικεφαλίδας και ΠΛάγιας Στήλης"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Βασικό Χρωματικό Θέμα"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Το Twenty Fifteen απαιτεί τουλάχιστον την έκδοση 4.1 του WordPress. Αυτή τη στιγμή χρησιμοποιείτε την έκδοση %s. Παρακαλούμε αναβαθμίστε και προσπαθήστε ξανά."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Δημοσιεύθηκε στο</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Επόμενη εικόνα"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Προηγούμενη εικόνα"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Μενού και μονάδες"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Μετάβαση σε περιεχόμενο"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "άνοιγμα υπό-μενού"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "επέκταση του μενού απόγονος"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "χωρίς-υποσύνολο"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "ενεργό"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "ενεργό"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "ενεργό"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Προσθέστε μονάδες εδώ ώστε να εμφανιστούν στην πλευρική στήλη."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Περιοχή Μονάδας"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Μενού Συνδέσμων Κοινωνικών Δικτύων"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Κύριο μενού"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Με την υποστήριξη του %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Φαίνεται ότι δεν βρήκαμε αυτό που ζητούσατε. Αν θέλετε, δοκιμάστε την αναζήτηση."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Λυπάμαι, αλλά τίποτα δεν βρέθηκε που ταιριάζει στους όρους αναζήτησης. Παρακαλώ προσπαθήστε ξανά με άλλες λέξεις κλειδιά."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Έτοιμοι για την πρώτη σας δημοσίευση; <a href=\"%1$s\">Πάμε</a>!"
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Κανένα αποτέλεσμα"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Επεξεργασία"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Σελίδες:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Συνεχίστε την ανάγνωση %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Τα σχόλια έχουν κλείσει."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Μια σκέψη σχετικά μέ το “%2$s”"
|
||||
msgstr[1] "%1$s σκέψεις σχετικά με το “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Δείτε όλα τα άρθρα από %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Δημοσιεύθηκε από "
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Σελίδα"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Επόμενη σελίδα"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Προηγούμενη σελίδα"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Φαίνεται ότι δεν βρέθηκε τίποτα σε αυτή την τοποθεσία. Μήπως να δοκιμάζατε μια αναζήτηση;"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ωπα! Αυτή η σελίδα δε βρέθηκε."
|
BIN
twentyfifteen/languages/eo.mo
Normal file
BIN
twentyfifteen/languages/eo.mo
Normal file
Binary file not shown.
282
twentyfifteen/languages/eo.po
Normal file
282
twentyfifteen/languages/eo.po
Normal file
|
@ -0,0 +1,282 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Esperanto
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:23+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: eo\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Fono"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Nia defaŭlta etoso de 2015 estas pura, blog-fokusita, kaj farita por klareco. La simpla, rekta tipografio de Twenty Fifteen estas legebla sur granda vario de ekranograndeco, kaj uzebla por multaj lingvoj. Ni faris ĝin uzante aliron, kiu estas unue por porteblaj iloj, kio signifas ke via enhavo havas la centron de la scenejo, sendepende de tio ĉu viaj vizitantoj alvenas per saĝfono, tabulkomputilo, portebla komputilo aŭ fiksa komputilo."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Antaŭa afiŝo:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Antaŭa"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Sekva afiŝo:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Sekva"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Serĉrezultoj por: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Plena grandeco"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Etikedoj"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategorioj"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Aŭtoro"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Publikigita je"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Aranĝo"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Elstarigita"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Pli novaj komentoj"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Pli malnovaj komentoj"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navigado tra komentoj"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Blua"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Violkolora"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Rozkolora"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Flava"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Malluma"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Defaŭlta"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Fona koloro por la kapo kaj la flankpanelo"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Aplikita al la kapo sur mallarĝaj ekranoj kaj al la flankpanelo sur larĝaj ekranoj."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Tekstokoloro de la kapo kaj la flankpanelo"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Baza kolorskemo"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen postulas almenaŭ WordPress version 4.1. Vi estas uzanta version %s. Bonvolu ĝisdatigi kaj reprovi. "
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Publikigita en</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Sekva bildo"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Antaŭa bildo"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menuo kaj kromprogrametoj"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Iri rekte al la enhavo"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "Maletendi infanan menuon"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "Etendi infanan menuon"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Aldonu kromprogametojn ĉi tien por ke ili aperu en la flankpanelo."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Kromprogrameta loko"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Menuo por sociaj ligoj"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Ĉefa menuo"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Fiere kreata de %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Ŝajnas, ke ni ne povas trovi tion. Eble serĉo helpos."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Bedaŭrinde, nenio kongruis kun viaj serĉaj kriterioj. Bonvolu provi denove, uzante malsamajn vortojn."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Ĉu preta por publikigi vian unuan afiŝon? <a href=\"%1$s\">Eku ĉi tie</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Nenio estis trovita"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Redakti"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Paĝoj:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Daŭrigi legi %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Komentado estas fermita."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Unu penso pri “%2$s”"
|
||||
msgstr[1] "%1$s pensoj pri “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Vidigi ĉiujn afiŝojn de %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Publikita de"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Paĝo"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Sekva paĝo"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Antaŭa paĝo"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Ŝajne nenio estis trovita je ĉi tiu loko. Ĉu eble provi serĉon?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ne eblas trovi tiun paĝon."
|
BIN
twentyfifteen/languages/es.mo
Normal file
BIN
twentyfifteen/languages/es.mo
Normal file
Binary file not shown.
291
twentyfifteen/languages/es.po
Normal file
291
twentyfifteen/languages/es.po
Normal file
|
@ -0,0 +1,291 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Spanish (Spain)
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2017-12-07 01:23:42+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: es\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "Color de los vínculos del encabezado y de la barra lateral"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Fondo"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Nuestro tema por defecto de 2015 es limpio, enfocado a los blogs y con un diseño claro. La tipografía de Twenty Finten es sencilla, clara y legible en una gran variedad de tamaños de pantalla, además de disponible en multitud de idiomas. Lo hemos diseñado pensando primero en su uso móvil, lo que implica que tu contenido ocupará el centro de la escena independientemente de como lleguen tus visitantes, ya sea desde un móvil inteligente, una tableta, un portátil o un ordenador de escritorio."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Entrada anterior:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Entrada siguiente:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Siguiente"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Resultados de búsqueda por: %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Deja un comentario<span class=\"screen-reader-text\"> en %s</span>"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Tamaño completo"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Etiquetas"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Categorías"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ","
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Autor"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Publicado el"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Formato"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Destacado"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Comentarios más recientes"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Comentarios anteriores"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navegación de comentarios"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Azul"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Morado"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Amarillo"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Oscuro"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Por Defecto"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Color de fondo de la cabecera y barra lateral"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Aplicado a la cabecera en pantallas pequeñas y a la barra lateral en pantallas anchas."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Color de texto de cabecera y barra lateral"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Esquema de color básico"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Finten requiere al menos la versión 4.1 de WordPress. Estás ejecutando la versión %s. Por favor, actualiza e inténtalo de nuevo."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Publicado en</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Siguiente imagen"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Previous Image"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menú y widgets"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Ir al contenido"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "plegar menú inferior"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "expande el menú inferior"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "sin derivada"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "activa"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "activa"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "activa"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Añade aquí los widgets para que aparezca en la barra lateral."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Área de widgets"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Menú de enlaces sociales"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Menú Principal"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Orgullosamente ofrecido por %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Parece que no podemos encontrar lo que estás buscando. Tal vez la búsqueda te pueda ayudar."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Lo siento pero no hay nada que se ajuste a tus criterios de búsqueda. Por favor, inténtalo de nuevo con palabras claves distintas."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "¿Preparado para publicar tu primera entrada? <a href=\"%1$s\">Empieza aquí</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "No se ha encontrado nada"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Páginas:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Continúa leyendo %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Los comentarios están cerrados."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] " %1$s comentario en “%2$s”"
|
||||
msgstr[1] " %1$s comentarios en “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Lee todas las entradas de %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Publicado por"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Página"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Próxima página"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Página anterior"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Parece que no hay nada en esa ubicación ¿quieres probar a buscar?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "¡Vaya! No se pudo encontrar esa página."
|
BIN
twentyfifteen/languages/eu.mo
Normal file
BIN
twentyfifteen/languages/eu.mo
Normal file
Binary file not shown.
282
twentyfifteen/languages/eu.po
Normal file
282
twentyfifteen/languages/eu.po
Normal file
|
@ -0,0 +1,282 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Basque
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: eu_ES\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Atzeko planoa"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "2015eko defektuzko itxura, garbia, blogetara zuzendutakoa eta garbitasunerako diseinatutakoa da. Twenty Fifteenen letra-mota hainbat pantailatan ondo ikusten da eta hizkuntza askotan ere ondo ikusten da. Diseinua lehenengo eskuko gailuetarako egin da horrela edukiak erdiko gunea artzen duelarik, berdin izanda eskuko telefonotik, tabletetik, ordenagailu eramangarritik edo mahai gaineko ordenagailutik sartu zure webgunera."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Aurreko sarrera:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Aurrekoa"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Hurrengo sarrera:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Hurrengoa"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Bilaketaren emaitzak: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Tamaina osoa"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Etiketak"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategoriak"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Egilea"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Argitaratze-data"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Formatua"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Destakatuta"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Erantzun berriagoak"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Erantzun zaharragoak"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Iruzkinetan zehar nabigatu"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Urdina"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Morea"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Arrosa"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Horia"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Iluna"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Defektuzkoa"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Goiburukoaren eta aldameneko barraren atzeko kolorea"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Goiburukoari aplikatzen zaio pantaila txikietan eta aldameneko barrari pantaila zabaletan."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Goiburuko eta aldameneko barrako testuaren kolorea"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Oinarrizko kolore-eskema"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteenek WordPressen 4.1 bertsioa behar du gutxienez. Zu %s bertsio erabiltzen ari zara. Eguneratu eta saiatu berriz mesedez."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Argitaratze-lekua</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Hurrengo irudia"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Aurreko irudia"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menua eta widgetak"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Edukira joan"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "Haurren menua itxi"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "Haurren menua zabaldu"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Gehitu hemen aldameneko barran agertuko diren widgetak"
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Widgeten Area"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Lotura sozialen menua"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "menu nagusia"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "%s(e)kin eginda"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Badirudi ezin izan dugula bila zabiltzana aurkitu. Erabil ezazu bilaketa mesedez."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Barkatu, ez dago emaitzik. Saiatu beste gauza bat bilatzen."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Lehenengo bidalketa argitaratzeko prest? <a href=\"%1$s\">Hemen hasi</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Ez da ezer aurkitu"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Editatu"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Orrialdeak:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Jarraitu %s irakurtzen"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Iruzkinak itxiak daude."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Erantzun bat “%2$s” sarreran"
|
||||
msgstr[1] "%1$s erantzun “%2$s” sarreran"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "%s-ren sarrera guztiak ikusi"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Argitaratzailea"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Orrialdea"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Hurrengo orrialdea"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Aurreko orrialdea"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Ez dago ezer helbide honetan. Saiatu bilaketa bat egiten."
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Oops! Orri hori ezin dugu aurkitu"
|
BIN
twentyfifteen/languages/fa.mo
Normal file
BIN
twentyfifteen/languages/fa.mo
Normal file
Binary file not shown.
290
twentyfifteen/languages/fa.po
Normal file
290
twentyfifteen/languages/fa.po
Normal file
|
@ -0,0 +1,290 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Persian
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2017-11-09 10:41:23+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: fa\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "رنگ پیوندهای نوار کناری و سربرگ"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "پسزمینه"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "تصویر پیشین:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "پیشین"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "نوشتۀ پسین:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "پسین"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "نتایج جستجو برای: %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "دیدگاهی <span class=\"screen-reader-text\"> برای %s</span> بگذارید"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "اندازه کامل"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "برچسبها"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "دستهها"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "نویسنده"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "ارسال شده در"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "ساختار"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "برگزیده"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "دیدگاههای تازهتر"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "دیدگاههای کهنهتر"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "هدایت دیدگاه"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "آبی"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "بنفش"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "صورتی"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "زرد"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "تیره"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "پیشفرض"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "رنگ پسزمینهی سربرگ و ستونکناری"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "در نمایشگرهای کوچک روی سربرگ اعمال میشود و در نمایشگرهای بزرگ روی ستونکناری."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "رنگ متن سربرگ و ستونکناری"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "شمای رنگ پایه"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "پوستهی دو هزار و پانزده حداقل به وردپرس ۴,۱ احتیاج دارد. شما از نگارش %s استفاده میکنید. لطفاً پس از بهروزرسانی دوباره تلاش کنید."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">منتشره در</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "عکس بعدی"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "عکس پیشین"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "فهرست و ابزارکها"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "رفتن به محتوا"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "بستن زیرفهرست"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "بازکردن زیرفهرست"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr " "
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "ابزارکها را به این بخش بیافزایید تا در ستونکناری نمایش داده شوند."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "محدوده ابزارک"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "فهرست شبکههای اجتماعی"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "فهرست اصلی"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "با افتخار نیرو گرفته از %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "بهنظر میرسد نمیتوانیم چیزی که شما به دنبال آن هستید را بیابیم. شاید جستجو بتواند به شما کمک کند."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "بدبختانه جستجوی شما نتیجهای در بر نداشت. با واژگانی دیگر جستجو کنید."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "میخواهید اولین نوشتهی خود را منتشر کنید؟ <a href=\"%1$s\">از اینجا آغاز کنید</a>. "
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "چیزی یافت نشد"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "ویرایش"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "برگهها:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "ادامه خواندن %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "امکان ثبت دیدگاه وجود ندارد."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "%1$s دیدگاه در مورد “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "دیدن همهٔ نوشتهها بر پایهٔ %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "منتشرشده توسط"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "برگه"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "برگه بعدی"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "برگه قبلی"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "به نظر میرسد چیزی در این مکان پیدا نشده. ممکن است جستجو کمک کند؟"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "اوه! این برگه پیدا نمیشه."
|
BIN
twentyfifteen/languages/fi.mo
Normal file
BIN
twentyfifteen/languages/fi.mo
Normal file
Binary file not shown.
287
twentyfifteen/languages/fi.po
Normal file
287
twentyfifteen/languages/fi.po
Normal file
|
@ -0,0 +1,287 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Finnish
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:23+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: fi\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Tausta"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Vuoden 2015 oletusteemamme on siisti ja suunniteltu blogeille. Twenty Fifteenin yksinkertainen ja suoraviivainen typografia on luettavaa monilla eri näyttökoolla, ja soveltuu useille eri kielille. Suunnittelussa on huomioitu ensin mobiililaitteet (mobile-first), eli sisältösi on pääosassa riippumatta siitä, katsellaanko sivustoasi kännykällä, tabletilla, kannettavalla tai pöytäkoneella."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Edellinen artikkeli:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Edellinen"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Seuraava artikkeli:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Seuraava"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Hakutulokset: %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Jätä kommentti<span class=\"screen-reader-text\"> artikkeliin %s</span>"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Täysikokoinen"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Avainsanat"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategoriat"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Kirjoittaja"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Julkaistu"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Muoto"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Suositeltu"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Uudemmat kommentit"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Vanhemmat kommentit"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Kommenttien selaus"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Sininen"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Violetti"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Vaaleanpunainen"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Keltainen"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Tumma"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Oletus"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Otsakkeen ja sivupalkin taustaväri"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Käytetään otsakkeessa pienillä näytöillä ja sivupalkissa isoilla näytöillä."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Otsakkeen ja sivupalkin tekstin väri"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Väriteema"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen vaatii vähintään WordPress-version 4.1. Käytät versiota %s. Ole hyvä ja päivitä ja kokeile uudelleen."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Julkaistu artikkelissa</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Seuraava kuva"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Edellinen kuva"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Valikko ja vimpaimet"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Siirry sisältöön"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "piilota alavalikko"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "näytä alavalikko"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Lisää tähän vimpaimia, jotka näkyvät sivupalkissa."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Vimpainalue"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Some-valikko"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Ensisijainen valikko"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Palvelun tarjoaa %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Emme valitettavasti löytäneet etsimääsi. Ehkä hakutoiminnosta on apua."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Pahoittelut mutta mitään ei löytynyt hakuehdoillasi. Kokeile uudelleen joillakin toisilla hakusanoilla."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Oletko valmis julkaisemaan ensimmäisen kirjoituksesi? <a href=\"%1$s\">Aloita tästä</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Mitään ei löytynyt"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Muokkaa"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Sivut:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Jatka artikkeliin %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Kommentointi on suljettu."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Yksi vastaus artikkeliiin “%2$s”"
|
||||
msgstr[1] "%1$s vastausta artikkeliin “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Näytä kaikki käyttäjän %s artikkelit"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Tietoa kirjoittajasta"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Sivu"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Seuraava sivu"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Edellinen sivu"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Näyttää siltä että täällä ei ole mitään. Kokeilepa hakua?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Hups! Etsimääsi sivua ei löytynyt."
|
BIN
twentyfifteen/languages/fr.mo
Normal file
BIN
twentyfifteen/languages/fr.mo
Normal file
Binary file not shown.
291
twentyfifteen/languages/fr.po
Normal file
291
twentyfifteen/languages/fr.po
Normal file
|
@ -0,0 +1,291 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in French (France)
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2017-11-04 10:36:01+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: fr\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "Couleur des liens de l’en-tête et de la barre latérale"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Arrière-plan"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Notre thème par défaut pour 2015 est pur, centré sur le blog et conçu pour être clair. Le typographie simple et directe de Twenty Fifteen est lisible sur une grand variété de tailles d'écrans, et adaptée à de nombreuses langues. Nous l'avons conçu avec la méthode \"le mobile avant tout\", ce qui signifie que votre contenu a une place centrale, qu'importe si le visiteur utilise un téléphone, une tablette, un ordinateur portable ou un ordinateur de bureau."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Article précédent :"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Précédent"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Article Suivant:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Suivant"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Résultat de Recherche pour: %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Laisser un commentaire<span class=\"screen-reader-text\"> sur %s</span>"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Taille réelle"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Mots-clés"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Catégories"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Auteur"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Publié le"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Format"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "à la Une"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Commentaires plus récents"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Commentaires plus anciens"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navigation dans les commentaires"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Bleu"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Violet"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Rose"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Jaune"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Sombre"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Valeur par défaut"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Couleur d’arrière-plan de l’en-tête et de la barre latérale"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Appliqué à l'en-tête sur les petits écrans, et à la barre latérale sur les grands écrans."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Couleur du texte de l’en-tête et de la barre latérale"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Jeu de couleurs de base"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen ne fonctionne qu'à partir de WordPress 4.1. Vous utilisez la version %s. Veuillez mettre à jour et réessayer."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Publié dans</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Image suivante"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Image précédente"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menu et widgets"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Accéder au contenu principal"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "fermer le sous-menu"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "ouvrir le sous-menu"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Ajoutez des widgets ici pour les faire apparaître dans votre barre latérale."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Zone de widgets"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Menu des liens de réseaux sociaux"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Menu principal"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Fièrement propulsé par %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Contenu Introuvable. Voulez-vous lancer une nouvelle recherche ?"
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Désolé, mais rien ne correspond à votre recherche. Veuillez réessayer avec des mots différents."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Prêt à publier votre premier article ? <a href=\"%1$s\">Lancez-vous</a> !"
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Rien de trouvé"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Modifier"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Pages :"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Continuer la lecture de %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Les commentaires sont fermés."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "%1$s réflexion au sujet de “%2$s”"
|
||||
msgstr[1] "%1$s réflexions au sujet de “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Voir tous les articles par %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Publié par"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Page"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Page suivante"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Page précédente"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Il semblerait que rien n’ai été trouvé à cette adresse. Essayez peut-être une recherche ?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Oups ! Cette page est introuvable."
|
BIN
twentyfifteen/languages/gl.mo
Normal file
BIN
twentyfifteen/languages/gl.mo
Normal file
Binary file not shown.
282
twentyfifteen/languages/gl.po
Normal file
282
twentyfifteen/languages/gl.po
Normal file
|
@ -0,0 +1,282 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Galician
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: gl_ES\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Fondo"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "O noso tema por defecto 2015 é limpo, centrado no blog, e deseñado para maior claridade. A Tipografía simple, pódese ler nunha ampla variedade de tamaños de pantalla, e adecuado para múltiples idiomas. Deseñámolo utilizando un enfoque móbil primeiro, é dicir, o seu contido toma o centro do escenario, con independencia de que os seus visitantes cheguen via smartphone, tablet, portátil ou computadora de escritorio."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Artigo anterior:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Anterior"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Artigo Seguinte:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Seguinte"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Resultados de busca por: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Tamaño completo"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Etiquetas"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Categorias"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Autor"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Publicado o"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Formato"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Destacado"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Comentarios recentes"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Comentarios máis antigos"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navegación de comentarios"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Azul"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Vermello"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Amarelo"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Escuro"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Por Defecto"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Cor de Fondo da Cabeceira e Barra lateral "
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Aplicado á cabeceira en pantallas pequenas e a barra lateral en pantallas anchas."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Cor do Texto da Cabeceira e Barra lateral"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Esquema de cores de base"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen require polo menos WordPress versión 4.1. Está executando a versión %s. Por favor, actualicea e ténteo de novo."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Publicado en</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Imaxe seguinte"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Imaxe anterior"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menú e Widgets"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Ir o contido"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "colapsar menú fillo"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "expandir menú fillo"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "aceso"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "aceso"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "aceso"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Engadir widgets aquí para aparecer na súa barra lateral."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Área de Widgets"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Menú de Conexións sociais "
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Menú principal"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Basado en %s traducido por egalego.com"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Asemella que non podemos atopar o que estás buscando. Tal vez a busca póidalle axudar."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Sentímolo, pero non hai nada que corresponda aos seus criterios de busca. Por favor, ténteo de novo con palabras distintas."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "¿Preparado para publica-lo teu primeiro artigo? <a href=\"%1$s\">Empeza aquí</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Non se atopou nada"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Paxinas:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Continúe lendo %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Comentarios pechados."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Unha opinión sobre “%2$s”"
|
||||
msgstr[1] "%1$s opiniones sobre “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Ver todas as mensaxes de %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Publicado por"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Páxina"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Páxina seguinte"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Páxina anterior"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Parece que non hai nada nesa ubicacion ¿queres probar a buscar?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Oops! Esta páxina non se pode atopar."
|
BIN
twentyfifteen/languages/he.mo
Normal file
BIN
twentyfifteen/languages/he.mo
Normal file
Binary file not shown.
291
twentyfifteen/languages/he.po
Normal file
291
twentyfifteen/languages/he.po
Normal file
|
@ -0,0 +1,291 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Hebrew
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-18 10:46:46+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: he_IL\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "צבע קישור בכותרת ובסרגל צדדי"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "רקע"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "ערכת העיצוב לשנת 2015 נקייה, ממוקדת בבלוגים, ומיועד לבהירות. לערכה טיפוגרפיה פשוטה, מותאמת למגוון רחב של גדלי מסך, ותומכת במספר רב של שפות. היא עוצבה בגישת mobile-first, כלומר התוכן נמצא במרכז הבמה, בין אם המבקרים משתמשים בטלפון חכם, מחשב לוח, מחשב נייד, או מחשב שולחני."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "רשומה קודמת:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "קודם"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "רשומה הבאה:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "הבא"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "תוצאות חיפוש עבור %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "להגיב<span class=\"screen-reader-text\"> על %s</span>"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "מסך מלא"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "תגיות"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "קטגוריות"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "מחבר"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "פורסם בתאריך"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "פורמט"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "פוסט נבחר"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "תגובות חדשות"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "תגובות ישנות"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "ניווט תגובות"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "כחול"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "סגול"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "וורוד"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "צהוב"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "שחור"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "ברירת מחדל"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "צבע רקע של התפריט העליון והתפריט הצדדי"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "חל על התפריט העליונה במסכים קטנים, והתפריט הצדדי במסכים רחבים."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "צבע טקסט של התפריט העליון והתפריט הצדדי"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "צבע בסיס"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "דרישת המינימום להפעלת ערכת העיצוב Twenty Thirteen היא וורדפרס בגרסה 4.1. האתר מפעיל וורדפרס בגרסה %s. יש לשדרג את גרסת וורדפרס ולנסות שנית."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">פורסם ב</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "תמונה הבאה"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "תמונה קודמת"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "תפריטים ווידג'טים"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "דלג לתוכן"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "הסתר תפריט"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "הצג תפריט"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "הוספת ווידג'טים שיוצגו בתפריט הצדדי."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "אזור ווידג'טים"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "תפריט קישורים חברתיים"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "תפריט ראשי"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "פועל על %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://he.wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "נראה כי לא ניתן למצוא את מה שחיפשת, אולי חיפוש יעזור."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "לא נמצאו תוצאות התואמות לביטוי החיפוש, ניתן לנסות שוב עם ביטויים אחרים."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "מוכן לפרסם את הפוסט הראשון שלך? <a href=\"%1$s\">התחל כאן</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "לא נמצא כלום"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "עריכה"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "עמודים:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "להמשיך לקרוא %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "סגור לתגובות."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "תגובה אחת בנושא \"%2$s\""
|
||||
msgstr[1] "%1$s תגובות בנושא ״%2$s\""
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "הצגת הפוסטים של %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "מאת"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "עמוד"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "עמוד הבא"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "עמוד קודם"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "נראה כי אין כאן כלום. אולי כדאי לנסות את אפשרות החיפוש."
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "העמוד לא נמצא."
|
BIN
twentyfifteen/languages/hr.mo
Normal file
BIN
twentyfifteen/languages/hr.mo
Normal file
Binary file not shown.
283
twentyfifteen/languages/hr.po
Normal file
283
twentyfifteen/languages/hr.po
Normal file
|
@ -0,0 +1,283 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Croatian
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2017-12-07 15:25:44+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: hr\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Pozadina"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Naša 2015 izvorna tema je čista, blog fokusirana i dizajnirana za jasnoću. Jednostavna, izravna tipografija teme Twenty Fifteen, čitljiva je na širokom spektru ekrana različitih veličina, i prigodna za sve jezike. Dizajnirali smo ju koristeći ‘mobile-first’ pristup, što znači da je fokus na vašem sadržaju, bez obzira da li posjetitelji dolaze s pametnim telefonima, tabletima, prijenosnima ili stolnim računalima."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Prethodna objava:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Prethodno"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Sljedeća objava:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Sljedeće"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Rezultati Pretrage za: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Pun veličina"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Oznake"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategorije"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Autor"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Objavljeno dana"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Format"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Istaknuto"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Noviji komentari"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Stariji komentari"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navigacija komentara"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Plavo"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Ljubičasto"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Roza"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Žuto"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Tamno"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Izvorno"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Pozadinska boja zaglavlja i bočne trake"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Primjenjuje se na zaglavlje na malim zaslonima i bočnoj traci na širokim zaslonima."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Boja teksta zaglavlja i bočne trake"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Osnovna shema boja"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen zahtijeva najmanje WordPress 4.1. Koristite inačicu %s. Ažurirajte i pokušajte ponovno."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Objavljeno u</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Sljedeća slika"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Prethodna slika"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Izbornik i widgeti"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Idi na sadržaj"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "zatvori podizbornik"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "proširi podizbornik"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "uklj."
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "uklj."
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "uklj."
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Ovdje dodajte widgete koji će se pojaviti u bočnoj traci."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Widget područje"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Izbornik za poveznice društvenih mreža"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Primarni Izbornik"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Ponosno pokreće %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Izgleda da ne možemo pronaći ono što vam treba. Možda pretraga pomogne."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Žalim, ali nije pronađeno ništa što odgovara vašim kriterijima pretraživanja. Molimo pokušajte ponovno s nekim drugim ključnim riječima."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Spremni ste za objavu vaše prve objave? <a href=\"%1$s\">Započnite ovdje</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Ništa nije pronađeno"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Uredi"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Stranice:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Nastavi čitati %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Komentari su zatvoreni."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Jedna misao o “%2$s”"
|
||||
msgstr[1] "%1$s misli o “%2$s”"
|
||||
msgstr[2] "%1$s misli o “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Pogledaj sve objave od %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Objavio"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Stranica"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Sljedeća stranica"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Prethodna stranica"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Izgleda da se ništa ne nalazi na ovoj lokaciji. Možda da probate pretragu?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ups!. Tu stranicu nije moguće pronaći."
|
BIN
twentyfifteen/languages/hu.mo
Normal file
BIN
twentyfifteen/languages/hu.mo
Normal file
Binary file not shown.
291
twentyfifteen/languages/hu.po
Normal file
291
twentyfifteen/languages/hu.po
Normal file
|
@ -0,0 +1,291 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Hungarian
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2017-12-08 01:44:43+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: hu\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "Fejrész és oldalsáv hivatkozás színe"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Háttér"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Az alapértelmezett Twenty Fiften (2015) sablonunk áttekinthető, a blogolást helyezi a középpontba, és a megjelenésében fontos figyelmet kapott a jól láthatóság. A Twenty Fiften egyszerű, tiszta tipográfiája biztosítja a kiváló olvashatóságot bármilyen méretű képernyőn, és többnyelvű megjelenéssel rendelkezik. Elsődleges megközelítésünk az, hogy kiváló megjelenítést biztosítsunk mobil eszközökön, a tartalmat helyezzük a középpontba, függetlenül attól, hogy a látogató okostelefonon, tableten, laptopon vagy asztali számítógépen érkezik a honlapra."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Korábbi bejegyzések:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Előző"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Következő bejegyzések:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Következő "
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Keresési eredmény a(z) %s kifejezésre"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Hozzászólás a(z) <span class=\"screen-reader-text\">%s</span> bejegyzéshez"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Teljes méret"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Címke"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategória"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Szerző"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Közzétéve"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Forma"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Kiemelt"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Újabb hozzászólás"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Korábbi hozzászólás"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Hozzászólás navigáció"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Kék"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Lila"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Rózsaszín"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Sárga"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Sötét"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Alapértelmezett"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Fejrész és oldalsáv háttérszín"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Kis képernyő méretnél a fejlécre,és az oldalsávra széles képernyőn."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Fejrész és oldalsáv szövegszín"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Alap színséma"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "A Twenty Fifteen használatához minimálisan a WordPress 4.1 verziója szükséges. Ezen a honlapon a %s verzió üzemel. A frissítést követően ismételjük meg a műveletet."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Kategória</span>: <span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Következő kép"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Előző kép"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menü és widgetek"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Tartalomhoz"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "almenü összezárása"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "almenü szétnyitása"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "be"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Az oldalsávon történő megjelenítéshez itt kell widgetet hozzáadni."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Widget terület"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Közösségi hivatkozások menü"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Elsődleges menü"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Köszönjük %s!"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Úgy tűnik, nem találtuk meg amit kerestünk. :) Talán, egy újabb keresés segíthetne..."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Elnézést, nem találunk a keresési feltételeknek megfelelő eredményt. Másik kulcsszóval, kifejezéssel újra kellene kezdeni egy keresést."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Készen állunk az első bejegyzés közzétételére? <a href=\"%1$s\">Kezdőlépések</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Nincs találat"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Szerkesztés"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Oldalak:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "%s részletei..."
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Hozzászólások lezárva"
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "%1$s hozzászólás a(z) “%2$s” bejegyzéshez"
|
||||
msgstr[1] "%1$s hozzászólás a(z) “%2$s” bejegyzéshez"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Minden bejegyzés megjelenítése: %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Szerző:"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Oldal"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Következő oldal"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Előző oldal"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Úgy tűnik, ezen a helyen nem található amit kerestünk. Talán egy újabb keresés segíthetne."
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "A keresett oldal nem található."
|
BIN
twentyfifteen/languages/hy.mo
Normal file
BIN
twentyfifteen/languages/hy.mo
Normal file
Binary file not shown.
287
twentyfifteen/languages/hy.po
Normal file
287
twentyfifteen/languages/hy.po
Normal file
|
@ -0,0 +1,287 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Armenian
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: hy_AM\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Խորապատկեր"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Երկու հազար տասնինգ թվականի լռելյան տեսաձևը կենտրոնացված է բլոգերի վրա և բնորոշվում է իր պարզությամբ։ Դրա հասարակ, պարզ տպագրությունը ընթեռնելի է տարբեր չափերի էկրանների վրա, և հարմար է տարբեր լեզուների համար։ Մենք մշակել ենք այն՝ մեր ուշադրությունը հիմնականում դարձնելով՝ շարժական սարքավորումների համար դրա հարմարավետությանը, տեղադրելով ձեր բովանդակությունը կենտրոնական դիրքերում, անկախ այն համգամանքից, թե ձեր կայքը դիտվում է սմարթֆոնով, պլանշետով, նոութբուկով կամ համակարգչով։"
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Նախորդ գրառում՝"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Նախորդ"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Հաջորդ գրառում՝"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Հաջորդ"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "%s որոնման արդյունքները"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Թողնել մեկնաբանություն<span class=\"screen-reader-text\"> %s-ի համար</span>"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Ամբողջ չափով"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Պիտակներ"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Կարգեր"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Հեղինակ"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Հրատարակված՝"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Ձևաչափ"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Ընտրյալ"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Ավելի նոր մեկնաբանություններ"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Ավելի հին մեկնաբանություններ"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Մեկնաբանությունների նավարկումը"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Կապույտ"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Մանուշակագույն"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Վարդագույն"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Դեղին"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Մուգ"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Լռելիությամբ"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Էջագլխի և կողագոտու խորքի գույնը"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Կիրառվում է էջագլխի նկատմամբ փոքր էկրանների վրա, և կողագոտու նկատմամբ՝ մեծ էկրանների վրա։"
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Էջագլխի և կողագոտու գրվածք գույնը"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Հիմնական գունային գամմա"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Երկու հազար տասնհինգ տեսաձևը պահանջում է WordPress-ի առնվազն 4.1 տարբերակը։ Ձեր ընթացիկ տարբերակն է՝ %s։ Խնդրում ենք արդիացնել և կրկին փորձել։"
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Հրատարակված</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Հաջորդ պատկեր"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Նախորդ պատկեր"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Ընտրացանկը և ցուցականկերը"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Անցնել բովանդակությանը"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "կոծկել ենթացանկը"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "ընդարձակել ենթացանկը"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Ավելացրեք այստեղ ցուցանակներ՝ կողագուտում ցուցադրելու համար։"
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Ցուցանակների տարածություն"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Սոցիալական հղումների ընտրացանկը"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Հիմնական ընտրացանկ"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Հպարտությամբ օժանդակվում է %s -ով"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Կարծես թե մենք չենք գտնում ձեր փնտրածը։ Միգուցե փորձեք ա՞յլ բան որոնել։"
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Ցավոք, ձեր որոնման հարցումով ոչինչ չի գտնվել։ Փորձեք որոնել այլ հիմնաբառերով։"
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Պատրա՞ստ եք հրատարակել առաջին գրառումը։ <a href=\"%1$s\">Գնացի՛նք</a>։"
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Ոչինչ չի գտնվել"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Խմբագրել"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Էջեր՝"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Շարունակել կարդալ %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Մեկնաբանությունները փակված են։"
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Մեկ կարծիք «%2$s»-ի վերաբերյալ"
|
||||
msgstr[1] "%1$s կարծիք «%2$s»-ի վերաբերյալ"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Դիտել %s-ի բոլոր գրառումները"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Հրատարակված"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Էջ"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Հաջորդ էջ"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Նախորդ էջ"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Այս հասցեով ոչինչ չի գտնվել։ Փորձեք օգտվել որոնման համակարգից։"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ապսո՜ս, էջը չի գտնվել։"
|
BIN
twentyfifteen/languages/id.mo
Normal file
BIN
twentyfifteen/languages/id.mo
Normal file
Binary file not shown.
286
twentyfifteen/languages/id.po
Normal file
286
twentyfifteen/languages/id.po
Normal file
|
@ -0,0 +1,286 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Indonesian
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:23+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: id\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "Warna Header dan Tautan Bilah Sisi"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Latar belakang"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Tema bawaan 2015 kami rapi, berorientasi blog, dan dirancang untuk kejelasan. Tipografi Twenty Fifteen yang simpel dan tegas mudah dibaca pada berbagai ukuran layar, dan cocok untuk berbagai bahasa. Kami merancangnya dengan pendekatan mobile-first, artinya konten Anda berada di area tengah dari manapun pengunjung mengaksesnya baik ponsel pintar, tablet, laptop, maupun komputer meja."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Pos sebelumnya:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Sebelumnya"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Pos berikutnya:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Selanjutnya"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Hasil Pencarian untuk: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Ukuran penuh"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Tag"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategori"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Penulis"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Diposkan pada"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Format"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Andalan"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Komentar Berikutnya"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Komentar Sebelumnya"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navigasi komentar"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Biru"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Ungu"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Pink"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Kuning"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Gelap"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Bawaan"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Warna Latar Header dan Bilah Sisi"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Diterapkan ke header pada layar kecil dan bilah sisi pada layar lebar."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Warna Teks Header dan Bilah Sisi"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Skema Warna Dasar"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen membutuhkan minimal WordPress versi 4.1. Anda menjalankan versi %s. Silakan upgrade dan coba lagi."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Diterbitkan di</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Gambar Berikutnya"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Gambar sebelumnya"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menu dan widget"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Lanjut ke konten"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "persempit menu anak"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "perlebar menu anak"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "nyala"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "nyala"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "nyala"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Tambahkan widget ke sini agar ditampilkan pada bilah sisi."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Area Widget"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Menu Tautan Sosial"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Menu Utama"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Dengan bangga bertenaga %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Rupanya kami tidak dapat menemukan apa yang Anda cari. Mungkin pencarian dapat membantu."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Maaf, tidak ada yang cocok dengan kata yang anda cari. Silahkan coba lagi dengan kata kunci yang lain"
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Sudah siap menerbitkan pos pertamamu? <a href=\"%1$s\">Mulai di sini</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Tidak ada yang ditemukan"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Sunting"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Halaman:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Lanjutkan membaca %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Komentar ditutup."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Satu tanggapan untuk “%2$s”"
|
||||
msgstr[1] "%1$s tanggapan untuk “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Tampilkan semua pos berdasarkan %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Diterbitkan oleh"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Laman"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Laman berikutnya"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Laman sebelumnya"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Sepertinya tidak ditemukan apapun di sini. Mungkin coba pencarian?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Ups! Laman tersebut tak ditemukan."
|
BIN
twentyfifteen/languages/is.mo
Normal file
BIN
twentyfifteen/languages/is.mo
Normal file
Binary file not shown.
287
twentyfifteen/languages/is.po
Normal file
287
twentyfifteen/languages/is.po
Normal file
|
@ -0,0 +1,287 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Icelandic
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 100 != 1 && n % 100 != 21 && n % 100 != 31 && n % 100 != 41 && n % 100 != 51 && n % 100 != 61 && n % 100 != 71 && n % 100 != 81 && n % 100 != 91);\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: is\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Bakgrunnur"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Þemað okkar fyrir 2015 er stílhreint, blogg-fókusað, og hannað með skýrleika í huga. Einföld leturgerð Twenty Fifteen er auðlesanleg á fjölda skjástærða og hentar fyrir mörg tungumál. Við hönnuðum það fyrst fyrir farsíma, sem þýðir að efnið þitt er í aðalhlutverki, óháð því hvort lesendur eru með snjallsíma, spjaldtölvu, fartölvu eða borðtölvu."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Síðasta grein:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Til baka"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Næsta grein:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Næst"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Leitarniðurstöður fyrir: %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Skrifa athugasemd<span class=\"screen-reader-text\"> við %s</span>"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Upprunaleg stærð"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Efnisorð"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Flokkar"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Höfundur"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Birt þann"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Snið"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Efst á baugi"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Nýrri athugasemdir"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Eldri athugasemdir"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Leiðarkerfi athugasemda"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Blár"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Fjólublár"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Bleikur"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Gulur"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Dökkur"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Sjálfgildur"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Bakgrunnslitur hauss og hliðarslár"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Virkjað fyrir haus á minni skjám og á hliðarslá á víðari skjám."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Leturlitur í haus og hliðarslá"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Grunn litaþema"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen þarf WordPress útgáfu 4.1 eða nýrra. Þú ert að keyra útgáfu %s. Vinsamlegast uppfærðu og reyndu aftur."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Birt í</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Næsta mynd"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Fyrri mynd"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Valmynd og síðuhlutir"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Fara að efni"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "loka undirvalmynd"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "opna undirvalmynd"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "virkt"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "virkt"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "virkt"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Bættu við síðuhlutum hér til þess að birta þá í hliðarslánni þinni."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Svæði síðuhluta"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Valmynd samfélagsmiðlatengla"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Aðalvalmynd"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Keyrt með stolti á %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Við finnum ekki það sem þú leita að. Kannski gæti leitin hjálpað."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Því miður, ekkert fannst sem passaði við leitarskilyrðin. Vinsamlega reyndu aftur með öðrum leitarorðum."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Tilbúinn að gefa út þína fyrstu færslu? <a href=\"%1$s\">Byrjaðu hérna</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Ekkert fannst"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Breyta"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Síður:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Halda áfram að lesa: %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Lokað er fyrir athugasemdir."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Ein athugasemd á “%2$s”"
|
||||
msgstr[1] "%1$s athugasemdir á “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Skoða allar færslur eftir %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Gefið út af"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Síða"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Næsta síða"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Fyrri síða"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Það lýtur út fyrir að ekkert finnist á þessum slóðum. Spurning um að reyna leit?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Úbbs! Þessi síða fannst ekki."
|
BIN
twentyfifteen/languages/it.mo
Normal file
BIN
twentyfifteen/languages/it.mo
Normal file
Binary file not shown.
286
twentyfifteen/languages/it.po
Normal file
286
twentyfifteen/languages/it.po
Normal file
|
@ -0,0 +1,286 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Italian
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2017-11-09 14:04:08+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: it\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "Colore link intestazione e barra laterale"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Sfondo"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Il nostro tema predefinito per il 2015 è pulito, incentrato sul blog, e progettato per essere chiaro. La tipografia di Twenty Fifteen, semplice e diretta, è leggibile su schermi di varie larghezze, e si adatta a lingue differenti. L'abbiamo progettato utilizzando un approccio mobile-first, facendo sì che il contenuto avesse la priorità, a prescindere da quale dispositivo arrivino i tuoi visitatori, smartphone, tablet, laptop o computer desktop."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Articolo precedente:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Precedente"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Articolo successivo:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Avanti"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Risultati ricerca per: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Dimensione reale"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Tag"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Categorie"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ","
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Autore"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Scritto il"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Formato"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "In evidenza"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Nuovi commenti"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Commenti più vecchi"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Navigazione commenti"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Blu"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Porpora"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Rosa"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Giallo"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Scuro"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Default"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Colore di sfondo della testata e della barra laterale"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Applicato all'header su schermi piccoli ed alla sidebar su schermi ampi."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Colore del testo della testata e della barra laterale"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Schema colore di base"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen richiede almeno WordPress 4.1. Al momento la versione installata è la %s. Per favore, aggiorna WordPress e riprova."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Pubblicato in</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Immagine successiva"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Immagine precedente"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Menu e widget"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Vai al contenuto"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "chiudi i menù child"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "apri i menù child"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "I widget aggiunti qui appariranno nella tua barra laterale."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Area Widget"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Menù social link"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Menu principale"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Orgogliosamente fornito da %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Non riusciamo a trovare quello che cerchi. Forse eseguire una ricerca potrebbe essere di aiuto."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Spiacente, nulla corrisponde ai termini della tua ricerca. Riprova con parole chiave diverse."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Sei pronto a pubblicare il tuo primo articolo? <a href=\"%1$s\">Comincia da qui</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Nessun risultato"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Modifica"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Pagine: "
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Continua a leggere %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "I commenti sono chiusi."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "%1$s pensiero su “%2$s”"
|
||||
msgstr[1] "%1$s pensieri su “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Leggi tutti gli articoli di %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Pubblicato da"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Pagina"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Pagina successiva"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Pagina precedente"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Sembra che non ci sia nulla. Provare una ricerca?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Oops! La pagina non è stata trovata."
|
BIN
twentyfifteen/languages/ja.mo
Normal file
BIN
twentyfifteen/languages/ja.mo
Normal file
Binary file not shown.
290
twentyfifteen/languages/ja.po
Normal file
290
twentyfifteen/languages/ja.po
Normal file
|
@ -0,0 +1,290 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Japanese
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:23+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: ja_JP\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "ヘッダー・サイドバーリンク色"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "背景"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "2015年のデフォルトテーマはクリーンでブログ向けに、分かりやすさを考えて設計されています。Twenty Fifteen の単純明快なタイポグラフィは多様な画面サイズで読みやすく、複数の言語に適しています。このテーマは「モバイル・ファースト」アプローチを使ってデザインしました。つまり、サイトの訪問者がスマートフォン・タブレット・ノートまたはデスクトップパソコンのどれを使ってサイトに訪れていても、あなたのコンテンツに最も注目が注がれるようになっているという意味です。"
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "過去の投稿:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "前"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "次の投稿:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "次"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "検索結果: %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "<span class=\"screen-reader-text\">%sに</span>コメント"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "フルサイズ"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "タグ"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "カテゴリー"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "作成者"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "投稿日:"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "フォーマット"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "注目"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "新しいコメント"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "過去のコメント"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "コメントナビゲーション"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "ブルー"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "紫"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "ピンク"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "黄"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "ダーク"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "デフォルト"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "ヘッダー・サイドバー背景色"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "小さい画面上のヘッダーと、幅広い画面上のサイドバーに適用されます。"
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "ヘッダー・テキスト色"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "ベース配色"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen には WordPress バージョン 4.1 以上が必要です。現在のバージョンは %s です。アップグレードしてもう一度お試しください。"
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"post-title\">%title</span> <span class=\"meta-nav\">内で公開</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "次の画像"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "前の画像"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "メニューとウィジェット"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "コンテンツへ移動"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "サブメニューを閉じる"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "サブメニューを展開"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "サイドバーに表示させるにはここにウィジェットを追加してください。"
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "ウィジェット エリア"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "ソーシャルリンクメニュー"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "メインメニュー"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Proudly powered by %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://ja.wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "お探しのコンテンツを見つけられませんでした。検索をお試しください。"
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "ご指定の検索条件に一致する投稿がありませんでした。他のキーワードでもう一度検索してみてください。"
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "最初の投稿をする準備ができましたか ? <a href=\"%1$s\">ここからスタート</a>してください。"
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "何も見つかりませんでした。"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "編集"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "ページ:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "続きを読む %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "コメントは受け付けていません。"
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "“%2$s” への%1$s件のフィードバック"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "%s の投稿をすべて表示"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "投稿者:"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "固定ページ"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "次のページ"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "前のページ"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "こちらには何もありません。検索をお試しください。"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "ページが見つかりません。"
|
BIN
twentyfifteen/languages/ko.mo
Normal file
BIN
twentyfifteen/languages/ko.mo
Normal file
Binary file not shown.
285
twentyfifteen/languages/ko.po
Normal file
285
twentyfifteen/languages/ko.po
Normal file
|
@ -0,0 +1,285 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Korean
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: ko_KR\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "헤더 및 사이드바 링크 색상"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "배경"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "우리의 2015 기본 테마는 깨끗하고 블로그 중심이며 선명함을 목표로 디자인 됐습니다. Twenty Fifteen의 단순하고 직관적인 타이포그래피는 다양한 화면 크기에서 가독성이 높으며 다중 언어에 적합합니다. 모바일 우선 접근 방식을 사용해 디자인했으며 이것은 방문자가 스마트폰, 태블릿, 노트북, 또는 데스크탑 컴퓨터와 같은 다양한 기기로 접속해도 콘텐츠가 중앙에 위치한다는 것을 의미합니다."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "이전 글:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "이전"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "다음 글:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "다음"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "검색 결과: %s"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "전체 크기"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "태그"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "카테고리"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "글쓴이"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "작성일자"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "글 형식"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "특성"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "다음 댓글"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "이전 댓글"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "댓글 탐색"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "파란색"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "보라"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "분홍"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "노랑"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "어두움"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "기본"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "헤더 및 사이드바 배경 색상"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "작은 화면에서는 헤더에, 큰 화면에서는 사이드바에 적용됩니다."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "헤더 및 사이드바 텍스트 색상"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "기본 색상 구조"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen은 최소한 워드프레스 4.1 버전이 필수입니다. 현재 %s 버전을 사용 중입니다. 업그레이드 하고 다시 해주세요."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">발행됨</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "다음 이미지"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "이전 이미지"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "메뉴와 위젯"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "콘텐츠로 바로가기"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "하위 메뉴 축소"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "하위 메뉴 확장"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "서브셋 없음"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "켜기"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "켜기"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "켜기"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "사이드바에 나타나도록 하려면 여기에 위젯을 추가하세요."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "위젯 영역"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "소셜 링크 메뉴"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "주 메뉴"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "%s의 지원을 받습니다"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "찾고 있는 것을 찾을 수 없는 것 같습니다. 검색이 도움이 될 수도 있습니다."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "죄송하지만 검색어와 일치하는 것이 없습니다. 다른 검색어로 다시 시도해보세요."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "첫 번째 글을 발행할 준비가 됐나요? <a href=\"%1$s\">여기서 시작하세요</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "찾을 수 없음"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "편집"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "페이지:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "%s 더보기"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "댓글이 마감 됐습니다."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "“%2$s”의 %1$s개의 생각"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "%s님의 모든 글 보기"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "글쓴이"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "페이지"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "다음 페이지"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "이전 페이지"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "해당 위치에서 찾을 수 있는 것이 아무 것도 없는 것 같습니다. 검색을 해보시겠습니까?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "이런! 해당 페이지를 찾을 수 없습니다."
|
BIN
twentyfifteen/languages/lt.mo
Normal file
BIN
twentyfifteen/languages/lt.mo
Normal file
Binary file not shown.
292
twentyfifteen/languages/lt.po
Normal file
292
twentyfifteen/languages/lt.po
Normal file
|
@ -0,0 +1,292 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Lithuanian
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2017-12-14 11:04:37+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: lt\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "Poraštės ir šoninės srities nuorodų spalva"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Fono nustatymai"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "WordPress tema \"2015\" yra minimalistinės struktūros, orientuota į tinklaraščius, jos dizainas aiškus ir neperkrautas. Paprasta tipografija yra lengvai įskaitoma įvairiuose ekranų dydžiuose bei tinkama naudoti su daugeliu kalbų. Ši tema buvo kuriama taikant \"mobile-first\" požiūrį - tai reiškia, kad Jūsų turinys yra svarbiausias ir gerai matomas, nepaisant ar lankytojai skaitys jį išmaniuosiuose telefonuose, planšetiniuose, nešiojamuosiuose ar stacionariuose kompiuteriuose."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Ankstesnis įrašas:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Ankstesnis"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Kitas įrašas"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Kitas"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Paieškos rezultatai pagal: %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Komentuokite įrašą<span class=\"screen-reader-text\"> %s</span>"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Visas dydis"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Žymos"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategorijos"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Autorius"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Paskelbta"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Formatas"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Rekomenduojama"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Naujesni komentarai"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Senesni komentarai"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Komentarų nuorodos"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Mėlyna"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Violetinė"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Rožinė"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Geltona"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Tamsi"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Numatytoji"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Antraštės ir šoninės srities fono spalva"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Rodoma antraštėje (header) mažuose ekranuose ir šoninėje srityje (sidebar) dideliuose ekranuose."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Antraštės ir šoninės srities teksto spalva"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Pagrindinė spalvų schema"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen būtina bent 4.1 WordPress versija. Jūs naudojate %s - atsinaujinkite ir pabandykite dar kartą."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Paskelbta įraše:</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Kitas paveikslėlis"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Ankstesnis paveikslėlis"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Meniu ir valdikliai"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Eiti prie turinio"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "suskleisti sub-meniu"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "išskleisti sub-meniu"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Sudėkite valdiklius čia, ir jie atsiras Jūsų tinklalapio šoninėje srityje."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Valdiklių Zona"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Socialinių nuorodų meniu"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Pagrindinis meniu"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Sistema: %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Atrodo mes negalime rasti to ko jūs ieškote. Gal paieška padės."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Deja, nieko panašaus rasti nepavyko. Pabandykite įvesti kitokį paieškos raktažodį."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Pasirengę paskelbti pirmąjį įrašą? <a href=\"%1$s\">Pradėkite čia</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Nepavyko rasti"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Redaguoti"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Puslapiai:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Skaityti toliau: %s"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Komentavimo galimybė išjungta."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "%1$s mintis apie “%2$s”"
|
||||
msgstr[1] "%1$s mintys apie “%2$s”"
|
||||
msgstr[2] "%1$s minčių apie “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Peržiūrėti visus įrašus, kuriuos parašė %s"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Paskelbė"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Puslapis"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Kitas puslapis"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Ankstesnis puslapis"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Nieko nerasta. Pasinaudokite paieška."
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Deja, toks puslapis nerastas."
|
BIN
twentyfifteen/languages/lv.mo
Normal file
BIN
twentyfifteen/languages/lv.mo
Normal file
Binary file not shown.
292
twentyfifteen/languages/lv.po
Normal file
292
twentyfifteen/languages/lv.po
Normal file
|
@ -0,0 +1,292 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Latvian
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: lv\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:110
|
||||
msgid "Header and Sidebar Link Color"
|
||||
msgstr "Galvenes un sānjoslu fona krāsa"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "Fons"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "Mūsu 2015. gada noklusējuma tēma ir tīra, ar akcentu uz skaidrību, domāta blogam. Twenty Fifteen vienkāršais, saprotamais salikums ir lasāms uz dažādiem ekrāna izmēriem, un piemērots izmantošanai vairākās valodās. To veidojot mēs vispirms domājām par mobilo izmantojumu, proti, saturs atradīsies lapas centrā, neatkarīgi no tā, vai jūsu apmeklētāji izmantos viedtālruni, planšetdatoru, klēpjdatoru vai galda datoru."
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "Iepriekšējais raksts:"
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "Iepriekšējais"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "Nākamais raksts:"
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "Nākamais"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "Meklēšanas rezultāti: %s"
|
||||
|
||||
#. translators: %s: post title
|
||||
#: inc/template-tags.php:123
|
||||
msgid "Leave a comment<span class=\"screen-reader-text\"> on %s</span>"
|
||||
msgstr "Rakstiet komentāru<span class=\"screen-reader-text\"> on %s</span>"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "Pilnais izmērs"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "Birkas"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "Kategorijas"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "Autors"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "Publicēts"
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "Formāts"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "Izceltais"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "Jaunāki komentāri"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "Senāki komentāri"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "Komentāru navigācija"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "Zils"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "Purpurs"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "Rozā"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "Dzeltens"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "Tumšs"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "Noklusējuma"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "Galvenes un sānjoslu fona krāsa"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "Piemēro galvenēm uz mazajiem ekrāniem un sānu joslām uz platiem ekrāniem."
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "Virsraksta un sānjoslu teksta krāsu"
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "Pamata krāsu shēma"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "Twenty Fifteen nepieciešama vismaz WordPress versija 4.1. Jūs izmantojat versiju %s. Lūdzu, atjauniniet to un mēģiniet vēlreiz."
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"meta-nav\">Publicēts</span><span class=\"post-title\">%title</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "Nākamais attēls"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "Iepriekšējais attēls"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "Izvēlne un logrīki"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "Doties uz saturu"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "sakļaut apakšizvēlni"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "izvērst apakšizvēlni"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "Pievienot logrīkus šeit, lai tie parādītos sānjoslās."
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "Logrīku apgabals"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "Sociālo saišu izvēlne"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "Galvenā izvēlne"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "Lepni darbina %s"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "Izskatās, ka mēs nevaram atrast to ko meklējat. Iespējams meklēšana var palīdzēt."
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "Diemžēl, bet nekas netika atrasts. Mēģiniet vēlreiz izmantojot citus atslēgvārdus."
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "Esat gatavi publicēt savu pirmo rakstu? <a href=\"%1$s\">Sāciet te</a>."
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "Nekas nav atrasts"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "Labot"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "Lapas:"
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "Turpināt %s lasīšanu"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "Komentāri ir slēgti."
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "Viena doma par “%2$s”"
|
||||
msgstr[1] "%1$s domas par “%2$s”"
|
||||
msgstr[2] "%1$s domu par “%2$s”"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "Skatīt visus %s rakstus"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "Publicējis"
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "Lapa"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "Nākamā lapa"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "Iepriekšējā lapa"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "Izskatās, ka šeit nekas netika atrasts. Varbūt izmantojiet meklēšanu?"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "Opā! Tāda lapa nav atrodama."
|
BIN
twentyfifteen/languages/mya.mo
Normal file
BIN
twentyfifteen/languages/mya.mo
Normal file
Binary file not shown.
282
twentyfifteen/languages/mya.po
Normal file
282
twentyfifteen/languages/mya.po
Normal file
|
@ -0,0 +1,282 @@
|
|||
# Translation of WordPress.com - Themes - Twenty Fifteen in Myanmar (Burmese)
|
||||
# This file is distributed under the same license as the WordPress.com - Themes - Twenty Fifteen package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-01-23 07:34:22+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/2.4.0-alpha\n"
|
||||
"Language: my_MM\n"
|
||||
"Project-Id-Version: WordPress.com - Themes - Twenty Fifteen\n"
|
||||
|
||||
#: inc/wpcom-colors.php:9
|
||||
msgid "Background"
|
||||
msgstr "နောက်ခံ"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
#: wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer."
|
||||
msgstr "၂၀၁၅ အတွက် ကျွန်ုပ်တို့၏ မူလ အခင်းအကျင်းမှာ သန့်ရှင်းပြီး၊ ဘလော့ဂ်ဦးစားပေး၊ ရှင်းလင်းသော ဒီဇီုင်းတို့ဖြစ်ပါသည်။ Twenty Fifteen ၏ ရိုးရှင်းသော တန်းတန်းမတ်မတ် စာရေးသားမှုပုံစံကြောင့် ဖန်သားပြင်အရွယ်စံုတွင် ကောင်းမွန်စွာ ဖတ်ရှုနိုင်သလို ဘာသာစကားမျိုးစုံအတွက်လည်း သင့်တော်ပါသည်။ သင့်ဆိုဒ်သို့ လာလည်ပတ်သူတို့မှ စမတ်ဖုန်းများ၊ တက်ဘလက်များ၊ လက်ပ်တော့များ သို့မဟုတ် စားပွဲတင်ကွန်ပြူတာများ စသဖြင့် မည်သည့် စက်ကိရိယာဖြင့်မဆို ကြည့်ရှုစဉ်တွင် သင့်ရေးသားဖော်ပြမှု အကြောင်းအရာများသည် ဗဟိုတွင် တည်ရှိဖော်ပြစေရန် မိုဘိုင်းဦးစားပေးစနစ်ဖြင့် ဒီဇိုင်းထုတ်ထားပါသည်။"
|
||||
|
||||
#: single.php:37
|
||||
msgid "Previous post:"
|
||||
msgstr "ယခင် စာမူ - "
|
||||
|
||||
#: single.php:36
|
||||
msgid "Previous"
|
||||
msgstr "ယခင်က"
|
||||
|
||||
#: single.php:34
|
||||
msgid "Next post:"
|
||||
msgstr "နောက်စာမူ - "
|
||||
|
||||
#: single.php:33
|
||||
msgid "Next"
|
||||
msgstr "ဆက်လုပ်"
|
||||
|
||||
#: search.php:18
|
||||
msgid "Search Results for: %s"
|
||||
msgstr "%s အတွက် ရှာဖွေတွေ့ရှိမှု ရလဒ်များ"
|
||||
|
||||
#: inc/template-tags.php:113
|
||||
msgctxt "Used before full size attachment link."
|
||||
msgid "Full size"
|
||||
msgstr "အရွယ်အစား အပြည့်"
|
||||
|
||||
#: inc/template-tags.php:102
|
||||
msgctxt "Used before tag names."
|
||||
msgid "Tags"
|
||||
msgstr "စကားစုတွဲများ"
|
||||
|
||||
#: inc/template-tags.php:94
|
||||
msgctxt "Used before category names."
|
||||
msgid "Categories"
|
||||
msgstr "ကဏ္ဍများ"
|
||||
|
||||
#: inc/template-tags.php:91 inc/template-tags.php:99
|
||||
msgctxt "Used between list items, there is a space after the comma."
|
||||
msgid ", "
|
||||
msgstr "၊ "
|
||||
|
||||
#: inc/template-tags.php:85
|
||||
msgctxt "Used before post author name."
|
||||
msgid "Author"
|
||||
msgstr "စာရေးသူ"
|
||||
|
||||
#: inc/template-tags.php:76
|
||||
msgctxt "Used before publish date."
|
||||
msgid "Posted on"
|
||||
msgstr "ရေးသား ထုတ်ဝေခဲ့ ချိန် "
|
||||
|
||||
#: inc/template-tags.php:55
|
||||
msgctxt "Used before post format."
|
||||
msgid "Format"
|
||||
msgstr "ပံုစံ"
|
||||
|
||||
#: inc/template-tags.php:49
|
||||
msgid "Featured"
|
||||
msgstr "ခေါင်းကြီးသတင်း"
|
||||
|
||||
#: inc/template-tags.php:30
|
||||
msgid "Newer Comments"
|
||||
msgstr "မှတ်ချက်သစ်များ"
|
||||
|
||||
#: inc/template-tags.php:26
|
||||
msgid "Older Comments"
|
||||
msgstr "မှတ်ချက်ဟောင်းများ"
|
||||
|
||||
#: inc/template-tags.php:23
|
||||
msgid "Comment navigation"
|
||||
msgstr "မှတ်ချက် လမ်းကြောင်းများ"
|
||||
|
||||
#: inc/customizer.php:205
|
||||
msgid "Blue"
|
||||
msgstr "အပြာ"
|
||||
|
||||
#: inc/customizer.php:194
|
||||
msgid "Purple"
|
||||
msgstr "မရမ်း"
|
||||
|
||||
#: inc/customizer.php:183
|
||||
msgid "Pink"
|
||||
msgstr "ပန်း"
|
||||
|
||||
#: inc/customizer.php:172
|
||||
msgid "Yellow"
|
||||
msgstr "အဝါရောင်"
|
||||
|
||||
#: inc/customizer.php:161
|
||||
msgid "Dark"
|
||||
msgstr "အမဲ"
|
||||
|
||||
#: inc/customizer.php:150
|
||||
msgid "Default"
|
||||
msgstr "မူလသတ်မှတ်ချက်"
|
||||
|
||||
#: inc/customizer.php:75 inc/wpcom-colors.php:75
|
||||
msgid "Header and Sidebar Background Color"
|
||||
msgstr "နှဖူးစီးနှင့် ဘေးဘား နောက်ခံ အရောင်"
|
||||
|
||||
#: inc/customizer.php:60 inc/customizer.php:76 inc/customizer.php:81
|
||||
msgid "Applied to the header on small screens and the sidebar on wide screens."
|
||||
msgstr "ဖန်သားပြင်အသေးများတွင် နှဖူးစီတွင် အသုံးပြုပြီး ဖန်သားပြင် အကျယ်များတွင် ဘေးဘား၌ အသုံးပြုသည်။"
|
||||
|
||||
#: inc/customizer.php:59 inc/wpcom-colors.php:147
|
||||
msgid "Header and Sidebar Text Color"
|
||||
msgstr "နှဖူးစီးနှင့် ဘေးဘား စာသား အရောင် "
|
||||
|
||||
#: inc/customizer.php:44
|
||||
msgid "Base Color Scheme"
|
||||
msgstr "အခြေခံ အရောင်အတွဲအစပ်"
|
||||
|
||||
#: inc/back-compat.php:37 inc/back-compat.php:47 inc/back-compat.php:60
|
||||
msgid "Twenty Fifteen requires at least WordPress version 4.1. You are running version %s. Please upgrade and try again."
|
||||
msgstr "WordPress မူကွဲအမှတ် ၄.၁ အား Twenty Fifteen မှ လိုအပ်ပါသည်။ မူကွဲအမှတ် %s အား သင်အသံုးပြုထားသည်။ ကျေးဇူးပြု၍ အဆင့်မြှင့်ပြီးမှ ပြန်စမ်းကြည့်ပါ။"
|
||||
|
||||
#: image.php:84
|
||||
msgctxt "Parent post link"
|
||||
msgid "<span class=\"meta-nav\">Published in</span><span class=\"post-title\">%title</span>"
|
||||
msgstr "<span class=\"post-title\">%title</span><span class=\"meta-nav\">တွင် ရေးသားထုတ်ဝေခဲ့သည်</span>"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Next Image"
|
||||
msgstr "နောက်ရုပ်ပုံ"
|
||||
|
||||
#: image.php:24
|
||||
msgid "Previous Image"
|
||||
msgstr "အရင်ရုပ်ပုံ"
|
||||
|
||||
#: header.php:45
|
||||
msgid "Menu and widgets"
|
||||
msgstr "မီနူးနှင့် ဝစ်ဂျက်များ"
|
||||
|
||||
#: header.php:26
|
||||
msgid "Skip to content"
|
||||
msgstr "စာကိုယ်ပိုင်းသို့ သွားရန်"
|
||||
|
||||
#: functions.php:272
|
||||
msgid "collapse child menu"
|
||||
msgstr "မီနူးခွဲအား ချုံ့ပါ"
|
||||
|
||||
#: functions.php:271
|
||||
msgid "expand child menu"
|
||||
msgstr "မီနူးခွဲအား ဖြန့်ထုတ်ပါ"
|
||||
|
||||
#: functions.php:201
|
||||
msgctxt "Add new subset (greek, cyrillic, devanagari, vietnamese)"
|
||||
msgid "no-subset"
|
||||
msgstr "no-subset"
|
||||
|
||||
#: functions.php:193
|
||||
msgctxt "Inconsolata font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:185
|
||||
msgctxt "Noto Serif font: on or off"
|
||||
msgid "on"
|
||||
msgstr "off"
|
||||
|
||||
#: functions.php:177
|
||||
msgctxt "Noto Sans font: on or off"
|
||||
msgid "on"
|
||||
msgstr "on"
|
||||
|
||||
#: functions.php:151
|
||||
msgid "Add widgets here to appear in your sidebar."
|
||||
msgstr "သင့်ဘေးဘားတွင် ပေါ်စေလိုသော ဝစ်ဂျက်များအား ဒီမှာ ထားပါ။"
|
||||
|
||||
#: functions.php:149
|
||||
msgid "Widget Area"
|
||||
msgstr "ဝစ်ဂျက်ဧရိယာ"
|
||||
|
||||
#: functions.php:86
|
||||
msgid "Social Links Menu"
|
||||
msgstr "လူမှုကွန်ယက် လိပ်စာမီနူး"
|
||||
|
||||
#: functions.php:85
|
||||
msgid "Primary Menu"
|
||||
msgstr "အဓိက မီနူး"
|
||||
|
||||
#: footer.php:25
|
||||
msgid "Proudly powered by %s"
|
||||
msgstr "%s မှ ကူညီပံ့ပိုးထားသည်။"
|
||||
|
||||
#. #-#-#-#-# twentyfifteen.pot (Twenty Fifteen 1.9-wpcom) #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
#: footer.php:25 wp-content/themes/pub/twentyfifteen/style.css
|
||||
msgid "https://wordpress.org/"
|
||||
msgstr "https://wordpress.org/"
|
||||
|
||||
#: content-none.php:31
|
||||
msgid "It seems we can’t find what you’re looking for. Perhaps searching can help."
|
||||
msgstr "သင်တွေ့လိုသည်ကို ကွျန်ုပ်တို့ ရှာမတွေ့ပါ။ ရှာဖွြခေင်းမှ အကူအညီရနိုင်လောက်သည်။"
|
||||
|
||||
#: content-none.php:26
|
||||
msgid "Sorry, but nothing matched your search terms. Please try again with some different keywords."
|
||||
msgstr "သင်ရှာသော ဝေါဟာရနှင့် ကိုက်ညီသည်ကို မတွေ့ပါ။ အခြားသော့ချက်စကားလုံးတစ်ခုခုဖြင့် နောက်တစ်ကြိမ်ကြိုးစားကြည့်ပါ။"
|
||||
|
||||
#: content-none.php:22
|
||||
msgid "Ready to publish your first post? <a href=\"%1$s\">Get started here</a>."
|
||||
msgstr "သင့်ပထမဆုံးစာမူကို ထုတ်ဝေရန် အသင့်ဖြစ်ပြီလား။ <a href=\"%1$s\">ဒီမှာ စလိုက်ပါ။</a>။"
|
||||
|
||||
#: content-none.php:15
|
||||
msgid "Nothing Found"
|
||||
msgstr "ဘာမှ မတွေ့ပါ"
|
||||
|
||||
#: content-link.php:56 content-page.php:35 content-search.php:28
|
||||
#: content-search.php:33 content.php:57 image.php:71
|
||||
msgid "Edit"
|
||||
msgstr "ပြုပြင်ပါ"
|
||||
|
||||
#: content-link.php:36 content-page.php:25 content.php:38 image.php:59
|
||||
msgid "Pages:"
|
||||
msgstr "စာမျက်နှာများ - "
|
||||
|
||||
#. translators: %s: Name of current post
|
||||
#: content-link.php:31 content.php:33 inc/template-tags.php:238
|
||||
msgid "Continue reading %s"
|
||||
msgstr "%s အား ဆက်လက်ဖတ်ရှုရန်"
|
||||
|
||||
#: comments.php:69
|
||||
msgid "Comments are closed."
|
||||
msgstr "မှတ်ချက်ပေးခွင့် ပိတ်ထားသည်။"
|
||||
|
||||
#. translators: 1: number of comments, 2: post title
|
||||
#: comments.php:35
|
||||
msgctxt "comments title"
|
||||
msgid "%1$s thought on “%2$s”"
|
||||
msgid_plural "%1$s thoughts on “%2$s”"
|
||||
msgstr[0] "“%2$s” အတွက် အတွေးတစ်ချက်"
|
||||
msgstr[1] "“%2$s” အတွက် အတွေးများ %1$s ခု"
|
||||
|
||||
#: author-bio.php:34
|
||||
msgid "View all posts by %s"
|
||||
msgstr "%s ရေးသော စာမူအားလုံးအား ကြည့်ရန်"
|
||||
|
||||
#: author-bio.php:12
|
||||
msgid "Published by"
|
||||
msgstr "စာရေးသူ "
|
||||
|
||||
#: archive.php:51 content-link.php:40 content-page.php:29 content.php:42
|
||||
#: image.php:63 index.php:48 search.php:40
|
||||
msgid "Page"
|
||||
msgstr "စာမျက်နှာ"
|
||||
|
||||
#: archive.php:50 index.php:47 search.php:39
|
||||
msgid "Next page"
|
||||
msgstr "နောက်စာမျက်နှာ"
|
||||
|
||||
#: archive.php:49 index.php:46 search.php:38
|
||||
msgid "Previous page"
|
||||
msgstr "ယခင်စာမျက်နှာ"
|
||||
|
||||
#: 404.php:21
|
||||
msgid "It looks like nothing was found at this location. Maybe try a search?"
|
||||
msgstr "ဒီနေရာမှာရှာမတော့ဘူးဖြစ်နေပါတယ်။ ကြိုးစားပြီးထပ်ရှာမလား။"
|
||||
|
||||
#: 404.php:17
|
||||
msgid "Oops! That page can’t be found."
|
||||
msgstr "အဲ။ ဒီစာမျက်နှာကို မတွေ့ပါဘူး။"
|
BIN
twentyfifteen/languages/nl.mo
Normal file
BIN
twentyfifteen/languages/nl.mo
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue