Translate radzen components

I cannot understand how to translate certain components.
For example: if I add a Label I can find the relevant string in server/Pages/page-name.it.resx

Put here my localized label

But if I enter the html component I cannot find any new section...
I expected to find a data name="html0.Text" but this is not the case.

The same happens, for example, with tooltips.
If I enter some tooltips I cannot find any relevant string in the language .resx file...

There is no default resx generation for generic HTML component. You can add desired resx file to application ignore list, append your own entries and use them similar to other localized strings in Raden designer.

I clicked on 'settings' and added my .resx page
When I click on 'run' the page is NOT re-generated so I think it is OK.
Now I have an html component called 'Welcome' so I added in my .resx file

<data name="Welcome.Text" xml:space="preserve">
    <value>xxxxxxxxxxxxx</value>
</data>

When I restart Radzen (click on 'run') I still see the text in English while I expect to see 'xxxxxxxxxxxx'

Thanks

You’ve missed the second part.

I feel so stupid...
I noticed in my PageName.razor the html entry was rendered AS IS so I changed it similar to other components entries in the following way:

<RadzenHtml Content="@L["html0.Content"]"></RadzenHtml>

But the output message when running Radzen is:

System.InvalidOperationException: Object of type 'Radzen.Blazor.RadzenHtml' does not have a property matching the name 'Content'.

In the Radzen documentation page

I see HTML component has only two properties: Name and Content

Or, maybe, this is the solution

i.e. HTML cannot be translated?