Keyword

displaying the date in your language

  • error4o4
  • error4o4's Avatar Topic Author
  • Offline
  • New Member
More
14 years 11 months ago #23116 by error4o4
displaying the date in your language was created by error4o4
If you want the RSS feed items date to be displayed in your language instead of English, just modify mod_jw_srfr.php line 176 :

original (displays the date in English) :
echo $item->get_date('j M Y | g:i a'); // Local timezone

modified (displays the date in the language defined by your Joomla template) :
echo $item->get_local_date(); // Local timezone

I found that function in the SimplePie documentation at simplepie.org/wiki/tutorial/translate_timestamps_into_another_language

Please Log in or Create an account to join the conversation.

  • error4o4
  • error4o4's Avatar Topic Author
  • Offline
  • New Member
More
14 years 4 months ago #23117 by error4o4
Replied by error4o4 on topic Re: displaying the date in your language
To display the date in your language in v2.1, modify helper.php line 63 :

original (displays the date in English) :
                        $feedElements[$key]->itemDate = $item->get_date($dateFormat);

modified (displays the date in the language defined by your Joomla template) :
                        $feedElements[$key]->itemDate = $item->get_local_date($dateFormat);

Then go to the module configuration and replace the "Date & time format" setting with something in the strftime format, for example %A %e %B

Please Log in or Create an account to join the conversation.

More
13 years 9 months ago #23118 by kyriakos Kazazis
Replied by kyriakos Kazazis on topic Re: displaying the date in your language
i am using that one. is working but it gives wrong time!
for example time of an article is 13:09 and it gives me 08:09
why ?

Please Log in or Create an account to join the conversation.

More
13 years 9 months ago #23119 by kyriakos Kazazis
Replied by kyriakos Kazazis on topic Re: displaying the date in your language
no reply ? come on someone should know :/

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum