File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed
src/webviews/src/modules/key-details/components/unsupported-type-details Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 52
52
"Score" : " Score" ,
53
53
"Use CLI to edit the score" : " Use CLI to edit the score" ,
54
54
"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." ,
58
59
"Edit value" : " Edit value" ,
59
60
"Empty" : " Empty" ,
60
61
"loading..." : " loading..." ,
Original file line number Diff line number Diff line change @@ -9,17 +9,18 @@ export const UnsupportedTypeDetails = () => (
9
9
< div className = { styles . container } data-testid = "unsupported-type-details" >
10
10
< div className = "flex items-center justify-center" >
11
11
< 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 >
13
13
< div >
14
- { l10n . t ( 'See our repository for the list of ' ) }
14
+ { l10n . t ( 'See' ) } { ' ' }
15
15
< Link
16
16
target = "_blank"
17
- className = "pl -0"
17
+ className = "p -0"
18
18
href = { EXTERNAL_LINKS . githubRepo }
19
19
data-testid = "unsupported-key-github-btn"
20
20
>
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.' ) }
23
24
</ div >
24
25
</ div >
25
26
</ div >
You can’t perform that action at this time.
0 commit comments