In QResource the example shows the use of QLocale with a resource.

Qt Code:
  1. <qresource>
  2. <file>cut.jpg</file>
  3. </qresource>
  4. <qresource lang="fr">
  5. <file alias="cut.jpg">cut_fr.jpg</file>
  6. </qresource>
To copy to clipboard, switch view to plain text mode 

My question here is if I have a mechanism to change language and adjust QLocale dynamically during program run time will it automagically understand the alias change and adjust for the proper language?

Bob