Skip to content

docs(Localization): Improve resx notes #2823

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions globalization/localization.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,14 @@ Create and add localization resource `resx` files to your app, based on the lang

> Update the localization resource files every time you upgrade Telerik UI for Blazor. Otherwise you may see:
>
* Missing or non-translated messages in the UI
* [Exceptions related to missing localization keys](slug:common-kb-null-value-parameter-format)
>
> Telerik supports the default English strings. The `resx` files for the other languages are provided as-is and you can use them as base for implementing your own.
> * Missing or non-translated messages in the UI
> * [Exceptions related to missing localization keys](slug:common-kb-null-value-parameter-format)

> Telerik supports the default English strings. The `resx` files for the other languages exist only for demo purposes and are provided as-is. You can use them as a base for implementing your own.

#### Embed the Resource Files

Make sure the `resx` files are defined as `EmbeddedResource` in the **Build Action** properties or in the `.csproj` file. Normally, the `Designer` file is generated automatically on every `resx` file save.
Define the `resx` files as `EmbeddedResource` in the **Build Action** properties or in the `.csproj` file. Normally, the `Designer` file is generated automatically on every `resx` file save.

>caption Sample resource file configuration in the .csproj file

Expand Down
Loading