mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-19 11:35:16 +00:00
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>
This commit is contained in:
parent
37b5168bfe
commit
dc419e8e8a
@ -1,37 +1,70 @@
|
||||
module.exports = {
|
||||
title: 'Starship',
|
||||
description: 'The cross-shell prompt for astronauts ☄🌌️',
|
||||
head: [
|
||||
['link', { rel: 'icon', href: '/icon.png' }]
|
||||
],
|
||||
locales: {
|
||||
"/": {
|
||||
lang: "en-US",
|
||||
title: "Starship",
|
||||
description: "The cross-shell prompt for astronauts"
|
||||
},
|
||||
"/ja/": {
|
||||
lang: "ja-JP",
|
||||
title: "Starship",
|
||||
description: "The cross-shell prompt for astronauts"
|
||||
}
|
||||
},
|
||||
head: [["link", { rel: "icon", href: "/icon.png" }]],
|
||||
themeConfig: {
|
||||
logo: '/icon.png',
|
||||
sidebar: [
|
||||
'/',
|
||||
['/guide/', 'Guide'],
|
||||
['/config/', 'Configuration'],
|
||||
['/advanced-config/', 'Advanced Configuration']
|
||||
],
|
||||
nav: [
|
||||
{ text: 'Configuration', link: '/config/' },
|
||||
],
|
||||
logo: "/icon.png",
|
||||
// the GitHub repo path
|
||||
repo: 'starship/starship',
|
||||
repo: "starship/starship",
|
||||
// the label linking to the repo
|
||||
repoLabel: 'GitHub',
|
||||
repoLabel: "GitHub",
|
||||
// if your docs are not at the root of the repo:
|
||||
docsDir: 'docs',
|
||||
docsDir: "docs",
|
||||
// defaults to false, set to true to enable
|
||||
editLinks: true,
|
||||
// custom text for edit link. Defaults to "Edit this page"
|
||||
editLinkText: 'Edit this page on GitHub'
|
||||
locales: {
|
||||
"/": {
|
||||
// text for the language dropdown
|
||||
selectText: "Languages",
|
||||
// label for this locale in the language dropdown
|
||||
label: "English",
|
||||
// Custom text for edit link. Defaults to "Edit this page"
|
||||
editLinkText: "Edit this page on GitHub",
|
||||
// Custom navbar values
|
||||
nav: [{ text: "Configuration", link: "/config/" }],
|
||||
// Custom sidebar values
|
||||
sidebar: [
|
||||
"/",
|
||||
["/guide/", "Guide"],
|
||||
["/config/", "Configuration"],
|
||||
["/advanced-config/", "Advanced Configuration"]
|
||||
],
|
||||
},
|
||||
"/ja/": {
|
||||
// text for the language dropdown
|
||||
selectText: "言語",
|
||||
// label for this locale in the language dropdown
|
||||
label: "日本語",
|
||||
// Custom text for edit link. Defaults to "Edit this page"
|
||||
editLinkText: "GitHub で編集する",
|
||||
// Custom navbar values
|
||||
nav: [{ text: "設定", link: "/config/" }],
|
||||
// Custom sidebar values
|
||||
sidebar: [
|
||||
"/",
|
||||
["/guide/", "ガイド"],
|
||||
["/config/", "設定"],
|
||||
["/advanced-config/", "高度な設定"]
|
||||
],
|
||||
},
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
[
|
||||
'@vuepress/google-analytics',
|
||||
"@vuepress/google-analytics",
|
||||
{
|
||||
'ga': 'UA-71160903-4'
|
||||
ga: "UA-71160903-4"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
};
|
||||
|
99
docs/ja/README.md
Normal file
99
docs/ja/README.md
Normal file
@ -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)"
|
||||
```
|
Loading…
Reference in New Issue
Block a user