How can I change "Keyword Album" prefix to be suffix?
In keyword albums, the album name is listed as:
Keyword Album: keywordname
Is there a place I can change it to say just keywordname?
In my case, I'd like to change it to be suffix. Is it possible.
I've did
edit /moduels/keywordAlbum/KeywordAlbum.inc
$module->translate(array('text' => 'Keyword Album: %s', 'arg1' => $keyword)),
To be
$module->translate(array('arg1' => $keyword,'text' => 'Keyword Album: %s',)),
But result in same as not changed.