@codingame/monaco-vscode-language-pack-fr 2.0.0-v2.1 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/translations/extensions/ms-vscode.js-debug.i18n.json +6 -6
- package/translations/extensions/vscode.configuration-editing.i18n.json +1 -1
- package/translations/extensions/vscode.css-language-features.i18n.json +6 -6
- package/translations/extensions/vscode.git.i18n.json +50 -40
- package/translations/extensions/vscode.github.i18n.json +1 -1
- package/translations/extensions/vscode.html-language-features.i18n.json +3 -3
- package/translations/extensions/vscode.json-language-features.i18n.json +13 -13
- package/translations/extensions/vscode.markdown-language-features.i18n.json +14 -8
- package/translations/extensions/vscode.npm.i18n.json +1 -1
- package/translations/extensions/vscode.typescript-language-features.i18n.json +8 -9
- package/translations/main.i18n.json.js +369 -300
|
@@ -43,22 +43,25 @@
|
|
|
43
43
|
"Insert Markdown Media and Links": "Insérer des médias et des liens Markdown",
|
|
44
44
|
"Insert image": "Insérer une image",
|
|
45
45
|
"Insert link": "Insérer un lien",
|
|
46
|
-
"Link definition for
|
|
46
|
+
"Link definition for '{0}' already exists": "La définition de lien de « {0} » existe déjà",
|
|
47
47
|
"Link definition is unused": "La définition de lien n’est pas utilisée",
|
|
48
48
|
"Link is already a reference": "Le lien est déjà une référence",
|
|
49
49
|
"Link is also defined here": "Le lien est également défini ici",
|
|
50
|
+
"Link to '# {0}' in '{1}'": "Link to '# {0}' in '{1}'",
|
|
51
|
+
"Link to '{0}'": "Link to '{0}'",
|
|
50
52
|
"Markdown Language Server": "Serveur de langage Markdown",
|
|
51
53
|
"Media": "Média",
|
|
52
54
|
"More Information": "Informations",
|
|
53
55
|
"Never": "Jamais",
|
|
54
56
|
"No": "Non",
|
|
55
|
-
"No header found:
|
|
56
|
-
"No link definition found:
|
|
57
|
+
"No header found: '{0}'": "En-tête introuvable : « {0} »",
|
|
58
|
+
"No link definition found: '{0}'": "Définition de lien introuvable : '{0}'",
|
|
57
59
|
"Not on link": "Pas sur le lien",
|
|
58
60
|
"Only load secure content": "Charger uniquement le contenu sécurisé.",
|
|
59
61
|
"Organize link definitions": "Organiser les définitions de liens",
|
|
60
62
|
"Potentially unsafe or insecure content has been disabled in the Markdown preview. Change the Markdown preview security setting to allow insecure content or enable scripts": "Le contenu potentiellement dangereux ou non sécurisé a été désactivé dans l'aperçu Markdown. Changez les paramètres de sécurité de l'aperçu Markdown pour autoriser le contenu non sécurisé ou activer les scripts",
|
|
61
63
|
"Preview {0}": "Prévisualiser {0}",
|
|
64
|
+
"Reference link '{0}'": "Reference link '{0}'",
|
|
62
65
|
"Remove duplicate link definition": "Supprimer la définition de lien en double",
|
|
63
66
|
"Remove unused link definition": "Supprimer la définition de lien inutilisée",
|
|
64
67
|
"Renaming is not supported here. Try renaming a header or link.": "Le changement de nom n’est pas pris en charge ici. Essayez de renommer un en-tête ou un lien.",
|
|
@@ -74,15 +77,17 @@
|
|
|
74
77
|
"package": {
|
|
75
78
|
"configuration.copyIntoWorkspace.mediaFiles": "Essayez de copier des fichiers image et vidéo externes dans l’espace de travail.",
|
|
76
79
|
"configuration.copyIntoWorkspace.never": "Ne pas copier les fichiers externes dans l’espace de travail.",
|
|
77
|
-
"configuration.markdown.copyFiles.destination": "
|
|
80
|
+
"configuration.markdown.copyFiles.destination": "Defines where files copied created by drop or paste should be created. This is a map from globs that match on the Markdown document to destinations.\r\n\r\nThe destinations may use the following variables:\r\n\r\n- `${documentDirName}` — Absolute parent directory path of the Markdown document, e.g. `/Users/me/myProject/docs`.\r\n- `${documentRelativeDirName}` — Relative parent directory path of the Markdown document, e.g. `docs`. This is the same as `${documentDirName}` if the file is not part of a workspace.\r\n- `${documentFileName}` — The full filename of the Markdown document, e.g. `README.md`.\r\n- `${documentBaseName}` — The basename of the Markdown document, e.g. `README`.\r\n- `${documentExtName}` — The extension of the Markdown document, e.g. `md`.\r\n- `${documentFilePath}` — Absolute path of the Markdown document, e.g. `/Users/me/myProject/docs/README.md`.\r\n- `${documentRelativeFilePath}` — Relative path of the Markdown document, e.g. `docs/README.md`. This is the same as `${documentFilePath}` if the file is not part of a workspace.\r\n- `${documentWorkspaceFolder}` — The workspace folder for the Markdown document, e.g. `/Users/me/myProject`. This is the same as `${documentDirName}` if the file is not part of a workspace.\r\n- `${fileName}` — The file name of the dropped file, e.g. `image.png`.\r\n- `${fileExtName}` — The extension of the dropped file, e.g. `png`.",
|
|
78
81
|
"configuration.markdown.copyFiles.overwriteBehavior": "Contrôle si les fichiers créés par dépôt ou collage doivent remplacer les fichiers existants.",
|
|
79
82
|
"configuration.markdown.copyFiles.overwriteBehavior.nameIncrementally": "S’il existe déjà un fichier portant le même nom, ajoutez un numéro au nom de fichier, par exemple : `image.png` devient `image-1.png`.",
|
|
80
83
|
"configuration.markdown.copyFiles.overwriteBehavior.overwrite": "Si un fichier portant le même nom existe déjà, il est écrasé.",
|
|
81
84
|
"configuration.markdown.editor.drop.copyIntoWorkspace": "Contrôle si les fichiers en dehors de l’espace de travail déposés dans un éditeur Markdown doivent être copiés dans l’espace de travail.\r\n\r\nUtilisez ` #markdown.copyFiles.destination#` pour configurer l’emplacement de création des fichiers copiés.",
|
|
82
85
|
"configuration.markdown.editor.drop.enabled": "Activez la suppression de fichiers dans un éditeur Markdown tout en maintenant la touche Maj enfoncée. Nécessite l’activation de ' #editor.dropIntoEditor.enabled#'.",
|
|
86
|
+
"configuration.markdown.editor.filePaste.audioSnippet": "Snippet used when adding audio to Markdown. This snippet can use the following variables:\r\n- `${src}` — The resolved path of the audio file.\r\n- `${title}` — The title used for the audio. A snippet placeholder will automatically be created for this variable.",
|
|
83
87
|
"configuration.markdown.editor.filePaste.copyIntoWorkspace": "Contrôle si les fichiers en dehors de l’espace de travail collés dans un éditeur Markdown doivent être copiés dans l’espace de travail.\r\n\r\nUtilisez ` #markdown.copyFiles.destination#` pour configurer l’emplacement de création des fichiers copiés.",
|
|
84
88
|
"configuration.markdown.editor.filePaste.enabled": "Permet de coller des fichiers dans un éditeur Markdown pour créer des liens Markdown. Nécessite l’activation de `#editor.pasteAs.enabled#`.",
|
|
85
|
-
"configuration.markdown.editor.
|
|
89
|
+
"configuration.markdown.editor.filePaste.videoSnippet": "Snippet used when adding videos to Markdown. This snippet can use the following variables:\r\n- `${src}` — The resolved path of the video file.\r\n- `${title}` — The title used for the video. A snippet placeholder will automatically be created for this variable.",
|
|
90
|
+
"configuration.markdown.editor.pasteUrlAsFormattedLink.enabled": "Controls if Markdown links are created when URLs are pasted into a Markdown editor. Requires enabling `#editor.pasteAs.enabled#`.",
|
|
86
91
|
"configuration.markdown.links.openLocation.beside": "Ouvrez les liens à côté de l'éditeur actif.",
|
|
87
92
|
"configuration.markdown.links.openLocation.currentGroup": "Ouvrez les liens dans le groupe d'éditeurs actif.",
|
|
88
93
|
"configuration.markdown.links.openLocation.description": "Contrôle l'emplacement où doivent s'ouvrir les liens dans les fichiers Markdown.",
|
|
@@ -114,9 +119,10 @@
|
|
|
114
119
|
"configuration.markdown.validate.ignoredLinks.description": "Configurez les liens qui ne doivent pas être validés. Par exemple, le fait d’ajouter « /about » ne valide pas le lien «[about](/about) », tandis que le glob « /assets/**/*.svg » vous permet d’ignorer la validation de tout lien vers les fichiers « .svg » sous le répertoire « assets ».",
|
|
115
120
|
"configuration.markdown.validate.referenceLinks.enabled.description": "Validez les liens de référence dans les fichiers Markdown, par exemple : `[link][ref]`. Nécessite l’activation de `#markdown.validate.enabled#`.",
|
|
116
121
|
"configuration.markdown.validate.unusedLinkDefinitions.description": "Validez les définitions de lien inutilisées dans le fichier actif.",
|
|
117
|
-
"configuration.pasteUrlAsFormattedLink.always": "
|
|
118
|
-
"configuration.pasteUrlAsFormattedLink.never": "
|
|
119
|
-
"configuration.pasteUrlAsFormattedLink.smart": "
|
|
122
|
+
"configuration.pasteUrlAsFormattedLink.always": "Always insert Markdown links.",
|
|
123
|
+
"configuration.pasteUrlAsFormattedLink.never": "Never create Markdown links.",
|
|
124
|
+
"configuration.pasteUrlAsFormattedLink.smart": "Smartly create Markdown links by default when not pasting into a code block or other special element. Use the paste widget to switch between pasting as plain text or as Markdown links.",
|
|
125
|
+
"configuration.pasteUrlAsFormattedLink.smartWithSelection": "Smartly create Markdown links by default when you have selected text and are not pasting into a code block or other special element. Use the paste widget to switch between pasting as plain text or as Markdown links.",
|
|
120
126
|
"description": "Fournit une prise en charge riche de langage pour Markdown",
|
|
121
127
|
"displayName": "Fonctionnalités de langage Markdown",
|
|
122
128
|
"markdown.copyImage.title": "Copier l’image",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"Runs the script under the debugger": "Exécute le script avec le débogueur",
|
|
30
30
|
"The currently latest version of the package": "Dernière version du package",
|
|
31
31
|
"The setting \"npm.autoDetect\" is \"off\".": "Le paramètre \"npm.autoDetect\" est \"off\".",
|
|
32
|
-
"Using {0} as the preferred package manager. Found multiple lockfiles for {1}. To resolve this issue, delete the lockfiles that don
|
|
32
|
+
"Using {0} as the preferred package manager. Found multiple lockfiles for {1}. To resolve this issue, delete the lockfiles that don't match your preferred package manager or change the setting \"npm.packageManager\" to a value other than \"auto\".": "Utilisation de {0} comme gestionnaire de package favori. Plusieurs fichiers de verrouillage ont été trouvés pour {1}. Pour résoudre ce problème, supprimez les fichiers de verrouillage qui ne correspondent pas à votre gestionnaire de package préféré ou remplacez le paramètre « npm.packageManager » par une valeur autre que « auto ».",
|
|
33
33
|
"in {0}": "dans {0}",
|
|
34
34
|
"latest": "Plus récent",
|
|
35
35
|
"now": "maintenant",
|
|
@@ -34,7 +34,6 @@
|
|
|
34
34
|
"Could not install typings files for JavaScript language features. Please ensure that NPM is installed, or configure 'typescript.npm' in your user settings. Alternatively, check the [documentation]({0}) to learn more.": "Impossible d’installer les fichiers de saisie pour les fonctionnalités du langage JavaScript. Vérifiez que NPM est installé ou configurez 'typescript.npm' dans vos paramètres utilisateur. Vous pouvez également consulter la [documentation]({0}) pour en savoir plus.",
|
|
35
35
|
"Could not load the TypeScript version at this path": "Impossible de charger la version TypeScript dans ce chemin",
|
|
36
36
|
"Could not open TS Server log file": "Impossible d'ouvrir le fichier journal du serveur TS",
|
|
37
|
-
"Destination Files": "Fichiers de destination",
|
|
38
37
|
"Disable logging": "Désactiver la journalisation",
|
|
39
38
|
"Disables semantic checking in a JavaScript file. Must be at the top of a file.": "Désactive la vérification sémantique dans un fichier JavaScript. Doit se trouver au début d'un fichier.",
|
|
40
39
|
"Dismiss": "Ignorer",
|
|
@@ -102,22 +101,21 @@
|
|
|
102
101
|
"TS Server logging is currently enabled which may impact performance.": "La journalisation du serveur TS est actuellement activée, ce qui peut avoir un impact sur les performances.",
|
|
103
102
|
"TS Server logging is off. Please set 'typescript.tsserver.log' and restart the TS server to enable logging": "La journalisation du serveur TS est désactivée. Définissez 'typescript.tsserver.log' et redémarrez le serveur TS pour activer la journalisation",
|
|
104
103
|
"The JS/TS language service crashed 5 times in the last 5 Minutes.": "Le service de langage JS/TS s’est arrêté 5 fois au cours des 5 dernières minutes.",
|
|
105
|
-
"The JS/TS language service crashed 5 times in the last 5 Minutes
|
|
104
|
+
"The JS/TS language service crashed 5 times in the last 5 Minutes.\r\nThis may be caused by a plugin contributed by one of these extensions: {0}\r\nPlease try disabling these extensions before filing an issue against VS Code.": "The JS/TS language service crashed 5 times in the last 5 Minutes.\r\nThis may be caused by a plugin contributed by one of these extensions: {0}\r\nPlease try disabling these extensions before filing an issue against VS Code.",
|
|
106
105
|
"The JS/TS language service crashed.": "Le service de langage JS/TS s’est bloqué.",
|
|
107
|
-
"The JS/TS language service crashed
|
|
106
|
+
"The JS/TS language service crashed.\r\nThis may be caused by a plugin contributed by one of these extensions: {0}.\r\nPlease try disabling these extensions before filing an issue against VS Code.": "The JS/TS language service crashed.\r\nThis may be caused by a plugin contributed by one of these extensions: {0}.\r\nPlease try disabling these extensions before filing an issue against VS Code.",
|
|
108
107
|
"The JS/TS language service immediately crashed 5 times. The service will not be restarted.": "Le service de langage JS/TS s’est arrêté 5 fois immédiatement. Le service ne sera pas redémarré.",
|
|
109
|
-
"The JS/TS language service immediately crashed 5 times. The service will not be restarted
|
|
108
|
+
"The JS/TS language service immediately crashed 5 times. The service will not be restarted.\r\nThis may be caused by a plugin contributed by one of these extensions: {0}.\r\nPlease try disabling these extensions before filing an issue against VS Code.": "The JS/TS language service immediately crashed 5 times. The service will not be restarted.\r\nThis may be caused by a plugin contributed by one of these extensions: {0}.\r\nPlease try disabling these extensions before filing an issue against VS Code.",
|
|
110
109
|
"The current selection cannot be extracted": "Impossible d'extraire la sélection actuelle",
|
|
110
|
+
"The path {0} doesn't point to a valid Node installation to run TS Server. Falling back to bundled Node.": "The path {0} doesn't point to a valid Node installation to run TS Server. Falling back to bundled Node.",
|
|
111
111
|
"The path {0} doesn't point to a valid tsserver install. Falling back to bundled TypeScript version.": "Le chemin {0} ne pointe pas vers une installation tsserver valide. Utilisation par défaut de la version TypeScript groupée.",
|
|
112
|
-
"The
|
|
113
|
-
"The path {0} doesn\\'t point to a valid tsserver install. Falling back to bundled TypeScript version.": "Le chemin {0} ne pointe pas vers une installation tsserver valide. Utilisation par défaut de la version TypeScript groupée.",
|
|
114
|
-
"The workspace is using an old version of TypeScript ({0}).\\n\\nBefore reporting an issue, please update the workspace to use TypeScript {1} or newer to make sure the bug has not already been fixed.": "L’espace de travail utilise une ancienne version de TypeScript ({0}).\\n\\nAvant de signaler un problème, veuillez mettre à jour l’espace de travail pour utiliser TypeScript {1} ou une version plus récente pour vérifier que le bogue n’a pas déjà été corrigé.",
|
|
112
|
+
"The workspace is using an old version of TypeScript ({0}).\r\n\r\nBefore reporting an issue, please update the workspace to use TypeScript {1} or newer to make sure the bug has not already been fixed.": "The workspace is using an old version of TypeScript ({0}).\r\n\r\nBefore reporting an issue, please update the workspace to use TypeScript {1} or newer to make sure the bug has not already been fixed.",
|
|
115
113
|
"This workspace contains a TypeScript version. Would you like to use the workspace TypeScript version for TypeScript and JavaScript language features?": "Cet espace de travail contient une version TypeScript. Voulez-vous utiliser la version TypeScript de l'espace de travail pour les fonctionnalités de langage TypeScript et JavaScript ?",
|
|
116
114
|
"This workspace wants to use the Node installation at '{0}' to run TS Server. Would you like to use it?": "Cet espace de travail souhaite utiliser l'installation Node sur '{0}' pour exécuter TS Server. Voulez-vous l'utiliser ?",
|
|
117
115
|
"To enable project-wide JavaScript/TypeScript language features, exclude folders with many files, like: {0}": "Pour activer les fonctionnalités de langage JavaScript/TypeScript à l'échelle du projet, excluez les dossiers contenant de nombreux fichiers, par exemple : {0}",
|
|
118
116
|
"To enable project-wide JavaScript/TypeScript language features, exclude large folders with source files that you do not work on.": "Pour activer les fonctionnalités de langage JavaScript/TypeScript à l'échelle du projet, excluez les dossiers volumineux contenant des fichiers sources inutilisés.",
|
|
119
117
|
"TypeScript Server Log": "TypeScript Server Log",
|
|
120
|
-
"TypeScript Task in tasks.json contains
|
|
118
|
+
"TypeScript Task in tasks.json contains \"\\\\\". TypeScript tasks tsconfig must use \"/\"": "La tâche Typescript dans tasks.json contient \"\\\\\". Les tâches Typescript tsconfig doivent utiliser \"/\"",
|
|
121
119
|
"TypeScript Version": "TypeScript Version",
|
|
122
120
|
"TypeScript language server exited with error. Error message is: {0}": "Le serveur de langage TypeScript a rencontré une erreur. Le message d'erreur est : {0}",
|
|
123
121
|
"TypeScript: Configure Excludes": "TypeScript : configurer les exclusions",
|
|
@@ -125,9 +123,10 @@
|
|
|
125
123
|
"Update imports for the following {0} files?": "Mettre à jour les importations des fichiers {0} suivants ?",
|
|
126
124
|
"Use VS Code's Version": "Utiliser la version de VS Code",
|
|
127
125
|
"Use Workspace Version": "Utiliser la version de l'espace de travail",
|
|
128
|
-
"VS Code
|
|
126
|
+
"VS Code's tsserver was deleted by another application such as a misbehaving virus detection tool. Please reinstall VS Code.": "Le tsserver de VSCode a été supprimé par une autre application, par exemple, un outil de détection de virus mal configuré. Réinstallez VS Code.",
|
|
129
127
|
"Yes": "Oui",
|
|
130
128
|
"build - {0}": "build - {0}",
|
|
129
|
+
"destination files": "destination files",
|
|
131
130
|
"invalid version": "La version n'est pas valide",
|
|
132
131
|
"watch - {0}": "espion - {0}",
|
|
133
132
|
"{0} (Fix all in file)": "{0} (Corriger tout dans le fichier)",
|