Crowdin picking up the string in the import statement (…/…/types) and showing it in the translation, I want to hide it or ignore it, how can I do this?
import type { BaseTranslation } from "../../types";
const common: BaseTranslation = {
SOMETHINGN_WENT_WRONG: "Ops, looks like something went wrong",
};
export default common;
It appears that automatically hiding a string might not be feasible. However, as a workaround, you could employ a processor to substitute it with something less easily translatable, such as a space