const addTranslation = async (to: string, message: string, response: AllContent): Promise<boolean> => {
    response.description.set(to, message);

    return response.save().then(() => true).catch(() => false);
};