diff --git a/nls/move.en b/nls/move.en index b224998..a91a46e 100644 --- a/nls/move.en +++ b/nls/move.en @@ -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. diff --git a/readme.md b/readme.md index 04d89cd..a297448 100644 --- a/readme.md +++ b/readme.md @@ -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. diff --git a/src/move.c b/src/move.c index 44a65d9..da20274 100644 --- a/src/move.c +++ b/src/move.c @@ -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"));