Update form descriptions for CMS and friend links

Refined the descriptions for the CMS mode and friend link options in the theme configuration form to provide clearer instructions, including specifying the required link category for friend links.
This commit is contained in:
浪子 2025-06-28 17:04:48 +08:00
parent 06b337f0b3
commit c106a387f2
1 changed files with 2 additions and 2 deletions

View File

@ -29,11 +29,11 @@ function themeConfig($form)
$form->addInput($pageprev);
$cmsmodel = new Typecho_Widget_Helper_Form_Element_Radio('cmsmodel',
array('0'=> _t('否'), '1'=> _t('是')),
'0', _t('CMS模式'), _t('选择"是"开启CMS模式。选择否则使用博客模式'));
'0', _t('CMS模式'), _t('选择"是"开启CMS模式。'));
$form->addInput($cmsmodel);
$friendlink = new Typecho_Widget_Helper_Form_Element_Radio('friendlink',
array('0'=> _t('否'), '1'=> _t('是')),
'0', _t('友情链接'), _t('选择"是"在首页显示友情链接。开启前请安装"Links"插件。默认关闭'));
'0', _t('友情链接'), _t('选择"是"在首页显示友情链接。开启前请安装"Links"插件。链接分类需设置为home默认关闭'));
$form->addInput($friendlink);
$social = new Typecho_Widget_Helper_Form_Element_Radio('social',
array('0'=> _t('否'), '1'=> _t('是')),