I am having a problem with a specific iOS translation issue. The application in which I am currently working receives all the texts that it displays from the web service. I was able to implement this everywhere with one single exception:
I have not yet found a way to programmatically change texts from info.plist, which will be used from the system in code that I can not control. The one I need to deal with is "Confidentiality - a description of the use of the camera." So far, any documentation that I have found tells me to add localized text versions for info.plist, but in this particular case this will not help me, because different clients can specify different texts for the same language, and sometimes I even I donβt know what language the texts are in, so I can not rely solely on the static data in the application to select the desired text version.
Is there a way to install such text programmatically or if it is not possible to catch a warning displaying it and replace it with one of my own?
source
share