Email list hosting service & mailing list manager

Re: gettext-based localization Scott G. Miller (12 Apr 2002 17:58 UTC)
Re: gettext-based localization Per Bothner (12 Apr 2002 18:17 UTC)

Re: gettext-based localization Per Bothner 12 Apr 2002 18:18 UTC

Scott G. Miller wrote:
> I think that this approach may be too specific to gettext.  I'd rather
> modify the SRFI in such a way that it allowed bundles to be
> stored/retrieved to a system-provided localization service, but that it
> still accept association lists to create bundles from within Scheme.  An
> implementation that uses gettext as a backend then need only implement
> declare-bundle to store to a gettext compatible format.

You've addressed the use of the gettext backend, but I'm also concerned
about the API for getting a localized string.  I think we should
discuss that separately.

Specifically, I think:
   (gettext "MESSAGE")
is simpler to use than:
   (localized-template 'PACKAGE 'MESSAGE-TAG)

I.e. instead of having to come up with a MESSAGE-TAG for each
message, why not use the primary-language "MESSAGE" as it's own
template?  This is much simpler and convenient, plus of course
it is compatible with the GNU gettext paradigm, which I think is
desirable.  (Primary-language need not mean English, of course, but
it should be one that both the programmers and likely translators
are comfortable with.)

Secondly, specifying the PACKAGE on each usage is tedious. Instead,
it is more convenient to just use an initial textdomain declaration.

If you make these changes, you might as well call the function
'gettext', regardless of the back-end format.  You can still
have declare-bundle.
--
	--Per Bothner
xxxxxx@bothner.com   http://www.bothner.com/per/