about summary refs log tree commit diff
path: root/compiler/rustc_privacy/messages.ftl
AgeCommit message (Collapse)AuthorLines
2023-08-02Replace old private-in-public diagnostic with type privacy lintsBryanskiy-5/+0
2023-06-29Fix type privacy lints error messageBryanskiy-1/+1
2023-06-12Private-in-public lints implementationBryanskiy-0/+7
2023-05-25Ensure Fluent messages are in alphabetical orderclubby789-9/+9
2023-03-11Simplify message pathsest31-0/+23
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