code page nostale

10/08/2018 13:27 0Lucifer0#1
hello, i'm currently working on the multi culture system for noscore. Is there anyone who know code pages for other countries ?
the only one i know for the moment is FR = windows-1252
Code:
     
case RegionType.FR:
     return CodePagesEncodingProvider.Instance.GetEncoding(1252);
case RegionType.EN:
case RegionType.DE:
case RegionType.IT:
case RegionType.PL:
case RegionType.ES:
case RegionType.CS:
case RegionType.TR:
default:
     return Encoding.Default;
10/08/2018 14:01 AfterLife-#2
As wikipedia (https://en.wikipedia.org/wiki/Code_page) states:




1254: TR
1252: EN, ES
1250: DE, IT, PL, CS (Czech?)
10/08/2018 17:13 FI0w#3
Quote:
Originally Posted by AfterLife- View Post
As wikipedia (https://en.wikipedia.org/wiki/Code_page) states:




1254: TR
1252: EN, ES
1250: DE, IT, PL, CS (Czech?)
its true i mean the encoding and i really think its czech but it should be cz? xD
10/08/2018 20:57 0Lucifer0#4
Quote:
Originally Posted by AfterLife- View Post
As wikipedia (https://en.wikipedia.org/wiki/Code_page) states:




1254: TR
1252: EN, ES
1250: DE, IT, PL, CS (Czech?)
Thank you will go with those
Also yes cz short code is cs-cz [Only registered and activated users can see links. Click Here To Register...]
https://en.m.wikipedia.org/wiki/Czech–Slovak_languages
07/03/2020 18:17 Rajmund1337#5
Quote:
Originally Posted by 0Lucifer0 View Post
hello, i'm currently working on the multi culture system for noscore. Is there anyone who know code pages for other countries ?
the only one i know for the moment is FR = windows-1252
Code:
     
case RegionType.FR:
     return CodePagesEncodingProvider.Instance.GetEncoding(1252);
case RegionType.EN:
case RegionType.DE:
case RegionType.IT:
case RegionType.PL:
case RegionType.ES:
case RegionType.CS:
case RegionType.TR:
default:
     return Encoding.Default;
I know it is old thread but

Where you put encoding? in what place of code i should use it? i want read all special characters in my language but i see "?"
07/03/2020 22:06 0Lucifer0#6
In the encryption and decryption. Also if you read correctly that the code before actually adding code page it’s not a copy pasta ready thing...