File tree 5 files changed +12
-9
lines changed
5 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1038
1038
"Settings" : " Settings" ,
1039
1039
"sidebar" : {
1040
1040
"achievements" : " Achievements" ,
1041
+ "docs" : " Docs" ,
1041
1042
"downloadManager" : " Download Manager" ,
1042
1043
"library" : " Library" ,
1044
+ "quests" : " Quests" ,
1045
+ "settings" : " Settings" ,
1043
1046
"store" : " Store"
1044
1047
},
1045
1048
"sideload" : {
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ function App() {
98
98
/>
99
99
< Route path = "epicstore" element = { < WebView key = "epicstore" /> } />
100
100
< Route path = "gogstore" element = { < WebView key = "gogstore" /> } />
101
- < Route path = "wiki " element = { < WebView key = "wiki " /> } />
101
+ < Route path = "docs " element = { < WebView key = "docs " /> } />
102
102
< Route path = "metamaskHome" element = { < MetaMaskHome /> } />
103
103
< Route
104
104
path = "metamaskSnaps"
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ export default observer(function SidebarLinks() {
141
141
) }
142
142
{ SHOW_QUESTS ? (
143
143
< div className = "sidebarLinkGradientWrapper" >
144
- < Tooltip { ...tooltipProps } label = " Quests" >
144
+ < Tooltip { ...tooltipProps } label = { t ( 'sidebar.quests' , ' Quests' ) } >
145
145
< NavLink
146
146
data-testid = "quests"
147
147
className = { ( { isActive } ) =>
@@ -175,7 +175,7 @@ export default observer(function SidebarLinks() {
175
175
</ Tooltip >
176
176
</ div >
177
177
< div className = "sidebarLinkGradientWrapper" >
178
- < Tooltip { ...tooltipProps } label = " Settings" >
178
+ < Tooltip { ...tooltipProps } label = { t ( 'sidebar.settings' , ' Settings' ) } >
179
179
< NavLink
180
180
data-testid = "settings"
181
181
className = { ( { isActive } ) =>
@@ -220,13 +220,13 @@ export default observer(function SidebarLinks() {
220
220
</ Tooltip >
221
221
</ div >
222
222
< div className = "sidebarLinkGradientWrapper" >
223
- < Tooltip { ...tooltipProps } label = "Wiki" >
223
+ < Tooltip { ...tooltipProps } label = { t ( 'sidebar.docs' , 'Docs' ) } >
224
224
< NavLink
225
- data-testid = "wiki "
225
+ data-testid = "Docs "
226
226
className = { ( { isActive } ) =>
227
227
classNames ( 'Sidebar__item' , { active : isActive } )
228
228
}
229
- to = { { pathname : '/wiki ' } }
229
+ to = { { pathname : '/docs ' } }
230
230
>
231
231
< Images . Page fill = { sidebarSvgUnselectedFill } />
232
232
</ NavLink >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ export const HYPERPLAY_STORE_URL = 'https://store.hyperplay.xyz?isLauncher=true'
3
3
export const G7_PORTAL = 'https://app.game7.io/quests/hyperplay?layout=navless'
4
4
export const EPIC_STORE_URL = 'https://www.epicgames.com/store'
5
5
export const GOG_STORE_URL = `https://gog.com`
6
- export const WIKI_URL = 'https://docs.hyperplay.xyz/'
6
+ export const DOCS_URL = 'https://docs.hyperplay.xyz/'
7
7
export const GOG_LOGIN_URL =
8
8
'https://auth.gog.com/auth?client_id=46899977096215655&redirect_uri=https%3A%2F%2Fembed.gog.com%2Fon_login_success%3Forigin%3Dclient&response_type=code&layout=galaxy'
9
9
export const DEFAULT_BROWSER_PROFILE_IMPORT_COLOR = '202124'
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import {
25
25
GOG_LOGIN_URL ,
26
26
GOG_STORE_URL ,
27
27
HYPERPLAY_STORE_URL ,
28
- WIKI_URL
28
+ DOCS_URL
29
29
} from '../../constants'
30
30
import { METAMASK_SNAPS_URL } from 'common/constants'
31
31
import storeAuthState from 'frontend/state/storeAuthState'
@@ -79,7 +79,7 @@ function WebView({
79
79
'/hyperplaystore' : hyperplayStore ,
80
80
'/epicstore' : epicStore ,
81
81
'/gogstore' : GOG_STORE_URL ,
82
- '/wiki ' : WIKI_URL ,
82
+ '/docs ' : DOCS_URL ,
83
83
'/loginEpic' : EPIC_LOGIN_URL ,
84
84
'/loginGOG' : GOG_LOGIN_URL ,
85
85
'/loginweb/legendary' : EPIC_LOGIN_URL ,
You can’t perform that action at this time.
0 commit comments