yangdx
commited on
Commit
·
d3d5801
1
Parent(s):
01274c1
Add description to status dialog
Browse files
lightrag_webui/src/components/status/StatusDialog.tsx
CHANGED
@@ -5,6 +5,7 @@ import {
|
|
5 |
DialogContent,
|
6 |
DialogHeader,
|
7 |
DialogTitle,
|
|
|
8 |
} from '@/components/ui/Dialog'
|
9 |
import StatusCard from './StatusCard'
|
10 |
|
@@ -22,6 +23,9 @@ const StatusDialog = ({ open, onOpenChange, status }: StatusDialogProps) => {
|
|
22 |
<DialogContent className="sm:max-w-[500px]">
|
23 |
<DialogHeader>
|
24 |
<DialogTitle>{t('graphPanel.statusDialog.title')}</DialogTitle>
|
|
|
|
|
|
|
25 |
</DialogHeader>
|
26 |
<StatusCard status={status} />
|
27 |
</DialogContent>
|
|
|
5 |
DialogContent,
|
6 |
DialogHeader,
|
7 |
DialogTitle,
|
8 |
+
DialogDescription,
|
9 |
} from '@/components/ui/Dialog'
|
10 |
import StatusCard from './StatusCard'
|
11 |
|
|
|
23 |
<DialogContent className="sm:max-w-[500px]">
|
24 |
<DialogHeader>
|
25 |
<DialogTitle>{t('graphPanel.statusDialog.title')}</DialogTitle>
|
26 |
+
<DialogDescription>
|
27 |
+
{t('graphPanel.statusDialog.description')}
|
28 |
+
</DialogDescription>
|
29 |
</DialogHeader>
|
30 |
<StatusCard status={status} />
|
31 |
</DialogContent>
|
lightrag_webui/src/locales/ar.json
CHANGED
@@ -140,7 +140,8 @@
|
|
140 |
"graphPanel": {
|
141 |
"dataIsTruncated": "تم اقتصار بيانات الرسم البياني على الحد الأقصى للعقد",
|
142 |
"statusDialog": {
|
143 |
-
"title": "إعدادات خادم LightRAG"
|
|
|
144 |
},
|
145 |
"legend": "المفتاح",
|
146 |
"nodeTypes": {
|
|
|
140 |
"graphPanel": {
|
141 |
"dataIsTruncated": "تم اقتصار بيانات الرسم البياني على الحد الأقصى للعقد",
|
142 |
"statusDialog": {
|
143 |
+
"title": "إعدادات خادم LightRAG",
|
144 |
+
"description": "عرض حالة النظام الحالية ومعلومات الاتصال"
|
145 |
},
|
146 |
"legend": "المفتاح",
|
147 |
"nodeTypes": {
|
lightrag_webui/src/locales/en.json
CHANGED
@@ -140,7 +140,8 @@
|
|
140 |
"graphPanel": {
|
141 |
"dataIsTruncated": "Graph data is truncated to Max Nodes",
|
142 |
"statusDialog": {
|
143 |
-
"title": "LightRAG Server Settings"
|
|
|
144 |
},
|
145 |
"legend": "Legend",
|
146 |
"nodeTypes": {
|
|
|
140 |
"graphPanel": {
|
141 |
"dataIsTruncated": "Graph data is truncated to Max Nodes",
|
142 |
"statusDialog": {
|
143 |
+
"title": "LightRAG Server Settings",
|
144 |
+
"description": "View current system status and connection information"
|
145 |
},
|
146 |
"legend": "Legend",
|
147 |
"nodeTypes": {
|
lightrag_webui/src/locales/fr.json
CHANGED
@@ -140,7 +140,8 @@
|
|
140 |
"graphPanel": {
|
141 |
"dataIsTruncated": "Les données du graphe sont tronquées au nombre maximum de nœuds",
|
142 |
"statusDialog": {
|
143 |
-
"title": "Paramètres du Serveur LightRAG"
|
|
|
144 |
},
|
145 |
"legend": "Légende",
|
146 |
"nodeTypes": {
|
|
|
140 |
"graphPanel": {
|
141 |
"dataIsTruncated": "Les données du graphe sont tronquées au nombre maximum de nœuds",
|
142 |
"statusDialog": {
|
143 |
+
"title": "Paramètres du Serveur LightRAG",
|
144 |
+
"description": "Afficher l'état actuel du système et les informations de connexion"
|
145 |
},
|
146 |
"legend": "Légende",
|
147 |
"nodeTypes": {
|
lightrag_webui/src/locales/zh.json
CHANGED
@@ -140,7 +140,8 @@
|
|
140 |
"graphPanel": {
|
141 |
"dataIsTruncated": "图数据已截断至最大返回节点数",
|
142 |
"statusDialog": {
|
143 |
-
"title": "LightRAG 服务器设置"
|
|
|
144 |
},
|
145 |
"legend": "图例",
|
146 |
"nodeTypes": {
|
|
|
140 |
"graphPanel": {
|
141 |
"dataIsTruncated": "图数据已截断至最大返回节点数",
|
142 |
"statusDialog": {
|
143 |
+
"title": "LightRAG 服务器设置",
|
144 |
+
"description": "查看当前系统状态和连接信息"
|
145 |
},
|
146 |
"legend": "图例",
|
147 |
"nodeTypes": {
|