1/* 2 * PROJECT: ReactOS Attrib Command 3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 * PURPOSE: English (United States) resource file 5 * TRANSLATORS: Copyright 2005 Magnus Olsen <magnus@greatlord.com> 6 */ 7 8LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 9 10STRINGTABLE 11BEGIN 12 STRING_ATTRIB_HELP "Displays or changes file attributes.\n\n\ 13ATTRIB [+R | -R] [+A | -A] [+S | -S] [+H | -H] file ...\n\ 14 [/S [/D]]\n\n\ 15 + Sets an attribute\n\ 16 - Clears an attribute\n\ 17 R Read-only file attribute\n\ 18 A Archive file attribute\n\ 19 S System file attribute\n\ 20 H Hidden file attribute\n\ 21 /S Processes matching files in the current directory\n\ 22 and all subdirectories\n\ 23 /D Processes directories as well\n\n\ 24Type ATTRIB without a parameter to display the attributes of all files.\n" 25 STRING_CONSOLE_ERROR "Unknown error: %d\n" 26 STRING_FILE_NOT_FOUND "File not found - '%s'\n" 27 STRING_ERROR_INVALID_PARAM_FORMAT "Invalid parameter format - %s\n" 28END 29