Skip to content

Commit 871385a

Browse files
authored
RI-6540: Change message for unsupported data types (#248)
* change message * update texts
1 parent 4474f35 commit 871385a

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

l10n/bundle.l10n.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,10 @@
5252
"Score": "Score",
5353
"Use CLI to edit the score": "Use CLI to edit the score",
5454
"Enter Score": "Enter Score",
55-
"This data type is not currently supported.": "This data type is not currently supported.",
56-
"See our repository for the list of ": "See our repository for the list of ",
57-
"supported data types.": "supported data types.",
55+
"This key type is not currently supported.": "This key type is not currently supported.",
56+
"See": "See",
57+
"our repository": "our repository",
58+
"for the list of supported data types.": "for the list of supported data types.",
5859
"Edit value": "Edit value",
5960
"Empty": "Empty",
6061
"loading...": "loading...",

src/webviews/src/modules/key-details/components/unsupported-type-details/UnsupportedTypeDetails.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,18 @@ export const UnsupportedTypeDetails = () => (
99
<div className={styles.container} data-testid="unsupported-type-details">
1010
<div className="flex items-center justify-center">
1111
<div className={styles.textWrapper}>
12-
<h3>{l10n.t('This data type is not currently supported.')}</h3>
12+
<h3>{l10n.t('This key type is not currently supported.')}</h3>
1313
<div>
14-
{l10n.t('See our repository for the list of ')}
14+
{l10n.t('See')}{' '}
1515
<Link
1616
target="_blank"
17-
className="pl-0"
17+
className="p-0"
1818
href={EXTERNAL_LINKS.githubRepo}
1919
data-testid="unsupported-key-github-btn"
2020
>
21-
{l10n.t('supported data types.')}
22-
</Link>
21+
{l10n.t('our repository')}
22+
</Link>{' '}
23+
{l10n.t('for the list of supported data types.')}
2324
</div>
2425
</div>
2526
</div>

0 commit comments

Comments
 (0)