Skip to content

nls: Update to English from fd-nls #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ XCOPY source [destination] [/switches]
/T Creates directory tree without copying files. Empty directories
will not be copied. To copy them add switch /E.
/V Verifies each new file.
/W Waits for a keypress before beginning.
/W Waits for a key press before beginning.
/Y Suppresses prompting to confirm you want to overwrite an
existing destination file and overwrites these files.
/-Y Causes prompting to confirm you want to overwrite an existing
Expand Down
2 changes: 1 addition & 1 deletion doc/xcopy.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ XCOPY source [destination] [/switches]
/T Creates directory tree without copying files. Empty directories
will not be copied. To copy them add switch /E.
/V Verifies each new file.
/W Waits for a keypress before beginning.
/W Waits for a key press before beginning.
/Y Suppresses prompting to confirm you want to overwrite an
existing destination file and overwrites these files.
/-Y Causes prompting to confirm you want to overwrite an existing
Expand Down
4 changes: 2 additions & 2 deletions help/xcopy.htm
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ <h2>Options</h2>
Verifies each new file.

<b>/W</b>
Waits for a keypress before beginning.
Waits for a key press before beginning.

<b>/Y</b>
Suppresses prompting to confirm you want to overwrite an
Expand Down Expand Up @@ -114,4 +114,4 @@ <h2>See Also</h2>
See the file <a href="H2Cpying.txt">H2Cpying.txt</a> for copying conditions.
</address>
</body>
</html>
</html>
2 changes: 1 addition & 1 deletion nls/xcopy.en
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
2.25: /T Creates directory tree without copying files. Empty directories
2.26: will not be copied. To copy them add switch /E.
2.27: /V Verifies each new file.
2.28: /W Waits for a keypress before beginning.
2.28: /W Waits for a key press before beginning.
2.29: /Y Suppresses prompting to confirm you want to overwrite an
2.30: existing destination file and overwrites these files.
2.31: /-Y Causes prompting to confirm you want to overwrite an existing
Expand Down
2 changes: 1 addition & 1 deletion source/xcopy.c
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ void print_help(void) {
printf("%s\n", catgets(cat, 2, 25, " /T Creates directory tree without copying files. Empty directories"));
printf("%s\n", catgets(cat, 2, 26, " will not be copied. To copy them add switch /E."));
printf("%s\n", catgets(cat, 2, 27, " /V Verifies each new file."));
printf("%s\n", catgets(cat, 2, 28, " /W Waits for a keypress before beginning."));
printf("%s\n", catgets(cat, 2, 28, " /W Waits for a key press before beginning."));
printf("%s\n", catgets(cat, 2, 29, " /Y Suppresses prompting to confirm you want to overwrite an"));
printf("%s\n", catgets(cat, 2, 30, " existing destination file and overwrites these files."));
printf("%s\n", catgets(cat, 2, 31, " /-Y Causes prompting to confirm you want to overwrite an existing"));
Expand Down