[gnome-control-center] display: Don't translate the resolutions list



commit 905a7b1becba6f49d07083a78573e4b2cf113f19
Author: Bastien Nocera <hadess hadess net>
Date:   Tue Nov 27 11:18:00 2012 +0100

    display: Don't translate the resolutions list
    
    There's no good translation and the string is just too complicated
    without translator comment.

 panels/display/cc-display-panel.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/panels/display/cc-display-panel.c b/panels/display/cc-display-panel.c
index 7a32328..80b1c04 100644
--- a/panels/display/cc-display-panel.c
+++ b/panels/display/cc-display-panel.c
@@ -751,9 +751,9 @@ make_resolution_string (int width, int height)
   }
 
   if (aspect != NULL)
-    return g_strdup_printf (_("%d\342\200\211\303\227\342\200\211%d (%s)"), width, height, aspect);
+    return g_strdup_printf ("%d\342\200\211\303\227\342\200\211%d (%s)", width, height, aspect);
   else
-    return g_strdup_printf (_("%d\342\200\211\303\227\342\200\211%d"), width, height);
+    return g_strdup_printf ("%d\342\200\211\303\227\342\200\211%d", width, height);
 }
 
 static void



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]