Wrong labeling in yeoman generator
Project: http://git-wip-us.apache.org/repos/asf/polygene-java/repo Commit: http://git-wip-us.apache.org/repos/asf/polygene-java/commit/96d03dfe Tree: http://git-wip-us.apache.org/repos/asf/polygene-java/tree/96d03dfe Diff: http://git-wip-us.apache.org/repos/asf/polygene-java/diff/96d03dfe Branch: refs/heads/develop Commit: 96d03dfe85a03763b972481a508c94ee3d5edb63 Parents: 5cf3392 Author: niclas <[email protected]> Authored: Sun Feb 12 16:40:43 2017 +0800 Committer: niclas <[email protected]> Committed: Sun Feb 12 16:40:43 2017 +0800 ---------------------------------------------------------------------- tools/generator-polygene/app/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/polygene-java/blob/96d03dfe/tools/generator-polygene/app/index.js ---------------------------------------------------------------------- diff --git a/tools/generator-polygene/app/index.js b/tools/generator-polygene/app/index.js index 73f44e6..4d57562 100644 --- a/tools/generator-polygene/app/index.js +++ b/tools/generator-polygene/app/index.js @@ -89,7 +89,7 @@ module.exports = generators.Base.extend( 'Solr', 'SQL' ], - message: 'Which caching system do you want to use?' + message: 'Which indexing system do you want to use?' }, { type: 'list', @@ -99,7 +99,7 @@ module.exports = generators.Base.extend( 'memcache', 'ehcache' ], - message: 'Which serialization system do you want to use?' + message: 'Which caching system do you want to use?' }, { type: 'list', @@ -109,7 +109,7 @@ module.exports = generators.Base.extend( 'Stax', 'OrgJson' ], - message: 'Which indexing system do you want to use?' + message: 'Which serialization system do you want to use?' }, { type: 'checkbox', @@ -157,7 +157,7 @@ module.exports = generators.Base.extend( copyEntityStore( this, polygene.entitystore ); - copyPolygeneBootstrap( this, "infrastructure", "RdfIndexingModule", hasIndexing( 'Rdf' ) ); + copyPolygeneBootstrap( this, "infrastructure", "RDFIndexingModule", hasIndexing( 'Rdf' ) ); copyPolygeneBootstrap( this, "infrastructure", "ElasticSearchIndexingModule", hasIndexing( 'Elasticsearch' ) ); copyPolygeneBootstrap( this, "infrastructure", "SolrIndexingModule", hasIndexing( 'Solr' ) ); copyPolygeneBootstrap( this, "infrastructure", "SqlIndexingModule", hasIndexing( 'Sql' ) );
