A documentation section has been added to the admin panel.

This commit is contained in:
2024-05-17 21:05:13 +05:00
parent 156d8a9f68
commit 45504791c0
93 changed files with 3495 additions and 10 deletions

View File

@@ -13,4 +13,7 @@ return [
'Links project' => 'Links from the project',
'Translations' => 'Translations',
'Feedback' => 'Feedback',
'Documentation version' => 'Documentation version',
'Documentation' => 'Documentation',
'Categories' => 'Categories',
];

View File

@@ -17,4 +17,6 @@ return [
'ProjectLink' => 'Links from the project',
'ProjectTranslation' => 'Translations',
'ProjectFeedback' => 'Feedback',
'Documentation' => 'Documentation',
'DocumentationCategory' => 'Documentation category',
];

View File

@@ -151,6 +151,8 @@ return [
'no_type' => 'The :attribute can only use: :type.',
'captcha' => 'Failed to pass human verification.',
'http_host' => 'The :attribute must be a valid domain.',
'parent' => 'A parent cannot refer to itself.',
'parent_cycle_detected' => 'Category ID occurs in the parent chain.',
'attributes' => [
'address' => 'address',
'affiliate_url' => 'affiliate URL',
@@ -301,5 +303,9 @@ return [
'translations' => 'translations',
'translations.*.code' => 'translations code',
'translations.*.text' => 'translations',
'parent_id' => 'parent',
'content.*.title' => 'title',
'content.*.content' => 'content',
'category_id' => 'category',
],
];

View File

@@ -0,0 +1,7 @@
<?php
return [
'NotSupported' => 'Not Supported',
'Supported' => 'Supported',
'CurrentVersion' => 'Current version',
'FutureVersion' => 'Future version',
];