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
@@ -324,6 +324,7 @@ $lang_functions = array
'text_seed_points' => 'Seed points',
'spoiler_expand_collapse' => 'Click to expand/collapse',
'spoiler_default_title' => 'Collapse content',
'pt_gen_get_description' => 'Get desc',
);
?>
+3
View File
@@ -735,6 +735,9 @@ $lang_settings = array
'text_attendance_continuous_add_rules' => 'Please add rules from lowest to highest',
'row_attendance_card' => 'Buy attendance card',
'text_attendance_card_note' => "bonus points to buy a attendance card. Default'" . \App\Models\BonusLogs::DEFAULT_BONUS_BUY_ATTENDANCE_CARD . "'.",
'row_site_language_enabled' => 'Site enabled language',
'text_site_language_enabled_note' => 'Select site enabled language',
'keep_at_least_one' => 'Keep at least one',
);
?>
+15
View File
@@ -133,6 +133,21 @@ $lang_tags = array
'text_spoiler_description' => 'Insert expandable/collapsible content on the page',
'text_spoiler_syntax' => '[spoiler=title]This is the folded content[/spoiler]',
'text_spoiler_example' => '[spoiler=What happened to the final ending of the hero?]The hero died last![/spoiler]',
'text_left' => 'Text align left',
'text_left_description' => 'Insert left-justified content on the page',
'text_left_syntax' => '[left]This is the left-aligned content[/left]',
'text_left_example' => '[left]This is the left-aligned content[/left]',
'text_center' => 'Text align center',
'text_center_description' => 'Insert center-justified content on the page',
'text_center_syntax' => '[center]This is the center-aligned content[/center]',
'text_center_example' => '[center]This is the center-aligned content[/center]',
'text_right' => 'Text align right',
'text_right_description' => 'Insert right-justified content on the page',
'text_right_syntax' => '[right]This is the right-aligned content[/right]',
'text_right_example' => '[right]This is the right-aligned content[/right]',
);
?>