Skip to content

Commit b9a5cac

Browse files
Add Japanese translations.
1 parent 8980750 commit b9a5cac

File tree

6 files changed

+20
-31
lines changed

6 files changed

+20
-31
lines changed

content/ja/_index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ title = '使いやすさ'
3838
body = '''
3939
SciPyの高いレベルで抽象化されたAPIは、どんな技術的バックグラウンドや経験を持つのプログラマーでも簡単に利用することができ、生産性を高めることができます。
4040
'''
41-
'''
4241

4342
[[item]]
4443
type = 'card'

content/ja/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ SciPy 開発チームは、経済的支援、サービス、または開発イ
101101
- [BYU](https://www.byu.edu): SciPyの開発中のTravisOliphantの雇用
102102
- [Mayo Clinic](https://www.mayoclinic.org): SciPy開発中のTravis Oliphantの雇用
103103

104-
\_このリストはサポート開始の次期順に並べられており、
104+
_このリストはサポート開始の次期順に並べられており、
105105
最後に更新されたのは2022年1月です。
106106

107107
<a name="social-media"></a>

content/ja/beginner-install.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ python -m pip install scipy
5353
```
5454

5555
{{< admonition warning >}}
56-
You may see this recommended in tutorials or classes, but the recommended
57-
way to install SciPy with `pip` is to use a virtual environment -
58-
see.{{< admonition warning >}}
5956
チュートリアルや学校の授業で、このインストール方法が推奨されることがあるかもしれませんが、`pip`を使用して SciPy をインストールする我々としての推奨方法は、仮想環境を利用することです。詳しくは、[`pip`を利用したインストール](./install.md#installing-with-pip)を参照してください。
6057
{{< /admonition >}}
6158

content/ja/contribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ SciPyの [ユーザガイド](https://docs.scipy.org/doc/scipy/tutorial/index.ht
3737

3838
### イシューのトリアージ
3939

40-
[SciPyのイシュートラッカー](https://github.com/scipy/scipy/issues) には、未解決の課題が *大量*に残っています。 いくつかの課題はすでに解決されていたり、いくつかは優先順位付けが必要で、
40+
[SciPyのイシュートラッカー](https://github.com/scipy/scipy/issues) には、未解決の課題が _大量_に残っています。 いくつかの課題はすでに解決されていたり、いくつかは優先順位付けが必要で、
4141
いくつかは、SciPyの初心者が取り組むのに良い課題でしょう。 例えば、
4242

4343
- 古くのバグが最新のコードでも存在しているか確認する

content/ja/install.md

Lines changed: 17 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,14 @@ SciPyの推奨されるインストール方法は、あなたの好みのワー
1616
- **システムパッケージマネージャー** _(推奨されません)_
1717
- **ソースからのビルド** _(デバッグと開発用)_
1818

19-
\[静的型スタブ]を使用してSciPyをインストールするには、
19+
静的型スタブ]を使用してSciPyをインストールするには、
2020
[型スタブを使用したインストール](#type-stubs)をご覧ください。
2121

2222
[static type stubs]: [https://typing.readthedocs.io/en/latest/guides/libraries.html]\(https://typing.readthedocs.io/en/latest/guides/libraries.html\)
2323

2424
{{< admonition tip >}}
2525
統合開発環境 (IDE) が正確な型ヒントを提供するためには、型スタブのインストールが必要となる場合があります。
2626
{{< /admonition >}}
27-
{{< /admonition >}}
2827

2928
{{< tabs >}}
3029

@@ -36,7 +35,7 @@ content = ''' <a name="project-based"></a>
3635

3736
Pythonパッケージマネージャーであるuvを使用してSciPyを使用するためのプロジェクトをセットアップする手順は以下の通りです。
3837

39-
1. [uvドキュメントのインストール手順]([https://docs.astral.sh/uv/getting-started/installation/)に従って](https://www.google.com/search?q=https://docs.astral.sh/uv/getting-started/installation/)%E3%81%AB%E5%BE%93%E3%81%A3%E3%81%A6)\`uv\`をインストールします。
38+
1. [uvドキュメントのインストール手順](https://docs.astral.sh/uv/getting-started/installation/)に従って、\`uv\`をインストールします。
4039

4140
2. 新しいサブディレクトリに新しいプロジェクトを作成します。ターミナルで以下を実行します。
4241

@@ -48,7 +47,6 @@ cd try-scipy
4847
{{< admonition hint >}}
4948
2番目のコマンドは、ディレクトリをプロジェクトのディレクトリに変更します。
5049
{{< /admonition >}}
51-
{{< /admonition >}}
5250

5351
3. SciPyをプロジェクトに追加します。
5452

@@ -59,7 +57,6 @@ uv add scipy
5957
{{< admonition note >}}
6058
これは、Pythonがまだインストールされていない場合に、自動的にPythonをインストールします!
6159
{{< /admonition >}}
62-
{{< /admonition >}}
6360

6461
{{< admonition tip >}}
6562
同じ方法で他のPythonライブラリもインストールできます。例:
@@ -92,7 +89,7 @@ Pythonスクリプトを実行するには、`uv run myscript.py`を使用でき
9289

9390
詳細は[uvのプロジェクトでの作業ガイド][uv-projects]をご覧ください。
9491

95-
[uv-projects]: [https://docs.astral.sh/uv/guides/projects/]\(https://docs.astral.sh/uv/guides/projects/\)
92+
[uv-projects]: https://docs.astral.sh/uv/guides/projects/
9693

9794
{{< /admonition >}}
9895

@@ -103,16 +100,16 @@ Condaはあらゆる言語のパッケージを管理できるため、Python自
103100
Condaは任意の言語でパッケージを管理できるため、
104101
Python自体や、コンパイラ、その他の言語をインストールするのにも使用できます。
105102

106-
[Conda]: [https://docs.conda.io/projects/conda/en/latest/index.html]\(https://docs.conda.io/projects/conda/en/latest/index.html\)
103+
[Conda]: https://docs.conda.io/projects/conda/en/latest/index.html
107104

108105
パッケージ管理ツール[`pixi`]を使用して[conda-forge]からSciPyをインストールする手順は、`uv`の手順と非常によく似ています。
109106

110-
[conda-forge]: [https://conda-forge.org/]\(https://conda-forge.org/\)
111-
[`pixi`]: [https://pixi.sh/latest/]\(https://pixi.sh/latest/\)
107+
[conda-forge]: https://conda-forge.org/
108+
[`pixi`]: https://pixi.sh/latest/
112109

113110
1. [`pixi`ドキュメントのインストール手順][install-pixi]に従って、`pixi`をインストールします。
114111

115-
[install-pixi]: [https://pixi.sh/latest/]\(https://pixi.sh/latest/\)
112+
[install-pixi]: https://pixi.sh/latest/
116113

117114
2. 新しいサブディレクトリに新しいプロジェクトを作成します。
118115

@@ -151,13 +148,12 @@ content = ''' <a name="environment-based"></a>
151148

152149
<!-- prettier-ignore-start -->
153150

154-
1. [Pythonをインストール](\[https://www.python.org/downloads/)します]([https://www.google.com/search?q=https://www.python.org/downloads/)%E3%81%97%E3%81%BE%E3%81%99](https://www.google.com/search?q=https://www.python.org/downloads/)%E3%81%97%E3%81%BE%E3%81%99))
151+
1. [Pythonをインストール](https://www.python.org/downloads/)します。
155152

156153
2. `venv` を使用して仮想環境を作成し、アクティブ化します。
157154

158155
{{< admonition hint >}}
159-
[Python Packaging User Guideのチュートリアル](\[https://packaging.python.org/en/latest/tutorials/installing-packages/#creating-virtual-environments)をご覧ください]([https://www.google.com/search?q=https://packaging.python.org/en/latest/tutorials/installing-packages/%23creating-virtual-environments)%E3%82%92%E3%81%94%E8%A6%A7%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84](https://www.google.com/search?q=https://packaging.python.org/en/latest/tutorials/installing-packages/%23creating-virtual-environments)%E3%82%92%E3%81%94%E8%A6%A7%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84))。
160-
{{< /admonition >}}
156+
[Python Packaging User Guideのチュートリアル](https://packaging.python.org/en/latest/tutorials/installing-packages/#creating-virtual-environments)をご覧ください。
161157
{{< /admonition >}}
162158

163159
3. [`pip`] を使用して SciPy をインストールします。
@@ -168,7 +164,7 @@ python -m pip install scipy
168164

169165
<!-- prettier-ignore-end -->
170166

171-
[`pip`]: [https://pip.pypa.io/en/stable/getting-started/]\(https://pip.pypa.io/en/stable/getting-started/\)
167+
[`pip`]: https://pip.pypa.io/en/stable/getting-started/
172168

173169
### `conda` を使用したインストール
174170

@@ -181,8 +177,8 @@ conda install scipy # または
181177
mamba install scipy
182178
```
183179

184-
[Miniforge]: [https://conda-forge.org/download/]\(https://conda-forge.org/download/\)
185-
[`mamba`]: [https://mamba.readthedocs.io/en/latest/]\(https://mamba.readthedocs.io/en/latest/\)
180+
[Miniforge]: https://conda-forge.org/download/
181+
[`mamba`]: https://mamba.readthedocs.io/en/latest/
186182

187183
'''
188184

@@ -228,20 +224,18 @@ name = 'ソースからのビルド'
228224
content = ''' <a name="building-from-source"></a>
229225

230226
注意点: ソースコードからSciPyをビルドするのは簡単ではない場合があります。 お使いのプラットフォームで、上記の方法のいずれかを通じてバイナリソフトが利用可能な場合は、それを使用することをおすすめします。
231-
ソースコードからのビルド方法の詳細については
232-
\[ビルドドキュメント] を参照してください
227+
ソースからビルドする方法の詳細については
228+
[SciPy ドキュメントのソースからのビルド ガイド][building-docs]
233229

234230
[building-docs]: https://scipy.github.io/devdocs/building/index.html
235231

236232
'''
237233

238234
{{</ tabs >}}
239235

240-
次のステップは[SciPyユーザーガイド]([https://docs.scipy.org/doc/scipy/tutorial/)をご覧ください]([https://www.google.com/search?q=https://docs.scipy.org/doc/scipy/tutorial/)%E3%82%92%E3%81%94%E8%A6%A7%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84](https://www.google.com/search?q=https://docs.scipy.org/doc/scipy/tutorial/)%E3%82%92%E3%81%94%E8%A6%A7%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84))
236+
次のステップは[SciPyユーザーガイド](https://docs.scipy.org/doc/scipy/tutorial/)をご覧ください。
241237

242-
{{< admonition tip >}}
243-
IDE(統合開発環境)で正確な型ヒントを提供するために、型スタブのインストールが必要になる場合があります。
244-
{{< /admonition >}}
238+
<a name="type-stubs"></a>
245239

246240
## 型スタブを使用したインストール
247241

@@ -260,5 +254,4 @@ python -m pip install "scipy-stubs[scipy]" # または
260254
conda install "scipy-typed>=1.14"
261255
```
262256

263-
静的型付けのサポートに関する質問は、
264-
[`scipy-stubs` GitHubリポジトリ]([https://github.com/jorenham/scipy-stubs)にお寄せください](https://www.google.com/search?q=https://github.com/jorenham/scipy-stubs)%E3%81%AB%E3%81%8A%E5%AF%84%E3%81%9B%E3%81%8F%E3%81%A0%E3%81%95%E3%81%84)。
257+
GitHubリポジトリ](https://github.com/jorenham/scipy-stubs)にお寄せください。

content/ja/privacy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ title: プライバシーポリシー
33
sidebar: false
44
---
55

6-
**scipy.org** は、SciPyプロジェクトの資金援助のスポンサーでもある、[NumFOCUS, Inc.](https://numfocus.org)によって運営されています。 このウェブサイトのプライバシーポリシーについては、https://numfocus.org/privacy-policy を参照してください。
6+
**scipy.org** は、SciPyプロジェクトの資金援助のスポンサーでもある、[NumFOCUS, Inc.](https://numfocus.org)によって運営されています。 このウェブサイトのプライバシーポリシーについては、https://numfocus.org/privacy-policy を参照してください。
77

88
個人情報保護の方針やNumFOCUSのデータ収集、使用、および開示方法についてご質問がある場合は、[email protected] のNumFOCUSスタッフにお問い合わせください。

0 commit comments

Comments
 (0)