Skip to content

Commit d72723b

Browse files
committed
Link up Japanese (日本語) translation of the docs
Huge thanks to @makotot
1 parent 678fb5f commit d72723b

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

code-of-conduct.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributor Code of Conduct
22

3-
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/code-of-conduct.md), [Français](https://github.com/sindresorhus/ava-docs/blob/master/fr_FR/code-of-conduct.md)
3+
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/code-of-conduct.md), [Français](https://github.com/sindresorhus/ava-docs/blob/master/fr_FR/code-of-conduct.md), [日本語](https://github.com/sindresorhus/ava-docs/blob/master/ja_JP/code-of-conduct.md)
44

55
As contributors and maintainers of this project, and in the interest of
66
fostering an open and welcoming community, we pledge to respect all people who

contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Please note that this project is released with a [Contributor Code of Conduct](code-of-conduct.md). By participating in this project you agree to abide by its terms.
66

7-
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/contributing.md), [Français](https://github.com/sindresorhus/ava-docs/blob/master/fr_FR/contributing.md)
7+
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/contributing.md), [Français](https://github.com/sindresorhus/ava-docs/blob/master/fr_FR/contributing.md), [日本語](https://github.com/sindresorhus/ava-docs/blob/master/ja_JP/contributing.md)
88

99
## How can I contribute?
1010

docs/recipes/code-coverage.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Code coverage
22

3-
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/docs/recipes/code-coverage.md), [Français](https://github.com/sindresorhus/ava-docs/blob/master/fr_FR/docs/recipes/code-coverage.md)
3+
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/docs/recipes/code-coverage.md), [Français](https://github.com/sindresorhus/ava-docs/blob/master/fr_FR/docs/recipes/code-coverage.md), [日本語](https://github.com/sindresorhus/ava-docs/blob/master/ja_JP/docs/recipes/code-coverage.md)
44

5-
As AVA [spawns the test files][isolated-env], you can't use [`istanbul`] for code coverage; instead, you can achieve this with [`nyc`] which is basically [`istanbul`] with sub-process support.
5+
As AVA [spawns the test files][isolated-env], you can't use [`istanbul`] for code coverage; instead, you can achieve this with [`nyc`] which is basically [`istanbul`] with sub-process support.
66

77
## Setup
88

@@ -35,16 +35,16 @@ Using NYC to provide coverage for production code written in ES5 is simple. Just
3535
```
3636

3737
That's it!
38-
39-
If you want to create HTML coverage reports, or upload coverage data to Coveralls, you should skip down to those sections below.
38+
39+
If you want to create HTML coverage reports, or upload coverage data to Coveralls, you should skip down to those sections below.
4040

4141
## ES2015 coverage
4242

4343
Using Babel to transpile your production code is a bit more involved. Here we've broken it down into multiple steps.
4444

4545
### Configure Babel
4646

47-
First, we need a Babel configuration. The following is just an example. You will need to modify it to fit your needs.
47+
First, we need a Babel configuration. The following is just an example. You will need to modify it to fit your needs.
4848

4949
`package.json`:
5050
```json
@@ -89,7 +89,7 @@ Note that the build script really has very little to do with AVA, and is just a
8989

9090
### Use the Babel require hook
9191

92-
To use the Babel require hook, add `babel-core/register` to the `require` section of you AVA config in `package.json`.
92+
To use the Babel require hook, add `babel-core/register` to the `require` section of you AVA config in `package.json`.
9393

9494
```json
9595
{
@@ -106,7 +106,7 @@ To use the Babel require hook, add `babel-core/register` to the `require` sectio
106106
Combining the above steps, your complete `package.json` should look something like this:
107107

108108
```json
109-
{
109+
{
110110
"scripts": {
111111
"test": "nyc ava",
112112
"build": "BABEL_ENV=production babel --out-dir=dist index.js"
@@ -156,7 +156,7 @@ This will output a HTML file to the `coverage` directory.
156156
### Travis CI & Coveralls
157157

158158
First, you must login to [coveralls.io] and activate your repository.
159-
159+
160160
Once that is done, add [`coveralls`] as a development dependency:
161161

162162
```

docs/recipes/endpoint-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Endpoint testing
22

3-
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/docs/recipes/endpoint-testing.md), [Français](endpoint-testing.md)
3+
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/docs/recipes/endpoint-testing.md), [Français](endpoint-testing.md), [日本語](https://github.com/sindresorhus/ava-docs/blob/master/ja_JP/docs/recipes/endpoint-testing.md)
44

55
AVA doesn't have a builtin method for testing endpoints, but you can use any assertion library with it. Let's use [`supertest-as-promised`](https://github.com/WhoopInc/supertest-as-promised).
66

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Even though JavaScript is single-threaded, IO in Node.js can happen in parallel
88

99
*Read our [contributing guide](contributing.md) if you're looking to contribute (issues/PRs/etc).*
1010

11-
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/readme.md), [Français](https://github.com/sindresorhus/ava-docs/blob/master/fr_FR/readme.md)
11+
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/readme.md), [Français](https://github.com/sindresorhus/ava-docs/blob/master/fr_FR/readme.md), [日本語](https://github.com/sindresorhus/ava-docs/blob/master/ja_JP/readme.md)
1212

1313

1414
## Table of Contents

0 commit comments

Comments
 (0)