Skip to content

Commit c7d9c4e

Browse files
Romain Cresteybleucitron
authored andcommitted
french translation
1 parent 9eb969d commit c7d9c4e

File tree

268 files changed

+4082
-3079
lines changed

Some content is hidden

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

268 files changed

+4082
-3079
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 4 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,7 @@
1-
---
2-
Before filing an issue we'd appreciate it if you could take a moment to ensure
3-
there isn't already an open issue or pull-request.
4-
---
1+
## Attention
52

6-
If there's an existing issue, please add a :+1: reaction to the description of
7-
the issue. One way we prioritize issues is by the number of :+1: reactions on
8-
their descriptions. Please DO NOT add `+1` or :+1: comments.
3+
Vous vous apprêtez à ouvrir une issue sur le projet de traduction francophone de la documentation de Svelte.
94

10-
### Feature requests and proposals
5+
Ce projet est uniquement dédié à de la traduction, et nous n'accepterons donc que les issues dont l'objet est l'ajout ou la modification de traductions, ou tout outillage associé.
116

12-
We're excited to hear how we can make Svelte better. Please add as much detail
13-
as you can on your use case. To propose an implementation of a large feature or
14-
change, please create an [RFC](https://github.com/sveltejs/rfcs).
15-
16-
### Bugs
17-
18-
If you're filing an issue about a bug please include as much information
19-
as you can including the following.
20-
21-
- Your browser and the version: (e.x. Chrome 52.1, Firefox 48.0, IE 10)
22-
- Your operating system: (e.x. OS X 10, Windows XP, etc)
23-
- Svelte version (Please check you can reproduce the issue with the latest release!)
24-
- Whether your project uses Webpack or Rollup
25-
26-
- _Repeatable steps to reproduce the issue_
27-
28-
## Thanks for being part of Svelte!
7+
Pour toute issue liée au projet Svelte en lui-même, merci de les ouvrir sur le [repository officiel](https://github.com/sveltejs/svelte/issues).

.github/ISSUE_TEMPLATE/bug_report.yml

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

.github/ISSUE_TEMPLATE/config.yml

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

.github/ISSUE_TEMPLATE/feature_request.yml

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

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
1-
## Svelte 5 rewrite
1+
## Attention
22

3-
Please note that [the Svelte codebase is currently being rewritten for Svelte 5](https://svelte.dev/blog/runes). Changes should target Svelte 5, which lives on the default branch (`main`).
3+
Vous vous apprêtez à ouvrir une PR sur le projet de traduction francophone de la documentation de Svelte.
44

5-
If your PR concerns Svelte 4 (including updates to [svelte.dev.docs](https://svelte.dev/docs)), please ensure the base branch is `svelte-4` and not `main`.
5+
Ce projet est uniquement dédié à de la traduction, et nous n'accepterons donc que les PRs dont l'objet est l'ajout ou la modification de traductions, ou tout outillage associé.
66

7-
### Before submitting the PR, please make sure you do the following
8-
9-
- [ ] It's really useful if your PR references an issue where it is discussed ahead of time. In many cases, features are absent for a reason. For large changes, please create an RFC: https://github.com/sveltejs/rfcs
10-
- [ ] Prefix your PR title with `feat:`, `fix:`, `chore:`, or `docs:`.
11-
- [ ] This message body should clearly illustrate what problems it solves.
12-
- [ ] Ideally, include a test that fails without this PR but passes with it.
13-
14-
### Tests and linting
15-
16-
- [ ] Run the tests with `pnpm test` and lint the project with `pnpm lint`
7+
Pour toute PR liée au projet Svelte en lui-même, merci de les ouvrir sur le [repository officiel](https://github.com/sveltejs/svelte/pulls).

.github/workflows/ci.yml

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

.github/workflows/ecosystem-ci-trigger.yml

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

.github/workflows/release.yml

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

.github/workflows/track-docs.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Docs tracker
2+
3+
on:
4+
workflow_dispatch:
5+
schedule:
6+
- cron: '0 3 * * *'
7+
8+
jobs:
9+
track-docs:
10+
runs-on: ubuntu-latest
11+
name: Checking Docs
12+
steps:
13+
- name: Checkout code
14+
uses: actions/checkout@v3
15+
- name: Svelte docs new commits
16+
uses: AlexxNB/track-commits-to-issue@master
17+
with:
18+
token: ${{ secrets.GITHUB_TOKEN }}
19+
owner: sveltejs
20+
repo: svelte
21+
dir: documentation
22+
track-site:
23+
runs-on: ubuntu-latest
24+
name: Checking Site
25+
steps:
26+
- name: Checkout code
27+
uses: actions/checkout@v3
28+
- name: Svelte site new commits
29+
uses: AlexxNB/track-commits-to-issue@master
30+
with:
31+
token: ${{ secrets.GITHUB_TOKEN }}
32+
owner: sveltejs
33+
repo: svelte
34+
dir: sites/svelte.dev
35+
track-svelte:
36+
runs-on: ubuntu-latest
37+
name: Checking Svelte core
38+
steps:
39+
- name: Checkout code
40+
uses: actions/checkout@v3
41+
- name: Svelte new commits
42+
uses: AlexxNB/track-commits-to-issue@master
43+
with:
44+
token: ${{ secrets.GITHUB_TOKEN }}
45+
owner: sveltejs
46+
repo: svelte
47+
dir: packages/svelte/src

0 commit comments

Comments
 (0)