forked from microsoft/vcpkg-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.json
1910 lines (1910 loc) · 198 KB
/
messages.json
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
{
"ABaseline": "a baseline",
"ABaselineObject": "a baseline object",
"ABoolean": "a boolean",
"ABuiltinRegistry": "a builtin registry",
"AConfigurationObject": "a configuration object",
"ADateVersionString": "a date version string",
"ADefaultFeature": "a default feature",
"ADemandObject": "a demand object",
"_ADemandObject.comment": "'demands' are a concept in the schema of a JSON file the user can edit",
"ADependency": "a dependency",
"ADependencyFeature": "a feature of a dependency",
"ADictionaryOfContacts": "a dictionary of contacts",
"AFeature": "a feature",
"AFeatureName": "a feature name",
"AFilesystemRegistry": "a filesystem registry",
"AGitObjectSha": "a git object SHA",
"AGitReference": "a git reference (for example, a branch)",
"AGitRegistry": "a git registry",
"AGitRepositoryUrl": "a git repository URL",
"AManifest": "a manifest",
"AMaximumOfOneAssetReadUrlCanBeSpecified": "a maximum of one asset read url can be specified.",
"AMaximumOfOneAssetWriteUrlCanBeSpecified": "a maximum of one asset write url can be specified.",
"ANonNegativeInteger": "a nonnegative integer",
"APackageName": "a package name",
"APackagePattern": "a package pattern",
"APackagePatternArray": "a package pattern array",
"APath": "a path",
"APlatformExpression": "a platform expression",
"ARegistry": "a registry",
"ARegistryImplementationKind": "a registry implementation kind",
"ARegistryPath": "a registry path",
"ARegistryPathMustBeDelimitedWithForwardSlashes": "A registry path must use single forward slashes as path separators.",
"ARegistryPathMustNotHaveDots": "A registry path must not have 'dot' or 'dot dot' path elements.",
"ARegistryPathMustStartWithDollar": "A registry path must start with `$` to mean the registry root; for example, `$/foo/bar`.",
"ARelaxedVersionString": "a relaxed version string",
"ASemanticVersionString": "a semantic version string",
"ASetOfFeatures": "a set of features",
"AString": "a string",
"AStringOrArrayOfStrings": "a string or array of strings",
"AStringStringDictionary": "a \"string\": \"string\" dictionary",
"AUrl": "a url",
"AVcpkgRepositoryCommit": "a vcpkg repository commit",
"AVersionConstraint": "a version constraint",
"AVersionDatabaseEntry": "a version database entry",
"AVersionObject": "a version object",
"AVersionOfAnyType": "a version of any type",
"AddArtifactOnlyOne": "'{command_line}' can only add one artifact at a time.",
"_AddArtifactOnlyOne.comment": "An example of {command_line} is vcpkg install zlib.",
"AddCommandFirstArg": "The first parameter to add must be 'artifact' or 'port'.",
"AddPortRequiresManifest": "'{command_line}' requires an active manifest file.",
"_AddPortRequiresManifest.comment": "An example of {command_line} is vcpkg install zlib.",
"AddPortSucceeded": "Succeeded in adding ports to vcpkg.json file.",
"AddRecurseOption": "If you are sure you want to remove them, run the command with the --recurse option.",
"AddTripletExpressionNotAllowed": "triplet expressions are not allowed here. You may want to change `{package_name}:{triplet}` to `{package_name}` instead.",
"_AddTripletExpressionNotAllowed.comment": "An example of {package_name} is zlib. An example of {triplet} is x64-windows.",
"AddVersionAddedVersionToFile": "added version {version} to {path}",
"_AddVersionAddedVersionToFile.comment": "An example of {version} is 1.3.8. An example of {path} is /foo/bar.",
"AddVersionArtifactsOnly": "--version is artifacts only and can't be used with vcpkg add port",
"_AddVersionArtifactsOnly.comment": "'--version', and 'vcpkg add port' are command lines that must not be localized",
"AddVersionCommitChangesReminder": "Did you remember to commit your changes?",
"AddVersionDetectLocalChangesError": "skipping detection of local changes due to unexpected format in git status output",
"AddVersionFileNotFound": "couldn't find required file {path}",
"_AddVersionFileNotFound.comment": "An example of {path} is /foo/bar.",
"AddVersionFormatPortSuggestion": "Run `{command_line}` to format the file",
"_AddVersionFormatPortSuggestion.comment": "An example of {command_line} is vcpkg install zlib.",
"AddVersionIgnoringOptionAll": "ignoring --{option} since a port name argument was provided",
"_AddVersionIgnoringOptionAll.comment": "The -- before {option} must be preserved as they're part of the help message for the user. An example of {option} is editable.",
"AddVersionInstructions": "you can run the following commands to add the current version of {package_name} automatically:",
"_AddVersionInstructions.comment": "An example of {package_name} is zlib.",
"AddVersionNewFile": "(new file)",
"AddVersionNewShaIs": "new SHA: {commit_sha}",
"_AddVersionNewShaIs.comment": "An example of {commit_sha} is 7cfad47ae9f68b183983090afd6337cd60fd4949.",
"AddVersionNoFilesUpdated": "No files were updated",
"AddVersionNoFilesUpdatedForPort": "No files were updated for {package_name}",
"_AddVersionNoFilesUpdatedForPort.comment": "An example of {package_name} is zlib.",
"AddVersionNoGitSha": "can't obtain SHA for port {package_name}",
"_AddVersionNoGitSha.comment": "An example of {package_name} is zlib.",
"AddVersionOldShaIs": "old SHA: {commit_sha}",
"_AddVersionOldShaIs.comment": "An example of {commit_sha} is 7cfad47ae9f68b183983090afd6337cd60fd4949.",
"AddVersionOverwriteOptionSuggestion": "Use --{option} to bypass this check",
"_AddVersionOverwriteOptionSuggestion.comment": "The -- before {option} must be preserved as they're a part of the help message for the user. An example of {option} is editable.",
"AddVersionPortFilesShaChanged": "checked-in files for {package_name} have changed but the version was not updated",
"_AddVersionPortFilesShaChanged.comment": "An example of {package_name} is zlib.",
"AddVersionPortFilesShaUnchanged": "checked-in files for {package_name} are unchanged from version {version}",
"_AddVersionPortFilesShaUnchanged.comment": "An example of {package_name} is zlib. An example of {version} is 1.3.8.",
"AddVersionPortHasImproperFormat": "{package_name} is not properly formatted",
"_AddVersionPortHasImproperFormat.comment": "An example of {package_name} is zlib.",
"AddVersionSuggestVersionDate": "The version format of \"{package_name}\" uses \"version-string\", but the format is acceptable as a \"version-date\". If this format is actually intended to be an ISO 8601 date, change the format to \"version-date\", and rerun this command. Otherwise, disable this check by rerunning this command and adding --skip-version-format-check .",
"_AddVersionSuggestVersionDate.comment": "\"version-string\" and \"version-date\" are JSON keys, and --skip-version-format-check is a command line switch. They should not be translated An example of {package_name} is zlib.",
"AddVersionSuggestVersionRelaxed": "The version format of \"{package_name}\" uses \"version-string\", but the format is acceptable as a \"version\". If the versions for this port are orderable using relaxed-version rules, change the format to \"version\", and rerun this command. Relaxed-version rules order versions by each numeric component. Then, versions with dash suffixes are sorted lexcographically before. Plus'd build tags are ignored. Examples:\n1.0 < 1.1-alpha < 1.1-b < 1.1 < 1.1.1 < 1.2+build = 1.2 < 2.0\nNote in particular that dashed suffixes sort *before*, not after. 1.0-anything < 1.0\nNote that this sort order is the same as chosen in Semantic Versioning (see https://semver.org), even though the actually semantic parts do not apply.\nIf versions for this port are not ordered by these rules, disable this check by rerunning this command and adding --skip-version-format-check .",
"_AddVersionSuggestVersionRelaxed.comment": "\"version-string\" and \"version\" are JSON keys, and --skip-version-format-check is a command line switch. They should not be translated An example of {package_name} is zlib.",
"AddVersionUncommittedChanges": "there are uncommitted changes for {package_name}",
"_AddVersionUncommittedChanges.comment": "An example of {package_name} is zlib.",
"AddVersionUpdateVersionReminder": "Did you remember to update the version or port version?",
"AddVersionUseOptionAll": "{command_name} with no arguments requires passing --{option} to update all port versions at once",
"_AddVersionUseOptionAll.comment": "The -- before {option} must be preserved as they're part of the help message for the user. An example of {command_name} is install. An example of {option} is editable.",
"AddVersionVersionAlreadyInFile": "version {version} is already in {path}",
"_AddVersionVersionAlreadyInFile.comment": "An example of {version} is 1.3.8. An example of {path} is /foo/bar.",
"AddVersionVersionIs": "version: {version}",
"_AddVersionVersionIs.comment": "An example of {version} is 1.3.8.",
"AddingCompletionEntry": "Adding vcpkg completion entry to {path}.",
"_AddingCompletionEntry.comment": "An example of {path} is /foo/bar.",
"AdditionalPackagesToExport": "Additional packages (*) need to be exported to complete this operation.",
"AdditionalPackagesToRemove": "Additional packages (*) need to be removed to complete this operation.",
"AllFormatArgsRawArgument": "format string \"{value}\" contains a raw format argument",
"_AllFormatArgsRawArgument.comment": "example of {value} is 'foo {} bar'",
"AllFormatArgsUnbalancedBraces": "unbalanced brace in format string \"{value}\"",
"_AllFormatArgsUnbalancedBraces.comment": "example of {value} is 'foo bar {'",
"AllPackagesAreUpdated": "All installed packages are up-to-date.",
"AlreadyInstalled": "{spec} is already installed",
"_AlreadyInstalled.comment": "An example of {spec} is zlib:x64-windows.",
"AlreadyInstalledNotHead": "{spec} is already installed -- not building from HEAD",
"_AlreadyInstalledNotHead.comment": "'HEAD' means the most recent version of source code An example of {spec} is zlib:x64-windows.",
"AmbiguousConfigDeleteConfigFile": "Ambiguous vcpkg configuration provided by both manifest and configuration file.\n-- Delete configuration file {path}",
"_AmbiguousConfigDeleteConfigFile.comment": "An example of {path} is /foo/bar.",
"AnArrayOfDefaultFeatures": "an array of default features",
"AnArrayOfDependencies": "an array of dependencies",
"AnArrayOfDependencyOverrides": "an array of dependency overrides",
"AnArrayOfFeatures": "an array of features",
"AnArrayOfIdentifers": "an array of identifiers",
"AnArrayOfOverlayPaths": "an array of overlay paths",
"AnArrayOfOverlayTripletsPaths": "an array of overlay triplets paths",
"AnArrayOfRegistries": "an array of registries",
"AnArrayOfVersions": "an array of versions",
"AnArtifactsGitRegistryUrl": "an artifacts git registry URL",
"AnArtifactsRegistry": "an artifacts registry",
"AnExactVersionString": "an exact version string",
"AnIdentifer": "an identifier",
"AnObjectContainingVcpkgArtifactsMetadata": "an object containing vcpkg-artifacts metadata",
"_AnObjectContainingVcpkgArtifactsMetadata.comment": "'vcpkg-artifacts' is the name of the product feature and should not be localized",
"AnOverlayPath": "an overlay path",
"AnOverlayTripletsPath": "a triplet path",
"AnOverride": "an override",
"AnSpdxLicenseExpression": "an SPDX license expression",
"AndroidHomeDirMissingProps": "source.properties missing in {env_var} directory: {path}",
"_AndroidHomeDirMissingProps.comment": "Note: 'source.properties' is code and should not be translated. An example of {env_var} is VCPKG_DEFAULT_TRIPLET. An example of {path} is /foo/bar.",
"AnotherInstallationInProgress": "Another installation is in progress on the machine, sleeping 6s before retrying.",
"AppliedUserIntegration": "Applied user-wide integration for this vcpkg root.",
"ApplocalProcessing": "deploying dependencies",
"ArtifactsBootstrapFailed": "vcpkg-artifacts is not installed and could not be bootstrapped.",
"ArtifactsNotInstalledReadonlyRoot": "vcpkg-artifacts is not installed, and it can't be installed because VCPKG_ROOT is assumed to be readonly. Reinstalling vcpkg using the 'one liner' may fix this problem.",
"ArtifactsOptionIncompatibility": "--{option} has no effect on find artifact.",
"_ArtifactsOptionIncompatibility.comment": "An example of {option} is editable.",
"ArtifactsOptionJson": "Full path to JSON file where environment variables and other properties are recorded",
"ArtifactsOptionMSBuildProps": "Full path to the file in which MSBuild properties will be written",
"ArtifactsOptionVersion": "A version or version range to match; only valid for artifacts",
"ArtifactsOptionVersionMismatch": "The number of --version switches must match the number of named artifacts",
"_ArtifactsOptionVersionMismatch.comment": "--version is a command line switch and must not be localized",
"ArtifactsSwitchARM": "Forces host detection to ARM when acquiring artifacts",
"ArtifactsSwitchARM64": "Forces host detection to ARM64 when acquiring artifacts",
"ArtifactsSwitchAllLanguages": "Acquires all language files when acquiring artifacts",
"ArtifactsSwitchForce": "Forces reacquire if an artifact is already acquired",
"ArtifactsSwitchFreebsd": "Forces host detection to FreeBSD when acquiring artifacts",
"ArtifactsSwitchLinux": "Forces host detection to Linux when acquiring artifacts",
"ArtifactsSwitchOnlyOneHostPlatform": "Only one host platform (--x64, --x86, --arm, --arm64) may be set.",
"_ArtifactsSwitchOnlyOneHostPlatform.comment": "The words after -- are command line switches and must not be localized.",
"ArtifactsSwitchOnlyOneOperatingSystem": "Only one operating system (--windows, --osx, --linux, --freebsd) may be set.",
"_ArtifactsSwitchOnlyOneOperatingSystem.comment": "The words after -- are command line switches and must not be localized.",
"ArtifactsSwitchOnlyOneTargetPlatform": "Only one target platform (--target:x64, --target:x86, --target:arm, --target:arm64) may be set.",
"_ArtifactsSwitchOnlyOneTargetPlatform.comment": "The words after -- are command line switches and must not be localized.",
"ArtifactsSwitchOsx": "Forces host detection to MacOS when acquiring artifacts",
"ArtifactsSwitchTargetARM": "Sets target detection to ARM when acquiring artifacts",
"ArtifactsSwitchTargetARM64": "Sets target detection to ARM64 when acquiring artifacts",
"ArtifactsSwitchTargetX64": "Sets target detection to x64 when acquiring artifacts",
"ArtifactsSwitchTargetX86": "Sets target to x86 when acquiring artifacts",
"ArtifactsSwitchWindows": "Forces host detection to Windows when acquiring artifacts",
"ArtifactsSwitchX64": "Forces host detection to x64 when acquiring artifacts",
"ArtifactsSwitchX86": "Forces host detection to x86 when acquiring artifacts",
"AssetCacheHit": "Asset cache hit for {path}; downloaded from: {url}",
"_AssetCacheHit.comment": "An example of {path} is /foo/bar. An example of {url} is https://github.com/microsoft/vcpkg.",
"AssetCacheMiss": "Asset cache miss; downloading from {url}",
"_AssetCacheMiss.comment": "An example of {url} is https://github.com/microsoft/vcpkg.",
"AssetCacheMissBlockOrigin": "Asset cache miss for {path} and downloads are blocked by x-block-origin.",
"_AssetCacheMissBlockOrigin.comment": "x-block-origin is a vcpkg term. Do not translate An example of {path} is /foo/bar.",
"AssetCacheProviderAcceptsNoArguments": "unexpected arguments: '{value}' does not accept arguments",
"_AssetCacheProviderAcceptsNoArguments.comment": "{value} is a asset caching provider name such as azurl, clear, or x-block-origin",
"AssetCacheSuccesfullyStored": "Successfully stored {path} to {url}.",
"_AssetCacheSuccesfullyStored.comment": "An example of {path} is /foo/bar. An example of {url} is https://github.com/microsoft/vcpkg.",
"AssetSourcesArg": "Asset caching sources. See 'vcpkg help assetcaching'",
"AttemptingToSetBuiltInBaseline": "attempting to set builtin-baseline in vcpkg.json while overriding the default-registry in vcpkg-configuration.json.\nthe default-registry from vcpkg-configuration.json will be used.",
"AuthenticationMayRequireManualAction": "One or more {vendor} credential providers requested manual action. Add the binary source 'interactive' to allow interactivity.",
"_AuthenticationMayRequireManualAction.comment": "An example of {vendor} is Azure.",
"AutoSettingEnvVar": "-- Automatically setting {env_var} environment variables to \"{url}\".",
"_AutoSettingEnvVar.comment": "An example of env_var is \"HTTP(S)_PROXY\"'--' at the beginning must be preserved An example of {env_var} is VCPKG_DEFAULT_TRIPLET. An example of {url} is https://github.com/microsoft/vcpkg.",
"AutomaticLinkingForMSBuildProjects": "All MSBuild C++ projects can now #include any installed libraries. Linking will be handled automatically. Installing new libraries will make them instantly available.",
"AutomaticLinkingForVS2017AndLater": "Visual Studio 2017 and later can now #include any installed libraries. Linking will be handled automatically. Installing new libraries will make them instantly available.",
"AvailableHelpTopics": "Available help topics:",
"AzUrlAssetCacheRequiresBaseUrl": "unexpected arguments: asset config 'azurl' requires a base url",
"AzUrlAssetCacheRequiresLessThanFour": "unexpected arguments: asset config 'azurl' requires fewer than 4 arguments",
"BaselineConflict": "Specifying vcpkg-configuration.default-registry in a manifest file conflicts with built-in baseline.\nPlease remove one of these conflicting settings.",
"BaselineGitShowFailed": "while checking out baseline from commit '{commit_sha}', failed to `git show` versions/baseline.json. This may be fixed by fetching commits with `git fetch`.",
"_BaselineGitShowFailed.comment": "An example of {commit_sha} is 7cfad47ae9f68b183983090afd6337cd60fd4949.",
"BaselineMissing": "{package_name} is not assigned a version",
"_BaselineMissing.comment": "An example of {package_name} is zlib.",
"BinariesRelativeToThePackageDirectoryHere": "the binaries are relative to ${{CURRENT_PACKAGES_DIR}} here",
"BinarySourcesArg": "Binary caching sources. See 'vcpkg help binarycaching'",
"_BinarySourcesArg.comment": "'vcpkg help binarycaching' is a command line and should not be localized",
"BinaryWithInvalidArchitecture": "{path} is built for {arch}",
"_BinaryWithInvalidArchitecture.comment": "An example of {path} is /foo/bar. An example of {arch} is x64.",
"BuildAlreadyInstalled": "{spec} is already installed; please remove {spec} before attempting to build it.",
"_BuildAlreadyInstalled.comment": "An example of {spec} is zlib:x64-windows.",
"BuildDependenciesMissing": "The build command requires all dependencies to be already installed.\nThe following dependencies are missing:",
"BuildResultBuildFailed": "BUILD_FAILED",
"_BuildResultBuildFailed.comment": "Printed after the name of an installed entity to indicate that it failed to build.",
"BuildResultCacheMissing": "CACHE_MISSING",
"_BuildResultCacheMissing.comment": "Printed after the name of an installed entity to indicate that it was not present in the binary cache when the user has requested that things may only be installed from the cache rather than built.",
"BuildResultCascadeDueToMissingDependencies": "CASCADED_DUE_TO_MISSING_DEPENDENCIES",
"_BuildResultCascadeDueToMissingDependencies.comment": "Printed after the name of an installed entity to indicate that it could not attempt to be installed because one of its transitive dependencies failed to install.",
"BuildResultDownloaded": "DOWNLOADED",
"_BuildResultDownloaded.comment": "Printed after the name of an installed entity to indicate that it was successfully downloaded but no build or install was requested.",
"BuildResultExcluded": "EXCLUDED",
"_BuildResultExcluded.comment": "Printed after the name of an installed entity to indicate that the user explicitly requested it not be installed.",
"BuildResultFileConflicts": "FILE_CONFLICTS",
"_BuildResultFileConflicts.comment": "Printed after the name of an installed entity to indicate that it conflicts with something already installed",
"BuildResultPostBuildChecksFailed": "POST_BUILD_CHECKS_FAILED",
"_BuildResultPostBuildChecksFailed.comment": "Printed after the name of an installed entity to indicate that it built successfully, but that it failed post build checks.",
"BuildResultRemoved": "REMOVED",
"_BuildResultRemoved.comment": "Printed after the name of an uninstalled entity to indicate that it was successfully uninstalled.",
"BuildResultSucceeded": "SUCCEEDED",
"_BuildResultSucceeded.comment": "Printed after the name of an installed entity to indicate that it was built and installed successfully.",
"BuildResultSummaryHeader": "SUMMARY FOR {triplet}",
"_BuildResultSummaryHeader.comment": "Displayed before a list of a summary installation results. An example of {triplet} is x64-windows.",
"BuildResultSummaryLine": "{build_result}: {count}",
"_BuildResultSummaryLine.comment": "Displayed to show a count of results of a build_result in a summary. An example of {build_result} is One of the BuildResultXxx messages (such as BuildResultSucceeded/SUCCEEDED). An example of {count} is 42.",
"BuildTreesRootDir": "Buildtrees directory (experimental)",
"BuildTroubleshootingMessage1": "Please ensure you're using the latest port files with `git pull` and `vcpkg update`.\nThen check for known issues at:",
"_BuildTroubleshootingMessage1.comment": "First part of build troubleshooting message, printed before the URI to look for existing bugs.",
"BuildTroubleshootingMessage2": "You can submit a new issue at:",
"_BuildTroubleshootingMessage2.comment": "Second part of build troubleshooting message, printed after the URI to look for existing bugs but before the URI to file one.",
"BuildTroubleshootingMessage3": "Include '[{package_name}] Build error' in your bug report title, the following version information in your bug description, and attach any relevant failure logs from above.",
"_BuildTroubleshootingMessage3.comment": "Third part of build troubleshooting message, printed after the URI to file a bug but before version information about vcpkg itself. An example of {package_name} is zlib.",
"BuildTroubleshootingMessageGH": "You can also submit an issue by running (GitHub CLI must be installed):",
"_BuildTroubleshootingMessageGH.comment": "Another part of build troubleshooting message, printed after the URI. An alternative version to create an issue in some cases.",
"BuildingFromHead": "Building {spec} from HEAD...",
"_BuildingFromHead.comment": "'HEAD' means the most recent version of source code An example of {spec} is zlib:x64-windows.",
"BuildingPackage": "Building {spec}...",
"_BuildingPackage.comment": "An example of {spec} is zlib:x64-windows.",
"BuildingPackageFailed": "building {spec} failed with: {build_result}",
"_BuildingPackageFailed.comment": "An example of {spec} is zlib:x64-windows. An example of {build_result} is One of the BuildResultXxx messages (such as BuildResultSucceeded/SUCCEEDED).",
"BuildingPackageFailedDueToMissingDeps": "due to the following missing dependencies:",
"_BuildingPackageFailedDueToMissingDeps.comment": "Printed after BuildingPackageFailed, and followed by a list of dependencies that were missing.",
"BuiltInTriplets": "Built-in Triplets:",
"BuiltWithIncorrectArchitecture": "The triplet requests that binaries are built for {arch}, but the following binaries were built for a different architecture. This usually means toolchain information is incorrectly conveyed to the binaries' build system. To suppress this message, add set(VCPKG_POLICY_SKIP_ARCHITECTURE_CHECK enabled)",
"_BuiltWithIncorrectArchitecture.comment": "An example of {arch} is x64.",
"CISettingsOptCIBase": "Path to the ci.baseline.txt file. Used to skip ports and detect regressions.",
"CISettingsOptExclude": "Comma separated list of ports to skip",
"CISettingsOptFailureLogs": "Directory to which failure logs will be copied",
"CISettingsOptHostExclude": "Comma separated list of ports to skip for the host triplet",
"CISettingsOptOutputHashes": "File to output all determined package hashes",
"CISettingsOptParentHashes": "File to read package hashes for a parent CI state, to reduce the set of changed packages",
"CISettingsOptXUnit": "File to output results in XUnit format",
"CISettingsVerifyGitTree": "Verifies that each git tree object matches its declared version (this is very slow)",
"CISettingsVerifyVersion": "Prints result for each port rather than only just errors",
"CISkipInstallation": "The following packages are already installed and won't be built again:",
"CISwitchOptAllowUnexpectedPassing": "Suppresses 'Passing, remove from fail list' results",
"CISwitchOptDryRun": "Prints out plan without execution",
"CISwitchOptRandomize": "Randomizes the install order",
"CISwitchOptSkipFailures": "Skips ports marked `=fail` in ci.baseline.txt",
"_CISwitchOptSkipFailures.comment": "=fail is an on-disk format and should not be localized",
"CISwitchOptXUnitAll": "Reports unchanged ports in the XUnit output",
"CMakePkgConfigTargetsUsage": "{package_name} provides pkg-config modules:",
"_CMakePkgConfigTargetsUsage.comment": "An example of {package_name} is zlib.",
"CMakeTargetsUsage": "{package_name} provides CMake targets:",
"_CMakeTargetsUsage.comment": "'targets' are a CMake and Makefile concept An example of {package_name} is zlib.",
"CMakeTargetsUsageHeuristicMessage": "# this is heuristically generated, and may not be correct",
"_CMakeTargetsUsageHeuristicMessage.comment": "Displayed after CMakeTargetsUsage; the # must be kept at the beginning so that the message remains a comment.",
"CMakeToolChainFile": "CMake projects should use: \"-DCMAKE_TOOLCHAIN_FILE={path}\"",
"_CMakeToolChainFile.comment": "An example of {path} is /foo/bar.",
"CMakeUsingExportedLibs": "To use exported libraries in CMake projects, add {value} to your CMake command line.",
"_CMakeUsingExportedLibs.comment": "{value} is a CMake command line switch of the form -DFOO=BAR",
"ChecksFailedCheck": "vcpkg has crashed; no additional details are available.",
"ChecksUnreachableCode": "unreachable code was reached",
"ChecksUpdateVcpkg": "updating vcpkg by rerunning bootstrap-vcpkg may resolve this failure.",
"CiBaselineAllowUnexpectedPassingRequiresBaseline": "--allow-unexpected-passing can only be used if a baseline is provided via --ci-baseline.",
"CiBaselineDisallowedCascade": "REGRESSION: {spec} cascaded, but it is required to pass. ({path}).",
"_CiBaselineDisallowedCascade.comment": "An example of {spec} is zlib:x64-windows. An example of {path} is /foo/bar.",
"CiBaselineIndependentRegression": "REGRESSION: Independent {spec} failed with {build_result}.",
"_CiBaselineIndependentRegression.comment": "An example of {spec} is zlib:x64-windows. An example of {build_result} is One of the BuildResultXxx messages (such as BuildResultSucceeded/SUCCEEDED).",
"CiBaselineRegression": "REGRESSION: {spec} failed with {build_result}. If expected, add {spec}=fail to {path}.",
"_CiBaselineRegression.comment": "An example of {spec} is zlib:x64-windows. An example of {build_result} is One of the BuildResultXxx messages (such as BuildResultSucceeded/SUCCEEDED). An example of {path} is /foo/bar.",
"CiBaselineRegressionHeader": "REGRESSIONS:",
"_CiBaselineRegressionHeader.comment": "Printed before a series of CiBaselineRegression and/or CiBaselineUnexpectedPass messages.",
"CiBaselineUnexpectedFail": "REGRESSION: {spec} is marked as fail but not supported for {triplet}.",
"_CiBaselineUnexpectedFail.comment": "An example of {spec} is zlib:x64-windows. An example of {triplet} is x64-windows.",
"CiBaselineUnexpectedFailCascade": "REGRESSION: {spec} is marked as fail but one dependency is not supported for {triplet}.",
"_CiBaselineUnexpectedFailCascade.comment": "An example of {spec} is zlib:x64-windows. An example of {triplet} is x64-windows.",
"CiBaselineUnexpectedPass": "PASSING, REMOVE FROM FAIL LIST: {spec} ({path}).",
"_CiBaselineUnexpectedPass.comment": "An example of {spec} is zlib:x64-windows. An example of {path} is /foo/bar.",
"ClearingContents": "Clearing contents of {path}",
"_ClearingContents.comment": "An example of {path} is /foo/bar.",
"CmakeTargetsExcluded": "{count} additional targets are not displayed.",
"_CmakeTargetsExcluded.comment": "An example of {count} is 42.",
"CmdAcquireExample1": "vcpkg acquire <artifact>",
"_CmdAcquireExample1.comment": "This is a command line, only the <>s part should be localized",
"CmdAcquireProjectSynopsis": "Acquires all artifacts referenced by a manifest",
"CmdAcquireSynopsis": "Acquires the named artifact",
"CmdActivateSynopsis": "Activates artifacts from a manifest",
"CmdAddExample1": "vcpkg add port <port name>",
"CmdAddExample2": "vcpkg add artifact <artifact name>",
"CmdAddSynopsis": "Adds dependency to manifest",
"CmdAddVersionExample1": "vcpkg x-add-version <port name>",
"_CmdAddVersionExample1.comment": "This is a command line, only the <>s part should be localized",
"CmdAddVersionOptAll": "Processes versions for all ports",
"CmdAddVersionOptOverwriteVersion": "Overwrites git-tree of an existing version",
"CmdAddVersionOptSkipFormatChk": "Skips the formatting check of vcpkg.json files",
"CmdAddVersionOptSkipVersionFormatChk": "Skips the version format check",
"CmdAddVersionOptVerbose": "Prints success messages rather than only errors",
"CmdAddVersionSynopsis": "Adds a version to the version database",
"CmdBootstrapStandaloneSynopsis": "Bootstraps a vcpkg root from only a vcpkg binary",
"CmdBuildExample1": "vcpkg build <port spec>",
"_CmdBuildExample1.comment": "This is a command line, only the <>s part should be localized",
"CmdBuildExternalExample1": "vcpkg build-external <port name> <source path>",
"_CmdBuildExternalExample1.comment": "This is a command line, only the <>s part should be localized",
"CmdBuildExternalExample2": "vcpkg build-external zlib2 C:\\path\\to\\dir\\with\\vcpkg.json",
"_CmdBuildExternalExample2.comment": "This is a command line, only the path part should be changed to a path conveying the same idea",
"CmdBuildExternalSynopsis": "Builds port from a path",
"CmdBuildSynopsis": "Builds a port",
"CmdCheckSupportExample1": "vcpkg x-check-support <port name>",
"_CmdCheckSupportExample1.comment": "This is a command line, only the <>s part should be localized",
"CmdCheckSupportSynopsis": "Tests whether a port is supported without building it",
"CmdCiCleanSynopsis": "Clears all files to prepare for a CI run",
"_CmdCiCleanSynopsis.comment": "CI is continuous integration (building everything together)",
"CmdCiSynopsis": "Tries building all ports for CI testing",
"_CmdCiSynopsis.comment": "CI is continuous integration (building everything together)",
"CmdCiVerifyVersionsSynopsis": "Checks integrity of the version database",
"CmdCreateExample1": "vcpkg create <port name> <uri>",
"_CmdCreateExample1.comment": "This is a command line, only the <>s part should be localized",
"CmdCreateExample2": "vcpkg create my-fancy-port https://example.com/sources.zip",
"_CmdCreateExample2.comment": "This is a command line, 'my-fancy-port' and 'sources.zip' should probably be localized",
"CmdCreateExample3": "vcpkg create <port name> <uri> <downloaded filename>",
"_CmdCreateExample3.comment": "This is a command line, only the <>s part should be localized",
"CmdDeactivateSynopsis": "Removes all artifact activations from the current shell",
"CmdDependInfoExample1": "vcpkg depend-info <port name>",
"_CmdDependInfoExample1.comment": "This is a command line, only the <>s part should be localized",
"CmdDependInfoFormatConflict": "Conflicting formats specified. Only one of --format, --dgml, or --dot are accepted.",
"CmdDependInfoFormatHelp": "Chooses output format, one of `list`, `tree`, `mermaid`, `dot`, or `dgml`",
"_CmdDependInfoFormatHelp.comment": "The alternatives in ``s must not be localized.",
"CmdDependInfoFormatInvalid": "--format={value} is not a recognized format. --format must be one of `list`, `tree`, `mermaid`, `dot`, or `dgml`.",
"_CmdDependInfoFormatInvalid.comment": "The alternatives in ``s must not be localized. {value} is what the user specified.",
"CmdDependInfoOptDepth": "Shows recursion depth in `list` output",
"CmdDependInfoOptMaxRecurse": "Sets max recursion depth. Default is no limit",
"CmdDependInfoOptSort": "Chooses sort order for the `list` format, one of `lexicographical`, `topological` (default), `reverse`",
"_CmdDependInfoOptSort.comment": "The alternatives in ``s must not be localized, but the localized text can explain what each value means. The value `reverse` means 'reverse-topological'.",
"CmdDependInfoShowDepthFormatMismatch": "--show-depth can only be used with `list` and `tree` formats.",
"CmdDependInfoXtreeTree": "--sort=x-tree cannot be used with formats other than tree",
"CmdDownloadExample1": "vcpkg x-download <filepath> <sha512> --url=https://...",
"_CmdDownloadExample1.comment": "This is a command line, only the <filepath> part should be localized",
"CmdDownloadExample2": "vcpkg x-download <filepath> --sha512=<sha512> --url=https://...",
"_CmdDownloadExample2.comment": "This is a command line, only the <filepath> part should be localized",
"CmdDownloadExample3": "vcpkg x-download <filepath> --skip-sha512 --url=https://...",
"_CmdDownloadExample3.comment": "This is a command line, only the <filepath> part should be localized",
"CmdDownloadSynopsis": "Downloads a file",
"CmdEditExample1": "vcpkg edit <port name>",
"_CmdEditExample1.comment": "This is a command line, only the <port name> part should be localized",
"CmdEditOptAll": "Opens editor into the port as well as the port-specific buildtree subfolder",
"CmdEditOptBuildTrees": "Opens editor into the port-specific buildtree subfolder",
"CmdEnvOptions": "Adds installed {path} to {env_var}",
"_CmdEnvOptions.comment": "An example of {path} is /foo/bar. An example of {env_var} is VCPKG_DEFAULT_TRIPLET.",
"CmdExportEmptyPlan": "Refusing to create an export of zero packages. Install packages before exporting.",
"CmdExportExample1": "vcpkg export <port names> [--nuget] [--output-dir=out_dir]",
"_CmdExportExample1.comment": "This is a command line, only <port names> and the out_dir part should be localized",
"CmdExportOpt7Zip": "Exports to a 7zip (.7z) file",
"CmdExportOptChocolatey": "Exports a Chocolatey package (experimental)",
"CmdExportOptDebug": "Enables prefab debug",
"CmdExportOptDryRun": "Does not actually export",
"CmdExportOptIFW": "Exports to an IFW-based installer",
"CmdExportOptInstalled": "Exports all installed packages",
"CmdExportOptMaven": "Enables Maven",
"CmdExportOptNuget": "Exports a NuGet package",
"CmdExportOptPrefab": "Exports to Prefab format",
"CmdExportOptRaw": "Exports to an uncompressed directory",
"CmdExportOptZip": "Exports to a zip file",
"CmdExportSettingChocolateyMaint": "The maintainer for the exported Chocolatey package (experimental)",
"CmdExportSettingChocolateyVersion": "The version suffix to add for the exported Chocolatey package (experimental)",
"CmdExportSettingConfigFile": "The temporary file path for the installer configuration",
"CmdExportSettingInstallerPath": "The file path for the exported installer",
"CmdExportSettingNugetDesc": "Description for the exported NuGet package",
"CmdExportSettingNugetID": "Id for the exported NuGet package (overrides --output)",
"CmdExportSettingNugetVersion": "The version for the exported NuGet package",
"CmdExportSettingOutput": "The output name (used to construct filename)",
"CmdExportSettingOutputDir": "The output directory for produced artifacts",
"CmdExportSettingPkgDir": "The temporary directory path for the repacked packages",
"CmdExportSettingPrefabArtifactID": "Artifact Id is the name of the project according Maven specifications",
"CmdExportSettingPrefabGroupID": "GroupId uniquely identifies your project according Maven specifications",
"CmdExportSettingPrefabVersion": "Version is the name of the project according Maven specifications",
"CmdExportSettingRepoDir": "The directory path for the exported repository",
"CmdExportSettingRepoURL": "The remote repository URL for the online installer",
"CmdExportSettingSDKMinVersion": "The Android minimum supported SDK version",
"CmdExportSettingSDKTargetVersion": "The Android target sdk version",
"CmdExportSynopsis": "Creates a standalone deployment of installed ports",
"CmdFetchOptXStderrStatus": "Prints status/downloading messages to stderr rather than stdout (Errors/failures still go to stdout)",
"CmdFetchSynopsis": "Fetches something from the system or the internet",
"CmdFindExample1": "vcpkg find port <port name>",
"_CmdFindExample1.comment": "This is a command line, only the <>s part should be localized",
"CmdFindExample2": "vcpkg find artifact <artifact name>",
"_CmdFindExample2.comment": "This is a command line, only the <>s part should be localized",
"CmdFindSynopsis": "Finds a port or artifact that may be installed or activated",
"CmdFormatManifestExample1": "vcpkg format-manifest <vcpkg.json path>",
"_CmdFormatManifestExample1.comment": "This is a command line, only the <vcpkg.json path>s part should be localized",
"CmdFormatManifestOptAll": "Formats all ports' manifest files",
"CmdFormatManifestOptConvertControl": "Converts CONTROL files to manifest files",
"CmdFormatManifestSynopsis": "Prettyfies vcpkg.json",
"CmdGenerateMSBuildPropsExample1": "vcpkg generate-msbuild-props --msbuild-props <path>",
"_CmdGenerateMSBuildPropsExample1.comment": "This is a command line, only the <path> part should be localized",
"CmdGenerateMSBuildPropsExample2": "vcpkg generate-msbuild-props --msbuild-props out.props",
"_CmdGenerateMSBuildPropsExample2.comment": "This is a command line, only the word 'out' should be localized",
"CmdGenerateMSBuildPropsSynopsis": "Generates msbuild .props files as if activating a manifest's artifact dependencies, without acquiring them",
"CmdGenerateMessageMapOptNoOutputComments": "Excludes comments when generating the message map (useful for generating the English localization file)",
"CmdHashExample1": "vcpkg hash <path>",
"_CmdHashExample1.comment": "This is a command line, only the <path> part should be localized",
"CmdHashExample2": "vcpkg hash <path> SHA256",
"_CmdHashExample2.comment": "This is a command line, only the <path> part should be localized",
"CmdHashSynopsis": "Gets a file's SHA256 or SHA512",
"CmdHelpCommandSynopsis": "Displays help detail for <command>",
"CmdHelpCommands": "help <command>",
"_CmdHelpCommands.comment": "This is a command line, only <command> should be localized.",
"CmdHelpCommandsSynopsis": "Displays full list of commands, including rare ones not listed here",
"CmdHelpTopic": "help <topic>",
"_CmdHelpTopic.comment": "This is a command line, only <topic> should be localized.",
"CmdInfoOptInstalled": "(experimental) Reports installed packages rather than available",
"CmdInfoOptTransitive": "(experimental) Also reports dependencies of installed packages",
"CmdInitRegistryExample1": "vcpkg x-init-registry <path>",
"_CmdInitRegistryExample1.comment": "This is a command line, only the <path> part should be localized",
"CmdInitRegistrySynopsis": "Creates a blank git registry",
"CmdInstallExample1": "vcpkg install <port name> <port name>...",
"_CmdInstallExample1.comment": "This is a command line, only the <> parts should be localized",
"CmdIntegrateSynopsis": "Integrates vcpkg with machines, projects, or shells",
"CmdListExample2": "vcpkg list <filter>",
"_CmdListExample2.comment": "This is a command line, only the <filter> part should be localized",
"CmdNewExample1": "vcpkg new --name=example --version=1.0",
"_CmdNewExample1.comment": "This is a command line, only the word example should be localized",
"CmdNewOptApplication": "Creates an application manifest (don't require name or version)",
"CmdNewOptSingleFile": "Embeds vcpkg-configuration.json into vcpkg.json",
"CmdNewOptVersionDate": "Interprets --version as an ISO 8601 date. (YYYY-MM-DD)",
"CmdNewOptVersionRelaxed": "Interprets --version as a relaxed-numeric version (Nonnegative numbers separated by dots)",
"CmdNewOptVersionString": "Interprets --version as a string with no ordering behavior",
"CmdNewSettingName": "Name for the new manifest",
"CmdNewSettingVersion": "Version for the new manifest",
"CmdNewSynposis": "Creates a new manifest",
"CmdOwnsExample1": "vcpkg owns <pattern>",
"_CmdOwnsExample1.comment": "This is a command line, only the part <pattern> should be localized.",
"CmdPackageInfoExample1": "vcpkg x-package-info <package name>...",
"_CmdPackageInfoExample1.comment": "This is a command line, only the part <package name> should be localized.",
"CmdPortsdiffExample1": "vcpkg portsdiff <branch name>",
"_CmdPortsdiffExample1.comment": "This is a command line, only the <branch name> part should be localized",
"CmdPortsdiffExample2": "vcpkg portsdiff <from> <to>",
"_CmdPortsdiffExample2.comment": "This is a command line, only the parts in <>s should be localized",
"CmdPortsdiffSynopsis": "Diffs changes in port versions between commits",
"CmdRegenerateOptDryRun": "Does not actually perform the action, shows only what would be done",
"CmdRegenerateOptForce": "Proceeds with the (potentially dangerous) action without confirmation",
"CmdRegenerateOptNormalize": "Applies any deprecation fixes",
"CmdRemoveExample1": "vcpkg remove <package name>...",
"_CmdRemoveExample1.comment": "This is a command line, only the part <package name> should be localized.",
"CmdRemoveOptDryRun": "Prints the packages to be removed, but does not remove them",
"CmdRemoveOptOutdated": "Removes all packages with versions that do not match the built-in registry",
"CmdRemoveOptRecurse": "Allows removal of dependent packages not explicitly specified",
"CmdSearchExample1": "vcpkg search <pattern>",
"_CmdSearchExample1.comment": "This is a command line, only the part <pattern> should be localized.",
"CmdSetInstalledExample1": "vcpkg x-set-installed <package name> <package name>...",
"_CmdSetInstalledExample1.comment": "This is a command line, only the part <package name> should be localized.",
"CmdSetInstalledOptDryRun": "Does not actually build or install",
"CmdSetInstalledOptNoUsage": "Does not print CMake usage information after install",
"CmdSetInstalledOptWritePkgConfig": "Writes a NuGet packages.config-formatted file for use with external binary caching. See `vcpkg help binarycaching` for more information",
"_CmdSetInstalledOptWritePkgConfig.comment": "'vcpkg help binarycaching' is a command line and should not be localized.",
"CmdSetInstalledSynopsis": "Installs, upgrades, or removes packages such that that installed matches exactly those supplied",
"CmdSettingCopiedFilesLog": "Path to the copied files log to create",
"CmdSettingInstalledDir": "Path to the installed tree to use",
"CmdSettingTLogFile": "Path to the tlog file to create",
"CmdSettingTargetBin": "Path to the binary to analyze",
"CmdUpdateBaselineOptDryRun": "Prints out plan without execution",
"CmdUpdateBaselineOptInitial": "Adds a `builtin-baseline` to a vcpkg.json that doesn't already have it",
"CmdUpdateBaselineSynopsis": "Updates baselines of git registries in a manifest to those registries' HEAD commit",
"CmdUpdateRegistryAll": "Updates all known artifact registries",
"CmdUpdateRegistryAllExcludesTargets": "Update registry --all cannot be used with a list of artifact registries",
"CmdUpdateRegistryAllOrTargets": "Update registry requires either a list of artifact registry names or URiIs to update, or --all.",
"CmdUpdateRegistryExample3": "vcpkg x-update-registry <artifact registry name>",
"_CmdUpdateRegistryExample3.comment": "This is a command line, only the <artifact registry name> part should be localized.",
"CmdUpdateRegistrySynopsis": "Re-downloads an artifact registry",
"CmdUpgradeOptNoDryRun": "Actually upgrade",
"CmdUpgradeOptNoKeepGoing": "Stop installing packages on failure",
"CmdUseExample1": "vcpkg use <artifact name>",
"_CmdUseExample1.comment": "This is a command line, only the <artifact name> part should be localized.",
"CmdUseSynopsis": "Activate a single artifact in this shell",
"CmdVSInstancesSynopsis": "Lists detected Visual Studio instances",
"CmdXDownloadOptHeader": "Additional header to use when fetching from URLs",
"CmdXDownloadOptSha": "The hash of the file to be downloaded",
"CmdXDownloadOptSkipSha": "Skips check of SHA512 of the downloaded file",
"CmdXDownloadOptStore": "Stores the the file should father than fetching it",
"CmdXDownloadOptUrl": "URL to download and store if missing from cache",
"CmdZApplocalSynopsis": "Copies a binary's dependencies from the installed tree to where that binary's location for app-local deployment",
"CmdZExtractExample1": "vcpkg z-extract <archive path> <output directory>",
"_CmdZExtractExample1.comment": "This is a command line, only the parts in <>s should be localized",
"CmdZExtractExample2": "vcpkg z-extract source.zip source_dir --strip 2",
"_CmdZExtractExample2.comment": "This is a command line, the example archive 'source.zip' and the example output directory 'source_dir' should be localized",
"CmdZExtractOptStrip": "The number of leading directories to strip from all paths",
"CommandEnvExample2": "vcpkg env \"ninja -C <path>\" --triplet x64-windows",
"_CommandEnvExample2.comment": "This is a command line, only the <path> part should be localized",
"CommandFailed": "command:\n{command_line}\nfailed with the following output:",
"_CommandFailed.comment": "An example of {command_line} is vcpkg install zlib.",
"CommandFailedCode": "command:\n{command_line}\nfailed with exit code {exit_code} and the following output:",
"_CommandFailedCode.comment": "An example of {command_line} is vcpkg install zlib. An example of {exit_code} is 127.",
"CommunityTriplets": "Community Triplets:",
"CompilerPath": "Compiler found: {path}",
"_CompilerPath.comment": "An example of {path} is /foo/bar.",
"CompressFolderFailed": "Failed to compress folder \"{path}\":",
"_CompressFolderFailed.comment": "An example of {path} is /foo/bar.",
"ComputingInstallPlan": "Computing installation plan...",
"ConfigurationErrorRegistriesWithoutBaseline": "The configuration defined in {path} is invalid.\n\nUsing registries requires that a baseline is set for the default registry or that the default registry is null.\n\nSee {url} for more details.",
"_ConfigurationErrorRegistriesWithoutBaseline.comment": "An example of {path} is /foo/bar. An example of {url} is https://github.com/microsoft/vcpkg.",
"ConfigurationNestedDemands": "[\"{json_field}\"] contains a nested `demands` object (nested `demands` have no effect)",
"_ConfigurationNestedDemands.comment": "An example of {json_field} is identifer.",
"ConflictingFiles": "The following files are already installed in {path} and are in conflict with {spec}",
"_ConflictingFiles.comment": "An example of {path} is /foo/bar. An example of {spec} is zlib:x64-windows.",
"ConsideredVersions": "The following executables were considered but discarded because of the version requirement of {version}:",
"_ConsideredVersions.comment": "An example of {version} is 1.3.8.",
"ConstraintViolation": "Found a constraint violation:",
"ContinueCodeUnitInStart": "found continue code unit in start position",
"ControlCharacterInString": "Control character in string",
"ControlSupportsMustBeAPlatformExpression": "\"Supports\" must be a platform expression",
"CopyrightIsDir": "this port sets ${{CURRENT_PACKAGES_DIR}}/share/${{PORT}}/copyright to a directory, but it should be a file. Consider combining separate copyright files into one using vcpkg_install_copyright. To suppress this message, add set(VCPKG_POLICY_SKIP_COPYRIGHT_CHECK enabled)",
"CorruptedDatabase": "vcpkg's installation database corrupted. This is either a bug in vcpkg or something else has modified the contents of the 'installed' directory in an unexpected way. You may be able to fix this by deleting the 'installed' directory and reinstalling what you want to use. If this problem happens consistently, please file a bug at https://github.com/microsoft/vcpkg .",
"CorruptedInstallTree": "Your vcpkg 'installed' tree is corrupted.",
"CouldNotDeduceNugetIdAndVersion": "Could not deduce nuget id and version from filename: {path}",
"_CouldNotDeduceNugetIdAndVersion.comment": "An example of {path} is /foo/bar.",
"CouldNotFindBaselineInCommit": "Couldn't find baseline in {url} at {commit_sha} for {package_name}.",
"_CouldNotFindBaselineInCommit.comment": "An example of {url} is https://github.com/microsoft/vcpkg. An example of {commit_sha} is 7cfad47ae9f68b183983090afd6337cd60fd4949. An example of {package_name} is zlib.",
"CouldNotFindGitTreeAtCommit": "could not find the git tree for `versions` in repo {package_name} at commit {commit_sha}",
"_CouldNotFindGitTreeAtCommit.comment": "An example of {package_name} is zlib. An example of {commit_sha} is 7cfad47ae9f68b183983090afd6337cd60fd4949.",
"CouldNotFindVersionDatabaseFile": "Couldn't find the versions database file: {path}",
"_CouldNotFindVersionDatabaseFile.comment": "An example of {path} is /foo/bar.",
"CreateFailureLogsDir": "Creating failure logs output directory {path}.",
"_CreateFailureLogsDir.comment": "An example of {path} is /foo/bar.",
"CreatedNuGetPackage": "Created nupkg: {path}",
"_CreatedNuGetPackage.comment": "An example of {path} is /foo/bar.",
"Creating7ZipArchive": "Creating 7zip archive...",
"CreatingNugetPackage": "Creating NuGet package...",
"CreatingZipArchive": "Creating zip archive...",
"CreationFailed": "Creating {path} failed.",
"_CreationFailed.comment": "An example of {path} is /foo/bar.",
"CurlFailedToPut": "curl failed to put file to {url} with exit code {exit_code}.",
"_CurlFailedToPut.comment": "curl is the name of a program, see curl.se An example of {exit_code} is 127. An example of {url} is https://github.com/microsoft/vcpkg.",
"CurlFailedToPutHttp": "curl failed to put file to {url} with exit code {exit_code} and http code {value}.",
"_CurlFailedToPutHttp.comment": "curl is the name of a program, see curl.se. {value} is an HTTP status code An example of {exit_code} is 127. An example of {url} is https://github.com/microsoft/vcpkg.",
"CurlResponseTruncatedRetrying": "curl returned a partial response; waiting {value} milliseconds and trying again",
"_CurlResponseTruncatedRetrying.comment": "{value} is the number of milliseconds for which we are waiting this time",
"CurlTimeout": "curl was unable to perform all requested HTTP operations, even after timeout and retries. The last command line was: {command_line}",
"_CurlTimeout.comment": "An example of {command_line} is vcpkg install zlib.",
"CurrentCommitBaseline": "You can use the current commit as a baseline, which is:\n\t\"builtin-baseline\": \"{commit_sha}\"",
"_CurrentCommitBaseline.comment": "An example of {commit_sha} is 7cfad47ae9f68b183983090afd6337cd60fd4949.",
"CycleDetectedDuring": "cycle detected during {spec}:",
"_CycleDetectedDuring.comment": "An example of {spec} is zlib:x64-windows.",
"DefaultBinaryCachePlatformCacheRequiresAbsolutePath": "Environment variable VCPKG_DEFAULT_BINARY_CACHE must be a directory (was: {path})",
"_DefaultBinaryCachePlatformCacheRequiresAbsolutePath.comment": "An example of {path} is /foo/bar.",
"DefaultBinaryCacheRequiresAbsolutePath": "Environment variable VCPKG_DEFAULT_BINARY_CACHE must be absolute (was: {path})",
"_DefaultBinaryCacheRequiresAbsolutePath.comment": "An example of {path} is /foo/bar.",
"DefaultBinaryCacheRequiresDirectory": "Environment variable VCPKG_DEFAULT_BINARY_CACHE must be a directory (was: {path})",
"_DefaultBinaryCacheRequiresDirectory.comment": "An example of {path} is /foo/bar.",
"DefaultFeatureCore": "the feature \"core\" turns off default features and thus can't be in the default features list",
"_DefaultFeatureCore.comment": "The word \"core\" is an on-disk name that must not be localized.",
"DefaultFeatureDefault": "the feature \"default\" refers to the set of default features and thus can't be in the default features list",
"_DefaultFeatureDefault.comment": "The word \"default\" is an on-disk name that must not be localized.",
"DefaultFeatureIdentifier": "the names of default features must be identifiers",
"DefaultFlag": "Defaulting to --{option} being on.",
"_DefaultFlag.comment": "An example of {option} is editable.",
"DefaultRegistryIsArtifact": "The default registry cannot be an artifact registry.",
"DeleteVcpkgConfigFromManifest": "-- Or remove \"vcpkg-configuration\" from the manifest file {path}.",
"_DeleteVcpkgConfigFromManifest.comment": "An example of {path} is /foo/bar.",
"DependencyFeatureCore": "the feature \"core\" cannot be in a dependency's feature list. To turn off default features, add \"default-features\": false instead.",
"_DependencyFeatureCore.comment": "The word \"core\" is an on-disk name that must not be localized. The \"default-features\" part is JSON syntax that must be copied verbatim into the user's file.",
"DependencyFeatureDefault": "the feature \"default\" cannot be in a dependency's feature list. To turn on default features, add \"default-features\": true instead.",
"_DependencyFeatureDefault.comment": "The word \"default\" is an on-disk name that must not be localized. The \"default-features\" part is JSON syntax that must be copied verbatim into the user's file.",
"DependencyGraphCalculation": "Dependency graph submission enabled.",
"DependencyGraphFailure": "Dependency graph submission failed.",
"DependencyGraphSuccess": "Dependency graph submission successful.",
"DependencyInFeature": "the dependency is in the feature named {feature}",
"_DependencyInFeature.comment": "An example of {feature} is avisynthplus.",
"DependencyNotInVersionDatabase": "the dependency {package_name} does not exist in the version database; does that port exist?",
"_DependencyNotInVersionDatabase.comment": "An example of {package_name} is zlib.",
"DeprecatedPrefabDebugOption": "--prefab-debug is now deprecated.",
"DetectCompilerHash": "Detecting compiler hash for triplet {triplet}...",
"_DetectCompilerHash.comment": "An example of {triplet} is x64-windows.",
"DirectoriesRelativeToThePackageDirectoryHere": "the directories are relative to ${{CURRENT_PACKAGES_DIR}} here",
"DllsRelativeToThePackageDirectoryHere": "the DLLs are relative to ${{CURRENT_PACKAGES_DIR}} here",
"DocumentedFieldsSuggestUpdate": "If these are documented fields that should be recognized try updating the vcpkg tool.",
"DownloadAvailable": "A downloadable copy of this tool is available and can be used by unsetting {env_var}.",
"_DownloadAvailable.comment": "An example of {env_var} is VCPKG_DEFAULT_TRIPLET.",
"DownloadFailedCurl": "{url}: curl failed to download with exit code {exit_code}",
"_DownloadFailedCurl.comment": "An example of {url} is https://github.com/microsoft/vcpkg. An example of {exit_code} is 127.",
"DownloadFailedHashMismatch": "File does not have the expected hash:\nurl: {url}\nFile: {path}\nExpected hash: {expected}\nActual hash: {actual}",
"_DownloadFailedHashMismatch.comment": "{expected} and {actual} are SHA512 hashes in hex format. An example of {url} is https://github.com/microsoft/vcpkg. An example of {path} is /foo/bar.",
"DownloadFailedRetrying": "Download failed -- retrying after {value}ms",
"_DownloadFailedRetrying.comment": "{value} is a number of milliseconds",
"DownloadFailedStatusCode": "{url}: failed: status code {value}",
"_DownloadFailedStatusCode.comment": "{value} is an HTTP status code An example of {url} is https://github.com/microsoft/vcpkg.",
"DownloadRootsDir": "Downloads directory (default: {env_var})",
"_DownloadRootsDir.comment": "An example of {env_var} is VCPKG_DEFAULT_TRIPLET.",
"DownloadWinHttpError": "{url}: {system_api} failed with exit code {exit_code}",
"_DownloadWinHttpError.comment": "An example of {system_api} is CreateProcessW. An example of {exit_code} is 127. An example of {url} is https://github.com/microsoft/vcpkg.",
"DownloadedSources": "Downloaded sources for {spec}",
"_DownloadedSources.comment": "An example of {spec} is zlib:x64-windows.",
"DownloadingPortableToolVersionX": "A suitable version of {tool_name} was not found (required v{version}).",
"_DownloadingPortableToolVersionX.comment": "An example of {tool_name} is aria2. An example of {version} is 1.3.8.",
"DownloadingUrl": "Downloading {url}",
"_DownloadingUrl.comment": "An example of {url} is https://github.com/microsoft/vcpkg.",
"DownloadingVcpkgStandaloneBundle": "Downloading standalone bundle {version}.",
"_DownloadingVcpkgStandaloneBundle.comment": "An example of {version} is 1.3.8.",
"DownloadingVcpkgStandaloneBundleLatest": "Downloading latest standalone bundle.",
"DuplicatePackagePattern": "Package \"{package_name}\" is duplicated.",
"_DuplicatePackagePattern.comment": "An example of {package_name} is zlib.",
"DuplicatePackagePatternFirstOcurrence": "First declared in:",
"DuplicatePackagePatternIgnoredLocations": "The following redeclarations will be ignored:",
"DuplicatePackagePatternLocation": "location: {path}",
"_DuplicatePackagePatternLocation.comment": "An example of {path} is /foo/bar.",
"DuplicatePackagePatternRegistry": "registry: {url}",
"_DuplicatePackagePatternRegistry.comment": "An example of {url} is https://github.com/microsoft/vcpkg.",
"DuplicatedKeyInObj": "Duplicated key \"{value}\" in an object",
"_DuplicatedKeyInObj.comment": "{value} is a json property/object",
"ElapsedForPackage": "Elapsed time to handle {spec}: {elapsed}",
"_ElapsedForPackage.comment": "An example of {spec} is zlib:x64-windows. An example of {elapsed} is 3.532 min.",
"ElapsedTimeForChecks": "Time to determine pass/fail: {elapsed}",
"_ElapsedTimeForChecks.comment": "An example of {elapsed} is 3.532 min.",
"EmailVcpkgTeam": "Send an email to {url} with any feedback.",
"_EmailVcpkgTeam.comment": "An example of {url} is https://github.com/microsoft/vcpkg.",
"EmbeddingVcpkgConfigInManifest": "Embedding `vcpkg-configuration` in a manifest file is an EXPERIMENTAL feature.",
"EmptyLicenseExpression": "SPDX license expression was empty.",
"EndOfStringInCodeUnit": "found end of string in middle of code point",
"EnvInvalidMaxConcurrency": "{env_var} is {value}, must be > 0",
"_EnvInvalidMaxConcurrency.comment": "{value} is the invalid value of an environment variable An example of {env_var} is VCPKG_DEFAULT_TRIPLET.",
"EnvPlatformNotSupported": "Build environment commands are not supported on this platform",
"EnvStrFailedToExtract": "could not expand the environment string:",
"EnvVarMustBeAbsolutePath": "{env_var} ({path}) was not an absolute path",
"_EnvVarMustBeAbsolutePath.comment": "An example of {path} is /foo/bar. An example of {env_var} is VCPKG_DEFAULT_TRIPLET.",
"ErrorDetectingCompilerInfo": "while detecting compiler information:\nThe log file content at \"{path}\" is:",
"_ErrorDetectingCompilerInfo.comment": "An example of {path} is /foo/bar.",
"ErrorIndividualPackagesUnsupported": "In manifest mode, `vcpkg install` does not support individual package arguments.\nTo install additional packages, edit vcpkg.json and then run `vcpkg install` without any package arguments.",
"ErrorInvalidClassicModeOption": "The option --{option} is not supported in classic mode and no manifest was found.",
"_ErrorInvalidClassicModeOption.comment": "An example of {option} is editable.",
"ErrorInvalidExtractOption": "--{option} must be set to a nonnegative integer or 'AUTO'.",
"_ErrorInvalidExtractOption.comment": "The keyword 'AUTO' should not be localized An example of {option} is editable.",
"ErrorInvalidManifestModeOption": "The option --{option} is not supported in manifest mode.",
"_ErrorInvalidManifestModeOption.comment": "An example of {option} is editable.",
"ErrorMissingVcpkgRoot": "Could not detect vcpkg-root. If you are trying to use a copy of vcpkg that you've built, you must define the VCPKG_ROOT environment variable to point to a cloned copy of https://github.com/Microsoft/vcpkg.",
"ErrorNoVSInstance": "in triplet {triplet}: Unable to find a valid Visual Studio instance",
"_ErrorNoVSInstance.comment": "An example of {triplet} is x64-windows.",
"ErrorNoVSInstanceAt": "at \"{path}\"",
"_ErrorNoVSInstanceAt.comment": "An example of {path} is /foo/bar.",
"ErrorNoVSInstanceFullVersion": "with toolset version prefix {version}",
"_ErrorNoVSInstanceFullVersion.comment": "An example of {version} is 1.3.8.",
"ErrorNoVSInstanceVersion": "with toolset version {version}",
"_ErrorNoVSInstanceVersion.comment": "An example of {version} is 1.3.8.",
"ErrorParsingBinaryParagraph": "while parsing the Binary Paragraph for {spec}",
"_ErrorParsingBinaryParagraph.comment": "An example of {spec} is zlib:x64-windows.",
"ErrorRequireBaseline": "this vcpkg instance requires a manifest with a specified baseline in order to interact with ports. Please add 'builtin-baseline' to the manifest or add a 'vcpkg-configuration.json' that redefines the default registry.",
"ErrorRequirePackagesList": "`vcpkg install` requires a list of packages to install in classic mode.",
"ErrorUnableToDetectCompilerInfo": "vcpkg was unable to detect the active compiler's information. See above for the CMake failure output.",
"_ErrorUnableToDetectCompilerInfo.comment": "failure output will be displayed at the top of this",
"ErrorVcvarsUnsupported": "in triplet {triplet}: Use of Visual Studio's Developer Prompt is unsupported on non-Windows hosts.\nDefine 'VCPKG_CMAKE_SYSTEM_NAME' or 'VCPKG_CHAINLOAD_TOOLCHAIN_FILE' in the triplet file.",
"_ErrorVcvarsUnsupported.comment": "An example of {triplet} is x64-windows.",
"ErrorVsCodeNotFound": "Visual Studio Code was not found and the environment variable {env_var} is not set or invalid.",
"_ErrorVsCodeNotFound.comment": "An example of {env_var} is VCPKG_DEFAULT_TRIPLET.",
"ErrorVsCodeNotFoundPathExamined": "The following paths were examined:",
"ErrorWhileFetchingBaseline": "while fetching baseline `\"{value}\"` from repo {package_name}:",
"_ErrorWhileFetchingBaseline.comment": "{value} is a commit sha. An example of {package_name} is zlib.",
"ErrorWhileParsing": "Errors occurred while parsing {path}.",
"_ErrorWhileParsing.comment": "An example of {path} is /foo/bar.",
"ErrorWhileWriting": "Error occurred while writing {path}.",
"_ErrorWhileWriting.comment": "An example of {path} is /foo/bar.",
"ExamplesHeader": "Examples:",
"_ExamplesHeader.comment": "Printed before a list of example command lines",
"ExceededRecursionDepth": "Recursion depth exceeded.",
"ExcludedPackage": "Excluded {spec}",
"_ExcludedPackage.comment": "An example of {spec} is zlib:x64-windows.",
"ExcludedPackages": "The following packages are excluded:",
"ExecutablesRelativeToThePackageDirectoryHere": "the executables are relative to ${{CURRENT_PACKAGES_DIR}} here",
"ExpectedAnObject": "expected an object",
"ExpectedAtMostOneSetOfTags": "Found {count} sets of {old_value}.*{new_value} but expected at most 1, in block:\n{value}",
"_ExpectedAtMostOneSetOfTags.comment": "{old_value} is a left tag and {new_value} is the right tag. {value} is the input. An example of {count} is 42.",
"ExpectedCharacterHere": "expected '{expected}' here",
"_ExpectedCharacterHere.comment": "{expected} is a locale-invariant delimiter; for example, the ':' or '=' in 'zlib:x64-windows=skip'",
"ExpectedDefaultFeaturesList": "expected ',' or end of text in default features list",
"ExpectedDependenciesList": "expected ',' or end of text in dependencies list",
"ExpectedDigitsAfterDecimal": "Expected digits after the decimal point",
"ExpectedExplicitTriplet": "expected an explicit triplet",
"ExpectedFailOrSkip": "expected 'fail', 'skip', or 'pass' here",
"ExpectedFeatureListTerminal": "expected ',' or ']' in feature list",
"ExpectedFeatureName": "expected feature name (must be lowercase, digits, '-')",
"ExpectedOneSetOfTags": "Found {count} sets of {old_value}.*{new_value} but expected exactly 1, in block:\n{value}",
"_ExpectedOneSetOfTags.comment": "{old_value} is a left tag and {new_value} is the right tag. {value} is the input. An example of {count} is 42.",
"ExpectedOneVersioningField": "expected only one versioning field",
"ExpectedPathToExist": "Expected {path} to exist after fetching",
"_ExpectedPathToExist.comment": "An example of {path} is /foo/bar.",
"ExpectedPortName": "expected a port name here (must be lowercase, digits, '-')",
"ExpectedReadWriteReadWrite": "unexpected argument: expected 'read', readwrite', or 'write'",
"ExpectedStatusField": "Expected 'status' field in status paragraph",
"ExpectedTripletName": "expected a triplet name here (must be lowercase, digits, '-')",
"ExportArchitectureReq": "Export prefab requires targeting at least one of the following architectures arm64-v8a, armeabi-v7a, x86_64, x86 to be present.",
"ExportPrefabRequiresAndroidTriplet": "export prefab requires an Android triplet.",
"Exported7zipArchive": "7zip archive exported at: {path}",
"_Exported7zipArchive.comment": "An example of {path} is /foo/bar.",
"ExportedZipArchive": "Zip archive exported at: {path}",
"_ExportedZipArchive.comment": "An example of {path} is /foo/bar.",
"ExportingAlreadyBuiltPackages": "The following packages are already built and will be exported:",
"ExportingMaintenanceTool": "Exporting maintenance tool...",
"ExportingPackage": "Exporting {package_name}...",
"_ExportingPackage.comment": "An example of {package_name} is zlib.",
"ExtendedDocumentationAtUrl": "Extended documentation available at '{url}'.",
"_ExtendedDocumentationAtUrl.comment": "An example of {url} is https://github.com/microsoft/vcpkg.",
"ExtractHelp": "Extracts an archive.",
"ExtractingTool": "Extracting {tool_name}...",
"_ExtractingTool.comment": "An example of {tool_name} is aria2.",
"FailedPostBuildChecks": "Found {count} post-build check problem(s). These are usually caused by bugs in portfile.cmake or the upstream build system. Please correct these before submitting this port to the curated registry.",
"_FailedPostBuildChecks.comment": "An example of {count} is 42.",
"FailedToAcquireMutant": "failed to acquire mutant {path}",
"_FailedToAcquireMutant.comment": "'mutant' is the Windows kernel object returned by CreateMutexW An example of {path} is /foo/bar.",
"FailedToCheckoutRepo": "failed to check out `versions` from repo {package_name}",
"_FailedToCheckoutRepo.comment": "An example of {package_name} is zlib.",
"FailedToDeleteDueToFile": "failed to remove_all({value}) due to {path}: ",
"_FailedToDeleteDueToFile.comment": "{value} is the parent path of {path} we tried to delete; the underlying Windows error message is printed after this An example of {path} is /foo/bar.",
"FailedToDeleteInsideDueToFile": "failed to remove_all_inside({value}) due to {path}: ",
"_FailedToDeleteInsideDueToFile.comment": "{value} is the parent path of {path} we tried to delete; the underlying Windows error message is printed after this An example of {path} is /foo/bar.",
"FailedToDetermineCurrentCommit": "Failed to determine the current commit:",
"FailedToExtract": "Failed to extract \"{path}\":",
"_FailedToExtract.comment": "An example of {path} is /foo/bar.",
"FailedToFetchRepo": "Failed to fetch {url}.",
"_FailedToFetchRepo.comment": "An example of {url} is https://github.com/microsoft/vcpkg.",
"FailedToFindPortFeature": "{package_name} has no feature named {feature}.",
"_FailedToFindPortFeature.comment": "An example of {feature} is avisynthplus. An example of {package_name} is zlib.",
"FailedToFormatMissingFile": "No files to format.\nPlease pass either --all, or the explicit files to format or convert.",
"FailedToLoadInstalledManifest": "The control or manifest file for {package_name} could not be loaded due to the following error. Please remove {package_name} and try again.",
"_FailedToLoadInstalledManifest.comment": "An example of {package_name} is zlib.",
"FailedToLoadManifest": "Failed to load manifest from directory {path}",
"_FailedToLoadManifest.comment": "An example of {path} is /foo/bar.",
"FailedToLocateSpec": "Failed to locate spec in graph: {spec}",
"_FailedToLocateSpec.comment": "An example of {spec} is zlib:x64-windows.",
"FailedToObtainDependencyVersion": "Cannot find desired dependency version.",
"FailedToObtainPackageVersion": "Cannot find desired package version.",
"FailedToOpenAlgorithm": "failed to open {value}",
"_FailedToOpenAlgorithm.comment": "{value} is a crypto algorithm like SHA-1 or SHA-512",
"FailedToParseBaseline": "Failed to parse baseline: {path}",
"_FailedToParseBaseline.comment": "An example of {path} is /foo/bar.",
"FailedToParseCMakeConsoleOut": "Failed to parse CMake console output to locate block start/end markers.",
"FailedToParseConfig": "Failed to parse configuration: {path}",
"_FailedToParseConfig.comment": "An example of {path} is /foo/bar.",
"FailedToParseNoTopLevelObj": "Failed to parse {path}, expected a top-level object.",
"_FailedToParseNoTopLevelObj.comment": "An example of {path} is /foo/bar.",
"FailedToParseNoVersionsArray": "Failed to parse {path}, expected a 'versions' array.",
"_FailedToParseNoVersionsArray.comment": "An example of {path} is /foo/bar.",
"FailedToParseSerializedBinParagraph": "[sanity check] Failed to parse a serialized binary paragraph.\nPlease open an issue at https://github.com/microsoft/vcpkg, with the following output:\n{error_msg}\nSerialized Binary Paragraph:",
"_FailedToParseSerializedBinParagraph.comment": "'{error_msg}' is the error message for failing to parse the Binary Paragraph. An example of {error_msg} is File Not Found.",
"FailedToParseVersionFile": "Failed to parse version file: {path}",
"_FailedToParseVersionFile.comment": "An example of {path} is /foo/bar.",
"FailedToParseVersionXML": "Could not parse version for tool {tool_name}. Version string was: {version}",
"_FailedToParseVersionXML.comment": "An example of {tool_name} is aria2. An example of {version} is 1.3.8.",
"FailedToRunToolToDetermineVersion": "Failed to run \"{path}\" to determine the {tool_name} version.",
"_FailedToRunToolToDetermineVersion.comment": "Additional information, such as the command line output, if any, will be appended on the line after this message An example of {tool_name} is aria2. An example of {path} is /foo/bar.",
"FailedToStoreBackToMirror": "Failed to store {path} to {url}.",
"_FailedToStoreBackToMirror.comment": "An example of {path} is /foo/bar. An example of {url} is https://github.com/microsoft/vcpkg.",
"FailedToStoreBinaryCache": "Failed to store binary cache {path}",
"_FailedToStoreBinaryCache.comment": "An example of {path} is /foo/bar.",
"FailedToTakeFileSystemLock": "Failed to take the filesystem lock",
"FailedVendorAuthentication": "One or more {vendor} credential providers failed to authenticate. See '{url}' for more details on how to provide credentials.",
"_FailedVendorAuthentication.comment": "An example of {vendor} is Azure. An example of {url} is https://github.com/microsoft/vcpkg.",
"FetchingBaselineInfo": "Fetching baseline information from {package_name}...",
"_FetchingBaselineInfo.comment": "An example of {package_name} is zlib.",
"FetchingRegistryInfo": "Fetching registry information from {url} ({value})...",
"_FetchingRegistryInfo.comment": "{value} is a reference An example of {url} is https://github.com/microsoft/vcpkg.",
"FieldKindDidNotHaveExpectedValue": "\"kind\" did not have an expected value: (expected one of: {expected}; found {actual})",
"_FieldKindDidNotHaveExpectedValue.comment": "{expected} is a list of literal kinds the user must type, separated by commas, {actual} is what the user supplied",
"FileIsNotExecutable": "this file does not appear to be executable",
"FileNotFound": "{path}: file not found",
"_FileNotFound.comment": "An example of {path} is /foo/bar.",
"FileReadFailed": "Failed to read {count} bytes from {path} at offset {byte_offset}.",
"_FileReadFailed.comment": "An example of {path} is /foo/bar. An example of {byte_offset} is 42. An example of {count} is 42.",
"FileSeekFailed": "Failed to seek to position {byte_offset} in {path}.",
"_FileSeekFailed.comment": "An example of {path} is /foo/bar. An example of {byte_offset} is 42.",
"FilesContainAbsolutePath1": "There should be no absolute paths, such as the following, in an installed package. To suppress this message, add set(VCPKG_POLICY_SKIP_ABSOLUTE_PATHS_CHECK enabled)",
"_FilesContainAbsolutePath1.comment": "This message is printed before a list of found absolute paths, followed by FilesContainAbsolutePath2, followed by a list of found files.",
"FilesContainAbsolutePath2": "absolute paths found here",
"FilesContainAbsolutePathPkgconfigNote": "Adding a call to `vcpkg_fixup_pkgconfig()` may fix absolute paths in .pc files",
"FilesExported": "Files exported at: {path}",
"_FilesExported.comment": "An example of {path} is /foo/bar.",
"FilesRelativeToTheBuildDirectoryHere": "the files are relative to the build directory here",
"FilesRelativeToThePackageDirectoryHere": "the files are relative to ${{CURRENT_PACKAGES_DIR}} here",
"FindCommandFirstArg": "The first argument to 'find' must be 'artifact' or 'port' .",
"_FindCommandFirstArg.comment": "'find', 'artifact', and 'port' are vcpkg specific terms and should not be translated.",
"FindVersionArtifactsOnly": "--version can't be used with vcpkg search or vcpkg find port",
"_FindVersionArtifactsOnly.comment": "'--version', 'vcpkg search', and 'vcpkg find port' are command lines that must not be localized",
"FishCompletion": "vcpkg fish completion is already added at \"{path}\".",
"_FishCompletion.comment": "An example of {path} is /foo/bar.",
"FloatingPointConstTooBig": "Floating point constant too big: {count}",
"_FloatingPointConstTooBig.comment": "An example of {count} is 42.",
"FollowingPackagesMissingControl": "The following packages do not have a valid CONTROL or vcpkg.json:",
"FollowingPackagesNotInstalled": "The following packages are not installed:",
"FollowingPackagesUpgraded": "The following packages are up-to-date:",
"ForMoreHelp": "For More Help",
"_ForMoreHelp.comment": "Printed before a suggestion for the user to run `vcpkg help <topic>`",
"ForceSystemBinariesOnWeirdPlatforms": "Environment variable VCPKG_FORCE_SYSTEM_BINARIES must be set on arm, s390x, ppc64le and riscv platforms.",
"FormattedParseMessageExpressionPrefix": "on expression:",
"GHAParametersMissing": "The GHA binary source requires the ACTIONS_RUNTIME_TOKEN and ACTIONS_CACHE_URL environment variables to be set. See {url} for details.",
"_GHAParametersMissing.comment": "An example of {url} is https://github.com/microsoft/vcpkg.",
"GeneratedConfiguration": "Generated configuration {path}.",
"_GeneratedConfiguration.comment": "An example of {path} is /foo/bar.",
"GeneratedInstaller": "{path} installer generated.",
"_GeneratedInstaller.comment": "An example of {path} is /foo/bar.",
"GeneratingConfiguration": "Generating configuration {path}...",
"_GeneratingConfiguration.comment": "An example of {path} is /foo/bar.",
"GeneratingInstaller": "Generating installer {path}...",
"_GeneratingInstaller.comment": "An example of {path} is /foo/bar.",
"GeneratingRepo": "Generating repository {path}...",
"_GeneratingRepo.comment": "An example of {path} is /foo/bar.",
"GetParseFailureInfo": "Use '--debug' to get more information about the parse failures.",
"GitCommandFailed": "failed to execute: {command_line}",
"_GitCommandFailed.comment": "An example of {command_line} is vcpkg install zlib.",
"GitCommitUpdateVersionDatabase": "git commit -m \"Update version database\"",
"_GitCommitUpdateVersionDatabase.comment": "This is a command line; only the 'update version database' part should be localized",
"GitFailedToFetch": "failed to fetch ref {value} from repository {url}",
"_GitFailedToFetch.comment": "{value} is a git ref like 'origin/main' An example of {url} is https://github.com/microsoft/vcpkg.",
"GitFailedToInitializeLocalRepository": "failed to initialize local repository {path}",
"_GitFailedToInitializeLocalRepository.comment": "An example of {path} is /foo/bar.",
"GitRegistryMustHaveBaseline": "The git registry \"{url}\" must have a \"baseline\" field that is a valid git commit SHA (40 hexadecimal characters).\nTo use the current latest versions, set baseline to that repo's HEAD, \"{commit_sha}\".",
"_GitRegistryMustHaveBaseline.comment": "An example of {url} is https://github.com/microsoft/vcpkg. An example of {commit_sha} is 7cfad47ae9f68b183983090afd6337cd60fd4949.",
"GitStatusOutputExpectedFileName": "expected a file name",
"GitStatusOutputExpectedNewLine": "expected new line",
"GitStatusOutputExpectedRenameOrNewline": "expected renamed file or new lines",
"GitStatusUnknownFileStatus": "unknown file status: {value}",
"_GitStatusUnknownFileStatus.comment": "{value} is a single character indicating file status, for example: A, U, M, D",
"GitUnexpectedCommandOutputCmd": "git produced unexpected output when running {command_line}",
"_GitUnexpectedCommandOutputCmd.comment": "An example of {command_line} is vcpkg install zlib.",
"GraphCycleDetected": "Cycle detected within graph at {package_name}:",
"_GraphCycleDetected.comment": "A list of package names comprising the cycle will be printed after this message. An example of {package_name} is zlib.",
"HashFileFailureToRead": "failed to read file \"{path}\" for hashing: ",
"_HashFileFailureToRead.comment": "Printed after ErrorMessage and before the specific failing filesystem operation (like file not found) An example of {path} is /foo/bar.",
"HashPortManyFiles": "{package_name} contains {count} files. Hashing these contents may take a long time when determining the ABI hash for binary caching. Consider reducing the number of files. Common causes of this are accidentally checking out source or build files into a port's directory.",
"_HashPortManyFiles.comment": "An example of {package_name} is zlib. An example of {count} is 42.",
"HeaderOnlyUsage": "{package_name} is header-only and can be used from CMake via:",
"_HeaderOnlyUsage.comment": "'header' refers to C/C++ .h files An example of {package_name} is zlib.",
"HelpAssetCaching": "**Experimental feature: this may change or be removed at any time**\n\nvcpkg can use mirrors to cache downloaded assets, ensuring continued operation even if the original source changes or disappears.\n\nAsset caching can be configured either by setting the environment variable X_VCPKG_ASSET_SOURCES to a semicolon-delimited list of sources or by passing a sequence of --x-asset-sources=<source> command line options. Command line sources are interpreted after environment sources. Commas, semicolons, and backticks can be escaped using backtick (`).\n\nThe <rw> optional parameter for certain strings controls how they will be accessed. It can be specified as \"read\", \"write\", or \"readwrite\" and defaults to \"read\".\n\nValid sources:",
"_HelpAssetCaching.comment": "The '<rw>' part references code in the following table and should not be localized. The matching values \"read\" \"write\" and \"readwrite\" are also fixed. After this block a table with each possible asset caching source is printed.",
"HelpAssetCachingAzUrl": "Adds an Azure Blob Storage source, optionally using Shared Access Signature validation. URL should include the container path and be terminated with a trailing \"/\". <sas>, if defined, should be prefixed with a \"?\". Non-Azure servers will also work if they respond to GET and PUT requests of the form: \"<url><sha512><sas>\".",
"_HelpAssetCachingAzUrl.comment": "This is printed as the 'definition' in a table for 'x-azurl,<url>[,<sas>[,<rw>]]', so <url>, <sas>, and <rw> should not be localized.",
"HelpAssetCachingBlockOrigin": "Disables fallback to the original URLs in case the mirror does not have the file available.",
"_HelpAssetCachingBlockOrigin.comment": "This is printed as the 'definition' in a table for 'x-block-origin'",
"HelpAssetCachingScript": "Dispatches to an external tool to fetch the asset. Within the template, \"{{url}}\" will be replaced by the original url, \"{{sha512}}\" will be replaced by the SHA512 value, and \"{{dst}}\" will be replaced by the output path to save to. These substitutions will all be properly shell escaped, so an example template would be: \"curl -L {{url}} --output {{dst}}\". \"{{{{\" will be replaced by \"}}\" and \"}}}}\" will be replaced by \"}}\" to avoid expansion. Note that this will be executed inside the build environment, so the PATH and other environment variables will be modified by the triplet.",
"_HelpAssetCachingScript.comment": "This is printed as the 'definition' in a table for 'x-script,<template>', so <template> should not be localized.",
"HelpBinaryCaching": "vcpkg can cache compiled packages to accelerate restoration on a single machine or across the network. By default, vcpkg will save builds to a local machine cache. This can be disabled by passing \"--binarysource=clear\" as the last option on the command line.\n\nBinary caching can be further configured by either passing \"--binarysource=<source>\" options to every command line or setting the `VCPKG_BINARY_SOURCES` environment variable to a set of sources (Example: \"<source>;<source>;...\"). Command line sources are interpreted after environment sources.\n\nThe \"<rw>\" optional parameter for certain strings controls whether they will be consulted for downloading binaries and whether on-demand builds will be uploaded to that remote. It can be specified as \"read\", \"write\", or \"readwrite\".\n\nGeneral sources:",
"_HelpBinaryCaching.comment": "The names in angle brackets like <rw> or in curly braces like {{sha512}} are 'code' and should not be localized. The matching values \"read\" \"write\" and \"readwrite\" are also fixed.",
"HelpBinaryCachingAws": "**Experimental: will change or be removed without warning**\nAdds an AWS S3 source. Uses the aws CLI for uploads and downloads. Prefix should include s3:// scheme and be suffixed with a \"/\".",
"_HelpBinaryCachingAws.comment": "Printed as the 'definition' for 'x-aws,<prefix>[,<rw>]', so '<prefix>' must be preserved verbatim.",
"HelpBinaryCachingAwsConfig": "**Experimental: will change or be removed without warning**\nAdds an AWS S3 source. Adds an AWS configuration; currently supports only 'no-sign-request' parameter that is an equivalent to the --no-sign-request parameter of the AWS CLI.",
"_HelpBinaryCachingAwsConfig.comment": "Printed as the 'definition' for 'x-aws-config,<parameter>'.",
"HelpBinaryCachingAwsHeader": "Azure Web Services sources",
"HelpBinaryCachingAzBlob": "**Experimental: will change or be removed without warning**\nAdds an Azure Blob Storage source. Uses Shared Access Signature validation. <url> should include the container path. <sas> must be be prefixed with a \"?\".",
"_HelpBinaryCachingAzBlob.comment": "Printed as the 'definition' for 'x-azblob,<url>,<sas>[,<rw>]'.",
"HelpBinaryCachingCos": "**Experimental: will change or be removed without warning**\nAdds an COS source. Uses the cos CLI for uploads and downloads. <prefix> should include the scheme 'cos://' and be suffixed with a \"/\".",
"_HelpBinaryCachingCos.comment": "Printed as the 'definition' for 'x-cos,<prefix>[,<rw>]'.",
"HelpBinaryCachingDefaults": "Adds the default file-based location. Based on your system settings, the default path to store binaries is \"{path}\". This consults %LOCALAPPDATA%/%APPDATA% on Windows and $XDG_CACHE_HOME or $HOME on other platforms.",
"_HelpBinaryCachingDefaults.comment": "Printed as the 'definition' in a table for 'default[,<rw>]'. %LOCALAPPDATA%, %APPDATA%, $XDG_CACHE_HOME, and $HOME are 'code' and should not be localized. An example of {path} is /foo/bar.",
"HelpBinaryCachingDefaultsError": "Adds the default file-based location.",
"_HelpBinaryCachingDefaultsError.comment": "Printed as the 'definition' in a table for 'default[,<rw>]', when there was an error fetching the default for some reason.",
"HelpBinaryCachingFiles": "Adds a custom file-based location.",
"_HelpBinaryCachingFiles.comment": "Printed as the 'definition' for 'files,<path>[,<rw>]'",
"HelpBinaryCachingGcs": "**Experimental: will change or be removed without warning**\nAdds a Google Cloud Storage (GCS) source. Uses the gsutil CLI for uploads and downloads. Prefix should include the gs:// scheme and be suffixed with a \"/\".",
"_HelpBinaryCachingGcs.comment": "Printed as the 'definition' for 'x-gcs,<prefix>[,<rw>]'.",
"HelpBinaryCachingHttp": "Adds a custom http-based location. GET, HEAD and PUT request are done to download, check and upload the binaries. You can use the variables {{name}}, {{version}}, {{sha}} and {{triplet}}. An example url would be'https://cache.example.com/{{triplet}}/{{name}}/{{version}}/{{sha}}'. Via the header field you can set a custom header to pass an authorization token.",
"_HelpBinaryCachingHttp.comment": "Printed as the 'definition' of 'http,<url_template>[,<rw>[,<header>]]', so <url_template>, <rw> and <header> must be unlocalized. GET, HEAD, and PUT are HTTP verbs that should be not changed. Entries in {{curly braces}} also must be unlocalized.",
"HelpBinaryCachingNuGet": "Adds a NuGet-based source; equivalent to the \"-Source\" parameter of the NuGet CLI.",
"_HelpBinaryCachingNuGet.comment": "Printed as the 'definition' of 'nuget,<uri>[,<rw>]'.",
"HelpBinaryCachingNuGetConfig": "Adds a NuGet-config-file-based source; equivalent to the \"-Config\" parameter of the NuGet CLI. This config should specify \"defaultPushSource\" for uploads.",
"_HelpBinaryCachingNuGetConfig.comment": "Printed as the 'definition' of 'nugetconfig,<path>[,<rw>]'.",
"HelpBinaryCachingNuGetFooter": "NuGet's cache is not used by default. To use it for every NuGet-based source, set the environment variable \"VCPKG_USE_NUGET_CACHE\" to \"true\" (case-insensitive) or \"1\".\nThe \"nuget\" and \"nugetconfig\" source providers respect certain environment variables while generating NuGet packages. If the appropriate environment variables are defined and non-empty, \"metadata.repository\" field will be generated like one of the following examples:",
"_HelpBinaryCachingNuGetFooter.comment": "Printed after the 'nuget', 'nugetconfig', 'nugettimeout', and 'interactive' entries; those names must not be localized. Printed before an example XML snippet vcpkg generates when the indicated environment variables are set.",
"HelpBinaryCachingNuGetHeader": "NuGet sources",
"HelpBinaryCachingNuGetInteractive": "Enables NuGet interactive credential management; the opposite of the \"-NonInteractive\" parameter in the NuGet CLI.",
"_HelpBinaryCachingNuGetInteractive.comment": "Printed as the 'definition' of 'interactive'.",
"HelpBinaryCachingNuGetTimeout": "Specifies a NuGet timeout for NuGet network operations; equivalent to the \"-Timeout\" parameter of the NuGet CLI.",
"_HelpBinaryCachingNuGetTimeout.comment": "Printed as the 'definition' of 'nugettimeout,<seconds>'",
"HelpBuiltinBase": "The baseline references a commit within the vcpkg repository that establishes a minimum version on every dependency in the graph. For example, if no other constraints are specified (directly or transitively), then the version will resolve to the baseline of the top level manifest. Baselines of transitive dependencies are ignored.",
"HelpCachingClear": "Removes all previous sources, including defaults.",
"HelpContactCommand": "Displays contact information to send feedback",
"HelpCreateCommand": "Creates a new port",
"HelpDependInfoCommand": "Displays a list of dependencies for ports",
"HelpEditCommand": "Edits a port, optionally with {env_var}, defaults to \"code\"",
"_HelpEditCommand.comment": "\"code\" is the name of a program and should not be localized. An example of {env_var} is VCPKG_DEFAULT_TRIPLET.",
"HelpEnvCommand": "Creates a clean shell environment for development or compiling",
"HelpExampleCommand": "For more help (including examples) see https://learn.microsoft.com/vcpkg",
"HelpExampleManifest": "Example manifest:",
"HelpInstallCommand": "Installs a package",
"HelpManifestConstraints": "Manifests can place three kinds of constraints upon the versions used",
"HelpMinVersion": "Vcpkg will select the minimum version found that matches all applicable constraints, including the version from the baseline specified at top-level as well as any \"version>=\" constraints in the graph.",
"HelpOverrides": "When used as the top-level manifest (such as when running `vcpkg install` in the directory), overrides allow a manifest to short-circuit dependency resolution and specify exactly the version to use. These can be used to handle version conflicts, such as with `version-string` dependencies. They will not be considered when transitively depended upon.",
"HelpOwnsCommand": "Searches for the owner of a file in installed packages",
"HelpPackagePublisher": "Additionally, package publishers can use \"version>=\" constraints to ensure that consumers are using at least a certain minimum version of a given dependency. For example, if a library needs an API added to boost-asio in 1.70, a \"version>=\" constraint will ensure transitive users use a sufficient version even in the face of individual version overrides or cross-registry references.",
"HelpPortVersionScheme": "Each version additionally has a \"port-version\" which is a nonnegative integer. When rendered as text, the port version (if nonzero) is added as a suffix to the primary version text separated by a hash (#). Port-versions are sorted lexicographically after the primary version text, for example:\n1.0.0 < 1.0.0#1 < 1.0.1 < 1.0.1#5 < 2.0.0",
"HelpRemoveCommand": "Uninstalls a package",
"HelpResponseFileCommand": "Contains one argument per line expanded at that location",
"_HelpResponseFileCommand.comment": "Describing what @response_file does on vcpkg's command line",
"HelpSearchCommand": "Searches for packages available to be built",
"HelpTextOptFullDesc": "Does not truncate long text",
"HelpTopicCommand": "Displays specific help topic",
"HelpTopicsCommand": "Displays full list of help topics",
"HelpTxtOptAllowUnsupportedPort": "Continues with a warning on unsupported ports, rather than failing",
"HelpTxtOptCleanAfterBuild": "Cleans buildtrees, packages and downloads after building each package",
"HelpTxtOptCleanBuildTreesAfterBuild": "Cleans buildtrees after building each package",
"HelpTxtOptCleanDownloadsAfterBuild": "Cleans downloads after building each package",
"HelpTxtOptCleanPkgAfterBuild": "Cleans packages after building each package",
"HelpTxtOptDryRun": "Does not actually build or install",
"HelpTxtOptEditable": "Disables source re-extraction and binary caching for libraries on the command line (classic mode)",
"HelpTxtOptEnforcePortChecks": "Fails install if a port has detected problems or attempts to use a deprecated feature",
"HelpTxtOptKeepGoing": "Continues installing packages on failure",
"HelpTxtOptManifestFeature": "Additional features from the top-level manifest to install (manifest mode)",
"HelpTxtOptManifestNoDefault": "Does not install the default features from the top-level manifest (manifest mode)",
"HelpTxtOptNoDownloads": "Does not download new sources",
"HelpTxtOptNoUsage": "Does not print CMake usage information after install",
"HelpTxtOptOnlyBinCache": "Fails if cached binaries are not available",
"HelpTxtOptOnlyDownloads": "Makes best-effort attempt to download sources without building",
"HelpTxtOptRecurse": "Allows removal of packages as part of installation",
"HelpTxtOptUseAria2": "Uses aria2 to perform download tasks",
"HelpTxtOptUseHeadVersion": "Installs the libraries on the command line using the latest upstream sources (classic mode)",
"HelpTxtOptWritePkgConfig": "Writes a NuGet packages.config-formatted file for use with external binary caching. See `vcpkg help binarycaching` for more information",
"_HelpTxtOptWritePkgConfig.comment": "'vcpkg help binarycaching' is a command line and should not be localized.",
"HelpUpdateBaseline": "The best approach to keep your libraries up to date is to update your baseline reference. This will ensure all packages, including transitive ones, are updated. However if you need to update a package independently, you can use a \"version>=\" constraint.",
"HelpUpdateCommand": "Lists packages that can be upgraded",
"HelpUpgradeCommand": "Rebuilds all outdated packages",
"HelpVersionCommand": "Displays version information",
"HelpVersionDateScheme": "A date (2021-01-01.5)",
"HelpVersionGreater": "Within the \"dependencies\" field, each dependency can have a minimum constraint listed. These minimum constraints will be used when transitively depending upon this library. A minimum port-version can additionally be specified with a '#' suffix.",
"HelpVersionScheme": "A dot-separated sequence of numbers (1.2.3.4)",
"HelpVersionSchemes": "The following versioning schemes are accepted.",
"HelpVersionSemverScheme": "A Semantic Version 2.0 (2.1.0-rc2)",
"HelpVersionStringScheme": "An exact, incomparable version (Vista)",
"HelpVersioning": "Versioning allows you to deterministically control the precise revisions of dependencies used by your project from within your manifest file.",
"IgnoringVcpkgRootEnvironment": "The vcpkg {value} is using detected vcpkg root {actual} and ignoring mismatched VCPKG_ROOT environment value {path}. To suppress this message, unset the environment variable or use the --vcpkg-root command line switch.",
"_IgnoringVcpkgRootEnvironment.comment": "{actual} is the path we actually used, {value} is the path to vcpkg's binary An example of {path} is /foo/bar.",
"IllegalFeatures": "List of features is not allowed in this context",
"IllegalPlatformSpec": "Platform qualifier is not allowed in this context",
"ImproperShaLength": "SHA512's must be 128 hex characters: {value}",
"_ImproperShaLength.comment": "{value} is a sha.",
"IncorrectArchiveFileSignature": "Incorrect archive file signature",
"InfoSetEnvVar": "You can also set {env_var} to your editor of choice.",
"_InfoSetEnvVar.comment": "In this context 'editor' means IDE An example of {env_var} is VCPKG_DEFAULT_TRIPLET.",
"InitRegistryFailedNoRepo": "Could not create a registry at {path} because this is not a git repository root.\nUse `git init {command_line}` to create a git repository in this folder.",
"_InitRegistryFailedNoRepo.comment": "An example of {path} is /foo/bar. An example of {command_line} is vcpkg install zlib.",
"InstallCopiedFile": "{path_source} -> {path_destination} done",
"_InstallCopiedFile.comment": "An example of {path_source} is /foo/bar. An example of {path_destination} is /foo/bar.",
"InstallFailed": "failed: {path}: {error_msg}",
"_InstallFailed.comment": "An example of {path} is /foo/bar. An example of {error_msg} is File Not Found.",
"InstallPackageInstruction": "With a project open, go to Tools->NuGet Package Manager->Package Manager Console and paste:\n Install-Package \"{value}\" -Source \"{path}\"",
"_InstallPackageInstruction.comment": "'{value}' is the nuget id. An example of {path} is /foo/bar.",
"InstallRootDir": "Installed directory (experimental)",
"InstallSkippedUpToDateFile": "{path_source} -> {path_destination} skipped, up to date",
"_InstallSkippedUpToDateFile.comment": "An example of {path_source} is /foo/bar. An example of {path_destination} is /foo/bar.",
"InstallWithSystemManager": "You may be able to install this tool via your system package manager.",
"InstallWithSystemManagerMono": "Ubuntu 18.04 users may need a newer version of mono, available at {url}.",
"_InstallWithSystemManagerMono.comment": "An example of {url} is https://github.com/microsoft/vcpkg.",
"InstallWithSystemManagerPkg": "You may be able to install this tool via your system package manager ({command_line}).",
"_InstallWithSystemManagerPkg.comment": "An example of {command_line} is vcpkg install zlib.",
"InstalledBy": "Installed by {path}",
"_InstalledBy.comment": "An example of {path} is /foo/bar.",
"InstalledPackages": "The following packages are already installed:",
"InstalledRequestedPackages": "All requested packages are currently installed.",
"InstallingMavenFile": "{path} installing Maven file",
"_InstallingMavenFile.comment": "Printed after a filesystem operation error An example of {path} is /foo/bar.",
"InstallingOverlayPort": "installing overlay port from here",
"InstallingPackage": "Installing {action_index}/{count} {spec}...",
"_InstallingPackage.comment": "An example of {action_index} is 340. An example of {count} is 42. An example of {spec} is zlib:x64-windows.",
"IntegrateBashHelp": "Enable bash tab-completion. Non-Windows only",
"_IntegrateBashHelp.comment": "'bash' is a terminal program which should be unlocalized.",
"IntegrateFishHelp": "Enable fish tab-completion. Non-Windows only",
"_IntegrateFishHelp.comment": "'fish' is a terminal program which should be unlocalized.",
"IntegrateInstallHelpLinux": "Makes installed packages available user-wide",
"IntegrateInstallHelpWindows": "Makes installed packages available user-wide. Requires admin privileges on first use",
"IntegrateNonWindowsOnly": "{command_line} is non-Windows-only and not supported on this system.",
"_IntegrateNonWindowsOnly.comment": "An example of {command_line} is vcpkg install zlib.",
"IntegratePowerShellHelp": "Enable PowerShell tab-completion. Windows-only",
"IntegrateProjectHelp": "Generates a referencing NuGet package for individual Visual Studio project use. Windows-only",
"IntegrateRemoveHelp": "Removes user-wide integration",
"IntegrateWindowsOnly": "{command_line} is Windows-only and not supported on this system.",
"_IntegrateWindowsOnly.comment": "An example of {command_line} is vcpkg install zlib.",
"IntegrateZshHelp": "Enable zsh tab-completion. Non-Windows only",
"_IntegrateZshHelp.comment": "'zsh' is a terminal program which should be unlocalized.",
"IntegrationFailedVS2015": "Integration was not applied for Visual Studio 2015.",
"InternalCICommand": "vcpkg ci is an internal command which will change incompatibly or be removed at any time.",
"InternalErrorMessageContact": "Please open an issue at https://github.com/microsoft/vcpkg/issues/new?template=other-type-of-bug-report.md&labels=category:vcpkg-bug with detailed steps to reproduce the problem.",
"InvalidArchitecture": "invalid architecture: {value}",
"_InvalidArchitecture.comment": "{value} is what the user entered that we did not understand",
"InvalidArgument": "invalid argument",
"InvalidArgumentRequiresAbsolutePath": "invalid argument: binary config '{binary_source}' path arguments for binary config strings must be absolute",
"_InvalidArgumentRequiresAbsolutePath.comment": "An example of {binary_source} is azblob.",
"InvalidArgumentRequiresBaseUrl": "invalid argument: binary config '{binary_source}' requires a {base_url} base url as the first argument",
"_InvalidArgumentRequiresBaseUrl.comment": "An example of {base_url} is azblob://. An example of {binary_source} is azblob.",
"InvalidArgumentRequiresBaseUrlAndToken": "invalid argument: binary config '{binary_source}' requires at least a base-url and a SAS token",
"_InvalidArgumentRequiresBaseUrlAndToken.comment": "An example of {binary_source} is azblob.",
"InvalidArgumentRequiresNoWildcards": "cannot fix Windows path case for path containing wildcards: {path}",
"_InvalidArgumentRequiresNoWildcards.comment": "An example of {path} is /foo/bar.",
"InvalidArgumentRequiresNoneArguments": "invalid argument: binary config '{binary_source}' does not take arguments",
"_InvalidArgumentRequiresNoneArguments.comment": "An example of {binary_source} is azblob.",
"InvalidArgumentRequiresOneOrTwoArguments": "invalid argument: binary config '{binary_source}' requires 1 or 2 arguments",
"_InvalidArgumentRequiresOneOrTwoArguments.comment": "An example of {binary_source} is azblob.",
"InvalidArgumentRequiresPathArgument": "invalid argument: binary config '{binary_source}' requires at least one path argument",