Don't mark internal string for translation so we don't break string

2003-01-06  Seth Nickell  <snickell@stanford.edu>

	* gnome-theme-manager.c: (add_custom_row_to_meta_theme):

	Don't mark internal string for translation so we don't
	break string freeze.
This commit is contained in:
Seth Nickell 2003-01-06 23:14:04 +00:00 committed by Seth Nickell
parent fb99ca6ccf
commit 8fe3e80954
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2003-01-06 Seth Nickell <snickell@stanford.edu>
* gnome-theme-manager.c: (add_custom_row_to_meta_theme):
Don't mark internal string for translation so we don't
break string freeze.
Mon Jan 6 10:55:39 2003 Jonathan Blandford <jrb@gnome.org>
* gnome-theme-manager.c (setup_dialog): fix default image.

View file

@ -632,7 +632,7 @@ add_custom_row_to_meta_theme (const gchar *current_gtk_theme,
custom_meta_theme_info.gtk_theme_name = g_strdup (current_gtk_theme);
custom_meta_theme_info.metacity_theme_name = g_strdup (current_window_theme);
custom_meta_theme_info.icon_theme_name = g_strdup (current_icon_theme);
custom_meta_theme_info.name = g_strdup (_("Custom Theme\n"));
custom_meta_theme_info.name = g_strdup ("Custom Theme");
for (valid = gtk_tree_model_get_iter_first (model, &iter);
valid;