yangdx
commited on
Commit
·
235ca57
1
Parent(s):
834ea2d
Fix i18n translation
Browse files
lightrag_webui/src/locales/ar.json
CHANGED
@@ -94,7 +94,7 @@
|
|
94 |
},
|
95 |
"pipelineStatus": {
|
96 |
"title": "حالة خط المعالجة",
|
97 |
-
"busy": "مشغول",
|
98 |
"requestPending": "الطلب معلق",
|
99 |
"jobName": "اسم المهمة",
|
100 |
"startTime": "وقت البدء",
|
|
|
94 |
},
|
95 |
"pipelineStatus": {
|
96 |
"title": "حالة خط المعالجة",
|
97 |
+
"busy": "خط المعالجة مشغول",
|
98 |
"requestPending": "الطلب معلق",
|
99 |
"jobName": "اسم المهمة",
|
100 |
"startTime": "وقت البدء",
|
lightrag_webui/src/locales/en.json
CHANGED
@@ -59,6 +59,8 @@
|
|
59 |
"title": "Document Management",
|
60 |
"scanButton": "Scan",
|
61 |
"scanTooltip": "Scan documents",
|
|
|
|
|
62 |
"uploadedTitle": "Uploaded Documents",
|
63 |
"uploadedDescription": "List of uploaded documents and their statuses.",
|
64 |
"emptyTitle": "No Documents",
|
@@ -89,6 +91,19 @@
|
|
89 |
"hideButton": "Hide",
|
90 |
"showFileNameTooltip": "Show file name",
|
91 |
"hideFileNameTooltip": "Hide file name"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
}
|
93 |
},
|
94 |
"graphPanel": {
|
@@ -113,7 +128,6 @@
|
|
113 |
"save": "Save",
|
114 |
"refreshLayout": "Refresh Layout"
|
115 |
},
|
116 |
-
|
117 |
"zoomControl": {
|
118 |
"zoomIn": "Zoom In",
|
119 |
"zoomOut": "Zoom Out",
|
@@ -121,7 +135,6 @@
|
|
121 |
"rotateCamera": "Clockwise Rotate",
|
122 |
"rotateCameraCounterClockwise": "Counter-Clockwise Rotate"
|
123 |
},
|
124 |
-
|
125 |
"layoutsControl": {
|
126 |
"startAnimation": "Continue layout animation",
|
127 |
"stopAnimation": "Stop layout animation",
|
@@ -135,7 +148,6 @@
|
|
135 |
"Force Atlas": "Force Atlas"
|
136 |
}
|
137 |
},
|
138 |
-
|
139 |
"fullScreenControl": {
|
140 |
"fullScreen": "Full Screen",
|
141 |
"windowed": "Windowed"
|
@@ -224,7 +236,6 @@
|
|
224 |
"querySettings": {
|
225 |
"parametersTitle": "Parameters",
|
226 |
"parametersDescription": "Configure your query parameters",
|
227 |
-
|
228 |
"queryMode": "Query Mode",
|
229 |
"queryModeTooltip": "Select the retrieval strategy:\n• Naive: Basic search without advanced techniques\n• Local: Context-dependent information retrieval\n• Global: Utilizes global knowledge base\n• Hybrid: Combines local and global retrieval\n• Mix: Integrates knowledge graph with vector retrieval",
|
230 |
"queryModeOptions": {
|
@@ -234,7 +245,6 @@
|
|
234 |
"hybrid": "Hybrid",
|
235 |
"mix": "Mix"
|
236 |
},
|
237 |
-
|
238 |
"responseFormat": "Response Format",
|
239 |
"responseFormatTooltip": "Defines the response format. Examples:\n• Multiple Paragraphs\n• Single Paragraph\n• Bullet Points",
|
240 |
"responseFormatOptions": {
|
@@ -242,37 +252,27 @@
|
|
242 |
"singleParagraph": "Single Paragraph",
|
243 |
"bulletPoints": "Bullet Points"
|
244 |
},
|
245 |
-
|
246 |
"topK": "Top K Results",
|
247 |
"topKTooltip": "Number of top items to retrieve. Represents entities in 'local' mode and relationships in 'global' mode",
|
248 |
"topKPlaceholder": "Number of results",
|
249 |
-
|
250 |
"maxTokensTextUnit": "Max Tokens for Text Unit",
|
251 |
"maxTokensTextUnitTooltip": "Maximum number of tokens allowed for each retrieved text chunk",
|
252 |
-
|
253 |
"maxTokensGlobalContext": "Max Tokens for Global Context",
|
254 |
"maxTokensGlobalContextTooltip": "Maximum number of tokens allocated for relationship descriptions in global retrieval",
|
255 |
-
|
256 |
"maxTokensLocalContext": "Max Tokens for Local Context",
|
257 |
"maxTokensLocalContextTooltip": "Maximum number of tokens allocated for entity descriptions in local retrieval",
|
258 |
-
|
259 |
"historyTurns": "History Turns",
|
260 |
"historyTurnsTooltip": "Number of complete conversation turns (user-assistant pairs) to consider in the response context",
|
261 |
"historyTurnsPlaceholder": "Number of history turns",
|
262 |
-
|
263 |
"hlKeywords": "High-Level Keywords",
|
264 |
"hlKeywordsTooltip": "List of high-level keywords to prioritize in retrieval. Separate with commas",
|
265 |
"hlkeywordsPlaceHolder": "Enter keywords",
|
266 |
-
|
267 |
"llKeywords": "Low-Level Keywords",
|
268 |
"llKeywordsTooltip": "List of low-level keywords to refine retrieval focus. Separate with commas",
|
269 |
-
|
270 |
"onlyNeedContext": "Only Need Context",
|
271 |
"onlyNeedContextTooltip": "If True, only returns the retrieved context without generating a response",
|
272 |
-
|
273 |
"onlyNeedPrompt": "Only Need Prompt",
|
274 |
"onlyNeedPromptTooltip": "If True, only returns the generated prompt without producing a response",
|
275 |
-
|
276 |
"streamResponse": "Stream Response",
|
277 |
"streamResponseTooltip": "If True, enables streaming output for real-time responses"
|
278 |
}
|
|
|
59 |
"title": "Document Management",
|
60 |
"scanButton": "Scan",
|
61 |
"scanTooltip": "Scan documents",
|
62 |
+
"pipelineStatusButton": "Pipeline Status",
|
63 |
+
"pipelineStatusTooltip": "View pipeline status",
|
64 |
"uploadedTitle": "Uploaded Documents",
|
65 |
"uploadedDescription": "List of uploaded documents and their statuses.",
|
66 |
"emptyTitle": "No Documents",
|
|
|
91 |
"hideButton": "Hide",
|
92 |
"showFileNameTooltip": "Show file name",
|
93 |
"hideFileNameTooltip": "Hide file name"
|
94 |
+
},
|
95 |
+
"pipelineStatus": {
|
96 |
+
"title": "Pipeline Status",
|
97 |
+
"busy": "Pipeline Busy",
|
98 |
+
"requestPending": "Reques Pending",
|
99 |
+
"jobName": "Job Name",
|
100 |
+
"startTime": "Start Time",
|
101 |
+
"progress": "Progress",
|
102 |
+
"latestMessage": "Latest Message",
|
103 |
+
"historyMessages": "History Message",
|
104 |
+
"errors": {
|
105 |
+
"fetchFailed": "Fail to get pipeline status\n{{error}}"
|
106 |
+
}
|
107 |
}
|
108 |
},
|
109 |
"graphPanel": {
|
|
|
128 |
"save": "Save",
|
129 |
"refreshLayout": "Refresh Layout"
|
130 |
},
|
|
|
131 |
"zoomControl": {
|
132 |
"zoomIn": "Zoom In",
|
133 |
"zoomOut": "Zoom Out",
|
|
|
135 |
"rotateCamera": "Clockwise Rotate",
|
136 |
"rotateCameraCounterClockwise": "Counter-Clockwise Rotate"
|
137 |
},
|
|
|
138 |
"layoutsControl": {
|
139 |
"startAnimation": "Continue layout animation",
|
140 |
"stopAnimation": "Stop layout animation",
|
|
|
148 |
"Force Atlas": "Force Atlas"
|
149 |
}
|
150 |
},
|
|
|
151 |
"fullScreenControl": {
|
152 |
"fullScreen": "Full Screen",
|
153 |
"windowed": "Windowed"
|
|
|
236 |
"querySettings": {
|
237 |
"parametersTitle": "Parameters",
|
238 |
"parametersDescription": "Configure your query parameters",
|
|
|
239 |
"queryMode": "Query Mode",
|
240 |
"queryModeTooltip": "Select the retrieval strategy:\n• Naive: Basic search without advanced techniques\n• Local: Context-dependent information retrieval\n• Global: Utilizes global knowledge base\n• Hybrid: Combines local and global retrieval\n• Mix: Integrates knowledge graph with vector retrieval",
|
241 |
"queryModeOptions": {
|
|
|
245 |
"hybrid": "Hybrid",
|
246 |
"mix": "Mix"
|
247 |
},
|
|
|
248 |
"responseFormat": "Response Format",
|
249 |
"responseFormatTooltip": "Defines the response format. Examples:\n• Multiple Paragraphs\n• Single Paragraph\n• Bullet Points",
|
250 |
"responseFormatOptions": {
|
|
|
252 |
"singleParagraph": "Single Paragraph",
|
253 |
"bulletPoints": "Bullet Points"
|
254 |
},
|
|
|
255 |
"topK": "Top K Results",
|
256 |
"topKTooltip": "Number of top items to retrieve. Represents entities in 'local' mode and relationships in 'global' mode",
|
257 |
"topKPlaceholder": "Number of results",
|
|
|
258 |
"maxTokensTextUnit": "Max Tokens for Text Unit",
|
259 |
"maxTokensTextUnitTooltip": "Maximum number of tokens allowed for each retrieved text chunk",
|
|
|
260 |
"maxTokensGlobalContext": "Max Tokens for Global Context",
|
261 |
"maxTokensGlobalContextTooltip": "Maximum number of tokens allocated for relationship descriptions in global retrieval",
|
|
|
262 |
"maxTokensLocalContext": "Max Tokens for Local Context",
|
263 |
"maxTokensLocalContextTooltip": "Maximum number of tokens allocated for entity descriptions in local retrieval",
|
|
|
264 |
"historyTurns": "History Turns",
|
265 |
"historyTurnsTooltip": "Number of complete conversation turns (user-assistant pairs) to consider in the response context",
|
266 |
"historyTurnsPlaceholder": "Number of history turns",
|
|
|
267 |
"hlKeywords": "High-Level Keywords",
|
268 |
"hlKeywordsTooltip": "List of high-level keywords to prioritize in retrieval. Separate with commas",
|
269 |
"hlkeywordsPlaceHolder": "Enter keywords",
|
|
|
270 |
"llKeywords": "Low-Level Keywords",
|
271 |
"llKeywordsTooltip": "List of low-level keywords to refine retrieval focus. Separate with commas",
|
|
|
272 |
"onlyNeedContext": "Only Need Context",
|
273 |
"onlyNeedContextTooltip": "If True, only returns the retrieved context without generating a response",
|
|
|
274 |
"onlyNeedPrompt": "Only Need Prompt",
|
275 |
"onlyNeedPromptTooltip": "If True, only returns the generated prompt without producing a response",
|
|
|
276 |
"streamResponse": "Stream Response",
|
277 |
"streamResponseTooltip": "If True, enables streaming output for real-time responses"
|
278 |
}
|
lightrag_webui/src/locales/fr.json
CHANGED
@@ -85,11 +85,16 @@
|
|
85 |
"loadFailed": "Échec du chargement des documents\n{{error}}",
|
86 |
"scanFailed": "Échec de la numérisation des documents\n{{error}}",
|
87 |
"scanProgressFailed": "Échec de l'obtention de la progression de la numérisation\n{{error}}"
|
88 |
-
}
|
|
|
|
|
|
|
|
|
|
|
89 |
},
|
90 |
"pipelineStatus": {
|
91 |
"title": "État du Pipeline",
|
92 |
-
"busy": "
|
93 |
"requestPending": "Requête en attente",
|
94 |
"jobName": "Nom du travail",
|
95 |
"startTime": "Heure de début",
|
|
|
85 |
"loadFailed": "Échec du chargement des documents\n{{error}}",
|
86 |
"scanFailed": "Échec de la numérisation des documents\n{{error}}",
|
87 |
"scanProgressFailed": "Échec de l'obtention de la progression de la numérisation\n{{error}}"
|
88 |
+
},
|
89 |
+
"fileNameLabel": "Nom du fichier",
|
90 |
+
"showButton": "Afficher",
|
91 |
+
"hideButton": "Masquer",
|
92 |
+
"showFileNameTooltip": "Afficher le nom du fichier",
|
93 |
+
"hideFileNameTooltip": "Masquer le nom du fichier"
|
94 |
},
|
95 |
"pipelineStatus": {
|
96 |
"title": "État du Pipeline",
|
97 |
+
"busy": "Pipeline occupé",
|
98 |
"requestPending": "Requête en attente",
|
99 |
"jobName": "Nom du travail",
|
100 |
"startTime": "Heure de début",
|
lightrag_webui/src/locales/zh.json
CHANGED
@@ -94,8 +94,8 @@
|
|
94 |
},
|
95 |
"pipelineStatus": {
|
96 |
"title": "流水线状态",
|
97 |
-
"busy": "
|
98 |
-
"requestPending": "
|
99 |
"jobName": "作业名称",
|
100 |
"startTime": "开始时间",
|
101 |
"progress": "进度",
|
|
|
94 |
},
|
95 |
"pipelineStatus": {
|
96 |
"title": "流水线状态",
|
97 |
+
"busy": "流水线忙碌",
|
98 |
+
"requestPending": "待处理请求",
|
99 |
"jobName": "作业名称",
|
100 |
"startTime": "开始时间",
|
101 |
"progress": "进度",
|