Skip to content

Commit 59c3abc

Browse files
Apply suggestions from code review
Co-authored-by: Dmitry Eliseev <dmitry.eliseev@devexpress.com>
1 parent 2a41842 commit 59c3abc

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ assign the language code to the [`Language`](https://docs.devexpress.com/VCL/dxR
3737

3838
```delphi
3939
dxReport1: TdxReport;
40-
// Switch to German Localization
40+
// Switch Report UI to German
4141
dxReport1.Language := 'de-DE'
4242
```
4343

README2.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77

88
# DevExpress VCL Reports - Localize the Report Viewer and Report Designer
99

10-
This example localizes DevExpress VCL Reports components. Delphi and C++ Builder projects are included.
10+
This example localizes DevExpress VCL Reports components.
1111

12-
The [DevExpress Reporting Platform](https://docs.devexpress.com/VCL/405469/ExpressReports/vcl-reports) fully supports UI localization.
12+
The [DevExpress Reporting Platform](https://docs.devexpress.com/VCL/405469/ExpressReports/vcl-reports) has full support for UI localization.
1313
The localization example in this repository gives users a choice between English (default) and German (localized) versions of two built-in dialogs:
1414
[Report Viewer](https://docs.devexpress.com/XtraReports/401850/web-reporting/web-document-viewer) and
1515
[Report Designer](https://docs.devexpress.com/XtraReports/119176/web-reporting/web-end-user-report-designer).
@@ -21,8 +21,8 @@ The example includes projects for both [Delphi](./Delphi) and [C++ Builder](./CP
2121

2222
- Microsoft Windows 10 or newer
2323
- Embarcadero RAD Studio IDE 12.3 (Athens) or newer (Community Edition is not supported)
24+
- The [EdgeView2 SDK](https://getitnow.embarcadero.com/edgeview2-sdk/) package installed from GetIt
2425
- DevExpress VCL Components v25.2.3 or newer
25-
- EdgeView2SDK (installed via GetIt Package Manager)
2626

2727
## Implementation Details
2828

@@ -37,16 +37,19 @@ do the following:
3737
1. Extract downloaded files to a `Localization` folder next to your compiled application executable.
3838
Note that projects in this repository output their executables to the same location.
3939
This allows both projects to use the same localization files.
40-
1. Assign a language code to the
40+
1. Assign a language identifier (also known as [locale][1] or [culture identifier][2]) to the
4141
[`TdxReport.Language`](https://docs.devexpress.com/VCL/dxReport.TdxReport.Language)
42-
property to switch the Report Designer and Report Viewer interface to a specific language.
42+
property to switch the Report Designer and Report Viewer UI to a specific language:
4343

4444
```delphi
4545
dxReport1: TdxReport;
46-
// Switch to German Localization
46+
// Switch Report UI to German
4747
dxReport1.Language := 'de-DE'
4848
```
4949
50+
[1]: https://learn.microsoft.com/en-us/globalization/reference/glossary#locale
51+
[2]: https://learn.microsoft.com/en-us/dotnet/fundamentals/runtime-libraries/system-globalization-cultureinfo#culture-names-and-identifiers
52+
5053
For a more detailed step-by-step guide to localizing your applications, refer to the following help topic:
5154
[Report Viewer and Designer UI Localization](https://docs.devexpress.com/VCL/405598/ExpressReports/localization/vcl-report-viewer-and-designer-localization).
5255

0 commit comments

Comments
 (0)