Skip to content

Commit

Permalink
update wording in quick start panels
Browse files Browse the repository at this point in the history
  • Loading branch information
rottencandy committed Sep 3, 2020
1 parent ad57d3f commit 90e5522
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
@@ -1,4 +1,5 @@
import * as React from 'react';
import { pluralize } from '@patternfly/react-core';
import { SyncMarkdownView } from '@console/internal/components/markdown-view';
import { QuickStartTask, QuickStartTaskStatus } from '../utils/quick-start-types';
import TaskHeader from './QuickStartTaskHeader';
Expand All @@ -19,7 +20,7 @@ const QuickStartIntroduction: React.FC<QuickStartIntroductionProps> = ({
<>
<SyncMarkdownView content={introduction} />
<p style={{ marginBottom: 'var(--pf-global--spacer--md)' }}>
In this tour, you will complete {tasks.length} tasks:
In this quick start, you will complete {pluralize(tasks.length, 'task')}:
</p>
{tasks.map((task, index) => (
<TaskHeader
Expand Down
Expand Up @@ -14,7 +14,7 @@ export const explorePipelinesQuickStart = {
description:
'Install the OpenShift® Pipelines Operator to start building pipelines using Tekton',
prerequisites: 'User must have access to install operators to run this Quick Start.',
introduction: `### In this tour, you will complete 3 tasks:
introduction: `### In this quick start, you will complete 3 tasks:
1. Create an application from git.
2. Explore your application in topology.
3. Explore your pipeline run.`,
Expand Down
Expand Up @@ -18,7 +18,7 @@ export const exploreServerlessQuickStart = {
Serverless reduces the needs to manage infrastructure or perform back-end development. Application scaling is automated. Choosing Serverless means simplicity, portability, and efficiency.
Adding Serverless to your OpenShift cluster is quick and easy. This guided tour walks you through the process in just a few minutes.`,
Adding Serverless to your OpenShift cluster is quick and easy. This quick start walks you through the process in just a few minutes.`,
tasks: [
{
title: `Install Serverless Operator`,
Expand Down Expand Up @@ -71,7 +71,7 @@ Adding Serverless to your OpenShift cluster is quick and easy. This guided tour
},
],
conclusion:
'Your Serverless Operator is ready! If you want to learn how to deploy a serverless application, take the Serverless Application tour.',
'Your Serverless Operator is ready! If you want to learn how to deploy a serverless application, take the Serverless Application quick start.',
nextQuickStart: 'serverless-application',
},
};
Expand Up @@ -14,7 +14,7 @@ export const installAssociatePipelineQuickStart = {
description:
'Install an application, associate a pipeline, start the pipeline and explore the pipeline run',
prerequisites: 'OpenShift® Pipelines Operator must be installed',
introduction: `### In this tour you will complete 3 tasks:
introduction: `### In this quick start you will complete 3 tasks:
1. Create an application from Git.
2. Explore your application
3. Explore your Pipeline Run`,
Expand Down
Expand Up @@ -24,9 +24,9 @@ Serverless gives you access to a rich ecosystem of built-in and third-party even
**Iteration**
Deploying new versions of apps is simple with Serverless. Perform canary, A/B, and blue-green testing with confidence. By using app revisions, you can roll things back, or split traffic between revisions, as needed.
This guided tour shows you how to create a Serverless app that realizes these benefits.
This quick start shows you how to create a Serverless app that realizes these benefits.
In this tour, you perform five tasks:
In this quick start, you perform five tasks:
1. Create a Serverless application
2. Demo scalability
3. Wire an event source to your Knative Service
Expand Down

0 comments on commit 90e5522

Please sign in to comment.