1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 2 3IDD_PROPPAGEGENERAL DIALOGEX 0, 0, 246, 228 4STYLE DS_SHELLFONT | WS_CHILD | WS_DISABLED | WS_CAPTION 5CAPTION "General" 6FONT 8, "MS Shell Dlg" 7BEGIN 8 ICON IDI_CPLICON, IDI_CPLICON, 8, 0, 21, 20 9 GROUPBOX "Renderer settings", -1, 5, 25, 230, 90 10 LTEXT "&Renderer:", -1, 15, 42, 37, 10 11 COMBOBOX IDC_RENDERER, 55, 40, 160, 10, WS_TABSTOP | WS_VSCROLL | CBS_DROPDOWNLIST 12 LTEXT "This will override the default settings for your graphics driver! Choose ""Default"" to go back to the original settings.", -1, 15, 60, 210, 40 13 GROUPBOX "Debugging", -1, 5, 125, 230, 90 14 LTEXT "DEBUGCHANNEL:", -1, 15, 142, 65, 10 15 COMBOBOX IDC_DEBUG_OUTPUT, 80, 140, 135, 10, WS_TABSTOP | WS_VSCROLL | CBS_DROPDOWNLIST 16 LTEXT "Enables/disables debug output from opengl32.\n\nWARNING: Choosing ""Set"" or ""Clear"" will overwrite the content of the DEBUGCHANNEL environment variable!", -1, 15, 165, 210, 40 17END 18 19STRINGTABLE 20BEGIN 21 IDS_RENDERER_DEFAULT "System default" 22 IDS_RENDERER_RSWR "ReactOS Software Implementation" 23 IDS_CPLNAME "OpenGL Configuration" 24 IDS_CPLDESCRIPTION "Configures OpenGL renderer." 25 IDS_DEBUG_SET "Set" 26 IDS_DEBUG_CLEAR "Clear" 27 IDS_DEBUG_DNM "Do not modify" 28END 29