1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 2 3#if 0 4IDD_POWER_METER DIALOGEX 0, 0, 252, 218 5STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU 6EXSTYLE WS_EX_CONTEXTHELP 7CAPTION "Power Meter" 8FONT 8, "MS Shell Dlg" 9BEGIN 10 CONTROL "Power status", 1001, BUTTON, BS_GROUPBOX | WS_CHILD | WS_VISIBLE, 9, 20, 234, 189 11 CONTROL "&Always show icon on the taskbar.", 1002, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP, 6, 6, 120, 10 12 CONTROL "Show details for each &battery.", 1003, BUTTON, BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_GROUP | WS_TABSTOP, 135, 6, 120, 8 13 CONTROL "", 1000, STATIC, SS_LEFT | WS_CHILD | WS_GROUP, 11, 29, 229, 178 14END 15#endif 16 17STRINGTABLE 18BEGIN 19 //Power related strings 20 IDS_PWR_PROPERTIES "&Adjust Power Properties" 21 IDS_PWR_METER "&Open Power Meter" 22 IDS_PWR_PERCENT_REMAINING "%1!u!%% remaining" 23 IDS_PWR_CHARGING " (charging)" 24 IDS_PWR_UNKNOWN_REMAINING "Unknown remaining" 25 IDS_PWR_AC "On AC power" 26 IDS_PWR_HOURS_REMAINING "%1!u!:%2!02u! hours (%3!u!%%) remaining" 27 IDS_PWR_MINUTES_REMAINING "%1!u! min (%2!u!%%) remaining" 28 29 //Hotplug related strings 30 IDS_HOTPLUG_REMOVE_1 "Safely Remove Hardware" 31 IDS_HOTPLUG_REMOVE_2 "&Safely Remove Hardware" 32 IDS_HOTPLUG_REMOVE_3 "Safely remove %s" 33 IDS_HOTPLUG_COMMA ", " 34 IDS_HOTPLUG_DRIVE " - Drive(%s)" 35 IDS_HOTPLUG_DRIVES " - Drives(%s)" 36 IDS_HOTPLUG_A "A:" 37 IDS_HOTPLUG_REQUIERES "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_MUTED "Volume (muted)" 45 46 //Keyboard-Mouse related strings 47 IDS_KEYS_STICKY "StickyKeys" 48 IDS_KEYS_MOUSE "MouseKeys" 49 IDS_KEYS_FILTER "FilterKeys" 50END 51