GNOME Bugzilla – Bug 306854
RFE: conversion option for CP932, EUC_JP_MS
Last modified: 2005-06-08 08:36:55 UTC
In most of current linux has the following additional Japanese iconv modules to have text compatibility with MS-Windows. - CP932 - EUCJP-MS These conversion option will improve handling Window's text in gedit. Please check following patch. diff -aNru gedit.org/gedit/gedit-encodings.c gedit/gedit/gedit-encodings.c --- gedit.org/gedit/gedit-encodings.c 2005-02-28 01:12:39.000000000 +0900 +++ gedit/gedit/gedit-encodings.c 2005-06-08 18:15:02.487747760 +0900 @@ -81,6 +81,8 @@ GEDIT_ENCODING_CP_866, GEDIT_ENCODING_EUC_JP, + GEDIT_ENCODING_EUC_JP_MS, + GEDIT_ENCODING_CP932, GEDIT_ENCODING_EUC_KR, GEDIT_ENCODING_EUC_TW, @@ -195,6 +197,11 @@ { GEDIT_ENCODING_EUC_JP, "EUC-JP", N_("Japanese") }, + { GEDIT_ENCODING_EUC_JP_MS, + "EUC-JP-MS", N_("Japanese") }, + { GEDIT_ENCODING_CP932, + "CP932", N_("Japanese") }, + { GEDIT_ENCODING_EUC_KR, "EUC-KR", N_("Korean") }, { GEDIT_ENCODING_EUC_TW,
You alredy filed this same bug in #306854. For future reference note that patches should be attached (with "Create a New Attachment") instead of pasted in the comment. *** This bug has been marked as a duplicate of 306847 ***