Skip to content

Commit

Permalink
refactor: label deactive to inactive
Browse files Browse the repository at this point in the history
Signed-off-by: Jeroen Branje <[email protected]>
  • Loading branch information
jeroenbranje committed Jan 31, 2024
1 parent 0b920df commit ede3641
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/envited.ascs.digital/modules/Users/Users.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const Users: FC<UsersProps> = ({ users }) => {
: 'bg-red-100 text-red-600 dark:bg-red-600'
} dark:text-white pl-1 pr-1.5 py-0.5 text-xs text-center rounded-xl`}
>
{t(isActive ? '[Label] active' : '[Label] deactive')}
{t(isActive ? '[Label] active' : '[Label] inactive')}
</div>
</TableCell>
<TableCell extraClasses="pl-3">
Expand Down
2 changes: 1 addition & 1 deletion apps/envited.ascs.digital/modules/Users/locales/de_DE.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"[Heading] status": "Status",
"[Button] deactivate": "Deactivate",
"[Label] active": "Active",
"[Label] deactive": "Deactive"
"[Label] inactive": "Inactive"
}
2 changes: 1 addition & 1 deletion apps/envited.ascs.digital/modules/Users/locales/en_GB.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
"[Heading] status": "Status",
"[Button] deactivate": "Deactivate",
"[Label] active": "Active",
"[Label] deactive": "Deactive"
"[Label] inactive": "Inactive"
}

0 comments on commit ede3641

Please sign in to comment.