Hello,
I have some specific question. In my effort to translation Avian I was stopped in this point – There is Author or Author Alias in every Article. I’d need change the text “Written by xxxxx” to “Created by xxxxx” in the Front Page. (Instead of ‘Created by’ is there the translation of ‘Written by’ – this si example) The problem is :
1. Text “Written by” do appear in languageen-GBen-GB.ini but its translation is not applied in componentscom_contentviewsarticletmpldefault.php
2. If I change
<?php JText::printf( ‘Written by’, ($this->article->created_by_alias ? $this->article->created_by_alias : $this->article->author) ); ?>
to
<?php JText::printf( ‘Created by’, ($this->article->created_by_alias ? $this->article->created_by_alias : $this->article->author) ); ?>
in this file , the name of Author (or Author Alias) disappear.
By another words : Rather then “Creted by xxxxx” is there “Creted by” only.
Where I am wrong ? Thanks for your answer.
Laro