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

Bug 1875397: Update wording in quick start panel #6519

Merged
merged 1 commit into from Sep 3, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -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