localization

Hi to all,

In the form's properties ,I changed Localizible->True

And language->telugu

when i changed the above two properties,visual studio will add the corresponding resource files.But resource file form1.te.resx is not added.why

Please help me how to generate those resource files




Answer this question

localization

  • Speedster

    I create a new windows application in C# Express. I will by default use american english for all my resources.

    I get a Form1 directly in my project. I will use this as a color dialog for this example. I change the Text of the Form1 to "Color".

    I want to add resources for british english, I change Localizable to True and Language to "English (United Kingdom)"

    I then change the title of the Form1 to "Colour" since I am now working on the british english version of my Form1.

    When I now have saved my project I have two resource files, Form1.resx and Form1.en-GB.resx.

    The default is saved in Form1.resx, you can change Language property to be (default) to work with that resource file.

    If you look in the resource editor of the Form1.en-GB.resx you will see that it only contains what is changed from the default version.



  • Overflow

    Hi,

    Thank you very much.Now i got it.



  • tanis15063

    I have just finished the development of a free tool that I call ResEx, composite, translation friendly resource editor for .NET.
    It is a free tool and I intend to keep it free, containing all current features. A small charge may be applied for some features I may introduce later, just to help me keep supporting and enhancing the project.
    I encourage you to download ResEx and post any suggestions to the discussions page you can find under Help menu of the application. Info and download
    Here is a list of features provided by ResEx:16
    • Translate values side by side (just like the old time classic VB6 resource editor)
    • Lock specific strings so that translator does not translate them
    • Ensure correct translation of strings with placeholders {0} {1} ...
    • View resource strings in tree form
    • Translate resources without Visual Studio IDE
    • Search inside resource files while translating
    Regards

  • mjackson6969

    Hi,

    it does not create the new resource file until you change something on the form. It only saves what is different from the default resource.



  • dcarapic

    Hi,

    Thanks for your valuble information.Can You explain a bit clearly.Then How to generate resource files.



  • localization