File tgif-4.2.5-symbol.patch of Package tgif
--- strtbl.e.original 2011-06-28 04:04:59.000000000 +0200
+++ strtbl.e 2013-03-17 08:54:32.255178350 +0100
@@ -1811,8 +1811,10 @@
#define STID_TWO_XDEF_ONE_IGNORED 2529
#define STID_BAD_ENCODING_TGTWB5_FONT 2530
#define STID_TOOL_GB_CHINESE_KEYPAD 2531
+#define STID_TOOL_SYMBOL_CHOOSER 2532
+#define STID_TOOL_SYMBOL_CHOOSER_NOT_AVAIL 2533
-#define MAXNONCACHEDSTIDS 2532
+#define MAXNONCACHEDSTIDS 2534
extern struct MouseStatusStrRec colorMouseStatus[];
extern struct MouseStatusStrRec hAlignMouseStatus[];
--- strtbl.c.original 2011-06-28 04:04:59.000000000 +0200
+++ strtbl.c 2013-03-17 08:56:20.150489348 +0100
@@ -3663,6 +3663,10 @@
N_("Unsupported font encoding for the '%s' font. The only support font encodings are \"big5\" and \"gb2312.1980\". Please specify a valid zh_TW.big5 or zh_CN.euc font using the %s.%s X default."),
/* STID_TOOL_GB_CHINESE_KEYPAD */
N_("%s - Simplified Chinese (zh_CN.euc) Keypad"),
+ /* STID_TOOL_SYMBOL_CHOOSER */
+ N_("%s - Choose A Symbol"),
+ /* STID_TOOL_SYMBOL_CHOOSER_NOT_AVAIL */
+ N_("Symbol chooser table is not available."),
NULL
};
--- tgisdl.c.original 2011-06-28 04:04:59.000000000 +0200
+++ tgisdl.c 2013-03-17 08:41:06.952499820 +0100
@@ -808,7 +808,7 @@
TidgetSetFocusWindow(None);
if (!colorDisplay || mainVisual->class != TrueColor) {
- sprintf(gszMsgBox, TgLoadString(STID_COLOR_WHEEL_NOT_AVAIL));
+ sprintf(gszMsgBox, TgLoadString(STID_TOOL_SYMBOL_CHOOSER_NOT_AVAIL));
MsgBox(gszMsgBox, TOOL_NAME, INFO_MB);
free(pisdi);
return NULL;
@@ -839,7 +839,7 @@
cur_x = vh_padding+windowPadding;
cur_y = vh_padding+windowPadding;
- sprintf(caption, TgLoadString(STID_TOOL_COLOR_WHEEL), TOOL_NAME);
+ sprintf(caption, TgLoadString(STID_TOOL_SYMBOL_CHOOSER), TOOL_NAME);
pTdgtBase = CreateTdgtBase(parent_win, NULL, ID_INSSYM_DIALOG, 0, 0, 100,
100, vh_padding, vh_padding, (dialogboxUse3DBorder ? TGBS_RAISED :
TGBS_NORMAL), caption);