text align tag + update/edit get desc + rating improve

This commit is contained in:
xiaomlove
2022-04-14 00:52:28 +08:00
parent d2a87ccda0
commit 9759c09320
44 changed files with 541 additions and 122 deletions
+1
View File
@@ -322,6 +322,7 @@ $lang_functions = array
'text_seed_points' => '做种积分',
'spoiler_expand_collapse' => '点击展开/收缩',
'spoiler_default_title' => '折叠内容',
'pt_gen_get_description' => '获取简介',
);
?>
+3
View File
@@ -736,6 +736,9 @@ $lang_settings = array
'text_attendance_continuous_add_rules' => '请请从小到大添加规则',
'row_attendance_card' => '购买补签卡',
'text_attendance_card_note' => "个魔力值,如果他需要购买一张补签卡。默认'" . \App\Models\BonusLogs::DEFAULT_BONUS_BUY_ATTENDANCE_CARD . "'。",
'row_site_language_enabled' => '站点启用语言',
'text_site_language_enabled_note' => '选择站点启用的语言',
'keep_at_least_one' => '至少保留一个',
);
?>
+15
View File
@@ -133,6 +133,21 @@ $lang_tags = array
'text_spoiler_description' => '在页面插入可展开/收缩的内容',
'text_spoiler_syntax' => '[spoiler=标题]这是被折叠的内容[/spoiler]',
'text_spoiler_example' => '[spoiler=英雄最后的结局怎么样了?]英雄最后死掉了![/spoiler]',
'text_left' => '靠左对齐',
'text_left_description' => '在页面插入靠左对齐的内容',
'text_left_syntax' => '[left]这是靠左对齐的内容[/left]',
'text_left_example' => '[left]这是靠左对齐的内容[/left]',
'text_center' => '居中对齐',
'text_center_description' => '在页面插入居中对齐的内容',
'text_center_syntax' => '[center]这是居中对齐的内容[/center]',
'text_center_example' => '[center]这是居中对齐的内容[/center]',
'text_right' => '靠右对齐',
'text_right_description' => '在页面插入靠右对齐的内容',
'text_right_syntax' => '[right]这是靠右对齐的内容[/right]',
'text_right_example' => '[right]这是靠右对齐的内容[/right]',
);
?>