Hi,
where can I change the language for the days and months in the counter?
This is a discussion on Change language in counter within the osCommerce 2.2 Modification Help forums, part of the osCommerce 2.2 Forums category; Hi, where can I change the language for the days and months in the counter?...
Hi,
where can I change the language for the days and months in the counter?
Counter? What counter did you add? Mod?
Maybe you thinking of the banner stats?
Try modifying : include/language/<your language>/banner_statistics.php
Good Luck
JPF - osCMax Fourm Moderator - To contact, post on the forum or click here
Try out our osCMax at: Live Catalog Demo
Limited access Admin: Live Admin Demo
Feel free to add products they way you want and then purchase them -=+=- Sorry nothing will be billed or shipped!
Hi jpf
Thank's for answering.
I run Osc2.2 ms2. It's not a mod or banner.
It's the counter in the footer that count xx hits since installation date.
Checked the table counter and counter history in db, but can't find anything to change.
You mean you want to chage the 'Requests since' text....Try your language files
In include/language/<all_language>.php
(like english.php) look for and change:
define('FOOTER_TEXT_REQUESTS_SINCE', 'requests since');
If you want to change the DATE FORMAT then look in the SAME file:
setlocale(LC_TIME, 'en_US.ISO_8859-1');
define('DATE_FORMAT_SHORT', '%m/%d/%Y'); // this is used for strftime()
define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()
define('DATE_FORMAT', 'm/d/Y'); // this is used for date()
define('PHP_DATE_TIME_FORMAT', 'm/d/Y H:i:s'); // this is used for date()
define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');
The footer uses: 'DATE_FORMAT_LONG'
the LANGUAGE used is set by 'setlocale' and the language set "en_US.ISO_8859-1" sets the "language_country.charaterset" and must be vaild (installed) for the server.
JPF - osCMax Fourm Moderator - To contact, post on the forum or click here
Try out our osCMax at: Live Catalog Demo
Limited access Admin: Live Admin Demo
Feel free to add products they way you want and then purchase them -=+=- Sorry nothing will be billed or shipped!
Bookmarks