1/* 2 * PROJECT: ReactOS NetSh 3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 * PURPOSE: English (United States) resource file 5 * TRANSLATOR: Copyright 2023 Eric Kohl <eric.kohl@reactos.org> 6 */ 7 8LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 9 10/* Basic application information */ 11STRINGTABLE 12BEGIN 13 IDS_APP_USAGE "\nUsage: netsh [-a AliasFile] [-c Context] [-r RemoteMachine] \ 14\n [Command | -f ScriptFile]\n" 15 IDS_INVALID_COMMAND "The following command was not found: %ls.\n" 16 IDS_OPEN_FAILED "The file %ls could not be openend.\n" 17 IDS_INVALID_SYNTAX "The syntax supplied for this command is not valid. Check help for the correct syntax.\n\n" 18END 19 20STRINGTABLE 21BEGIN 22 IDS_HELP_HEADER "\nThe following commands are available:\n" 23 IDS_SUBCONTEXT_HEADER "\nThe following sub-contexts are available:\n" 24 IDS_HLP_UP "Goes up one context level." 25 IDS_HLP_UP_EX "Syntax: ..\n\n Goes up one context level.\n\n" 26 IDS_HLP_EXIT "Exits the program." 27 IDS_HLP_EXIT_EX "Syntax: exit\n\n Exits the program.\n\n" 28 IDS_HLP_HELP "Displays a list of commands." 29 IDS_HLP_HELP_EX "Syntax: help\n\n Displays a list of commands.\n\n" 30 31 IDS_HLP_ADD_HELPER "Installs a helper DLL." 32 IDS_HLP_ADD_HELPER_EX "Syntax: add helper <dll file name>\n\n Installs the specified helper DLL in netsh.\n\n" 33 34 IDS_HLP_DEL_HELPER "Removes a helper DLL." 35 IDS_HLP_DEL_HELPER_EX "Syntax: delete helper <dll file name>\n\n Removes the specified helper DLL from netsh.\n\n" 36 37 IDS_HLP_SHOW_HELPER "Lists all the top-level helpers." 38 IDS_HLP_SHOW_HELPER_EX "Syntax: show helper\n\n Lists all the top-level helpers.\n\n" 39 40 IDS_HLP_GROUP_ADD "Adds a configuration entry to a list of entries." 41 IDS_HLP_GROUP_DELETE "Deletes a configuration entry from a list of entries." 42 IDS_HLP_GROUP_SHOW "Displays information." 43END 44