模块加载程序错误:“清单文件指定无法识别的程序包类型”(SuiteCRM)

时间:2017-06-25 10:59:41

标签: module sugarcrm suitecrm turkish

当我尝试在管理员/模块加载程序选项卡

上加载语言包(turkish)时

我收到以下错误:

清单文件指定无法识别的包裹类型:'dilpaketi'

此外,我尝试了不同的语言包,这是葡萄牙语我没有得到这种语言的错误。土耳其语的这个错误。

如何解决这个问题,请帮助我。

error image

1 个答案:

答案 0 :(得分:1)

土耳其语言包#34; manifest.php"文件错了。我在zip之外编辑此文件并将该文件替换为zip文件。然后我再次尝试,它成功了。

翻译人员犯了很大的错误。

manifest.php文件应该是这样的:

    <?PHP
/******************************************
 * SuiteCRM Translations
 * @URL: https://crowdin.com/project/suitecrmtrans
 * @author SuiteCRM Community via Crowdin
 ******************************************/
$manifest = array( 
    'name' => 'Turkce (Turkiye)',
    'description' => 'Çeviri: www.crowdin.com/project/suitecrmtranslations',
    'type' => 'langpack',
    'is_uninstallable' => 'Yes',
    'acceptable_sugar_versions' =>
          array (),
    'acceptable_sugar_flavors' =>
          array('CE'),
    'author' => 'SuiteCRM Community',
    'version' => '7.9.1.0',
    'published_date' => '2017-06-19',
      );
$installdefs = array(
    'id'=> 'tr_TR',
    'image_dir'=>'<basepath>/images',
    'copy' => array(
    array('from'=> '<basepath>/include','to'=>'include'),
    array('from'=> '<basepath>/modules','to'=>'modules'),
    array('from'=> '<basepath>/install','to'=>'install'),
   )
 );
?>