Is it possible to instruct Zend_Locale that it should use a certain locale, except for a minor alteration to the date format? I don't want to use the Zend_Date::toString() with the specific formatting, because that would use this format on all locales.

Case in question: I have dates formatted according to a user's locale setting. My fellow Dutch (nl_NL) users are asking for dd-mm-yyyy formatted dates, instead of dd-mm-yy which Zend_Locale vehemently claims to be our short date format. If I change the code where the date is outputted to explicitly use a custom format, that applies to all customers instead of just the cheeseheads. I could check the user's locale, but if more exceptions need to be created, every time a date is echo'd I'd need to add these checks and exceptions, the prospect of which makes me cringe.

I can't alter the Zend_Locale XML data directly (and don't want to), as the ZF library is used by various sites.

I'm sure this is one of those "really simple" issues... once you know how. Any ideas?

link|improve this question

feedback

1 Answer

There must be some way to:

  1. Extend Zend_Locale
  2. Create a new locale corresponding to the existing locale whose behavior you want to customize.
  3. Create a new XML file for the new locale containing the customizations.

Then, in Bootstrap, create the new locale object. If the current locale matches the locale you wish to customize, then manually switch to the new locale.

The key is probably where to place the new XML files and how to define the mapping. Of course, you probably don't want to place anything new in the Zend folders, so how do we tell Zend_Locale and his friends to use the new location? Is that mapping information "hard-coded" in the various Zend_Locale_XXX classes?

Anyway, just talking out some ideas. Hope it gives you some direction or inspires someone else more knowledgeable than me - a rather low bar, indeed! - to come up with something more definitive and authoritative.

Cheers!

link|improve this answer
Thanks for your thoughts, David! I've been thinking along those lines as well, it's good to see it written out in step-by-step fashion. Makes me feel there is probably an easier way to do this, though. – kander Dec 29 '10 at 10:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.