-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathout.gotext.json
More file actions
3758 lines (3758 loc) · 142 KB
/
out.gotext.json
File metadata and controls
3758 lines (3758 loc) · 142 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
{
"language": "fr-FR",
"messages": [
{
"id": "Install/Create, Query, Uninstall SQL Server",
"message": "Install/Create, Query, Uninstall SQL Server",
"translation": "Installer/créer, interroger, désinstaller SQL Server",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View configuration information and connection strings",
"message": "View configuration information and connection strings",
"translation": "Afficher les informations de configuration et les chaînes de connexion",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Feedback:\n {FeedbackUrl}",
"message": "Feedback:\n {FeedbackUrl}",
"translation": "Commentaires :\n {FeedbackUrl}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "FeedbackUrl",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "feedbackUrl"
}
],
"fuzzy": true
},
{
"id": "help for backwards compatibility flags (-S, -U, -E etc.)",
"message": "help for backwards compatibility flags (-S, -U, -E etc.)",
"translation": "aide pour les indicateurs de rétrocompatibilité (-S, -U, -E etc.)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "print version of sqlcmd",
"message": "print version of sqlcmd",
"translation": "version imprimable de sqlcmd",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "configuration file",
"message": "configuration file",
"translation": "fichier de configuration",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "log level, error=0, warn=1, info=2, debug=3, trace=4",
"message": "log level, error=0, warn=1, info=2, debug=3, trace=4",
"translation": "niveau de journalisation, erreur=0, avertissement=1, info=2, débogage=3, trace=4",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Modify sqlconfig files using subcommands like \"{UseContextCommand}\"",
"message": "Modify sqlconfig files using subcommands like \"{UseContextCommand}\"",
"translation": "Modifiez les fichiers sqlconfig à l'aide de sous-commandes telles que \"{UseContextCommand}\"",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "UseContextCommand",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "localizer.UseContextCommand"
}
],
"fuzzy": true
},
{
"id": "Add context for existing endpoint and user (use {PasswordEnvVar} or {PasswordEnvVar2})",
"message": "Add context for existing endpoint and user (use {PasswordEnvVar} or {PasswordEnvVar2})",
"translation": "Ajoutez un contexte pour le point de terminaison et l'utilisateur existants (utilisez {PasswordEnvVar} ou {PasswordEnvVar2})",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "PasswordEnvVar",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "localizer.PasswordEnvVar"
},
{
"id": "PasswordEnvVar2",
"string": "%[2]s",
"type": "string",
"underlyingType": "string",
"argNum": 2,
"expr": "localizer.PasswordEnvVar2"
}
],
"fuzzy": true
},
{
"id": "Install/Create SQL Server, Azure SQL, and Tools",
"message": "Install/Create SQL Server, Azure SQL, and Tools",
"translation": "Installer/créer SQL Server, Azure SQL et les outils",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Open tools (e.g Azure Data Studio) for current context",
"message": "Open tools (e.g Azure Data Studio) for current context",
"translation": "Outils ouverts (par exemple Azure Data Studio) pour le contexte actuel",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Run a query against the current context",
"message": "Run a query against the current context",
"translation": "Exécuter une requête sur le contexte actuel",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Run a query",
"message": "Run a query",
"translation": "Exécuter une requête",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Run a query using [{Master}] database",
"message": "Run a query using [{Master}] database",
"translation": "Exécuter une requête à l'aide de la base de données [{Master}]",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "Master",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "\"master\""
}
],
"fuzzy": true
},
{
"id": "Set new default database",
"message": "Set new default database",
"translation": "Définir une nouvelle base de données par défaut",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Command text to run",
"message": "Command text to run",
"translation": "Texte de la commande à exécuter",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Database to use",
"message": "Database to use",
"translation": "Base de données à utiliser",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Start current context",
"message": "Start current context",
"translation": "Démarrer le contexte actuel",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Start the current context",
"message": "Start the current context",
"translation": "Démarrer le contexte actuel",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To view available contexts",
"message": "To view available contexts",
"translation": "Pour afficher les contextes disponibles",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "No current context",
"message": "No current context",
"translation": "Pas de contexte actuel",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Starting {Image} for context {CurrentContextName}",
"message": "Starting {Image} for context {CurrentContextName}",
"translation": "Démarrage de {Image} pour le contexte {CurrentContextName}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "Image",
"string": "%[1]q",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "endpoint.ContainerDetails.Image"
},
{
"id": "CurrentContextName",
"string": "%[2]q",
"type": "string",
"underlyingType": "string",
"argNum": 2,
"expr": "config.CurrentContextName()"
}
],
"fuzzy": true
},
{
"id": "Create new context with a sql container",
"message": "Create new context with a sql container",
"translation": "Créer un nouveau contexte avec un conteneur sql",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Current context does not have a container",
"message": "Current context does not have a container",
"translation": "Le contexte actuel n'a pas de conteneur",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Stop current context",
"message": "Stop current context",
"translation": "Arrêter le contexte actuel",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Stop the current context",
"message": "Stop the current context",
"translation": "Arrêter le contexte actuel",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Stopping {Image} for context {CurrentContextName}",
"message": "Stopping {Image} for context {CurrentContextName}",
"translation": "Arrêt de {Image} pour le contexte {CurrentContextName}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "Image",
"string": "%[1]q",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "endpoint.ContainerDetails.Image"
},
{
"id": "CurrentContextName",
"string": "%[2]q",
"type": "string",
"underlyingType": "string",
"argNum": 2,
"expr": "config.CurrentContextName()"
}
],
"fuzzy": true
},
{
"id": "Create a new context with a SQL Server container",
"message": "Create a new context with a SQL Server container",
"translation": "Créer un nouveau contexte avec un conteneur SQL Server",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Uninstall/Delete the current context",
"message": "Uninstall/Delete the current context",
"translation": "Désinstaller/Supprimer le contexte actuel",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Uninstall/Delete the current context, no user prompt",
"message": "Uninstall/Delete the current context, no user prompt",
"translation": "Désinstaller/supprimer le contexte actuel, pas d'invite utilisateur",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Uninstall/Delete the current context, no user prompt and override safety check for user databases",
"message": "Uninstall/Delete the current context, no user prompt and override safety check for user databases",
"translation": "Désinstaller/supprimer le contexte actuel, aucune invite utilisateur et ignorer le contrôle de sécurité pour les bases de données utilisateur",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Quiet mode (do not stop for user input to confirm the operation)",
"message": "Quiet mode (do not stop for user input to confirm the operation)",
"translation": "Mode silencieux (ne pas s'arrêter pour que l'entrée de l'utilisateur confirme l'opération)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Complete the operation even if non-system (user) database files are present",
"message": "Complete the operation even if non-system (user) database files are present",
"translation": "Terminer l'opération même si des fichiers de base de données non système (utilisateur) sont présents",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View available contexts",
"message": "View available contexts",
"translation": "Afficher les contextes disponibles",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Create context",
"message": "Create context",
"translation": "Créer un contexte",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Create context with SQL Server container",
"message": "Create context with SQL Server container",
"translation": "Créer un contexte avec le conteneur SQL Server",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a context manually",
"message": "Add a context manually",
"translation": "Ajouter un contexte manuellement",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Current context is {CurrentContextName}. Do you want to continue? (Y/N)",
"message": "Current context is {CurrentContextName}. Do you want to continue? (Y/N)",
"translation": "Le contexte actuel est {CurrentContextName}. Voulez-vous continuer? (O/N)",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "CurrentContextName",
"string": "%[1]q",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "config.CurrentContextName()"
}
],
"fuzzy": true
},
{
"id": "Verifying no user (non-system) database (.mdf) files",
"message": "Verifying no user (non-system) database (.mdf) files",
"translation": "Vérification de l'absence de fichiers de base de données utilisateur (non système) (.mdf)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To start the container",
"message": "To start the container",
"translation": "Pour démarrer le conteneur",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To override the check, use {__force}",
"message": "To override the check, use {__force}",
"translation": "Pour annuler la vérification, utilisez {__force}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "__force",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "\"--force\""
}
],
"fuzzy": true
},
{
"id": "Container is not running, unable to verify that user database files do not exist",
"message": "Container is not running, unable to verify that user database files do not exist",
"translation": "Le conteneur n'est pas en cours d'exécution, impossible de vérifier que les fichiers de base de données utilisateur n'existent pas",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Removing context {CurrentContextName}",
"message": "Removing context {CurrentContextName}",
"translation": "Suppression du contexte {CurrentContextName}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "CurrentContextName",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "config.CurrentContextName()"
}
],
"fuzzy": true
},
{
"id": "Stopping {Image}",
"message": "Stopping {Image}",
"translation": "Arrêt de {Image}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "Image",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "endpoint.ContainerDetails.Image"
}
],
"fuzzy": true
},
{
"id": "Container {Id} no longer exists, continuing to remove context...",
"message": "Container {Id} no longer exists, continuing to remove context...",
"translation": "Le conteneur {Id} n'existe plus, poursuite de la suppression du contexte...",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "Id",
"string": "%[1]q",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "id"
}
],
"fuzzy": true
},
{
"id": "Current context is now {NewContextName}",
"message": "Current context is now {NewContextName}",
"translation": "Le contexte actuel est maintenant {NewContextName}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "NewContextName",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "newContextName"
}
],
"fuzzy": true
},
{
"id": "{Operation_completed_successfully}",
"message": "{Operation_completed_successfully}",
"translation": "{Operation_completed_successfully}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "Operation_completed_successfully",
"string": "%[1]v",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "\"Operation completed successfully\""
}
],
"fuzzy": true
},
{
"id": "If the database is mounted, run {DropDbQuery}",
"message": "If the database is mounted, run {DropDbQuery}",
"translation": "Si la base de données est montée, exécutez {DropDbQuery}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "DropDbQuery",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "dropDbQuery"
}
],
"fuzzy": true
},
{
"id": "Pass in the flag {__force} to override this safety check for user (non-system) databases",
"message": "Pass in the flag {__force} to override this safety check for user (non-system) databases",
"translation": "Transmettez l'indicateur {__force} pour annuler ce contrôle de sécurité pour les bases de données utilisateur (non système)",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "__force",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "\"--force\""
}
],
"fuzzy": true
},
{
"id": "Unable to continue, a user (non-system) database ({DatabaseFile}) is present",
"message": "Unable to continue, a user (non-system) database ({DatabaseFile}) is present",
"translation": "Impossible de continuer, une base de données utilisateur (non système) ({DatabaseFile}) est présente",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "DatabaseFile",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "databaseFile"
}
],
"fuzzy": true
},
{
"id": "No endpoints to uninstall",
"message": "No endpoints to uninstall",
"translation": "Aucun point de terminaison à désinstaller",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a context",
"message": "Add a context",
"translation": "Ajouter un contexte",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a context for a local instance of SQL Server on port 1433 using trusted authentication",
"message": "Add a context for a local instance of SQL Server on port 1433 using trusted authentication",
"translation": "Ajouter un contexte pour une instance locale de SQL Server sur le port 1433 à l'aide d'une authentification approuvée",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Display name for the context",
"message": "Display name for the context",
"translation": "Nom d'affichage du contexte",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Name of endpoint this context will use",
"message": "Name of endpoint this context will use",
"translation": "Nom du point de terminaison que ce contexte utilisera",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Name of user this context will use",
"message": "Name of user this context will use",
"translation": "Nom de l'utilisateur que ce contexte utilisera",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View existing endpoints to choose from",
"message": "View existing endpoints to choose from",
"translation": "Afficher les points de terminaison existants parmi lesquels choisir",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a new local endpoint",
"message": "Add a new local endpoint",
"translation": "Ajouter un nouveau point de terminaison local",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add an already existing endpoint",
"message": "Add an already existing endpoint",
"translation": "Ajouter un point de terminaison déjà existant",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Endpoint required to add context. Endpoint '{EndpointName}' does not exist. Use {EndpointFlag} flag",
"message": "Endpoint required to add context. Endpoint '{EndpointName}' does not exist. Use {EndpointFlag} flag",
"translation": "Point de terminaison requis pour ajouter du contexte. Le point de terminaison '{EndpointName}' n'existe pas. Utiliser l'indicateur {EndpointFlag}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "EndpointName",
"string": "%[1]v",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "c.endpointName"
},
{
"id": "EndpointFlag",
"string": "%[2]s",
"type": "string",
"underlyingType": "string",
"argNum": 2,
"expr": "localizer.EndpointFlag"
}
],
"fuzzy": true
},
{
"id": "View list of users",
"message": "View list of users",
"translation": "Afficher la liste des utilisateurs",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add the user",
"message": "Add the user",
"translation": "Ajouter l'utilisateur",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add an endpoint",
"message": "Add an endpoint",
"translation": "Ajouter un point de terminaison",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "User '{UserName}' does not exist",
"message": "User '{UserName}' does not exist",
"translation": "L'utilisateur '{UserName}' n'existe pas",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "UserName",
"string": "%[1]v",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "c.userName"
}
],
"fuzzy": true
},
{
"id": "Open in Azure Data Studio",
"message": "Open in Azure Data Studio",
"translation": "Ouvrir dans Azure Data Studio",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To start interactive query session",
"message": "To start interactive query session",
"translation": "Pour démarrer une session de requête interactive",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To run a query",
"message": "To run a query",
"translation": "Pour exécuter une requête",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Current Context '{Name}'",
"message": "Current Context '{Name}'",
"translation": "Contexte actuel '{Name}'",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "Name",
"string": "%[1]v",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "context.Name"
}
],
"fuzzy": true
},
{
"id": "Add a default endpoint",
"message": "Add a default endpoint",
"translation": "Ajouter un point de terminaison par défaut",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Display name for the endpoint",
"message": "Display name for the endpoint",
"translation": "Nom d'affichage du point de terminaison",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The network address to connect to, e.g. 127.0.0.1 etc.",
"message": "The network address to connect to, e.g. 127.0.0.1 etc.",
"translation": "L'adresse réseau à laquelle se connecter, par ex. 127.0.0.1 etc...",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The network port to connect to, e.g. 1433 etc.",
"message": "The network port to connect to, e.g. 1433 etc.",
"translation": "Le port réseau auquel se connecter, par ex. 1433 etc...",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a context for this endpoint",
"message": "Add a context for this endpoint",
"translation": "Ajouter un contexte pour ce point de terminaison",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View endpoint names",
"message": "View endpoint names",
"translation": "Afficher les noms des terminaux",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View endpoint details",
"message": "View endpoint details",
"translation": "Afficher les détails du point de terminaison",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View all endpoints details",
"message": "View all endpoints details",
"translation": "Afficher tous les détails des terminaux",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Delete this endpoint",
"message": "Delete this endpoint",
"translation": "Supprimer ce point de terminaison",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Endpoint '{UniqueEndpointName}' added (address: '{Address}', port: '{Port}')",
"message": "Endpoint '{UniqueEndpointName}' added (address: '{Address}', port: '{Port}')",
"translation": "Point de terminaison '{UniqueEndpointName}' ajouté (adresse : '{Address}', port : '{Port}')",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "UniqueEndpointName",
"string": "%[1]v",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "uniqueEndpointName"
},
{
"id": "Address",
"string": "%[2]v",
"type": "string",
"underlyingType": "string",
"argNum": 2,
"expr": "c.address"
},
{
"id": "Port",
"string": "%[3]v",
"type": "int",
"underlyingType": "int",
"argNum": 3,
"expr": "c.port"
}
],
"fuzzy": true
},
{
"id": "Add a user (using the SQLCMD_PASSWORD environment variable)",
"message": "Add a user (using the SQLCMD_PASSWORD environment variable)",
"translation": "Ajouter un utilisateur (à l'aide de la variable d'environnement SQLCMD_PASSWORD)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a user (using the SQLCMDPASSWORD environment variable)",
"message": "Add a user (using the SQLCMDPASSWORD environment variable)",
"translation": "Ajouter un utilisateur (à l'aide de la variable d'environnement SQLCMDPASSWORD)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a user using Windows Data Protection API to encrypt password in sqlconfig",
"message": "Add a user using Windows Data Protection API to encrypt password in sqlconfig",
"translation": "Ajouter un utilisateur à l'aide de l'API de protection des données Windows pour chiffrer le mot de passe dans sqlconfig",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a user",
"message": "Add a user",
"translation": "Ajouter un utilisateur",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Display name for the user (this is not the username)",
"message": "Display name for the user (this is not the username)",
"translation": "Nom d'affichage de l'utilisateur (il ne s'agit pas du nom d'utilisateur)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Authentication type this user will use (basic | other)",
"message": "Authentication type this user will use (basic | other)",
"translation": "Type d'authentification que cet utilisateur utilisera (de base | autre)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "The username (provide password in {PasswordEnvVar} or {PasswordEnvVar2} environment variable)",
"message": "The username (provide password in {PasswordEnvVar} or {PasswordEnvVar2} environment variable)",
"translation": "Le nom d'utilisateur (fournir le mot de passe dans la variable d'environnement {PasswordEnvVar} ou {PasswordEnvVar2})",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "PasswordEnvVar",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "localizer.PasswordEnvVar"
},
{
"id": "PasswordEnvVar2",
"string": "%[2]s",
"type": "string",
"underlyingType": "string",
"argNum": 2,
"expr": "localizer.PasswordEnvVar2"
}
],
"fuzzy": true
},
{
"id": "Password encryption method ({EncryptionMethodsForUsage}) in sqlconfig file",
"message": "Password encryption method ({EncryptionMethodsForUsage}) in sqlconfig file",
"translation": "Méthode de chiffrement du mot de passe ({EncryptionMethodsForUsage}) dans le fichier sqlconfig",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "EncryptionMethodsForUsage",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "secret.EncryptionMethodsForUsage()"
}
],
"fuzzy": true
},
{
"id": "Authentication type must be '{ModernAuthTypeBasic}' or '{ModernAuthTypeOther}'",
"message": "Authentication type must be '{ModernAuthTypeBasic}' or '{ModernAuthTypeOther}'",
"translation": "Le type d'authentification doit être '{ModernAuthTypeBasic}' ou '{ModernAuthTypeOther}'",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "ModernAuthTypeBasic",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "localizer.ModernAuthTypeBasic"
},
{
"id": "ModernAuthTypeOther",
"string": "%[2]s",
"type": "string",
"underlyingType": "string",
"argNum": 2,
"expr": "localizer.ModernAuthTypeOther"
}
],
"fuzzy": true
},
{
"id": "Authentication type '' is not valid {AuthType}'",
"message": "Authentication type '' is not valid {AuthType}'",
"translation": "Le type d'authentification '' n'est pas valide {AuthType}'",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "AuthType",
"string": "%[1]v",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "c.authType"
}
],
"fuzzy": true
},
{
"id": "Remove the {PasswordEncryptFlag} flag",
"message": "Remove the {PasswordEncryptFlag} flag",
"translation": "Supprimer l'indicateur {PasswordEncryptFlag}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "PasswordEncryptFlag",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "localizer.PasswordEncryptFlag"
}
],
"fuzzy": true
},
{
"id": "Pass in the {AuthTypeFlag} {ModernAuthTypeBasic}",
"message": "Pass in the {AuthTypeFlag} {ModernAuthTypeBasic}",
"translation": "Transmettez le {AuthTypeFlag} {ModernAuthTypeBasic}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "AuthTypeFlag",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "localizer.AuthTypeFlag"
},
{
"id": "ModernAuthTypeBasic",
"string": "%[2]s",
"type": "string",
"underlyingType": "string",
"argNum": 2,
"expr": "localizer.ModernAuthTypeBasic"
}
],
"fuzzy": true
},
{
"id": "The {PasswordEncryptFlag} flag can only be used when authentication type is '{ModernAuthTypeBasic}'",
"message": "The {PasswordEncryptFlag} flag can only be used when authentication type is '{ModernAuthTypeBasic}'",
"translation": "L'indicateur {PasswordEncryptFlag} ne peut être utilisé que lorsque le type d'authentification est '{ModernAuthTypeBasic}'",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "PasswordEncryptFlag",
"string": "%[1]s",
"type": "string",
"underlyingType": "string",
"argNum": 1,
"expr": "localizer.PasswordEncryptFlag"
},
{
"id": "ModernAuthTypeBasic",
"string": "%[2]s",
"type": "string",
"underlyingType": "string",
"argNum": 2,
"expr": "localizer.ModernAuthTypeBasic"
}
],
"fuzzy": true
},
{
"id": "Add the {PasswordEncryptFlag} flag",
"message": "Add the {PasswordEncryptFlag} flag",
"translation": "Ajoutez l'indicateur {PasswordEncryptFlag}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "PasswordEncryptFlag",
"string": "%[1]s",
"type": "string",