about summary refs log tree commit diff
path: root/compiler/rustc_borrowck/messages.ftl
AgeCommit message (Collapse)AuthorLines
2023-10-20s/generator/coroutine/Oli Scherer-21/+21
2023-09-12cleanup on messagesyukang-9/+0
2023-09-06Don't report any errors in `lower_intrinsics`. They should have been ↵Oli Scherer-0/+2
typecked before.
2023-05-25Ensure Fluent messages are in alphabetical orderclubby789-173/+173
2023-04-27Don't call await a methodMichael Goulet-0/+9
2023-04-13migrate ftl msg accroding to #103042AndyJado-12/+138
2023-03-11Simplify message pathsest31-0/+129
This makes it easier to open the messages file while developing on features. The commit was the result of automatted changes: for p in compiler/rustc_*; do mv $p/locales/en-US.ftl $p/messages.ftl; rmdir $p/locales; done for p in compiler/rustc_*; do sed -i "s#\.\./locales/en-US.ftl#../messages.ftl#" $p/src/lib.rs; done