-
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": "de-DE",
"messages": [
{
"id": "Install/Create, Query, Uninstall SQL Server",
"message": "Install/Create, Query, Uninstall SQL Server",
"translation": "SQL Server installieren/erstellen, abfragen, deinstallieren",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View configuration information and connection strings",
"message": "View configuration information and connection strings",
"translation": "Konfigurationsinformationen und Verbindungszeichenfolgen anzeigen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Feedback:\n {FeedbackUrl}",
"message": "Feedback:\n {FeedbackUrl}",
"translation": "Feedback:\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": "Hilfe für Abwärtskompatibilitätsflags (-S, -U, -E usw.)",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "print version of sqlcmd",
"message": "print version of sqlcmd",
"translation": "Druckversion von sqlcmd",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "configuration file",
"message": "configuration file",
"translation": "Konfigurationsdatei",
"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": "Protokolliergrad, Fehler=0, Warnung=1, Info=2, Debug=3, Ablaufverfolgung=4",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Modify sqlconfig files using subcommands like \"{UseContextCommand}\"",
"message": "Modify sqlconfig files using subcommands like \"{UseContextCommand}\"",
"translation": "SQLConfig-Dateien mithilfe von Unterbefehlen wie \"{UseContextCommand}\" ändern",
"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": "Kontext für vorhandenen Endpunkt und Benutzer hinzufügen ({PasswordEnvVar} oder {PasswordEnvVar2} verwenden)",
"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": "SQL Server, Azure SQL und Tools installieren/erstellen",
"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": "Tools (z. B. Azure Data Studio) für aktuellen Kontext öffnen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Run a query against the current context",
"message": "Run a query against the current context",
"translation": "Abfrage für den aktuellen Kontext ausführen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Run a query",
"message": "Run a query",
"translation": "Abfrage ausführen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Run a query using [{Master}] database",
"message": "Run a query using [{Master}] database",
"translation": "Abfrage mithilfe der [{Master}]-Datenbank ausführen",
"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": "Neue Standarddatenbank festlegen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Command text to run",
"message": "Command text to run",
"translation": "Auszuführender Befehlstext",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Database to use",
"message": "Database to use",
"translation": "Zu verwendende Datenbank",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Start current context",
"message": "Start current context",
"translation": "Aktuellen Kontext starten",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Start the current context",
"message": "Start the current context",
"translation": "Aktuellen Kontext starten",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To view available contexts",
"message": "To view available contexts",
"translation": "Zum Anzeigen verfügbarer Kontexte",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "No current context",
"message": "No current context",
"translation": "Kein aktueller Kontext",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Starting {Image} for context {CurrentContextName}",
"message": "Starting {Image} for context {CurrentContextName}",
"translation": "{Image} für kontextbezogene {CurrentContextName} wird gestartet",
"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": "Neuen Kontext mit einem SQL-Container erstellen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Current context does not have a container",
"message": "Current context does not have a container",
"translation": "Der aktuelle Kontext weist keinen Container auf",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Stop current context",
"message": "Stop current context",
"translation": "Aktuellen Kontext anhalten",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Stop the current context",
"message": "Stop the current context",
"translation": "Aktuellen Kontext beenden",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Stopping {Image} for context {CurrentContextName}",
"message": "Stopping {Image} for context {CurrentContextName}",
"translation": "{Image} für kontextbezogene {CurrentContextName} wird beendet",
"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": "Neuen Kontext mit einem SQL Server-Container erstellen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Uninstall/Delete the current context",
"message": "Uninstall/Delete the current context",
"translation": "Aktuellen Kontext deinstallieren/löschen",
"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": "Aktuellen Kontext deinstallieren/löschen, keine Benutzeraufforderung",
"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": "Aktuellen Kontext deinstallieren/löschen, keine Benutzeraufforderung anzeigen und Sicherheitsüberprüfung für Benutzerdatenbanken außer Kraft setzen",
"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": "Stiller Modus (nicht für Benutzereingabe beenden, um den Vorgang zu bestätigen)",
"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": "Vorgang auch dann abschließen, wenn nicht systembasierte (Benutzer-)Datenbankdateien vorhanden sind",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View available contexts",
"message": "View available contexts",
"translation": "Verfügbare Kontexte anzeigen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Create context",
"message": "Create context",
"translation": "Kontext erstellen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Create context with SQL Server container",
"message": "Create context with SQL Server container",
"translation": "Kontext mit SQL Server-Container erstellen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a context manually",
"message": "Add a context manually",
"translation": "Kontext manuell hinzufügen",
"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": "Der aktuelle Kontext ist {CurrentContextName}. Möchten Sie den Vorgang fortsetzen? (J/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": "Es wird überprüft, dass keine Benutzer- (Nicht-System-)Datenbankdateien (.mdf) vorhanden sind",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To start the container",
"message": "To start the container",
"translation": "Zum Starten des Containers",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To override the check, use {__force}",
"message": "To override the check, use {__force}",
"translation": "Um die Überprüfung außer Kraft zu setzen, verwenden Sie {__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": "Der Container wird nicht ausgeführt. Es kann nicht überprüft werden, ob die Benutzerdatenbankdateien nicht vorhanden sind",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Removing context {CurrentContextName}",
"message": "Removing context {CurrentContextName}",
"translation": "Kontext {CurrentContextName} wird entfernt",
"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": "{Image} wird beendet",
"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": "Container {Id} nicht mehr vorhanden. Der Kontext wird entfernt...",
"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": "Der aktuelle Kontext ist jetzt {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": "Wenn die Datenbank eingebunden ist, {DropDbQuery} ausführen",
"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": "Flag {__force} übergeben, um diese Sicherheitsüberprüfung für Benutzerdatenbanken (keine Systemdatenbanken) außer Kraft zu setzen",
"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": "Der Vorgang kann nicht fortgesetzt werden, da eine Benutzerdatenbank (keine Systemdatenbank) ({DatabaseFile}) vorhanden ist",
"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": "Es sind keine Endpunkte zur Deinstallation vorhanden",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a context",
"message": "Add a context",
"translation": "Kontext hinzufügen",
"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": "Einen Kontext für eine lokale Instanz von SQL Server an Port 1433 mithilfe einer vertrauenswürdigen Authentifizierung hinzufügen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Display name for the context",
"message": "Display name for the context",
"translation": "Der Anzeigename für den Kontext",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Name of endpoint this context will use",
"message": "Name of endpoint this context will use",
"translation": "Der Name des Endpunkts, der von diesem Kontext verwendet wird",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Name of user this context will use",
"message": "Name of user this context will use",
"translation": "Name des Benutzers, den dieser Kontext verwendet",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View existing endpoints to choose from",
"message": "View existing endpoints to choose from",
"translation": "Vorhandene Endpunkte zur Auswahl anzeigen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a new local endpoint",
"message": "Add a new local endpoint",
"translation": "Neuen lokalen Endpunkt hinzufügen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add an already existing endpoint",
"message": "Add an already existing endpoint",
"translation": "Bereits vorhandenen Endpunkt hinzufügen",
"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": "Zum Hinzufügen des Kontexts ist ein Endpunkt erforderlich. Der Endpunkt '{EndpointName}' ist nicht vorhanden. {EndpointFlag}-Flag verwenden",
"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": "Liste der Benutzer anzeigen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add the user",
"message": "Add the user",
"translation": "Den Benutzer hinzufügen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add an endpoint",
"message": "Add an endpoint",
"translation": "Endpunkt hinzufügen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "User '{UserName}' does not exist",
"message": "User '{UserName}' does not exist",
"translation": "Der Benutzer '{UserName}' ist nicht vorhanden",
"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": "In Azure Data Studio öffnen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To start interactive query session",
"message": "To start interactive query session",
"translation": "Zum Starten einer interaktiven Abfragesitzung",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "To run a query",
"message": "To run a query",
"translation": "Zum Ausführen einer Abfrage",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Current Context '{Name}'",
"message": "Current Context '{Name}'",
"translation": "Aktueller Kontext '{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": "Standardendpunkt hinzufügen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Display name for the endpoint",
"message": "Display name for the endpoint",
"translation": "Der Anzeigename für den Endpunkt",
"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": "Die Netzwerkadresse, mit der eine Verbindung hergestellt werden soll, z. B. 127.0.0.1 usw.",
"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": "Der Netzwerkport, mit dem eine Verbindung hergestellt werden soll, z. B. 1433 usw.",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a context for this endpoint",
"message": "Add a context for this endpoint",
"translation": "Kontext für diesen Endpunkt hinzufügen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View endpoint names",
"message": "View endpoint names",
"translation": "Endpunktnamen anzeigen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View endpoint details",
"message": "View endpoint details",
"translation": "Details zum Endpunkt anzeigen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "View all endpoints details",
"message": "View all endpoints details",
"translation": "Details zu allen Endpunkten anzeigen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Delete this endpoint",
"message": "Delete this endpoint",
"translation": "Diesen Endpunkt löschen",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Endpoint '{UniqueEndpointName}' added (address: '{Address}', port: '{Port}')",
"message": "Endpoint '{UniqueEndpointName}' added (address: '{Address}', port: '{Port}')",
"translation": "Endpunkt '{UniqueEndpointName}' hinzugefügt (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": "Benutzer hinzufügen (mithilfe der Umgebungsvariablen 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": "Benutzer hinzufügen (mithilfe der Umgebungsvariablen 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": "Einen Benutzer hinzufügen, der die Windows Data Protection-API zum Verschlüsseln des Kennworts in SQLConfig verwendet",
"translatorComment": "Copied from source.",
"fuzzy": true
},
{
"id": "Add a user",
"message": "Add a user",
"translation": "Benutzer hinzufügen",
"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": "Anzeigename für den Benutzer (dies ist nicht der Benutzername)",
"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": "Authentifizierungstyp, den dieser Benutzer verwendet (Standard | andere)",
"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": "Der Benutzername (Kennwort in der Umgebungsvariablen {PasswordEnvVar} (oder {PasswordEnvVar2} angeben)",
"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": "Kennwortverschlüsselungsmethode ({EncryptionMethodsForUsage}) in SQLConfig-Datei",
"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": "Der Authentifizierungstyp muss '{ModernAuthTypeBasic}' oder '{ModernAuthTypeOther}' sein",
"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": "Der Authentifizierungstyp '{AuthType}' ist ungültig",
"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": "Flag {PasswordEncryptFlag} entfernen",
"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": "{AuthTypeFlag} {ModernAuthTypeBasic} übergeben",
"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": "Das Flag {PasswordEncryptFlag} kann nur verwendet werden, wenn der Authentifizierungstyp '{ModernAuthTypeBasic}' ist.",
"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": "Flag {PasswordEncryptFlag} hinzufügen",
"translatorComment": "Copied from source.",
"placeholders": [
{
"id": "PasswordEncryptFlag",
"string": "%[1]s",
"type": "string",