Hi Gregory, please compare your manifest.php file against this example. You can also download different language files from www.sugarforge.net if you want to see more examples. I recall Julian (from SugarCRM team) posted excellent explanation about manifest.php structure and its different settings but I couldn't find it now.
Hope this helps, however.
Best,
- Markku
Code:
// manifest file for information regarding application of new code
$manifest = array(
// only install on the following regex sugar versions (if empty, no check)
'acceptable_sugar_versions' => array (
'exact_matches' => array (),
'regex_matches' => array ( 0 => '4\\.0\\.1*' ),
),
// name of new code
'name' => 'xxxx language pack',
// description of new code
'description' => 'xxxx translation for SugarCRM 4.0.1',
// author of new code
'author' => 'xxxx',
// date published
'published_date' => '2006/03/20',
// version of code
'version' => '20.3.2006',
// uninstallable
'is_uninstallable' => 'Yes',
// type of code (valid choices are: full, langpack, module, patch, theme )
'type' => 'langpack',
// icon for displaying in UI (path to graphic contained within zip package)
'icon' => 'include/images/flag-fi_FI.gif',
);
$installdefs = array(
'id'=> 'Finnish',
'image_dir'=>'<basepath>/images',
'copy' => array(
array('from'=> '<basepath>/include',
'to'=> 'include',
),
array('from'=> '<basepath>/modules',
'to'=> 'modules',
),
),
);
Bookmarks