-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathwinget.resw
More file actions
3373 lines (3362 loc) · 201 KB
/
Copy pathwinget.resw
File metadata and controls
3373 lines (3362 loc) · 201 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="AdjoinedNotFlagError" xml:space="preserve">
<value>L’alias contigu n’est pas un indicateur : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an adjoined alias that is not a flag argument. {0} is a placeholder replaced by the user input argument (e.g. '-ab').</comment>
</data>
<data name="AdjoinedNotFoundError" xml:space="preserve">
<value>Alias de drapeau contigu introuvable : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an adjoined flag alias argument that was not found. {0} is a placeholder replaced by the user input argument (e.g. '-ab').</comment>
</data>
<data name="AvailableArguments" xml:space="preserve">
<value>Les arguments suivants sont disponibles :</value>
<comment>Message displayed to inform the user about the available command line arguments.</comment>
</data>
<data name="AvailableCommandAliases" xml:space="preserve">
<value>Les alias de commande suivants sont disponibles :</value>
<comment>Message displayed to inform the user about the available command line alias arguments.</comment>
</data>
<data name="AvailableCommands" xml:space="preserve">
<value>Les commandes suivantes sont disponibles :</value>
<comment>Title displayed to inform the user about the available commands.</comment>
</data>
<data name="AvailableHeader" xml:space="preserve">
<value>Disponible</value>
<comment>As in "a new version is available to upgrade to".</comment>
</data>
<data name="AvailableOptions" xml:space="preserve">
<value>Les options suivantes sont disponibles :</value>
<comment>Message displayed to inform the user about the available options.</comment>
</data>
<data name="AvailableSubcommands" xml:space="preserve">
<value>Les sous-commandes suivantes sont disponibles :</value>
<comment>Message displayed to inform the user about the available nested commands that run in context of the selected command.</comment>
</data>
<data name="AvailableUpgrades" xml:space="preserve">
<value>{0} mises à niveau disponibles.</value>
<comment>{Locked="{0}"} Message displayed to inform the user about available package upgrades. {0} is a placeholder replaced by the number of package upgrades.</comment>
</data>
<data name="ChannelArgumentDescription" xml:space="preserve">
<value>Utiliser le canal spécifié; par défaut, il s’agit du grand public</value>
</data>
<data name="Command" xml:space="preserve">
<value>commande</value>
<comment>Label displayed for a command to give the software.</comment>
</data>
<data name="CommandArgumentDescription" xml:space="preserve">
<value>Filtrer les résultats par commande</value>
<comment>Description message displayed to inform the user about filtering the search results by a package command.</comment>
</data>
<data name="CommandLineArgumentDescription" xml:space="preserve">
<value>La ligne de commande complète pour l’achèvement</value>
</data>
<data name="CommandRequiresAdmin" xml:space="preserve">
<value>Cette commande nécessite des privilèges d'administrateur pour être exécutée.</value>
</data>
<data name="CompleteCommandLongDescription" xml:space="preserve">
<value>Cette commande peut être utilisée pour demander la saisie semi-automatique de la ligne de commande sensible au contexte. La ligne de commande, la position du curseur et le mot à terminer sont transmis. La sortie est un ensemble de valeurs potentielles basées sur les entrées, avec une valeur possible par ligne.</value>
</data>
<data name="CompleteCommandShortDescription" xml:space="preserve">
<value>Active l’achèvement de la ligne de commande sensible au contexte</value>
</data>
<data name="CountArgumentDescription" xml:space="preserve">
<value>Afficher au maximum le nombre spécifié de résultats (entre 1 et 1 000)</value>
</data>
<data name="Done" xml:space="preserve">
<value>Terminé</value>
<comment>Label displayed when an operation completes or is done executing.</comment>
</data>
<data name="ExactArgumentDescription" xml:space="preserve">
<value>Rechercher un package en utilisant une correspondance exacte</value>
<comment>Description message displayed to inform the user about finding an application package using an exact matching criteria.</comment>
</data>
<data name="ExperimentalArgumentDescription" xml:space="preserve">
<value>Argument expérimental à des fins de démonstration</value>
</data>
<data name="ExperimentalCommandLongDescription" xml:space="preserve">
<value>Cette commande illustre comment implémenter une fonctionnalité expérimentale. Pour l’activer, accédez à « winget settings » et activez les fonctionnalités experimentalCmd ou experimentalArg.</value>
<comment>{Locked="winget settings"}</comment>
</data>
<data name="ExperimentalCommandShortDescription" xml:space="preserve">
<value>Exemple de fonctionnalité expérimentale</value>
</data>
<data name="ExtraPositionalError" xml:space="preserve">
<value>Un argument positionnel a été trouvé lorsque aucune valeur n’était attendue : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an extra positional argument when none was expected. {0} is a placeholder replaced by the user's extra argument input.</comment>
</data>
<data name="FeatureDisabledMessage" xml:space="preserve">
<value>Cette fonctionnalité est un travail en cours et peut être modifiée considérablement ou supprimée à l’avenir. Pour l’activer, modifiez vos paramètres ('winget settings') pour inclure la fonctionnalité expérimentale : '{0}'</value>
<comment>{Locked="winget settings","{0}"}. Error message displayed when the user uses an experimental feature that is disabled. {0} is a placeholder replaced by the experimental feature name.</comment>
</data>
<data name="FeaturesCommandLongDescription" xml:space="preserve">
<value>Affiche le statut des fonctionnalités expérimentales. Les fonctionnalités expérimentales peuvent être activées via « winget settings ».</value>
<comment>{Locked="winget settings"}</comment>
</data>
<data name="FeaturesCommandShortDescription" xml:space="preserve">
<value>Affiche le statut des fonctionnalités expérimentales</value>
</data>
<data name="FeaturesDisabled" xml:space="preserve">
<value>Désactivé</value>
</data>
<data name="FeaturesEnabled" xml:space="preserve">
<value>Activé</value>
</data>
<data name="FeaturesFeature" xml:space="preserve">
<value>Fonctionnalité</value>
</data>
<data name="FeaturesLink" xml:space="preserve">
<value>Lien</value>
</data>
<data name="FeaturesMessage" xml:space="preserve">
<value>Les fonctionnalités expérimentales suivantes sont en cours.
Elles peuvent être configurées par le biais du fichier de paramètres « winget settings ».</value>
<comment>{Locked="winget settings"}</comment>
</data>
<data name="FeaturesProperty" xml:space="preserve">
<value>Propriété</value>
</data>
<data name="FeaturesStatus" xml:space="preserve">
<value>Statut</value>
</data>
<data name="FileArgumentDescription" xml:space="preserve">
<value>Fichier à hacher</value>
</data>
<data name="FlagContainAdjoinedError" xml:space="preserve">
<value>L’argument indicateur ne peut pas contenir de valeur contigüe : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a flag argument containing an unexpected adjoined value. {0} is a placeholder replaced by the user input.</comment>
</data>
<data name="HashCommandLongDescription" xml:space="preserve">
<value>Calcule le hachage d’un fichier local, approprié pour l’entrée dans un manifeste. Il peut également calculer le hachage du fichier de signature d’un paquet MSIX afin d’activer les installations en continu.</value>
</data>
<data name="HashCommandShortDescription" xml:space="preserve">
<value>Assistant pour le hachage des fichiers d’installation</value>
</data>
<data name="HelpArgumentDescription" xml:space="preserve">
<value>Affiche l’aide sur la commande sélectionnée</value>
</data>
<data name="HelpForDetails" xml:space="preserve">
<value>Pour en savoir plus sur une commande spécifique, passez-la à l’argument aide.</value>
</data>
<data name="HelpLinkPreamble" xml:space="preserve">
<value>Vous trouverez de l’aide supplémentaire sur : '{0}'</value>
<comment>{Locked="{0}"} Message displayed to inform the user about a link where they can learn more about the subject context. {0} is a placeholder replaced by a website address.</comment>
</data>
<data name="IdArgumentDescription" xml:space="preserve">
<value>Filtrer les résultats par identifiant</value>
</data>
<data name="IgnoreWarningsArgumentDescription" xml:space="preserve">
<value>Supprime les sorties d'avertissement</value>
</data>
<data name="InstallationDisclaimer1" xml:space="preserve">
<value>La licence d’utilisation de cette application vous est octroyée par son propriétaire.</value>
</data>
<data name="InstallationDisclaimer2" xml:space="preserve">
<value>Microsoft n’est pas responsable des paquets tiers et n’accorde pas de licences à ceux-ci.</value>
</data>
<data name="InstallationDisclaimerMSStore" xml:space="preserve">
<value>Ce package est fourni via Microsoft Store. Le winget devra peut-être acquérir le package à partir du Microsoft Store pour le compte de l’utilisateur actuel.</value>
<comment>{Locked="winget"}</comment>
</data>
<data name="InstallCommandLongDescription" xml:space="preserve">
<value>Installe le package sélectionné, trouvé en recherchant une source configurée ou directement à partir d’un manifeste. Par défaut, la requête doit correspondre à l’id, name ou moniker du package sans respecter la casse. D’autres champs peuvent être utilisés en passant leur option appropriée. Par défaut, la commande install vérifie l’état d’installation du package et tente d’effectuer une mise à niveau, le cas échéant. Remplacez par --force pour effectuer une installation directe.</value>
<comment>{Locked="--force"}; id, name, and moniker are all named values in our context, and may benefit from not being translated. The match must be for any of them, with comparison ignoring case.</comment>
</data>
<data name="InstallCommandShortDescription" xml:space="preserve">
<value>Installe le package donné</value>
</data>
<data name="InstallerHashMismatchAdminBlock" xml:space="preserve">
<value>Le code de hachage de l’installation ne correspond pas ; ceci ne peut pas être contourné lors d’une exécution en tant qu’administrateur</value>
</data>
<data name="InstallerHashMismatchOverridden" xml:space="preserve">
<value>Le hachage du programme d’installation ne correspond pas ; continuer en raison de --ignore-security-hash</value>
<comment>{Locked="--ignore-security-hash"}</comment>
</data>
<data name="InstallerHashMismatchOverrideRequired" xml:space="preserve">
<value>Le hachage de l'installateur ne correspond pas ; pour remplacer cette vérification, utilisez --ignore-security-hash.</value>
<comment>{Locked="--ignore-security-hash"}</comment>
</data>
<data name="InstallerHashVerified" xml:space="preserve">
<value>Le code de hachage de l’installation a été vérifié avec succès</value>
</data>
<data name="InstallFlowInstallSuccess" xml:space="preserve">
<value>Installé correctement</value>
</data>
<data name="InstallFlowStartingPackageInstall" xml:space="preserve">
<value>Démarrage du package d’installation... Merci de patienter.</value>
</data>
<data name="HashOverrideArgumentDescription" xml:space="preserve">
<value>Ignorer l’échec de la vérification de hachage du programme d’installation</value>
</data>
<data name="IgnoreLocalArchiveMalwareScanArgumentDescription" xml:space="preserve">
<value>Ignorer l’analyse des programmes malveillants effectuée dans le cadre de l’installation d’un package de type archive à partir du manifeste local</value>
</data>
<data name="InteractiveArgumentDescription" xml:space="preserve">
<value>Demander une installation interactive; l’intervention de l’utilisateur peut être nécessaire</value>
</data>
<data name="InvalidAliasError" xml:space="preserve">
<value>L’alias d’argument n’a pas été reconnu pour la commande actuelle : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a command line argument alias that was not recognized for a selected command. {0} is a placeholder replaced by the user's argument alias input (e.g. '-a').</comment>
</data>
<data name="InvalidArgumentSpecifierError" xml:space="preserve">
<value>Spécificateur d’argument non valide : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an invalid argument specifier. {0} is a placeholder replaced by an argument specifier (e.g. '-').</comment>
</data>
<data name="InvalidNameError" xml:space="preserve">
<value>Le nom de l’argument n’a pas été reconnu pour la commande actuelle : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an unrecognized command line argument name for the selected command. {0} is a placeholder replaced by the user's argument name input (e.g. '--example').</comment>
</data>
<data name="KeyDirectoriesHeader" xml:space="preserve">
<value>Répertoires Winget</value>
<comment>Header for a table detailing the directories Winget uses for key operations like logging and portable installs</comment>
</data>
<data name="LocaleArgumentDescription" xml:space="preserve">
<value>Paramètres régionaux à utiliser (format BCP47)</value>
<comment>{Locked="BCP47"}</comment>
</data>
<data name="LicenseAgreement" xml:space="preserve">
<value>Contrat de licence</value>
</data>
<data name="Links" xml:space="preserve">
<value>Liens</value>
<comment>Links to different webpages</comment>
</data>
<data name="ListCommandLongDescription" xml:space="preserve">
<value>La commande list affiche les packages installés sur le système, et indique si une mise à niveau est disponible. Des options supplémentaires peuvent être proposées pour filtrer la sortie, comme pour la commande search.</value>
<comment>{Locked="list","search"}</comment>
</data>
<data name="ListCommandShortDescription" xml:space="preserve">
<value>Afficher les packages installés</value>
</data>
<data name="LocationArgumentDescription" xml:space="preserve">
<value>Emplacement d’installation (si pris en charge)</value>
</data>
<data name="LogArgumentDescription" xml:space="preserve">
<value>Emplacement du journal (si pris en charge)</value>
</data>
<data name="MainCopyrightNotice" xml:space="preserve">
<value>Copyright (c) Microsoft Corporation. Tous droits réservés.</value>
</data>
<data name="MainHomepage" xml:space="preserve">
<value>Page d’accueil</value>
<comment>The primary webpage for the software</comment>
</data>
<data name="ManifestArgumentDescription" xml:space="preserve">
<value>Chemin d’accès au manifeste du package</value>
</data>
<data name="ManifestValidationFail" xml:space="preserve">
<value>La validation du manifeste a échoué.</value>
</data>
<data name="ManifestValidationSuccess" xml:space="preserve">
<value>La validation du manifeste a réussi.</value>
</data>
<data name="ManifestValidationWarning" xml:space="preserve">
<value>La validation des manifestes a réussi avec des avertissements.</value>
</data>
<data name="MissingArgumentError" xml:space="preserve">
<value>Valeur d’argument requise, mais aucune trouvé : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user does not provide a required command line argument value. {0} is a placeholder replaced by the argument name.</comment>
</data>
<data name="MonikerArgumentDescription" xml:space="preserve">
<value>Filtrer les résultats par nom</value>
</data>
<data name="MsixArgumentDescription" xml:space="preserve">
<value>Le fichier d’entrée sera traité en tant que MSIX; le hachage de la signature sera fourni s’il est signé</value>
</data>
<data name="MsixSignatureHashFailed" xml:space="preserve">
<value>Impossible de calculer le hachage de la signature MSIX.</value>
</data>
<data name="MSStoreAppBlocked" xml:space="preserve">
<value>Échec de l’installation ou de la mise à niveau du package Microsoft Store en raison du blocage de l’application en question par une stratégie</value>
</data>
<data name="MSStoreInstallOrUpdateFailed" xml:space="preserve">
<value>Échec de l’installation ou de la mise à niveau du package Microsoft Store. Code d’erreur : {0}</value>
<comment>{Locked="{0}"} Error message displayed when a Microsoft Store application package fails to install or upgrade. {0} is a placeholder replaced by an error code.</comment>
</data>
<data name="MSStoreStoreClientBlocked" xml:space="preserve">
<value>Échec de l’installation ou de la mise à niveau du package Microsoft Store en raison du blocage du client Microsoft Store par une stratégie</value>
</data>
<data name="MSStoreInstallTryGetEntitlement" xml:space="preserve">
<value>Vérification/demande en cours relative à l’acquisition du package...</value>
</data>
<data name="MultipleInstalledPackagesFound" xml:space="preserve">
<value>Plusieurs packages installés correspondent à vos critères saisis. Veuillez affiner votre recherche.</value>
</data>
<data name="MultiplePackagesFound" xml:space="preserve">
<value>Plusieurs packages correspondent à vos critères. Veuillez affiner votre recherche.</value>
</data>
<data name="NameArgumentDescription" xml:space="preserve">
<value>Filtrer les résultats par nom</value>
</data>
<data name="NoApplicableInstallers" xml:space="preserve">
<value>Aucun programme d’installation applicable n’a été trouvé. Pour plus d’informations, consultez les journaux.</value>
</data>
<data name="NoExperimentalFeaturesMessage" xml:space="preserve">
<value>Aucune fonctionnalité expérimentale n’est actuellement disponible. </value>
</data>
<data name="NoInstalledPackageFound" xml:space="preserve">
<value>Aucun package installé ne correspond aux critères saisis.</value>
</data>
<data name="NoPackageFound" xml:space="preserve">
<value>Aucun package ne correspond aux critères sélectionnés.</value>
</data>
<data name="NoVTArgumentDescription" xml:space="preserve">
<value>Désactive l’affichage VirtualTerminal</value>
<comment>{Locked="VirtualTerminal"}</comment>
</data>
<data name="OpenLogsArgumentDescription" xml:space="preserve">
<value>Ouvrir l’emplacement des journaux par défaut</value>
</data>
<data name="Options" xml:space="preserve">
<value>options</value>
<comment>Options to change how a command works</comment>
</data>
<data name="OverrideArgumentDescription" xml:space="preserve">
<value>Remplacer les arguments à transmettre au programme d’installation</value>
</data>
<data name="Package" xml:space="preserve">
<value>Package : {0}</value>
<comment>{Locked="{0}"} Label displayed for a software package. {0} is a placeholder replaced by the software package name.</comment>
</data>
<data name="PendingWorkError" xml:space="preserve">
<value>Désolé... nous avons oublié de le faire...</value>
</data>
<data name="PositionArgumentDescription" xml:space="preserve">
<value>Position du curseur dans la ligne de commande</value>
</data>
<data name="PrivacyStatement" xml:space="preserve">
<value>Déclaration de confidentialité</value>
</data>
<data name="QueryArgumentDescription" xml:space="preserve">
<value>Requête utilisée pour rechercher un package</value>
</data>
<data name="RainbowArgumentDescription" xml:space="preserve">
<value>La progression affiche un arc-en-ciel de couleurs</value>
</data>
<data name="RequiredArgError" xml:space="preserve">
<value>Argument obligatoire non fourni : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user does not provide a required command line argument. {0} is a placeholder replaced by an argument name.</comment>
</data>
<data name="RetroArgumentDescription" xml:space="preserve">
<value>Affichage de l’avancement comme couleur par défaut</value>
</data>
<data name="SearchCommandLongDescription" xml:space="preserve">
<value>Recherches de packages à partir de sources configurées.</value>
</data>
<data name="SearchCommandShortDescription" xml:space="preserve">
<value>Rechercher et afficher des informations de base sur les packages</value>
</data>
<data name="SearchId" xml:space="preserve">
<value>Id</value>
<comment>Abbreviation of Identifier.</comment>
</data>
<data name="SearchMatch" xml:space="preserve">
<value>Correspondance</value>
</data>
<data name="SearchName" xml:space="preserve">
<value>Nom</value>
</data>
<data name="SearchSource" xml:space="preserve">
<value>Source</value>
</data>
<data name="SearchTruncated" xml:space="preserve">
<value>entrées supplémentaires tronquées en raison de la limite de résultats</value>
</data>
<data name="SearchVersion" xml:space="preserve">
<value>Version</value>
</data>
<data name="SettingLoadFailure" xml:space="preserve">
<value>Les erreurs suivantes ont été détectées lors de la validation des paramètres :</value>
</data>
<data name="SettingsCommandLongDescription" xml:space="preserve">
<value>Ouvrez les paramètres dans l’éditeur de texte JSON par défaut. Si aucun éditeur n’est configuré, ouvre les paramètres dans le bloc-notes. Pour les paramètres disponibles, consultez https://aka.ms/winget-settings Cette commande peut également être utilisée pour définir les paramètres de l’administrateur en fournissant un argument '---enable' ou '---disable'.</value>
<comment>{Locked="--enable"} {Locked="--disable"}</comment>
</data>
<data name="SettingsCommandShortDescription" xml:space="preserve">
<value>Ouvrir les paramètres ou définir les paramètres d’administrateur</value>
</data>
<data name="SettingsWarnings" xml:space="preserve">
<value>Erreur inattendue lors du chargement des paramètres. Vérifiez vos paramètres en exécutant la commande 'settings'.</value>
<comment>{Locked="'settings'"}</comment>
</data>
<data name="ShowChannel" xml:space="preserve">
<value>Canal</value>
</data>
<data name="ShowCommandLongDescription" xml:space="preserve">
<value>Affiche des informations sur un package spécifique. Par défaut, la requête doit correspondre de façon non sensible à la casse à l’ID, au nom ou au moniker du package. D’autres champs peuvent être utilisés en passant l’option appropriée.</value>
<comment>id, name, and moniker are all named values in our context, and may benefit from not being translated. The match must be for any of them, with comparison ignoring case.</comment>
</data>
<data name="ShowCommandShortDescription" xml:space="preserve">
<value>Affiche des informations sur un package</value>
</data>
<data name="ShowVersion" xml:space="preserve">
<value>Version</value>
</data>
<data name="SilentArgumentDescription" xml:space="preserve">
<value>Demander une installation sans assistance</value>
</data>
<data name="SingleCharAfterDashError" xml:space="preserve">
<value>Seul l’alias de caractère peut se produire après une seule – : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides more than a single character command line alias argument after an alias argument specifier '-'. {0} is a placeholder replaced by the user's argument input.</comment>
</data>
<data name="SourceAddAlreadyExistsDifferentArg" xml:space="preserve">
<value>Une source avec le nom spécifié existe déjà et fait référence à un autre emplacement :</value>
</data>
<data name="SourceAddAlreadyExistsDifferentName" xml:space="preserve">
<value>Une source portant un nom différent fait déjà référence à cet emplacement :</value>
</data>
<data name="SourceAddAlreadyExistsMatch" xml:space="preserve">
<value>Une source avec le nom spécifié existe déjà et fait référence au même emplacement :</value>
</data>
<data name="SourceAddBegin" xml:space="preserve">
<value>Ajout de la source :</value>
</data>
<data name="SourceAddCommandLongDescription" xml:space="preserve">
<value>Ajoutez une nouvelle source. Une source fournit les données vous permettant de découvrir et d’installer des packages. Ajoutez une nouvelle source uniquement si elle est fiable en tant qu’emplacement sécurisé.</value>
</data>
<data name="SourceAddCommandShortDescription" xml:space="preserve">
<value>Ajouter une nouvelle source</value>
</data>
<data name="SourceArgArgumentDescription" xml:space="preserve">
<value>Argument donné à la source</value>
</data>
<data name="SourceArgumentDescription" xml:space="preserve">
<value>Rechercher un package à l’aide de la source indiquée</value>
</data>
<data name="SourceCommandLongDescription" xml:space="preserve">
<value>Gérer les sources à l’aide des sous-commandes. Une source fournit les données vous permettant de découvrir et d’installer des packages. Ajoutez une nouvelle source uniquement si elle est fiable en tant qu’emplacement sécurisé.</value>
</data>
<data name="SourceCommandShortDescription" xml:space="preserve">
<value>Gérer les sources des packages</value>
</data>
<data name="SourceListArg" xml:space="preserve">
<value>Argument</value>
<comment>Value given to source.</comment>
</data>
<data name="SourceListCommandLongDescription" xml:space="preserve">
<value>Répertorier toutes les sources actuelles ou tous les détails d’une source précise.</value>
</data>
<data name="SourceListCommandShortDescription" xml:space="preserve">
<value>Répertorier les sources actuelles</value>
</data>
<data name="SourceListData" xml:space="preserve">
<value>Données</value>
<comment>Data stored by the source.</comment>
</data>
<data name="SourceListField" xml:space="preserve">
<value>Champ</value>
<comment>The name of a piece of information about a source.</comment>
</data>
<data name="SourceListName" xml:space="preserve">
<value>Nom</value>
<comment>The name of the source.</comment>
</data>
<data name="SourceListIdentifier" xml:space="preserve">
<value>Identificateur</value>
<comment>The source's unique identifier.</comment>
</data>
<data name="SourceListNoneFound" xml:space="preserve">
<value>Désolé... Nous n’avons pas pu trouver la source nommée : {0}</value>
<comment>Error message displayed when the user provides a repository source name that was not found. {0} is a placeholder replaced by the user input.</comment>
</data>
<data name="SourceListNoSources" xml:space="preserve">
<value>Aucune source n’est configurée.</value>
</data>
<data name="SourceListType" xml:space="preserve">
<value>Type</value>
<comment>The kind of source.</comment>
</data>
<data name="SourceListUpdated" xml:space="preserve">
<value>Mis(e) à jour</value>
<comment>The last time the source was updated.</comment>
</data>
<data name="SourceListUpdatedNever" xml:space="preserve">
<value>jamais</value>
<comment>The source has never been updated.</comment>
</data>
<data name="SourceListValue" xml:space="preserve">
<value>Valeur</value>
<comment>The value of information about a source.</comment>
</data>
<data name="SourceNameArgumentDescription" xml:space="preserve">
<value>Nom de la source</value>
</data>
<data name="SourceOpenFailedSuggestion" xml:space="preserve">
<value>Échec lors de l’ouverture de la ou des sources ; essayez la commande « source reset» si le problème persiste.</value>
<comment>{Locked="source reset"}</comment>
</data>
<data name="SourceOpenPredefinedFailedSuggestion" xml:space="preserve">
<value>Échec de l’ouverture de la source prédéfinie ; veuillez le signaler aux chargés de maintenance winget.</value>
<comment>{Locked="winget"}</comment>
</data>
<data name="SourceRemoveAll" xml:space="preserve">
<value>Suppression en cours de toutes les sources... Merci de patienter.</value>
</data>
<data name="SourceRemoveCommandLongDescription" xml:space="preserve">
<value>Supprimer une source précise.</value>
</data>
<data name="SourceRemoveCommandShortDescription" xml:space="preserve">
<value>Supprimer les sources actuelles</value>
</data>
<data name="SourceRemoveOne" xml:space="preserve">
<value>Suppression de la source : {0}...</value>
<comment>{Locked="{0}"} Message displayed to inform the user about a registered repository source that is currently being removed. {0} is a placeholder replaced by the repository source name.</comment>
</data>
<data name="SourceResetAll" xml:space="preserve">
<value>Réinitialisation en cours de toutes les sources... Merci de patienter.</value>
</data>
<data name="SourceResetCommandLongDescription" xml:space="preserve">
<value>Cette commande supprime les sources existantes, en conservant éventuellement les données locales. Utilisée sans argument, elle supprime toutes les sources et ajoute les sources par défaut. Si une source nommée est fournie, seule cette source est supprimée.</value>
</data>
<data name="SourceResetCommandShortDescription" xml:space="preserve">
<value>Réinitialiser les sources</value>
</data>
<data name="SourceResetForceArgumentDescription" xml:space="preserve">
<value>Force la réinitialisation des sources</value>
</data>
<data name="SourceResetListAndOverridePreamble" xml:space="preserve">
<value>Les sources suivantes seront réinitialisées si l’option --force est proposée :</value>
<comment>{Locked="--force"}</comment>
</data>
<data name="SourceResetOne" xml:space="preserve">
<value>Réinitialisation de la source : {0}...</value>
<comment>{Locked="{0}"} Message displayed to inform the user about a repository source that is currently being reset. {0} is a placeholder replaced by the repository source name.</comment>
</data>
<data name="SourceTypeArgumentDescription" xml:space="preserve">
<value>Type de la source</value>
</data>
<data name="SourceUpdateAll" xml:space="preserve">
<value>Mise à jour en cours de toutes les sources... Merci de patienter.</value>
</data>
<data name="SourceUpdateCommandLongDescription" xml:space="preserve">
<value>Mettre à jour toutes les sources ou uniquement une source précise.</value>
</data>
<data name="SourceUpdateCommandShortDescription" xml:space="preserve">
<value>Mettre à jour les sources actuelles</value>
</data>
<data name="SourceUpdateOne" xml:space="preserve">
<value>Mise à jour de la source : {0}...</value>
<comment>{Locked="{0}"} Message displayed to inform the user about a registered repository source that is currently being updated. {0} is a placeholder replaced by the repository source name.</comment>
</data>
<data name="TagArgumentDescription" xml:space="preserve">
<value>Filtrer les résultats par mot-clé</value>
</data>
<data name="ThankYou" xml:space="preserve">
<value>Merci d’utiliser winget</value>
</data>
<data name="ThirdPartSoftwareNotices" xml:space="preserve">
<value>Avis de tiers</value>
</data>
<data name="ToolDescription" xml:space="preserve">
<value>L’utilitaire de ligne de commande winget permet d’installer des applications et d’autres packages à partir de la ligne de commande.</value>
</data>
<data name="ToolInfoArgumentDescription" xml:space="preserve">
<value>Afficher les informations générales de l’outil</value>
</data>
<data name="ToolVersionArgumentDescription" xml:space="preserve">
<value>Afficher la version de l’outil</value>
</data>
<data name="TooManyArgError" xml:space="preserve">
<value>Argument fourni plus de fois que le nombre autorisé : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a command line argument more times than it is allowed. {0} is a placeholder replaced by the user's argument name input.</comment>
</data>
<data name="TooManyBehaviorsError" xml:space="preserve">
<value>Plusieurs arguments de comportement d’exécution fournis : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides more than one execution behavior argument when installing an application package. {0} is a placeholder replaced by the user specified execution behaviors (e.g. 'silent|interactive').</comment>
</data>
<data name="UnexpectedErrorExecutingCommand" xml:space="preserve">
<value>Une erreur inattendue s'est produite lors de l'exécution de la commande :</value>
</data>
<data name="UninstallPreviousArgumentDescription" xml:space="preserve">
<value>Désinstaller la version précédente du package pendant la mise à niveau</value>
</data>
<data name="UnrecognizedCommand" xml:space="preserve">
<value>Commande non reconnue : '{0}'</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an unrecognized command. {0} is a placeholder replaced by the user input.</comment>
</data>
<data name="UpdateAllArgumentDescription" xml:space="preserve">
<value>Mettre à jour tous les paquets installés vers la dernière version si disponible</value>
</data>
<data name="UpdateNotApplicable" xml:space="preserve">
<value>Aucune mise à niveau applicable trouvée.</value>
</data>
<data name="UpdateNotApplicableReason" xml:space="preserve">
<value>Une version de package plus récente est disponible dans une source configurée, mais elle ne s’applique pas à votre système ou à la configuration requise.</value>
</data>
<data name="UpdateNoPackagesFound" xml:space="preserve">
<value>Mise à niveau disponible introuvable.</value>
</data>
<data name="UpdateNoPackagesFoundReason" xml:space="preserve">
<value>Aucune version de package plus récente n’est disponible à partir des sources configurées.</value>
</data>
<data name="UpgradeCommandLongDescription" xml:space="preserve">
<value>Mises à niveau du paquet sélectionné, trouvé en recherchant les paquets installés ou directement à partir d'un manifeste. Par défaut, la requête doit correspondre, sans respect de la casse, à l’identification, au nom ou au moniker du paquet. D’autres champs peuvent être utilisés en passant leur option appropriée. Si aucun argument n'est fourni, affiche les paquets avec des mises à jour disponibles.</value>
<comment>id, name, and moniker are all named values in our context, and may benefit from not being translated. The match must be for any of them, with comparison ignoring case.</comment>
</data>
<data name="UpgradeCommandShortDescription" xml:space="preserve">
<value>Affiche et effectue les mises à niveau disponibles.</value>
</data>
<data name="Usage" xml:space="preserve">
<value>Utilisation : {0} {1}</value>
<comment>{Locked="{0} {1}"} Message displayed to provide the user with instructions on how to use a command. {0} is a placeholder replaced by the program name (e.g. 'winget'). {1} is a placeholder replaced by the pattern for using the selected command.</comment>
</data>
<data name="ValidateCommandLongDescription" xml:space="preserve">
<value>Valide un manifeste à l’aide d’un ensemble de directives strict. Ceci est destiné à vous permettre de vérifier le manifeste avant de l’envoyer à un référentiel.</value>
</data>
<data name="ValidateCommandShortDescription" xml:space="preserve">
<value>Valide un fichier manifeste</value>
</data>
<data name="ValidateManifestArgumentDescription" xml:space="preserve">
<value>Chemin d’accès au manifeste à valider</value>
</data>
<data name="VerboseLogsArgumentDescription" xml:space="preserve">
<value>Active la journalisation détaillée pour WinGet</value>
</data>
<data name="VerifyFileSignedMsix" xml:space="preserve">
<value>Veuillez vérifier que le fichier d’entrée est un MSIX signé valide.</value>
</data>
<data name="VersionArgumentDescription" xml:space="preserve">
<value>Utiliser la version indiquée; la version par défaut est la dernière version</value>
</data>
<data name="VersionsArgumentDescription" xml:space="preserve">
<value>Afficher les versions disponibles du package</value>
</data>
<data name="WordArgumentDescription" xml:space="preserve">
<value>La valeur fournie avant l’achèvement est demandée</value>
</data>
<data name="GetManifestResultVersionNotFound" xml:space="preserve">
<value>Aucune version correspondante trouvée : {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user attempts to upgrade an application package to a version that was not found. {0} is a placeholder replaced by the user's provided upgrade package version.</comment>
</data>
<data name="OpenSourceFailedNoMatch" xml:space="preserve">
<value>Aucune source ne correspond à la valeur spécifiée : {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user attempts to install or upgrade an application package from a repository source that was not found. {0} is a placeholder replaced by the user's repository source name input.</comment>
</data>
<data name="OpenSourceFailedNoMatchHelp" xml:space="preserve">
<value>Les sources configurées sont :</value>
</data>
<data name="OpenSourceFailedNoSourceDefined" xml:space="preserve">
<value>Aucune source définie ; ajoutez-en une avec « source add » ou rétablissez les valeurs par défaut de « source reset »</value>
<comment>{Locked="source add","source reset"}</comment>
</data>
<data name="ReportIdentityFound" xml:space="preserve">
<value>Trouvé</value>
</data>
<data name="VerifyFileFailedIsDirectory" xml:space="preserve">
<value>Le chemin d’accès est un répertoire : {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a system path that is a directory. {0} is a placeholder replaced by the provided directory path.</comment>
</data>
<data name="VerifyFileFailedNotExist" xml:space="preserve">
<value>Le fichier n'existe pas : {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a system file that does not exist. {0} is a placeholder replaced by the provided file path.</comment>
</data>
<data name="BothManifestAndSearchQueryProvided" xml:space="preserve">
<value>Les arguments manifeste et requête de recherche locaux sont tous deux fournis</value>
</data>
<data name="Logs" xml:space="preserve">
<value>Journaux</value>
<comment>Label displayed for diagnostic files containing information about the application use.</comment>
</data>
<data name="InstallerBlockedByPolicy" xml:space="preserve">
<value>Le programme d’installation est bloqué par une stratégie</value>
</data>
<data name="InstallerFailedSecurityCheck" xml:space="preserve">
<value>Le programme d’installation a échoué vérification de sécurité</value>
</data>
<data name="InstallerFailedVirusScan" xml:space="preserve">
<value>Un produit antivirus signale une infection dans le programme d’installation</value>
</data>
<data name="SourceOpenWithFailedUpdate" xml:space="preserve">
<value>Échec de la tentative de mise à jour de la source : {0}</value>
<comment>{Locked="{0}"} Error message displayed when an attempt to update the repository source fails. {0} is a placeholder replaced by the repository source name.</comment>
</data>
<data name="UninstallCommandLongDescription" xml:space="preserve">
<value>Désinstalle le package sélectionné, que vous avez trouvé en effectuant une recherche dans la liste des packages installés ou directement à partir d’un manifeste. Par défaut, la requête doit correspondre de façon non sensible à la casse à l’ID, au nom ou au moniker du package. D’autres champs peuvent être utilisés en passant l’option appropriée.</value>
<comment>id, name, and moniker are all named values in our context, and may benefit from not being translated. The match must be for any of them, with comparison ignoring case.</comment>
</data>
<data name="UninstallCommandShortDescription" xml:space="preserve">
<value>Désinstallation du paquet donné</value>
</data>
<data name="UninstallFlowStartingPackageUninstall" xml:space="preserve">
<value>Début de la désinstallation du paquet...</value>
</data>
<data name="UninstallFlowUninstallSuccess" xml:space="preserve">
<value>Désinstallé avec succès</value>
</data>
<data name="NoUninstallInfoFound" xml:space="preserve">
<value>winget ne peut pas trouver la commande de désinstallation pour ce package. Veuillez contacter l’éditeur du package pour obtenir de l’aide.</value>
<comment>{Locked="winget"}</comment>
</data>
<data name="UninstallAbandoned" xml:space="preserve">
<value>Désinstallation abandonnée</value>
</data>
<data name="UninstallFailedWithCode" xml:space="preserve">
<value>Échec du programme de désinstallation avec le code de sortie : {0}</value>
<comment>{Locked="{0}"} Error message displayed when an attempt to uninstall an application package fails. {0} is a placeholder replaced by an error code.</comment>
</data>
<data name="ExportCommandShortDescription" xml:space="preserve">
<value>Exporte une liste des packages installés</value>
</data>
<data name="ImportCommandLongDescription" xml:space="preserve">
<value>Installe tous les packages listés dans un fichier.</value>
</data>
<data name="ImportCommandShortDescription" xml:space="preserve">
<value>Installe tous les packages dans un fichier</value>
</data>
<data name="OutputFileArgumentDescription" xml:space="preserve">
<value>Fichier dans lequel le résultat doit être écrit</value>
</data>
<data name="ImportFileArgumentDescription" xml:space="preserve">
<value>Fichier décrivant les packages à installer</value>
</data>
<data name="ExportSourceArgumentDescription" xml:space="preserve">
<value>Exporter les packages à partir de la source spécifiée</value>
</data>
<data name="ExportCommandLongDescription" xml:space="preserve">
<value>Écrit une liste des packages installés dans un fichier. Les packages peuvent ensuite être installés à l’aide de la commande import.</value>
<comment>{Locked="import"}</comment>
</data>
<data name="ImportInstallFailed" xml:space="preserve">
<value>L’installation d’un ou plusieurs packages importés a échoué</value>
</data>
<data name="ImportSourceNotInstalled" xml:space="preserve">
<value>La source requise pour l’importation n’est pas installée : {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user attempts to import application package(s) from a repository source that is not installed. {0} is a placeholder replaced by the repository source name.</comment>
</data>
<data name="InstalledPackageNotAvailable" xml:space="preserve">
<value>Le package installé n’est pas disponible à partir d’une source : {0}</value>
<comment>{Locked="{0}"} Warning message displayed when the user attempts to export an installed application package that is not available from any repository source. {0} is a placeholder replaced by the installed package name.</comment>
</data>
<data name="InstalledPackageVersionNotAvailable" xml:space="preserve">
<value>La version installée du package n’est pas disponible à partir d’aucune source : {0} {1} {2}</value>
<comment>{Locked="{0} {1} {2}"} Warning message displayed when the user attempts to export an installed application package with a version that is not available from any repository source. {0} is a placeholder replaced by the installed package identifier. {1} is a placeholder replaced by the installed package version. {2} is a placeholder replaced by the installed package channel.</comment>
</data>
<data name="NoPackagesInImportFile" xml:space="preserve">
<value>Aucun package n’a été trouvé dans le fichier d’importation</value>
</data>
<data name="InvalidJsonFile" xml:space="preserve">
<value>Le fichier JSON n'est pas valide</value>
</data>
<data name="MultiQueryPackageAlreadyInstalled" xml:space="preserve">
<value>Le package est déjà installé : {0}</value>
<comment>{Locked="{0}"} Message displayed to inform the user that an application package is already installed. {0} is a placeholder replaced by the package identifier or search query.</comment>
</data>
<data name="ImportIgnoreUnavailableArgumentDescription" xml:space="preserve">
<value>Ignorer les packages non disponibles</value>
</data>
<data name="ExportIncludeVersionsArgumentDescription" xml:space="preserve">
<value>Inclure les versions de paquets dans le fichier d’exportation</value>
</data>
<data name="ImportIgnoreVersionsArgumentDescription" xml:space="preserve">
<value>Ignorer les versions de package du fichier d’importation</value>
</data>
<data name="VerifyPathFailedNotExist" xml:space="preserve">
<value>Le chemin d’accès n’existe pas : {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user provides a system path argument value that does not exist. {0} is a placeholder replaced by the user's provided path.</comment>
</data>
<data name="ImportFileHasInvalidSchema" xml:space="preserve">
<value>Le fichier JSON ne spécifie pas de schéma reconnu.</value>
</data>
<data name="InstallScopeDescription" xml:space="preserve">
<value>Sélectionner l’étendue d’installation (user ou machine)</value>
<comment>{Locked="user","machine"} This argument allows the user to select between installing for just the user or for the entire machine.</comment>
</data>
<data name="InvalidArgumentValueError" xml:space="preserve">
<value>La valeur fournie pour l’argument '{0}' n’est pas valide ; les valeurs valides sont : {1}</value>
<comment>{Locked="{0}","{1}"} Error message displayed when the user provides an invalid command line argument value. {0} is a placeholder replaced by the argument name. {1} is a placeholder replaced by a list of valid options.</comment>
</data>
<data name="DisabledByGroupPolicy" xml:space="preserve">
<value>Cette opération est désactivée par stratégie de groupe : {0}</value>
<comment>{Locked="{0}"} Error message displayed when the user performs a command operation that is disabled by a group policy. {0} is a placeholder replaced by a group policy description.</comment>
</data>
<data name="PolicyAdditionalSources" xml:space="preserve">
<value>Activer les sources supplémentaires du Programme d’installation de l’application Windows</value>
</data>
<data name="PolicyAllowedSources" xml:space="preserve">
<value>Activer les sources autorisées du Programme d’installation de l’application Windows</value>
</data>
<data name="PolicyEnableDefaultSource" xml:space="preserve">
<value>Activer la source par défaut du Programme d’installation de l’application Windows</value>
</data>
<data name="PolicyEnableExperimentalFeatures" xml:space="preserve">
<value>Activer les fonctionnalités expérimentales du Programme d’installation de l’application Windows</value>
</data>
<data name="PolicyEnableMSStoreSource" xml:space="preserve">
<value>Activer la source Microsoft Store du Programme d’installation d’application Windows</value>
</data>
<data name="PolicyEnableWinGetSettings" xml:space="preserve">
<value>Activer les paramètres du Gestionnaire de package Windows</value>
</data>
<data name="PolicyEnableWinGet" xml:space="preserve">
<value>Activer le Gestionnaire de package Windows</value>
</data>
<data name="PolicyEnableWindowsPackageManagerCommandLineInterfaces" xml:space="preserve">
<value>Activer les interfaces de ligne de commande Gestionnaire de package Windows</value>
</data>
<data name="PolicySourceAutoUpdateInterval" xml:space="preserve">
<value>Définir l’intervalle en minutes de la mise à jour automatique source du Gestionnaire de package Windows</value>
</data>
<data name="PoliciesPolicy" xml:space="preserve">
<value>Stratégie de groupe</value>
<comment>Header for a table listing active Group Policies</comment>
</data>
<data name="PolicyEnableLocalManifests" xml:space="preserve">
<value>Activer les fichiers de manifeste locaux du Programme d'installation de l'application Windows</value>
</data>
<data name="PolicyEnableBypassCertificatePinningForMicrosoftStore" xml:space="preserve">
<value>Activer le contournement de certificat épinglé de la source Microsoft Store de l’Installeur d'applications Windows</value>
</data>
<data name="PolicyEnableLocalArchiveMalwareScanOverride" xml:space="preserve">
<value>Activer le remplacement de l’analyse des programmes malveillants des archives locales Windows Programme d'installation d'application</value>
</data>
<data name="SettingsWarningField" xml:space="preserve">
<value>Champ : {0}</value>
<comment>{Locked="{0}"} Warning message displayed when a user setting field has invalid syntax or semantics. {0} is a placeholder replaced by the setting field path.</comment>
</data>
<data name="SettingsWarningInvalidFieldFormat" xml:space="preserve">
<value>Format de champ non valide.</value>
</data>
<data name="SettingsWarningInvalidFieldValue" xml:space="preserve">
<value>Valeur de champ non valide.</value>
</data>
<data name="SettingsWarningInvalidValueFromPolicy" xml:space="preserve">
<value>Paramètre non valide dans la stratégie de groupe.</value>
</data>
<data name="SettingsWarningLoadedBackupSettings" xml:space="preserve">
<value>Paramètres chargés à partir du fichier de sauvegarde.</value>
</data>
<data name="SettingsWarningParseError" xml:space="preserve">
<value>Erreur lors de l’analyse du message :</value>
</data>
<data name="SettingsWarningValue" xml:space="preserve">
<value>Valeur : {0}</value>
<comment>{Locked="{0}"} Warning message displayed when a user setting value has invalid syntax or semantics. {0} is a placeholder replaced by the setting data value.</comment>
</data>
<data name="FeaturesMessageDisabledByPolicy" xml:space="preserve">
<value>Les fonctionnalités expérimentales suivantes sont en cours.
La configuration est désactivée en raison d’une stratégie de groupe.</value>
</data>
<data name="InstallerHashMismatchError" xml:space="preserve">
<value>Le code de hachage du programme d’installation ne correspond pas.</value>
</data>
<data name="PolicyEnableHashOverride" xml:space="preserve">
<value>Activer le remplacement de code de hachage du Programme d’installation de l’application Windows</value>
</data>
<data name="SourceExportCommandLongDescription" xml:space="preserve">
<value>Exportez les sources actuelles en tant que JSON pour la stratégie de groupe.</value>
</data>
<data name="SourceExportCommandShortDescription" xml:space="preserve">
<value>Exporter les sources actuelles</value>
</data>
<data name="SourceListAdditionalSource" xml:space="preserve">
<value>Source supplémentaire</value>
<comment>An additional source required by policy.</comment>
</data>
<data name="SourceListAllowedSource" xml:space="preserve">
<value>Source autorisée</value>
<comment>A source that the user is allowed to add.</comment>
</data>
<data name="InvalidArgumentValueErrorWithoutValidValues" xml:space="preserve">
<value>La valeur fournie pour l’argument '{0}' n’est pas valide</value>
<comment>{Locked="{0}"} Error message displayed when the user provides an invalid command line argument value. {0} is a placeholder replaced by the argument name.</comment>
</data>
<data name="Cancelled" xml:space="preserve">
<value>Annulé</value>
</data>
<data name="ExternalDependencies" xml:space="preserve">
<value>Externe</value>
</data>
<data name="ImportCommandReportDependencies" xml:space="preserve">
<value>Les packages trouvés dans cette importation ont les dépendances suivantes :</value>
<comment>Import command sentence showed before reporting dependencies</comment>
</data>
<data name="PackageRequiresDependencies" xml:space="preserve">
<value>Ce package nécessite les dépendances suivantes :</value>
<comment>Message shown before reporting dependencies</comment>
</data>
<data name="DependenciesFlowInstall" xml:space="preserve">
<value>Installation des dépendances</value>
</data>
<data name="DependenciesFlowSourceNotFound" xml:space="preserve">
<value>Source de dépendance introuvable</value>
</data>
<data name="DependenciesFlowSourceTooManyMatches" xml:space="preserve">
<value>La recherche de package produit plusieurs résultats : {0}</value>