in scripts/extractStrings.js [269:278]
function findAndGenerateLockedStringComment(jsonKey, stringToLoc, outputMap) {
const params = findParameterNames(stringToLoc);
const columns = findColumnNameReferences(stringToLoc);
if (params || columns) {
const commentKey = "_" + jsonKey + ".comment";
const commentEntry = "{Locked=" + (params|| []).map(p => "\"" + p + "\"").join(",") + (params && columns ? "," : "") + (columns || []).map(c => "\"" + c + "\"").join(",") + "}";
outputMap[commentKey] = commentEntry;
}
}