diff --git a/options/locale_next/locale_en-US.json b/options/locale_next/locale_en-US.json
index b4e271824a..8127dbf4b9 100644
--- a/options/locale_next/locale_en-US.json
+++ b/options/locale_next/locale_en-US.json
@@ -271,11 +271,12 @@
"packages.dependency.id": "ID",
"packages.dependency.version": "Version",
"packages.search_in_external_registry": "Search in %s",
+ "packages.common.install": "To install the package, run the following command:",
+ "packages.common.registry": "Setup this registry from the command line:",
+ "packages.common.repository": "Repository info",
"packages.alpine.registry": "Setup this registry by adding the url in your /etc/apk/repositories file:",
"packages.alpine.registry.key": "Download the registry public RSA key into the /etc/apk/keys/ folder to verify the index signature:",
"packages.alpine.registry.info": "Choose $branch and $repository from the list below.",
- "packages.alpine.install": "To install the package, run the following command:",
- "packages.alpine.repository": "Repository info",
"packages.alpine.repository.branches": "Branches",
"packages.alpine.repository.repositories": "Repositories",
"packages.alpine.repository.architectures": "Architectures",
@@ -288,22 +289,18 @@
"packages.arch.version.description": "Description",
"packages.arch.version.provides": "Provides",
"packages.arch.version.groups": "Group",
- "packages.arch.version.depends": "Depends",
- "packages.arch.version.optdepends": "Optional depends",
- "packages.arch.version.makedepends": "Make depends",
- "packages.arch.version.checkdepends": "Check depends",
+ "packages.arch.version.optdepends": "Optional dependencies",
+ "packages.arch.version.makedepends": "Make dependencies",
+ "packages.arch.version.checkdepends": "Check dependencies",
"packages.arch.version.conflicts": "Conflicts",
"packages.arch.version.replaces": "Replaces",
"packages.arch.version.backup": "Backup",
"packages.cargo.registry": "Setup this registry in the Cargo configuration file (for example ~/.cargo/config.toml):",
"packages.cargo.install": "To install the package using Cargo, run the following command:",
"packages.chef.registry": "Setup this registry in your ~/.chef/config.rb file:",
- "packages.chef.install": "To install the package, run the following command:",
"packages.composer.registry": "Setup this registry in your ~/.composer/config.json file:",
"packages.composer.install": "To install the package using Composer, run the following command:",
- "packages.composer.dependencies": "Dependencies",
"packages.composer.dependencies.development": "Development dependencies",
- "packages.conan.registry": "Setup this registry from the command line:",
"packages.conan.install": "To install the package using Conan, run the following command:",
"packages.conda.registry": "Setup this registry as a Conda repository in your .condarc file:",
"packages.conda.install": "To install the package using Conda, run the following command:",
@@ -318,29 +315,21 @@
"packages.container.labels.key": "Key",
"packages.container.labels.value": "Value",
"packages.cran.registry": "Setup this registry in your Rprofile.site file:",
- "packages.cran.install": "To install the package, run the following command:",
- "packages.debian.registry": "Setup this registry from the command line:",
"packages.debian.registry.info": "Choose $distribution and $component from the list below.",
- "packages.debian.install": "To install the package, run the following command:",
- "packages.debian.repository": "Repository info",
"packages.debian.repository.distributions": "Distributions",
"packages.debian.repository.components": "Components",
"packages.debian.repository.architectures": "Architectures",
"packages.generic.download": "Download package from the command line:",
"packages.go.install": "Install the package from the command line:",
- "packages.helm.registry": "Setup this registry from the command line:",
- "packages.helm.install": "To install the package, run the following command:",
"packages.maven.registry": "Setup this registry in your project pom.xml file:",
"packages.maven.install": "To use the package include the following in the dependencies block in the pom.xml file:",
"packages.maven.install2": "Run via command line:",
"packages.maven.download": "To download the dependency, run via command line:",
- "packages.nuget.registry": "Setup this registry from the command line:",
"packages.nuget.install": "To install the package using NuGet, run the following command:",
"packages.nuget.dependency.framework": "Target Framework",
"packages.npm.registry": "Setup this registry in your project .npmrc file:",
"packages.npm.install": "To install the package using npm, run the following command:",
"packages.npm.install2": "or add it to the package.json file:",
- "packages.npm.dependencies": "Dependencies",
"packages.npm.dependencies.development": "Development dependencies",
"packages.npm.dependencies.bundle": "Bundled dependencies",
"packages.npm.dependencies.peer": "Peer dependencies",
@@ -348,18 +337,12 @@
"packages.npm.details.tag": "Tag",
"packages.pypi.requires": "Requires Python",
"packages.pypi.install": "To install the package using pip, run the following command:",
- "packages.rpm.registry": "Setup this registry from the command line:",
"packages.rpm.distros.redhat": "on RedHat based distributions",
"packages.rpm.distros.suse": "on SUSE based distributions",
- "packages.rpm.install": "To install the package, run the following command:",
- "packages.rpm.repository": "Repository info",
"packages.rpm.repository.architectures": "Architectures",
"packages.rpm.repository.multiple_groups": "This package is available in multiple groups.",
- "packages.alt.registry": "Setup this registry from the command line:",
- "packages.alt.registry.install": "To install the package, run the following command:",
"packages.alt.install": "Install package",
"packages.alt.setup": "Add a repository to the list of connected repositories (choose the necessary architecture instead of \"_arch_\"):",
- "packages.alt.repository": "Repository info",
"packages.alt.repository.architectures": "Architectures",
"packages.alt.repository.multiple_groups": "This package is available in multiple groups.",
"packages.rubygems.install": "To install the package using gem, run the following command:",
@@ -368,7 +351,6 @@
"packages.rubygems.dependencies.development": "Development dependencies",
"packages.rubygems.required.ruby": "Requires Ruby version",
"packages.rubygems.required.rubygems": "Requires RubyGem version",
- "packages.swift.registry": "Setup this registry from the command line:",
"packages.swift.install": "Add the package in your Package.swift file:",
"packages.swift.install2": "and run the following command:",
"packages.vagrant.install": "To add a Vagrant box, run the following command:",
diff --git a/templates/package/content/alpine.tmpl b/templates/package/content/alpine.tmpl
index 8914006ff0..a4a516166b 100644
--- a/templates/package/content/alpine.tmpl
+++ b/templates/package/content/alpine.tmpl
@@ -12,7 +12,7 @@
curl -JO sudo apk add {{$.PackageDescriptor.Package.Name}}={{$.PackageDescriptor.Version.Version}}
| {{StringUtils.Join $.PackageDescriptor.Metadata.Depends ", "}} | diff --git a/templates/package/content/chef.tmpl b/templates/package/content/chef.tmpl index d39164b90b..9d91c30833 100644 --- a/templates/package/content/chef.tmpl +++ b/templates/package/content/chef.tmpl @@ -7,7 +7,7 @@