Your i18n.js file is quite strange: section keys are missing, also `s and commas:
for instance:
var i18n = { Castle Adventure in Javascript CRT: { Press enter to continue... }, IFEngine: { warnings: { IFEngine must be extended No adventure loaded ...
should be:
var i18n = { htmlTitle: `Castle Adventure in Javascript`, CRT: { waitText: `Press enter to continue...` }, IFEngine: { warnings: { mustBeExtended: `IFEngine must be extended`, notLoaded: `No adventure loaded` ...
what happened?