1999-07-14 Jonathan Blandford <jrb@redhat.com>

* capplets/mime-type/edit-window.c (initialize_main_win_vals):
	Patch from Fabrice.Bellet@imag.fr for i18n and portability.

1999-07-08    <jrb@redhat.com>

	* mouse-properties.c (mouse_apply): Added patch by Tom Tromey
	<tromey@cygnus.com> to handle left-handed wheeled mice.  Fixed
	Authors file, too.
This commit is contained in:
Jonathan Blandford 1999-07-14 19:33:35 +00:00
parent 9064ba0b11
commit 1d74709b95
3 changed files with 4 additions and 3 deletions

View File

@ -235,7 +235,7 @@ initialize_main_win_vals (void)
gtk_widget_show_all (GNOME_DIALOG (main_win->window)->vbox);
/* we initialize everything */
title = g_strconcat ("Set actions for ", mi->mime_type, NULL);
title = g_strconcat (_("Set actions for "), mi->mime_type, NULL);
gtk_window_set_title (GTK_WINDOW (main_win->window), title);
g_free (title);
if (mi->ext[0]) {

View File

@ -351,8 +351,8 @@ get_mime_clist (void)
GtkWidget *retval;
gchar *titles[2];
titles[0] = "Mime Type";
titles[1] = "Extension";
titles[0] = _("Mime Type");
titles[1] = _("Extension");
retval = gtk_scrolled_window_new (NULL, NULL);
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (retval),
GTK_POLICY_AUTOMATIC,

View File

@ -1,5 +1,6 @@
#include "new-mime-window.h"
#include "capplet-widget.h"
#include <config.h>
static GtkWidget *add_dialog = NULL;
extern GtkWidget *capplet;