first commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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: "مایکت",
|
||||
};
|
||||
Reference in New Issue
Block a user