Localisation of c# Windows Application
-
:confused:Hai Guys, I have problem in localizing my application to some other language such as japanese, chinese,etc. Your Ideas about implementing localisation in c# windows application is welcomed and appreciated.
VijayaRam
Please share your problem. Regards, Bhupi Bhai.
-
:confused:Hai Guys, I have problem in localizing my application to some other language such as japanese, chinese,etc. Your Ideas about implementing localisation in c# windows application is welcomed and appreciated.
VijayaRam
Hi, To implement the localization we need to do 1) Create .resx file for each language. 2) Generate .resource file from the .resx file using resgen tool. 3) Create the ResourceManger in your application. 4) The .resx files store the language strings as key value. So read the language string using the Getstring method of ResourceManager passig key value as input parameter. Guess this will help you. Pani
-
Hi, To implement the localization we need to do 1) Create .resx file for each language. 2) Generate .resource file from the .resx file using resgen tool. 3) Create the ResourceManger in your application. 4) The .resx files store the language strings as key value. So read the language string using the Getstring method of ResourceManager passig key value as input parameter. Guess this will help you. Pani