Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #24939

    Hey,

    I would like to change the english text to danish on this page, such as you are here, home, reply etc. How do I do that?

    My website link is http://col323webdesign.dk/projekt51/indlaeg/indlaeg/

    Mika

    #125241

    Hi,

    You are here: // Home

    Edit framework > php > class-breadcrumb.php, find this code on line 186

    'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',
    'after' => false,
    'front_page' => true,
    'show_home' => __( 'Home', 'avia_framework' ),

    Leave a reply

    Edit includes > comments.php, find this code

    echo "<h3 class='miniheading'>".__('Leave a Reply','avia_framework')."</h3>";

    and this one

    echo "<span class='minitext'>".__('Want to join the discussion? <br/>Feel free to contribute!','avia_framework')."</span>";

    Edit single.php and index.php, find this

    $title = __('Blog - Latest News', 'avia_framework'); //default blog title

    Regards,

    Ismael

    #125242

    Perfect, thanks!!

    #125243

    Sorry, how do I change this info : 15 jun 2013/0 Comments/in indlæg /by -… So the word “Comments” “in” and “by”

    Thanks,

    Mika

    #125244

    Hi,

    Open includes > loop-index.php. :)

    Comments

    echo "<span class='comment-container minor-meta'>";
    comments_popup_link( "0 ".__('Comments','avia_framework'),
    "1 ".__('Comment' ,'avia_framework'),
    "% ".__('Comments','avia_framework'),'comments-link',
    "".__('Comments Disabled','avia_framework'));
    echo "</span>";

    in

    echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." ";

    by

    echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";

    Regards,

    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Change of Languages’ is closed to new replies.