I use patched ctools from #1727804: Keywords substitution doesn't work as expected
I have a taxonomy vocabulary with the option "Localize. Terms are common for all languages, but their name and description may be localized. " enabled (i18n module).
Breadcrumb title is %node:field-category:name
However, the title (term names) appears in the original language (not translated).
Am I missing something?

CommentFileSizeAuthor
#7 2013-06-16_21-59-28.png41.84 KBkalabro

Comments

spleshka’s picture

Status: Active » Needs work

Thanks for your report, I'll check this issue ASAP.

moniuch’s picture

I can confirm this (unfortunately). I have the i18n sub-module enabled and I looked into the Translate tab, but there's nothing that seems to fix the translation of rendered breadcrumbs.

My setup includes taxonomy vocabulary in Localize mode, + Entity Translation. I enabled Taxonomy Term at /admin/config/regional/entity_translation, turned on the permission to translate this entity, but this did not change anything. Maybe this issue http://drupal.org/node/1516202 will help you.

sylus’s picture

Can confirm this behaviour as well :) Has their been any progress on this?

Thanks for your work on this awesome module!

I'd be willing to try my hand at solving this but not really sure where to begin ^_^

sylus’s picture

I was able to get this working by manually changing the name to i18n-name

For instance:

%node:field-category:name should be %node:field-category:i18n-name
%node:field-category:0:parents-all:1:parent should be %node:field-category:0:parents-all:1:parent:i18n-name

This doesn't appear in the dropdown but does work when u manually specify it.

spleshka’s picture

@sylus, thanks for your help! I believe that now this issue will be solved faster :)

moniuch’s picture

Yep, that worked for me. Thanks.

kalabro’s picture

Status: Needs work » Closed (works as designed)
StatusFileSize
new41.84 KB

Looks like it is normal behaviour for this type of translation:

2013-06-16_21-59-28.png

kalabro’s picture

Issue summary: View changes

spelling

jfeltkamp’s picture

Issue summary: View changes

Thanks @Sylus for #4 giving the important hint.

I had just to change the second number to solve my problem:

[node:field-category:0:parents-all:1:parent:i18n-name]
 to
[node:field-category:0:parents-all:0:parent:i18n-name]

I think the first number gives the field-item number if you have multiple or unlimited field values. The meaning of the second number what I have changed to "0" I don't know. But it works fine now.