Merge pull request #400 from BEDOLAGA-DEV/dev

Dev
This commit is contained in:
Egor
2026-04-18 03:58:03 +03:00
committed by GitHub
7 changed files with 32 additions and 0 deletions

View File

@@ -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">

View File

@@ -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'] },
],
},
{

View File

@@ -17,5 +17,6 @@ export const METHOD_LABELS: Record<string, string> = {
severpay: 'SeverPay',
paypear: 'PayPear',
rollypay: 'RollyPay',
aurapay: 'AuraPay',
manual: 'Ручное пополнение',
};

View File

@@ -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",

View File

@@ -1619,6 +1619,7 @@
"payments_severpay": "SeverPay",
"payments_paypear": "PayPear",
"payments_rollypay": "RollyPay",
"payments_aurapay": "AuraPay",
"subs_core": "هسته",
"subs_trial": "آزمایشی",
"subs_pricing": "قیمت‌گذاری",

View File

@@ -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": "Цены",

View File

@@ -1657,6 +1657,7 @@
"payments_severpay": "SeverPay",
"payments_paypear": "PayPear",
"payments_rollypay": "RollyPay",
"payments_aurapay": "AuraPay",
"subs_core": "核心",
"subs_trial": "试用",
"subs_pricing": "定价",