1LANGUAGE LANG_HEBREW, SUBLANG_DEFAULT 2 3/* Dialog */ 4IDD_GUI DIALOGEX 0, 0, 240, 255 5STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 6EXSTYLE WS_EX_LAYOUTRTL 7CAPTION "כיבוי מרחוק" 8FONT 8, "MS Shell Dlg" 9BEGIN 10 DEFPUSHBUTTON "אישור", IDC_OK, 125, 232, 50, 14 11 PUSHBUTTON "ביטול", IDC_CANCEL, 178, 232, 50, 14 12 LTEXT "מחשבים:", IDC_STATIC, 9, 9, 35, 36 13 LISTBOX IDC_COMPUTER_LIST, 8, 19, 162, 55 14 PUSHBUTTON "הוסף...", IDC_ADD_SYSTEM, 179, 19, 50, 14 15 PUSHBUTTON "הסר", IDC_REMOVE_SYSTEM, 179, 36, 50, 14, WS_DISABLED 16 PUSHBUTTON "סייר...", IDC_BROWSE_SYSTEM, 179, 53, 50, 14 17 LTEXT "פעולות", IDC_ACTION, 11, 81, 20, 14 18 COMBOBOX IDC_ACTION_TYPE, 37, 79, 129, 14, WS_TABSTOP | CBS_DROPDOWN 19 CHECKBOX "הזהר משתמשים", IDC_WARN_USERS, 167, 78, 68, 14, BS_AUTOCHECKBOX | WS_TABSTOP 20 LTEXT "הצג אזהרה ל-", IDC_SHOW_WARN_ONE, 11, 99, 65, 14 21 EDITTEXT IDC_SHOW_WARN, 78, 97, 41, 14 22 LTEXT "שניה/ות", IDC_SHOW_WARN_TWO, 124, 99, 32, 10 23 GROUPBOX "מעקב אירועי כיבוי", IDC_STATIC, 5, 114, 224, 114 24 LTEXT "סיבה:", IDC_STATIC, 16, 130, 27, 8 25 CHECKBOX "מתוכנן...", IDC_PLANNED, 175, 130, 43, 12, BS_AUTOCHECKBOX | WS_TABSTOP 26 COMBOBOX IDC_REASON_CODE, 17, 142, 198, 13, WS_TABSTOP | CBS_DROPDOWN 27 LTEXT "הערה:", IDC_COMMENT_CAPTION, 16, 159, 38, 8 28 EDITTEXT IDC_COMMENT_TEXT, 17, 171, 198, 50, WS_VSCROLL 29END 30 31/* Information and error messages */ 32STRINGTABLE 33BEGIN 34 IDS_USAGE "ReactOS Shutdown Utility\n\ 35\n\ 36Usage: shutdown [/?] [/i | /l | /s | /r | /g | /a | /p | /h | /e] [/f]\n\ 37 [/m \\\\computer][/t xxx][/d [p|u:]xx:yy [/c ""comment""]]\n\ 38\n\ 39 No arguments or /? Display this help.\n\ 40 /i Show the graphical user interface (GUI). This option must be the\n\ 41 first one.\n\ 42 /l Log off on the local system only. Cannot be used with /m or /d.\n\ 43 /s Shutdown the computer.\n\ 44 /r Restart the computer.\n\ 45 /g Restart the computer and restart all the registered applications.\n\ 46 /a Cancel a delayed shutdown. Can only be used during the delay\n\ 47 period.\n\ 48 /p Shutdown the local computer without any timeout or warning. Can be\n\ 49 used with /d or /f.\n\ 50 /h Hibernate the local computer. Usable with /f.\n\ 51 /e Document the reason for the unexpected computer shutdown.\n\ 52 /m \\\\computer Specify the target computer (UNC/IP address).\n\ 53 /t xxx Set the timeout period to xxx seconds before shutting down.\n\ 54 The valid range starts from 0 to 315360000 (10 years),\n\ 55 30 being the default value.\n\ 56 /c ""comment"" Comment on the reason for shutdown or restart.\n\ 57 512 characters maximum allowed.\n\ 58 /f Force running applications to close without warning users. If you\n\ 59 do not specify any other parameter, this option will also log off.\n\ 60 /d [p|u:]xx:yy Give the reason code for the shutdown or the restart.\n\ 61 p indicates that the shutdown or the restart is planned.\n\ 62 u indicates that the reason is defined by the user.\n\ 63 If neither p nor u are specified, the shutdown or the restart are\n\ 64 not planned.\n\ 65 xx is the major reason code (positive integer smaller than 256).\n\ 66 yy is the minor reason code (positive integer smaller than 65536).\n" 67 68 IDS_ERROR_SHUTDOWN_REBOOT "ERROR: Unable to shutdown and restart at the same time.\n" 69 IDS_ERROR_TIMEOUT "ERROR: Timeout value of %u is out of bounds (0-315360000).\n" 70 IDS_ERROR_ABORT "ERROR: Unable to abort the shutdown of the system.\n" 71 IDS_ERROR_LOGOFF "ERROR: Unable to logoff the system.\n" 72 IDS_ERROR_SHUTDOWN "ERROR: Unable to shutdown the system.\n" 73 IDS_ERROR_RESTART "ERROR: Unable to restart the system.\n" 74 IDS_ERROR_MAX_COMMENT_LENGTH "ERROR: Comment length exceeds maximum character limit set by the system.\n" 75 IDS_ERROR_HIBERNATE "ERROR: Unable to send system into hibernation mode.\n" 76 IDS_ERROR_HIBERNATE_LOCAL "ERROR: Hibernation mode cannot be started remotely.\n" 77 IDS_ERROR_HIBERNATE_ENABLED "ERROR: Hibernation mode is not enabled.\n" 78 IDS_ERROR_DIALOG_CAPTION "Remote Shutdown" 79 IDS_ERROR_DIALOG_INIT "Unable to display the graphical user interface." 80END 81 82/* Remote shutdown action strings */ 83STRINGTABLE 84BEGIN 85 IDS_ACTION_SHUTDOWN "כבה את המערכת" 86 IDS_ACTION_RESTART "הפעל מחדש את המערכת" 87 IDS_ACTION_UNEXPECTED_SHUTDOWN "Annotate the unexpected shutdown" 88END 89 90/* Remote shutdown reason strings */ 91STRINGTABLE 92BEGIN 93 IDS_REASON_OTHER "אחר" 94 IDS_REASON_HARDWARE_MAINTENANCE "חומרה: תחזוקה" 95 IDS_REASON_HARDWARE_INSTALL "חומרה: התקנה" 96 IDS_REASON_OS_RECOVER "מערכת הפעלה: שחזור" 97 IDS_REASON_OS_RECONFIGURE "מערכת הפעלה: הגדרה מחדש" 98 IDS_REASON_APP_MAINTENANCE "יישום: תחזוקה" 99 IDS_REASON_APP_INSTALL "יישום: התקנה" 100 IDS_REASON_APP_UNRESPONSIVE "יישום: לא מגיב" 101 IDS_REASON_APP_UNSTABLE "יישום: לא יציב" 102 IDS_REASON_SECURITY "בעיית בטיחות" 103 IDS_REASON_NETWORK "איבוד קישוריות רשת" 104END 105