[wp-hackers] Improvements to the WordPress l10n framework

Omry Yadan omry at yadan.net
Sat May 12 09:11:00 GMT 2007


Jamie Talbot wrote:
>
> > From what I've seen in other systems, and from my own development
> > experience, I got to the conclusion that the process of making your
> > plugin l10n-enabled should be simplified for developers. Wrapping your
> > strings with __() is easy, but if you need to start specifying your
> > domain every line, you're not going to do it.
>
> Why not?  A simple macro in your favourite code editor (assuming it's
> not notepad) can insert this
> automatically.  At worst it's just copy and paste.
That can be used as an excuse to write any bad API.
"ah, they can just use an IDE macro!"
did you ever transform a plugin that does not support i18n, or have
partial support (calls to __() and _e() without a domain) into a
correctly localized plugin?
its not fun, and its not pretty.
consider the difference between:
$str = "There are ".$x." new messages";
to:
$str = __("There are ").$x.__(" new messages");

pretty close.
now, what does this do the the code readability?

$str = __("There are ","foobar plugin").$x.__(" new messages","foobar
plugin");

even if plugin authors were aware of this option (and they are not),
many will not use it simply because makes the code uglier.
you can argue that they can create a function like:
function fb__($str) {return __($str,"foobar-plugin");}
and call it instead, and you will be right, but I still think the domain
specific translation for plugins should be initialized and provided by
the platform.

>
> > So this is where I ask
> > you: How can this be done? Omry Yadan suggested this process (roughly):
>
> > Plugin init loop:
>
> > 1. When each plugin is initialized, its directory is searched for a
> > translation file for the current locale. If it exists, it is loaded
> > under the plugin name's textdomain. A global variable (Say,
> > $pluginDomain) for the current plugin's domain is set.
>
> What is this pluginDomain determined from?
That's implementation detail.
it can be the the name of the plugin file without the extension.
>
> > 2. The plugin is initialized.
>
> > 3. $pluginDomain is unset.
>
> > When __() or _e() are called, if a string is not found in the default
> > textdomain, they try to match the string to the textdomain named in
> > $pluginDomain. That will also be backwards-compatible if current plugins
> > intentionally don't name a domain to get the default.
>
> I'm a bit confused with how this will work.  How will you determine
> what $pluginDomain to check if
> it has been unset?  How will you know which $pluginDomain to look in
> if there are multiple localised
> plugins?  This also seems pretty slow because it means first checking
> the default domain, then
> checking another domain (or lots of other domains).
The idea is to have the correct domain active at the correct context.
when calling the code of a particular plugin, its translation should be
loaded and be made available through the standard __() and _e().

the only problem is that when the platform is calling hooks code, I
don't think it knows which plugin "owns" that code, so it can't possibly
make the correct translation available for it.
maybe the right solution would be to flatten the entire translation
space into a single hashtable, and load the plugins translations into it
as well.



More information about the wp-hackers mailing list