1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 2 3IDD_POWER_METER DIALOGEX 0, 0, 252, 218 4STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU 5EXSTYLE WS_EX_CONTEXTHELP 6CAPTION "Power Meter" 7FONT 8, "MS Shell Dlg" 8BEGIN 9 CONTROL "Power status", 1001, "Button", BS_GROUPBOX | WS_CHILD | WS_VISIBLE, 9, 20, 234, 189 10 CONTROL "&Always show icon on the taskbar.", 1002, "Button", BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP, 6, 6, 120, 10 11 CONTROL "Show details for each &battery.", 1003, "Button", BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP, 135, 6, 120, 8 12 CONTROL "", 1000, "Static", SS_LEFT | WS_CHILD | WS_GROUP, 11, 29, 229, 178 13END 14 15STRINGTABLE 16BEGIN 17 //Power related strings 18 IDS_PWR_PROPERTIES "&Adjust Power Properties" 19 IDS_PWR_METER "&Open Power Meter" 20 IDS_PWR_RUN "shell32.dll,Control_RunDLL PowerCfg.cpl" 21 IDS_PWR_PERCENT_REMAINING "%.2f%% remaining" 22 IDS_PWR_CHARGING "%.2f%% and charging" 23 IDS_PWR_UNKNOWN_REMAINING "Unknown remaining" 24 IDS_PWR_AC "On AC power" 25 IDS_PWR_HOURS_REMAINING "%1!u!:%2!02u! hours (%3!u!%%) remaining" 26 IDS_PWR_MINUTES_REMAINING "%1!u! min (%2!u!%%) remaining" 27 28 //Hotplug related strings 29 IDS_HOTPLUG_REMOVE_1 "Safely Remove Hardware" 30 IDS_HOTPLUG_REMOVE_2 "&Safely Remove Hardware" 31 IDS_HOTPLUG_REMOVE_3 "Safely remove %s" 32 IDS_HOTPLUG_RUN "shell32.dll,Control_RunDLL hotplug.dll" 33 IDS_HOTPLUG_COMMA ", " 34 IDS_HOTPLUG_DRIVE " - Drive(%s)" 35 IDS_HOTPLUG_DRIVES " - Drives(%s)" 36 IDS_HOTPLUG_A "A:" 37 IDS_HOTPLUG_REQUIRES "This hardware requires ""Safe Removal""" 38 IDS_HOTPLUG_CLICK "Before removing this hardware, click on this icon and select the hardware you want to remove." 39 40 //Volume related strings 41 IDS_VOL_VOLUME "Volume" 42 IDS_VOL_ADJUST "&Adjust Audio Properties" 43 IDS_VOL_OPEN "&Open Volume Control" 44 IDS_VOL_RUN "SNDVOL32.EXE" 45 IDS_VOL_MUTED "Volume (muted)" 46 47 //Keyboard-Mouse related strings 48 IDS_KEYS_STICKY "StickyKeys" 49 IDS_KEYS_MOUSE "MouseKeys" 50 IDS_KEYS_FILTER "FilterKeys" 51END 52