diff options
Diffstat (limited to 'scripts/kconfig/gconf.c')
| -rw-r--r-- | scripts/kconfig/gconf.c | 46 | 
1 files changed, 21 insertions, 25 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index cfddddb9c9d7..610c4ab54d76 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c @@ -137,7 +137,7 @@ void init_main_window(const gchar * glade_file)  	xml = glade_xml_new(glade_file, "window1", NULL);  	if (!xml) -		g_error(_("GUI loading failed !\n")); +		g_error("GUI loading failed !\n");  	glade_xml_signal_autoconnect(xml);  	main_wnd = glade_xml_get_widget(xml, "window1"); @@ -233,7 +233,7 @@ void init_left_tree(void)  	column = gtk_tree_view_column_new();  	gtk_tree_view_append_column(view, column); -	gtk_tree_view_column_set_title(column, _("Options")); +	gtk_tree_view_column_set_title(column, "Options");  	renderer = gtk_cell_renderer_toggle_new();  	gtk_tree_view_column_pack_start(GTK_TREE_VIEW_COLUMN(column), @@ -276,7 +276,7 @@ void init_right_tree(void)  	column = gtk_tree_view_column_new();  	gtk_tree_view_append_column(view, column); -	gtk_tree_view_column_set_title(column, _("Options")); +	gtk_tree_view_column_set_title(column, "Options");  	renderer = gtk_cell_renderer_pixbuf_new();  	gtk_tree_view_column_pack_start(GTK_TREE_VIEW_COLUMN(column), @@ -305,7 +305,7 @@ void init_right_tree(void)  	renderer = gtk_cell_renderer_text_new();  	gtk_tree_view_insert_column_with_attributes(view, -1, -						    _("Name"), renderer, +						    "Name", renderer,  						    "text", COL_NAME,  						    "foreground-gdk",  						    COL_COLOR, NULL); @@ -329,7 +329,7 @@ void init_right_tree(void)  						    COL_COLOR, NULL);  	renderer = gtk_cell_renderer_text_new();  	gtk_tree_view_insert_column_with_attributes(view, -1, -						    _("Value"), renderer, +						    "Value", renderer,  						    "text", COL_VALUE,  						    "editable",  						    COL_EDIT, @@ -368,7 +368,7 @@ static void text_insert_help(struct menu *menu)  {  	GtkTextBuffer *buffer;  	GtkTextIter start, end; -	const char *prompt = _(menu_get_prompt(menu)); +	const char *prompt = menu_get_prompt(menu);  	struct gstr help = str_new();  	menu_get_ext_help(menu, &help); @@ -422,7 +422,7 @@ gboolean on_window1_delete_event(GtkWidget * widget, GdkEvent * event,  	if (!conf_get_changed())  		return FALSE; -	dialog = gtk_dialog_new_with_buttons(_("Warning !"), +	dialog = gtk_dialog_new_with_buttons("Warning !",  					     GTK_WINDOW(main_wnd),  					     (GtkDialogFlags)  					     (GTK_DIALOG_MODAL | @@ -436,7 +436,7 @@ gboolean on_window1_delete_event(GtkWidget * widget, GdkEvent * event,  	gtk_dialog_set_default_response(GTK_DIALOG(dialog),  					GTK_RESPONSE_CANCEL); -	label = gtk_label_new(_("\nSave configuration ?\n")); +	label = gtk_label_new("\nSave configuration ?\n");  	gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), label);  	gtk_widget_show(label); @@ -496,7 +496,7 @@ load_filename(GtkFileSelection * file_selector, gpointer user_data)  					     (user_data));  	if (conf_read(fn)) -		text_insert_msg(_("Error"), _("Unable to load configuration !")); +		text_insert_msg("Error", "Unable to load configuration !");  	else  		display_tree(&rootmenu);  } @@ -505,7 +505,7 @@ void on_load1_activate(GtkMenuItem * menuitem, gpointer user_data)  {  	GtkWidget *fs; -	fs = gtk_file_selection_new(_("Load file...")); +	fs = gtk_file_selection_new("Load file...");  	g_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(fs)->ok_button),  			 "clicked",  			 G_CALLBACK(load_filename), (gpointer) fs); @@ -524,7 +524,7 @@ void on_load1_activate(GtkMenuItem * menuitem, gpointer user_data)  void on_save_activate(GtkMenuItem * menuitem, gpointer user_data)  {  	if (conf_write(NULL)) -		text_insert_msg(_("Error"), _("Unable to save configuration !")); +		text_insert_msg("Error", "Unable to save configuration !");  } @@ -537,7 +537,7 @@ store_filename(GtkFileSelection * file_selector, gpointer user_data)  					     (user_data));  	if (conf_write(fn)) -		text_insert_msg(_("Error"), _("Unable to save configuration !")); +		text_insert_msg("Error", "Unable to save configuration !");  	gtk_widget_destroy(GTK_WIDGET(user_data));  } @@ -546,7 +546,7 @@ void on_save_as1_activate(GtkMenuItem * menuitem, gpointer user_data)  {  	GtkWidget *fs; -	fs = gtk_file_selection_new(_("Save file as...")); +	fs = gtk_file_selection_new("Save file as...");  	g_signal_connect(GTK_OBJECT(GTK_FILE_SELECTION(fs)->ok_button),  			 "clicked",  			 G_CALLBACK(store_filename), (gpointer) fs); @@ -639,7 +639,7 @@ on_set_option_mode3_activate(GtkMenuItem *menuitem, gpointer user_data)  void on_introduction1_activate(GtkMenuItem * menuitem, gpointer user_data)  {  	GtkWidget *dialog; -	const gchar *intro_text = _( +	const gchar *intro_text =   	    "Welcome to gkc, the GTK+ graphical configuration tool\n"  	    "For each option, a blank box indicates the feature is disabled, a\n"  	    "check indicates it is enabled, and a dot indicates that it is to\n" @@ -654,7 +654,7 @@ void on_introduction1_activate(GtkMenuItem * menuitem, gpointer user_data)  	    "option.\n"  	    "\n"  	    "Toggling Show Debug Info under the Options menu will show \n" -	    "the dependencies, which you can then match by examining other options."); +	    "the dependencies, which you can then match by examining other options.";  	dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd),  					GTK_DIALOG_DESTROY_WITH_PARENT, @@ -671,8 +671,8 @@ void on_about1_activate(GtkMenuItem * menuitem, gpointer user_data)  {  	GtkWidget *dialog;  	const gchar *about_text = -	    _("gkc is copyright (c) 2002 Romain Lievin <roms@lpg.ticalc.org>.\n" -	      "Based on the source code from Roman Zippel.\n"); +	    "gkc is copyright (c) 2002 Romain Lievin <roms@lpg.ticalc.org>.\n" +	      "Based on the source code from Roman Zippel.\n";  	dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd),  					GTK_DIALOG_DESTROY_WITH_PARENT, @@ -689,9 +689,9 @@ void on_license1_activate(GtkMenuItem * menuitem, gpointer user_data)  {  	GtkWidget *dialog;  	const gchar *license_text = -	    _("gkc is released under the terms of the GNU GPL v2.\n" +	    "gkc is released under the terms of the GNU GPL v2.\n"  	      "For more information, please see the source code or\n" -	      "visit http://www.fsf.org/licenses/licenses.html\n"); +	      "visit http://www.fsf.org/licenses/licenses.html\n";  	dialog = gtk_message_dialog_new(GTK_WINDOW(main_wnd),  					GTK_DIALOG_DESTROY_WITH_PARENT, @@ -1049,7 +1049,7 @@ static gchar **fill_row(struct menu *menu)  	bzero(row, sizeof(row));  	row[COL_OPTION] = -	    g_strdup_printf("%s %s", _(menu_get_prompt(menu)), +	    g_strdup_printf("%s %s", menu_get_prompt(menu),  			    sym && !sym_has_value(sym) ? "(NEW)" : "");  	if (opt_mode == OPT_ALL && !menu_is_visible(menu)) @@ -1102,7 +1102,7 @@ static gchar **fill_row(struct menu *menu)  		if (def_menu)  			row[COL_VALUE] = -			    g_strdup(_(menu_get_prompt(def_menu))); +			    g_strdup(menu_get_prompt(def_menu));  	}  	if (sym->flags & SYMBOL_CHOICEVAL)  		row[COL_BTNRAD] = GINT_TO_POINTER(TRUE); @@ -1447,10 +1447,6 @@ int main(int ac, char *av[])  	char *env;  	gchar *glade_file; -	bindtextdomain(PACKAGE, LOCALEDIR); -	bind_textdomain_codeset(PACKAGE, "UTF-8"); -	textdomain(PACKAGE); -  	/* GTK stuffs */  	gtk_set_locale();  	gtk_init(&ac, &av);  | 
