Skip to content

Commit

Permalink
fix: add space in translation
Browse files Browse the repository at this point in the history
  • Loading branch information
nkdengineer committed Sep 27, 2024
1 parent d172810 commit c9b0f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4237,7 +4237,7 @@ const translations = {
unshare: ({to}: UnshareParams) => `removed user ${to}`,
stripePaid: ({amount, currency}: StripePaidParams) => `paid ${currency}${amount}`,
takeControl: `took control`,
unapproved: ({amount}: UnapprovedParams) => `unapproved${amount}`,
unapproved: ({amount}: UnapprovedParams) => `unapproved ${amount}`,
integrationSyncFailed: ({label, errorMessage}: IntegrationSyncFailedParams) => `failed to sync with ${label} ("${errorMessage}")`,
addEmployee: ({email, role}: AddEmployeeParams) => `added ${email} as ${role === 'user' ? 'member' : 'admin'}`,
updateRole: ({email, currentRole, newRole}: UpdateRoleParams) => `updated the role of ${email} from ${currentRole} to ${newRole}`,
Expand Down

0 comments on commit c9b0f3f

Please sign in to comment.