const fetchTranslation = (to: string, response: AllContent): string => {
    if (null !== response && undefined !== response.description.get(to)) {
        return <string>response.description.get(to);
    }