0

I've mentioned my component name in menu in sys.ini file. I've mentioned this on xml file also, but the language file didnt change in Joomla 1.5

language/en-GB/en-GB.com_examsmsstaff.sys.ini

COM_EXAM="Exam"

Xml file

<languages folder="admin">
    <language tag="en-GB">language/en-GB/en-GB.com_examsmsstaff.sys.ini</language>
</languages>
SomeKittens
  • 38,868
  • 19
  • 114
  • 143
ram
  • 593
  • 1
  • 8
  • 18

2 Answers2

0

Joomla is pretty fussy about naming conventions. take the .sys. out of the file name and you should see it working (assuming that your component is installed and working as com_examsmsstaff)

GDP
  • 8,109
  • 6
  • 45
  • 82
0

.sys.ini files only work in Joomla 1.6 and above. If you're looking to name menu items, place the code into a file named .menu.ini.

For instance, your file above would be:

en-GB.com_examsmsstaff.menu.ini
Community
  • 1
  • 1
SomeKittens
  • 38,868
  • 19
  • 114
  • 143