mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-01 08:53:29 +00:00

a more general version of https://github.com/rust-lang/rust/pull/146080. after a bit of hacking in [`fluent.rs`](https://github.com/rust-lang/rust/blob/master/compiler/rustc_fluent_macro/src/fluent.rs), i discovered that i'm not the only one that is bad at following guidelines 😅. this pr lowercases the first letter of all the error messages in the codebase. (i did not change things that are traditionally uppercased such as _MIR_, _ABI_ or _C_) i think it's reasonable to run a `@bors try` so all the test suite is checked, as i cannot run some of the tests on my machine. i double checked (and replaced manually) all the old error messages, but better be safe than sorry. in the future i will try to add a check in `x test tidy` that errors if an error message starts with an uppercase letter.
30 lines
1.7 KiB
Plaintext
30 lines
1.7 KiB
Plaintext
query_system_cycle = cycle detected when {$stack_bottom}
|
|
.note = see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information
|
|
|
|
query_system_cycle_recursive_trait_alias = trait aliases cannot be recursive
|
|
|
|
query_system_cycle_recursive_ty_alias = type aliases cannot be recursive
|
|
query_system_cycle_recursive_ty_alias_help1 = consider using a struct, enum, or union instead to break the cycle
|
|
query_system_cycle_recursive_ty_alias_help2 = see <https://doc.rust-lang.org/reference/types.html#recursive-types> for more information
|
|
|
|
query_system_cycle_stack_middle = ...which requires {$desc}...
|
|
|
|
query_system_cycle_stack_multiple = ...which again requires {$stack_bottom}, completing the cycle
|
|
|
|
query_system_cycle_stack_single = ...which immediately requires {$stack_bottom} again
|
|
|
|
query_system_cycle_usage = cycle used when {$usage}
|
|
|
|
query_system_increment_compilation = internal compiler error: encountered incremental compilation error with {$dep_node}
|
|
.help = This is a known issue with the compiler. Run {$run_cmd} to allow your project to compile
|
|
|
|
query_system_increment_compilation_note1 = please follow the instructions below to create a bug report with the provided information
|
|
query_system_increment_compilation_note2 = see <https://github.com/rust-lang/rust/issues/84970> for more information
|
|
|
|
query_system_overflow_note = query depth increased by {$depth} when {$desc}
|
|
|
|
query_system_query_overflow = queries overflow the depth limit!
|
|
.help = consider increasing the recursion limit by adding a `#![recursion_limit = "{$suggested_limit}"]` attribute to your crate (`{$crate_name}`)
|
|
|
|
query_system_reentrant = internal compiler error: reentrant incremental verify failure, suppressing message
|