# HG changeset patch # User Rik # Date 1523754674 25200 # Node ID 65f2015668574be90ef35707cf417e116ddb7454 # Parent dd33fea906f675341ff9eda15d99ce5feb2628a9 Mark missing Variable Editor GUI strings for translation (bug #53526). * variable-editor.cc (color_names): Mark all strings in function for translation. diff -r dd33fea906f6 -r 65f201566857 libgui/src/variable-editor.cc --- a/libgui/src/variable-editor.cc Sat Apr 14 17:56:01 2018 -0700 +++ b/libgui/src/variable-editor.cc Sat Apr 14 18:11:14 2018 -0700 @@ -1254,11 +1254,11 @@ { QStringList output; - output << "Foreground"; - output << "Background"; - output << "Selected Foreground"; - output << "Selected Background"; - output << "Alternate Background"; + output << tr("Foreground"); + output << tr("Background"); + output << tr("Selected Foreground"); + output << tr("Selected Background"); + output << tr("Alternate Background"); return output; }