Module loader error: "Manifest file specifies an unrecognized package type" (SuiteCRM)
Module loader error: "Manifest file specifies an unrecognized package type" (SuiteCRM)
当我尝试在 admin/module 加载程序选项卡上加载语言包 (turkish) 时
我收到以下错误:
清单文件指定了无法识别的包裹类型:'dilpaketi'
我还尝试了不同的语言包,它是葡萄牙语,但我没有收到该语言的错误消息。此错误适用于土耳其语。
如何解决这个问题,请帮助我。
土耳其语语言包 "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'),
)
);
?>
当我尝试在 admin/module 加载程序选项卡上加载语言包 (turkish) 时
我收到以下错误:
清单文件指定了无法识别的包裹类型:'dilpaketi'
我还尝试了不同的语言包,它是葡萄牙语,但我没有收到该语言的错误消息。此错误适用于土耳其语。
如何解决这个问题,请帮助我。
土耳其语语言包 "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'),
)
);
?>