How to rename text Google Calendar – ICS text on Event Page

To rename text Google Calendar – ICS text

image

You can use this code to Website Tools > Custom CSS.

a.eventlist-meta-export-google {
    visibility: hidden;
    font-size: 0;
}
a.eventlist-meta-export-google:before {
    visibility: visible;
    content: "New Google text";
    font-size: 16px;
}
a.eventlist-meta-export-ical {
    visibility: hidden;
}
a.eventlist-meta-export-ical:before {
    visibility: visible;
    content: "new ICS text";
}

Result

image