[SHUTDOWN]
[reactos.git] / reactos / base / applications / shutdown / lang / uk-UA.rc
1 /*
2 * PROJECT: ReactOS shutdown/logoff utility
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/applications/shutdown/lang/uk-UA.rc
5 * PURPOSE: Ukraianian Language File for shutdown
6 * TRANSLATOR: Artem Reznikov
7 */
8
9 LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT
10
11 /* Dialog */
12 IDD_GUI DIALOGEX DISCARDABLE 0, 0, 240, 255
13 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
14 CAPTION "Remote Shutdown"
15 FONT 8, "MS Shell Dlg"
16 BEGIN
17 DEFPUSHBUTTON "&OK",IDC_OK,125,232,50,14
18 PUSHBUTTON "&Cancel",IDC_CANCEL,178,232,50,14
19 CTEXT "Co&mputers:", IDC_STATIC,9,9,35,36
20 LISTBOX IDC_COMPUTER_LIST,8,19,162,55
21 PUSHBUTTON "&Add...",IDC_ADD_SYSTEM,179,19,50,14
22 PUSHBUTTON "&Remove",IDC_REMOVE_SYSTEM,179,36,50,14,WS_DISABLED
23 PUSHBUTTON "&Browse...",IDC_BROWSE_SYSTEM,179,53,50,14
24 CTEXT "Which action do you want these computers to execute?", IDC_ACTION,14,81,20,14
25 COMBOBOX IDC_ACTION_TYPE,37,79,129,14,WS_TABSTOP | CBS_DROPDOWN
26 CHECKBOX "Warn users",IDC_WARN_USERS,178,79,50,14,BS_AUTOCHECKBOX | WS_TABSTOP
27 CTEXT "Display warning for",IDC_SHOW_WARN_ONE,11,99,65,14
28 EDITTEXT IDC_SHOW_WARN,78,97,41,14
29 CTEXT "second(s)",IDC_SHOW_WARN_TWO,124,99,32,10
30 GROUPBOX "Shutdown Event Tracker",IDC_STATIC,5,114,224,114
31 CTEXT "Reason:",IDC_STATIC,16,130,27,8
32 CHECKBOX "Planned",IDC_PLANNED,175,130,40,12,BS_AUTOCHECKBOX | WS_TABSTOP
33 COMBOBOX IDC_REASON_CODE,17,142,198,13,WS_TABSTOP | CBS_DROPDOWN
34 CTEXT "Comm&ent:",IDC_COMMENT_CAPTION,17,159,30,8
35 EDITTEXT IDC_COMMENT_TEXT,17,171,198,50,WS_VSCROLL
36 END
37
38 /* Information and error messages */
39 STRINGTABLE DISCARDABLE
40 BEGIN
41 IDS_USAGE, "Usage: shutdown [/?] [/i | /l | /s | /r | /g | /a | /p | /h | /e] [/f]\n" \
42 " [/m \\\\computer][/t xxx][/d [p|u:]xx:yy [/c ""comment""]]\n\n" \
43 " No arguments or /? Display this help.\n" \
44 " /i Show the graphical user interface (GUI). This option must be the\n" \
45 " first one.\n" \
46 " /l Log off on the local system only. Cannot be used with /m or /d.\n" \
47 " /s Shutdown the computer.\n" \
48 " /r Restart the computer.\n" \
49 // " /g Restart the computer and restart all the registered applications.\n" /
50 " /a Cancel a delayed shutdown. Can only be used during the delay\n" \
51 " period.\n" \
52 " /p Shutdown the local computer without any timeout or warning. Can be\n" \
53 " used with /d or /f.\n" \
54 " /h Hibernate the local computer. Usable with /f.\n" \
55 " /e Document the reason for the unexpected computer shutdown.\n" \
56 " /m \\\\computer Specify the target computer (UNC/IP address).\n" \
57 " /t xxx Set the timeout period to xxx seconds before shutting down.\n" \
58 " The valid range starts from 0 to 315360000 (10 years),\n" \
59 " 30 being the default value.\n" \
60 " /c ""comment"" Comment on the reason for shutdown or restart.\n" \
61 " 512 characters maximum allowed.\n" \
62 " /f Force running applications to close without warning users. If you\n" \
63 " do not specify any other parameter, this option will also log off.\n" \
64 " /d [p|u:]xx:yy Give the reason code for the shutdown or the restart.\n" \
65 " p indicates that the shutdown or the restart is planned.\n" \
66 " u indicates that the reason is defined by the user.\n" \
67 " If neither p nor u are specified, the shutdown or the restart are\n" \
68 " not planned.\n" \
69 " xx is the major reason code (positive integer smaller than 256).\n" \
70 " yy is the minor reason code (positive integer smaller than 65536).\n"
71
72 IDS_ERROR_SHUTDOWN_REBOOT, "ERROR: Unable to shutdown and restart at the same time.\n"
73 IDS_ERROR_TIMEOUT, "ERROR: Timeout value of %u is out of bounds (0-315360000).\n"
74 IDS_ERROR_ABORT, "ERROR: Unable to abort the shutdown of the system.\n"
75 IDS_ERROR_LOGOFF, "ERROR: Unable to logoff the system.\n"
76 IDS_ERROR_SHUTDOWN, "ERROR: Unable to shutdown the system.\n"
77 IDS_ERROR_RESTART, "ERROR: Unable to restart the system.\n"
78 IDS_ERROR_MAX_COMMENT_LENGTH, "ERROR: Comment length exceeds maximum character limit set by the system.\n"
79 IDS_ERROR_HIBERNATE, "ERROR: Unable to send system into hibernation mode.\n"
80 IDS_ERROR_HIBERNATE_LOCAL, "ERROR: Hibernation mode cannot be started remotely.\n"
81 IDS_ERROR_HIBERNATE_ENABLED, "ERROR: Hibernation mode is not enabled.\n"
82 IDS_ERROR_DIALOG_CAPTION, "Remote Shutdown"
83 IDS_ERROR_DIALOG_INIT, "Unable to display the graphical user interface."
84 END
85
86 /* Remote shutdown action strings */
87 STRINGTABLE DISCARDABLE
88 BEGIN
89 IDS_ACTION_SHUTDOWN, "Shutdown the system"
90 IDS_ACTION_RESTART, "Restart the system"
91 IDS_ACTION_UNEXPECTED_SHUTDOWN, "Annotate the unexpected shutdown"
92 END
93
94 /* Remote shutdown reason strings */
95 STRINGTABLE DISCARDABLE
96 BEGIN
97 IDS_REASON_OTHER, "Other"
98 IDS_REASON_HARDWARE_MAINTENANCE, "Hardware: Maintenance"
99 IDS_REASON_HARDWARE_INSTALL, "Hardware: Installation"
100 IDS_REASON_OS_RECOVER, "Operating System: Recovery"
101 IDS_REASON_OS_RECONFIGURE, "Operating System: Reconfigure"
102 IDS_REASON_APP_MAINTENANCE, "Application: Maintenance"
103 IDS_REASON_APP_INSTALL, "Application: Installation"
104 IDS_REASON_APP_UNRESPONSIVE, "Application: Unresponsive"
105 IDS_REASON_APP_UNSTABLE, "Application: Unstable"
106 IDS_REASON_SECURITY, "Security Issue"
107 IDS_REASON_NETWORK, "Loss of network connectivity"
108 END