reworded Monitor Resolution section as suggested in bug #398851.

2007-01-21  Sven Neumann  <sven@gimp.org>

	* app/dialogs/preferences-dialog.c: reworded Monitor Resolution
	section as suggested in bug #398851.


svn path=/trunk/; revision=21746
This commit is contained in:
Sven Neumann 2007-01-21 13:17:04 +00:00 committed by Sven Neumann
parent 65950be141
commit d7eb0b7b78
2 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2007-01-21 Sven Neumann <sven@gimp.org>
* app/dialogs/preferences-dialog.c: reworded Monitor Resolution
section as suggested in bug #398851.
2007-01-21 Raphaël Quinet <raphael@gimp.org>
* app/display/gimpstatusbar.[ch]

View file

@ -2191,7 +2191,7 @@ prefs_dialog_new (Gimp *gimp,
_("Check _size:"),
GTK_TABLE (table), 1, size_group);
vbox2 = prefs_frame_new (_("Get Monitor Resolution"),
vbox2 = prefs_frame_new (_("Monitor Resolution"),
GTK_CONTAINER (vbox), FALSE);
{
@ -2233,8 +2233,7 @@ prefs_dialog_new (Gimp *gimp,
gimp_get_screen_resolution (NULL, &xres, &yres);
str = g_strdup_printf (_("From _windowing system "
"(currently %d × %d ppi)"),
str = g_strdup_printf (_("_Detect automatically (currently %d × %d ppi)"),
ROUND (xres), ROUND (yres));
button = gtk_radio_button_new_with_mnemonic (group, str);
@ -2254,7 +2253,7 @@ prefs_dialog_new (Gimp *gimp,
G_CALLBACK (prefs_resolution_source_callback),
config);
button = gtk_radio_button_new_with_mnemonic (group, _("_Manually"));
button = gtk_radio_button_new_with_mnemonic (group, _("_Enter manually"));
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (button));
gtk_box_pack_start (GTK_BOX (vbox2), button, FALSE, FALSE, 0);
gtk_widget_show (button);