SOLVED Having problem outputting frontend translation for you_are_here etc..
Posted: Sun Dec 14, 2008 7:53 pm
Hi..
Have read Tips & Tricks #7 in this thread:
http://forum.cmsmadesimple.org/index.ph ... 318.0.html
And are using in the template for the page, this:
I have created this file:
mle/lang/no_NO.php
having this content:
In my frontend for the page in question I just get this output for "You are here"
Okay.. then I change this:
into this:
just changed the single quotes around the $mle_translation.you_are_here to double quotes.
and now my frontend display:
Does anyone know what I have done wrong?
Have read Tips & Tricks #7 in this thread:
http://forum.cmsmadesimple.org/index.ph ... 318.0.html
And are using in the template for the page, this:
Code: Select all
{* Start Breadcrumbs *}
<div class="breadcrumbs">
{breadcrumbs starttext='$mle_translation.you_are_here' root='Home' delimiter='»'}
<hr class="accessibility" />
</div>
{* End Breadcrumbs *}
mle/lang/no_NO.php
having this content:
Code: Select all
<?php $arr_mlelang = array(
'you_are_here' => 'Du er her:',
); ?>
Code: Select all
$mle_translation.you_are_here
Code: Select all
{breadcrumbs starttext='$mle_translation.you_are_here' root='Home' delimiter='»'}
Code: Select all
{breadcrumbs starttext="$mle_translation.you_are_here" root='Home' delimiter='»'}
and now my frontend display:
Code: Select all
Array.you_are_here