Branching for 0.3.15 release after two days of no response from a certain sphere...
[reactos.git] / base / applications / cmdutils / xcopy / En.rc
1 /*
2 * XCOPY - Wine-compatible xcopy program
3 * English language support
4 *
5 * Copyright (C) 2007 J. Edmeades
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 */
21
22 #include "xcopy.h"
23
24 LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
25
26 STRINGTABLE
27 {
28 STRING_INVPARMS, "Invalid number of parameters - Use xcopy /? for help\n"
29 STRING_INVPARM, "Invalid parameter '%s' - Use xcopy /? for help\n"
30 STRING_PAUSE, "Press <enter> to begin copying\n"
31 STRING_SIMCOPY, "%d file(s) would be copied\n"
32 STRING_COPY, "%d file(s) copied\n"
33 STRING_QISDIR, "Is '%s' a filename or directory\n\
34 on the target?\n\
35 (F - File, D - Directory)\n"
36 STRING_SRCPROMPT,"%s? (Yes|No)\n"
37 STRING_OVERWRITE,"Overwrite %s? (Yes|No|All)\n"
38 STRING_COPYFAIL, "Copying of '%s' to '%s' failed with r/c %d\n"
39 STRING_OPENFAIL, "Failed to open '%s'\n"
40 STRING_READFAIL, "Failed during reading of '%s'\n"
41 STRING_YES_CHAR, "Y"
42 STRING_NO_CHAR, "N"
43 STRING_ALL_CHAR, "A"
44 STRING_FILE_CHAR,"F"
45 STRING_DIR_CHAR, "D"
46
47 STRING_HELP,
48 "XCOPY - Copies source files or directory trees to a destination\n\
49 \n\
50 Syntax:\n\
51 XCOPY source [dest] [/I] [/S] [/Q] [/F] [/L] [/W] [/T] [/N] [/U]\n\
52 \t [/R] [/H] [/C] [/P] [/A] [/M] [/E] [/D] [/Y] [/-Y]\n\
53 \n\
54 Where:\n\
55 \n\
56 [/I] Assume directory if destination does not exist and copying two or\n\
57 \tmore files\n\
58 [/S] Copy directories and subdirectories\n\
59 [/E] Copy directories and subdirectories, including any empty ones\n\
60 [/Q] Do not list names during copy, ie quiet.\n\
61 [/F] Show full source and destination names during copy\n\
62 [/L] Simulate operation, showing names which would be copied\n\
63 [/W] Prompts before beginning the copy operation\n\
64 [/T] Creates empty directory structure but does not copy files\n\
65 [/Y] Suppress prompting when overwriting files\n\
66 [/-Y] Enable prompting when overwriting files\n\
67 [/P] Prompts on each source file before copying\n\
68 [/N] Copy using short names\n\
69 [/U] Copy only files which already exist in destination\n\
70 [/R] Overwrite any read only files\n\
71 [/H] Include hidden and system files in the copy\n\
72 [/C] Continue even if an error occurs during the copy\n\
73 [/A] Only copy files with archive attribute set\n\
74 [/M] Only copy files with archive attribute set, removes\n\
75 \tarchive attribute\n\
76 [/D | /D:m-d-y] Copy new files or those modified after the supplied date.\n\
77 \t\tIf no date is supplied, only copy if destination is older\n\
78 \t\tthan source\n\n"
79
80 }