Sometimes it so happens that multiple strings defined in a mod's LANGUAGE lump have the same content. For example, suppose we want to replace all menu quit messages with a single new message. Currently, we'd have to do it like this:
Code: Select all
QUITMSG1 = "My new message";
QUITMSG2 = "My new message";
...
QUITMSG14 = "My new message";
...
Code: Select all
QUITMSG1 =
QUITMSG2 =
QUITMSG3 =
...
QUITMSG14 = "My new message";
I'm sure this can be implemented relatively easily. I'd be willing to code it myself and provide a PR unless the developers don't approve of this suggestion for some reason.