feat(FN-294): add i18n keys for payment trust aria-labels
Some checks failed
Sync dev → Gitea / Mirror dev to Gitea (push) Has been cancelled
Some checks failed
Sync dev → Gitea / Mirror dev to Gitea (push) Has been cancelled
Commits merged: - feat(FN-294): add i18n keys for payment trust aria-labels Files changed: apps/web/src/messages/en.json | 2 + apps/web/src/messages/tr.json | 2 + apps/web/src/routeTree.gen.ts | 1110 ++++++++++---------- .../src/routes/dashboard/subscription/index.tsx | 4 +- 4 files changed, 561 insertions(+), 557 deletions(-) Fusion-Task-Id: FN-294
This commit is contained in:
@@ -221,6 +221,8 @@
|
|||||||
"paymentTrustSSL": "256-bit SSL",
|
"paymentTrustSSL": "256-bit SSL",
|
||||||
"paymentTrustProvider": "Iyzico infrastructure",
|
"paymentTrustProvider": "Iyzico infrastructure",
|
||||||
"paymentTrustKVKK": "KVKK compliant",
|
"paymentTrustKVKK": "KVKK compliant",
|
||||||
|
"paymentTrustAriaLabel": "Payment security",
|
||||||
|
"paymentTrustAcceptedCards": "Accepted cards: Visa, Mastercard, Troy, American Express",
|
||||||
"trialDaysLeft": "{days} days left",
|
"trialDaysLeft": "{days} days left",
|
||||||
"trialBanner": {
|
"trialBanner": {
|
||||||
"title": "Your trial is ending soon!",
|
"title": "Your trial is ending soon!",
|
||||||
|
|||||||
@@ -221,6 +221,8 @@
|
|||||||
"paymentTrustSSL": "256-bit SSL",
|
"paymentTrustSSL": "256-bit SSL",
|
||||||
"paymentTrustProvider": "Iyzico altyapısı",
|
"paymentTrustProvider": "Iyzico altyapısı",
|
||||||
"paymentTrustKVKK": "KVKK uyumlu",
|
"paymentTrustKVKK": "KVKK uyumlu",
|
||||||
|
"paymentTrustAriaLabel": "Ödeme güvencesi",
|
||||||
|
"paymentTrustAcceptedCards": "Kabul edilen kartlar: Visa, Mastercard, Troy, American Express",
|
||||||
"trialDaysLeft": "{days} gün kaldı",
|
"trialDaysLeft": "{days} gün kaldı",
|
||||||
"trialBanner": {
|
"trialBanner": {
|
||||||
"title": "Deneme süreniz dolmak üzere!",
|
"title": "Deneme süreniz dolmak üzere!",
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1264,7 +1264,7 @@ export function SubscriptionPage() {
|
|||||||
handlePaymentTrustClick();
|
handlePaymentTrustClick();
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
aria-label="Ödeme güvencesi"
|
aria-label={t("subscription.paymentTrustAriaLabel")}
|
||||||
className="flex flex-wrap items-center justify-end gap-x-3 gap-y-1 text-xs leading-5 text-foreground/70 cursor-pointer"
|
className="flex flex-wrap items-center justify-end gap-x-3 gap-y-1 text-xs leading-5 text-foreground/70 cursor-pointer"
|
||||||
>
|
>
|
||||||
<span aria-hidden="true">🔒</span>
|
<span aria-hidden="true">🔒</span>
|
||||||
@@ -1277,7 +1277,7 @@ export function SubscriptionPage() {
|
|||||||
</a>
|
</a>
|
||||||
<span
|
<span
|
||||||
role="img"
|
role="img"
|
||||||
aria-label="Kabul edilen kartlar: Visa, Mastercard, Troy, American Express"
|
aria-label={t("subscription.paymentTrustAcceptedCards")}
|
||||||
className="ml-1 flex items-center gap-1"
|
className="ml-1 flex items-center gap-1"
|
||||||
>
|
>
|
||||||
<Badge
|
<Badge
|
||||||
|
|||||||
Reference in New Issue
Block a user