Development Artifact Cleanup: ✅ BROTHER_NODE REORGANIZATION: Moved development test node to appropriate location - dev/test-nodes/brother_node/: Moved from root directory for better organization - Contains development configuration, test logs, and test chain data - No impact on production systems - purely development/testing artifact ✅ DEVELOPMENT ARTIFACTS IDENTIFIED: - Chain ID: aitbc-brother-chain (test/development chain) - Ports: 8010 (P2P) and 8011 (RPC) - different from production - Environment: .env file with test configuration - Logs: rpc.log and node.log from development testing session (March 15, 2026) ✅ ROOT DIRECTORY CLEANUP: Removed development clutter from production directory - brother_node/ moved to dev/test-nodes/brother_node/ - Root directory now contains only production-ready components - Development artifacts properly organized in dev/ subdirectory DIRECTORY STRUCTURE IMPROVEMENT: 📁 dev/test-nodes/: Development and testing node configurations 🏗️ Root Directory: Clean production structure with only essential components 🧪 Development Isolation: Test environments separated from production BENEFITS: ✅ Clean Production Directory: No development artifacts in root ✅ Better Organization: Development nodes grouped in dev/ subdirectory ✅ Clear Separation: Production vs development environments clearly distinguished ✅ Maintainability: Easier to identify and manage development components RESULT: Successfully moved brother_node development artifact to dev/test-nodes/ subdirectory, cleaning up the root directory while preserving development testing environment for future use.
123 lines
4.9 KiB
JavaScript
Executable File
123 lines
4.9 KiB
JavaScript
Executable File
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(),
|
|
};
|
|
}
|