Skip to content

Commit c26ec78

Browse files
ElderMattsvcAPLBot
andauthored
fix: remove mentions of apl (#680)
* fix: remove mentions of apl * fix: application platform to app platform * fix: linter --------- Co-authored-by: svcAPLBot <[email protected]>
1 parent 3fc43eb commit c26ec78

File tree

6 files changed

+25
-27
lines changed

6 files changed

+25
-27
lines changed

public/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<link rel="stylesheet" type="text/css" href="%PUBLIC_URL%/global.css" />
1313
<meta name="msapplication-TileColor" content="#2d89ef" />
1414
<meta name="theme-color" content="#2d89ef" />
15-
<meta name="description" content="APL platform helps you deploy apps in Linode" />
16-
<meta name="application-name" content="APL platform" />
15+
<meta name="description" content="App platform helps you deploy apps in Linode" />
16+
<meta name="application-name" content="App platform" />
1717
<!--
1818
manifest.json provides metadata used when your web app is installed on a
1919
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
@@ -28,7 +28,7 @@
2828
work correctly both with client-side routing and a non-root public URL.
2929
Learn how to configure a non-root public URL by running `npm run build`.
3030
-->
31-
<title>Akamai APL Platform</title>
31+
<title>Akamai App Platform</title>
3232
</head>
3333
<body>
3434
<noscript>You need to enable JavaScript to run this app.</noscript>

public/site.webmanifest

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"name": "Linode APL",
3-
"short_name": "Linode APL",
4-
"icons": [
5-
{
6-
"src": "/android-chrome-192x192.png",
7-
"sizes": "192x192",
8-
"type": "image/png"
9-
},
10-
{
11-
"src": "/android-chrome-512x512.png",
12-
"sizes": "512x512",
13-
"type": "image/png"
14-
}
15-
],
16-
"theme_color": "#ffffff",
17-
"background_color": "#ffffff",
18-
"display": "standalone"
2+
"name": "Linode App Platform",
3+
"short_name": "Linode App Platform",
4+
"icons": [
5+
{
6+
"src": "/android-chrome-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png"
9+
},
10+
{
11+
"src": "/android-chrome-512x512.png",
12+
"sizes": "512x512",
13+
"type": "image/png"
14+
}
15+
],
16+
"theme_color": "#ffffff",
17+
"background_color": "#ffffff",
18+
"display": "standalone"
1919
}

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function App() {
8585
<NotistackProvider>
8686
<SnackbarUtilsConfigurator />
8787
<CssBaseline />
88-
<Helmet titleTemplate='%s | APL' defaultTitle='Akamai APL Platform' />
88+
<Helmet titleTemplate='%s | App Platform' defaultTitle='Akamai App Platform' />
8989
<Switch>
9090
<Route path='/' component={Dashboard} exact />
9191
<PrivateRoute

src/components/LoadingScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ type Props = {
2626
loadingText?: string
2727
}
2828

29-
export default function LoadingScreen({ loadingText = 'Loading APL console' }: Props) {
29+
export default function LoadingScreen({ loadingText = 'Loading console' }: Props) {
3030
return (
3131
<RootStyle>
3232
<motion.div

src/components/ObjWizardModal.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,7 @@ export default function StyledModal() {
118118
{!isEmpty(wizardError) && (
119119
<InformationBanner message={`The Wizard encountered a problem: ${wizardError} Please retry!`} />
120120
)}
121-
<Typography variant='body1'>
122-
The Application Platform needs an API Token to create the Object Storage.
123-
</Typography>
121+
<Typography variant='body1'>The App Platform needs an API Token to create the Object Storage.</Typography>
124122
<TextField
125123
label='API Token'
126124
fullWidth

src/components/UpgradeVersion.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ export default function UpgradesCard({ version }: Props): React.ReactElement | n
221221
setHoveredUpdate(null)
222222
}}
223223
title='Incompatible kubernetes version'
224-
description={`The kubernetes version of your cluster is not supported with this version of Application Platform. Please upgrade your cluster kubernetes version to ${hoveredUpdate?.supported_k8s_versions?.join(
224+
description={`The kubernetes version of your cluster is not supported with this version of App Platform. Please upgrade your cluster kubernetes version to ${hoveredUpdate?.supported_k8s_versions?.join(
225225
', ',
226226
)}`}
227227
/>
@@ -262,7 +262,7 @@ export default function UpgradesCard({ version }: Props): React.ReactElement | n
262262
children={
263263
<>
264264
<Typography sx={{ marginRight: '2rem' }}>
265-
You are about to upgrade Application Platform from {version} to {upgradeVersion}.
265+
You are about to upgrade App Platform from {version} to {upgradeVersion}.
266266
</Typography>
267267
<Typography sx={{ marginRight: '2rem' }}>This action cannot be undone.</Typography>
268268
<Typography sx={{ mt: '1rem', mr: '2rem' }}>Please confirm to proceed or cancel to go back.</Typography>

0 commit comments

Comments
 (0)