Re: [PHP] setlocale on OS X not working

2001-12-27 Thread Brian Clark
* Stefan Rusterholz ([EMAIL PROTECTED]) [Dec 27. 2001 13:11]: > Hm, as far as I see that package is for Aqua (the GUI of OS X) and not > for the core (FreeBSD, *nix), so it won't help - and it is actually > installed (I use OS X in a german enviroment because I'm swiss). I can't help you there

Re: [PHP] setlocale on OS X not working

2001-12-27 Thread Stefan Rusterholz
Hm, as far as I see that package is for Aqua (the GUI of OS X) and not for the core (FreeBSD, *nix), so it won't help - and it is actually installed (I use OS X in a german enviroment because I'm swiss). Do you know where to get language packets for FreeBSD? That might work... Am Donnerstag de

Re: [PHP] setlocale on OS X not working

2001-12-27 Thread Stefan Rusterholz
I forgot to mail that to the mailinglist too... >> * Stefan Rusterholz ([EMAIL PROTECTED]) [Dec 27. 2001 11:30]: >> >>> I did that. For localedef it hasn't an entry. But for locale it has >>> one. >>> I don't think that's what you expectet (it seems to belong to perl) >> >> Then you need to find

Re: [PHP] setlocale on OS X not working

2001-12-27 Thread Brian Clark
* Stefan Rusterholz ([EMAIL PROTECTED]) [Dec 27. 2001 11:30]: > I did that. For localedef it hasn't an entry. But for locale it has one. > I don't think that's what you expectet (it seems to belong to perl) Then you need to find out how to `compile' locale definitions for your system. > locale

Re: [PHP] setlocale on OS X not working

2001-12-27 Thread Stefan Rusterholz
Thanks for your help, but it doesn't work either :-( Am Donnerstag den, 27. Dezember 2001, um 16:12, schrieb Brian Clark: > * Stefan Rusterholz ([EMAIL PROTECTED]) [Dec 27. 2001 09:13]: > >> Hi > > Hiya > >> I'm using following code: > >> setlocale(LC_ALL, 'german'); >> $timestamp = time(); >> $

Re: [PHP] setlocale on OS X not working

2001-12-27 Thread Brian Clark
* Stefan Rusterholz ([EMAIL PROTECTED]) [Dec 27. 2001 09:13]: > Hi Hiya > I'm using following code: > setlocale(LC_ALL, 'german'); > $timestamp = time(); > $string = strftime('Heute ist %A, der %d. %B %Y. Sie haben diese Seite > um %H Uhr %M aufgerufen.', $timestamp); # in english: "today it'

[PHP] setlocale on OS X not working

2001-12-27 Thread Stefan Rusterholz
Hi I'm using following code: setlocale(LC_ALL, 'german'); $timestamp = time(); $string = strftime('Heute ist %A, der %d. %B %Y. Sie haben diese Seite um %H Uhr %M aufgerufen.', $timestamp); # in english: "today it's %A, the %d. %B. %Y. You opened this page at %H:%M." echo "$string";