How to localize our data cube
The local cube which has been used in our OlapClient can be localized. Please refer the below steps to know how to localize.
- Translate the data cube to local language. The following are the links which can be refer to localize the data cube.
http://msdn.microsoft.com/en-us/library/ms174798(v=sql.90).aspx
- Set the local language as current culture in the constructor of OlapManager.svc.cs file (Please refer the following code snippet for French).
C#
public OlapManager()
{
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("fr-FR");
string connectionString = "Data Source =localhost;Initial Catalog = Adventure Works DW 2008 SE";//GetConnectionString();
_dataManager = new OlapDataProvider(connectionString);
}