diff --git a/public/locales/bg/profile.json b/public/locales/bg/profile.json index 86b753bc2..00cee9a26 100644 --- a/public/locales/bg/profile.json +++ b/public/locales/bg/profile.json @@ -39,7 +39,6 @@ "toDate": "До", "date": "Дата", "type": "Тип", - "sort": "Вид", "cause": "Кауза", "amount": "Сума", "cancelDonation": "Откажи дарение", @@ -51,13 +50,13 @@ "lv": "лв", "status": { "header": "Статус", - "initial": "започнато", - "waiting": "чакащо", - "succeeded": "успешно", - "refund": "възстановено", - "cancelled": "отменено", - "guaranteed": "гарантирано", - "declined": "отказано" + "initial": "Започнато", + "waiting": "Чакащо", + "succeeded": "Успешно", + "refund": "Възстановено", + "cancelled": "Отменено", + "guaranteed": "Гарантирано", + "declined": "Отказано" } }, "certificates-history": { diff --git a/public/locales/en/profile.json b/public/locales/en/profile.json index 113606cee..83178609b 100644 --- a/public/locales/en/profile.json +++ b/public/locales/en/profile.json @@ -39,7 +39,6 @@ "toDate": "To", "date": "Date", "type": "Type", - "sort": "Sort", "cause": "Cause", "amount": "Amount", "cancelDonation": "Cancel donation", @@ -51,13 +50,13 @@ "lv": "lv", "status": { "header": "Status", - "initial": "initial", - "waiting": "waiting", - "succeeded": "succeeded", - "refund": "refunded", - "cancelled": "cancelled", - "guaranteed": "guaranteed", - "declined": "declined" + "initial": "Initial", + "waiting": "Waiting", + "succeeded": "Succeeded", + "refund": "Refunded", + "cancelled": "Cancelled", + "guaranteed": "Guaranteed", + "declined": "Declined" } }, "certificates-history": { diff --git a/src/components/client/auth/profile/DonationTable.tsx b/src/components/client/auth/profile/DonationTable.tsx index 2d64bc286..2fd4cb35e 100644 --- a/src/components/client/auth/profile/DonationTable.tsx +++ b/src/components/client/auth/profile/DonationTable.tsx @@ -93,7 +93,7 @@ function DonationTable({ donations }: DonationTableProps) { {t('profile:donations.date')} {t('profile:donations.status.header')} - {t('profile:donations.sort')} + {t('profile:donations.type')} {t('profile:donations.cause')} {t('profile:donations.amount')} {t('profile:donations.certificate')} @@ -106,7 +106,9 @@ function DonationTable({ donations }: DonationTableProps) { {`${t( 'profile:donations.status.' + donation.payment.status, )}`} - {donation.payment.provider} + + {donation.payment.provider} +