diff options
author | Will Andrews <will@FreeBSD.org> | 2000-06-17 00:09:33 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-06-17 00:09:33 +0000 |
commit | 55b3a89a5dc1e5d21b5b95046ad7991b0025987c (patch) | |
tree | 416b7292dcf80421c018902ef4b48b2b0b4d292c /x11-fm | |
parent | ce2feffa5c14f7f8552190efb9d77dcec41d3987 (diff) | |
download | ports-55b3a89a5dc1e5d21b5b95046ad7991b0025987c.tar.gz ports-55b3a89a5dc1e5d21b5b95046ad7991b0025987c.zip |
Add i18n support.
Submitted by: Clive Lin <clive@CirX.ORG>
No response: MAINTAINER (5 days)
Notes
Notes:
svn path=/head/; revision=29654
Diffstat (limited to 'x11-fm')
-rw-r--r-- | x11-fm/vide/files/patch-ac | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11-fm/vide/files/patch-ac b/x11-fm/vide/files/patch-ac new file mode 100644 index 000000000000..671424e3b8a9 --- /dev/null +++ b/x11-fm/vide/files/patch-ac @@ -0,0 +1,20 @@ +--- src/vide.c.orig Sun Jun 11 19:04:56 2000 ++++ src/vide.c Sun Jun 11 19:06:53 2000 +@@ -224,6 +224,8 @@ + + getcwd(current_dir, sizeof(current_dir)); + ++ /* i18n support */ ++ gtk_set_locale(); + /* Set up handler for sigchild so that we don't get zombies */ + new_action.sa_handler = received_sigchild; + sigemptyset (&new_action.sa_mask); +@@ -243,7 +245,7 @@ + gdk_color_parse ("yellow", &TAG_COLOR); + gdk_color_parse ("wheat", &DRAG_HILIGHT); + COMMAND_TEXT_FONT = +- gdk_font_load ("-adobe-courier-medium-r-normal-*-12-*-*-*-*-*-*-*"); ++ gdk_fontset_load ("-adobe-courier-medium-r-normal-*-12-*-*-*-*-*-*-*,*"); + + cfg.filetypes = NULL; + cfg.bookmarks = NULL; |