I need a bit of help with localization of Cloriato theme, I don't know how to locate the file(s) in order to change "Category archives" and "Older posts" "newer posts" and "by admin" to something more convenient for Croatian Language. You can see them problem here http://hho.hr/category/izjave/ Thank you very much for your support and congrats of a new beautiful forum
Hello, You can directly change the text from the "blog.php" and "single.php" file to your language. It will show in your website. Here is the code where you have to change the language Code: <ul class="post_meta"> <li class="posted_by"><span>By</span> <?php the_author_posts_link(); ?> </li> <li class="post_date"> <?php the_time('M-j-Y') ?> </li> <li class="post_category"> <?php the_category(', '); ?> </li> <li class="post_comment"> <?php comments_popup_link('0 Comments.', '1 Comment.', '% Comments.'); ?> </li> </ul> Thanks.