Skip to content

Commit d99c45f

Browse files
YatyMachinisteWeb
authored andcommitted
LANGS.md, SUMMARY.md et plusieurs README.md (#6)
* LANGS.md: traduction * README.md: traduction * SUMMARY.md: traduction * README.md: traduction * librairie -> bibliothèque * README.md: traduction * Corrections suite à la review de Haeresis
1 parent 4f72157 commit d99c45f

File tree

5 files changed

+29
-28
lines changed

5 files changed

+29
-28
lines changed

Diff for: docs/LANGS.md

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
* [English](en/)
2+
* [Français](fr/)

Diff for: docs/en/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# vue-test-utils
22

3-
`vue-test-utils` is the official unit testing utility library for Vue.js.
3+
`vue-test-utils` est la bibliothèque officielle de tests unitaires pour Vue.js.
44

55
* [Guides](guides/README.md)
6-
* [Getting Started](guides/getting-started.md)
7-
* [Common Tips](guides/common-tips.md)
8-
* [Choosing a test runner](guides/choosing-a-test-runner.md)
9-
* [Testing SFCs with Jest](guides/testing-SFCs-with-jest.md)
10-
* [Testing SFCs with Mocha + webpack](guides/testing-SFCs-with-mocha-webpack.md)
11-
* [Using with Vue Router](guides/using-with-vue-router.md)
12-
* [Using with Vuex](guides/using-with-vuex.md)
6+
* [Commencer](guides/getting-started.md)
7+
* [Astuces](guides/common-tips.md)
8+
* [Choisir un lanceur de tests](guides/choosing-a-test-runner.md)
9+
* [Tester des composants monofichiers avec Jest](guides/testing-SFCs-with-jest.md)
10+
* [Tester des composants monofichiers avec Mocha et webpack](guides/testing-SFCs-with-mocha-webpack.md)
11+
* [Utiliser avec Vue Router](guides/using-with-vue-router.md)
12+
* [Utiliser avec Vuex](guides/using-with-vuex.md)
1313
* [API](api/README.md)
1414
* [createLocalVue](api/createLocalVue.md)
1515
* [mount](api/mount.md)
1616
* [shallow](api/shallow.md)
17-
* [Mounting Options](api/options.md)
17+
* [Options de montage](api/options.md)
1818
* [Wrapper](api/wrapper/README.md)
1919
* [contains](api/wrapper/contains.md)
2020
* [find](api/wrapper/find.md)
@@ -46,4 +46,4 @@
4646
* [setData](api/wrapper-array/setData.md)
4747
* [setProps](api/wrapper-array/setProps.md)
4848
* [trigger](api/wrapper-array/trigger.md)
49-
* [Selectors](api/selectors.md)
49+
* [Selecteurs](api/selectors.md)

Diff for: docs/en/SUMMARY.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
## Table of Contents
22

33
* [Guides](guides/README.md)
4-
* [Getting Started](guides/getting-started.md)
5-
* [Common Tips](guides/common-tips.md)
6-
* [Choosing a test runner](guides/choosing-a-test-runner.md)
7-
* [Testing SFCs with Jest](guides/testing-SFCs-with-jest.md)
8-
* [Testing SFCs with Mocha + webpack](guides/testing-SFCs-with-mocha-webpack.md)
9-
* [Using with Vue Router](guides/using-with-vue-router.md)
10-
* [Using with Vuex](guides/using-with-vuex.md)
4+
* [Commencer](guides/getting-started.md)
5+
* [Astuces](guides/common-tips.md)
6+
* [Choisir un lanceur de tests](guides/choosing-a-test-runner.md)
7+
* [Tester des composants monofichiers avec Jest](guides/testing-SFCs-with-jest.md)
8+
* [Tester des composants monofichiers avec Mocha et webpack](guides/testing-SFCs-with-mocha-webpack.md)
9+
* [Utiliser avec Vue Router](guides/using-with-vue-router.md)
10+
* [Utiliser avec Vuex](guides/using-with-vuex.md)
1111
* [API](api/README.md)
1212
* [mount](api/mount.md)
1313
* [shallow](api/shallow.md)
14-
* [Mounting Options](api/options.md)
14+
* [Options de montage](api/options.md)
1515
- [context](api/options.md#context)
1616
- [slots](api/options.md#slots)
1717
- [stubs](api/options.md#stubs)
@@ -57,5 +57,5 @@
5757
* [setProps](api/wrapper-array/setProps.md)
5858
* [trigger](api/wrapper-array/trigger.md)
5959
* [update](api/wrapper-array/update.md)
60-
* [Selectors](api/selectors.md)
60+
* [Selecteurs](api/selectors.md)
6161
* [createLocalVue](api/createLocalVue.md)

Diff for: docs/en/api/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
* [mount](./mount.md)
44
* [shallow](./shallow.md)
5-
* [Mounting Options](./options.md)
5+
* [Options de montage](./options.md)
66
- [context](./options.md#context)
77
- [slots](./options.md#slots)
88
- [stubs](./options.md#stubs)
@@ -46,4 +46,4 @@
4646
* [setProps](./wrapper-array/setProps.md)
4747
* [trigger](./wrapper-array/trigger.md)
4848
* [createLocalVue](./createLocalVue.md)
49-
* [Selectors](./selectors.md)
49+
* [Selecteurs](./selectors.md)

Diff for: docs/en/guides/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Guides
22

3-
* [Getting Started](./getting-started.md)
4-
* [Common Tips](./common-tips.md)
5-
* [Choosing a test runner](./choosing-a-test-runner.md)
6-
* [Using with Jest](./using-with-jest.md)
7-
* [Testing SFCs with Jest](./testing-SFCs-with-jest.md)
8-
* [Testing SFCs with Mocha + webpack](./testing-SFCs-with-mocha-webpack.md)
9-
* [Using with Vuex](./using-with-vuex.md)
3+
* [Commencer](./getting-started.md)
4+
* [Astuces](./common-tips.md)
5+
* [Choisir un lanceur de tests](./choosing-a-test-runner.md)
6+
* [Utiliser avec Jest](./using-with-jest.md)
7+
* [Tester des composants monofichiers avec Jest](./testing-SFCs-with-jest.md)
8+
* [Tester des composants monofichiers avec Mocha et webpack](./testing-SFCs-with-mocha-webpack.md)
9+
* [Utiliser avec Vuex](./using-with-vuex.md)

0 commit comments

Comments
 (0)