xcopy.rc 3.25 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * XCOPY - Wine-compatible xcopy program
 *
 * Copyright (C) 2007 J. Edmeades
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

21
#include "xcopy.h"
22

23 24
#pragma makedep po

25 26 27 28 29
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT

STRINGTABLE
{
    STRING_INVPARMS, "Invalid number of parameters - Use xcopy /? for help\n"
30
    STRING_INVPARM,  "Invalid parameter '%1' - Use xcopy /? for help\n"
31
    STRING_PAUSE,    "Press <Enter> to begin copying\n"
32 33 34
    STRING_SIMCOPY,  "%1!d! file(s) would be copied\n"
    STRING_COPY,     "%1!d! file(s) copied\n"
    STRING_QISDIR,   "Is '%1' a filename or directory\n\
Amine Khaldi's avatar
Amine Khaldi committed
35 36
                     on the target?\n\
                     (F - File, D - Directory)\n"
37 38 39 40 41
    STRING_SRCPROMPT,"%1? (Yes|No)\n"
    STRING_OVERWRITE,"Overwrite %1? (Yes|No|All)\n"
    STRING_COPYFAIL, "Copying of '%1' to '%2' failed with r/c %3!d!\n"
    STRING_OPENFAIL, "Failed to open '%1'\n"
    STRING_READFAIL, "Failed during reading of '%1'\n"
42 43 44 45 46
    STRING_YES_CHAR, "#msgctxt#Yes key#Y"
    STRING_NO_CHAR,  "#msgctxt#No key#N"
    STRING_ALL_CHAR, "#msgctxt#All key#A"
    STRING_FILE_CHAR,"#msgctxt#File key#F"
    STRING_DIR_CHAR, "#msgctxt#Directory key#D"
Jason Edmeades's avatar
Jason Edmeades committed
47 48

    STRING_HELP,
49
"XCOPY - Copies source files or directory trees to a destination.\n\
Jason Edmeades's avatar
Jason Edmeades committed
50 51
\n\
Syntax:\n\
52
XCOPY source [destination] [/I] [/S] [/Q] [/F] [/L] [/W] [/T] [/N] [/U]\n\
Jason Edmeades's avatar
Jason Edmeades committed
53 54 55 56
\t     [/R] [/H] [/C] [/P] [/A] [/M] [/E] [/D] [/Y] [/-Y]\n\
\n\
Where:\n\
\n\
57
[/I]  Assume directory if destination does not exist and copying two or\n\
58 59 60
\tmore files.\n\
[/S]  Copy directories and subdirectories.\n\
[/E]  Copy directories and subdirectories, including any empty ones.\n\
61
[/Q]  Do not list names during copy, that is be quiet.\n\
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
[/F]  Show full source and destination names during copy.\n\
[/L]  Simulate operation, showing names which would be copied.\n\
[/W]  Prompts before beginning the copy operation.\n\
[/T]  Creates empty directory structure but does not copy files.\n\
[/Y]  Suppress prompting when overwriting files.\n\
[/-Y] Enable prompting when overwriting files.\n\
[/P]  Prompts on each source file before copying.\n\
[/N]  Copy using short names.\n\
[/U]  Copy only files which already exist in destination.\n\
[/R]  Overwrite any read only files.\n\
[/H]  Include hidden and system files in the copy.\n\
[/C]  Continue even if an error occurs during the copy.\n\
[/A]  Only copy files with archive attribute set.\n\
[/M]  Only copy files with archive attribute set, removes the\n\
\tarchive attribute.\n\
Jason Edmeades's avatar
Jason Edmeades committed
77 78
[/D | /D:m-d-y] Copy new files or those modified after the supplied date.\n\
\t\tIf no date is supplied, only copy if destination is older\n\
79
\t\tthan source.\n\n"
Jason Edmeades's avatar
Jason Edmeades committed
80

81
}