Skip to content

Mayuran/DAPI-571/Unable to remove pre-registered "verification URL" #263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 48 additions & 1 deletion i18n/en/code.json
Original file line number Diff line number Diff line change
Expand Up @@ -846,7 +846,7 @@
},
"theme.colorToggle.ariaLabel": {
"message": "Switch between dark and light mode (currently {mode})",
"description": "The ARIA label for the navbar color mode toggle"
"description": "The ARIA label for the color mode toggle"
},
"theme.colorToggle.ariaLabel.mode.dark": {
"message": "dark mode",
Expand Down Expand Up @@ -1124,5 +1124,52 @@
},
"Copied": {
"message": "Copied"
},
"Once set, this URL can't be removed, but you can update it anytime. We'll use it for email verification. If left blank, we'll use the redirect URL instead.": {
"message": "Once set, this URL can't be removed, but you can update it anytime. We'll use it for email verification. If left blank, we'll use the redirect URL instead."
},
"theme.colorToggle.ariaLabel.mode.system": {
"message": "system mode",
"description": "The name for the system color mode"
},
"theme.navbar.mobileDropdown.collapseButton.expandAriaLabel": {
"message": "Expand the dropdown",
"description": "The ARIA label of the button to expand the mobile dropdown navbar item"
},
"theme.navbar.mobileDropdown.collapseButton.collapseAriaLabel": {
"message": "Collapse the dropdown",
"description": "The ARIA label of the button to collapse the mobile dropdown navbar item"
},
"theme.blog.author.pageTitle": {
"message": "{authorName} - {nPosts}",
"description": "The title of the page for a blog author"
},
"theme.blog.authorsList.pageTitle": {
"message": "Authors",
"description": "The title of the authors page"
},
"theme.blog.authorsList.viewAll": {
"message": "View all authors",
"description": "The label of the link targeting the blog authors page"
},
"theme.blog.author.noPosts": {
"message": "This author has not written any posts yet.",
"description": "The text for authors with 0 blog post"
},
"theme.contentVisibility.unlistedBanner.title": {
"message": "Unlisted page",
"description": "The unlisted content banner title"
},
"theme.contentVisibility.unlistedBanner.message": {
"message": "This page is unlisted. Search engines will not index it, and only users having a direct link can access it.",
"description": "The unlisted content banner message"
},
"theme.contentVisibility.draftBanner.title": {
"message": "Draft page",
"description": "The draft content banner title"
},
"theme.contentVisibility.draftBanner.message": {
"message": "This page is a draft. It will only be visible in dev and be excluded from the production build.",
"description": "The draft content banner message"
}
}
5 changes: 3 additions & 2 deletions src/features/dashboard/update-app/AppUpdateForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,9 @@ const AppUpdateForm = ({ initialValues, submit, onCancel, is_loading }: TAppForm
<Explanations>
<Text size='sm' className='explanation'>
<Translate>
If provided, the verification URL will be appended with a token and sent to the
user&apos;s email. Otherwise, the redirect URL with the token will be used.
Once set, this URL can&apos;t be removed, but you can update it anytime.
We&apos;ll use it for email verification. If left blank, we&apos;ll use the
redirect URL instead.
</Translate>
</Text>
</Explanations>
Expand Down
Loading