Arduino Compiler doesn't compile a particular sketch.

The " construct is not how to embed a double quote in a string. You use two double quotes, instead. On line 117, using '"' to describe what to store in the array element is wrong. It should be '"' (a single quote, a double quote, and a single quote). One line 114, the " needs to be changed to "" (Two double quotes). That will result in the line ending with three double quotes and a semicolon. Then, the code compiles.

There is no bug that needs to be dealt with in the IDE.