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

(feat) update on hover state the the store icons on library #1242

Merged
Merged
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
9 changes: 9 additions & 0 deletions public/locales/en/gamepage.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"yesCancel": "Yes, cancel"
},
"button": {
"add_to_library": "Add to library",
"cancel": "Pause/Cancel",
"continue": "Continue Download",
"details": "Details",
Expand Down Expand Up @@ -229,5 +230,13 @@
"settings": "Settings",
"store": "Store Page",
"verify": "Verify and Repair"
},
"tooltip": {
"installed_from_epic": "Installed from Epic Store",
"installed_from_gog": "Installed from GOG Store",
"installed_from_hyperplay": "Installed from HyperPlay Store",
"will_install_from_epic": "Will install from Epic Store",
"will_install_from_gog": "Will install from GOG Store",
"will_install_from_hyperplay": "Will install from HyperPlay Store"
}
}
38 changes: 35 additions & 3 deletions src/frontend/screens/Library/components/GameCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,42 @@ const GameCard = ({
alwaysShowInColor={allTilesInColor}
store={runner}
i18n={{
addedToLibrary: t(
'button.remove_from_library',
'Remove from library'
),
notAddedToLibrary: t('button.add_to_library', 'Add to library'),
logoTextTooltip: {
hyperplay: { installed: 'HyperPlay', notInstalled: 'HyperPlay' },
epic: { installed: 'Epic', notInstalled: 'Epic' },
gog: { installed: 'GOG', notInstalled: 'GOG' }
hyperplay: {
installed: t(
'tooltip.installed_from_hyperplay',
'Installed from HyperPlay Store'
),
notInstalled: t(
'tooltip.will_install_from_hyperplay',
'Will install from HyperPlay Store'
)
},
epic: {
installed: t(
'tooltip.installed_from_epic',
'Installed from Epic Store'
),
notInstalled: t(
'tooltip.will_install_from_epic',
'Will install from Epic Store'
)
},
gog: {
installed: t(
'tooltip.installed_from_gog',
'Installed from GOG Store'
),
notInstalled: t(
'tooltip.will_install_from_gog',
'Will install from GOG Store'
)
}
}
}}
/>
Expand Down
Loading