Menu

WIN-1250 to ISO-8859-2 - resolution

2006-12-17
2012-11-14
  • Nobody/Anonymous

    Hi,

    if you want to convert windows-1250 to iso-8859-2 (for Polish people) download the newest version of ConvertExt plugin (thank you dv___ ^_^) and install it.
    http://notepad-plus.sourceforge.net/uk/download.php

    After instalation edit file ConvertExt.enc and add code:

    GROUP "Polish"

      TABLE "Default"  // original latin alphabet
      {
        "ąźś"
        "ĄŹŚ"
      }

      TABLE "ISO-8859-2"  // latin alphabet in a reverse order
      {
        "±Ľ¶"
        "ˇ¬¦"
      }

    in Notepad++ select menu: Plugins > ConvertExt > Options > Encoding
    uncheck the 'Disable External Encodings' option.

    After that select menu: Plugins > ConvertExt > Polish > Convert to ISO-88059-2

    --
    KJ

     
    • Nobody/Anonymous

      Try to add this code, this should solve the problem:

      GROUP "Polish"

      TABLE "Default" // original latin alphabet
      {
      B9 9F 9C B3
      A5 8F 8C A3   
      }

      TABLE "ISO-8859-2" // latin alphabet in a reverse order
      {
      B1 BC B6 B3   
      A1 AC A6 A3
      }

       
    • Nobody/Anonymous

      is it only me or is "ł" ("Ł") not working?

       
      • DV

        DV - 2007-02-02

        So add this symbol to both of the tables: "as is" in your 1250 table and its representation in 8859-2 to your 8859-2 table! Or better use hex codes of this symbol instead.