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

Add tiers and subscription levels to capitalization rules #7323

Merged
merged 6 commits into from
Oct 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions src-docs/src/views/guidelines/writing_guidelines.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,14 @@ export const WritingGuidelines = () => {
<GuideRuleExample
type="do"
text="Use sentence case in buttons, menus, titles, and tabs."
minHeight={200}
minHeight={250}
>
<EuiButton fill>Check for new data</EuiButton>
</GuideRuleExample>
<GuideRuleExample
type="do"
text="Use sentence case for modal and page elements."
minHeight={200}
minHeight={250}
>
<EuiPanel style={{ transform: 'scale(.75)' }}>
<EuiTitle size="m">
Expand Down Expand Up @@ -205,15 +205,25 @@ export const WritingGuidelines = () => {
</GuideRuleExample>
</GuideRule>

<GuideRule heading="Title case for products, solutions, and apps">
<GuideRule
heading="Title case for proper nouns"
description="Proper nouns include product names, solutions, apps, feature tiers, and subscription levels. "
>
<GuideRuleExample
type="do"
text="Product and solution names are always capitalized."
text="Product and solution names are always capitalized. Same goes for feature tiers and subscription levels."
minHeight={200}
>
<EuiTitle size="xs">
<span>Elastic APM</span>
</EuiTitle>
<EuiText size="xs">
<ul>
<li>Welcome to Elastic Observability</li>
<li>Elastic APM</li>
<li>You have chosen Security Analytics Essentials.</li>
<li>
This feature is available for Gold subscriptions and higher.
</li>
</ul>
</EuiText>
</GuideRuleExample>
<GuideRuleExample
type="do"
Expand Down
Loading