I think that problem is related to my server. So, i cannot add a new language (in frontend).
I could add my language through a query, and making these new files:
administrator/components/com_ariquiz/i18n/cache/ifronted/
mylang.php
administrator/components/com_ariquiz/cache/files/ifronted/
mylang.xml
Now the problem is that i don't know what to put in the query for the content.
This would be my query:
Code: |
INSERT INTO `jos_ariquizfile` (`FileId`, `Content`, `FileName`, `Group`, `Size`, `Description`, `ShortDescription`, `Created`, `CreatedBy`, `Modified`, `ModifiedBy`, `Extension`, `Height`, `Width`, `Flags`) VALUES
(4,
content???,
'mylang.xml',
'lfrontend',
4709,
NULL,
'MyLang',
'2009-10-31 02:42:53',
62,
NULL,
NULL,
'xml',
0,
0,
1);
|