[VS2010 / ASP.NET Web Forms]
Hi,
In a report (RDLC), I need to provide localization / globalization in two languages (pt-BR and en-US) to the following elements: - Labels / Signatures (fixed text) - Report Viewer user interface (buttons and tooltips for controls such like search, next, previous, etc.). - formation of fields in accordance with the current culture
What is the best way to achieve this?
To translate fixed captions / labels, I found some solutions that do the manual translation of an XML RDLC definition using the LabelLocID of a TextBox report as helper. But it seems very ugly and hardworking!
To translate the interface, I found solutions that suggested using custom IReportingViewerMessage MSDN . Is there any other solution for this automatically?
To format data fields, I can set the attribute of the report language and text field (in RDLC), but I need to set it according to the current culture. How can i do this?
Thanks!
source share