55 */
66import { defineMessages } from 'react-intl' ;
77
8+ export const scope = 'boilerplate.containers.FeaturePage' ;
9+
810export default defineMessages ( {
911 header : {
10- id : 'boilerplate.containers.FeaturePage. header' ,
12+ id : ` ${ scope } . header` ,
1113 defaultMessage : 'Features' ,
1214 } ,
1315 scaffoldingHeader : {
14- id : 'boilerplate.containers.FeaturePage. scaffolding.header' ,
16+ id : ` ${ scope } . scaffolding.header` ,
1517 defaultMessage : 'Quick scaffolding' ,
1618 } ,
1719 scaffoldingMessage : {
18- id : 'boilerplate.containers.FeaturePage. scaffolding.message' ,
20+ id : ` ${ scope } . scaffolding.message` ,
1921 defaultMessage : `Automate the creation of components, containers, routes, selectors
2022 and sagas - and their tests - right from the CLI!` ,
2123 } ,
2224 feedbackHeader : {
23- id : 'boilerplate.containers.FeaturePage. feedback.header' ,
25+ id : ` ${ scope } . feedback.header` ,
2426 defaultMessage : 'Instant feedback' ,
2527 } ,
2628 feedbackMessage : {
27- id : 'boilerplate.containers.FeaturePage. feedback.message' ,
29+ id : ` ${ scope } . feedback.message` ,
2830 defaultMessage : `
2931 Enjoy the best DX and code your app at the speed of thought! Your
3032 saved changes to the CSS and JS are reflected instantaneously
@@ -33,39 +35,39 @@ export default defineMessages({
3335 ` ,
3436 } ,
3537 stateManagementHeader : {
36- id : 'boilerplate.containers.FeaturePage. state_management.header' ,
38+ id : ` ${ scope } . state_management.header` ,
3739 defaultMessage : 'Predictable state management' ,
3840 } ,
3941 stateManagementMessages : {
40- id : 'boilerplate.containers.FeaturePage. state_management.message' ,
42+ id : ` ${ scope } . state_management.message` ,
4143 defaultMessage : `
4244 Unidirectional data flow allows for change logging and time travel
4345 debugging.
4446 ` ,
4547 } ,
4648 javascriptHeader : {
47- id : 'boilerplate.containers.FeaturePage. javascript.header' ,
49+ id : ` ${ scope } . javascript.header` ,
4850 defaultMessage : 'Next generation JavaScript' ,
4951 } ,
5052 javascriptMessage : {
51- id : 'boilerplate.containers.FeaturePage. javascript.message' ,
53+ id : ` ${ scope } . javascript.message` ,
5254 defaultMessage : `Use template strings, object destructuring, arrow functions, JSX
5355 syntax and more, today.` ,
5456 } ,
5557 cssHeader : {
56- id : 'boilerplate.containers.FeaturePage. css.header' ,
58+ id : ` ${ scope } . css.header` ,
5759 defaultMessage : 'Features' ,
5860 } ,
5961 cssMessage : {
60- id : 'boilerplate.containers.FeaturePage. css.message' ,
62+ id : ` ${ scope } . css.message` ,
6163 defaultMessage : 'Next generation CSS' ,
6264 } ,
6365 routingHeader : {
64- id : 'boilerplate.containers.FeaturePage. routing.header' ,
66+ id : ` ${ scope } . routing.header` ,
6567 defaultMessage : 'Industry-standard routing' ,
6668 } ,
6769 routingMessage : {
68- id : 'boilerplate.containers.FeaturePage. routing.message' ,
70+ id : ` ${ scope } . routing.message` ,
6971 defaultMessage : `
7072 Write composable CSS that's co-located with your components for
7173 complete modularity. Unique generated class names keep the
@@ -74,23 +76,23 @@ export default defineMessages({
7476 ` ,
7577 } ,
7678 networkHeader : {
77- id : 'boilerplate.containers.FeaturePage. network.header' ,
79+ id : ` ${ scope } . network.header` ,
7880 defaultMessage : 'Offline-first' ,
7981 } ,
8082 networkMessage : {
81- id : 'boilerplate.containers.FeaturePage. network.message' ,
83+ id : ` ${ scope } . network.message` ,
8284 defaultMessage : `
8385 The next frontier in performant web apps: availability without a
8486 network connection from the instant your users load the app.
8587 ` ,
8688 } ,
8789 intlHeader : {
88- id : 'boilerplate.containers.FeaturePage. internationalization.header' ,
90+ id : ` ${ scope } . internationalization.header` ,
8991 defaultMessage :
9092 'Complete i18n Standard Internationalization & Pluralization' ,
9193 } ,
9294 intlMessage : {
93- id : 'boilerplate.containers.FeaturePage. internationalization.message' ,
95+ id : ` ${ scope } . internationalization.message` ,
9496 defaultMessage :
9597 'Scalable apps need to support multiple languages, easily add and support multiple languages with `react-intl`.' ,
9698 } ,
0 commit comments