Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • cyrber971 Friend
    #155655

    Hi
    How can I translate date on the top left , I can’t find it
    Thank’s
    cyrber

    Saguaros Moderator
    #360577

    You open the file: emplatesja_teline_iii_v2blocksheader.php

    and follow this thread http://www.joomlart.com/forums/topic/time-and-date-on-left-top-doesnt-appear-on-default-language/ to resolve this issue

    gray Friend
    #361065

    in ja_teline_iii_v2blocksheader.php

    <p class=”ja-day”>
    <?php
    echo “<span class=”day”>”.date (‘l’).”</span>”;
    echo “<span class=”date”>, “.date (‘M’).” “.date (‘d’).date (‘S’).”</span>”;
    ?>
    </p>

    should be replaced by

    <p class=”ja-day”>
    <?php
    echo “<span class=”day”>” . JText::_(date (‘l’)) . “</span>”;
    echo “<span class=”date”>, ” . date (‘d’) . ‘ ‘ . JText::_(date (‘F’)) . ‘ ‘ . date (‘Y’) . “</span>”;
    ?>
    </p>

    Missing JText::_ in original file does not allow displaying it in site’s lang.

Viewing 3 posts - 1 through 3 (of 3 total)

This topic contains 3 replies, has 3 voices, and was last updated by  gray 14 years, 1 month ago.

We moved to new unified forum. Please post all new support queries in our New Forum