internationalization
This commit is contained in:
parent
1e0d306a38
commit
32a46dc6f8
14
index.php
14
index.php
|
@ -42,7 +42,7 @@
|
||||||
<ul class="storyline-cats"><li class="storyline-root"><?php the_category(' » </li><li>', multiple) ?></li></ul>
|
<ul class="storyline-cats"><li class="storyline-root"><?php the_category(' » </li><li>', multiple) ?></li></ul>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<h2>
|
<h2>
|
||||||
<a href="<?php get_permalink($last_comic_post->ID) ?>" rel="bookmark" title="Permanent Link to <?php the_title() ?>"><?php the_title() ?></a>
|
<a href="<?php get_permalink($last_comic_post->ID) ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'comicpress'), get_the_title()) ?>"><?php the_title() ?></a>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
<?php the_content('↓ Read the rest of this entry...') ?>
|
<?php the_content('↓ Read the rest of this entry...') ?>
|
||||||
|
@ -77,19 +77,19 @@
|
||||||
<div class="post-head"></div>
|
<div class="post-head"></div>
|
||||||
<div class="post" id="post-<?php the_ID() ?>">
|
<div class="post" id="post-<?php the_ID() ?>">
|
||||||
<h3>
|
<h3>
|
||||||
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title() ?>"><?php the_title() ?></a>
|
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'comicpress'), get_the_title()) ?>"><?php the_title() ?></a>
|
||||||
</h3>
|
</h3>
|
||||||
<div class="postdate">
|
<div class="postdate">
|
||||||
<?php the_time('F jS, Y') ?>
|
<?php the_time('F jS, Y') ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
<?php the_content('↓ Read the rest of this entry...') ?>
|
<?php the_content(__('↓ Read the rest of this entry...', 'comicpress')) ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="tags">
|
<div class="tags">
|
||||||
<?php the_tags('└ Tags: ', ', ', ''); edit_post_link('Edit Post', ' [ ', ' ] ') ?>
|
<?php the_tags(__('└ Tags: ', 'comicpress'), ', ', ''); edit_post_link(__('Edit Post', 'comicpress'), ' [ ', ' ] ') ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="comment-link">
|
<div class="comment-link">
|
||||||
<?php if ('open' == $post->comment_status) { comments_popup_link('“Comment”', '“1 Comment”', '“% Comments”'); } ?>
|
<?php if ('open' == $post->comment_status) { comments_popup_link(__('“Comment”', 'comicpress'), __('“1 Comment”', 'comicpress'), __('“% Comments”', 'comicpress')); } ?>
|
||||||
</div>
|
</div>
|
||||||
<div class="clear-margins"><br /></div>
|
<div class="clear-margins"><br /></div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -97,8 +97,8 @@
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<div class="pagenav">
|
<div class="pagenav">
|
||||||
<div class="pagenav-right"><?php previous_posts_link('Newer Entries ↑') ?></div>
|
<div class="pagenav-right"><?php previous_posts_link(__('Newer Entries ↑', 'comicpress')) ?></div>
|
||||||
<div class="pagenav-left"><?php next_posts_link('↓ Previous Entries') ?></div>
|
<div class="pagenav-left"><?php next_posts_link(__('↓ Previous Entries', 'comicpress')) ?></div>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue