Skip to content

FD-NLS: Update to English text #5

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

Merged
merged 1 commit into from
Apr 10, 2025
Merged
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 nls/move.en
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
0.5:source1[, source2[,...]] destination
0.6: source The name of the file or directory you want to move (rename)
0.7: destination Where you want to move the file(s) to
0.8: Supresses prompting to confirm you want to overwrite
0.8: Suppresses prompting to confirm you want to overwrite
0.9: an existing destination file.
0.10: Causes prompting to confirm you want to overwrite an
0.11: existing destination file.
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ MOVE source1[, source2[,...]] destination

source The name of the file or directory you want to move (rename)
destination Where you want to move the file(s) to
/Y Supresses prompting to confirm you want to overwrite
/Y Suppresses prompting to confirm you want to overwrite
an existing destination file.
/-Y Causes prompting to confirm you want to overwrite an
existing destination file.
Expand Down
2 changes: 1 addition & 1 deletion src/move.c
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ static void Usage(char switchch)
PRINTF("%s\n", catgets(cat, 0,6," source The name of the file or directory you want to move (rename)"));
PRINTF("%s\n", catgets(cat, 0,7," destination Where you want to move the file(s) to"));
PRINTF(" %cY%s\n",switchch,
catgets(cat, 0,8," Supresses prompting to confirm you want to overwrite"));
catgets(cat, 0,8," Suppresses prompting to confirm you want to overwrite"));
PRINTF("%s\n", catgets(cat, 0,9," an existing destination file."));
PRINTF(" %c-Y%s\n",switchch,
catgets(cat, 0,10," Causes prompting to confirm you want to overwrite an"));
Expand Down