comparison libgui/src/variable-editor.cc @ 25249:65f201566857 stable

Mark missing Variable Editor GUI strings for translation (bug #53526). * variable-editor.cc (color_names): Mark all strings in function for translation.
author Rik <rik@octave.org>
date Sat, 14 Apr 2018 18:11:14 -0700
parents 07bddddc5856
children d56ff4681065 7a507e71d922
comparison
equal deleted inserted replaced
25248:dd33fea906f6 25249:65f201566857
1252 QStringList 1252 QStringList
1253 variable_editor::color_names (void) 1253 variable_editor::color_names (void)
1254 { 1254 {
1255 QStringList output; 1255 QStringList output;
1256 1256
1257 output << "Foreground"; 1257 output << tr("Foreground");
1258 output << "Background"; 1258 output << tr("Background");
1259 output << "Selected Foreground"; 1259 output << tr("Selected Foreground");
1260 output << "Selected Background"; 1260 output << tr("Selected Background");
1261 output << "Alternate Background"; 1261 output << tr("Alternate Background");
1262 1262
1263 return output; 1263 return output;
1264 } 1264 }
1265 1265
1266 void 1266 void