0alanxx / subtitleedit

Automatically exported from code.google.com/p/subtitleedit
0 stars 0 forks source link

PAC export, characters missing #190

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Some characters are lost when exporting to PAC format.

File: SRC/Logic/SubtitleFormats/Pac.cs
Line: 150
I added these 4 characters:

0xA8,  // ¿
0xAD,  // ¡
0xA6,  // ª
0xA7   // º

Then, at line 287:
"¿", // 0xA8
"¡", // 0xAD
"ª", // 0xA6
"º", // 0xA7

I also noticed problems with the following characters, but I don't know how to 
find the correct hexadecimal code:
/*
« (Alt+0171)
» (Alt+0187)
³ (Alt+0179) 
“ (Alt+0147)
” (Alt+0148)
‘ (Alt+0145)
’ (Alt+0146)
– (Alt+0150  N-dash)
— (Alt+0151  M-dash)
*/

Original issue reported on code.google.com by adrianbe...@gmail.com on 22 Dec 2013 at 6:33

GoogleCodeExporter commented 8 years ago
thx :)

Should fixed in commit r2316... I hope

Original comment by nikse.dk@gmail.com on 26 Dec 2013 at 6:24