 
 I'm working the Sandbox, I've uploaded (multiple times) the translation.json file.  Yet, a sheet worker keeps returning this error message:      Here's the sheet worker:  const moneylist = ["money","gold","silver","electrum","copper"];
    const moneylabels = ["money","moneyone","moneytwo","moneythree","moneyfour"];
    moneylabels.forEach(moneyLabel => {
        on("sheet:opened", function() {
            log("Money","Setting up money","darkgreen");
            getAttrs([`${moneyLabel}name`], function(v) {
                if (v[`${moneyLabel}name`] === "") {
                    //label is empty, so fill it
                    const labelIndex = moneylabels.lastIndexOf(moneyLabel);
                    const moneyType = moneylist[labelIndex];
                    const typeOfMoney = getTranslationByKey(`${moneyType}`);
                    log("Money Type",typeOfMoney,"darkgreen");
                    const setmoney = {};
                    setmoney[`${moneyLabel}name`] = typeOfMoney;
                    setAttrs(setmoney);
                }
                else {
                    log("Money","Already set","darkgreen");
                }
            });
        });
    });   I know it works, because one of the labels is returned properly, but the ones for gold, silver, etc. it says it can't find.  Is there a way for me to check the translation.json object in the developer tools in Chrome? 
