]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_error_messages/locales/en-US/metadata.ftl
New upstream version 1.67.1+dfsg1
[rustc.git] / compiler / rustc_error_messages / locales / en-US / metadata.ftl
1 metadata_rlib_required =
2 crate `{$crate_name}` required to be available in rlib format, but was not found in this form
3
4 metadata_lib_required =
5 crate `{$crate_name}` required to be available in {$kind} format, but was not found in this form
6
7 metadata_crate_dep_multiple =
8 cannot satisfy dependencies so `{$crate_name}` only shows up once
9 .help = having upstream crates all available in one format will likely make this go away
10
11 metadata_two_panic_runtimes =
12 cannot link together two panic runtimes: {$prev_name} and {$cur_name}
13
14 metadata_bad_panic_strategy =
15 the linked panic runtime `{$runtime}` is not compiled with this crate's panic strategy `{$strategy}`
16
17 metadata_required_panic_strategy =
18 the crate `{$crate_name}` requires panic strategy `{$found_strategy}` which is incompatible with this crate's strategy of `{$desired_strategy}`
19
20 metadata_incompatible_panic_in_drop_strategy =
21 the crate `{$crate_name}` is compiled with the panic-in-drop strategy `{$found_strategy}` which is incompatible with this crate's strategy of `{$desired_strategy}`
22
23 metadata_multiple_names_in_link =
24 multiple `name` arguments in a single `#[link]` attribute
25
26 metadata_multiple_kinds_in_link =
27 multiple `kind` arguments in a single `#[link]` attribute
28
29 metadata_link_name_form =
30 link name must be of the form `name = "string"`
31
32 metadata_link_kind_form =
33 link kind must be of the form `kind = "string"`
34
35 metadata_link_modifiers_form =
36 link modifiers must be of the form `modifiers = "string"`
37
38 metadata_link_cfg_form =
39 link cfg must be of the form `cfg(/* predicate */)`
40
41 metadata_wasm_import_form =
42 wasm import module must be of the form `wasm_import_module = "string"`
43
44 metadata_empty_link_name =
45 link name must not be empty
46 .label = empty link name
47
48 metadata_link_framework_apple =
49 link kind `framework` is only supported on Apple targets
50
51 metadata_framework_only_windows =
52 link kind `raw-dylib` is only supported on Windows targets
53
54 metadata_unknown_link_kind =
55 unknown link kind `{$kind}`, expected one of: static, dylib, framework, raw-dylib
56 .label = unknown link kind
57
58 metadata_multiple_link_modifiers =
59 multiple `modifiers` arguments in a single `#[link]` attribute
60
61 metadata_multiple_cfgs =
62 multiple `cfg` arguments in a single `#[link]` attribute
63
64 metadata_link_cfg_single_predicate =
65 link cfg must have a single predicate argument
66
67 metadata_multiple_wasm_import =
68 multiple `wasm_import_module` arguments in a single `#[link]` attribute
69
70 metadata_unexpected_link_arg =
71 unexpected `#[link]` argument, expected one of: name, kind, modifiers, cfg, wasm_import_module, import_name_type
72
73 metadata_invalid_link_modifier =
74 invalid linking modifier syntax, expected '+' or '-' prefix before one of: bundle, verbatim, whole-archive, as-needed
75
76 metadata_multiple_modifiers =
77 multiple `{$modifier}` modifiers in a single `modifiers` argument
78
79 metadata_bundle_needs_static =
80 linking modifier `bundle` is only compatible with `static` linking kind
81
82 metadata_whole_archive_needs_static =
83 linking modifier `whole-archive` is only compatible with `static` linking kind
84
85 metadata_as_needed_compatibility =
86 linking modifier `as-needed` is only compatible with `dylib` and `framework` linking kinds
87
88 metadata_unknown_link_modifier =
89 unknown linking modifier `{$modifier}`, expected one of: bundle, verbatim, whole-archive, as-needed
90
91 metadata_incompatible_wasm_link =
92 `wasm_import_module` is incompatible with other arguments in `#[link]` attributes
93
94 metadata_link_requires_name =
95 `#[link]` attribute requires a `name = "string"` argument
96 .label = missing `name` argument
97
98 metadata_raw_dylib_no_nul =
99 link name must not contain NUL characters if link kind is `raw-dylib`
100
101 metadata_link_ordinal_raw_dylib =
102 `#[link_ordinal]` is only supported if link kind is `raw-dylib`
103
104 metadata_lib_framework_apple =
105 library kind `framework` is only supported on Apple targets
106
107 metadata_empty_renaming_target =
108 an empty renaming target was specified for library `{$lib_name}`
109
110 metadata_renaming_no_link =
111 renaming of the library `{$lib_name}` was specified, however this crate contains no `#[link(...)]` attributes referencing this library
112
113 metadata_multiple_renamings =
114 multiple renamings were specified for library `{$lib_name}`
115
116 metadata_no_link_mod_override =
117 overriding linking modifiers from command line is not supported
118
119 metadata_unsupported_abi_i686 =
120 ABI not supported by `#[link(kind = "raw-dylib")]` on i686
121
122 metadata_unsupported_abi =
123 ABI not supported by `#[link(kind = "raw-dylib")]` on this architecture
124
125 metadata_fail_create_file_encoder =
126 failed to create file encoder: {$err}
127
128 metadata_fail_seek_file =
129 failed to seek the file: {$err}
130
131 metadata_fail_write_file =
132 failed to write to the file: {$err}
133
134 metadata_crate_not_panic_runtime =
135 the crate `{$crate_name}` is not a panic runtime
136
137 metadata_no_panic_strategy =
138 the crate `{$crate_name}` does not have the panic strategy `{$strategy}`
139
140 metadata_profiler_builtins_needs_core =
141 `profiler_builtins` crate (required by compiler options) is not compatible with crate attribute `#![no_core]`
142
143 metadata_not_profiler_runtime =
144 the crate `{$crate_name}` is not a profiler runtime
145
146 metadata_no_multiple_global_alloc =
147 cannot define multiple global allocators
148 .label = cannot define a new global allocator
149
150 metadata_prev_global_alloc =
151 previous global allocator defined here
152
153 metadata_no_multiple_alloc_error_handler =
154 cannot define multiple allocation error handlers
155 .label = cannot define a new allocation error handler
156
157 metadata_prev_alloc_error_handler =
158 previous allocation error handler defined here
159
160 metadata_conflicting_global_alloc =
161 the `#[global_allocator]` in {$other_crate_name} conflicts with global allocator in: {$crate_name}
162
163 metadata_conflicting_alloc_error_handler =
164 the `#[alloc_error_handler]` in {$other_crate_name} conflicts with allocation error handler in: {$crate_name}
165
166 metadata_global_alloc_required =
167 no global memory allocator found but one is required; link to std or add `#[global_allocator]` to a static item that implements the GlobalAlloc trait
168
169 metadata_alloc_func_required =
170 `#[alloc_error_handler]` function required, but not found
171
172 metadata_missing_alloc_error_handler =
173 use `#![feature(default_alloc_error_handler)]` for a default error handler
174
175 metadata_no_transitive_needs_dep =
176 the crate `{$crate_name}` cannot depend on a crate that needs {$needs_crate_name}, but it depends on `{$deps_crate_name}`
177
178 metadata_failed_write_error =
179 failed to write {$filename}: {$err}
180
181 metadata_missing_native_library =
182 could not find native static library `{$libname}`, perhaps an -L flag is missing?
183
184 metadata_only_provide_library_name = only provide the library name `{$suggested_name}`, not the full filename
185
186 metadata_failed_create_tempdir =
187 couldn't create a temp dir: {$err}
188
189 metadata_failed_create_file =
190 failed to create the file {$filename}: {$err}
191
192 metadata_failed_create_encoded_metadata =
193 failed to create encoded metadata from file: {$err}
194
195 metadata_non_ascii_name =
196 cannot load a crate with a non-ascii name `{$crate_name}`
197
198 metadata_extern_location_not_exist =
199 extern location for {$crate_name} does not exist: {$location}
200
201 metadata_extern_location_not_file =
202 extern location for {$crate_name} is not a file: {$location}
203
204 metadata_multiple_candidates =
205 multiple {$flavor} candidates for `{$crate_name}` found
206
207 metadata_multiple_matching_crates =
208 multiple matching crates for `{$crate_name}`
209 .note = candidates:{$candidates}
210
211 metadata_symbol_conflicts_current =
212 the current crate is indistinguishable from one of its dependencies: it has the same crate-name `{$crate_name}` and was compiled with the same `-C metadata` arguments. This will result in symbol conflicts between the two.
213
214 metadata_symbol_conflicts_others =
215 found two different crates with name `{$crate_name}` that are not distinguished by differing `-C metadata`. This will result in symbol conflicts between the two.
216
217 metadata_stable_crate_id_collision =
218 found crates (`{$crate_name0}` and `{$crate_name1}`) with colliding StableCrateId values.
219
220 metadata_dl_error =
221 {$err}
222
223 metadata_newer_crate_version =
224 found possibly newer version of crate `{$crate_name}`{$add_info}
225 .note = perhaps that crate needs to be recompiled?
226
227 metadata_found_crate_versions =
228 the following crate versions were found:{$found_crates}
229
230 metadata_no_crate_with_triple =
231 couldn't find crate `{$crate_name}` with expected target triple {$locator_triple}{$add_info}
232
233 metadata_found_staticlib =
234 found staticlib `{$crate_name}` instead of rlib or dylib{$add_info}
235 .help = please recompile that crate using --crate-type lib
236
237 metadata_incompatible_rustc =
238 found crate `{$crate_name}` compiled by an incompatible version of rustc{$add_info}
239 .help = please recompile that crate using this compiler ({$rustc_version}) (consider running `cargo clean` first)
240
241 metadata_invalid_meta_files =
242 found invalid metadata files for crate `{$crate_name}`{$add_info}
243
244 metadata_cannot_find_crate =
245 can't find crate for `{$crate_name}`{$add_info}
246
247 metadata_no_dylib_plugin =
248 plugin `{$crate_name}` only found in rlib format, but must be available in dylib format
249
250 metadata_target_not_installed =
251 the `{$locator_triple}` target may not be installed
252
253 metadata_target_no_std_support =
254 the `{$locator_triple}` target may not support the standard library
255
256 metadata_consider_downloading_target =
257 consider downloading the target with `rustup target add {$locator_triple}`
258
259 metadata_std_required =
260 `std` is required by `{$current_crate}` because it does not declare `#![no_std]`
261
262 metadata_consider_building_std =
263 consider building the standard library from source with `cargo build -Zbuild-std`
264
265 metadata_compiler_missing_profiler =
266 the compiler may have been built without the profiler runtime
267
268 metadata_install_missing_components =
269 maybe you need to install the missing components with: `rustup component add rust-src rustc-dev llvm-tools-preview`
270
271 metadata_cant_find_crate =
272 can't find crate
273
274 metadata_crate_location_unknown_type =
275 extern location for {$crate_name} is of an unknown type: {$path}
276
277 metadata_lib_filename_form =
278 file name should be lib*.rlib or {$dll_prefix}*{$dll_suffix}
279
280 metadata_multiple_import_name_type =
281 multiple `import_name_type` arguments in a single `#[link]` attribute
282
283 metadata_import_name_type_form =
284 import name type must be of the form `import_name_type = "string"`
285
286 metadata_import_name_type_x86 =
287 import name type is only supported on x86
288
289 metadata_unknown_import_name_type =
290 unknown import name type `{$import_name_type}`, expected one of: decorated, noprefix, undecorated
291
292 metadata_import_name_type_raw =
293 import name type can only be used with link kind `raw-dylib`