View attachment 1741586View attachment 1741591
Perhaps not possible... I tried to change some stuff and nothing was working, oddly the info.plist for this is scrambled so editing it breaks it completely. Trying to launch from the actual process throws up this error.
Yeah, the person on Apple Communities was either confused or lying. This isn't the sort of thing you'd just up and fix without also saying how, it's not simple!
The central problem is that Office is expecting CoreFoundation to contain a function called "kCFIslamicUmmAlQuraCalendar", and it doesn't exist. Ergo, you need to give Office what it's looking for. Unless we're unlucky, the function
probably doesn't need to do actually do anything, as long as it exists. Islamic calendar functionality will presumably break, but hopefully that's not a critical feature for you.
Take a look at how I fixed Unity games a couple weeks ago. I worked really,
really hard to make that writeup detailed but broadly accessible. The basic process here would be the same, just with a different function and library.
https://apple.stackexchange.com/a/414689/150839
You need to (1) compile a library which stubs that function, (2) use install_name_tool to make
WLMKernel.framework/Versions/A/WLMKernel
use your library instead of CoreFoundation, and then (3) use optool to make CoreFoundation a sub-library of your new library. The app should then either start up or crash in a different way, and in the latter case you can adjust the library as necessary.
If you want to try this, I'd be more than happy to help guide you, feel free to ask any questions!