 85bf1341f3
			
		
	
	85bf1341f3
	
	
	
		
			
			Frontend Enhancements: - Complete React TypeScript frontend with modern UI components - Distributed workflows management interface with real-time updates - Socket.IO integration for live agent status monitoring - Agent management dashboard with cluster visualization - Project management interface with metrics and task tracking - Responsive design with proper error handling and loading states Backend Infrastructure: - Distributed coordinator for multi-agent workflow orchestration - Cluster management API with comprehensive agent operations - Enhanced database models for agents and projects - Project service for filesystem-based project discovery - Performance monitoring and metrics collection - Comprehensive API documentation and error handling Documentation: - Complete distributed development guide (README_DISTRIBUTED.md) - Comprehensive development report with architecture insights - System configuration templates and deployment guides The platform now provides a complete web interface for managing the distributed AI cluster with real-time monitoring, workflow orchestration, and agent coordination capabilities. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			123 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			123 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import * as util from "../core/util.js";
 | |
| const error = () => {
 | |
|     const Sizable = {
 | |
|         string: { unit: "توکي", verb: "ولري" },
 | |
|         file: { unit: "بایټس", verb: "ولري" },
 | |
|         array: { unit: "توکي", verb: "ولري" },
 | |
|         set: { unit: "توکي", verb: "ولري" },
 | |
|     };
 | |
|     function getSizing(origin) {
 | |
|         return Sizable[origin] ?? null;
 | |
|     }
 | |
|     const parsedType = (data) => {
 | |
|         const t = typeof data;
 | |
|         switch (t) {
 | |
|             case "number": {
 | |
|                 return Number.isNaN(data) ? "NaN" : "عدد";
 | |
|             }
 | |
|             case "object": {
 | |
|                 if (Array.isArray(data)) {
 | |
|                     return "ارې";
 | |
|                 }
 | |
|                 if (data === null) {
 | |
|                     return "null";
 | |
|                 }
 | |
|                 if (Object.getPrototypeOf(data) !== Object.prototype && data.constructor) {
 | |
|                     return data.constructor.name;
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|         return t;
 | |
|     };
 | |
|     const Nouns = {
 | |
|         regex: "ورودي",
 | |
|         email: "بریښنالیک",
 | |
|         url: "یو آر ال",
 | |
|         emoji: "ایموجي",
 | |
|         uuid: "UUID",
 | |
|         uuidv4: "UUIDv4",
 | |
|         uuidv6: "UUIDv6",
 | |
|         nanoid: "nanoid",
 | |
|         guid: "GUID",
 | |
|         cuid: "cuid",
 | |
|         cuid2: "cuid2",
 | |
|         ulid: "ULID",
 | |
|         xid: "XID",
 | |
|         ksuid: "KSUID",
 | |
|         datetime: "نیټه او وخت",
 | |
|         date: "نېټه",
 | |
|         time: "وخت",
 | |
|         duration: "موده",
 | |
|         ipv4: "د IPv4 پته",
 | |
|         ipv6: "د IPv6 پته",
 | |
|         cidrv4: "د IPv4 ساحه",
 | |
|         cidrv6: "د IPv6 ساحه",
 | |
|         base64: "base64-encoded متن",
 | |
|         base64url: "base64url-encoded متن",
 | |
|         json_string: "JSON متن",
 | |
|         e164: "د E.164 شمېره",
 | |
|         jwt: "JWT",
 | |
|         template_literal: "ورودي",
 | |
|     };
 | |
|     return (issue) => {
 | |
|         switch (issue.code) {
 | |
|             case "invalid_type":
 | |
|                 return `ناسم ورودي: باید ${issue.expected} وای, مګر ${parsedType(issue.input)} ترلاسه شو`;
 | |
|             case "invalid_value":
 | |
|                 if (issue.values.length === 1) {
 | |
|                     return `ناسم ورودي: باید ${util.stringifyPrimitive(issue.values[0])} وای`;
 | |
|                 }
 | |
|                 return `ناسم انتخاب: باید یو له ${util.joinValues(issue.values, "|")} څخه وای`;
 | |
|             case "too_big": {
 | |
|                 const adj = issue.inclusive ? "<=" : "<";
 | |
|                 const sizing = getSizing(issue.origin);
 | |
|                 if (sizing) {
 | |
|                     return `ډیر لوی: ${issue.origin ?? "ارزښت"} باید ${adj}${issue.maximum.toString()} ${sizing.unit ?? "عنصرونه"} ولري`;
 | |
|                 }
 | |
|                 return `ډیر لوی: ${issue.origin ?? "ارزښت"} باید ${adj}${issue.maximum.toString()} وي`;
 | |
|             }
 | |
|             case "too_small": {
 | |
|                 const adj = issue.inclusive ? ">=" : ">";
 | |
|                 const sizing = getSizing(issue.origin);
 | |
|                 if (sizing) {
 | |
|                     return `ډیر کوچنی: ${issue.origin} باید ${adj}${issue.minimum.toString()} ${sizing.unit} ولري`;
 | |
|                 }
 | |
|                 return `ډیر کوچنی: ${issue.origin} باید ${adj}${issue.minimum.toString()} وي`;
 | |
|             }
 | |
|             case "invalid_format": {
 | |
|                 const _issue = issue;
 | |
|                 if (_issue.format === "starts_with") {
 | |
|                     return `ناسم متن: باید د "${_issue.prefix}" سره پیل شي`;
 | |
|                 }
 | |
|                 if (_issue.format === "ends_with") {
 | |
|                     return `ناسم متن: باید د "${_issue.suffix}" سره پای ته ورسيږي`;
 | |
|                 }
 | |
|                 if (_issue.format === "includes") {
 | |
|                     return `ناسم متن: باید "${_issue.includes}" ولري`;
 | |
|                 }
 | |
|                 if (_issue.format === "regex") {
 | |
|                     return `ناسم متن: باید د ${_issue.pattern} سره مطابقت ولري`;
 | |
|                 }
 | |
|                 return `${Nouns[_issue.format] ?? issue.format} ناسم دی`;
 | |
|             }
 | |
|             case "not_multiple_of":
 | |
|                 return `ناسم عدد: باید د ${issue.divisor} مضرب وي`;
 | |
|             case "unrecognized_keys":
 | |
|                 return `ناسم ${issue.keys.length > 1 ? "کلیډونه" : "کلیډ"}: ${util.joinValues(issue.keys, ", ")}`;
 | |
|             case "invalid_key":
 | |
|                 return `ناسم کلیډ په ${issue.origin} کې`;
 | |
|             case "invalid_union":
 | |
|                 return `ناسمه ورودي`;
 | |
|             case "invalid_element":
 | |
|                 return `ناسم عنصر په ${issue.origin} کې`;
 | |
|             default:
 | |
|                 return `ناسمه ورودي`;
 | |
|         }
 | |
|     };
 | |
| };
 | |
| export default function () {
 | |
|     return {
 | |
|         localeError: error(),
 | |
|     };
 | |
| }
 |