Buckets:
| import type { $ZodStringFormats } from "../core/checks.js"; | |
| import type * as errors from "../core/errors.js"; | |
| import * as util from "../core/util.js"; | |
| const error: () => errors.$ZodErrorMap = () => { | |
| const Sizable: Record<string, { unit: string; verb: string }> = { | |
| string: { unit: "توکي", verb: "ولري" }, | |
| file: { unit: "بایټس", verb: "ولري" }, | |
| array: { unit: "توکي", verb: "ولري" }, | |
| set: { unit: "توکي", verb: "ولري" }, | |
| }; | |
| function getSizing(origin: string): { unit: string; verb: string } | null { | |
| return Sizable[origin] ?? null; | |
| } | |
| const parsedType = (data: any): string => { | |
| 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: { | |
| [k in $ZodStringFormats | (string & {})]?: string; | |
| } = { | |
| 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 as errors.$ZodStringFormatIssues; | |
| 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 (): { localeError: errors.$ZodErrorMap } { | |
| return { | |
| localeError: error(), | |
| }; | |
| } | |
Xet Storage Details
- Size:
- 4.67 kB
- Xet hash:
- 356e24a4bc475b03f4509123f699e9b819a999266691d50b2ae6862c0995ef99
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.