w-funnel/src/components/admin/builder/Canvas/constants.ts
gofnnp 90126bbf3b special-offer
add special offer page
2025-10-10 19:57:46 +04:00

28 lines
717 B
TypeScript

import type {
ScreenDefinition,
NavigationConditionDefinition,
} from "@/lib/funnel/types";
export const TEMPLATE_TITLES: Record<ScreenDefinition["template"], string> = {
list: "Список",
form: "Форма",
info: "Инфо",
date: "Дата",
coupon: "Купон",
email: "Email",
loaders: "Загрузка",
soulmate: "Портрет партнера",
trialPayment: "Trial Payment",
specialOffer: "Special Offer",
};
export const OPERATOR_LABELS: Record<
Exclude<NavigationConditionDefinition["operator"], undefined>,
string
> = {
includesAny: "любой из",
includesAll: "все из",
includesExactly: "точное совпадение",
equals: "равно",
};