Minor spelling fixes

darcs-hash:20060603223228-ac50b-b4f7b190baf3c41bf23c224f5d68e8888dd4eaed.gz
This commit is contained in:
axel 2006-06-04 08:32:28 +10:00
parent da2a757dff
commit 48ca253097
4 changed files with 6 additions and 6 deletions

View file

@ -2185,7 +2185,7 @@ static int builtin_fg( wchar_t **argv )
if( *end ) if( *end )
{ {
sb_printf( sb_err, sb_printf( sb_err,
_( L"%ls: Argument must be a number: %ls\n" ), _( L"%ls: Argument '%ls' is not a number\n" ),
argv[0], argv[0],
argv[1] ); argv[1] );
builtin_print_help( argv[0], sb_err ); builtin_print_help( argv[0], sb_err );

View file

@ -15,9 +15,9 @@ complete -c cp -l help -d (N_ "Display help and exit")
complete -c cp -l version -d (N_ "Display version and exit") complete -c cp -l version -d (N_ "Display version and exit")
complete -c cp -s L -l dereference -d (N_ "Always follow symbolic links") complete -c cp -s L -l dereference -d (N_ "Always follow symbolic links")
complete -c cp -s P -l no-dereference -d (N_ "Never follow symbolic links") complete -c cp -s P -l no-dereference -d (N_ "Never follow symbolic links")
complete -c cp -s p -d (N_ ""Same as --preserve=mode,ownership,timestamps) complete -c cp -s p -d (N_ "Same as --preserve=mode,ownership,timestamps")
complete -c cp -l preserve -d (N_ "Preserve the specified attributes (default: mode,ownership,timestamps) and security contexts, if possible additional attributes: links, all") complete -c cp -l preserve -d (N_ "Preserve the specified attributes and security contexts, if possible") -a "mode ownership timestamps links all"
complete -c cp -l no-preserve -r -d (N_ "Don't preserve the specified attributes") complete -c cp -l no-preserve -r -d (N_ "Don't preserve the specified attributes") -a "mode ownership timestamps links all"
complete -c cp -l parents -d (N_ "Use full source file name under DIRECTORY") complete -c cp -l parents -d (N_ "Use full source file name under DIRECTORY")
complete -c cp -s r -s R -l recursive -d (N_ "Copy directories recursively") complete -c cp -s r -s R -l recursive -d (N_ "Copy directories recursively")
complete -c cp -l remove-destination -d (N_ "Remove each existing destination file before attempting to open it (contrast with --force)") complete -c cp -l remove-destination -d (N_ "Remove each existing destination file before attempting to open it (contrast with --force)")

View file

@ -6,7 +6,7 @@ complete -c mv -l strip-trailing-slashes -d (N_ "Remove trailing slashes from so
complete -c mv -s S -l suffix -r -d (N_ "Backup suffix") complete -c mv -s S -l suffix -r -d (N_ "Backup suffix")
complete -c mv -l target-directory -d (N_ "Target directory") -x -a "(__fish_complete_directory (commandline -ct) 'Target directory')" complete -c mv -l target-directory -d (N_ "Target directory") -x -a "(__fish_complete_directory (commandline -ct) 'Target directory')"
complete -c mv -s u -l update -d (N_ "Do not overwrite newer files") complete -c mv -s u -l update -d (N_ "Do not overwrite newer files")
complete -c mv -s v -l vervose -d (N_ "Verbose mode") complete -c mv -s v -l verbose -d (N_ "Verbose mode")
complete -c mv -l help -d (N_ "Display help and exit") complete -c mv -l help -d (N_ "Display help and exit")
complete -c mv -l version -d (N_ "Display version and exit") complete -c mv -l version -d (N_ "Display version and exit")

View file

@ -19,7 +19,7 @@ for idx in (seq (count $PATH))
set i $PATH[$idx] set i $PATH[$idx]
if not test -d $i if not test -d $i
set erase_idx $erase_idx $idx set erase_idx $erase_idx $idx
printf (_ '%s: Warning: The directory %s has been removed from your PATH, because it does not exist\n') fish $i printf (_ '%s: Warning: The directory %s has been removed from your PATH because it does not exist\n') fish $i
end end
end end