Files
2026-08-07 09:40:16 +03:30

28 lines
770 B
TypeScript

import type { BadgeTone } from "@/components/Badge";
// برچسب‌ها و تن‌هایِ نشانکیِ مشترک بین صفحه‌ی تراکنش‌ها و داشبورد.
export const KIND_LABEL: Record<string, string> = {
coin: "سکه",
ticket: "بلیط",
booster: "بوستر",
vip: "VIP",
};
export const KIND_TONE: Record<string, BadgeTone> = {
coin: "gold",
ticket: "blue",
booster: "purple",
vip: "green",
};
export const STATUS_LABEL: Record<string, string> = {
verified: "پرداخت‌شده",
pending: "در انتظار",
};
export const STATUS_TONE: Record<string, BadgeTone> = {
verified: "green",
pending: "gray",
};
export const STORE_LABEL: Record<string, string> = {
bazaar: "بازار",
myket: "مایکت",
};