Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Etaash-mathamsetty committed Sep 29, 2024
1 parent e6c3c35 commit ee57114
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -765,7 +765,7 @@
},
"details": "Details",
"resetHeroic": {
"help": "This will remove all Settings and Caching but won't remove your Installed games or your Epic credentials. Portable versions (AppImage, WinPortable, ...) of heroic needs to be restarted manually afterwards."
"help": "This will remove all Settings and Caching. Portable versions (AppImage, WinPortable, ...) of heroic needs to be restarted manually afterwards."
},
"title": {
"clearCache": "Clear Cache",
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/screens/Settings/components/ResetHeroic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const ResetHeroic = () => {
<InfoBox text={t('settings.advanced.details', 'Details')}>
{t(
'settings.advanced.resetHeroic.help',
"This will remove all Settings and Caching. Portable versions (AppImage, WinPortable, ...) of heroic needs to be restarted manually afterwards."
'This will remove all Settings and Caching. Portable versions (AppImage, WinPortable, ...) of heroic needs to be restarted manually afterwards.'
)}
</InfoBox>
<button className="button is-footer is-danger" onClick={showResetDialog}>
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/state/GlobalState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ class GlobalState extends PureComponent<Props> {
title: t('box.reset-heroic.question.title', 'Reset Heroic'),
message: t(
'box.reset-heroic.question.message',
"Are you sure you want to reset Heroic? This will remove all Settings and Caching but won't remove your Installed games or your Epic credentials. Portable versions (AppImage, WinPortable, ...) of heroic needs to be restarted manually afterwards."
'Are you sure you want to reset Heroic? This will remove all Settings and Caching. Portable versions (AppImage, WinPortable, ...) of heroic needs to be restarted manually afterwards.'
),
buttons: [
{ text: t('box.yes'), onClick: window.api.resetHeroic },
Expand Down

0 comments on commit ee57114

Please sign in to comment.