]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_messages/locales/en-US/session.ftl
Auto merge of #104160 - Ayush1325:windows-args, r=m-ou-se
[rust.git] / compiler / rustc_error_messages / locales / en-US / session.ftl
1 session_incorrect_cgu_reuse_type =
2     CGU-reuse for `{$cgu_user_name}` is `{$actual_reuse}` but should be {$at_least ->
3     [one] {"at least "}
4     *[other] {""}
5     }`{$expected_reuse}`
6
7 session_cgu_not_recorded =
8     CGU-reuse for `{$cgu_user_name}` is (mangled: `{$cgu_name}`) was not recorded`
9
10 session_feature_gate_error = {$explain}
11
12 session_feature_diagnostic_for_issue =
13     see issue #{$n} <https://github.com/rust-lang/rust/issues/{$n}> for more information
14
15 session_feature_diagnostic_help =
16     add `#![feature({$feature})]` to the crate attributes to enable
17
18 session_not_circumvent_feature = `-Zunleash-the-miri-inside-of-you` may not be used to circumvent feature gates, except when testing error paths in the CTFE engine
19
20 session_profile_use_file_does_not_exist = file `{$path}` passed to `-C profile-use` does not exist.
21
22 session_linker_plugin_lto_windows_not_supported = linker plugin based LTO is not supported together with `-C prefer-dynamic` when targeting Windows-like targets
23
24 session_profile_sample_use_file_does_not_exist = file `{$path}` passed to `-C profile-sample-use` does not exist.
25
26 session_target_requires_unwind_tables = target requires unwind tables, they cannot be disabled with `-C force-unwind-tables=no`
27
28 session_sanitizer_not_supported = {$us} sanitizer is not supported for this target
29
30 session_sanitizers_not_supported = {$us} sanitizers are not supported for this target
31
32 session_cannot_mix_and_match_sanitizers = `-Zsanitizer={$first}` is incompatible with `-Zsanitizer={$second}`
33
34 session_cannot_enable_crt_static_linux = sanitizer is incompatible with statically linked libc, disable it using `-C target-feature=-crt-static`
35
36 session_sanitizer_cfi_enabled = `-Zsanitizer=cfi` requires `-Clto`
37
38 session_unstable_virtual_function_elimination = `-Zvirtual-function-elimination` requires `-Clto`
39
40 session_unsupported_dwarf_version = requested DWARF version {$dwarf_version} is greater than 5
41
42 session_target_stack_protector_not_supported = `-Z stack-protector={$stack_protector}` is not supported for target {$target_triple} and will be ignored
43
44 session_split_debuginfo_unstable_platform = `-Csplit-debuginfo={$debuginfo}` is unstable on this platform
45
46 session_file_is_not_writeable = output file {$file} is not writeable -- check its permissions
47
48 session_crate_name_does_not_match = `--crate-name` and `#[crate_name]` are required to match, but `{$s}` != `{$name}`
49
50 session_crate_name_invalid = crate names cannot start with a `-`, but `{$s}` has a leading hyphen
51
52 session_crate_name_empty = crate name must not be empty
53
54 session_invalid_character_in_create_name = invalid character `{$character}` in crate name: `{$crate_name}`
55
56 session_expr_parentheses_needed = parentheses are required to parse this as an expression
57
58 session_skipping_const_checks = skipping const checks
59 session_unleashed_feature_help_named = skipping check for `{$gate}` feature
60 session_unleashed_feature_help_unnamed = skipping check that does not even have a feature gate
61
62 session_hexadecimal_float_literal_not_supported = hexadecimal float literal is not supported
63 session_octal_float_literal_not_supported = octal float literal is not supported
64 session_binary_float_literal_not_supported = binary float literal is not supported
65 session_not_supported = not supported
66
67 session_invalid_literal_suffix = suffixes on {$kind} literals are invalid
68     .label = invalid suffix `{$suffix}`
69
70 session_invalid_num_literal_base_prefix = invalid base prefix for number literal
71     .note = base prefixes (`0xff`, `0b1010`, `0o755`) are lowercase
72     .suggestion = try making the prefix lowercase
73
74 session_invalid_num_literal_suffix = invalid suffix `{$suffix}` for number literal
75     .label = invalid suffix `{$suffix}`
76     .help = the suffix must be one of the numeric types (`u32`, `isize`, `f32`, etc.)
77
78 session_invalid_float_literal_width = invalid width `{$width}` for float literal
79     .help = valid widths are 32 and 64
80
81 session_invalid_float_literal_suffix = invalid suffix `{$suffix}` for float literal
82     .label = invalid suffix `{$suffix}`
83     .help = valid suffixes are `f32` and `f64`
84
85 session_int_literal_too_large = integer literal is too large
86
87 session_invalid_int_literal_width = invalid width `{$width}` for integer literal
88     .help = valid widths are 8, 16, 32, 64 and 128