--- example/solr-ja/collection1/conf/schema.xml.orig	2013-07-11 00:11:38.000000000 +0900
+++ example/solr-ja/collection1/conf/schema.xml	2013-08-04 13:58:49.000000000 +0900
@@ -151,7 +151,7 @@
 
    <!-- catchall field, containing all other searchable text fields (implemented
         via copyField further on in this schema  -->
-   <field name="text" type="text_general" indexed="true" stored="false" multiValued="true"/>
+   <field name="text" type="text_ja" indexed="true" stored="false" multiValued="true"/>
 
    <!-- catchall text field that indexes tokens both normally and in reverse for efficient
         leading wildcard queries. -->
--- example/solr-ja/collection1/conf/solrconfig.xml.orig	2013-07-19 02:46:04.000000000 +0900
+++ example/solr-ja/collection1/conf/solrconfig.xml	2013-08-04 13:58:49.000000000 +0900
@@ -902,6 +902,7 @@
        <!-- VelocityResponseWriter settings -->
        <str name="wt">velocity</str>
        <str name="v.template">browse</str>
+       <str name="v.properties">velocity.properties</str>
        <str name="v.layout">layout</str>
        <str name="title">Solritas</str>
 
--- example/solr-ja/collection1/conf/velocity/head.vm.orig	2013-07-11 00:11:38.000000000 +0900
+++ example/solr-ja/collection1/conf/velocity/head.vm	2013-08-04 13:58:49.000000000 +0900
@@ -18,7 +18,7 @@
            extraParams:{
              'terms.prefix': function() { return $("\#q").val();},
              'terms.sort': 'count',
-             'terms.fl': 'name',
+             'terms.fl': 'text',
              'wt': 'velocity',
              'v.template': 'suggest'
            }
--- example/solr-ja/collection1/conf/velocity/suggest.vm.orig	2013-07-11 00:11:38.000000000 +0900
+++ example/solr-ja/collection1/conf/velocity/suggest.vm	2013-08-04 13:58:49.000000000 +0900
@@ -3,6 +3,6 @@
  *  as you type in the search form
  *#
 
-#foreach($t in $response.response.terms.name)
+#foreach($t in $response.response.terms.text)
   $t.key
 #end