diff options
-rw-r--r-- | libgnome-desktop/ChangeLog | 6 | ||||
-rw-r--r-- | libgnome-desktop/gnome-rr-config.c | 6 | ||||
-rw-r--r-- | libgnome-desktop/gnome-rr.c | 6 |
3 files changed, 12 insertions, 6 deletions
diff --git a/libgnome-desktop/ChangeLog b/libgnome-desktop/ChangeLog index 066469aa..00682cc5 100644 --- a/libgnome-desktop/ChangeLog +++ b/libgnome-desktop/ChangeLog @@ -1,3 +1,9 @@ +2008-12-12 Vincent Untz <vuntz@gnome.org> + + * gnome-rr-config.c: (crtc_assignment_new): + * gnome-rr.c: (gnome_rr_crtc_set_config): fix translator comments, to + really fix bug #563831. + 2008-12-10 Vincent Untz <vuntz@gnome.org> * gnome-rr-config.c: (has_similar_mode): kill since it's unused and diff --git a/libgnome-desktop/gnome-rr-config.c b/libgnome-desktop/gnome-rr-config.c index a25d425e..2b10486a 100644 --- a/libgnome-desktop/gnome-rr-config.c +++ b/libgnome-desktop/gnome-rr-config.c @@ -1521,10 +1521,10 @@ crtc_assignment_new (GnomeRRScreen *screen, GnomeOutputInfo **outputs, GError ** if (width < min_width || width > max_width || height < min_height || height > max_height) { - /* Translators: the "requested", "minimum", and "maximum" words here - * are not keywords; please translate them as usual. - */ g_set_error (error, GNOME_RR_ERROR, GNOME_RR_ERROR_BOUNDS_ERROR, + /* Translators: the "requested", "minimum", and + * "maximum" words here are not keywords; please + * translate them as usual. */ _("required virtual size does not fit available size: " "requested=(%d, %d), minimum=(%d, %d), maximum=(%d, %d)"), width, height, diff --git a/libgnome-desktop/gnome-rr.c b/libgnome-desktop/gnome-rr.c index 17f3841c..a8393455 100644 --- a/libgnome-desktop/gnome-rr.c +++ b/libgnome-desktop/gnome-rr.c @@ -1100,10 +1100,10 @@ gnome_rr_crtc_set_config (GnomeRRCrtc *crtc, if (x + mode->width > info->max_width || y + mode->height > info->max_height) { - /* Translators: the "position", "size", and "maximum" words here are - * not keywords; please translate them as usual. - */ g_set_error (error, GNOME_RR_ERROR, GNOME_RR_ERROR_BOUNDS_ERROR, + /* Translators: the "position", "size", and "maximum" + * words here are not keywords; please translate them + * as usual. */ _("requested position/size for CRTC %d is outside the allowed limit: " "position=(%d, %d), size=(%d, %d), maximum=(%d, %d)"), (int) crtc->id, |