<?xml version="1.0" encoding="Shift_JIS" ?>

<document>

 <properties>
  <title>Velocity Getting Started</title>
  <author email="jvanzyl@locus.apache.org">Velocity Documentation Team</author>
  <translator>熊坂祐二</translator>
  <translator>羽生田 恒永</translator>
  <translator>吉岡朋子</translator>
  <translator>高橋達男</translator>
  <original>getting-started</original>
 </properties>

<body>

<section name="Getting Started" alias="さぁはじめよう">

<primary>
<p>
  It's easy to get started with Velocity.   The best places to start are

  <ul>
   <li>
      The <a href="user-guide.html">User's Guide</a>, which provides a good
      overview of what Velocity templates are all about.
   </li>
   <li>
     The <a href="developer-guide.html">Developer's Guide</a>, which provides
     a good reference and discussion of incorporating Velocity into your Java
     programs and servlets.
   </li>
   <li>
     The <a href="vtl-reference-guide.html">VTL Reference Guide</a>, which is a reference
     guide for VTL, the Velocity Template Language.
   </li>
   <li>
     The <a href="design.html">Design</a> document, which provides a high-level overview
     of the how Velocity works, and why it's important.
    </li>
   </ul>

   And of course, the best place to start is with the examples provided with the distribution,
   and the source code itself, which is included.
</p>
</primary>
<p>
  Velocity を使い始めるのは簡単です。まずは以下のものから始めましょう。

  <ul>
   <li>
      <a href="user-guide.html">ユーザガイド</a>には、
      Velocity と、Velocity テンプレートの概要について分かりやすく記されています。
   </li>
   <li>
     <a href="developer-guide.html">開発者ガイド</a>には、Java プログラムや
     Servlet への Velocity の組み込みに関して、優れたリファレンスや詳しい説明があります。
   </li>
   <li>
     <a href="vtl-reference-guide.html">VTL リファレンス</a>は、
     VTL (Velocity Template Language) のリファレンスガイドです。
   </li>
   <li>
     <a href="design.html">設計</a> ドキュメントには、
     Velocity がどのように動作するか、また Velocity がなぜ重要かについての概要が記されています。
    </li>
   </ul>
  もちろん、サンプルも見ておきましょう。
  サンプルはソースコードも含めて配布ファイルで提供されています。
</p>


<primary>
<p>
    Instructions for downloading and installing Velocity can be found on the
    <a href="install.html">Install</a> document.
</p>
</primary>
<p>
    Velocity のダウンロードとインストールの説明は、
    <a href="install.html">インストール</a> ドキュメントにあります。
</p>
</section>

<section name="" alias="API ドキュメント">

<primary>
<p>
Our API documentation is available <a href="api/index.html">online</a>, 
as part of the distribution package, and of course, you can generate it
yourself from the included sources.
</p>
</primary>
<p>
API ドキュメントは、
<a href="api/index.html">オンライン</a>でも見られますし、
配布ファイルにも含まれていますが、
もちろんソースコードから生成することもできます。
</p>

<primary>
<p>
    If you would like to create a full set
    of detailed API documentation for Velocity, go to the
    <code>build</code> directory and run:
</p>
</primary>
<p>
Velocity の詳細な API ドキュメントをフルセットで生成したい場合には、
<code>build</code> ディレクトリに移動して、以下のコマンドを実行してください。
</p>
<source><![CDATA[
ant javadocs
]]></source>

<primary>
<p>
The docs will be found in the <code>/docs/apidocs/</code> directory.
</p>
</primary>
<p>
ドキュメントが <code>/docs/apidocs/</code> ディレクトリに作成されます。
</p>

<primary>
<p>
<b>Note:</b> Velocity uses the <a href="http://jakarta.apache.org/ant/">Jakarta Ant</a> 
build tool for all code and documentation generation, so you will need to have it 
installed.  We strongly endorse this wonderful tool for any Java developer.
   </p>
</primary>
<p>
<b>注意:</b> Velocity は、すべてのコードとドキュメントを生成するために
<a href="http://ant.apache.org/">Apache Ant</a> を使用するので、
インストールしておく必要があります。どんな Java 開発者にとっても素晴らしいツールなので強く推奨します。
</p>

</section>

</body>
</document>
