summaryrefslogtreecommitdiffstats
path: root/docs/ja/README.md
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-09-11 11:57:24 -0400
committerGitHub <noreply@github.com>2019-09-11 11:57:24 -0400
commitdc419e8e8ad5b2f0f469788972912af3f71bff45 (patch)
tree78fffbf664c21ffacd7457ed63b6d35290e3421e /docs/ja/README.md
parent37b5168bfeb4e69c1439c1e5ef95ecb14cf7f82c (diff)
docs(i18n): Localize the landing page in Japanese (#333)
Co-Authored-By: Yuji Ueki <unhappychoice@gmail.com> Co-Authored-By: Shu Kutsuzawa <cappyzawa@yahoo.ne.jp> Co-Authored-By: heyrict <xiezh0831@yahoo.co.jp>
Diffstat (limited to 'docs/ja/README.md')
-rw-r--r--docs/ja/README.md99
1 files changed, 99 insertions, 0 deletions
diff --git a/docs/ja/README.md b/docs/ja/README.md
new file mode 100644
index 000000000..d86f289c5
--- /dev/null
+++ b/docs/ja/README.md
@@ -0,0 +1,99 @@
+---
+home: 'true'
+heroImage: "/logo.svg"
+actionText: Get Started →
+actionLink: "/guide/"
+footer: ISC Licensed | Copyright © 2019-present Starship Contributors
+---
+
+<div class="features">
+ <div class="feature">
+ <h2>互換性優先</h2>
+ <p>一般的なほとんどのOSの一般的なほとんどのシェル上で動作します。あらゆるところで使用してください!</p>
+ </div>
+ <div class="feature">
+ <h2>Rust 製</h2>
+ <p>Rust の最高レベルの速度と安全性を用いることで、可能な限り高速かつ信頼性を高くしています。</p>
+ </div>
+ <div class="feature">
+ <h2>カスタマイズ可能</h2>
+ <p>それぞれの細かい点は好みにカスタマイズが出来るため、ミニマルにも多機能にも好きなようにプロンプトを設定することができます。</p>
+ </div>
+</div>
+
+<div class="center">
+ <video class="demo-video" autoplay muted loop>
+ <source src="/demo.webm" type="video/webm">
+ <source src="/demo.mp4" type="video/mp4">
+ </source></source></video>
+</div>
+
+### クイックインストール
+
+1. **Starship** のバイナリをインストール
+
+ もし以下のプラットフォームを使用していない場合は **[コンパイル済みのバイナリファイルをダウンロード](https://github.com/starship/starship/releases)** してください。
+
+ #### Homebrew
+
+ ```sh
+ $ brew install starship
+ ```
+
+ #### Rust (v1.33 もしくはそれ以上)
+
+ ```sh
+ $ cargo install starship
+ ```
+
+ #### Arch Linux (AUR)
+
+ Starship は AUR 上の `starship` というパッケージ名で利用可能です。`yay` またはお好きな AUR ヘルパーでインストールしてください。
+
+ ```sh
+ $ yay -S starship
+ ```
+
+ #### Nix (unstable)
+
+ ```sh
+ $ nix-env --install starship
+ ```
+
+ #### Termux
+
+ ```sh
+ $ pkg install starship
+ ```
+
+2. 初期化のためのスクリプトをシェルの設定ファイルに追加
+
+ #### Bash
+
+ `~/.bashrc` の最後に以下を追記してください
+
+ ```sh
+ # ~/.bashrc
+
+ eval "$(starship init bash)"
+ ```
+
+ #### Fish
+
+ `~/.config/fish/config.fish` の最後に以下を追記してください
+
+ ```sh
+ # ~/.config/fish/config.fish
+
+ eval (starship init fish)
+ ```
+
+ #### Zsh
+
+ `~/.zshrc` の最後に以下を追記してください
+
+ ```sh
+ # ~/.zshrc
+
+ eval "$(starship init zsh)"
+ ```