fix(docs): locale translations

This commit is contained in:
Adam
2026-02-10 07:11:13 -06:00
parent 19ad7ad809
commit 4c4e30cd71
351 changed files with 3744 additions and 3765 deletions

View File

@@ -1,11 +1,11 @@
---
title: トゥイ
description: OpenCode ターミナル ユーザー インターフェイスの使用。
description: OpenCode terminal ユーザー インターフェイスの使用。
---
import { Tabs, TabItem } from "@astrojs/starlight/components"
OpenCode は、LLM を使用してプロジェクトを作業するための対話型ターミナル インターフェイスまたは TUI を提供します。
OpenCode は、LLM を使用してプロジェクトを作業するための対話型terminal インターフェイスまたは TUI を提供します。
OpenCode を実行すると、現在のディレクトリの TUI が開始されます。
@@ -45,7 +45,7 @@ How is auth handled in @packages/functions/src/api/index.ts?
## Bash コマンド
メッセージを `!` で開始して、シェル コマンドを実行します。
メッセージを `!` で開始して、shell コマンドを実行します。
```bash frame="none"
!ls -la
@@ -299,7 +299,7 @@ Git リポジトリ** であること。
export EDITOR="code --wait"
```
これを永続的にするには、これをシェル プロファイルに追加します。
これを永続的にするには、これをshell プロファイルに追加します。
`~/.bashrc`、`~/.zshrc`など
</TabItem>
@@ -334,19 +334,19 @@ Git リポジトリ** であること。
一般的なエディター オプションには次のものがあります。
- `code` - Visual Studio コード
- `cursor` - カーソル
- `windsurf` - ウィンドサーフィン
- `code` - VS Code
- `cursor` - Cursor
- `windsurf` - Windsurf
- `nvim` - Neovim エディター
- `vim` - Vim エディター
- `nano` - ナノエディター
- `notepad` - Windows メモ帳
- `subl` - 崇高なテキスト
- `subl` - Sublime Text
:::note
VS Code などの一部のエディターは、`--wait` フラグを使用して起動する必要があります。
:::
Some モードで実行するためにコマンドライン引数が必要です。 `--wait` フラグにより​​、エディター閉じられるまでプロセスをブロックします。
一部のモードで実行にコマンドライン引数が必要です。`--wait` フラグを使うと、エディター閉じるまでプロセスが待機します。
---