Skip to content
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

RI-6540: Change message for unsupported data types #248

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
7 changes: 4 additions & 3 deletions l10n/bundle.l10n.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@
"Score": "Score",
"Use CLI to edit the score": "Use CLI to edit the score",
"Enter Score": "Enter Score",
"This data type is not currently supported.": "This data type is not currently supported.",
"See our repository for the list of ": "See our repository for the list of ",
"supported data types.": "supported data types.",
"This key type is not currently supported.": "This key type is not currently supported.",
"See": "See",
"our repository": "our repository",
"for the list of supported data types.": "for the list of supported data types.",
"Edit value": "Edit value",
"Empty": "Empty",
"loading...": "loading...",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,18 @@ export const UnsupportedTypeDetails = () => (
<div className={styles.container} data-testid="unsupported-type-details">
<div className="flex items-center justify-center">
<div className={styles.textWrapper}>
<h3>{l10n.t('This data type is not currently supported.')}</h3>
<h3>{l10n.t('This key type is not currently supported.')}</h3>
<div>
{l10n.t('See our repository for the list of ')}
{l10n.t('See')}{' '}
<Link
target="_blank"
className="pl-0"
className="p-0"
href={EXTERNAL_LINKS.githubRepo}
data-testid="unsupported-key-github-btn"
>
{l10n.t('supported data types.')}
</Link>
{l10n.t('our repository')}
</Link>{' '}
{l10n.t('for the list of supported data types.')}
</div>
</div>
</div>
Expand Down
Loading