@@ -4,6 +4,7 @@ DECLARE_MESSAGE(ABoolean, (), "", "a boolean")
44DECLARE_MESSAGE (ABuiltinRegistry , ( ), "" , "a builtin registry" )
55DECLARE_MESSAGE (AConfigurationObject , ( ), "" , "a configuration object" )
66DECLARE_MESSAGE (ADependency , ( ), "" , "a dependency" )
7+ DECLARE_MESSAGE (ADependencyFeature , ( ), "" , "a feature in a dependency" )
78DECLARE_MESSAGE (ADemandObject ,
89 ( ),
910 "'demands' are a concept in the schema of a JSON file the user can edit" ,
@@ -124,6 +125,7 @@ DECLARE_MESSAGE(AnArtifactsGitRegistryUrl, (), "", "an artifacts git registry UR
124125DECLARE_MESSAGE (AnArtifactsRegistry , ( ), "" , "an artifacts registry" )
125126DECLARE_MESSAGE (AnArrayOfDependencies , ( ), "" , "an array of dependencies" )
126127DECLARE_MESSAGE (AnArrayOfDependencyOverrides , ( ), "" , "an array of dependency overrides" )
128+ DECLARE_MESSAGE (AnArrayOfFeatures , ( ), "" , "an array of features" )
127129DECLARE_MESSAGE (AnArrayOfIdentifers , ( ), "" , "an array of identifiers" )
128130DECLARE_MESSAGE (AnArrayOfOverlayPaths , ( ), "" , "an array of overlay paths" )
129131DECLARE_MESSAGE (AnArrayOfOverlayTripletsPaths , ( ), "" , "an array of overlay triplets paths" )
@@ -858,6 +860,10 @@ DECLARE_MESSAGE(ErrorRequirePackagesList,
858860 ( ),
859861 "" ,
860862 "`vcpkg install` requires a list of packages to install in classic mode." )
863+ DECLARE_MESSAGE (ErrorInvalidExtractOption ,
864+ (msg ::option , msg ::value ),
865+ "The keyword 'AUTO' should not be localized" ,
866+ "--{option} must be set to a nonnegative integer or 'AUTO'." )
861867DECLARE_MESSAGE (ErrorsFound , ( ), "" , "Found the following errors:" )
862868DECLARE_MESSAGE (ErrorUnableToDetectCompilerInfo ,
863869 ( ),
@@ -929,6 +935,7 @@ DECLARE_MESSAGE(ExportUnsupportedInManifest,
929935 "vcpkg export does not support manifest mode, in order to allow for future design considerations. "
930936 "You may use export in classic mode by running vcpkg outside of a manifest-based project." )
931937DECLARE_MESSAGE (ExtendedDocumentationAtUrl , (msg ::url ), "" , "Extended documentation available at '{url}'." )
938+ DECLARE_MESSAGE (ExtractHelp , ( ), "" , "Extracts an archive." )
932939DECLARE_MESSAGE (ExtractingTool , (msg ::tool_name ), "" , "Extracting {tool_name}..." )
933940DECLARE_MESSAGE (FailedPostBuildChecks ,
934941 (msg ::count , msg ::path ),
@@ -2360,6 +2367,10 @@ DECLARE_MESSAGE(StoredBinariesToDestinations,
23602367 "" ,
23612368 "Stored binaries in {count} destinations in {elapsed}." )
23622369DECLARE_MESSAGE (StoreOptionMissingSha , ( ), "" , "--store option is invalid without a sha512" )
2370+ DECLARE_MESSAGE (StripOption ,
2371+ (msg ::option ),
2372+ "--{option} is a setting that can be passed to z-extract command." ,
2373+ "--{option} specifies the number of leading directories to strip from all paths." )
23632374DECLARE_MESSAGE (SuccessfulyExported , (msg ::package_name , msg ::path ), "" , "Exported {package_name} to {path}" )
23642375DECLARE_MESSAGE (SuggestGitPull , ( ), "" , "The result may be outdated. Run `git pull` to get the latest results." )
23652376DECLARE_MESSAGE (SuggestResolution ,
0 commit comments