I’m having trouble with lexicon keys in a CMP.
I have cheatsheet_desc in the Description field of the Menu item.
I created a lexicon file:
core/components/cheatsheet/lexicion/en/default.inc.php
and another at
assets/components/cheatsheet/lexicion/en/default.inc.php
With this content:
<?php
$_lang['cheatsheet_desc'] = 'MODx Cheat Sheet';
I know the namespace path is correct because the CMP executes fine, but the description shows as cheatsheet_desc in the menu.
Do I have to explicitly load the lexicon file somewhere or is there something else I’ve missed?