Commit 7c65ef32 authored by Jakob Moser's avatar Jakob Moser
Browse files

Internationalize header

parent 10b3405e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -14,9 +14,9 @@ get_header();
            <?php
                // In certain cases, display a prefix followed by |
                if(is_home()) {
                    echo 'Blog | ';
                    echo __('Blog', 'fscoli-next').' | ';
                } elseif(is_search()) {
                    echo 'Suchergebnisse | ';
                    echo __('Search results', 'fscoli-next').' | ';
                } elseif(is_404()) {
                    echo '404 | ';
                } elseif(!is_front_page()) {
@@ -50,7 +50,7 @@ get_header();
    <body class="<?php echo is_admin_bar_showing() ? 'has-admin-bar' : '';?>">
        <header>
            <a class="logo" href="<?php echo home_url();?>"></a>
            <a class="nav-toggle" href="#nav">Menü</a>
            <a class="nav-toggle" href="#nav"><?php _e('Menu', 'fscoli-next'); ?></a>
            <nav id="nav">
                <?php wp_nav_menu(array('container'=>'false')); ?>
            </nav>