Inadvertently, the install/lang strings got injected into the core empty.po file during the release of 2.4.13.
1 string is changed between the older core and the current one:
" overdue Purchase Invoices"
is now
" unpaid Purchase Invoices"
It is better to re-create the core empty.po file and make for a re-release.
There is really no new strings in the empty.po other than the changed string listed above.
Here is a quick 'n dirty script to extract all gettext strings in FA:
find /var/www/frontac/ \( -name "*.php" -o -name "*.inc" \) ! -path "./tmp/*" | \
sort -bdf | \
xargs xgettext \
--default-domain=myapp \
--output=myapp.pot \
--language=PHP \
--indent \
--no-wrap \
--sort-output \
--omit-header
The --omit-header can be omitted along with the last back slash for comparison purposes like in WinMerge.
As these strings will be sorted, it will be easy to compare *.po files between versions. Comments can be stripped with:
grep ^'^#' sourcefile.txt > output.txt