Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. ASP.NET
  4. Could you help about internacionalization?

Could you help about internacionalization?

Scheduled Pinned Locked Moved ASP.NET
helptutorialquestion
9 Posts 4 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B Offline
    B Offline
    BROCA BRAZIL
    wrote on last edited by
    #1

    Hi, I've to do a Intranet software that can be used in whole world, so I need some recurse that could translate my application in english, for example, to Portuguese - Brazil. Does anybody can help me? Rogerio Meneghelo Apezzatto

    K M 2 Replies Last reply
    0
    • B BROCA BRAZIL

      Hi, I've to do a Intranet software that can be used in whole world, so I need some recurse that could translate my application in english, for example, to Portuguese - Brazil. Does anybody can help me? Rogerio Meneghelo Apezzatto

      K Offline
      K Offline
      ksanju1000
      wrote on last edited by
      #2

      Hi I was also trying to implement internatinalization in java. But it was difficult bec in java char support 2 byte and in c++ one byte.I just got some tricky solution for that. But i had the preveous code written in VC++. I just made the dll of VC++ and called in java through JNI interface .when the user enters the english text in the text field, save it in text file and dll of vc++ program reads english text from text file. and corresspoding out put is saved in the text file. and print it in the internet explorer. I will suggest you to do the same thing in Dot net application if you have previously written code in VC++ or some other lanagugees.You make the com component and call it in dot net application and display it in browser. If you need further clearification ,you can tell me. Regards sanjeev Etwine INC.

      B A 2 Replies Last reply
      0
      • K ksanju1000

        Hi I was also trying to implement internatinalization in java. But it was difficult bec in java char support 2 byte and in c++ one byte.I just got some tricky solution for that. But i had the preveous code written in VC++. I just made the dll of VC++ and called in java through JNI interface .when the user enters the english text in the text field, save it in text file and dll of vc++ program reads english text from text file. and corresspoding out put is saved in the text file. and print it in the internet explorer. I will suggest you to do the same thing in Dot net application if you have previously written code in VC++ or some other lanagugees.You make the com component and call it in dot net application and display it in browser. If you need further clearification ,you can tell me. Regards sanjeev Etwine INC.

        B Offline
        B Offline
        BROCA BRAZIL
        wrote on last edited by
        #3

        Actually you have a DLL that make the translation from a specific word pasted by the user, am I right? I need to translate every page from my site without make again the whole site! Anyway, thank you very much! If you have more tips, please, tell me. Regards. Rogerio Meneghelo Apezzatto

        K 1 Reply Last reply
        0
        • B BROCA BRAZIL

          Hi, I've to do a Intranet software that can be used in whole world, so I need some recurse that could translate my application in english, for example, to Portuguese - Brazil. Does anybody can help me? Rogerio Meneghelo Apezzatto

          M Offline
          M Offline
          minhpc_bk
          wrote on last edited by
          #4

          Hi there, If you want to develop an application which support multiple languages, you may need to read the documentations about the globalization in an application. Basically, there are several different approaches that you can use or you can choose a combination of them: + You create a seperate application for each supported culture, then detect the user's culture and redirect him to the appropriate version. + You create a single application, then detect the user's culture and adjust the output accordingly. + You can use satellite assemblies, it means that you simply create a single application, and save culture-dependent text in resource files which are compiled to assemblies. At runtime, you can detect the user's culture and load the text from the appropriate assembly. For more information, you can read the documentations: Globalizing and Localizing Applications[^] Developing World-Ready Applications[^] Ronaldinho ;P

          K 1 Reply Last reply
          0
          • K ksanju1000

            Hi I was also trying to implement internatinalization in java. But it was difficult bec in java char support 2 byte and in c++ one byte.I just got some tricky solution for that. But i had the preveous code written in VC++. I just made the dll of VC++ and called in java through JNI interface .when the user enters the english text in the text field, save it in text file and dll of vc++ program reads english text from text file. and corresspoding out put is saved in the text file. and print it in the internet explorer. I will suggest you to do the same thing in Dot net application if you have previously written code in VC++ or some other lanagugees.You make the com component and call it in dot net application and display it in browser. If you need further clearification ,you can tell me. Regards sanjeev Etwine INC.

            A Offline
            A Offline
            Alexandru Savescu
            wrote on last edited by
            #5

            ksanju1000 wrote: But it was difficult bec in java char support 2 byte and in c++ one byte. It's not true. If you use wchar_t instead char then it works. Regards, Alexandru Savescu

            K 1 Reply Last reply
            0
            • B BROCA BRAZIL

              Actually you have a DLL that make the translation from a specific word pasted by the user, am I right? I need to translate every page from my site without make again the whole site! Anyway, thank you very much! If you have more tips, please, tell me. Regards. Rogerio Meneghelo Apezzatto

              K Offline
              K Offline
              ksanju1000
              wrote on last edited by
              #6

              Hi Yes,it searches from dictionary(text file) word by word. If you want to translate single web page then extracts all the words from web page and save it in text file and corresponding result will be stored in text file then print in the web page. You can search program for HTML parser from google. regards sanjeev

              1 Reply Last reply
              0
              • A Alexandru Savescu

                ksanju1000 wrote: But it was difficult bec in java char support 2 byte and in c++ one byte. It's not true. If you use wchar_t instead char then it works. Regards, Alexandru Savescu

                K Offline
                K Offline
                ksanju1000
                wrote on last edited by
                #7

                Dear Alexandru , I used wchar_t instead of char bec you will get compile time error I did this project two years ago. I was converting English to HINDI. regards sanjeev

                1 Reply Last reply
                0
                • M minhpc_bk

                  Hi there, If you want to develop an application which support multiple languages, you may need to read the documentations about the globalization in an application. Basically, there are several different approaches that you can use or you can choose a combination of them: + You create a seperate application for each supported culture, then detect the user's culture and redirect him to the appropriate version. + You create a single application, then detect the user's culture and adjust the output accordingly. + You can use satellite assemblies, it means that you simply create a single application, and save culture-dependent text in resource files which are compiled to assemblies. At runtime, you can detect the user's culture and load the text from the appropriate assembly. For more information, you can read the documentations: Globalizing and Localizing Applications[^] Developing World-Ready Applications[^] Ronaldinho ;P

                  K Offline
                  K Offline
                  ksanju1000
                  wrote on last edited by
                  #8

                  hi Ronaldinho, Thanks Can you send me small program for Internalization. I have not tried in ASP.net Regards sanjeev Email: ksanju1000@indiatimes.com Etwine INC

                  M 1 Reply Last reply
                  0
                  • K ksanju1000

                    hi Ronaldinho, Thanks Can you send me small program for Internalization. I have not tried in ASP.net Regards sanjeev Email: ksanju1000@indiatimes.com Etwine INC

                    M Offline
                    M Offline
                    minhpc_bk
                    wrote on last edited by
                    #9

                    You can see examples in the documentations provided in my post, or you can take a look at an example posted on CP: http://www.codeproject.com/aspnet/localization_websites.asp[^] In addition, you can check out this site which surely can give you some good info. http://www.microsoft.com/globaldev/default.mspx[^]

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • World
                    • Users
                    • Groups