|
41 | 41 | "what_this_is": "This program will guide you through installing the Rust programming language, with additional third party tools of your choice.", |
42 | 42 | "custom_install_help": "Enter the value of each installation options, or just press 'Enter' key to use the default value.", |
43 | 43 | "installation_path": "Installation path", |
44 | | - "select_components_to_install": "Choose what components to install: (separated multiple options by spaces, required tools are automatically selected)", |
| 44 | + "select_components_to_install": "Select components to install", |
| 45 | + "select_components_cli_hint": "separated multiple options by spaces, required tools are automatically selected", |
45 | 46 | "select_components_to_update": "Choose what components to update: (separated multiple options by spaces)", |
46 | 47 | "select_components_to_remove": "Choose what components to remove: (separated multiple options by spaces)", |
47 | 48 | "question_try_demo": "Do you want to try Rust with a demo project?", |
|
121 | 122 | "package_source_missing_info": "One or more selected components require separated packages, you need to manually provide a path or link to install those.", |
122 | 123 | "default_source_hint": "Note: If no input is provided and a default value exists, the default value will be used.", |
123 | 124 | "question_package_source": "Enter the package source (path or url) for '%{tool}'", |
124 | | - "install_default": "default", |
125 | | - "install_everything": "everything", |
126 | | - "install_custom": "customize", |
127 | 125 |
|
128 | 126 | "skip_ssl_check": "skip SSL certificate verification", |
129 | 127 | "update_all": "Update all (including toolkit and toolkit manager)", |
|
140 | 138 | "no_toolkit_installed": "no toolkit was installed", |
141 | 139 | "no_component_installed": "no component was installed", |
142 | 140 | "component": "component", |
| 141 | + "components": "Components", |
143 | 142 | "toolkit": "toolkit", |
144 | 143 | "list_option": "List component/toolkit", |
145 | 144 | "all": "all", |
|
180 | 179 | "minimal_desc": "Contains only the required components sufficient to run Rust compiler, no other tools such as IDE are included", |
181 | 180 | "standard": "Standard", |
182 | 181 | "standard_desc": "Contains recommanded components such as IDE or ruleset for code check etc, does not includes optional tools. Recommanded for regular users.", |
183 | | - "customize_desc": "Choose any recommanded and optional components of your preference, suitable for exprienced users." |
| 182 | + "customize_desc": "Choose any recommanded and optional components of your preference, suitable for exprienced users.", |
| 183 | + "select_all": "Select all", |
| 184 | + "toolchain": "toolchain", |
| 185 | + "toolchain_component": "toolchain component", |
| 186 | + "toolchain_component_help": "part of Rust official toolchain, can also be managed by rustup using `rustup component` command.", |
| 187 | + "third_party_tool": "third-party tool", |
| 188 | + "bin_crate": "binary crate", |
| 189 | + "bin_crate_help": "binary crates are source code that can be compiled to executable binary, and can also be managed using `cargo` install or uninstall.", |
| 190 | + "dependency_crate": "dependency crate", |
| 191 | + "dependency_crate_help": "dependency crates are source code that used in your rust project, often used as project dependencies.\nNote: Installing dependency crates using this method has a downside, which causes 'unused-patch' warning on projects that doesn't use this specific dependency, so you don't need to install this unless you absolutely need it.", |
| 192 | + "standalone_tool": "standalone tool", |
| 193 | + "standalone_tool_help": "standalone tool has it's own `bin` directory, which contains a bunch of executables that will be automatically added to the PATH.", |
| 194 | + "executables": "executables", |
| 195 | + "executables_help": "contains executables that will be placed under `cargo/bin` directory.", |
| 196 | + "installer": "installer", |
| 197 | + "installer_help": "installation of this tool will start a separated installer process that might needs your input.", |
| 198 | + "plugin": "plugin", |
| 199 | + "plugin_help": "this is an add-on package for another program.", |
| 200 | + "ruleset": "ruleset", |
| 201 | + "ruleset_help": "contains customized rules that are used for linting.", |
| 202 | + "type": "Type", |
| 203 | + "type_desc": "Type description" |
184 | 204 | } |
0 commit comments