Just realized that my automation for Crowdin fell over when the only change was a **new** language and so APS just didn't include the Polish translations submitted over 2 weeks ago.

The root cause of it was that the GitHub workflow used `git diff --stat` to check for changes before raising a PR, which does not take into account untracked files, a.k.a. "new files". Changing this to `git status -s` fixed that problem for good ๐Ÿ‘