Commit 0446dbb9 authored by Jakob Moser's avatar Jakob Moser
Browse files

Internationalize index

parent 25ed6681
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -19,23 +19,23 @@ get_header();
        } elseif(is_archive()) {
            single_month_title(" ");
        } else {
            echo "Blog";
            _e('Blog', 'fscoli-next');
        } ?>
    </h1>

    <h2>Kategorien</h2>
    <h2><?php _e('Categories', 'fscoli-next'); ?></h2>
    <ul class="categories seamless box-links">
        <?php wp_list_categories(array("title_li"=>"")); ?>
    </ul>

    <h2>Archiv</h2>
    <h2><?php _e('Archive', 'fscoli-next'); ?></h2>
    <select onchange="document.location.href=this.options[this.selectedIndex].value;">
        <option>nach Monat</option>
        <option><?php _e('by month', 'fscoli-next'); ?></option>
        <?php wp_get_archives(array("format"=>"option")); ?>
    </select>

    <a href="<?php bloginfo("rss2_url"); ?>" class="rss">
        zum RSS-Feed
        <?php _e('to the RSS feed', 'fscoli-next'); ?>
    </a>
</aside>