summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Untz <vuntz@gnome.org>2008-12-12 14:27:43 +0000
committerVincent Untz <vuntz@src.gnome.org>2008-12-12 14:27:43 +0000
commit2733dbdb822c0af6356fd2c9761b6a8860d7e5ef (patch)
tree9f3a3fec37e5eb2a7e219cf6445805ca4a46d3d7
parent80b98a84049b9294037c93251b75d82612df79cb (diff)
downloadgnome-desktop-2733dbdb822c0af6356fd2c9761b6a8860d7e5ef.tar.gz
fix translator comments, to really fix bug #563831.
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. svn path=/trunk/; revision=5329
-rw-r--r--libgnome-desktop/ChangeLog6
-rw-r--r--libgnome-desktop/gnome-rr-config.c6
-rw-r--r--libgnome-desktop/gnome-rr.c6
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,