Internacionalization

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Paulo

    Internacionalization

    What is the best approach? Using DB wich stores the translation of the
    variable used on site for each language?

    LANGUAGE_CODE, VARIABLE, TRANSLATION
    1,'CustomerWord ','Customer'
    2,'CustomerWord ','Cliente' - 'BR Portuguese

    Thanks


  • =?Utf-8?B?T2xkIFBlZGFudA==?=

    #2
    RE: Internacionaliz ation



    "Paulo" wrote:
    What is the best approach? Using DB wich stores the translation of the
    variable used on site for each language?
    >
    LANGUAGE_CODE, VARIABLE, TRANSLATION
    1,'CustomerWord ','Customer'
    2,'CustomerWord ','Cliente' - 'BR Portuguese
    That will work, but it will be very, very, very slow.

    Unless this is for a "toy" site that doesn't get very many hits, it would be
    a bad way to go.

    You need an all-in-memory solution.

    Comment

    • Paulo

      #3
      Re: Internacionaliz ation


      "Old Pedant" <OldPedant@disc ussions.microso ft.comescreveu na mensagem
      news:CE2880FC-E82B-4A26-8A18-FB148ACE0583@mi crosoft.com...
      >
      >
      "Paulo" wrote:
      >
      >What is the best approach? Using DB wich stores the translation of the
      >variable used on site for each language?
      >>
      >LANGUAGE_COD E, VARIABLE, TRANSLATION
      >1,'CustomerWor d','Customer'
      >2,'CustomerWor d','Cliente' - 'BR Portuguese
      >
      That will work, but it will be very, very, very slow.
      >
      Unless this is for a "toy" site that doesn't get very many hits, it would
      be
      a bad way to go.
      >
      You need an all-in-memory solution.
      What is a "all-in-memory solution"? Show me examples please!


      Comment

      Working...