I'm trying to localize a key in the InfoPlist.strings files which consists of a nested dictionary, like so:
baseKey = {
secondDict = {
"key" = "value";
};
};
Is there any way I can access the inner key directly from the InfoPlist.strings file?
"baseKey.secondDict.key" = "newValue";
doesn't seem to work... Any ideas? I know I can replicate the dictionary structure in the strings file, but it contains some other information that I would prefer not to have in there.