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
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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
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
}
is it only me or is "ł" ("Ł") not working?
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.