plugin-cluster-manager 1.1.10 → 1.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client-v2.d.ts +2 -0
- package/client-v2.js +1 -0
- package/client.js +1 -0
- package/dist/client/index.js +1 -1
- package/dist/client-v2/914.5dc1105cf3ada6a6.js +10 -0
- package/dist/client-v2/index.js +10 -0
- package/dist/externalVersion.js +6 -5
- package/dist/locale/en-US.json +138 -28
- package/dist/locale/vi-VN.json +139 -28
- package/dist/locale/zh-CN.json +140 -28
- package/dist/server/actions/cache-monitor.js +301 -0
- package/dist/server/actions/cluster-nodes.js +391 -11
- package/dist/server/actions/doctor.js +1246 -0
- package/dist/server/actions/orchestrator.js +37 -0
- package/dist/server/actions/queue-mappings.js +107 -0
- package/dist/server/collections/cluster-manager-doctor-runs.js +52 -0
- package/dist/server/collections/cluster-manager-doctor.js +44 -0
- package/dist/server/collections/worker-queue-mappings.js +106 -0
- package/dist/server/hooks/cacheInvalidationHooks.js +81 -0
- package/dist/server/middlewares/listMetaCacheMiddleware.js +79 -0
- package/dist/server/orchestrator/PackageManager.js +21 -24
- package/dist/server/orchestrator/docker-adapter.js +49 -27
- package/dist/server/plugin.js +71 -16
- package/dist/server/queue-scanner.js +141 -0
- package/dist/server/utils/node.js +30 -2
- package/dist/server/utils/versionManager.js +91 -0
- package/package.json +9 -5
- package/server.js +1 -0
- package/src/client/AclCacheManager.tsx +292 -287
- package/src/client/CacheMonitor.tsx +166 -179
- package/src/client/ClusterManagerLayout.tsx +54 -42
- package/src/client/ClusterNodes.tsx +698 -418
- package/src/client/ContainerOrchestrator.tsx +184 -102
- package/src/client/Doctor.tsx +559 -0
- package/src/client/NginxCacheManager.tsx +415 -0
- package/src/client/PluginOperations.tsx +234 -234
- package/src/client/QueueAssignment.tsx +355 -0
- package/src/client/TaskManager.tsx +194 -187
- package/src/client/WorkflowExecutions.tsx +243 -238
- package/src/client/index.tsx +22 -14
- package/src/client/utils/clientSafeCache.ts +41 -0
- package/src/client/utils/requestDedupInterceptor.ts +213 -0
- package/src/client-v2/plugin.tsx +24 -0
- package/src/locale/en-US.json +138 -28
- package/src/locale/vi-VN.json +139 -28
- package/src/locale/zh-CN.json +140 -28
- package/src/server/__tests__/doctor.test.ts +53 -0
- package/src/server/actions/acl-cache.ts +272 -272
- package/src/server/actions/cache-monitor.ts +453 -116
- package/src/server/actions/cluster-nodes.ts +878 -378
- package/src/server/actions/doctor.ts +1536 -0
- package/src/server/actions/orchestrator.ts +54 -2
- package/src/server/actions/queue-mappings.ts +94 -0
- package/src/server/collections/cluster-manager-doctor-runs.ts +23 -0
- package/src/server/collections/cluster-manager-doctor.ts +19 -0
- package/src/server/collections/worker-queue-mappings.ts +85 -0
- package/src/server/hooks/cacheInvalidationHooks.ts +58 -0
- package/src/server/middlewares/listMetaCacheMiddleware.ts +55 -0
- package/src/server/orchestrator/PackageManager.ts +20 -24
- package/src/server/orchestrator/docker-adapter.ts +74 -37
- package/src/server/plugin.ts +347 -270
- package/src/server/queue-scanner.ts +154 -0
- package/src/server/utils/node.ts +48 -0
- package/src/server/utils/versionManager.ts +69 -0
- package/dist/client/AclCacheManager.d.ts +0 -2
- package/dist/client/CacheMonitor.d.ts +0 -2
- package/dist/client/ClusterManagerLayout.d.ts +0 -2
- package/dist/client/ClusterNodes.d.ts +0 -2
- package/dist/client/ContainerOrchestrator.d.ts +0 -2
- package/dist/client/EventQueueMonitor.d.ts +0 -2
- package/dist/client/LockMonitor.d.ts +0 -2
- package/dist/client/PackageInstaller.d.ts +0 -2
- package/dist/client/PluginOperations.d.ts +0 -2
- package/dist/client/RedisMonitor.d.ts +0 -2
- package/dist/client/TaskManager.d.ts +0 -2
- package/dist/client/WorkflowExecutions.d.ts +0 -2
- package/dist/client/index.d.ts +0 -5
- package/dist/client/utils.d.ts +0 -12
- package/dist/index.d.ts +0 -2
- package/dist/server/actions/acl-cache.d.ts +0 -53
- package/dist/server/actions/cache-monitor.d.ts +0 -23
- package/dist/server/actions/cluster-nodes.d.ts +0 -49
- package/dist/server/actions/event-queue-monitor.d.ts +0 -13
- package/dist/server/actions/lock-monitor.d.ts +0 -19
- package/dist/server/actions/orchestrator.d.ts +0 -58
- package/dist/server/actions/package-manager.d.ts +0 -6
- package/dist/server/actions/plugin-operations.d.ts +0 -6
- package/dist/server/actions/redis-monitor.d.ts +0 -12
- package/dist/server/actions/tasks.d.ts +0 -7
- package/dist/server/actions/workflow-executions.d.ts +0 -7
- package/dist/server/adapters/redis-lock-adapter.d.ts +0 -15
- package/dist/server/adapters/redis-node-registry.d.ts +0 -12
- package/dist/server/adapters/redis-pubsub-adapter.d.ts +0 -16
- package/dist/server/collections/app.d.ts +0 -8
- package/dist/server/collections/cluster-manager-acl-cache.d.ts +0 -22
- package/dist/server/collections/cluster-manager-cache-mgr.d.ts +0 -22
- package/dist/server/collections/cluster-manager-cluster.d.ts +0 -22
- package/dist/server/collections/cluster-manager-lock.d.ts +0 -22
- package/dist/server/collections/cluster-manager-plugins.d.ts +0 -18
- package/dist/server/collections/cluster-manager-queue.d.ts +0 -22
- package/dist/server/collections/cluster-manager-redis.d.ts +0 -22
- package/dist/server/collections/cluster-manager-workflow.d.ts +0 -22
- package/dist/server/collections/cluster-manager.d.ts +0 -22
- package/dist/server/collections/orchestrator-settings.d.ts +0 -59
- package/dist/server/collections/orchestrator-stacks.d.ts +0 -102
- package/dist/server/collections/worker-orchestrator.d.ts +0 -22
- package/dist/server/collections/worker-packages-configs.d.ts +0 -3
- package/dist/server/collections/worker-packages.d.ts +0 -22
- package/dist/server/orchestrator/PackageManager.d.ts +0 -39
- package/dist/server/orchestrator/docker-adapter.d.ts +0 -41
- package/dist/server/orchestrator/index.d.ts +0 -4
- package/dist/server/orchestrator/k8s-adapter.d.ts +0 -50
- package/dist/server/orchestrator/leader-election.d.ts +0 -48
- package/dist/server/orchestrator/types.d.ts +0 -84
- package/dist/server/plugin.d.ts +0 -26
- package/dist/server/utils/node.d.ts +0 -6
- package/dist/server/utils/redis.d.ts +0 -29
- package/dist/shared/packages.d.ts +0 -23
- /package/{dist/server/index.d.ts → src/client-v2/index.tsx} +0 -0
package/dist/locale/en-US.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Cluster Manager": "Cluster Manager",
|
|
2
|
+
"Cluster Manager": "Cluster Manager",
|
|
3
3
|
"Async Tasks": "Async Tasks",
|
|
4
4
|
"Workflow Executions": "Workflow Executions",
|
|
5
5
|
"Redis Monitor": "Redis Monitor",
|
|
@@ -66,30 +66,140 @@
|
|
|
66
66
|
"This will clear all cached data across all stores.": "This will clear all cached data across all stores.",
|
|
67
67
|
"All caches flushed": "All caches flushed",
|
|
68
68
|
"Failed to flush caches": "Failed to flush caches",
|
|
69
|
-
"Sync Messages": "Sync Messages",
|
|
70
|
-
"Subscribers": "Subscribers",
|
|
71
|
-
"Plugins": "Plugins",
|
|
72
|
-
"Plugin": "Plugin",
|
|
73
|
-
"Enabled": "Enabled",
|
|
74
|
-
"Disabled": "Disabled",
|
|
75
|
-
"Installed": "Installed",
|
|
76
|
-
"Not installed": "Not installed",
|
|
77
|
-
"Loaded": "Loaded",
|
|
78
|
-
"Not loaded": "Not loaded",
|
|
79
|
-
"Protected": "Protected",
|
|
80
|
-
"Description": "Description",
|
|
81
|
-
"Force disable": "Force disable",
|
|
82
|
-
"Force remove": "Force remove",
|
|
83
|
-
"Force disable this plugin?": "Force disable this plugin?",
|
|
84
|
-
"Force remove this plugin?": "Force remove this plugin?",
|
|
85
|
-
"This updates the plugin registry directly. Restart or reload is required to fully unload runtime hooks.": "This updates the plugin registry directly. Restart or reload is required to fully unload runtime hooks.",
|
|
86
|
-
"This removes the plugin registry record. Package files are not deleted. Restart or reload is required.": "This removes the plugin registry record. Package files are not deleted. Restart or reload is required.",
|
|
87
|
-
"Force operations bypass plugin lifecycle hooks": "Force operations bypass plugin lifecycle hooks",
|
|
88
|
-
"Use this only when the normal plugin manager cannot disable or remove a broken plugin. Restart or reload the app after a successful operation.": "Use this only when the normal plugin manager cannot disable or remove a broken plugin. Restart or reload the app after a successful operation.",
|
|
89
|
-
"Search plugins": "Search plugins",
|
|
90
|
-
"Plugin force disabled": "Plugin force disabled",
|
|
91
|
-
"Plugin force removed": "Plugin force removed",
|
|
92
|
-
"Failed to load plugins": "Failed to load plugins",
|
|
93
|
-
"Failed to force disable plugin": "Failed to force disable plugin",
|
|
94
|
-
"Failed to force remove plugin": "Failed to force remove plugin"
|
|
95
|
-
|
|
69
|
+
"Sync Messages": "Sync Messages",
|
|
70
|
+
"Subscribers": "Subscribers",
|
|
71
|
+
"Plugins": "Plugins",
|
|
72
|
+
"Plugin": "Plugin",
|
|
73
|
+
"Enabled": "Enabled",
|
|
74
|
+
"Disabled": "Disabled",
|
|
75
|
+
"Installed": "Installed",
|
|
76
|
+
"Not installed": "Not installed",
|
|
77
|
+
"Loaded": "Loaded",
|
|
78
|
+
"Not loaded": "Not loaded",
|
|
79
|
+
"Protected": "Protected",
|
|
80
|
+
"Description": "Description",
|
|
81
|
+
"Force disable": "Force disable",
|
|
82
|
+
"Force remove": "Force remove",
|
|
83
|
+
"Force disable this plugin?": "Force disable this plugin?",
|
|
84
|
+
"Force remove this plugin?": "Force remove this plugin?",
|
|
85
|
+
"This updates the plugin registry directly. Restart or reload is required to fully unload runtime hooks.": "This updates the plugin registry directly. Restart or reload is required to fully unload runtime hooks.",
|
|
86
|
+
"This removes the plugin registry record. Package files are not deleted. Restart or reload is required.": "This removes the plugin registry record. Package files are not deleted. Restart or reload is required.",
|
|
87
|
+
"Force operations bypass plugin lifecycle hooks": "Force operations bypass plugin lifecycle hooks",
|
|
88
|
+
"Use this only when the normal plugin manager cannot disable or remove a broken plugin. Restart or reload the app after a successful operation.": "Use this only when the normal plugin manager cannot disable or remove a broken plugin. Restart or reload the app after a successful operation.",
|
|
89
|
+
"Search plugins": "Search plugins",
|
|
90
|
+
"Plugin force disabled": "Plugin force disabled",
|
|
91
|
+
"Plugin force removed": "Plugin force removed",
|
|
92
|
+
"Failed to load plugins": "Failed to load plugins",
|
|
93
|
+
"Failed to force disable plugin": "Failed to force disable plugin",
|
|
94
|
+
"Failed to force remove plugin": "Failed to force remove plugin",
|
|
95
|
+
"Nginx Cache": "Nginx Cache",
|
|
96
|
+
"Nginx configuration file found at": "Nginx configuration file found at",
|
|
97
|
+
"Nginx cache paths detected": "Nginx cache paths detected",
|
|
98
|
+
"Nginx is not detected on this node. You can still input a custom cache directory.": "Nginx is not detected on this node. You can still input a custom cache directory.",
|
|
99
|
+
"Clearing Method": "Clearing Method",
|
|
100
|
+
"Physical Files": "Physical Files",
|
|
101
|
+
"HTTP Purge Request": "HTTP Purge Request",
|
|
102
|
+
"Select Cache Path": "Select Cache Path",
|
|
103
|
+
"Custom Path": "Custom Path",
|
|
104
|
+
"Purge URL": "Purge URL",
|
|
105
|
+
"Headers (JSON)": "Headers (JSON)",
|
|
106
|
+
"Clear Nginx Cache": "Clear Nginx Cache",
|
|
107
|
+
"Are you sure you want to clear Nginx cache? This will permanently delete all files in this directory.": "Are you sure you want to clear Nginx cache? This will permanently delete all files in this directory.",
|
|
108
|
+
"Cache cleared successfully. Cleared {count} items.": "Cache cleared successfully. Cleared {count} items.",
|
|
109
|
+
"HTTP Purge request completed. Status: {status}": "HTTP Purge request completed. Status: {status}",
|
|
110
|
+
"Custom Cache Path": "Custom Cache Path",
|
|
111
|
+
"HTTP Method": "HTTP Method",
|
|
112
|
+
"Send Purge Request": "Send Purge Request",
|
|
113
|
+
"Please select or enter a cache path": "Please select or enter a cache path",
|
|
114
|
+
"Please enter a valid Purge URL": "Please enter a valid Purge URL",
|
|
115
|
+
"Nginx cache path is required": "Nginx cache path is required",
|
|
116
|
+
"Invalid headers JSON structure": "Invalid headers JSON structure",
|
|
117
|
+
"Nginx Cache Status": "Nginx Cache Status",
|
|
118
|
+
"Nginx is installed": "Nginx is installed",
|
|
119
|
+
"Nginx is NOT installed": "Nginx is NOT installed",
|
|
120
|
+
"Nginx cache clearing method": "Nginx cache clearing method",
|
|
121
|
+
"Execution Logs": "Execution Logs",
|
|
122
|
+
"Clear Nginx Cache?": "Clear Nginx Cache?",
|
|
123
|
+
"Rolling Restart": "Rolling Restart",
|
|
124
|
+
"Worker nodes only": "Worker nodes only",
|
|
125
|
+
"App nodes only": "App nodes only",
|
|
126
|
+
"Sandbox nodes only": "Sandbox nodes only",
|
|
127
|
+
"All nodes": "All nodes",
|
|
128
|
+
"Soft restart": "Soft restart",
|
|
129
|
+
"Hard restart": "Hard restart",
|
|
130
|
+
"Start rolling restart?": "Start rolling restart?",
|
|
131
|
+
"Nodes will receive restart commands one-by-one with the configured delay.": "Nodes will receive restart commands one-by-one with the configured delay.",
|
|
132
|
+
"Start": "Start",
|
|
133
|
+
"Rolling restart dispatched for {count} node(s)": "Rolling restart dispatched for {count} node(s)",
|
|
134
|
+
"Failed to dispatch rolling restart": "Failed to dispatch rolling restart",
|
|
135
|
+
"Cluster Drift": "Cluster Drift",
|
|
136
|
+
"No cluster drift detected": "No cluster drift detected",
|
|
137
|
+
"Cluster drift detected": "Cluster drift detected",
|
|
138
|
+
"Reference version": "Reference version",
|
|
139
|
+
"No reference version available": "No reference version available",
|
|
140
|
+
"Checked Nodes": "Checked Nodes",
|
|
141
|
+
"Version Drift": "Version Drift",
|
|
142
|
+
"Runtime Drift": "Runtime Drift",
|
|
143
|
+
"Package Drift": "Package Drift",
|
|
144
|
+
"Runtime": "Runtime",
|
|
145
|
+
"Role": "Role",
|
|
146
|
+
"Expected": "Expected",
|
|
147
|
+
"Actual": "Actual",
|
|
148
|
+
"Package Status": "Package Status",
|
|
149
|
+
"Missing Packages": "Missing Packages",
|
|
150
|
+
"No missing packages": "No missing packages",
|
|
151
|
+
"Legacy Multi-app Diagnostics": "Legacy Multi-app Diagnostics",
|
|
152
|
+
"No legacy multi-app risk detected": "No legacy multi-app risk detected",
|
|
153
|
+
"Legacy multi-app risk detected": "Legacy multi-app risk detected",
|
|
154
|
+
"Legacy app records": "Legacy app records",
|
|
155
|
+
"Deprecated multi-app manager is active. It runs apps in shared process memory and should not be used for production cluster isolation.": "Deprecated multi-app manager is active. It runs apps in shared process memory and should not be used for production cluster isolation.",
|
|
156
|
+
"Deprecated multi-app share collection is active. Avoid schema/table sharing for new cluster deployments.": "Deprecated multi-app share collection is active. Avoid schema/table sharing for new cluster deployments.",
|
|
157
|
+
"{count} legacy application record(s) were found in the applications collection.": "{count} legacy application record(s) were found in the applications collection.",
|
|
158
|
+
"App Supervisor is not enabled. Use it for new multi-application management instead of deprecated multi-app plugins.": "App Supervisor is not enabled. Use it for new multi-application management instead of deprecated multi-app plugins.",
|
|
159
|
+
"Doctor": "Doctor",
|
|
160
|
+
"Duration": "Duration",
|
|
161
|
+
"Start Doctor": "Start Doctor",
|
|
162
|
+
"Stop Doctor": "Stop Doctor",
|
|
163
|
+
"Download Report": "Download Report",
|
|
164
|
+
"Diagnostic session started": "Diagnostic session started",
|
|
165
|
+
"Diagnostic report is ready": "Diagnostic report is ready",
|
|
166
|
+
"Failed to load diagnostic status": "Failed to load diagnostic status",
|
|
167
|
+
"Failed to start diagnostic session": "Failed to start diagnostic session",
|
|
168
|
+
"Failed to stop diagnostic session": "Failed to stop diagnostic session",
|
|
169
|
+
"Failed to download diagnostic report": "Failed to download diagnostic report",
|
|
170
|
+
"Running": "Running",
|
|
171
|
+
"Run ID": "Run ID",
|
|
172
|
+
"Started At": "Started At",
|
|
173
|
+
"Finished At": "Finished At",
|
|
174
|
+
"Finish Reason": "Finish Reason",
|
|
175
|
+
"Report Status": "Report Status",
|
|
176
|
+
"Nodes": "Nodes",
|
|
177
|
+
"Errors": "Errors",
|
|
178
|
+
"Warnings": "Warnings",
|
|
179
|
+
"Plugin Drift": "Plugin Drift",
|
|
180
|
+
"Findings": "Findings",
|
|
181
|
+
"Node Log Distribution": "Node Log Distribution",
|
|
182
|
+
"Top Error Signatures": "Top Error Signatures",
|
|
183
|
+
"Level": "Level",
|
|
184
|
+
"Count": "Count",
|
|
185
|
+
"Signature": "Signature",
|
|
186
|
+
"Node": "Node",
|
|
187
|
+
"Log Files": "Log Files",
|
|
188
|
+
"Package": "Package",
|
|
189
|
+
"DB Version": "DB Version",
|
|
190
|
+
"Runtime Versions": "Runtime Versions",
|
|
191
|
+
"Queue Assignment": "Queue Assignment",
|
|
192
|
+
"Queue Name": "Queue Name",
|
|
193
|
+
"Map queues to worker stacks. Unassigned queues run on all workers.": "Map queues to worker stacks. Unassigned queues run on all workers.",
|
|
194
|
+
"Scan Queues": "Scan Queues",
|
|
195
|
+
"Auto-map ({count})": "Auto-map ({count})",
|
|
196
|
+
"Register": "Register",
|
|
197
|
+
"Unregister": "Unregister",
|
|
198
|
+
"Assigned Stack": "Assigned Stack",
|
|
199
|
+
"All (default)": "All (default)",
|
|
200
|
+
"Delete this mapping?": "Delete this mapping?",
|
|
201
|
+
"No queues discovered. Click \"Scan Queues\" to detect registered queues.": "No queues discovered. Click \"Scan Queues\" to detect registered queues.",
|
|
202
|
+
"Auto-mapped {count} queue(s)": "Auto-mapped {count} queue(s)",
|
|
203
|
+
"Queue Assignment updated": "Queue Assignment updated",
|
|
204
|
+
"Unassigned (worker runs all queues)": "Unassigned (worker runs all queues)"
|
|
205
|
+
}
|
package/dist/locale/vi-VN.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Cluster Manager": "Quản lý cụm",
|
|
2
|
+
"Cluster Manager": "Quản lý cụm",
|
|
3
3
|
"Async Tasks": "Tác vụ bất đồng bộ",
|
|
4
4
|
"Workflow Executions": "Thực thi Workflow",
|
|
5
5
|
"Redis Monitor": "Giám sát Redis",
|
|
@@ -66,30 +66,141 @@
|
|
|
66
66
|
"This will clear all cached data across all stores.": "Điều này sẽ xóa tất cả dữ liệu đệm trong mọi kho.",
|
|
67
67
|
"All caches flushed": "Đã xóa tất cả bộ nhớ đệm",
|
|
68
68
|
"Failed to flush caches": "Xóa bộ nhớ đệm thất bại",
|
|
69
|
-
"Sync Messages": "Tin nhắn đồng bộ",
|
|
70
|
-
"Subscribers": "Người đăng ký",
|
|
71
|
-
"Plugins": "Plugin",
|
|
72
|
-
"Plugin": "Plugin",
|
|
73
|
-
"Enabled": "Đã bật",
|
|
74
|
-
"Disabled": "Đã tắt",
|
|
75
|
-
"Installed": "Đã cài đặt",
|
|
76
|
-
"Not installed": "Chưa cài đặt",
|
|
77
|
-
"Loaded": "Đã tải",
|
|
78
|
-
"Not loaded": "Chưa tải",
|
|
79
|
-
"Protected": "Được bảo vệ",
|
|
80
|
-
"Description": "Mô tả",
|
|
81
|
-
"Force disable": "Buộc tắt",
|
|
82
|
-
"Force remove": "Buộc xóa",
|
|
83
|
-
"Force disable this plugin?": "Buộc tắt plugin này?",
|
|
84
|
-
"Force remove this plugin?": "Buộc xóa plugin này?",
|
|
85
|
-
"This updates the plugin registry directly. Restart or reload is required to fully unload runtime hooks.": "Thao tác này cập nhật trực tiếp registry plugin. Cần restart hoặc reload để gỡ hoàn toàn các hook runtime.",
|
|
86
|
-
"This removes the plugin registry record. Package files are not deleted. Restart or reload is required.": "Thao tác này xóa bản ghi plugin trong registry. File package không bị xóa. Cần restart hoặc reload.",
|
|
87
|
-
"Force operations bypass plugin lifecycle hooks": "Thao tác force bỏ qua lifecycle hook của plugin",
|
|
88
|
-
"Use this only when the normal plugin manager cannot disable or remove a broken plugin. Restart or reload the app after a successful operation.": "Chỉ dùng khi plugin manager bình thường không thể tắt hoặc xóa plugin lỗi. Restart hoặc reload ứng dụng sau khi thao tác thành công.",
|
|
89
|
-
"Search plugins": "Tìm plugin",
|
|
90
|
-
"Plugin force disabled": "Đã buộc tắt plugin",
|
|
91
|
-
"Plugin force removed": "Đã buộc xóa plugin",
|
|
92
|
-
"Failed to load plugins": "Tải danh sách plugin thất bại",
|
|
93
|
-
"Failed to force disable plugin": "Buộc tắt plugin thất bại",
|
|
94
|
-
"Failed to force remove plugin": "Buộc xóa plugin thất bại"
|
|
95
|
-
|
|
69
|
+
"Sync Messages": "Tin nhắn đồng bộ",
|
|
70
|
+
"Subscribers": "Người đăng ký",
|
|
71
|
+
"Plugins": "Plugin",
|
|
72
|
+
"Plugin": "Plugin",
|
|
73
|
+
"Enabled": "Đã bật",
|
|
74
|
+
"Disabled": "Đã tắt",
|
|
75
|
+
"Installed": "Đã cài đặt",
|
|
76
|
+
"Not installed": "Chưa cài đặt",
|
|
77
|
+
"Loaded": "Đã tải",
|
|
78
|
+
"Not loaded": "Chưa tải",
|
|
79
|
+
"Protected": "Được bảo vệ",
|
|
80
|
+
"Description": "Mô tả",
|
|
81
|
+
"Force disable": "Buộc tắt",
|
|
82
|
+
"Force remove": "Buộc xóa",
|
|
83
|
+
"Force disable this plugin?": "Buộc tắt plugin này?",
|
|
84
|
+
"Force remove this plugin?": "Buộc xóa plugin này?",
|
|
85
|
+
"This updates the plugin registry directly. Restart or reload is required to fully unload runtime hooks.": "Thao tác này cập nhật trực tiếp registry plugin. Cần restart hoặc reload để gỡ hoàn toàn các hook runtime.",
|
|
86
|
+
"This removes the plugin registry record. Package files are not deleted. Restart or reload is required.": "Thao tác này xóa bản ghi plugin trong registry. File package không bị xóa. Cần restart hoặc reload.",
|
|
87
|
+
"Force operations bypass plugin lifecycle hooks": "Thao tác force bỏ qua lifecycle hook của plugin",
|
|
88
|
+
"Use this only when the normal plugin manager cannot disable or remove a broken plugin. Restart or reload the app after a successful operation.": "Chỉ dùng khi plugin manager bình thường không thể tắt hoặc xóa plugin lỗi. Restart hoặc reload ứng dụng sau khi thao tác thành công.",
|
|
89
|
+
"Search plugins": "Tìm plugin",
|
|
90
|
+
"Plugin force disabled": "Đã buộc tắt plugin",
|
|
91
|
+
"Plugin force removed": "Đã buộc xóa plugin",
|
|
92
|
+
"Failed to load plugins": "Tải danh sách plugin thất bại",
|
|
93
|
+
"Failed to force disable plugin": "Buộc tắt plugin thất bại",
|
|
94
|
+
"Failed to force remove plugin": "Buộc xóa plugin thất bại",
|
|
95
|
+
"Nginx Cache": "Bộ nhớ đệm Nginx",
|
|
96
|
+
"Nginx configuration file found at": "Tìm thấy tệp cấu hình Nginx tại",
|
|
97
|
+
"Nginx cache paths detected": "Đường dẫn bộ nhớ đệm Nginx phát hiện được",
|
|
98
|
+
"Nginx is not detected on this node. You can still input a custom cache directory.": "Không phát hiện Nginx trên nút này. Bạn vẫn có thể nhập đường dẫn bộ nhớ đệm tùy chỉnh.",
|
|
99
|
+
"Clearing Method": "Phương thức xóa",
|
|
100
|
+
"Physical Files": "Tệp vật lý",
|
|
101
|
+
"HTTP Purge Request": "Yêu cầu HTTP Purge",
|
|
102
|
+
"Select Cache Path": "Chọn đường dẫn cache",
|
|
103
|
+
"Custom Path": "Đường dẫn tùy chỉnh",
|
|
104
|
+
"Purge URL": "Purge URL",
|
|
105
|
+
"Headers (JSON)": "Headers (JSON)",
|
|
106
|
+
"Clear Nginx Cache": "Xóa bộ nhớ đệm Nginx",
|
|
107
|
+
"Are you sure you want to clear Nginx cache? This will permanently delete all files in this directory.": "Bạn có chắc chắn muốn xóa bộ nhớ đệm Nginx? Hành động này sẽ xóa vĩnh viễn toàn bộ tệp trong thư mục.",
|
|
108
|
+
"Cache cleared successfully. Cleared {count} items.": "Xóa bộ nhớ đệm thành công. Đã dọn dẹp {count} mục.",
|
|
109
|
+
"HTTP Purge request completed. Status: {status}": "Yêu cầu HTTP Purge hoàn tất. Trạng thái: {status}",
|
|
110
|
+
"Custom Cache Path": "Đường dẫn Cache tùy chỉnh",
|
|
111
|
+
"HTTP Method": "Phương thức HTTP",
|
|
112
|
+
"Send Purge Request": "Gửi yêu cầu Purge",
|
|
113
|
+
"Please select or enter a cache path": "Vui lòng chọn hoặc nhập đường dẫn cache",
|
|
114
|
+
"Please enter a valid Purge URL": "Vui lòng nhập Purge URL hợp lệ",
|
|
115
|
+
"Nginx cache path is required": "Yêu cầu đường dẫn cache Nginx",
|
|
116
|
+
"Invalid headers JSON structure": "Cấu trúc JSON headers không hợp lệ",
|
|
117
|
+
"Nginx Cache Status": "Trạng thái bộ nhớ đệm Nginx",
|
|
118
|
+
"Nginx is installed": "Nginx đã được cài đặt",
|
|
119
|
+
"Nginx is NOT installed": "Nginx CHƯA được cài đặt",
|
|
120
|
+
"Nginx cache clearing method": "Phương thức xóa bộ nhớ đệm Nginx",
|
|
121
|
+
"Execution Logs": "Nhật ký thực thi",
|
|
122
|
+
"Clear Nginx Cache?": "Xóa bộ nhớ đệm Nginx?"
|
|
123
|
+
,
|
|
124
|
+
"Rolling Restart": "Rolling Restart",
|
|
125
|
+
"Worker nodes only": "Worker nodes only",
|
|
126
|
+
"App nodes only": "App nodes only",
|
|
127
|
+
"Sandbox nodes only": "Sandbox nodes only",
|
|
128
|
+
"All nodes": "All nodes",
|
|
129
|
+
"Soft restart": "Soft restart",
|
|
130
|
+
"Hard restart": "Hard restart",
|
|
131
|
+
"Start rolling restart?": "Start rolling restart?",
|
|
132
|
+
"Nodes will receive restart commands one-by-one with the configured delay.": "Nodes will receive restart commands one-by-one with the configured delay.",
|
|
133
|
+
"Start": "Start",
|
|
134
|
+
"Rolling restart dispatched for {count} node(s)": "Rolling restart dispatched for {count} node(s)",
|
|
135
|
+
"Failed to dispatch rolling restart": "Failed to dispatch rolling restart",
|
|
136
|
+
"Cluster Drift": "Cluster Drift",
|
|
137
|
+
"No cluster drift detected": "No cluster drift detected",
|
|
138
|
+
"Cluster drift detected": "Cluster drift detected",
|
|
139
|
+
"Reference version": "Reference version",
|
|
140
|
+
"No reference version available": "No reference version available",
|
|
141
|
+
"Checked Nodes": "Checked Nodes",
|
|
142
|
+
"Version Drift": "Version Drift",
|
|
143
|
+
"Runtime Drift": "Runtime Drift",
|
|
144
|
+
"Package Drift": "Package Drift",
|
|
145
|
+
"Runtime": "Runtime",
|
|
146
|
+
"Role": "Role",
|
|
147
|
+
"Expected": "Expected",
|
|
148
|
+
"Actual": "Actual",
|
|
149
|
+
"Package Status": "Package Status",
|
|
150
|
+
"Missing Packages": "Missing Packages",
|
|
151
|
+
"No missing packages": "No missing packages",
|
|
152
|
+
"Legacy Multi-app Diagnostics": "Legacy Multi-app Diagnostics",
|
|
153
|
+
"No legacy multi-app risk detected": "No legacy multi-app risk detected",
|
|
154
|
+
"Legacy multi-app risk detected": "Legacy multi-app risk detected",
|
|
155
|
+
"Legacy app records": "Legacy app records",
|
|
156
|
+
"Deprecated multi-app manager is active. It runs apps in shared process memory and should not be used for production cluster isolation.": "Deprecated multi-app manager is active. It runs apps in shared process memory and should not be used for production cluster isolation.",
|
|
157
|
+
"Deprecated multi-app share collection is active. Avoid schema/table sharing for new cluster deployments.": "Deprecated multi-app share collection is active. Avoid schema/table sharing for new cluster deployments.",
|
|
158
|
+
"{count} legacy application record(s) were found in the applications collection.": "{count} legacy application record(s) were found in the applications collection.",
|
|
159
|
+
"App Supervisor is not enabled. Use it for new multi-application management instead of deprecated multi-app plugins.": "App Supervisor is not enabled. Use it for new multi-application management instead of deprecated multi-app plugins.",
|
|
160
|
+
"Queue Assignment": "Gán hàng đợi",
|
|
161
|
+
"Queue Name": "Tên hàng đợi",
|
|
162
|
+
"Map queues to worker stacks. Unassigned queues run on all workers.": "Gán hàng đợi vào worker stack. Hàng đợi chưa gán sẽ chạy trên tất cả worker.",
|
|
163
|
+
"Scan Queues": "Quét hàng đợi",
|
|
164
|
+
"Auto-map ({count})": "Tự động gán ({count})",
|
|
165
|
+
"Register": "Đăng ký",
|
|
166
|
+
"Unregister": "Hủy đăng ký",
|
|
167
|
+
"Assigned Stack": "Worker Stack",
|
|
168
|
+
"All (default)": "Tất cả (mặc định)",
|
|
169
|
+
"Delete this mapping?": "Xóa mapping này?",
|
|
170
|
+
"No queues discovered. Click \"Scan Queues\" to detect registered queues.": "Không phát hiện hàng đợi. Nhấn \"Quét hàng đợi\" để dò tìm.",
|
|
171
|
+
"Auto-mapped {count} queue(s)": "Đã tự động gán {count} hàng đợi",
|
|
172
|
+
"Queue Assignment updated": "Đã cập nhật gán hàng đợi",
|
|
173
|
+
"Unassigned (worker runs all queues)": "Chưa gán (worker chạy tất cả hàng đợi)",
|
|
174
|
+
"Doctor": "Doctor",
|
|
175
|
+
"Duration": "Duration",
|
|
176
|
+
"Start Doctor": "Start Doctor",
|
|
177
|
+
"Stop Doctor": "Stop Doctor",
|
|
178
|
+
"Download Report": "Download Report",
|
|
179
|
+
"Diagnostic session started": "Diagnostic session started",
|
|
180
|
+
"Diagnostic report is ready": "Diagnostic report is ready",
|
|
181
|
+
"Failed to load diagnostic status": "Failed to load diagnostic status",
|
|
182
|
+
"Failed to start diagnostic session": "Failed to start diagnostic session",
|
|
183
|
+
"Failed to stop diagnostic session": "Failed to stop diagnostic session",
|
|
184
|
+
"Failed to download diagnostic report": "Failed to download diagnostic report",
|
|
185
|
+
"Running": "Running",
|
|
186
|
+
"Run ID": "Run ID",
|
|
187
|
+
"Started At": "Started At",
|
|
188
|
+
"Finished At": "Finished At",
|
|
189
|
+
"Finish Reason": "Finish Reason",
|
|
190
|
+
"Report Status": "Report Status",
|
|
191
|
+
"Nodes": "Nodes",
|
|
192
|
+
"Errors": "Errors",
|
|
193
|
+
"Warnings": "Warnings",
|
|
194
|
+
"Plugin Drift": "Plugin Drift",
|
|
195
|
+
"Findings": "Findings",
|
|
196
|
+
"Node Log Distribution": "Node Log Distribution",
|
|
197
|
+
"Top Error Signatures": "Top Error Signatures",
|
|
198
|
+
"Level": "Level",
|
|
199
|
+
"Count": "Count",
|
|
200
|
+
"Signature": "Signature",
|
|
201
|
+
"Node": "Node",
|
|
202
|
+
"Log Files": "Log Files",
|
|
203
|
+
"Package": "Package",
|
|
204
|
+
"DB Version": "DB Version",
|
|
205
|
+
"Runtime Versions": "Runtime Versions"
|
|
206
|
+
}
|
package/dist/locale/zh-CN.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Cluster Manager": "集群管理",
|
|
2
|
+
"Cluster Manager": "集群管理",
|
|
3
3
|
"Async Tasks": "异步任务",
|
|
4
4
|
"Workflow Executions": "工作流执行",
|
|
5
5
|
"Redis Monitor": "Redis 监控",
|
|
@@ -66,30 +66,142 @@
|
|
|
66
66
|
"This will clear all cached data across all stores.": "这将清除所有存储中的缓存数据。",
|
|
67
67
|
"All caches flushed": "所有缓存已清空",
|
|
68
68
|
"Failed to flush caches": "清空缓存失败",
|
|
69
|
-
"Sync Messages": "同步消息",
|
|
70
|
-
"Subscribers": "订阅者",
|
|
71
|
-
"Plugins": "插件",
|
|
72
|
-
"Plugin": "插件",
|
|
73
|
-
"Enabled": "已启用",
|
|
74
|
-
"Disabled": "已禁用",
|
|
75
|
-
"Installed": "已安装",
|
|
76
|
-
"Not installed": "未安装",
|
|
77
|
-
"Loaded": "已加载",
|
|
78
|
-
"Not loaded": "未加载",
|
|
79
|
-
"Protected": "受保护",
|
|
80
|
-
"Description": "描述",
|
|
81
|
-
"Force disable": "强制禁用",
|
|
82
|
-
"Force remove": "强制移除",
|
|
83
|
-
"Force disable this plugin?": "强制禁用此插件?",
|
|
84
|
-
"Force remove this plugin?": "强制移除此插件?",
|
|
85
|
-
"This updates the plugin registry directly. Restart or reload is required to fully unload runtime hooks.": "此操作会直接更新插件注册表。需要重启或重新加载后才能完全卸载运行时钩子。",
|
|
86
|
-
"This removes the plugin registry record. Package files are not deleted. Restart or reload is required.": "此操作会移除插件注册记录。不会删除 package 文件。需要重启或重新加载。",
|
|
87
|
-
"Force operations bypass plugin lifecycle hooks": "强制操作会绕过插件生命周期钩子",
|
|
88
|
-
"Use this only when the normal plugin manager cannot disable or remove a broken plugin. Restart or reload the app after a successful operation.": "仅在普通插件管理器无法禁用或移除异常插件时使用。操作成功后请重启或重新加载应用。",
|
|
89
|
-
"Search plugins": "搜索插件",
|
|
90
|
-
"Plugin force disabled": "插件已强制禁用",
|
|
91
|
-
"Plugin force removed": "插件已强制移除",
|
|
92
|
-
"Failed to load plugins": "加载插件失败",
|
|
93
|
-
"Failed to force disable plugin": "强制禁用插件失败",
|
|
94
|
-
"Failed to force remove plugin": "强制移除插件失败"
|
|
95
|
-
|
|
69
|
+
"Sync Messages": "同步消息",
|
|
70
|
+
"Subscribers": "订阅者",
|
|
71
|
+
"Plugins": "插件",
|
|
72
|
+
"Plugin": "插件",
|
|
73
|
+
"Enabled": "已启用",
|
|
74
|
+
"Disabled": "已禁用",
|
|
75
|
+
"Installed": "已安装",
|
|
76
|
+
"Not installed": "未安装",
|
|
77
|
+
"Loaded": "已加载",
|
|
78
|
+
"Not loaded": "未加载",
|
|
79
|
+
"Protected": "受保护",
|
|
80
|
+
"Description": "描述",
|
|
81
|
+
"Force disable": "强制禁用",
|
|
82
|
+
"Force remove": "强制移除",
|
|
83
|
+
"Force disable this plugin?": "强制禁用此插件?",
|
|
84
|
+
"Force remove this plugin?": "强制移除此插件?",
|
|
85
|
+
"This updates the plugin registry directly. Restart or reload is required to fully unload runtime hooks.": "此操作会直接更新插件注册表。需要重启或重新加载后才能完全卸载运行时钩子。",
|
|
86
|
+
"This removes the plugin registry record. Package files are not deleted. Restart or reload is required.": "此操作会移除插件注册记录。不会删除 package 文件。需要重启或重新加载。",
|
|
87
|
+
"Force operations bypass plugin lifecycle hooks": "强制操作会绕过插件生命周期钩子",
|
|
88
|
+
"Use this only when the normal plugin manager cannot disable or remove a broken plugin. Restart or reload the app after a successful operation.": "仅在普通插件管理器无法禁用或移除异常插件时使用。操作成功后请重启或重新加载应用。",
|
|
89
|
+
"Search plugins": "搜索插件",
|
|
90
|
+
"Plugin force disabled": "插件已强制禁用",
|
|
91
|
+
"Plugin force removed": "插件已强制移除",
|
|
92
|
+
"Failed to load plugins": "加载插件失败",
|
|
93
|
+
"Failed to force disable plugin": "强制禁用插件失败",
|
|
94
|
+
"Failed to force remove plugin": "强制移除插件失败",
|
|
95
|
+
"Nginx Cache": "Nginx 缓存",
|
|
96
|
+
"Nginx configuration file found at": "已找到 Nginx 配置文件于",
|
|
97
|
+
"Nginx cache paths detected": "检测到的 Nginx 缓存路径",
|
|
98
|
+
"Nginx is not detected on this node. You can still input a custom cache directory.": "此节点未检测到 Nginx。您仍可以输入自定义缓存目录。",
|
|
99
|
+
"Clearing Method": "清除方式",
|
|
100
|
+
"Physical Files": "物理文件",
|
|
101
|
+
"HTTP Purge Request": "HTTP Purge 请求",
|
|
102
|
+
"Select Cache Path": "选择缓存路径",
|
|
103
|
+
"Custom Path": "自定义路径",
|
|
104
|
+
"Purge URL": "Purge URL",
|
|
105
|
+
"Headers (JSON)": "Headers (JSON)",
|
|
106
|
+
"Clear Nginx Cache": "清除 Nginx 缓存",
|
|
107
|
+
"Are you sure you want to clear Nginx cache? This will permanently delete all files in this directory.": "确定要清除 Nginx 缓存吗?这将永久删除该目录下的所有文件。",
|
|
108
|
+
"Cache cleared successfully. Cleared {count} items.": "缓存清除成功。已清除 {count} 项。",
|
|
109
|
+
"HTTP Purge request completed. Status: {status}": "HTTP Purge 请求已完成。状态:{status}",
|
|
110
|
+
"Custom Cache Path": "自定义缓存路径",
|
|
111
|
+
"HTTP Method": "HTTP 方法",
|
|
112
|
+
"Send Purge Request": "发送 Purge 请求",
|
|
113
|
+
"Please select or enter a cache path": "请选择或输入缓存路径",
|
|
114
|
+
"Please enter a valid Purge URL": "请输入有效的 Purge URL",
|
|
115
|
+
"Nginx cache path is required": "必须提供 Nginx 缓存路径",
|
|
116
|
+
"Invalid headers JSON structure": "Headers JSON 结构无效",
|
|
117
|
+
"Nginx Cache Status": "Nginx 缓存状态",
|
|
118
|
+
"Nginx is installed": "Nginx 已安装",
|
|
119
|
+
"Nginx is NOT installed": "Nginx 未安装",
|
|
120
|
+
"Nginx cache clearing method": "Nginx 缓存清除方式",
|
|
121
|
+
"Execution Logs": "执行日志",
|
|
122
|
+
"Clear Nginx Cache?": "清除 Nginx 缓存?"
|
|
123
|
+
,
|
|
124
|
+
"Rolling Restart": "Rolling Restart",
|
|
125
|
+
"Worker nodes only": "Worker nodes only",
|
|
126
|
+
"App nodes only": "App nodes only",
|
|
127
|
+
"Sandbox nodes only": "Sandbox nodes only",
|
|
128
|
+
"All nodes": "All nodes",
|
|
129
|
+
"Soft restart": "Soft restart",
|
|
130
|
+
"Hard restart": "Hard restart",
|
|
131
|
+
"Start rolling restart?": "Start rolling restart?",
|
|
132
|
+
"Nodes will receive restart commands one-by-one with the configured delay.": "Nodes will receive restart commands one-by-one with the configured delay.",
|
|
133
|
+
"Start": "Start",
|
|
134
|
+
"Rolling restart dispatched for {count} node(s)": "Rolling restart dispatched for {count} node(s)",
|
|
135
|
+
"Failed to dispatch rolling restart": "Failed to dispatch rolling restart",
|
|
136
|
+
"Cluster Drift": "Cluster Drift",
|
|
137
|
+
"No cluster drift detected": "No cluster drift detected",
|
|
138
|
+
"Cluster drift detected": "Cluster drift detected",
|
|
139
|
+
"Reference version": "Reference version",
|
|
140
|
+
"No reference version available": "No reference version available",
|
|
141
|
+
"Checked Nodes": "Checked Nodes",
|
|
142
|
+
"Version Drift": "Version Drift",
|
|
143
|
+
"Runtime Drift": "Runtime Drift",
|
|
144
|
+
"Package Drift": "Package Drift",
|
|
145
|
+
"Runtime": "Runtime",
|
|
146
|
+
"Role": "Role",
|
|
147
|
+
"Expected": "Expected",
|
|
148
|
+
"Actual": "Actual",
|
|
149
|
+
"Package Status": "Package Status",
|
|
150
|
+
"Missing Packages": "Missing Packages",
|
|
151
|
+
"No missing packages": "No missing packages",
|
|
152
|
+
"Legacy Multi-app Diagnostics": "Legacy Multi-app Diagnostics",
|
|
153
|
+
"No legacy multi-app risk detected": "No legacy multi-app risk detected",
|
|
154
|
+
"Legacy multi-app risk detected": "Legacy multi-app risk detected",
|
|
155
|
+
"Legacy app records": "Legacy app records",
|
|
156
|
+
"Deprecated multi-app manager is active. It runs apps in shared process memory and should not be used for production cluster isolation.": "Deprecated multi-app manager is active. It runs apps in shared process memory and should not be used for production cluster isolation.",
|
|
157
|
+
"Deprecated multi-app share collection is active. Avoid schema/table sharing for new cluster deployments.": "Deprecated multi-app share collection is active. Avoid schema/table sharing for new cluster deployments.",
|
|
158
|
+
"{count} legacy application record(s) were found in the applications collection.": "{count} legacy application record(s) were found in the applications collection.",
|
|
159
|
+
"App Supervisor is not enabled. Use it for new multi-application management instead of deprecated multi-app plugins.": "App Supervisor is not enabled. Use it for new multi-application management instead of deprecated multi-app plugins.",
|
|
160
|
+
"License": "License",
|
|
161
|
+
"Doctor": "诊断",
|
|
162
|
+
"Duration": "Duration",
|
|
163
|
+
"Start Doctor": "Start Doctor",
|
|
164
|
+
"Stop Doctor": "Stop Doctor",
|
|
165
|
+
"Download Report": "Download Report",
|
|
166
|
+
"Diagnostic session started": "Diagnostic session started",
|
|
167
|
+
"Diagnostic report is ready": "Diagnostic report is ready",
|
|
168
|
+
"Failed to load diagnostic status": "Failed to load diagnostic status",
|
|
169
|
+
"Failed to start diagnostic session": "Failed to start diagnostic session",
|
|
170
|
+
"Failed to stop diagnostic session": "Failed to stop diagnostic session",
|
|
171
|
+
"Failed to download diagnostic report": "Failed to download diagnostic report",
|
|
172
|
+
"Running": "Running",
|
|
173
|
+
"Run ID": "Run ID",
|
|
174
|
+
"Started At": "Started At",
|
|
175
|
+
"Finished At": "Finished At",
|
|
176
|
+
"Finish Reason": "Finish Reason",
|
|
177
|
+
"Report Status": "Report Status",
|
|
178
|
+
"Nodes": "Nodes",
|
|
179
|
+
"Errors": "Errors",
|
|
180
|
+
"Warnings": "Warnings",
|
|
181
|
+
"Plugin Drift": "Plugin Drift",
|
|
182
|
+
"Findings": "Findings",
|
|
183
|
+
"Node Log Distribution": "Node Log Distribution",
|
|
184
|
+
"Top Error Signatures": "Top Error Signatures",
|
|
185
|
+
"Level": "Level",
|
|
186
|
+
"Count": "Count",
|
|
187
|
+
"Signature": "Signature",
|
|
188
|
+
"Node": "Node",
|
|
189
|
+
"Log Files": "Log Files",
|
|
190
|
+
"Package": "Package",
|
|
191
|
+
"DB Version": "DB Version",
|
|
192
|
+
"Runtime Versions": "Runtime Versions",
|
|
193
|
+
"Queue Assignment": "队列分配",
|
|
194
|
+
"Queue Name": "队列名称",
|
|
195
|
+
"Map queues to worker stacks. Unassigned queues run on all workers.": "将队列映射到工作节点栈。未分配的队列将在所有工作节点上运行。",
|
|
196
|
+
"Scan Queues": "扫描队列",
|
|
197
|
+
"Auto-map ({count})": "自动映射 ({count})",
|
|
198
|
+
"Register": "注册",
|
|
199
|
+
"Unregister": "注销",
|
|
200
|
+
"Assigned Stack": "分配栈",
|
|
201
|
+
"All (default)": "全部(默认)",
|
|
202
|
+
"Delete this mapping?": "删除此映射?",
|
|
203
|
+
"No queues discovered. Click \"Scan Queues\" to detect registered queues.": "未发现队列。点击\"扫描队列\"以检测已注册的队列。",
|
|
204
|
+
"Auto-mapped {count} queue(s)": "已自动映射 {count} 个队列",
|
|
205
|
+
"Queue Assignment updated": "队列分配已更新",
|
|
206
|
+
"Unassigned (worker runs all queues)": "未分配(工作节点运行所有队列)"
|
|
207
|
+
}
|