mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 09:33:46 +00:00
@@ -275,6 +275,26 @@ export default function PaymentMethodIcon({
|
||||
);
|
||||
}
|
||||
|
||||
case 'aurapay': {
|
||||
const aurapayGradId = `${uid}-aurapay`;
|
||||
return (
|
||||
<svg className={className} viewBox="0 0 40 40">
|
||||
<defs>
|
||||
<linearGradient id={aurapayGradId} x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0%" stopColor="#ec4899" />
|
||||
<stop offset="100%" stopColor="#db2777" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<circle cx="20" cy="20" r="20" fill={`url(#${aurapayGradId})`} />
|
||||
<g fill="#fff" fontFamily="Arial,sans-serif" fontWeight="700">
|
||||
<text x="20" y="26" textAnchor="middle" fontSize="14">
|
||||
AP
|
||||
</text>
|
||||
</g>
|
||||
</svg>
|
||||
);
|
||||
}
|
||||
|
||||
default:
|
||||
return (
|
||||
<svg className={className} viewBox="0 0 40 40">
|
||||
|
||||
@@ -54,6 +54,7 @@ export const SETTINGS_TREE: SettingsTreeConfig = {
|
||||
{ id: 'payments_severpay', categories: ['SEVERPAY'] },
|
||||
{ id: 'payments_paypear', categories: ['PAYPEAR'] },
|
||||
{ id: 'payments_rollypay', categories: ['ROLLYPAY'] },
|
||||
{ id: 'payments_aurapay', categories: ['AURAPAY'] },
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
@@ -17,5 +17,6 @@ export const METHOD_LABELS: Record<string, string> = {
|
||||
severpay: 'SeverPay',
|
||||
paypear: 'PayPear',
|
||||
rollypay: 'RollyPay',
|
||||
aurapay: 'AuraPay',
|
||||
manual: 'Ручное пополнение',
|
||||
};
|
||||
|
||||
@@ -655,6 +655,9 @@
|
||||
},
|
||||
"rollypay": {
|
||||
"description": "Pay via RollyPay (SBP)"
|
||||
},
|
||||
"aurapay": {
|
||||
"description": "Pay via AuraPay"
|
||||
}
|
||||
},
|
||||
"transactionHistory": "Transaction History",
|
||||
@@ -1964,6 +1967,7 @@
|
||||
"payments_severpay": "SeverPay",
|
||||
"payments_paypear": "PayPear",
|
||||
"payments_rollypay": "RollyPay",
|
||||
"payments_aurapay": "AuraPay",
|
||||
"subs_core": "Core",
|
||||
"subs_trial": "Trial",
|
||||
"subs_pricing": "Pricing",
|
||||
|
||||
@@ -1619,6 +1619,7 @@
|
||||
"payments_severpay": "SeverPay",
|
||||
"payments_paypear": "PayPear",
|
||||
"payments_rollypay": "RollyPay",
|
||||
"payments_aurapay": "AuraPay",
|
||||
"subs_core": "هسته",
|
||||
"subs_trial": "آزمایشی",
|
||||
"subs_pricing": "قیمتگذاری",
|
||||
|
||||
@@ -683,6 +683,9 @@
|
||||
},
|
||||
"rollypay": {
|
||||
"description": "Оплата через RollyPay (СБП)"
|
||||
},
|
||||
"aurapay": {
|
||||
"description": "Оплата через AuraPay"
|
||||
}
|
||||
},
|
||||
"transactionHistory": "История операций",
|
||||
@@ -1980,6 +1983,7 @@
|
||||
"payments_severpay": "SeverPay",
|
||||
"payments_paypear": "PayPear",
|
||||
"payments_rollypay": "RollyPay",
|
||||
"payments_aurapay": "AuraPay",
|
||||
"subs_core": "Основные",
|
||||
"subs_trial": "Пробный период",
|
||||
"subs_pricing": "Цены",
|
||||
|
||||
@@ -1657,6 +1657,7 @@
|
||||
"payments_severpay": "SeverPay",
|
||||
"payments_paypear": "PayPear",
|
||||
"payments_rollypay": "RollyPay",
|
||||
"payments_aurapay": "AuraPay",
|
||||
"subs_core": "核心",
|
||||
"subs_trial": "试用",
|
||||
"subs_pricing": "定价",
|
||||
|
||||
Reference in New Issue
Block a user