http://library.gnome.org/misc/release-notes/2.26/ for a list of what's new. On the FreeBSD front, we introduced a port of libxul 1.9 as an alternative for Firefox 2.0 as a Gecko provider. Almost all of the Gecko consumers can make use of this provider by setting: WITH_GECKO=libxul The GNOME 2.26 port was done by ahze, kwm, marcus, and mezz with contributions by Joseph S. Atkinson, Peter Wemm, Eric L. Chen, Martin Matuska, Craig Butler, and Pawel Worach.
17 lines
751 B
Python
17 lines
751 B
Python
--- hamster/hamster-applet.py.orig 2009-02-13 16:02:00.000000000 -0500
|
|
+++ hamster/hamster-applet.py 2009-02-27 19:50:13.000000000 -0500
|
|
@@ -52,10 +52,10 @@ if hasattr(gettext, 'bind_textdomain_cod
|
|
gettext.bind_textdomain_codeset('hamster-applet','UTF-8')
|
|
gettext.textdomain('hamster-applet')
|
|
|
|
-locale.bindtextdomain('hamster-applet', locale_dir)
|
|
-if hasattr(locale, 'bind_textdomain_codeset'):
|
|
- locale.bind_textdomain_codeset('hamster-applet','UTF-8')
|
|
-locale.textdomain('hamster-applet')
|
|
+#locale.bindtextdomain('hamster-applet', locale_dir)
|
|
+#if hasattr(locale, 'bind_textdomain_codeset'):
|
|
+# locale.bind_textdomain_codeset('hamster-applet','UTF-8')
|
|
+#locale.textdomain('hamster-applet')
|
|
|
|
hamster.__init_db()
|
|
import hamster.applet
|