1LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US 2 3STRINGTABLE 4BEGIN 5 IDS_USAGE "Compares two files or sets of files and displays the differences between\n\ 6them.\n\ 7\n\ 8FC [/A] [/C] [/L] [/LBn] [/N] [/OFF[LINE]] [/T] [/U] [/W] [/nnnn]\n\ 9 [drive1:][path1]filename1 [drive2:][path2]filename2\n\ 10FC /B [drive1:][path1]filename1 [drive2:][path2]filename2\n\ 11\n\ 12 /A Displays only first and last lines for each set of differences.\n\ 13 /B Performs a binary comparison.\n\ 14 /C Disregards the case of letters.\n\ 15 /L Compares files as ASCII text.\n\ 16 /LBn Sets the maximum consecutive mismatches to the specified\n\ 17 number of lines (default: 100).\n\ 18 /N Displays the line numbers on an ASCII comparison.\n\ 19 /OFF[LINE] Doesn't skip files with offline attribute set.\n\ 20 /T Doesn't expand tabs to spaces (default: expand).\n\ 21 /U Compare files as UNICODE text files.\n\ 22 /W Compresses white space (tabs and spaces) for comparison.\n\ 23 /nnnn Specifies the number of consecutive lines that must match\n\ 24 after a mismatch (default: 2).\n\ 25 [drive1:][path1]filename1\n\ 26 Specifies the first file or set of files to compare.\n\ 27 [drive2:][path2]filename2\n\ 28 Specifies the second file or set of files to compare.\n" 29 IDS_NO_DIFFERENCE "FC: no differences encountered\n" 30 IDS_LONGER_THAN "FC: %ls longer than %ls\n" 31 IDS_COMPARING "Comparing files %ls and %ls\n" 32 IDS_OUT_OF_MEMORY "FC: Out of memory\n" 33 IDS_CANNOT_READ "FC: cannot read from %ls\n" 34 IDS_INVALID_SWITCH "FC: Invalid Switch\n" 35 IDS_CANNOT_OPEN "FC: cannot open %ls - No such file or folder\n" 36 IDS_NEEDS_FILES "FC: Insufficient number of file specifications\n" 37 IDS_CANT_USE_WILDCARD "Wildcard ('*' and '?') are not supported yet\n" 38 IDS_DIFFERENT "FC: File %ls and %ls are different\n" 39 IDS_TOO_LARGE "FC: File %ls too large\n" 40 IDS_RESYNC_FAILED "Resync failed. Files are too different.\n" 41END 42