From c322a42ea248c0dc1755830b4e541a03af1d7ec7 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Tue, 1 Feb 2011 13:11:06 +0000 Subject: [PATCH] display: Rename rotation options So it's easier to preview in one's head. https://bugzilla.gnome.org/show_bug.cgi?id=563144 --- panels/display/xrandr-capplet.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/panels/display/xrandr-capplet.c b/panels/display/xrandr-capplet.c index 7cac497f7..c873fd91c 100644 --- a/panels/display/xrandr-capplet.c +++ b/panels/display/xrandr-capplet.c @@ -337,9 +337,9 @@ rebuild_rotation_combo (App *app) } RotationInfo; static const RotationInfo rotations[] = { { GNOME_RR_ROTATION_0, N_("Normal") }, - { GNOME_RR_ROTATION_90, N_("Left") }, - { GNOME_RR_ROTATION_270, N_("Right") }, - { GNOME_RR_ROTATION_180, N_("Upside Down") }, + { GNOME_RR_ROTATION_90, N_("Anti-Clockwise") }, + { GNOME_RR_ROTATION_270, N_("Clockwise") }, + { GNOME_RR_ROTATION_180, N_("180 Degrees") }, }; const char *selection; GnomeRRRotation current;