Hi, plase review and use attached patch for taxonomy_vtn.pages.inc,
this modify title create program code. For any other lang, not good solving, if use for title
drupal_set_title($title . t('@vocabulary', array('@vocabulary' => $voc_obj->name)));

better this
$title = t('Terms in @vocabulary', array('@vocabulary' => $voc_obj->name));

THX

DTB

CommentFileSizeAuthor
better_internacion.patch1.45 KBDTB

Comments

AlexisWilke’s picture

Hi DTB,

Note that proper Drupal code requires the { and } everywhere.

I changed the else part and removed the t() altogether since there is nothing to translate. The drupal_set_title() takes care of testing for HTML or whatnot code so we're safe on that end.

It is checked in, the -dev should be updated within the next 12h.

If you want to provide the translation(s) you are making, feel free to do so and I'll add them to the module.

Thank you.
Alexis

AlexisWilke’s picture

Assigned: Unassigned » AlexisWilke
Status: Active » Fixed

Sounds like this was fixed. Closing.

Thank you.
Alexis Wilke

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.