GNOME Bugzilla – Bug 580865
Call JS_SetLocaleCallbacks()
Last modified: 2009-05-05 20:26:36 UTC
Panel font doesn't support utf-8 characters. It should say "Čet Tra 30, 12:07", but Č character is not displayed correctly. See the screenshot for details.
Created attachment 133643 [details] small picture showing the bug in action
gjs problem - locale callbacks need to be set to make toLocaleDateString() work; will attach a patch.
Created attachment 133690 [details] [review] Call JS_SetLocaleCallbacks() SpiderMonkey doesn't implement locale handling for functions like String.toLocaleLowerCase itself; it depends on a set of "callbacks" being set on the context. gjs/context.c: Implement locale callbacks in terms of GLib js/testLocale.js: tests for locale handling
Looks good.
Pushed.