Skip to content

Commit a683cb4

Browse files
committed
Merge branch 'main' of https://github.com/yahma25/TypeScript-Website-Localizations into Translation-to-ko-playground-Conditional-Types
2 parents eb31fcc + 0a63617 commit a683cb4

File tree

180 files changed

+18100
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

180 files changed

+18100
-166
lines changed

.github/CODEOWNERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,10 @@ docs/tsconfig/it/**/*.md @Nabster101 @DeltaPy @PyGera [translation] [it]
6262
docs/typescriptlang/it/**/*.ts @Nabster101 @DeltaPy @PyGera [translation] [it]
6363
docs/typescriptlang/it.ts @Nabster101 @DeltaPy @PyGera [translation] [it]
6464
docs/documentation/it/**/*.md @Nabster101 @DeltaPy @PyGera [translation] [it]
65+
66+
# Collaborators for French Translation of the Website
67+
docs/playground/fr @ManuSquall @Ascor8522 [translation] [fr]
68+
docs/tsconfig/fr/**/*.md @ManuSquall @Ascor8522 [translation] [fr]
69+
docs/typescriptlang/fr/**/*.ts @ManuSquall @Ascor8522 [translation] [fr]
70+
docs/typescriptlang/fr.ts @ManuSquall @Ascor8522 [translation] [fr]
71+
docs/documentation/fr/**/*.md @ManuSquall @Ascor8522 [translation] [fr]

.github/workflows/CI.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ jobs:
88
steps:
99
- uses: actions/checkout@v1
1010
- uses: actions/setup-node@v1
11+
with:
12+
node-version: "13.x"
13+
1114
- run: yarn
1215
- run: yarn docs-sync validate-against-en
1316

.github/workflows/codeowners-merge.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ jobs:
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1616
uses: OSS-Docs-Tools/code-owner-self-merge@master
17+
with:
18+
if_no_maintainers_add_label: 'maintainers'
19+
if_no_maintainers_assign: '@orta'

.github/workflows/post-localizations.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v1
1111
- uses: actions/setup-node@v1
12+
with:
13+
node-version: "13.x"
14+
1215
- run: yarn install
1316

1417
- run: yarn danger ci

.github/workflows/weekly-contributions.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,6 @@ dist
105105

106106
# Related to @oss-docs/sync
107107
docs/**/en
108+
109+
# Then you can set this up yourself
110+
.vscode

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ yarn lint
2020
yarn lint --watch
2121
```
2222

23-
That's it, you've got a copy of all the documentation and now can write documentation which follows the existing patterns.
23+
That's it, you've got a copy of all the documentation and now can write documentation which follows the existing patterns. There's a longer intro [in `welcome.md`](./welcome.md).
2424

2525
### How translations work
2626

attribution.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
---
2+
title: Nightly Builds
3+
layout: docs
4+
permalink: /fr/docs/handbook/nightly-builds.html
5+
oneline: Comment utiliser une nightly build de TypeScript
6+
translatable: true
7+
---
8+
9+
Une nightly build de la branche [Typescript `main`](https://github.com/Microsoft/TypeScript/tree/main) est publiée avant minuit PST sur npm.
10+
Voici comment vous pouvez l'obtenir et l'utiliser avec vos outils.
11+
12+
## En utilisant npm
13+
14+
```shell
15+
npm install -g typescript@next
16+
```
17+
18+
## Mettre à jour votre IDE pour utiliser les nightly builds
19+
20+
Vous pouvez également mettre à jour votre IDE pour utiliser la nightly build.
21+
Vous devrez d'abord installer le package via npm.
22+
Vous pouvez soit installer le package npm globalement, soit dans un dossier local `node_modules`.
23+
24+
Le reste de cette section suppose que `typescript@next` est déjà installé.
25+
26+
### Visual Studio Code
27+
28+
Mettez à jour `.vscode/settings.json` avec les éléments suivants :
29+
30+
```json
31+
"typescript.tsdk": "<chemin vers votre dossier>/node_modules/typescript/lib"
32+
```
33+
34+
Plus d'informations sont disponibles sur la [documentation VSCode](https://code.visualstudio.com/Docs/languages/typescript#_using-newer-typescript-versions).
35+
36+
37+
### Sublime Text
38+
39+
Mettez à jour le fichier `Paramètres - Utilisateur` avec les éléments suivants :
40+
41+
```json
42+
"typescript_tsdk": "<chemin vers votre dossier>/node_modules/typescript/lib"
43+
```
44+
45+
Plus d'informations sont disponibles dans la [documentation d'installation du plug-in TypeScript pour Sublime Text](https://github.com/Microsoft/TypeScript-Sublime-Plugin#installation).
46+
47+
### Visual Studio 2013 et 2015
48+
49+
> Remarque : La plupart des modifications ne nécessitent pas l'installation d'une nouvelle version du plug-in VS TypeScript.
50+
51+
La nightly build n'inclut actuellement pas la configuration complète du plug-in, mais nous travaillons également à la publication d'un programme d'installation nigthly.
52+
53+
1. Téléchargez le script [VSDevMode.ps1](https://github.com/Microsoft/TypeScript/blob/main/scripts/VSDevMode.ps1).
54+
55+
> Voir également notre page wiki sur [l'utilisation d'un fichier de service de langue personnalisé](https://github.com/Microsoft/TypeScript/wiki/Dev-Mode-in-Visual-Studio#using-a-custom-language-service-file).
56+
57+
2. À partir d'une fenêtre de commande PowerShell, exécutez :
58+
59+
Pour VS 2015:
60+
```posh
61+
VSDevMode.ps1 14 -tsScript <chemin vers votre dossier>/node_modules/typescript/lib
62+
```
63+
64+
Pour VS 2013:
65+
66+
```posh
67+
VSDevMode.ps1 12 -tsScript <chemin vers votre dossier>/node_modules/typescript/lib
68+
```
69+
70+
### IntelliJ IDEA (Mac)
71+
72+
Allez dans `Préférences` > `Langues & Frameworks` > `TypeScript` :
73+
74+
> Version TypeScript : Si vous avez installé avec npm : `/usr/local/lib/node_modules/typescript/lib`
75+
76+
### IntelliJ IDEA (Windows)
77+
78+
Allez dans `Fichier` > `Paramètres` > `Langues & Frameworks` > `TypeScript` :
79+
80+
> Version TypeScript : Si vous avez installé avec npm : `C:\Users\USERNAME\AppData\Roaming\npm\node_modules\typescript\lib`
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
title: Angular
3+
layout: docs
4+
permalink: /fr/docs/handbook/angular.html
5+
oneline: Utiliser Angular avec TypeScript
6+
deprecated: true
7+
---
8+
9+
Angular est un framework moderne entièrement construit en TypeScript et, par conséquent, l'utilisation de TypeScript avec Angular offre une expérience fluide.
10+
11+
La documentation d'Angular ne met pas seulement TypeScript au premier plan, mais l'utilise également comme langage principal.
12+
Dans cet esprit, [le site d'Angular](https://angular.io) sera toujours la référence la plus à jour pour utiliser Angular avec TypeScript.
13+
14+
Consultez le [guide de démarrage rapide ici](https://angular.io/docs/ts/latest/quickstart.html) pour commencer à apprendre Angular maintenant !

0 commit comments

Comments
 (0)