(function() { I18n.messageFormat = function(key, options) { var fn = I18n._compiledMFs[key]; if (fn) { try { return fn(options); } catch (err) { return err.message; } } else { return "Missing Key: " + key; } }; })();