Skip to content

Commit

Permalink
fix(account-security): Add missing translation calls (#76724)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurKnaus authored Aug 29, 2024
1 parent a7039d6 commit 61802f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions static/app/views/settings/account/apiApplications/details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ function ApiApplicationsDetails() {

<FormField
name="clientSecret"
label="Client Secret"
label={t('Client Secret')}
help={t(`Your secret is only available briefly after application creation. Make
sure to save this value!`)}
>
Expand All @@ -143,19 +143,19 @@ function ApiApplicationsDetails() {
)}
>
<Button size="xs" priority="danger">
Rotate client secret
{t('Rotate client secret')}
</Button>
</Confirm>
</ClientSecret>
)
}
</FormField>

<FormField name="" label="Authorization URL">
<FormField name="" label={t('Authorization URL')}>
{() => <TextCopyInput>{`${urlPrefix}/oauth/authorize/`}</TextCopyInput>}
</FormField>

<FormField name="" label="Token URL">
<FormField name="" label={t('Token URL')}>
{() => <TextCopyInput>{`${urlPrefix}/oauth/token/`}</TextCopyInput>}
</FormField>
</PanelBody>
Expand Down

0 comments on commit 61802f5

Please sign in to comment.