+If your code significantly modifies existing strings so that their meaning is changed (fixing typos etc. does not count), you need to update the translation key for that string to signal the change to translators. A good way to do this is to append an incrementing version identifier to the translation key, or increment the key if it already exists. For example, if you modified the `ExpandMapWindow.InvalidWidth.Title` string in a significant way, you'd change its translation key to `ExpandMapWindow.InvalidWidth.Title.v2`. If then, you returned and changed its meaning again at a later date, you'd change the translation key to `ExpandMapWindow.InvalidWidth.Title.v3`.
0 commit comments