X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fgpu_config_panel.cc;fp=src%2Fwx%2Fgpu_config_panel.cc;h=aefac801c93453d720671167d252e71ce51e1dfe;hb=28c4d55d7e7242c1a414a74751abe29b75e6505f;hp=a9207ee3c1c0560eb65b493832e2aa9732a4ae63;hpb=0f6f95c00b4ef0301447e739e6b8915bf085c300;p=dcpomatic.git diff --git a/src/wx/gpu_config_panel.cc b/src/wx/gpu_config_panel.cc index a9207ee3c..aefac801c 100644 --- a/src/wx/gpu_config_panel.cc +++ b/src/wx/gpu_config_panel.cc @@ -120,22 +120,22 @@ GPUPage::setup() { auto config = Config::instance(); - _enable_gpu = new CheckBox(_panel, _("Enable GPU Acceleration")); + _enable_gpu = new CheckBox(_panel, _("Enable GPU acceleration")); _panel->GetSizer()->Add(_enable_gpu, 0, wxALL | wxEXPAND, _border); wxFlexGridSizer* table = new wxFlexGridSizer(2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); table->AddGrowableCol(1, 1); _panel->GetSizer()->Add(table, 1, wxALL | wxEXPAND, _border); - add_label_to_sizer(table, _panel, _("Acceleration Binary Folder"), true, 0, wxLEFT | wxLEFT | wxALIGN_CENTRE_VERTICAL); + add_label_to_sizer(table, _panel, _("Acceleration binary folder"), true, 0, wxLEFT | wxLEFT | wxALIGN_CENTRE_VERTICAL); _binary_location = new wxDirPickerCtrl(_panel, wxDD_DIR_MUST_EXIST); table->Add(_binary_location, 1, wxEXPAND); - add_label_to_sizer(table, _panel, _("GPU Selection"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); + add_label_to_sizer(table, _panel, _("GPU selection"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); _gpu_list_control = new GPUList(_panel); table->Add(_gpu_list_control, 1, wxEXPAND); - add_label_to_sizer(table, _panel, _("License Server"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); + add_label_to_sizer(table, _panel, _("License server"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); _server = new wxTextCtrl(_panel, wxID_ANY); table->Add(_server, 1, wxEXPAND | wxALL);