28 lines
717 B
TypeScript
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: "равно",
|
|
};
|