After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 306854 - RFE: conversion option for CP932, EUC_JP_MS
RFE: conversion option for CP932, EUC_JP_MS
Status: RESOLVED DUPLICATE of bug 306847
Product: gedit
Classification: Applications
Component: general
git master
Other All
: Normal enhancement
: ---
Assigned To: Gedit maintainers
gedit QA volunteers
Depends on:
Blocks:
 
 
Reported: 2005-06-08 08:31 UTC by Kazuhiko.Maekawa
Modified: 2005-06-08 08:36 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement



Description Kazuhiko.Maekawa 2005-06-08 08:31:23 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,
Comment 1 Paolo Borelli 2005-06-08 08:36:55 UTC
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 ***