-
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) · 141 KB
/
out.gotext.json
File metadata and controls
3758 lines (3758 loc) · 141 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": "es-ES",
"messages": [
{
"id": "Install/Create, Query, Uninstall SQL Server",
"message": "Install/Create, Query, Uninstall SQL Server",
"translation": "Instalar/Crear, Consultar, Desinstalar SQL Server",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View configuration information and connection strings",
"message": "View configuration information and connection strings",
"translation": "Visualización de la información de configuración y las cadenas de conexión",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Feedback:\n {FeedbackUrl}",
"message": "Feedback:\n {FeedbackUrl}",
"translation": "Comentarios:\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": "ayuda para marcas de compatibilidad con versiones anteriores (-S, -U, -E, etc.)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "print version of sqlcmd",
"message": "print version of sqlcmd",
"translation": "versión de impresión de sqlcmd",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "configuration file",
"message": "configuration file",
"translation": "archivo de configuración",
"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": "nivel de registro, error=0, advertencia=1, información=2, depuración=3, seguimiento=4",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Modify sqlconfig files using subcommands like \"{UseContextCommand}\"",
"message": "Modify sqlconfig files using subcommands like \"{UseContextCommand}\"",
"translation": "Modificar archivos sqlconfig mediante subcomandos como \"{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": "Agregar contexto para el punto de conexión y el usuario existentes (use {PasswordEnvVar} o {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": "Instalar o crear SQL Server, Azure SQL y herramientas",
"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": "Abrir herramientas (por ejemplo, Azure Data Studio) para el contexto actual",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Run a query against the current context",
"message": "Run a query against the current context",
"translation": "Ejecución de una consulta en el contexto actual",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Run a query",
"message": "Run a query",
"translation": "Ejecutar una consulta",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Run a query using [{Master}] database",
"message": "Run a query using [{Master}] database",
"translation": "Ejecutar una consulta con la base de datos [{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": "Establecer nueva base de datos predeterminada",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Command text to run",
"message": "Command text to run",
"translation": "Texto del comando que se va a ejecutar",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Database to use",
"message": "Database to use",
"translation": "Base de datos que se va a usar",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Start current context",
"message": "Start current context",
"translation": "Iniciar contexto actual",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Start the current context",
"message": "Start the current context",
"translation": "Iniciar el contexto actual",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To view available contexts",
"message": "To view available contexts",
"translation": "Para ver los contextos disponibles",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "No current context",
"message": "No current context",
"translation": "No hay contexto actual",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Starting {Image} for context {CurrentContextName}",
"message": "Starting {Image} for context {CurrentContextName}",
"translation": "Iniciando {Image} para el contexto {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": "Creación de un nuevo contexto con un contenedor sql",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Current context does not have a container",
"message": "Current context does not have a container",
"translation": "El contexto actual no tiene un contenedor",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Stop current context",
"message": "Stop current context",
"translation": "Detener contexto actual",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Stop the current context",
"message": "Stop the current context",
"translation": "Detener el contexto actual",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Stopping {Image} for context {CurrentContextName}",
"message": "Stopping {Image} for context {CurrentContextName}",
"translation": "Deteniendo {Image} para el contexto {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": "Creación de un nuevo contexto con un contenedor de SQL Server",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Uninstall/Delete the current context",
"message": "Uninstall/Delete the current context",
"translation": "Desinstalar o eliminar el contexto actual",
"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": "Desinstalar o eliminar el contexto actual, sin aviso del usuario",
"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": "Desinstalar o eliminar el contexto actual, sin aviso del usuario e invalidación de la comprobación de seguridad de las bases de datos de usuario",
"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": "Modo silencioso (no se detenga para que los datos proporcionados por el usuario confirmen la operación)",
"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": "Completar la operación incluso si hay archivos de base de datos que no son del sistema (usuario) presentes",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View available contexts",
"message": "View available contexts",
"translation": "Ver contextos disponibles",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Create context",
"message": "Create context",
"translation": "Crear contexto",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Create context with SQL Server container",
"message": "Create context with SQL Server container",
"translation": "Creación de contexto con SQL Server contenedor",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a context manually",
"message": "Add a context manually",
"translation": "Agregar un contexto manualmente",
"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": "El contexto actual es {CurrentContextName}. ¿Desea continuar? (S/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": "Comprobando ningún archivo de base de datos (.mdf) de usuario (que no es del sistema)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To start the container",
"message": "To start the container",
"translation": "Para iniciar el contenedor",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To override the check, use {__force}",
"message": "To override the check, use {__force}",
"translation": "Para invalidar la comprobación, use {__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": "El contenedor no se está ejecutando. No se puede comprobar que los archivos de la base de datos de usuario no existen.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Removing context {CurrentContextName}",
"message": "Removing context {CurrentContextName}",
"translation": "Quitando contexto {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": "Deteniendo {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": "El contenedor {Id} ya no existe, continuando con la eliminación del contexto...",
"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": "El contexto actual es ahora {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 datos está montada, ejecute {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": "Pasar la marca {__force} para invalidar esta comprobación de seguridad para las bases de datos de usuario (no del sistema)",
"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": "No se puede continuar, hay una base de datos de usuario (que no es del sistema) ({DatabaseFile}) presente",
"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": "No hay ningún punto de conexión para desinstalar",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a context",
"message": "Add a context",
"translation": "Agregar un contexto",
"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": "Agregar un contexto para una instancia local de SQL Server en el puerto 1433 mediante autenticación de confianza",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Display name for the context",
"message": "Display name for the context",
"translation": "Nombre para mostrar del contexto",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Name of endpoint this context will use",
"message": "Name of endpoint this context will use",
"translation": "Nombre del punto de conexión que usará este contexto",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Name of user this context will use",
"message": "Name of user this context will use",
"translation": "Nombre del usuario que usará este contexto",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View existing endpoints to choose from",
"message": "View existing endpoints to choose from",
"translation": "Ver los puntos de conexión existentes entre los que elegir",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a new local endpoint",
"message": "Add a new local endpoint",
"translation": "Agregar un nuevo punto de conexión local",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add an already existing endpoint",
"message": "Add an already existing endpoint",
"translation": "Agregar un punto de conexión ya existente",
"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": "Punto de conexión necesario para agregar contexto. El extremo '{EndpointName}' no existe. Usar marca {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": "Ver lista de usuarios",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add the user",
"message": "Add the user",
"translation": "Agregar el usuario",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add an endpoint",
"message": "Add an endpoint",
"translation": "Agregar un punto de conexión",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "User '{UserName}' does not exist",
"message": "User '{UserName}' does not exist",
"translation": "El usuario '{UserName}' no existe",
"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": "Apertura en Azure Data Studio",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To start interactive query session",
"message": "To start interactive query session",
"translation": "Para iniciar la sesión de consulta interactiva",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To run a query",
"message": "To run a query",
"translation": "Para ejecutar una consulta",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Current Context '{Name}'",
"message": "Current Context '{Name}'",
"translation": "Contexto actual '{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": "Agregar un punto de conexión predeterminado",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Display name for the endpoint",
"message": "Display name for the endpoint",
"translation": "Nombre para mostrar del punto de conexión",
"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": "Dirección de red a la que conectarse, por ejemplo, 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": "Puerto de red al que se va a conectar, por ejemplo, 1433, etc.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a context for this endpoint",
"message": "Add a context for this endpoint",
"translation": "Agregar un contexto para este punto de conexión",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View endpoint names",
"message": "View endpoint names",
"translation": "Ver nombres de punto de conexión",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View endpoint details",
"message": "View endpoint details",
"translation": "Ver detalles del punto de conexión",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View all endpoints details",
"message": "View all endpoints details",
"translation": "Ver todos los detalles de puntos de conexión",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Delete this endpoint",
"message": "Delete this endpoint",
"translation": "Eliminar este punto de conexión",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Endpoint '{UniqueEndpointName}' added (address: '{Address}', port: '{Port}')",
"message": "Endpoint '{UniqueEndpointName}' added (address: '{Address}', port: '{Port}')",
"translation": "Se agregó el extremo '{UniqueEndpointName}' (dirección: '{Address}', puerto: '{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": "Agregar un usuario (mediante la variable de entorno 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": "Agregar un usuario (mediante la variable de entorno 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": "Agregar un usuario mediante la API de protección de datos de Windows para cifrar la contraseña en sqlconfig",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a user",
"message": "Add a user",
"translation": "Agregar un usuario",
"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": "Nombre para mostrar del usuario (este no es el nombre de usuario)",
"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": "Tipo de autenticación que usará este usuario (básico | otro)",
"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": "El nombre de usuario (proporcione la contraseña en la variable de entorno {PasswordEnvVar} o {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étodo de cifrado de contraseña ({EncryptionMethodsForUsage}) en el archivo 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": "El tipo de autenticación debe ser \"{ModernAuthTypeBasic}\" o \"{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": "El tipo de autenticación '' no es válido {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": "Quitar la marca {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": "Pasar el {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": "La marca {PasswordEncryptFlag} solo se puede usar cuando el tipo de autenticación es \"{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": "Agregar la marca {PasswordEncryptFlag}",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "PasswordEncryptFlag",
"string": "%[1]s",
"type": "string",