Skip to content

Commit 35c9752

Browse files
Merge pull request #110 from zyhou/main
Translate to FR: typescriptlang directory
2 parents 3146603 + fd37f71 commit 35c9752

File tree

6 files changed

+84
-0
lines changed

6 files changed

+84
-0
lines changed

docs/typescriptlang/fr/dt.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
export const dtCopy = {
2+
dt_s_page_title: "Rechercher des paquets typés",
3+
dt_s_title: "Rechercher un paquet",
4+
dt_s_subtitle:
5+
"Trouver des paquets npm qui ont des déclarations de types, soit intégrés ou sur Definitely Typed.",
6+
dt_s_match: "résultat",
7+
dt_s_matchs: "résultats",
8+
dt_s_match_exact: "Résultat exact",
9+
dt_s_popular_on_dt: "Populaire sur Definitely Typed",
10+
dt_s_downloads_short: "DLs",
11+
dt_s_downloads_via: "Via",
12+
dt_s_module: "Module",
13+
dt_s_last_update: "Dernière mise à jour",
14+
dt_s_install: "Installer",
15+
dt_s_no_results: "Aucun résultat trouvé pour",
16+
dt_s_no_results_try: "Essayez une autre recherche ?",
17+
dt_s_copy: "copier",
18+
dt_s_copied: "copié",
19+
};

docs/typescriptlang/fr/fr.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import { defineMessages } from "react-intl";
2+
import { Copy, messages as englishMessages } from "../en/en";
3+
import { comCopy } from "./community";
4+
import { dtCopy } from "./dt";
5+
import { handbookCopy } from "./handbook";
6+
import { headCopy } from "./head-seo";
7+
import { navCopy } from "./nav";
8+
9+
export const lang: Copy = defineMessages({
10+
...englishMessages,
11+
...comCopy,
12+
...dtCopy,
13+
...handbookCopy,
14+
...headCopy,
15+
...navCopy,
16+
});

docs/typescriptlang/fr/handbook.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export const handbookCopy = {
2+
handb_prev: "Précédent",
3+
handb_next: "Suivant",
4+
handb_on_this_page: "Dans cette page",
5+
handb_like_dislike_title: "Cette page est-elle utile ?",
6+
handb_like_desc: "Oui",
7+
handb_dislike_desc: "Non",
8+
handb_thanks: "Merci pour votre retour",
9+
handb_deprecated_title: "Cette page a été dépréciée",
10+
handb_deprecated_subtitle: "Cette page du guide a été remplacé, ",
11+
handb_deprecated_subtitle_link: "aller à la nouvelle page",
12+
handb_deprecated_subtitle_action: "Aller à la nouvelle page",
13+
};

docs/typescriptlang/fr/head-seo.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
export const headCopy = {
2+
head_playground_title:
3+
"TS Playground - Un éditeur en ligne pour explorer TypeScript et JavaScript",
4+
head_playground_description:
5+
"Playground vous permet d'écrire du TypeScript ou du JavaScript en ligne de manière sûre et partageable.",
6+
tsconfig_title:
7+
"Référence TSConfig - documentation sur toutes les options du fichier TSConfig",
8+
tsconfig_description:
9+
"De allowJs à useDefineForClassFields, la référence TSConfig documente les différents options du compilateur qui permettent de configurer un projet TypeScript.",
10+
playground_example_prefix: "Playground Exemple - ",
11+
12+
head_index_title: "JavaScript typé à toute échelle",
13+
head_index_description: "JavaScript typé à toute échelle",
14+
};

docs/typescriptlang/fr/nav.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
export const navCopy = {
2+
skip_to_content: "Aller au contenu principal",
3+
nav_documentation: "Documentation",
4+
nav_documentation_short: "Docs",
5+
nav_download: "Télécharger",
6+
nav_community: "Communauté",
7+
nav_playground: "Playground",
8+
nav_playground_short: "Play",
9+
nav_handbook: "Guide",
10+
nav_tools: "Outils",
11+
nav_search_placeholder: "Rechercher",
12+
nav_search_aria: "Recherche sur le site TypeScript",
13+
// let me know if you can't make this work in your lang:
14+
// TypeScript X.Y [stable][between?]Z.Y[beta/rc]
15+
nav_version_stable_prefix: "est maintenant disponible",
16+
nav_version_between: ", ",
17+
nav_version_beta_prefix: "est actuellement en bêta.",
18+
nav_version_rc_prefix: "est une version candidate, essayer la.",
19+
nav_this_page_in_your_lang: "Cette page est disponible dans votre langue",
20+
nav_this_page_in_your_lang_open: "Ouvrir",
21+
nav_this_page_in_your_lang_no_more: "Ne plus montrer",
22+
};

docs/typescriptlang/fr/tsconfig.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)