Is there a list of new phrases when a new version of xF comes out?

Ati

Well-known member
Hi,

when there is an upgrade to xF, is there a list of new phrases somewhere?

If I had all the phrases translated, then it would be easy to spot the ones that are not translated -- however, I'm not translating the admin area, so I have lots and lots of phrases that are not in the new language pack.
 
install/data/phrases.xml

This file has versions listed for each phrase.

You can also query the xf_phrase table. For example:

Code:
SELECT *
FROM xf_phrase
WHERE version_string = '1.0.0 Release Candidate 2'
 
  • Like
Reactions: Ati
Top Bottom