Sunday 10 July 2011

Localized Text

Any text that is output in the control panel should use language variables in your lang file to allow localization.

INCORRECT: 
return "Invalid Selection"; 
CORRECT: 
return $this->lang->line('invalid_selection');

No comments:

Post a Comment