The following warning has no error number number assigned (and text is wrong and not internationalized, I pick that up in #9779)

test.fs(3,1): warning FS0000: #light should only occur as the first non-comment text in an F# source file
Repro steps
#light
module Foo
#indent "on" // raises FS0000 warning
Expected behavior
Proper warning with a warning number, the token is #indent, not #light
Actual behavior
See screenshot: a warning without a warning number.
Proposed fix
I've fixed the text already, but there's two more things that need to be done here:
- It should be put inside
FSComp.SR and translated
- A number should be assigned.
I can do (1), and I believe then the translations will be picked up, but I don't know how to do (2).