]> git.sur5r.net Git - glabels/commitdiff
Properly mark strings as no-c-format
authorJim Evins <evins@snaught.com>
Mon, 24 May 2010 14:58:49 +0000 (10:58 -0400)
committerJim Evins <evins@snaught.com>
Mon, 24 May 2010 14:58:49 +0000 (10:58 -0400)
Properly mark non-c-format strings containing '%' as no-c-format.
 - Added "xgettext: no-c-format" comments as suggested by Claude Paroz.
 - Removed backslashes ('\') from my ignorant attempt to address this.

src/color-combo-menu.c

index 7e2bf15599ac9fa6575c003ced877f2a190b0469..ec24fab293750f08650f7dd253b4745ddf1f3f20 100644 (file)
@@ -113,11 +113,16 @@ static ColorTableEntry color_table[] =
         { GL_COLOR (216, 191, 216), N_("Thistle") },
 
         { GL_COLOR (255, 255, 255), N_("White") },
-        { GL_COLOR (230, 230, 230), N_("10\% Gray") },
-        { GL_COLOR (192, 192, 192), N_("25\% Gray") },
-        { GL_COLOR (153, 153, 153), N_("40\% Gray") },
-        { GL_COLOR (128, 128, 128), N_("50\% Gray") },
-        { GL_COLOR (102, 102, 102), N_("60\% Gray") },
+        /* xgettext: no-c-format */
+        { GL_COLOR (230, 230, 230), N_("10% Gray") },
+        /* xgettext: no-c-format */
+        { GL_COLOR (192, 192, 192), N_("25% Gray") },
+        /* xgettext: no-c-format */
+        { GL_COLOR (153, 153, 153), N_("40% Gray") },
+        /* xgettext: no-c-format */
+        { GL_COLOR (128, 128, 128), N_("50% Gray") },
+        /* xgettext: no-c-format */
+        { GL_COLOR (102, 102, 102), N_("60% Gray") },
         { GL_COLOR (  0,   0,   0), N_("Black") },
 
 };