hello,
For Media Library software for see yours language at time adding book ypu need:
In yours language file e.g. English
{yours site}/components/com_medialibrary/language/poland.php
find code some like:
Code: |
DEFINE('_MEDIALIBRARY_LANGUAGE_SPA', 'Spanish');
DEFINE('_MEDIALIBRARY_LANGUAGE_RUS', 'Russian');
|
and add to it self variable, with language name some like:
Code: |
DEFINE('_MEDIALIBRARY_LANGUAGE_SPA', 'Spanish');
DEFINE('_MEDIALIBRARY_LANGUAGE_RUS', 'Russian');
DEFINE('_MEDIALIBRARY_LANGUAGE_POL', 'Poland');
|
You need do that in all language files - what yours site will support
After that you need open file:
{yours site}/administrator/components/com_medialibrary/admin.medialibrary.class.others.php
find function: getLanguageArray
and in it code:
Code: |
array_push($retVal, array("Spanish",_MEDIALIBRARY_LANGUAGE_SPA));
array_push($retVal, array("Russian", _MEDIALIBRARY_LANGUAGE_RUS));
|
replace to
Code: |
array_push($retVal, array("Spanish",_MEDIALIBRARY_LANGUAGE_SPA));
array_push($retVal, array("Russian", _MEDIALIBRARY_LANGUAGE_RUS));
array_push($retVal, array("Poland", _MEDIALIBRARY_LANGUAGE_POL));
|
But first please backup all files what you will edit
Thanks,
OrdaSoft team