$app_strings['LBL_EXAMPLE_APP_STR'] = 'Example Application String';
$mod_strings['LBL_EXAMPLE_MOD_STR'] = 'Example string for a specified module';
$mod_strings['LBL_EXAMPLE_VARIABLE'] = 'Example string to use value of {foo}';
$text = new LangText('LBL_EXAMPLE_APP_STR');
echo $text;
$text = new LangText('LBL_EXAMPLE_VARIABLE', ['foo' => 'bar']);
echo $text;
$text = new LangText('LBL_EXAMPLE_MOD_STR', null, LangText::USING_MOD_STRINGS);
echo $text;
$text = new LangText('LBL_EXAMPLE_APP_STR', null, LangText::USING_APP_STRINGS);
echo $text;