@@ -23,21 +23,21 @@ export default function ExtensionComparisonPageClient({ locale: _locale }: Props
2323 const columns : ComparisonColumn [ ] = [
2424 {
2525 key : 'vendor' ,
26- label : tPage ( 'columns .vendor') ,
26+ label : tShared ( 'terms .vendor') ,
2727 } ,
2828 {
2929 key : 'license' ,
30- label : tPage ( 'columns .license') ,
30+ label : tShared ( 'terms .license') ,
3131 render : ( value : unknown , item : Record < string , unknown > ) =>
3232 renderLicense ( value , item , tShared ) ,
3333 } ,
3434 {
3535 key : 'latestVersion' ,
36- label : tPage ( 'columns .version') ,
36+ label : tShared ( 'terms .version') ,
3737 } ,
3838 {
3939 key : 'supportedIdes' ,
40- label : tPage ( 'columns .supportedIdes') ,
40+ label : tShared ( 'terms .supportedIdes') ,
4141 render : ( value : unknown ) => {
4242 const supportedIdes = value as Array < { ideId : string } > | undefined
4343 if ( ! supportedIdes || supportedIdes . length === 0 ) return '-'
@@ -57,7 +57,7 @@ export default function ExtensionComparisonPageClient({ locale: _locale }: Props
5757 } ,
5858 {
5959 key : 'githubStars' ,
60- label : tPage ( 'columns.githubStars ') ,
60+ label : tShared ( 'terms.stars ') ,
6161 render : ( _ : unknown , item : Record < string , unknown > ) => {
6262 const id = item . id as string
6363 const stars = getGithubStars ( 'extensions' , id )
@@ -118,7 +118,7 @@ export default function ExtensionComparisonPageClient({ locale: _locale }: Props
118118 target = "_blank"
119119 rel = "noopener"
120120 className = "text-[var(--color-text)] hover:text-[var(--color-text-secondary)] transition-colors"
121- title = { tPage ( 'linkTitles.officialWebsite ') }
121+ title = { tShared ( 'terms.visitWebsite ') }
122122 >
123123 < Home className = "w-3.5 h-3.5" />
124124 </ a >
@@ -133,7 +133,7 @@ export default function ExtensionComparisonPageClient({ locale: _locale }: Props
133133 target = "_blank"
134134 rel = "noopener"
135135 className = "text-[var(--color-text)] hover:text-[var(--color-text-secondary)] transition-colors"
136- title = { tPage ( 'linkTitles .download') }
136+ title = { tShared ( 'actions .download') }
137137 >
138138 < Download className = "w-3.5 h-3.5" />
139139 </ a >
@@ -148,7 +148,7 @@ export default function ExtensionComparisonPageClient({ locale: _locale }: Props
148148 target = "_blank"
149149 rel = "noopener"
150150 className = "text-[var(--color-text)] hover:text-[var(--color-text-secondary)] transition-colors"
151- title = { tPage ( 'linkTitles .documentation') }
151+ title = { tShared ( 'terms .documentation') }
152152 >
153153 < FileText className = "w-3.5 h-3.5" />
154154 </ a >
@@ -290,6 +290,7 @@ export default function ExtensionComparisonPageClient({ locale: _locale }: Props
290290 items = { extensions as unknown as Record < string , unknown > [ ] }
291291 columns = { columns }
292292 itemLinkPrefix = { `/extensions` }
293+ nameColumnLabel = { tPage ( 'columns.name' ) }
293294 />
294295 </ div >
295296 </ section >
0 commit comments