When the locale module is enabled, the "read TITLE in full" text that is being displayed on mouseover the taxonomy titles, has a strange way to query the translation.

By default, it is "Read in full" which should only translate "Read" and "in full", instead, it asks for a whole query which seems bizarre and ofcourse doesn't help the database load :-)

Here's the query:
SELECT s.lid, t.translation FROM locales_source s INNER JOIN locales_target t ON s.lid = t.lid WHERE s.source = 'view ????????? ??? ?????????? ?????????????? in full' AND t.locale = 'el'

Comments

drewish’s picture

ah yeah, that should read:

 $output = '<li>' . l($node->title, 'node/'. $node->nid,  array('title' => t("view %title in full", array('%title' => $node->title))));

i'll patch it later.

drewish’s picture

Status: Active » Fixed

committed to HEAD and 47

Anonymous’s picture

Status: Fixed » Closed (fixed)