I would like to replace the word URL with other text, Example "External Resource"
I have tried several solutions by changing the CSS but it has no effect.
Do you know how I can do it?
Thank you

My code
.svg-file-ext{
position: relative;
visibility: hidden;
}
.svg-file-ext:after {
content: "MY text";
position: absolute;
visibility: visible;
left: 0;
top: 0;
}