In which file do I have to go to write correctly the word August in french ? Now, it appears without the circumflex accent on the u (août) and the letters in the word are separated.
I have the french language install.
Thanks
Monique
Latest News: (loading..)
August in french ... Doesn't appear correctly
Started by Monique, Aug 12 2005 04:26 PM
2 replies to this topic
#-19
Posted 12 August 2005 - 04:26 PM
#-18
Posted 12 August 2005 - 07:48 PM
Monique, on Aug 12 2005, 09:56 PM, said:
In which file do I have to go to write correctly the word August in french ? Now, it appears without the circumflex accent on the u (août) and the letters in the word are separated.
I have the french language install.
Thanks
Monique
I have the french language install.
Thanks
Monique
Now here you check where is the constant thats used on the actual page or select control F and then type what is being displyed go and change that word
Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site.
Check My About US For who am I and what My company does.
Check My About US For who am I and what My company does.
#-17
Posted 13 August 2005 - 06:27 PM
Thanks for your answer but I don't find the file where the month of August is displayed.
In the boutique, it's on the line of New products for August and on the date line and number of requests.
In which file may I make the change ? I see in french.php some lines :
// look in your $PATH_LOCALE/locale directory for available locales
// or type locale -a on the server.
// Examples:
// on RedHat try 'en_US'
// on FreeBSD try 'en_US.ISO_8859-1'
// on Windows try 'en', or 'English'
@setlocale(LC_TIME, 'fr_FR.ISO_8859-1');
define('DATE_FORMAT_SHORT', '%d/%m/%Y'); // this is used for strftime()
define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()
define('DATE_FORMAT', 'd/m/Y'); // this is used for date()
define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');
////
// Return date in raw format
// $date should be in format mm/dd/yyyy
// raw date is in format YYYYMMDD, or DDMMYYYY
function tep_date_raw($date, $reverse = false) {
if ($reverse) {
return substr($date, 0, 2) . substr($date, 3, 2) . substr($date, 6, 4);
} else {
return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2);
}
Help !
In the boutique, it's on the line of New products for August and on the date line and number of requests.
In which file may I make the change ? I see in french.php some lines :
// look in your $PATH_LOCALE/locale directory for available locales
// or type locale -a on the server.
// Examples:
// on RedHat try 'en_US'
// on FreeBSD try 'en_US.ISO_8859-1'
// on Windows try 'en', or 'English'
@setlocale(LC_TIME, 'fr_FR.ISO_8859-1');
define('DATE_FORMAT_SHORT', '%d/%m/%Y'); // this is used for strftime()
define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()
define('DATE_FORMAT', 'd/m/Y'); // this is used for date()
define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');
////
// Return date in raw format
// $date should be in format mm/dd/yyyy
// raw date is in format YYYYMMDD, or DDMMYYYY
function tep_date_raw($date, $reverse = false) {
if ($reverse) {
return substr($date, 0, 2) . substr($date, 3, 2) . substr($date, 6, 4);
} else {
return substr($date, 6, 4) . substr($date, 3, 2) . substr($date, 0, 2);
}
Help !









