minor fix
This commit is contained in:
parent
213105942b
commit
9c9fd969bc
|
@ -255,7 +255,12 @@ export default function Billing() {
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-sm text-center font-bold mt-3">
|
<p className="text-sm text-center font-bold mt-3">
|
||||||
{t("seats_purchased", { count: account?.subscription?.quantity })}
|
{t(
|
||||||
|
account?.subscription?.quantity === 1
|
||||||
|
? "seat_purchased"
|
||||||
|
: "seats_purchased",
|
||||||
|
{ count: account?.subscription?.quantity }
|
||||||
|
)}
|
||||||
</p>
|
</p>
|
||||||
{inviteModal && <InviteModal onClose={() => setInviteModal(false)} />}
|
{inviteModal && <InviteModal onClose={() => setInviteModal(false)} />}
|
||||||
{deleteUserModal.isOpen && deleteUserModal.userId && (
|
{deleteUserModal.isOpen && deleteUserModal.userId && (
|
||||||
|
|
|
@ -411,6 +411,7 @@
|
||||||
"active": "Active",
|
"active": "Active",
|
||||||
"manage_seats": "Manage Seats",
|
"manage_seats": "Manage Seats",
|
||||||
"seats_purchased": "{{count}} seats purchased",
|
"seats_purchased": "{{count}} seats purchased",
|
||||||
|
"seat_purchased": "{{count}} seat purchased",
|
||||||
"date_added": "Date Added",
|
"date_added": "Date Added",
|
||||||
"resend_invite": "Resend Invitation",
|
"resend_invite": "Resend Invitation",
|
||||||
"resend_invite_success": "Invitation Resent!",
|
"resend_invite_success": "Invitation Resent!",
|
||||||
|
|
Ŝarĝante…
Reference in New Issue