about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/messages.ftl
AgeCommit message (Collapse)AuthorLines
2023-10-09Merge commit '11a0cceab966e5ff1058ddbcab5977e8a1d6d290' into ↵Antoni Boucher-0/+30
subtree-update_cg_gcc_2023-10-09
2023-07-20UPDATE - replace expected_simd error with one from codegen_ssaJhonny Bill Mena-3/+0
Here I am assuming we want to treat these parameters (input, first, second, third, return) as translatable
2023-07-19UPDATE - replace gcc monomorphization errors with ssa onesJhonny Bill Mena-54/+0
Reduces error duplication and makes it more consistent across backends
2023-05-25Ensure Fluent messages are in alphabetical orderclubby789-33/+33
2023-03-11Simplify message pathsest31-0/+68
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