From 6ce428cd6c31f2203aeabacb774c26c635af58c0 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sat, 11 Feb 2012 10:18:02 -0800 Subject: [PATCH] added some comments for translators --- xoptions.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/xoptions.c b/xoptions.c index 40758fc..820ca81 100644 --- a/xoptions.c +++ b/xoptions.c @@ -799,9 +799,13 @@ BoardOptionsOK (int n) Option boardOptions[] = { { 0, 0, 70, NULL, (void*) &appData.whitePieceColor, "", NULL, TextBox, N_("White Piece Color:") }, { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#FFFFCC", Button, " " }, +/* TRANSLATORS: R = single letter for the color red */ { 1, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("R") }, +/* TRANSLATORS: G = single letter for the color green */ { 2, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("G") }, +/* TRANSLATORS: B = single letter for the color blue */ { 3, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("B") }, +/* TRANSLATORS: D = single letter to make a color darker */ { 4, 1, 0, NULL, (void*) &AdjustColor, NULL, NULL, Button, N_("D") }, { 0, 0, 70, NULL, (void*) &appData.blackPieceColor, "", NULL, TextBox, N_("Black Piece Color:") }, { 1000, 1, 0, NULL, (void*) &DefColor, NULL, (char**) "#202020", Button, " " }, -- 1.7.0.4