File tree 2 files changed +44
-3
lines changed
src/frontend/screens/Library/components/GameCard
2 files changed +44
-3
lines changed Original file line number Diff line number Diff line change 59
59
"yesCancel" : " Yes, cancel"
60
60
},
61
61
"button" : {
62
+ "add_to_library" : " Add to library" ,
62
63
"cancel" : " Pause/Cancel" ,
63
64
"continue" : " Continue Download" ,
64
65
"details" : " Details" ,
229
230
"settings" : " Settings" ,
230
231
"store" : " Store Page" ,
231
232
"verify" : " Verify and Repair"
233
+ },
234
+ "tooltip" : {
235
+ "installed_from_epic" : " Installed from Epic Store" ,
236
+ "installed_from_gog" : " Installed from GOG Store" ,
237
+ "installed_from_hyperplay" : " Installed from HyperPlay Store" ,
238
+ "will_install_from_epic" : " Will install from Epic Store" ,
239
+ "will_install_from_gog" : " Will install from GOG Store" ,
240
+ "will_install_from_hyperplay" : " Will install from HyperPlay Store"
232
241
}
233
242
}
Original file line number Diff line number Diff line change @@ -384,10 +384,42 @@ const GameCard = ({
384
384
alwaysShowInColor = { allTilesInColor }
385
385
store = { runner }
386
386
i18n = { {
387
+ addedToLibrary : t (
388
+ 'button.remove_from_library' ,
389
+ 'Remove from library'
390
+ ) ,
391
+ notAddedToLibrary : t ( 'button.add_to_library' , 'Add to library' ) ,
387
392
logoTextTooltip : {
388
- hyperplay : { installed : 'HyperPlay' , notInstalled : 'HyperPlay' } ,
389
- epic : { installed : 'Epic' , notInstalled : 'Epic' } ,
390
- gog : { installed : 'GOG' , notInstalled : 'GOG' }
393
+ hyperplay : {
394
+ installed : t (
395
+ 'tooltip.installed_from_hyperplay' ,
396
+ 'Installed from HyperPlay Store'
397
+ ) ,
398
+ notInstalled : t (
399
+ 'tooltip.will_install_from_hyperplay' ,
400
+ 'Will install from HyperPlay Store'
401
+ )
402
+ } ,
403
+ epic : {
404
+ installed : t (
405
+ 'tooltip.installed_from_epic' ,
406
+ 'Installed from Epic Store'
407
+ ) ,
408
+ notInstalled : t (
409
+ 'tooltip.will_install_from_epic' ,
410
+ 'Will install from Epic Store'
411
+ )
412
+ } ,
413
+ gog : {
414
+ installed : t (
415
+ 'tooltip.installed_from_gog' ,
416
+ 'Installed from GOG Store'
417
+ ) ,
418
+ notInstalled : t (
419
+ 'tooltip.will_install_from_gog' ,
420
+ 'Will install from GOG Store'
421
+ )
422
+ }
391
423
}
392
424
} }
393
425
/>
You can’t perform that action at this time.
0 commit comments