return array(
'one' => array(
'two' => 'three'
)
);
You'll end up with a key called "one.two", which has the value "three". If you load this (could be a config file, or a language file), it will be loaded as such.
So, if this array is in the language file "filename",Lang::load('filename');
will load it as such. Which means you retrieve it by usingLang::line('one.two');
you will retrieve your string. If you want it to be prefixed, you will have to load it as such:// load it with the prefix equal to the filename
Lang::load('filename', true);
// load it with a specific prefix
Lang::load('filename', 'prefix');
It looks like you're new here. If you want to get involved, click one of these buttons!