Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

docs(toh, guide, cookbook): add periods to banners #3350

Merged
merged 1 commit into from
Mar 6, 2017
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion public/docs/ts/latest/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"icon": "query-builder",
"title": "Quickstart",
"subtitle": "TypeScript",
"banner": "A quick look at Angular basics"
"banner": "A quick look at Angular basics."
},

"cli-quickstart": {
Expand Down
18 changes: 9 additions & 9 deletions public/docs/ts/latest/cookbook/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"index": {
"title": "Cookbook",
"navTitle": "Overview",
"intro": "A collection of recipes for common Angular application scenarios"
"intro": "A collection of recipes for common Angular application scenarios."
},

"aot-compiler": {
"title": "Ahead-of-Time Compilation",
"intro": "Learn how to use Ahead-of-time compilation"
"intro": "Learn how to use Ahead-of-time compilation."
},

"ajs-quick-reference": {
Expand All @@ -18,7 +18,7 @@

"component-communication": {
"title": "Component Interaction",
"intro": "Share information between different directives and components"
"intro": "Share information between different directives and components."
},

"component-relative-paths": {
Expand All @@ -28,22 +28,22 @@

"dependency-injection": {
"title": "Dependency Injection",
"intro": "Techniques for Dependency Injection"
"intro": "Techniques for Dependency Injection."
},

"dynamic-component-loader": {
"title": "Dynamic Component Loader",
"intro": "Load components dynamically"
"intro": "Load components dynamically."
},

"dynamic-form": {
"title": "Dynamic Forms",
"intro": "Render dynamic forms with FormGroup"
"intro": "Render dynamic forms with FormGroup."
},

"form-validation": {
"title": "Form Validation",
"intro": "Validate user's form entries"
"intro": "Validate user's form entries."
},

"i18n": {
Expand All @@ -63,11 +63,11 @@

"ts-to-js": {
"title": "TypeScript to JavaScript",
"intro": "Convert Angular TypeScript examples into ES6 and ES5 JavaScript"
"intro": "Convert Angular TypeScript examples into ES6 and ES5 JavaScript."
},

"visual-studio-2015": {
"title": "Visual Studio 2015 QuickStart",
"intro": "Use Visual Studio 2015 with the QuickStart files"
"intro": "Use Visual Studio 2015 with the QuickStart files."
}
}
20 changes: 10 additions & 10 deletions public/docs/ts/latest/guide/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
"index": {
"title": "Documentation Overview",
"navTitle": "Overview",
"intro": "How to read and use this documentation",
"intro": "How to read and use this documentation.",
"nextable": true,
"basics": true
},

"setup": {
"title": "Setup for local development",
"navTitle": "Setup",
"intro": "Install the Angular QuickStart seed for faster, more efficient development on your machine",
"intro": "Install the Angular QuickStart seed for faster, more efficient development on your machine.",
"nextable": true,
"hideNextPage": true,
"basics": true
Expand All @@ -19,7 +19,7 @@
"learning-angular": {
"title": "Learning Angular",
"navTitle": "Learning Angular",
"intro": "A suggested path through the documentation for Angular newcomers",
"intro": "A suggested path through the documentation for Angular newcomers.",
"nextable": true,
"hideNextPage": true,
"basics": true
Expand All @@ -28,7 +28,7 @@
"architecture": {
"title": "Architecture Overview",
"navTitle": "Architecture",
"intro": "The basic building blocks of Angular applications",
"intro": "The basic building blocks of Angular applications.",
"nextable": true,
"basics": true
},
Expand Down Expand Up @@ -91,7 +91,7 @@

"glossary": {
"title": "Glossary",
"intro": "Brief definitions of the most important words in the Angular vocabulary",
"intro": "Brief definitions of the most important words in the Angular vocabulary.",
"basics": true
},

Expand Down Expand Up @@ -154,7 +154,7 @@

"npm-packages": {
"title": "Npm Packages",
"intro": "Recommended npm packages, and how to specify package dependencies"
"intro": "Recommended npm packages, and how to specify package dependencies."
},

"pipes": {
Expand All @@ -169,12 +169,12 @@

"security": {
"title": "Security",
"intro": "Developing for content security in Angular applications"
"intro": "Developing for content security in Angular applications."
},

"setup-systemjs-anatomy": {
"title": "Setup Anatomy",
"intro": "Inside the local development environment for SystemJS"
"intro": "Inside the local development environment for SystemJS."
},

"structural-directives": {
Expand All @@ -189,7 +189,7 @@

"typescript-configuration": {
"title": "TypeScript Configuration",
"intro": "TypeScript configuration for Angular developers"
"intro": "TypeScript configuration for Angular developers."
},

"upgrade": {
Expand All @@ -199,6 +199,6 @@

"webpack": {
"title": "Webpack: an introduction",
"intro": "Create Angular applications with a Webpack based tooling"
"intro": "Create Angular applications with a Webpack based tooling."
}
}
12 changes: 6 additions & 6 deletions public/docs/ts/latest/tutorial/_data.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,33 @@
},
"toh-pt1": {
"title": "The Hero Editor",
"intro": "We build a simple hero editor",
"intro": "We build a simple hero editor.",
"nextable": true
},
"toh-pt2": {
"title": "Master/Detail",
"intro": "We build a master/detail page with a list of heroes",
"intro": "We build a master/detail page with a list of heroes.",
"nextable": true
},
"toh-pt3": {
"title": "Multiple Components",
"intro": "We refactor the master/detail view into separate components",
"intro": "We refactor the master/detail view into separate components.",
"nextable": true
},
"toh-pt4": {
"title": "Services",
"intro": "We create a reusable service to manage our hero data calls",
"intro": "We create a reusable service to manage our hero data calls.",
"nextable": true
},
"toh-pt5": {
"title": "Routing",
"intro": "We add the Angular Router and learn to navigate among the views",
"intro": "We add the Angular Router and learn to navigate among the views.",
"nextable": true
},
"toh-pt6": {
"title": "HTTP",
"subtitle": "Getting and saving data",
"intro": "We convert our service and components to use Angular's HTTP service",
"intro": "We convert our service and components to use Angular's HTTP service.",
"nextable": true
}
}