Closed (fixed)
Project:
Internationalization
Version:
6.x-1.0
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
26 Mar 2009 at 05:08 UTC
Updated:
24 Jul 2010 at 12:00 UTC
Hi,
I have spent hours looking for a solution and I am stumped. How can I change the breadcrumb root link 'Home' to be called 'Inicio' when the page is being viewed in Spanish?
In my menu.inc file, I see that 'Home' is wrapped inside a t string but I can't find the string anywhere!
Thanks in advance
Comments
Comment #1
apemantus commentedYou can do it one of two ways: through the translation interface (just search for "Home") or through settings.php:
$conf['locale_custom_strings_es'] = array(
'Home'=>"Inicio",
);
should work
Comment #2
hass commentedThis is a core string... import the Spanish translation files from core. Maybe the ES team know why it's missing in their translation.
Comment #4
webel commented@apemantus
This tip failed for me with Norwegian Bokmal: 'nb'
Visit live at: http://www.aur.no/tjenester
Comment #5
jose reyero commentedYes, this is a code string but when the menu item gets created it becomes a db string so it's half/half.
You'll need i18nstrings + i18nmenu and marking the menu item as translatable.