Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sebastianbergmann/phpunit-documentation-japanese
Japanese Documentation for PHPUnit
https://github.com/sebastianbergmann/phpunit-documentation-japanese
documentation phpunit
Last synced: 5 days ago
JSON representation
Japanese Documentation for PHPUnit
- Host: GitHub
- URL: https://github.com/sebastianbergmann/phpunit-documentation-japanese
- Owner: sebastianbergmann
- Archived: true
- Created: 2018-01-26T09:44:43.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2023-01-30T14:20:52.000Z (almost 2 years ago)
- Last Synced: 2024-09-26T19:41:48.230Z (4 months ago)
- Topics: documentation, phpunit
- Language: Python
- Homepage: http://phpunit.readthedocs.io/ja/latest/
- Size: 81 MB
- Stars: 14
- Watchers: 5
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
**The PHPUnit project is no longer involved with the translation of its documentation to other languages. This repository is now archived.**
# 翻訳
(日本語以外の)他言語版のドキュメントは、それぞれ個別のリポジトリで管理されています。
* [英語](https://github.com/sebastianbergmann/phpunit-documentation-english)
* [スペイン語](https://github.com/sebastianbergmann/phpunit-documentation-spanish)
* [フランス語](https://github.com/sebastianbergmann/phpunit-documentation-french)
* [ポルトガル語(ブラジル)](https://github.com/sebastianbergmann/phpunit-documentation-brazilian-portuguese)
* [日本語 ^^;](https://github.com/sebastianbergmann/phpunit-documentation-japanese)
* [簡体字中文](https://github.com/sebastianbergmann/phpunit-documentation-chinese)
* [ロシア語](https://github.com/sebastianbergmann/phpunit-documentation-russian)## 新しい言語への翻訳
これら以外の言語への翻訳をしたい場合は、英語版ドキュメントのリポジトリにissueを立てて、
何語に翻訳したいのかを知らせてください。新しいリポジトリを用意するので、そこで翻訳を進めていきましょう。既に英語版をフォークして翻訳を進めているのであれば、用意した公式リポジトリにそれをインポート
するといいでしょう。# ドキュメントをビルドするには
## 必要なもの
- Python
- [Sphinx](http://www.sphinx-doc.org/)
- [Read the Docs Sphinx Theme](https://github.com/rtfd/sphinx_rtd_theme)## HTMLのビルド
HTML形式のドキュメント作るには次のコマンドを実行します。
```
$ make html
```HTMLファイルは `build/html` ディレクトリに出力されます。
## 自動校正
### セットアップ
```
$ pip install docutils-ast-writer
$ npm install
```### 使いかた
```
$ ./node_modules/.bin/textlint src
```