aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2006-01-12 00:17:35 +1000
committerGravatar axel <axel@liljencrantz.se>2006-01-12 00:17:35 +1000
commitd4034fc253857428294cff95a4ca75bdb9ab52f4 (patch)
treef9c11e43bdcceb4ed9c7ea64618650b8ed5ed996
parentbe9208412a0e141d29ec37415f8e4f0f5955da75 (diff)
Yet another batch of description tweaks, as well as the last major checkin of translations to swedish (updated patch)
darcs-hash:20060111141735-ac50b-b6a9ac5d5d9eb8eac28dd39968cd28f99044e8f5.gz
-rw-r--r--builtin.c41
-rw-r--r--builtin.h2
-rw-r--r--complete.c1
-rw-r--r--env.c2
-rw-r--r--init/completions/apropos.fish4
-rw-r--r--init/completions/apt-build.fish16
-rw-r--r--init/completions/apt-cache.fish16
-rw-r--r--init/completions/apt-cdrom.fish2
-rw-r--r--init/completions/apt-file.fish8
-rw-r--r--init/completions/apt-ftparchive.fish2
-rw-r--r--init/completions/apt-get.fish8
-rw-r--r--init/completions/apt-listbugs.fish8
-rw-r--r--init/completions/apt-move.fish27
-rw-r--r--init/completions/apt-rdepends.fish14
-rw-r--r--init/completions/apt-show-source.fish6
-rw-r--r--init/completions/apt-show-versions.fish8
-rw-r--r--init/completions/apt-src.fish24
-rw-r--r--init/completions/apt-zip-inst.fish2
-rw-r--r--init/completions/apt-zip-list.fish2
-rw-r--r--init/completions/commandline.fish14
-rw-r--r--init/completions/cvs.fish94
-rw-r--r--init/completions/gcc.fish108
-rw-r--r--init/completions/gprof.fish2
-rw-r--r--init/completions/help.fish2
-rw-r--r--init/completions/jobs.fish2
-rw-r--r--init/completions/ls.fish6
-rw-r--r--init/completions/man.fish4
-rw-r--r--init/completions/mplayer.fish2
-rw-r--r--init/completions/mv.fish2
-rw-r--r--init/completions/perl.fish4
-rw-r--r--init/completions/ping.fish18
-rw-r--r--init/completions/ps.fish4
-rw-r--r--init/completions/python.fish4
-rw-r--r--init/completions/rm.fish4
-rw-r--r--init/completions/rmdir.fish2
-rw-r--r--init/completions/rpm.fish57
-rw-r--r--init/completions/ruby.fish4
-rw-r--r--init/completions/set.fish2
-rw-r--r--init/completions/sort.fish2
-rw-r--r--init/completions/tar.fish12
-rw-r--r--init/completions/umount.fish4
-rw-r--r--init/completions/uname.fish2
-rw-r--r--init/completions/uniq.fish4
-rw-r--r--init/completions/valgrind.fish4
-rw-r--r--init/completions/wget.fish2
-rw-r--r--init/completions/xprop.fish2
-rw-r--r--input.c2
-rw-r--r--io.c2
-rw-r--r--parser.c16
-rw-r--r--po/sv.po1995
-rw-r--r--reader.c4
-rw-r--r--sanity.c6
-rw-r--r--signal.c2
53 files changed, 1273 insertions, 1314 deletions
diff --git a/builtin.c b/builtin.c
index fbb4400f..34127c57 100644
--- a/builtin.c
+++ b/builtin.c
@@ -1834,7 +1834,7 @@ static int builtin_exit( wchar_t **argv )
if( errno || *end != 0)
{
sb_printf( sb_err,
- _( L"%ls: Argument must be an integer '%ls'\n" ),
+ _( L"%ls: Argument '%ls' must be an integer\n" ),
argv[0],
argv[1] );
builtin_print_help( argv[0], sb_err );
@@ -2302,6 +2302,10 @@ static int builtin_fg( wchar_t **argv )
*/
for( j=first_job; ((j!=0) && (!j->constructed)); j=j->next )
;
+ sb_printf( sb_err,
+ _( L"%ls: There are no jobs\n" ),
+ argv[0] );
+ builtin_print_help( argv[0], sb_err );
}
else if( argv[2] != 0 )
{
@@ -2334,17 +2338,14 @@ static int builtin_fg( wchar_t **argv )
{
int pid = abs(wcstol( argv[1], 0, 10 ));
j = job_get_from_pid( pid );
- }
-
- if( j == 0 )
- {
sb_printf( sb_err,
- _( L"%ls: No suitable job\n" ),
- argv[0] );
+ _( "%ls: No suitable job: %d\n" ),
+ argv[0],
+ pid );
builtin_print_help( argv[0], sb_err );
- return 1;
}
- else
+
+ if( j != 0 )
{
if( builtin_err_redirect )
{
@@ -2682,7 +2683,7 @@ static int builtin_jobs( wchar_t **argv )
if( errno || *end )
{
sb_printf( sb_err,
- _( L"%ls: Not a process id: '%ls'\n" ),
+ _( L"%ls: '%ls' is not a job\n" ),
argv[0],
argv[i] );
return 1;
@@ -2749,7 +2750,7 @@ static int builtin_for( wchar_t **argv )
else if ( !wcsvarname(argv[1]) )
{
sb_printf( sb_err,
- _( L"%ls: '%ls' invalid variable name\n" ),
+ _( L"%ls: '%ls' is not a valid variable name\n" ),
argv[0],
argv[1] );
builtin_print_help( argv[0], sb_err );
@@ -3033,7 +3034,7 @@ static int builtin_return( wchar_t **argv )
if( errno || *end != 0)
{
sb_printf( sb_err,
- _( L"%ls: Argument must be an integer '%ls'\n" ),
+ _( L"%ls: Argument '%ls' must be an integer\n" ),
argv[0],
argv[1] );
builtin_print_help( argv[0], sb_err );
@@ -3122,7 +3123,7 @@ static int builtin_case( wchar_t **argv )
sb_printf( sb_err,
_( L"%ls: 'case' command while not in switch block\n" ),
argv[0] );
- builtin_print_help( L"case", sb_err );
+ builtin_print_help( argv[0], sb_err );
return 1;
}
@@ -3342,7 +3343,7 @@ const wchar_t *builtin_get_desc( const wchar_t *b )
hash_init( desc, &hash_wcs_func, &hash_wcs_cmp );
hash_put( desc, L"block", N_( L"Temporarily block delivery of events" ) );
- hash_put( desc, L"builtin", N_( L"Run a builtin command" ) );
+ hash_put( desc, L"builtin", N_( L"Run a builtin command instead of a function" ) );
hash_put( desc, L"complete", N_( L"Edit command specific completions" ) );
hash_put( desc, L"cd", N_( L"Change working directory" ) );
hash_put( desc, L"exit", N_( L"Exit the shell" ) );
@@ -3360,19 +3361,19 @@ const wchar_t *builtin_get_desc( const wchar_t *b )
hash_put( desc, L"read", N_( L"Read a line of input into variables" ) );
hash_put( desc, L"break", N_( L"Stop the innermost loop" ) );
hash_put( desc, L"continue", N_( L"Skip the rest of the current lap of the innermost loop" ) );
- hash_put( desc, L"return", N_( L"Stop the innermost currently evaluated function" ) );
+ hash_put( desc, L"return", N_( L"Stop the currently evaluated function" ) );
hash_put( desc, L"commandline", N_( L"Set or get the commandline" ) );
hash_put( desc, L"switch", N_( L"Conditionally execute a block of commands" ) );
hash_put( desc, L"case", N_( L"Conditionally execute a block of commands" ) );
- hash_put( desc, L"command", N_( L"Run a program" ) );
- hash_put( desc, L"if", N_( L"Conditionally execute a command" ) );
+ hash_put( desc, L"command", N_( L"Run a program instead of a function or builtin" ) );
+ hash_put( desc, L"if", N_( L"Evaluate block if condition is true" ) );
hash_put( desc, L"while", N_( L"Perform a command multiple times" ) );
- hash_put( desc, L"bind", N_( L"Handle key bindings" ));
+ hash_put( desc, L"bind", N_( L"Handle fish key bindings" ));
hash_put( desc, L"random", N_( L"Generate random number" ));
hash_put( desc, L"exec", N_( L"Run command in current process" ));
hash_put( desc, L"not", N_( L"Negate exit status of job" ));
- hash_put( desc, L"or", N_( L"Execute second command if first fails" ));
- hash_put( desc, L"and", N_( L"Execute second command if first suceeds" ));
+ hash_put( desc, L"or", N_( L"Execute command if previous command failed" ));
+ hash_put( desc, L"and", N_( L"Execute command if previous command suceeded" ));
hash_put( desc, L"begin", N_( L"Create a block of code" ) );
hash_put( desc, L"status", N_( L"Return status information about fish" ) );
hash_put( desc, L"ulimit", N_( L"Set or get the shells resource usage limits" ) );
diff --git a/builtin.h b/builtin.h
index 548a668e..01ed4464 100644
--- a/builtin.h
+++ b/builtin.h
@@ -35,7 +35,7 @@ enum
/**
Error message on multiple scope levels for variables
*/
-#define BUILTIN_ERR_GLOCAL _( L"%ls: Variable can only be one of universal, global and local\n%ls\n" )
+#define BUILTIN_ERR_GLOCAL _( L"%ls: Variable scope can only be one of universal, global and local\n%ls\n" )
/**
Error message for specifying both export and unexport to set/read
diff --git a/complete.c b/complete.c
index 5e13c968..3ce4353a 100644
--- a/complete.c
+++ b/complete.c
@@ -891,7 +891,6 @@ static const wchar_t *complete_get_desc_suffix( const wchar_t *suff_orig )
const wchar_t *complete_get_desc( const wchar_t *filename )
{
struct stat buf;
-// const wchar_t *desc = COMPLETE_FILE_DESC;
if( !get_desc_buff )
{
get_desc_buff = malloc(sizeof(string_buffer_t) );
diff --git a/env.c b/env.c
index 4c01a984..f547578a 100644
--- a/env.c
+++ b/env.c
@@ -834,7 +834,7 @@ wchar_t *env_get( const wchar_t *key )
wchar_t *next = history_get( i-add_current );
if( !next )
{
- debug( 1, _( L"No history at idx %d\n" ), i );
+ debug( 1, _( L"No history item at index %d\n" ), i );
break;
}
diff --git a/init/completions/apropos.fish b/init/completions/apropos.fish
index 263be075..e0332dbc 100644
--- a/init/completions/apropos.fish
+++ b/init/completions/apropos.fish
@@ -6,7 +6,7 @@ function __fish_complete_apropos
end
end
-complete -xc apropos -a '(__fish_complete_apropos)' -d (_ "Whatis entry")
+complete -xc apropos -a '(__fish_complete_apropos)' -d (_ "whatis entry")
complete -c apropos -s h -l help -d (_ "Display help and exit")
complete -f -c apropos -s d -l debug -d (_ "Print debugging info")
@@ -16,6 +16,6 @@ complete -f -c apropos -s w -l wildcard -d (_ "Keyword as wildwards")
complete -f -c apropos -s e -l exact -d (_ "Keyword as exactly match")
complete -x -c apropos -s m -l system -d (_ "Search for other system")
complete -x -c apropos -s M -l manpath -a '(echo $MANPATH)' -d (_ "Specify man path")
-complete -x -c apropos -s C -l config-file -d (_ "Specify a conf file")
+complete -x -c apropos -s C -l config-file -d (_ "Specify a configuration file")
complete -f -c apropos -s V -l version -d (_ "Display version and exit")
diff --git a/init/completions/apt-build.fish b/init/completions/apt-build.fish
index 606ec7da..9a1387cb 100644
--- a/init/completions/apt-build.fish
+++ b/init/completions/apt-build.fish
@@ -4,21 +4,21 @@ complete -c apt-build -l help -d (_ "Display help and exit")
complete -f -c apt-build -a update -d (_ "Update list of packages")
complete -f -c apt-build -a upgrade -d (_ "Upgrade packages")
complete -f -c apt-bulid -a world -d (_ "Rebuild your system")
-complete -x -c apt-build -a install -d (_ "Build and install a new pkg")
-complete -x -c apt-build -a source -d (_ "Download and extract a src")
-complete -x -c apt-build -a info -d (_ "Info on a pkg")
+complete -x -c apt-build -a install -d (_ "Build and install a new package")
+complete -x -c apt-build -a source -d (_ "Download and extract a source")
+complete -x -c apt-build -a info -d (_ "Info on a package")
complete -x -c apt-build -a remove -d (_ "Remove packages")
-complete -x -c apt-build -a clean-build -d (_ "Erase built pkgs")
-complete -x -c apt-build -a build-source -d (_ "Build src without install")
-complete -x -c apt-build -a clean-sources -d (_ "Clean src dirs")
-complete -x -c apt-build -a update-source -d (_ "Update src and rebuild them")
+complete -x -c apt-build -a clean-build -d (_ "Erase built packages")
+complete -x -c apt-build -a build-source -d (_ "Build source without install")
+complete -x -c apt-build -a clean-sources -d (_ "Clean source directories")
+complete -x -c apt-build -a update-source -d (_ "Update source and rebuild")
complete -x -c apt-build -a update-repository -d (_ "Update the repository")
complete -f -c apt-build -l nowrapper -d (_ "Do not use gcc wrapper")
complete -f -c apt-build -l remove-builddep -d (_ "Remove build-dep")
complete -f -c apt-build -l no-source -d (_ "Do not download source")
complete -f -c apt-build -l build-dir -d (_ "Specify build-dir")
complete -f -c apt-build -l rebuild -d (_ "Rebuild a package")
-complete -f -c apt-build -l reinstall -d (_ "Rebuild and install an installed pkg")
+complete -f -c apt-build -l reinstall -d (_ "Rebuild and install an installed package")
complete -r -f -c apt-build -l build-command -d (_ "Use <command> to build")
complete -r -c apt-build -l patch -d (_ "Apply <file> patch")
complete -c apt-build -s p -l patch-strip -d (_ "Prefix to strip on patch")
diff --git a/init/completions/apt-cache.fish b/init/completions/apt-cache.fish
index 99f7154a..ea8c90fe 100644
--- a/init/completions/apt-cache.fish
+++ b/init/completions/apt-cache.fish
@@ -6,20 +6,20 @@ complete -f -c apt-cache -a stats -d (_ "Show cache statistics")
complete -x -c apt-cache -a showsrc -d (_ "Show source package")
complete -f -c apt-cache -a dump -d (_ "Show packages in cache")
complete -f -c apt-cache -a dumpavail -d (_ "Print available list")
-complete -f -c apt-cache -a unmet -d (_ "List unmet dep in cache")
+complete -f -c apt-cache -a unmet -d (_ "List unmet dependencies in cache")
complete -x -c apt-cache -a show -d (_ "Display package record")
-complete -x -c apt-cache -a search -d (_ "Search pkgname by REGEX")
+complete -x -c apt-cache -a search -d (_ "Search packagename by REGEX")
complete -c apt-cache -l full -a search -d (_ "Search full package name")
-complete -x -c apt-cache -l names-only -a search -d (_ "Search pkgname only")
-complete -x -c apt-cache -a depends -d (_ "List dep for the package")
-complete -x -c apt-cache -a rdepends -d (_ "List reverse dep for the package")
+complete -x -c apt-cache -l names-only -a search -d (_ "Search packagename only")
+complete -x -c apt-cache -a depends -d (_ "List dependencies for the package")
+complete -x -c apt-cache -a rdepends -d (_ "List reverse dependencies for the package")
complete -x -c apt-cache -a pkgnames -d (_ "Print package name by prefix")
complete -x -c apt-cache -a dotty -d (_ "Generate dotty output for packages")
complete -x -c apt-cache -a policy -d (_ "Debug preferences file")
-complete -r -c apt-cache -s p -l pkg-cache -d (_ "Select file to store pkg cache")
-complete -r -c apt-cache -s s -l src-cache -d (_ "Select file to store src cache")
+complete -r -c apt-cache -s p -l pkg-cache -d (_ "Select file to store package cache")
+complete -r -c apt-cache -s s -l src-cache -d (_ "Select file to store source cache")
complete -f -c apt-cache -s q -l quiet -d (_ "Quiet mode")
-complete -f -c apt-cache -s i -l important -d (_ "Print important deps")
+complete -f -c apt-cache -s i -l important -d (_ "Print important dependencies")
complete -f -c apt-cache -s a -l all-versions -d (_ "Print full records")
complete -f -c apt-cache -s g -l generate -d (_ "Auto-gen package cache")
complete -f -c apt-cache -l all-names -d (_ "Print all names")
diff --git a/init/completions/apt-cdrom.fish b/init/completions/apt-cdrom.fish
index 137f35b5..83aead2c 100644
--- a/init/completions/apt-cdrom.fish
+++ b/init/completions/apt-cdrom.fish
@@ -6,7 +6,7 @@ complete -r -c apt-cdrom -s d -l cdrom -d (_ "Mount point")
complete -f -c apt-cdrom -s r -l rename -d (_ "Rename a disc")
complete -f -c apt-cdrom -s m -l no-mount -d (_ "No mounting")
complete -f -c apt-cdrom -s f -l fast -d (_ "Fast copy")
-complete -f -c apt-cdrom -s a -l thorough -d (_ "Thorough pkg scan")
+complete -f -c apt-cdrom -s a -l thorough -d (_ "Thorough package scan")
complete -f -c apt-cdrom -s n -l no-act -d (_ "No changes")
complete -f -c apt-cdrom -s v -l version -d (_ "Display version and exit")
complete -r -c apt-cdrom -s c -l config-file -d (_ "Specify config file")
diff --git a/init/completions/apt-file.fish b/init/completions/apt-file.fish
index b36fdddc..62d2f1b0 100644
--- a/init/completions/apt-file.fish
+++ b/init/completions/apt-file.fish
@@ -1,8 +1,8 @@
#apt-file
complete -c apt-file -s h -l help -d (_ "Display help and exit")
-complete -x -c apt-file -a update -d (_ "Resync pkg contents from source")
-complete -r -c apt-file -a search -d (_ "Search pkg containing pattern")
-complete -r -c apt-file -a list -d (_ "List contents of a pkg matching pattern")
+complete -x -c apt-file -a update -d (_ "Resync package contents from source")
+complete -r -c apt-file -a search -d (_ "Search package containing pattern")
+complete -r -c apt-file -a list -d (_ "List contents of a package matching pattern")
complete -x -c apt-file -a purge -d (_ "Remove all gz files from cache")
complete -r -c apt-file -s c -l cache -d (_ "Set cache dir")
complete -f -c apt-file -s v -l verbose -d (_ "Verbose mode")
@@ -12,6 +12,6 @@ complete -f -c apt-file -s x -l regexp -d (_ "Pattern is regexp")
complete -f -c apt-file -s V -l version -d (_ "Display version and exit")
complete -f -c apt-file -s a -l architecture -d (_ "Set arch")
complete -r -c apt-file -s s -l sources-list -a "(ls /etc/apt)" -d (_ "Set sources.list file")
-complete -f -c apt-file -s l -l package-only -d (_ "Only display pkg name")
+complete -f -c apt-file -s l -l package-only -d (_ "Only display package name")
complete -f -c apt-file -s F -l fixed-string -d (_ "Do not expand pattern")
complete -f -c apt-file -s y -l dummy -d (_ "Run in dummy mode")
diff --git a/init/completions/apt-ftparchive.fish b/init/completions/apt-ftparchive.fish
index 1e7e1195..556cd877 100644
--- a/init/completions/apt-ftparchive.fish
+++ b/init/completions/apt-ftparchive.fish
@@ -1,6 +1,6 @@
#apt-ftparchive
complete -c apt-ftparchive -s h -l help -d (_ "Display help and exit")
-complete -f -c apt-ftparchive -a packages -d (_ "Generate pkg from source")
+complete -f -c apt-ftparchive -a packages -d (_ "Generate package from source")
complete -f -c apt-ftparchive -a sources -d (_ "Generate source index file")
complete -f -c apt-ftparchive -a contents -d (_ "Generate contents file")
complete -f -c apt-ftparchive -a release -d (_ "Generate release file")
diff --git a/init/completions/apt-get.fish b/init/completions/apt-get.fish
index 59cff4f4..de6e3013 100644
--- a/init/completions/apt-get.fish
+++ b/init/completions/apt-get.fish
@@ -29,11 +29,11 @@ complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'install' -d (_ 'Install
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'remove' -d (_ 'Remove one or more packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'source' -d (_ 'Fetch source packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'build-dep' -d (_ 'Install/remove packages for dependencies')
-complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'check' -d (_ 'Update cache and check dep')
+complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'check' -d (_ 'Update cache and check dependencies')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'clean' -d (_ 'Clean local caches and packages')
complete -f -n '__fish_apt_no_subcommand' -c apt-get -a 'autoclean' -d (_ 'Clean packages no longer be downloaded')
complete -c apt-get -s d -l download-only -d (_ 'Download Only')
-complete -c apt-get -s f -l fix-broken -d (_ 'Correct broken deps')
+complete -c apt-get -s f -l fix-broken -d (_ 'Correct broken dependencies')
complete -c apt-get -s m -l fix-missing -d (_ 'Ignore missing packages')
complete -c apt-get -l no-download -d (_ 'Disable downloading packages')
complete -c apt-get -s q -l quiet -d (_ 'Quiet mode')
@@ -44,7 +44,7 @@ complete -c apt-get -s V -l verbose-versions -d (_ 'Show full versions for packa
complete -c apt-get -s b -l compile -d (_ 'Compile source packages')
complete -c apt-get -s b -l build -d (_ 'Compile source packages')
complete -c apt-get -l ignore-hold -d (_ 'Ignore package Holds')
-complete -c apt-get -l no-upgrade -d (_ 'Do not upgrade packages')
+complete -c apt-get -l no-upgrade -d (_ "Do not upgrade packages")
complete -c apt-get -l force-yes -d (_ 'Force yes')
complete -c apt-get -l print-uris -d (_ 'Print the URIs')
complete -c apt-get -l purge -d (_ 'Use purge instead of remove')
@@ -56,7 +56,7 @@ complete -c apt-get -l no-remove -d (_ 'Abort if any packages are to be removed'
complete -c apt-get -l only-source -d (_ 'Only accept source packages')
complete -c apt-get -l diff-only -d (_ 'Download only diff file')
complete -c apt-get -l tar-only -d (_ 'Download only tar file')
-complete -c apt-get -l arch-only -d (_ 'Only process arch-dep build-deps')
+complete -c apt-get -l arch-only -d (_ 'Only process arch-dependant build-dependencies')
complete -c apt-get -l allow-unauthenticated -d (_ 'Ignore non-authenticated packages')
complete -c apt-get -s v -l version -d (_ 'Display version and exit')
complete -r -c apt-get -s c -l config-file -d (_ 'Specify a config file')
diff --git a/init/completions/apt-listbugs.fish b/init/completions/apt-listbugs.fish
index c08ee314..7c2175dd 100644
--- a/init/completions/apt-listbugs.fish
+++ b/init/completions/apt-listbugs.fish
@@ -2,10 +2,10 @@
complete -c apt-listbugs -s h -l help -d (_ "Display help and exit")
complete -f -c apt-listbugs -s s -l severity -a "critical grave" -d (_ "Set severity")
complete -f -c apt-listbugs -s T -l tag -d (_ "Tags you want to see")
-complete -f -c apt-listbugs -s S -l stats -d (_ "Outstanding 'pending upload' resolved done open") -d "status you want to see"
+complete -f -c apt-listbugs -s S -l stats -a "outstanding 'pending upload' resolved done open" -d (_ "Bug-status you want to see")
complete -f -c apt-listbugs -s l -l showless -d (_ "Ignore bugs in your system")
-complete -f -c apt-listbugs -s g -l showgreater -d (_ "Ignore newer bugs than upgrade pkgs")
-complete -f -c apt-listbugs -s D -l show-downgrade -d (_ "Bugs for downgrade pkgs")
+complete -f -c apt-listbugs -s g -l showgreater -d (_ "Ignore newer bugs than upgrade packages")
+complete -f -c apt-listbugs -s D -l show-downgrade -d (_ "Bugs for downgrade packages")
complete -f -c apt-listbugs -s H -l hostname -a "osdn.debian.or.jp" -d (_ "Bug Tracking system")
complete -f -c apt-listbugs -s p -l port -d (_ "Specify port for web interface")
complete -f -c apt-listbugs -s R -l release-critical -d (_ "Use daily bug report")
@@ -20,6 +20,6 @@ complete -f -c apt-listbugs -s t -l timer -d (_ "Specify the expire cache timer"
complete -c apt-listbugs -s C -l aptconf -d (_ "Specify apt config file")
complete -f -c apt-listbugs -s y -l force-yes -d (_ "Assume yes to all questions")
complete -f -c apt-listbugs -s n -l force-no -d (_ "Assume no to all questions")
-complete -c apt-listbugs -a list -d (_ "List bugs from pkgs")
+complete -c apt-listbugs -a list -d (_ "List bugs from packages")
complete -c apt-listbugs -a rss -d (_ "List bugs in rss format")
diff --git a/init/completions/apt-move.fish b/init/completions/apt-move.fish
index 57bf43e3..31941ccc 100644
--- a/init/completions/apt-move.fish
+++ b/init/completions/apt-move.fish
@@ -1,23 +1,22 @@
#apt-move
complete -c apt-move -a get -d (_ "Generate master file")
-complete -c apt-move -a getlocal -d (_ "Alias of get")
-complete -f -c apt-move -a move -d (_ "Move pkgs to local tree")
-complete -f -c apt-move -a delete -d (_ "Delete obsolete pkg files")
+complete -c apt-move -a getlocal -d (_ "Alias for 'get'")
+complete -f -c apt-move -a move -d (_ "Move packages to local tree")
+complete -f -c apt-move -a delete -d (_ "Delete obsolete package files")
complete -f -c apt-move -a packages -d (_ "Build new local files")
complete -f -c apt-move -a fsck -d (_ "Rebuild index files")
-complete -f -c apt-move -a update -d (_ "Move pkgs from cache to local mirror")
-complete -f -c apt-move -a local -d (_ "Alias to move delete packages")
-complete -f -c apt-move -a localupdate -d (_ "Alias for update")
-complete -f -c apt-move -a mirror -d (_ "Download pkg missing from mirror")
-complete -f -c apt-move -a sync -d (_ "Sync pkgs installed")
+complete -f -c apt-move -a update -d (_ "Move packages from cache to local mirror")
+complete -f -c apt-move -a local -d (_ "Alias for 'move delete packages'")
+complete -f -c apt-move -a localupdate -d (_ "Alias for 'update'")
+complete -f -c apt-move -a mirror -d (_ "Download package missing from mirror")
+complete -f -c apt-move -a sync -d (_ "Sync packages installed")
complete -f -c apt-move -a exclude -d 'test $LOCALDIR/.exclude file'
-complete -c apt-move -a movefile -d (_ "Move file from CLI")
-complete -f -c apt-move -a listbin -d (_ "Mirror|sync|repo")
-complete -f -c apt-move -a mirrorbin -d (_ "Fetch pkg from STDIN")
-complete -f -c apt-move -a mirrorsrc -d (_ "Fetch src pkg from STDIN")
-complete -f -c apt-move -s a -d (_ "Process all pkgs")
+complete -c apt-move -a movefile -d (_ "Move file specified on commandline")
+complete -f -c apt-move -a listbin -d (_ "List packags that may serve as input to mirrorbin or mirrorsource" )
+complete -f -c apt-move -a mirrorbin -d (_ "Fetch package from STDIN")
+complete -f -c apt-move -a mirrorsrc -d (_ "Fetch source package from STDIN")
+complete -f -c apt-move -s a -d (_ "Process all packages")
complete -c apt-move -s c -d (_ "Use specific conffile")
-complete -f -c apt-move -s d -d (_ "Use specific dist")
complete -f -c apt-move -s f -d (_ "Force deletion")
complete -f -c apt-move -s q -d (_ "Suppresses normal output")
complete -f -c apt-move -s t -d (_ "Test run")
diff --git a/init/completions/apt-rdepends.fish b/init/completions/apt-rdepends.fish
index e30267a6..6ff0cecf 100644
--- a/init/completions/apt-rdepends.fish
+++ b/init/completions/apt-rdepends.fish
@@ -1,13 +1,13 @@
#apt-rdepends
complete -c apt-rdepends -l help -d (_ "Display help and exit")
-complete -f -c apt-rdepends -s b -l build-depends -d (_ "Show bulid deps")
+complete -f -c apt-rdepends -s b -l build-depends -d (_ "Show bulid dependencies")
complete -f -c apt-rdepends -s d -l dotty -d (_ "Generate a dotty graph")
-complete -f -c apt-rdepends -s p -l print-state -d (_ "Show state of deps")
-complete -f -c apt-rdepends -s r -l reverse -d (_ "List pkgs depending on")
-complete -r -f -c apt-rdepends -s f -l follow -d (_ "Only follow DEPENDS recursively")
-complete -r -f -c apt-rdepends -s s -l show -d (_ "Only show DEPENDS")
-complete -r -f -c apt-rdepends -l state-follow -d (_ "Only follow STATES recursively")
-complete -r -f -c apt-rdepends -l state-show -d (_ "Only show STATES")
+complete -f -c apt-rdepends -s p -l print-state -d (_ "Show state of dependencies")
+complete -f -c apt-rdepends -s r -l reverse -d (_ "List packages depending on")
+complete -r -f -c apt-rdepends -s f -l follow -d (_ "Comma-separated list of dependancy types to follow recursively")
+complete -r -f -c apt-rdepends -s s -l show -d (_ "Comma-separated list of dependancy types to show")
+complete -r -f -c apt-rdepends -l state-follow -d (_ "Comma-separated list of package installation states to follow recursively")
+complete -r -f -c apt-rdepends -l state-show -d (_ "Comma-separated list of package installation states to show")
complete -f -c apt-rdepends -l man -d (_ "Display man page")
complete -f -c apt-rdepends -l version -d (_ "Display version and exit")
diff --git a/init/completions/apt-show-source.fish b/init/completions/apt-show-source.fish
index 7b702a69..6c875f9c 100644
--- a/init/completions/apt-show-source.fish
+++ b/init/completions/apt-show-source.fish
@@ -1,10 +1,10 @@
#apt-show-source
complete -c apt-show-source -s h -l help -d (_ 'Display help and exit')
-complete -r -c apt-show-source -l status-file -d (_ 'Read pkg from FILE') -f
-complete -r -c apt-show-source -o stf -d (_ 'Read pkg from FILE') -f
+complete -r -c apt-show-source -l status-file -d (_ 'Read package from file') -f
+complete -r -c apt-show-source -o stf -d (_ 'Read package from file') -f
complete -r -c apt-show-source -l list-dir -a '(ls -Fp .|grep /$) /var/lib/apt/lists' -d (_ 'Specify APT list dir')
complete -r -c apt-show-source -o ld -a '(ls -Fp .|grep /$) /var/lib/apt/lists' -d (_ 'Specify APT list dir')
complete -r -c apt-show-source -s p -l package -a '(apt-cache pkgnames)' -d (_ 'List PKG info')
complete -f -c apt-show-source -l version-only -d (_ 'Display version and exit')
-complete -f -c apt-show-source -s a -l all -d (_ 'Print all src pkgs with version')
+complete -f -c apt-show-source -s a -l all -d (_ 'Print all source packages with version')
complete -f -c apt-show-source -s v -l verbose -d (_ 'Verbose mode')
diff --git a/init/completions/apt-show-versions.fish b/init/completions/apt-show-versions.fish
index d3ad04d8..f4ee6c60 100644
--- a/init/completions/apt-show-versions.fish
+++ b/init/completions/apt-show-versions.fish
@@ -2,13 +2,13 @@
complete -c apt-show-source -s h -l help -d (_ 'Display help and exit')
complete -r -c apt-show-versions -s p -l packages -a '(apt-cache pkgnames)' -d (_ 'Print PKG versions')
complete -f -c apt-show-versions -s r -l regex -d (_ 'Using regex')
-complete -f -c apt-show-versions -s u -l upgradeable -d (_ 'Print only upgradeable pkgs')
+complete -f -c apt-show-versions -s u -l upgradeable -d (_ 'Print only upgradeable packages')
complete -f -c apt-show-versions -s a -l allversions -d (_ 'Print all versions')
-complete -f -c apt-show-versions -s b -l brief -d (_ 'Print pkg name/distro')
+complete -f -c apt-show-versions -s b -l brief -d (_ 'Print package name/distro')
complete -f -c apt-show-versions -s v -l verbose -d (_ 'Print verbose info')
complete -f -c apt-show-versions -s i -l initialize -d (_ 'Init or update cache only')
-complete -r -c apt-show-versions -l status-file -d (_ 'Read pkg from FILE')
-complete -r -c apt-show-versions -o stf -d (_ 'Read pkg from FILE')
+complete -r -c apt-show-versions -l status-file -d (_ 'Read package from file')
+complete -r -c apt-show-versions -o stf -d (_ 'Read package from file')
complete -r -c apt-show-versions -l list-dir -a '(ls -Fp .|grep /$) /var/lib/apt/lists /var/state/apt/lists' -d (_ 'Specify APT list dir')
complete -r -c apt-show-versions -o ld -a '(ls -Fp .|grep /$) /var/lib/apt/lists /var/state/apt/lists' -d (_ 'Specify APT list dir')
diff --git a/init/completions/apt-src.fish b/init/completions/apt-src.fish
index cbfbafd5..98cda50b 100644
--- a/init/completions/apt-src.fish
+++ b/init/completions/apt-src.fish
@@ -1,17 +1,17 @@
#apt-src
complete -c apt-src -s h -l help -d (_ "Display help and exit")
-complete -f -c apt-src -a "update" -d (_ "Update list of src pkgs")
-complete -f -c apt-src -a "install" -d (_ "Install src pkgs")
-complete -f -c apt-src -a "upgrade" -d (_ "Upgrade src pkgs")
-complete -f -c apt-src -a "remove" -d (_ "Remove src pkgs")
-complete -f -c apt-src -a "build" -d (_ "Build src pkgs")
-complete -f -c apt-src -a "clean" -d (_ "Clean src pkgs")
-complete -f -c apt-src -a "import" -d (_ "Detect known src tree")
-complete -f -c apt-src -a "list" -d (_ "List installed src pkg\(s\)")
-complete -f -c apt-src -a "location" -d (_ "Root src tree")
-complete -f -c apt-src -a "version" -d (_ "Version of src pkg")
-complete -f -c apt-src -a "name" -d (_ "Name of the src pkg")
-complete -f -c apt-src -s b -l build -d (_ "Build src pkgs")
+complete -f -c apt-src -a "update" -d (_ "Update list of source packages")
+complete -f -c apt-src -a "install" -d (_ "Install source packages")
+complete -f -c apt-src -a "upgrade" -d (_ "Upgrade source packages")
+complete -f -c apt-src -a "remove" -d (_ "Remove source packages")
+complete -f -c apt-src -a "build" -d (_ "Build source packages")
+complete -f -c apt-src -a "clean" -d (_ "Clean source packages")
+complete -f -c apt-src -a "import" -d (_ "Detect known source tree")
+complete -f -c apt-src -a "list" -d (_ "List installed source package\(s\)")
+complete -f -c apt-src -a "location" -d (_ "Root source tree")
+complete -f -c apt-src -a "version" -d (_ "Version of source package")
+complete -f -c apt-src -a "name" -d (_ "Name of the source package")
+complete -f -c apt-src -s b -l build -d (_ "Build source packages")
complete -f -c apt-src -s i -l installdebs -d (_ "Install after build")
complete -f -c apt-src -s p -l patch -d (_ "Patch local changes")
complete -r -c apt-src -s l -l location -d (_ "Specify a dir")
diff --git a/init/completions/apt-zip-inst.fish b/init/completions/apt-zip-inst.fish
index 04517f19..34a302ef 100644
--- a/init/completions/apt-zip-inst.fish
+++ b/init/completions/apt-zip-inst.fish
@@ -3,7 +3,7 @@ complete -c apt-zip-inst -s h -l help -d (_ "Display help and exit")
complete -f -c apt-zip-inst -s V -l version -d (_ "Display version and exit")
complete -c apt-zip-inst -s m -l medium -d (_ "Removable medium")
complete -f -c apt-zip-inst -s a -l aptgetaction -a "dselect-upgrade upgrade dist-upgrade" -d (_ "Select an action")
-complete -c apt-zip-inst -s p -l packages -d (_ "List of pkgs to install")
+complete -c apt-zip-inst -s p -l packages -d (_ "List of packages to install")
complete -f -c apt-zip-inst -s f -l fix-broken -d (_ "Fix broken option")
complete -c apt-zip-inst -l skip-mount -d (_ "Specify a non-mountpoint dir")
diff --git a/init/completions/apt-zip-list.fish b/init/completions/apt-zip-list.fish
index b5f4373b..d62e2133 100644
--- a/init/completions/apt-zip-list.fish
+++ b/init/completions/apt-zip-list.fish
@@ -3,7 +3,7 @@ complete -c apt-zip-list -s h -l help -d (_ "Display help and exit")
complete -f -c apt-zip-list -s V -l version -d (_ "Display version and exit")
complete -c apt-zip-list -s m -l medium -d (_ "Removable medium")
complete -f -c apt-zip-list -s a -l aptgetaction -a "dselect-upgrade upgrade dist-upgrade" -d (_ "Select an action")
-complete -c apt-zip-list -s p -l packages -d (_ "List of pkgs to install")
+complete -c apt-zip-list -s p -l packages -d (_ "List of packages to install")
complete -f -c apt-zip-list -s f -l fix-broken -d (_ "Fix broken option")
complete -c apt-zip-list -l skip-mount -d (_ "Specify a non-mountpoint dir")
complete -c apt-zip-list -s M -l method -d (_ "Select a method")
diff --git a/init/completions/commandline.fish b/init/completions/commandline.fish
index 70924c9e..337f0185 100644
--- a/init/completions/commandline.fish
+++ b/init/completions/commandline.fish
@@ -1,12 +1,12 @@
-complete -c commandline -s a -l append -d (_ "Add text to the end of commandline")
+complete -c commandline -s a -l append -d (_ "Add text to the end of the selected area")
complete -c commandline -s i -l insert -d (_ "Add text at cursor")
-complete -c commandline -s r -l replace -d (_ "Replace selected part of buffer (replace)")
+complete -c commandline -s r -l replace -d (_ "Replace selected part")
-complete -c commandline -s j -l current-job -d (_ "Operate only on job under cursor")
-complete -c commandline -s p -l current-process -d (_ "Operate only on process under cursor")
-complete -c commandline -s t -l current-token -d (_ "Operate only on tokenizer token under cursor")
-complete -c commandline -s b -l current-buffer -d (_ "Operate on entire buffer (default)")
+complete -c commandline -s j -l current-job -d (_ "Select job under cursor")
+complete -c commandline -s p -l current-process -d (_ "Select process under cursor")
+complete -c commandline -s t -l current-token -d (_ "Select token under cursor")
+complete -c commandline -s b -l current-buffer -d (_ "Select entire command line (default)")
-complete -c commandline -s c -l cut-at-cursor -d (_ "Only return part of commandline before the cursor")
+complete -c commandline -s c -l cut-at-cursor -d (_ "Only return that part of the command line before the cursor")
complete -c commandline -s f -l function -d (_ "Inject readline functions to reader")
diff --git a/init/completions/cvs.fish b/init/completions/cvs.fish
index 26102247..4512c454 100644
--- a/init/completions/cvs.fish
+++ b/init/completions/cvs.fish
@@ -2,52 +2,52 @@
# I don't use CVS, so these completions are probably not all that good.
#
-complete -c cvs -x -a 'add' -d (_ 'Add a new file/directory to the repository')
-complete -c cvs -x -a 'admin' -d (_ 'Administration front end for rcs')
-complete -c cvs -x -a 'annotate' -d (_ 'Show last revision where each line was modified')
-complete -c cvs -x -a 'checkout' -d (_ 'Checkout sources for editing')
-complete -c cvs -x -a 'commit' -d (_ 'Check files into the repository')
-complete -c cvs -x -a 'diff' -d (_ 'Show differences between revisions')
-complete -c cvs -x -a 'edit' -d (_ 'Get ready to edit a watched file')
-complete -c cvs -x -a 'editors' -d (_ 'See who is editing a watched file')
-complete -c cvs -x -a 'export' -d (_ 'Export sources from CVS, similar to checkout')
-complete -c cvs -x -a 'history' -d (_ 'Show repository access history')
-complete -c cvs -x -a 'import' -d (_ 'Import sources into CVS, using vendor branches')
-complete -c cvs -x -a 'init' -d (_ 'Create a CVS repository if it doesnt exist')
-complete -c cvs -x -a 'kserver' -d (_ 'Kerberos server mode')
-complete -c cvs -x -a 'log' -d (_ 'Print out history information for files')
-complete -c cvs -x -a 'login' -d (_ 'Prompt for password for authenticating server')
-complete -c cvs -x -a 'logout' -d (_ 'Removes entry in .cvspass for remote repository')
-complete -c cvs -x -a 'pserver' -d (_ 'Password server mode')
-complete -c cvs -x -a 'rannotate' -d (_ 'Show last revision where each line of module was modified')
-complete -c cvs -x -a 'rdiff' -d (_ 'Create "patch" format diffs between releases')
-complete -c cvs -x -a 'release' -d (_ 'Indicate that a Module is no longer in use')
-complete -c cvs -x -a 'remove' -d (_ 'Remove an entry from the repository')
-complete -c cvs -x -a 'rlog' -d (_ 'Print out history information for a module')
-complete -c cvs -x -a 'rtag' -d (_ 'Add a symbolic tag to a module')
-complete -c cvs -x -a 'server' -d (_ 'Server mode')
-complete -c cvs -x -a 'status' -d (_ 'Display status information on checked out files')
-complete -c cvs -x -a 'tag' -d (_ 'Add a symbolic tag to checked out version of files')
-complete -c cvs -x -a 'unedit' -d (_ 'Undo an edit command')
-complete -c cvs -x -a 'update' -d (_ 'Bring work tree in sync with repository')
-complete -c cvs -x -a 'version' -d (_ 'Display version and exit')
-complete -c cvs -x -a 'watch' -d (_ 'Set watches')
-complete -c cvs -x -a 'watchers' -d (_ 'See who is watching a file')
+complete -c cvs -x -a 'add' -d (_ "Add a new file/directory to the repository")
+complete -c cvs -x -a 'admin' -d (_ "Administration front end for rcs")
+complete -c cvs -x -a 'annotate' -d (_ "Show last revision where each line was modified")
+complete -c cvs -x -a 'checkout' -d (_ "Checkout sources for editing")
+complete -c cvs -x -a 'commit' -d (_ "Check files into the repository")
+complete -c cvs -x -a 'diff' -d (_ "Show differences between revisions")
+complete -c cvs -x -a 'edit' -d (_ "Get ready to edit a watched file")
+complete -c cvs -x -a 'editors' -d (_ "See who is editing a watched file")
+complete -c cvs -x -a 'export' -d (_ "Export sources from CVS, similar to checkout")
+complete -c cvs -x -a 'history' -d (_ "Show repository access history")
+complete -c cvs -x -a 'import' -d (_ "Import sources into CVS, using vendor branches")
+complete -c cvs -x -a 'init' -d (_ "Create a CVS repository if it doesnt exist")
+complete -c cvs -x -a 'kserver' -d (_ "Kerberos server mode")
+complete -c cvs -x -a 'log' -d (_ "Print out history information for files")
+complete -c cvs -x -a 'login' -d (_ "Prompt for password for authenticating server")
+complete -c cvs -x -a 'logout' -d (_ "Removes entry in .cvspass for remote repository")
+complete -c cvs -x -a 'pserver' -d (_ "Password server mode")
+complete -c cvs -x -a 'rannotate' -d (_ "Show last revision where each line of module was modified")
+complete -c cvs -x -a 'rdiff' -d (_ "Create "patch" format diffs between releases")
+complete -c cvs -x -a 'release' -d (_ "Indicate that a Module is no longer in use")
+complete -c cvs -x -a 'remove' -d (_ "Remove an entry from the repository")
+complete -c cvs -x -a 'rlog' -d (_ "Print out history information for a module")
+complete -c cvs -x -a 'rtag' -d (_ "Add a symbolic tag to a module")
+complete -c cvs -x -a 'server' -d (_ "Server mode")
+complete -c cvs -x -a 'status' -d (_ "Display status information on checked out files")
+complete -c cvs -x -a 'tag' -d (_ "Add a symbolic tag to checked out version of files")
+complete -c cvs -x -a 'unedit' -d (_ "Undo an edit command")
+complete -c cvs -x -a 'update' -d (_ "Bring work tree in sync with repository")
+complete -c cvs -x -a 'version' -d (_ "Display version and exit")
+complete -c cvs -x -a 'watch' -d (_ "Set watches")
+complete -c cvs -x -a 'watchers' -d (_ "See who is watching a file")
-complete -c cvs -x -s H -d (_ 'Displays usage information for command')
-complete -c cvs -x -s Q -d (_ 'Cause CVS to be really quiet')
-complete -c cvs -x -s q -d (_ 'Cause CVS to be somewhat quiet')
-complete -c cvs -x -s r -d (_ 'Make checked-out files read-only')
-complete -c cvs -x -s w -d (_ 'Make checked-out files read-write (default)')
-complete -c cvs -x -s n -d (_ 'Do not execute anything that will change the disk')
-complete -c cvs -x -s t -d (_ 'Show trace of program execution -- try with -n')
-complete -c cvs -x -s v -d (_ 'Display version and exit')
-complete -c cvs -x -s T -r -d (_ 'Use "tmpdir" for temporary files')
-complete -c cvs -x -s e -r -d (_ 'Use "editor" for editing log information')
-complete -c cvs -x -s d -r -d (_ 'Overrides $CVSROOT as the root of the CVS tree')
-complete -c cvs -x -s f -d (_ 'Do not use the ~/.cvsrc file')
-complete -c cvs -x -s z -d (_ 'Compression level for net traffic') -x -a '1 2 3 4 5 6 7 8 9'
-complete -c cvs -x -s x -d (_ 'Encrypt all net traffic')
-complete -c cvs -x -s a -d (_ 'Authenticate all net traffic')
-complete -c cvs -x -s s -d (_ 'Set CVS user variable') -x
+complete -c cvs -x -s H -d (_ "Displays usage information for command")
+complete -c cvs -x -s Q -d (_ "Cause CVS to be really quiet")
+complete -c cvs -x -s q -d (_ "Cause CVS to be somewhat quiet")
+complete -c cvs -x -s r -d (_ "Make checked-out files read-only")
+complete -c cvs -x -s w -d (_ "Make checked-out files read-write (default)")
+complete -c cvs -x -s n -d (_ "Do not execute anything that will change the disk")
+complete -c cvs -x -s t -d (_ "Show trace of program execution -- try with -n")
+complete -c cvs -x -s v -d (_ "Display version and exit")
+complete -c cvs -x -s T -r -d (_ "Use "tmpdir" for temporary files")
+complete -c cvs -x -s e -r -d (_ "Use "editor" for editing log information")
+complete -c cvs -x -s d -r -d (_ "Overrides $CVSROOT as the root of the CVS tree")
+complete -c cvs -x -s f -d (_ "Do not use the ~/.cvsrc file")
+complete -c cvs -x -s z -d (_ "Compression level for net traffic") -x -a '1 2 3 4 5 6 7 8 9'
+complete -c cvs -x -s x -d (_ "Encrypt all net traffic")
+complete -c cvs -x -s a -d (_ "Authenticate all net traffic")
+complete -c cvs -x -s s -d (_ "Set CVS user variable") -x
diff --git a/init/completions/gcc.fish b/init/completions/gcc.fish
index 8ddf1507..d19cf251 100644
--- a/init/completions/gcc.fish
+++ b/init/completions/gcc.fish
@@ -2,7 +2,7 @@
# The gcc completion list is incomplete. There are just so many of them...
#
-complete -c gcc -s x -d (_ 'Language') -x -a '
+complete -c gcc -s x -d (_ "Language") -x -a '
c
c-header
cpp-output
@@ -20,16 +20,16 @@ complete -c gcc -s x -d (_ 'Language') -x -a '
treelang
none
'
-complete -c gcc -o pass-exit-codes -d (_ 'Pass program exit codes')
-complete -c gcc -s c -d (_ 'Stop after assembler')
-complete -c gcc -s S -d (_ 'Stop after compile')
-complete -c gcc -s E -d (_ 'Stop after preprocesswor')
-complete -c gcc -s o -r -d (_ 'Output file')
-complete -c gcc -s v -d (_ 'Print commands to stderr')
-complete -c gcc -o \#\#\# -d (_ 'Print quoted commands to stderr, do not run')
-complete -c gcc -o pipe -d (_ 'Use pipes')
-complete -c gcc -o ansi -d (_ 'Use ansi mode')
-complete -c gcc -o std -d (_ 'Standard mode') -x -a '
+complete -c gcc -o pass-exit-codes -d (_ "Pass program exit codes")
+complete -c gcc -s c -d (_ "Stop after assembler")
+complete -c gcc -s S -d (_ "Stop after compile")
+complete -c gcc -s E -d (_ "Stop after preprocesswor")
+complete -c gcc -s o -r -d (_ "Output file")
+complete -c gcc -s v -d (_ "Print commands to stderr")
+complete -c gcc -o \#\#\# -d (_ "Print quoted commands to stderr, do not run")
+complete -c gcc -o pipe -d (_ "Use pipes")
+complete -c gcc -o ansi -d (_ "Use ansi mode")
+complete -c gcc -o std -d (_ "Standard mode") -x -a '
c89\t"ISO C90"
iso9899:1990\t"ISO C90"
iso9899:199409\t"ISO C90 as modified in amendment 1"
@@ -43,54 +43,54 @@ complete -c gcc -o std -d (_ 'Standard mode') -x -a '
c++98\t"ISO C++98"
gnu++98\t"ISO C++98 plus GNU extentions"
'
-complete -c gcc -o aux-info -r -d (_ 'Write prototypes to file')
-complete -c gcc -o fno-asm -d (_ 'Do not recognize asm, inline or typeof keywords')
-complete -c gcc -o fno-builtin -d (_ 'Do not use builtin functions')
-complete -c gcc -o fhosted -d (_ 'Assert hosted environment')
-complete -c gcc -o ffreestanding -d (_ 'Assert freestanding environment')
-complete -c gcc -o fms-extensions -d (_ 'Use Microsoft extensions')
-complete -c gcc -o trigraphs -d (_ 'Use ANSI trigraphs')
-complete -c gcc -o no-integrated-cpp -d (_ 'Do not use integrated preprocessor')
-complete -c gcc -o funsigned-char -d (_ 'char is unsigned')
-complete -c gcc -o fsigned-char -d (_ 'char is signed')
-complete -c gcc -o funsigned-bitfields -d (_ 'bitfield is unsigned')
-complete -c gcc -o fsigned-bitfields -d (_ 'bitfield is signed')
-complete -c gcc -o fno-unsigned-bitfields -d (_ 'All bitfields are signed')
-complete -c gcc -o fno-signed-bitfields -d (_ 'All bitfields are unsigned')
-complete -c gcc -o fwritable-strings -d (_ 'String constants are not const')
-complete -c gcc -o fabi-version -d (_ 'C++ ABI version') -r -x -a '1 0'
-complete -c gcc -o fno-access-control -d (_ 'Turn off access checking')
-complete -c gcc -o fcheck-new -d (_ 'Check pointer returned by new')
-complete -c gcc -o fconserve-space -d (_ 'Put globals in the common segment')
-complete -c gcc -o fno-const-strings -d (_ 'String constants are not const')
-complete -c gcc -o fdollars-in-identifiers -d (_ 'Accept $ in identifiers')
-complete -c gcc -o fno-dollars-in-identifiers -d (_ 'Reject $ in identifiers')
-complete -c gcc -o fno-elide-constructors -d (_ 'Do not omit unneeded temporarys')
-complete -c gcc -o fno-enforce-eh-specs -d (_ 'Allow exception violations')
-complete -c gcc -o ffor-scope -d (_ 'Do not extend for-loop scope')
-complete -c gcc -o fno-for-scope -d (_ 'Extend for-loop scope')
-complete -c gcc -o fno-gnu-keywords -d (_ 'Do not recognize typeof as keyword')
-complete -c gcc -o fno-implicit-templates -d (_ 'Do not emit code for implicit templates')
-complete -c gcc -o fno-implicit-inline-templates -d (_ 'Do not emit code for implicit inline templates')
-complete -c gcc -o fno-implement-inlines -d (_ 'Do not emit out-of-line code for inline functions')
-complete -c gcc -o fms-extensions -d (_ 'Disable warnings about MFC')
-complete -c gcc -o fno-nonansi-builtins -d (_ 'Disable some built-in functions')
-complete -c gcc -o fno-operator-names -d (_ 'Disable operator keywords')
-complete -c gcc -o fno-optional-diags -d (_ 'Disable optional diagnostics')
-complete -c gcc -o fpermissive -d (_ 'Downgrade some errors to warnings')
-complete -c gcc -o frepo -d (_ 'Enable automatic template instantiation at link time')
-complete -c gcc -o fno-rtti -d (_ 'Disable generation of C++ runtime type information')
-#complete -c gcc -o fstats -d (_ 'Emit front-end usage statistics')
+complete -c gcc -o aux-info -r -d (_ "Write prototypes to file")
+complete -c gcc -o fno-asm -d (_ "Do not recognize asm, inline or typeof keywords")
+complete -c gcc -o fno-builtin -d (_ "Do not use builtin functions")
+complete -c gcc -o fhosted -d (_ "Assert hosted environment")
+complete -c gcc -o ffreestanding -d (_ "Assert freestanding environment")
+complete -c gcc -o fms-extensions -d (_ "Use Microsoft extensions")
+complete -c gcc -o trigraphs -d (_ "Use ANSI trigraphs")
+complete -c gcc -o no-integrated-cpp -d (_ "Do not use integrated preprocessor")
+complete -c gcc -o funsigned-char -d (_ "char is unsigned")
+complete -c gcc -o fsigned-char -d (_ "char is signed")
+complete -c gcc -o funsigned-bitfields -d (_ "bitfield is unsigned")
+complete -c gcc -o fsigned-bitfields -d (_ "bitfield is signed")
+complete -c gcc -o fno-unsigned-bitfields -d (_ "All bitfields are signed")
+complete -c gcc -o fno-signed-bitfields -d (_ "All bitfields are unsigned")
+complete -c gcc -o fwritable-strings -d (_ "String constants are not const")
+complete -c gcc -o fabi-version -d (_ "C++ ABI version") -r -x -a '1 0'
+complete -c gcc -o fno-access-control -d (_ "Turn off access checking")
+complete -c gcc -o fcheck-new -d (_ "Check pointer returned by new")
+complete -c gcc -o fconserve-space -d (_ "Put globals in the common segment")
+complete -c gcc -o fno-const-strings -d (_ "String constants are not const")
+complete -c gcc -o fdollars-in-identifiers -d (_ "Accept $ in identifiers")
+complete -c gcc -o fno-dollars-in-identifiers -d (_ "Reject $ in identifiers")
+complete -c gcc -o fno-elide-constructors -d (_ "Do not omit unneeded temporarys")
+complete -c gcc -o fno-enforce-eh-specs -d (_ "Allow exception violations")
+complete -c gcc -o ffor-scope -d (_ "Do not extend for-loop scope")
+complete -c gcc -o fno-for-scope -d (_ "Extend for-loop scope")
+complete -c gcc -o fno-gnu-keywords -d (_ "Do not recognize typeof as keyword")
+complete -c gcc -o fno-implicit-templates -d (_ "Do not emit code for implicit templates")
+complete -c gcc -o fno-implicit-inline-templates -d (_ "Do not emit code for implicit inline templates")
+complete -c gcc -o fno-implement-inlines -d (_ "Do not emit out-of-line code for inline functions")
+complete -c gcc -o fms-extensions -d (_ "Disable warnings about MFC")
+complete -c gcc -o fno-nonansi-builtins -d (_ "Disable some built-in functions")
+complete -c gcc -o fno-operator-names -d (_ "Disable operator keywords")
+complete -c gcc -o fno-optional-diags -d (_ "Disable optional diagnostics")
+complete -c gcc -o fpermissive -d (_ "Downgrade some errors to warnings")
+complete -c gcc -o frepo -d (_ "Enable automatic template instantiation at link time")
+complete -c gcc -o fno-rtti -d (_ "Disable generation of C++ runtime type information")
+#complete -c gcc -o fstats -d (_ "Emit front-end usage statistics")
for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17;
complete -c gcc -o ftemplate-depth-1 -d (printf (_ "Set maximum template depth to %s") $i);
end;
-complete -c gcc -o fno-threadsafe-statistics -d (_ 'Do not emit code for thread-safe initialization of local statics')
-complete -c gcc -o fuse-cxa-atexit -d (_ 'Use __cxa_atexit for destructors')
-complete -c gcc -o fvisibility-inlines-hidden -d (_ 'Hides inline methods from export table')
-complete -c gcc -o fno-weak -d (_ 'Do not use weak symbol support')
+complete -c gcc -o fno-threadsafe-statistics -d (_ "Do not emit code for thread-safe initialization of local statics")
+complete -c gcc -o fuse-cxa-atexit -d (_ "Use __cxa_atexit for destructors")
+complete -c gcc -o fvisibility-inlines-hidden -d (_ "Hides inline methods from export table")
+complete -c gcc -o fno-weak -d (_ "Do not use weak symbol support")
# gcc completion listing is incomplete.
-#complete -c gcc -o -d (_ '')
+#complete -c gcc -o -d (_ "")
diff --git a/init/completions/gprof.fish b/init/completions/gprof.fish
index 31cbb898..959ef207 100644
--- a/init/completions/gprof.fish
+++ b/init/completions/gprof.fish
@@ -29,6 +29,6 @@ complete -xc gprof -s N -l no-time -d (_ "Do not propagate times for matching sy
complete -xc gprof -s z -l display-unused-functions -d (_ "Mention unused functions in flat profile")
complete -xc gprof -s d -l debug -d (_ "Specify debugging options")
complete -xc gprof -s h -l help -d (_ "Display help and exit")
-complete -xc gprof -s v -l version -d (_ "Display version and exit and exit")
+complete -xc gprof -s v -l version -d (_ "Display version and exit")
complete -xc gprof -s O -l file-format -x -a "auto bsd 4.4bsd magic prof" -d (_ "Profile data format")
complete -xc gprof -s s -l sum -d (_ "Print summary")
diff --git a/init/completions/help.fish b/init/completions/help.fish
index bbbd0a5a..853a9ba8 100644
--- a/init/completions/help.fish
+++ b/init/completions/help.fish
@@ -6,7 +6,7 @@ for i in (builtin -n)
complete -c help -x -a $i -d (printf (_ "Help for the '%s' builtin") $i)
end
-for i in count dirh dirs help mimedb nextd open popd prevd pushd set_color tokenize psub umask type
+for i in count dirh dirs help mimedb nextd open popd prevd pushd set_color psub umask type
complete -c help -x -a $i -d (printf (_ "Help for the '%s' command") $i )
end
diff --git a/init/completions/jobs.fish b/init/completions/jobs.fish
index 52f4151b..c3a0cb6c 100644
--- a/init/completions/jobs.fish
+++ b/init/completions/jobs.fish
@@ -3,4 +3,4 @@
complete -c jobs -s p -l pid -d (_ "Show the process id of each process in the job")
complete -c jobs -s g -l group -d (_ "Show group id of job")
complete -c jobs -s c -l command -d (_ "Show commandname of each job")
-complete -c jobs -s l -l last -d (_ "Show status for last be started")
+complete -c jobs -s l -l last -d (_ "Only show status for last job to be started")
diff --git a/init/completions/ls.fish b/init/completions/ls.fish
index 512bc3fa..af45e224 100644
--- a/init/completions/ls.fish
+++ b/init/completions/ls.fish
@@ -12,12 +12,12 @@ for i in ls ll la
complete -c $i -l color -f -a "never always auto" -d (_ "Use colors")
complete -c $i -s d -l directory -d (_ "List directories, not their content")
complete -c $i -s D -l dired -d (_ "Generate dired output")
- complete -c $i -s f -d (_ "Do not sort")
+ complete -c $i -s f -d (_ "Don't sort")
complete -c $i -s F -l classify -d (_ "Append filetype indicator")
complete -c $i -l format -x -a "across commas horizontal long single-column verbose vertical" -d (_ "List format")
complete -c $i -l full-time -d (_ "Long format, full-iso time")
complete -c $i -s g -d (_ "Long format without owner")
- complete -c $i -s G -l no-group -d (_ "Do not print group information")
+ complete -c $i -s G -l no-group -d (_ "Don't print group information")
complete -c $i -s h -l human-readable -d (_ "Human readable sizes")
complete -c $i -l si -d (_ "Human readable sizes, powers of 1000")
complete -c $i -s H -l dereference-command-line -d (_ "Follow symlinks")
@@ -43,7 +43,7 @@ for i in ls ll la
complete -c $i -s S -d (_ "Sort by size")
complete -c $i -l sort -x -d (_ "Sort criteria") -a "
extension\t'Sort by file extension'
- none\t'Do not sort'
+ none\tDon't\ sort
size\t'Sort by size'
time\t'Sort by modification time'
version\t'Sort by version'
diff --git a/init/completions/man.fish b/init/completions/man.fish
index 8c0e3a4a..1a2bbaa2 100644
--- a/init/completions/man.fish
+++ b/init/completions/man.fish
@@ -51,10 +51,10 @@ complete -c man -s a -d (_ "Display all matches")
complete -c man -s c -d (_ "Always reformat")
complete -c man -s d -d (_ "Debug")
complete -c man -s D -d (_ "Debug and run")
-complete -c man -s f -d (_ "Whatis")
+complete -c man -s f -d (_ "Show whatis information")
complete -c man -s F -l preformat -d (_ "Format only")
complete -c man -s h -d (_ "Display help and exit")
-complete -c man -s k -d (_ "Apropos")
+complete -c man -s k -d (_ "Show apropos information")
complete -c man -s K -d (_ "Search in all man pages")
complete -xc man -s m -d (_ "Set system")
complete -xc man -s p -d (_ "Preprocessors")
diff --git a/init/completions/mplayer.fish b/init/completions/mplayer.fish
index 7c38df53..653aa530 100644
--- a/init/completions/mplayer.fish
+++ b/init/completions/mplayer.fish
@@ -44,7 +44,7 @@ complete -c mplayer -o dvd-device -d (_ "Set default DVD-ROM drive")
complete -c mplayer -o dvdangle -d (_ "Set dvd viewing angle") -x -a "1 2 3 4 5 6 7 8"
complete -c mplayer -o forceidx -d (_ "Force rebuilding index")
complete -c mplayer -o fps -d (_ "Override framerate") -x -a "24 25 30"
-complete -c mplayer -o idx -d (_ "Rebuild index if unavailable")
+complete -c mplayer -o idx -d (_ "Build index if unavailable")
complete -c mplayer -o loadidx -d (_ "Load index from file") -r
complete -c mplayer -o ni -d (_ "Force non-interleaved AVI parser")
complete -c mplayer -o saveidx -d (_ "Rebuild index and save to file") -r
diff --git a/init/completions/mv.fish b/init/completions/mv.fish
index b1038587..9f57f59f 100644
--- a/init/completions/mv.fish
+++ b/init/completions/mv.fish
@@ -6,7 +6,7 @@ complete -c mv -l strip-trailing-slashes -d (_ "Remove trailing slashes from sou
complete -c mv -s S -l suffix -r -d (_ "Backup suffix")
complete -c mv -l target-directory -d (_ "Target directory") -x -a "(__fish_complete_directory (commandline -ct) 'Target directory')"
complete -c mv -s u -l update -d (_ "Do not overwrite newer files")
-complete -c mv -s v -l vervose -d (_ "Explain what is done")
+complete -c mv -s v -l vervose -d (_ "Verbose mode")
complete -c mv -l help -d (_ "Display help and exit")
complete -c mv -l version -d (_ "Display version and exit")
diff --git a/init/completions/perl.fish b/init/completions/perl.fish
index 9bfe7280..62f49b07 100644
--- a/init/completions/perl.fish
+++ b/init/completions/perl.fish
@@ -1,5 +1,5 @@
complete -c perl -s 0 -d (_ 'Specify record separator')
-complete -c perl -s a -d (_ 'Feed input to split')A
+complete -c perl -s a -d (_ 'Turn on autosplit mode')
complete -c perl -s c -d (_ 'Check syntax')
complete -c perl -s d -d (_ 'Debugger')
complete -c perl -s D -x -d (_ 'Debug option')
@@ -7,7 +7,7 @@ complete -c perl -s e -x -d (_ 'Execute command')
complete -c perl -s F -d (_ 'Set regexp used to split input')
complete -c perl -s i -d (_ 'Edit files in-place')
complete -c perl -s I -d (_ 'Include path')
-complete -c perl -s l -d (_ 'Line ending processing')
+complete -c perl -s l -d (_ 'Automatic line ending processing')
complete -c perl -s n -d (_ 'Loop script')
complete -c perl -s p -d (_ 'Loop script, print $_')
complete -c perl -s P -d (_ 'Invoke CPP')
diff --git a/init/completions/ping.fish b/init/completions/ping.fish
index b7689d52..b222a446 100644
--- a/init/completions/ping.fish
+++ b/init/completions/ping.fish
@@ -3,25 +3,25 @@ complete -c ping -s a -d (_ "Audible ping")
complete -c ping -s A -d (_ "Adaptive ping")
complete -c ping -s b -d (_ "Allow pinging a broadcast address")
complete -c ping -s B -d (_ "Do not allow ping to change source address of probes")
-complete -c ping -s c -d (_ "Stop after sending count ECHO_REQUEST packets") -x
+complete -c ping -s c -d (_ "Stop after specified number of ECHO_REQUEST packets") -x
complete -c ping -s d -d (_ "Set the SO_DEBUG option on the socket being used")
-complete -c ping -s F -d (_ "Allocate and set 20 bit flow label on echo request packets") -x
+complete -c ping -s F -d (_ "Allocate and set 20 bit flow label on ECHO_REQUEST packets") -x
complete -c ping -s f -d (_ "Flood ping")
-complete -c ping -s i -d (_ "Wait interval seconds between sending each packet") -x
+complete -c ping -s i -d (_ "Wait specified interval of seconds between sending each packet") -x
complete -c ping -s I -d (_ "Set source address to specified interface address") -x -a "(__fish_print_interfaces; fish_print_addresses)"
-complete -c ping -s l -d (_ "If preload is specified, ping sends that many packets not waiting for reply") -x
+complete -c ping -s l -d (_ "Send the specified number of packets without waiting for reply") -x
complete -c ping -s L -d (_ "Suppress loopback of multicast packets")
complete -c ping -s n -d (_ "Numeric output only")
-complete -c ping -s p -d (_ "You may specify up to 16 'pad' bytes to fill out the packet you send") -x
+complete -c ping -s p -d (_ "Pad packet with empty bytes") -x
complete -c ping -s Q -d (_ "Set Quality of Service -related bits in ICMP datagrams") -x
complete -c ping -s q -d (_ "Quiet mode")
complete -c ping -s R -d (_ "Record route")
-complete -c ping -s r -d (_ "Bypass the normal routing tables and send directly to a host on an attached interface")
-complete -c ping -s s -d (_ "Specifies the number of data bytes to be sent") -x
-complete -c ping -s S -d (_ "Set socket sndbuf") -x
+complete -c ping -s r -d (_ "Bypass the normal routing tables and send directly to a host on an attached interface")
+complete -c ping -s s -d (_ "Specifies the number of data bytes to be sent") -x
+complete -c ping -s S -d (_ "Set socket buffer size") -x
complete -c ping -s t -d (_ "Set the IP Time to Live") -x
complete -c ping -s T -d (_ "Set special IP timestamp options") -x
-complete -c ping -s M -d (_ "Select Path MTU Discovery strategy") -x -a "do want dont"
+complete -c ping -s M -d (_ "Select Path MTU Discovery strategy") -x -a "do want dont"
complete -c ping -s U -d (_ "Print full user-to-user latency")
complete -c ping -s v -d (_ "Verbose mode")
complete -c ping -s V -d (_ "Display version and exit")
diff --git a/init/completions/ps.fish b/init/completions/ps.fish
index 8c041843..30eb974b 100644
--- a/init/completions/ps.fish
+++ b/init/completions/ps.fish
@@ -25,7 +25,7 @@ complete -c ps -s j -d (_ "Jobs format")
complete -c ps -s l -d (_ "Long format")
complete -c ps -s o -l format -d (_ "User defined format") -x
complete -c ps -s y -d (_ "Do not show flags")
-complete -c ps -s Z -l context -d (_ "Display security context format")
+complete -c ps -s Z -l context -d (_ "Add column for security data")
complete -c ps -s H -l forest -d (_ "Show hierarchy")
complete -c ps -s n -d (_ "Set namelist file") -r
complete -c ps -s w -d (_ "Wide output")
@@ -33,5 +33,5 @@ complete -c ps -s L -d (_ "Show threads")
complete -c ps -s T -d (_ "Show threads")
complete -c ps -s V -l version -d (_ "Display version and exit")
complete -c ps -l help -d (_ "Display help and exit")
-complete -c ps -l info -d (_ "Display debugging info")
+complete -c ps -l info -d (_ "Display debug info")
diff --git a/init/completions/python.fish b/init/completions/python.fish
index a2d219b8..1e94a60f 100644
--- a/init/completions/python.fish
+++ b/init/completions/python.fish
@@ -7,8 +7,8 @@ complete -c python -s O -d (_ "Enable optimizations")
complete -c python -s Q -x -a "old new" -d (_ "Division control")
complete -c python -s S -d (_ "Disable import of site module")
complete -c python -s t -d (_ "Warn on mixed tabs and spaces")
-complete -c python -s u -d (_ "Unbuffered inputg and output")
+complete -c python -s u -d (_ "Unbuffered input and output")
complete -c python -s v -d (_ "Verbose mode")
complete -c python -s V -d (_ "Display version and exit")
complete -c python -s W -x -d (_ "Warning control") -a "ignore default all module once error"
-complete -c python -s x -d (_ "Skip first line of input")
+complete -c python -s x -d (_ "Ignore first line of input")
diff --git a/init/completions/rm.fish b/init/completions/rm.fish
index 55b78441..f869fdbd 100644
--- a/init/completions/rm.fish
+++ b/init/completions/rm.fish
@@ -2,8 +2,8 @@
complete -c rm -s d -l directory -d (_ "Unlink directory (Only by superuser)")
complete -c rm -s f -l force -d (_ "Never prompt before removal")
complete -c rm -s i -l interactive -d (_ "Prompt before removal")
-complete -c rm -s r -l recursive -d (_ "Remove content of subdirectories")
-complete -c rm -s R -d (_ "Remove content of subdirectories")
+complete -c rm -s r -l recursive -d (_ "Recursively remove subdirectories")
+complete -c rm -s R -d (_ "Recursively remove subdirectories")
complete -c rm -s v -l verbose -d (_ "Explain what is done")
complete -c rm -s h -l help -d (_ "Display help and exit")
complete -c rm -l version -d (_ "Display version and exit")
diff --git a/init/completions/rmdir.fish b/init/completions/rmdir.fish
index fb9f9667..9cb6a691 100644
--- a/init/completions/rmdir.fish
+++ b/init/completions/rmdir.fish
@@ -2,7 +2,7 @@
complete -x -c rmdir -a "(__fish_complete_directory (commandline -ct))"
complete -c rmdir -l ignore-fail-on-non-empty -d (_ "Ignore errors from non-empty directories")
complete -c rmdir -s p -l parents -d (_ "Remove each component of path")
-complete -c rmdir -s v -l verbose -d (_ "Explain what is done")
+complete -c rmdir -s v -l verbose -d (_ "Verbose mode")
complete -c rmdir -l help -d (_ "Display help and exit")
complete -c rmdir -l version -d (_ "Display version and exit")
diff --git a/init/completions/rpm.fish b/init/completions/rpm.fish
index 2f9b6498..ed7fe721 100644
--- a/init/completions/rpm.fish
+++ b/init/completions/rpm.fish
@@ -20,25 +20,22 @@ complete -c rpm -l root -d (_ "Specify root directory for rpm operations") -a "
set -- rpm_install -c rpm -n "__fish_contains_opt -s i -s U -s F install upgrade freshen"
complete $rpm_install -l aid -d (_ "Add suggested packages to the transaction set when needed")
-complete $rpm_install -l allfiles -d (_ "Installs or upgrades all the missing ok files in the package, regardless if they exist")
+complete $rpm_install -l allfiles -d (_ "Installs or upgrades all the files in the package, even if they aren't needed (missingok) and don't exist")
complete $rpm_install -l badreloc -d (_ "Used with --relocate, permit relocations on all file paths, not just those OLD-PATH's included in the binary package relocation hint(s)")
-complete $rpm_install -l aid -d (_ 'Add suggested packages to the transaction set when needed')
-complete $rpm_install -l allfiles -d (_ 'Installs or upgrades all the missingok files in the package, regardless if they exist')
-complete $rpm_install -l badreloc -d (_ "Used with --relocate, permit relocations on all file paths, not just those OLD-PATH's included in the binary package relocation hint(s)")
-complete $rpm_install -l excludepath -d (_ "Don't install files whose name begins with OLDPATH") -xa "(__fish_complete_directory (commandline -ct) 'Skip installation of files in this directory')"
-complete $rpm_install -l excludedocs -d (_ "Don't install any files which are marked as documentation (which includes man pages and texinfo documents)")
+complete $rpm_install -l excludepath -d (_ "Don't install files whose name begins with specified path") -xa "(__fish_complete_directory (commandline -ct) 'Skip installation of files in this directory')"
+complete $rpm_install -l excludedocs -d (_ "Don't install any files which are marked as documentation")
complete $rpm_install -l force -d (_ 'Same as using --replacepkgs, --replacefiles, and --oldpackage')
-complete $rpm_install -s h -l hash -d (_ 'Print 50 hash marks as the package archive is unpacked. Use with -v or --verbose for a nicer display')
-complete $rpm_install -l ignoresize -d (_ "Don't check mount file systems for sufficient disk space before installing this package")
+complete $rpm_install -s h -l hash -d (_ 'Print 50 hash marks as the package archive is unpacked')
+complete $rpm_install -l ignoresize -d (_ "Don't check for sufficient disk space before installation"
complete $rpm_install -l ignorearch -d (_ "Allow installation or upgrading even if the architectures of the binary package and host don't match")
complete $rpm_install -l ignoreos -d (_ "Allow installation or upgrading even if the operating systems of the binary package and host don't match")
-complete $rpm_install -l includedocs -d (_ 'Install documentation files. This is the default behavior')
+complete $rpm_install -l includedocs -d (_ 'Install documentation files (default)')
complete $rpm_install -l justdb -d (_ 'Update only the database, not the filesystem')
complete $rpm_install -l nodigest -d (_ "Don't verify package or header digests when reading")
complete $rpm_install -l nosignature -d (_ "Don't verify package or header signatures when reading")
-complete $rpm_install -l nodeps -d (_ "Don't do a dependency check before installing or upgrading a package")
+complete $rpm_install -l nodeps -d (_ "Don't do a dependency check")
complete $rpm_install -l nosuggest -d (_ "Don't suggest package(s) that provide a missing dependency")
-complete $rpm_install -l noorder -d (_ "Don't reorder the packages for an install. The list of packages would normally be reordered to satisfy dependencies")
+complete $rpm_install -l noorder -d (_ "Don't change the package installation order" )
complete $rpm_install -l noscripts -d (_ "Don't execute scripts")
complete $rpm_install -l nopre -d (_ "Don't execute pre scripts")
complete $rpm_install -l nopost -d (_ "Don't execute post scripts")
@@ -51,8 +48,8 @@ complete $rpm_install -l notriggerpostun -d (_ "Don't execute triggerpostun scri
complete $rpm_install -l oldpackage -d (_ 'Allow an upgrade to replace a newer package with an older one')
complete $rpm_install -l percent -d (_ 'Print percentages as files are unpacked from the package archive. This is intended to make rpm easy to run from other tools')
complete $rpm_install -l prefix -d (_ 'For relocatable binary packages, translate all file paths that start with the installation prefix in the package relocation hint(s) to NEWPATH') -xa "(__fish_complete_directory (commandline -ct) 'Directory prefix for relocatable packages')"
-complete $rpm_install -l relocate -x -d (_ "For relocatable binary packages, translate all file paths that start with OLDPATH in the package relocation hint(s) to NEWPATH. This option can be used repeatedly if several OLDPATH's in the package are to be relocated")
-complete $rpm_install -l repackage -d (_ 'Re-package the files before erasing. The previously installed package will be named according to the macro %_repackage_name_fmt and will be created in the directory named by the macro %_repackage_dir (default value is /var/spool/repackage)')
+complete $rpm_install -l relocate -x -d (_ "Translate all paths that start with first half of following parameter to second half of following parameter" )
+complete $rpm_install -l repackage -d (_ 'Re-package the files before erasing')
complete $rpm_install -l replacefiles -d (_ 'Install the packages even if they replace files from other, already installed, packages')
complete $rpm_install -l replacepkgs -d (_ 'Install the packages even if some of them are already installed on this system')
complete $rpm_install -l test -d (_ "Don't install the package, simply check for and report potential conflicts")
@@ -64,39 +61,39 @@ complete $rpm_query -s c -l configfiles -d (_ 'List only configuration files (im
complete $rpm_query -s d -l docfiles -d (_ 'List only documentation files (implies -l)')
complete $rpm_query -l dump -d (_ 'Dump file information. Must be used with at least one of -l, -c, -d')
complete $rpm_query -l filesbypkg -d (_ 'List all the files in each selected package')
-complete $rpm_query -s i -l info -d (_ 'Display package information, including name, version, and description. This uses the --queryformat if one was specified')
-complete $rpm_query -l last -d (_ 'Orders the package listing by install time such that the latest packages are at the top')
+complete $rpm_query -s i -l info -d (_ 'Display package information, including name, version, and description. Uses --queryformat if specified')
+complete $rpm_query -l last -d (_ 'Orders the package listing by install time')
complete $rpm_query -s l -l list -d (_ 'List files in package')
complete $rpm_query -l provides -d (_ 'List capabilities this package provides')
complete $rpm_query -s R -l requires -d (_ 'List packages on which this package depends')
-complete $rpm_query -l scripts -d (_ 'List the package specific scriptlet(s) that are used as part of the installation and uninstallation processes')
-complete $rpm_query -s s -l state -d (_ 'Display the states of files in the package (implies -l). The state of each file is one of normal, not installed, or replaced')
-complete $rpm_query -l triggers -d (_ 'Display the trigger scripts, if any, which are contained in the package')
-complete $rpm_query -l triggerscripts -d (_ 'Display the trigger scripts, if any, which are contained in the package')
+complete $rpm_query -l scripts -d (_ 'List the package specific scriptlets')
+complete $rpm_query -s s -l state -d (_ 'Display the states of files in the package. The state of each file is one of normal, not installed, or replaced')
+complete $rpm_query -l triggers -d (_ 'Display the trigger scripts contained in the package')
+complete $rpm_query -l triggerscripts -d (_ 'Display the trigger scripts contained in the package')
set -e rpm_query
set -- rpm_select -c rpm -n "__fish_contains_opt -s q -s V query verify"
complete $rpm_select -a "(__fish_print_packages)"
complete $rpm_select -s a -l all -d (_ 'Query all installed packages')
-complete $rpm_select -s f -l file -d (_ 'Query package owning FILE') -r
+complete $rpm_select -s f -l file -d (_ 'Query package owning specified file') -r
complete $rpm_select -l fileid -d (_ 'Query package that contains a given file identifier, i.e. the MD5 digest of the file contents') -x
-complete $rpm_select -s g -l group -d (_ 'Query packages with the group of GROUP') -x
+complete $rpm_select -s g -l group -d (_ 'Query packages with the specified group') -x
complete $rpm_select -l hdrid -d (_ 'Query package that contains a given header identifier, i.e. the SHA1 digest of the immutable header region') -x
-complete $rpm_select -s p -l package -d (_ 'Query an (uninstalled) package PACKAGE_FILE') -xa "(__fish_complete_suffix (commandline -ct) .rpm 'Query package file')"
+complete $rpm_select -s p -l package -d (_ 'Query an (uninstalled) package in specified file') -xa "(__fish_complete_suffix (commandline -ct) .rpm 'Query package file')"
complete $rpm_select -l pkgid -d (_ 'Query package that contains a given package identifier, i.e. the MD5 digest of the combined header and payload contents') -x
-complete $rpm_select -l specfile -d (_ 'Parse and query SPECFILE as if it were a package') -xa "(__fish_complete_suffix (commandline -ct) .spec 'Query package spec file')"
-complete $rpm_select -l tid -d (_ 'Query package(s) that have a given TID transaction identifier') -x
-complete $rpm_select -l triggeredby -d (_ 'Query packages that are triggered by package(s) PACKAGE_NAME') -x -a "(__fish_print_packages)"
-complete $rpm_select -l whatprovides -d (_ 'Query all packages that provide the CAPABILITY capability') -x
-complete $rpm_select -l whatrequires -d (_ 'Query all packages that requires CAPABILITY for proper functioning') -x
+complete $rpm_select -l specfile -d (_ 'Parse and query specified spec-file as if it were a package') -xa "(__fish_complete_suffix (commandline -ct) .spec 'Query package spec file')"
+complete $rpm_select -l tid -d (_ 'Query package(s) that have the specified TID (transaction identifier)') -x
+complete $rpm_select -l triggeredby -d (_ 'Query packages that are triggered by the specified packages') -x -a "(__fish_print_packages)"
+complete $rpm_select -l whatprovides -d (_ 'Query all packages that provide the specified capability') -x
+complete $rpm_select -l whatrequires -d (_ 'Query all packages that requires the specified capability for functioning') -x
set -e rpm_select
set -- rpm_verify -c rpm -n "__fish_contains_opt -s V verify"
complete $rpm_verify -l nodeps -d (_ "Don't verify dependencies of packages")
complete $rpm_verify -l nodigest -d (_ "Don't verify package or header digests when reading")
complete $rpm_verify -l nofiles -d (_ "Don't verify any attributes of package files")
-complete $rpm_verify -l noscripts -d (_ "Don't execute the %verifyscript scriptlet (if any)")
+complete $rpm_verify -l noscripts -d (_ "Don't execute the %verifyscript scriptlet")
complete $rpm_verify -l nosignature -d (_ "Don't verify package or header signatures when reading")
complete $rpm_verify -l nolinkto -d (_ "Don't verify linkto attribute")
complete $rpm_verify -l nomd5 -d (_ "Don't verify md5 attribute")
@@ -110,7 +107,7 @@ set -e rpm_verify
set -- rpm_erase -c rpm -n "__fish_contains_opt -s e erase"
complete $rpm_erase -a "(__fish_print_packages)"
-complete $rpm_erase -l allmatches -d (_ 'Remove all versions of the package which match PACKAGE_NAME. Normally an error is issued if PACKAGE_NAME matches multiple packages')
+complete $rpm_erase -l allmatches -d (_ 'Remove all versions of the package which match specified string')
complete $rpm_erase -l nodeps -d (_ "Don't check dependencies before uninstalling the packages")
complete $rpm_erase -l noscripts -d (_ "Don't execute scriplets")
complete $rpm_erase -l nopreun -d (_ "Don't execute preun scriptlet")
@@ -119,7 +116,7 @@ complete $rpm_erase -l notriggers -d (_ "Don't execute trigger scriptlets")
complete $rpm_erase -l notriggerun -d (_ "Don't execute triggerun scriptlets")
complete $rpm_erase -l notriggerpostun -d (_ "Don't execute triggerpostun scriptlets")
complete $rpm_erase -l repackage -d (_ 'Re-package the files before erasing')
-complete $rpm_erase -l test -d (_ "Don't really uninstall anything, just go through the motions")
+complete $rpm_erase -l test -d (_ "Don't really uninstall anything" )
set -e rpm_erase
set -- rpm_mode -c rpm -n '__fish_contains_opt -s e -s i -s F -s V -s U -s q erase install freshen verify upgrade query; if test $status = 0; false; else; true; end'
diff --git a/init/completions/ruby.fish b/init/completions/ruby.fish
index f3dbf8fd..08a061ef 100644
--- a/init/completions/ruby.fish
+++ b/init/completions/ruby.fish
@@ -1,6 +1,6 @@
#Completions for ruby
complete -c ruby -s 0 -d (_ 'Specify record separator')
-complete -c ruby -s a -d (_ 'Feed input to split')
+complete -c ruby -s a -d (_ 'Turn on autosplit mode')
complete -c ruby -s c -d (_ 'Check syntax')
complete -c ruby -s K -d (_ 'Kanji code-set')
complete -c ruby -s d -l debug -d (_ 'Debugger')
@@ -9,7 +9,7 @@ complete -c ruby -s h -l help -d (_ 'Display help and exit')
complete -c ruby -s F -d (_ 'Set regexp used to split input')
complete -c ruby -s i -d (_ 'Edit files in-place')
complete -c ruby -s I -d (_ 'Include path')
-complete -c ruby -s l -d (_ 'Line ending processing')
+complete -c ruby -s l -d (_ 'Automatic line ending processing')
complete -c ruby -s n -d (_ 'Loop script')
complete -c ruby -s p -d (_ 'Loop script, print $_')
complete -c ruby -s r -r -d (_ 'Require file')
diff --git a/init/completions/set.fish b/init/completions/set.fish
index 5d9bc605..f7ddbf3d 100644
--- a/init/completions/set.fish
+++ b/init/completions/set.fish
@@ -6,7 +6,7 @@ complete -c set -s x -l export -d (_ "Export variable to subprocess")
complete -c set -s u -l unexport -d (_ "Do not export variable to subprocess")
complete -c set -s g -l global -d (_ "Make variable scope global")
complete -c set -s l -l local -d (_ "Make variable scope local")
-complete -c set -s U -l universal -d (_ "Make variable scope universal, i.e. shared between all fish terminals")
+complete -c set -s U -l universal -d (_ "Make variable scope universal, i.e. share variable with all the users fish processes on this computer")
complete -c set -s q -l query -d (_ "Test if variable is defined")
complete -c set -s h -l help -d (_ "Display help and exit")
diff --git a/init/completions/sort.fish b/init/completions/sort.fish
index 2b5b8144..0fa9c170 100644
--- a/init/completions/sort.fish
+++ b/init/completions/sort.fish
@@ -11,7 +11,7 @@ complete -c sort -s k -l key -d (_ "Define key")
complete -c sort -s m -l merge -d (_ "Merge sorted files")
complete -c sort -s o -l output -f -d (_ "Write to file")
complete -c sort -s s -l stable -d (_ "Stabilize sort")
-complete -c sort -s S -l buffer-size -r -d (_ "Set main memory buffer")
+complete -c sort -s S -l buffer-size -r -d (_ "Set memory buffer size")
complete -c sort -s t -l field-separator -d (_ "Field separator")
complete -c sort -s T -l temporary-directory -r -d (_ "Set temporary directory")
complete -c sort -s u -l unique -d (_ "Output only first of equal lines")
diff --git a/init/completions/tar.fish b/init/completions/tar.fish
index b84cc1b9..41c8034e 100644
--- a/init/completions/tar.fish
+++ b/init/completions/tar.fish
@@ -20,14 +20,14 @@ complete -c tar -s F -l info-script -d (_ "Run script at end of tape")
complete -c tar -s G -l incremental -d (_ "Use old incremental GNU format")
complete -c tar -s g -l listed-incremental -d (_ "Use new incremental GNU format")
complete -c tar -s h -l dereference -d (_ "Derefrerence symlinks")
-complete -c tar -s i -l ignore-zeros -d (_ "Ignore zero bloch in archive")
+complete -c tar -s i -l ignore-zeros -d (_ "Ignore zero block in archive")
complete -c tar -s j -l bzip -d (_ "Filter through bzip2")
-complete -c tar -l ignore-failed-read -d (_ "Dont exit on unreadable files")
-complete -c tar -s k -l keep-old-files -d (_ "Do not overwrite")
+complete -c tar -l ignore-failed-read -d (_ "Don't exit on unreadable files")
+complete -c tar -s k -l keep-old-files -d (_ "Don't overwrite")
complete -c tar -s K -l starting-file -r -d (_ "Starting file in archive")
complete -c tar -s l -l one-file-system -d (_ "Stay in local filesystem")
complete -c tar -s L -l tape-length -r -d (_ "Tape length")
-complete -c tar -s m -l modification-time -d (_ "Dont extract modification time")
+complete -c tar -s m -l modification-time -d (_ "Don't extract modification time")
complete -c tar -s M -l multi-volume -d (_ "Multi volume archive")
complete -c tar -s N -l after-date -r -d (_ "Only store newer files")
complete -c tar -s o -l old-archive -d (_ "Use V7 format")
@@ -35,7 +35,7 @@ complete -c tar -l portability -d (_ "Use V7 format")
complete -c tar -s O -l to-stdout -d (_ "Extract to stdout")
complete -c tar -s p -l same-permissions -d (_ "Extract all permissions")
complete -c tar -l preserve-permissions -d (_ "Extract all permissions")
-complete -c tar -s P -l absolute-paths -d (_ "Dont strip leading /")
+complete -c tar -s P -l absolute-paths -d (_ "Don't strip leading /")
complete -c tar -l preserve -d (_ "Preserve all permissions and do not sort file arguments")
complete -c tar -s R -l record-number -d (_ "Show record number")
complete -c tar -l remove-files -d (_ "Remove files after adding to archive")
@@ -46,7 +46,7 @@ complete -c tar -s S -l sparse -d (_ "Handle sparse files")
complete -c tar -s T -l files-from -r -d (_ "Extract file from file")
complete -c tar -l null -d (_ "-T has null-terminated names")
complete -c tar -l totals -d (_ "Print total bytes written")
-complete -c tar -s v -l verbose -d (_ "Vorbose mode")
+complete -c tar -s v -l verbose -d (_ "Verbose mode")
complete -c tar -s V -l label -r -d (_ "Set volume name")
complete -c tar -l version -d (_ "Display version and exit")
complete -c tar -s w -l interactive -d (_ "Ask for confirmation")
diff --git a/init/completions/umount.fish b/init/completions/umount.fish
index 9ee1126c..79a60524 100644
--- a/init/completions/umount.fish
+++ b/init/completions/umount.fish
@@ -19,9 +19,9 @@ complete -c umount -s n -d (_ "Unmount without writing in /etc/mtab")
complete -c umount -s r -d (_ "In case unmounting fails, try to remount read-only")
complete -c umount -s d -d (_ "In case the unmounted device was a loop device, also free this loop device")
complete -c umount -s i -d (_ "Don't call the /sbin/umount.<filesystem> helper even if it exists")
-complete -c umount -s a -d (_ "All of the file systems described in /etc/mtab are unmounted")
+complete -c umount -s a -d (_ "Unmount all of the file systems described in /etc/mtab")
complete -c umount -s t -d (_ "Actions should only be taken on file systems of the specified type") -xa $__fish_filesystems
-complete -c umount -s O -d (_ "Indicate that the actions should only be taken on file systems with the specified options in /etc/fstab") -xa '(cat /etc/mtab | cut -d " " -f 4)\t"Mount option"'
+complete -c umount -s O -d (_ "Actions should only be taken on file systems with the specified options in /etc/fstab") -xa '(cat /etc/mtab | cut -d " " -f 4)\t"Mount option"'
complete -c umount -s f -d (_ "Force unmount (in case of an unreachable NFS system)")
complete -c umount -s l -d (_ "Detach the filesystem from the filesystem hierarchy now, and cleanup all references to the filesystem as soon as it is not busy")
diff --git a/init/completions/uname.fish b/init/completions/uname.fish
index f2e33e8e..d62106b0 100644
--- a/init/completions/uname.fish
+++ b/init/completions/uname.fish
@@ -1,4 +1,4 @@
-complete -c uname -s a -l all -d (_ "Print all")
+complete -c uname -s a -l all -d (_ "Print all information")
complete -c uname -s s -l kernel-name -d (_ "Print kernel name")
complete -c uname -s n -l nodename -d (_ "Print network node hostname")
complete -c uname -s r -l kernel-release -d (_ "Print kernel release")
diff --git a/init/completions/uniq.fish b/init/completions/uniq.fish
index 51b748f3..fc218e06 100644
--- a/init/completions/uniq.fish
+++ b/init/completions/uniq.fish
@@ -1,6 +1,6 @@
complete -c uniq -s c -l count -d (_ "Print number of occurences")
complete -c uniq -s d -l repeated -d (_ "Only print duplicates")
-complete -c uniq -s D -l all-repeated -d (_ "Remove non-suplicate lines") -f -x -a "
+complete -c uniq -s D -l all-repeated -d (_ "Remove non-duplicate lines") -f -x -a "
none\t'Remove none-duplicate lines'
prepend\t'Remove non-duplicate lines and print an empty line before each non-duplicate'
separate\t'Remove non-duplicate lines and print an empty line between each non-duplicate'
@@ -9,7 +9,7 @@ complete -c uniq -s f -l skip-fields -d (_ "Avoid comparing first N fields") -r
complete -c uniq -s i -l ignore-case -d (_ "Case insensitive")
complete -c uniq -s s -l skip-chars -d (_ "Avoid comparing first N characters") -r
complete -c uniq -s u -l unique -d (_ "Only print unique lines")
-complete -c uniq -s w -l check-chars -d (_ "Compare only N characters") -r
+complete -c uniq -s w -l check-chars -d (_ "Compare only specified number of characters") -r
complete -c uniq -l help -d (_ "Display help and exit")
complete -c uniq -l version -d (_ "Display version and exit")
diff --git a/init/completions/valgrind.fish b/init/completions/valgrind.fish
index dc6cfe2f..aa4317bf 100644
--- a/init/completions/valgrind.fish
+++ b/init/completions/valgrind.fish
@@ -24,7 +24,7 @@ set -e $skin
complete -c valgrind -l help -d (_ "Display help and exit")
complete -c valgrind -l help-debug -d (_ "Display help and debug options")
complete -c valgrind -l version -d (_ "Display version and exit")
-complete -c valgrind -s q -l quiet -d (_ "Run silently")
+complete -c valgrind -s q -l quiet -d (_ "Quiet mode")
complete -c valgrind -s v -l verbose -d (_ "Verbose mode")
complete -xc valgrind -l trace-children -d (_ "Valgrind-ise children") -a "yes no"
complete -xc valgrind -l track-fds -d (_ "Track file descriptors") -a "yes no"
@@ -43,7 +43,7 @@ complete -xc valgrind -l input-fd -d (_ "File descriptor for input") -a "0 1 2 3
# Memcheck-specific options
-complete -n "__fish_valgrind_skin memcheck" -xc valgrind -l leak-check -d (_ "Check for memory leaks") -a "no\t'Do not check for memory leaks' summary\t'Show a leak summary' full\t'Describe memory leaks in detail'"
+complete -n "__fish_valgrind_skin memcheck" -xc valgrind -l leak-check -d (_ "Check for memory leaks") -a "no\tDon't\ check\ for\ memory\ leaks summary\t'Show a leak summary' full\t'Describe memory leaks in detail'"
complete -n "__fish_valgrind_skin memcheck" -xc valgrind -l show-reachable -d (_ "Show reachable leaked memory") -a "yes\t'Show reachable leaked memory' no\t'Do not show reachable leaked memory'"
complete -n "__fish_valgrind_skin memcheck" -xc valgrind -l leak-resolution -d (_ "Determines how willing Memcheck is to consider different backtraces to be the same") -a "low\t'Two entries need to match' med\t'Four entries need to match' high\t'All entries need to match'"
complete -n "__fish_valgrind_skin memcheck" -xc valgrind -l freelist-vol -d (_ "Set size of freed memory pool")
diff --git a/init/completions/wget.fish b/init/completions/wget.fish
index 524bfe61..08be77e1 100644
--- a/init/completions/wget.fish
+++ b/init/completions/wget.fish
@@ -9,7 +9,7 @@ complete -c wget -s e -l execute -d (_ "Execute command as if part of .wgetrc")
complete -c wget -s o -l output-file -d (_ "Log all messages to logfile") -f
complete -c wget -s a -l append-output -d (_ "Append all messages to logfile")
complete -c wget -s d -l debug -d (_ "Turn on debug output")
-complete -c wget -s q -l quiet -d (_ "Turn off Wget's output")
+complete -c wget -s q -l quiet -d (_ "Quiet mode")
complete -c wget -s v -l verbose -d (_ "Verbose mode")
complete -c wget -l non-verbose -d (_ "Turn off verbose without being completely quiet")
complete -c wget -o nv -d (_ "Turn off verbose without being completely quiet")
diff --git a/init/completions/xprop.fish b/init/completions/xprop.fish
index 743cb378..cdef3022 100644
--- a/init/completions/xprop.fish
+++ b/init/completions/xprop.fish
@@ -9,7 +9,7 @@ complete -c xprop -o display -d (_ "Specify X server")
complete -c xprop -o len -x -d (_ "Maximum display length")
complete -c xprop -o notype -d (_ "Do not show property type")
complete -c xprop -o fs -r -d (_ "Set format file")
-complete -c xprop -o frame -d (_ "Select window manager frame")
+complete -c xprop -o frame -d (_ "Select a window by clicking on its frame" )
complete -c xprop -o remove -d (_ "Remove property") -x -a "
(
xprop -root -notype|cut -d ' ' -f 1|cut -d \t -f 1
diff --git a/input.c b/input.c
index ff11dc4b..2f3aa39c 100644
--- a/input.c
+++ b/input.c
@@ -1026,7 +1026,7 @@ void input_parse_inputrc_line( wchar_t *cmd )
if( !cmd )
{
debug( 1,
- _( L"Unable to parse binding" ) );
+ _( L"Unable to parse key binding" ) );
inputrc_error = 1;
return;
}
diff --git a/io.c b/io.c
index 1f340c2e..65b4112f 100644
--- a/io.c
+++ b/io.c
@@ -70,7 +70,7 @@ void io_buffer_read( io_data_t *d )
if( errno != EAGAIN )
{
debug( 1,
- _(L"An error occured while reading output from code block on fd %d"),
+ _(L"An error occured while reading output from code block on file descriptor %d"),
d->param1.pipe_fd[0] );
wperror( L"io_buffer_read" );
}
diff --git a/parser.c b/parser.c
index 63b06ce4..c46e8a48 100644
--- a/parser.c
+++ b/parser.c
@@ -82,7 +82,7 @@ The fish parser. Contains functions for parsing code.
/**
Error message used when the end of a block can't be located
*/
-#define BLOCK_END_ERR_MSG _( L"Could not locate end of block. The 'end' command is missing, misspelled or a preceding ';' is missing.")
+#define BLOCK_END_ERR_MSG _( L"Could not locate end of block. The 'end' command is missing, misspelled or a ';' is missing.")
/**
Error message on reaching maximum number of block calls
@@ -92,22 +92,22 @@ The fish parser. Contains functions for parsing code.
/**
Error message when a non-string token is found when expecting a command name
*/
-#define CMD_ERR_MSG _( L"Expected a command string, got token of type '%ls'.")
+#define CMD_ERR_MSG _( L"Expected a command name, got token of type '%ls'")
/**
Error message when a non-string token is found when expecting a command name
*/
-#define CMD_OR_ERR_MSG _( L"Expected a command string, got token of type '%ls'. Did you mean 'COMMAND; or COMMAND'? For more information on the 'or' builtin command, see the help section for 'or' by typing 'help or'.")
+#define CMD_OR_ERR_MSG _( L"Expected a command name, got token of type '%ls'. Did you mean 'COMMAND; or COMMAND'? For more information on the 'or' builtin command, see the help section for 'or' by typing 'help or'.")
/**
Error message when a non-string token is found when expecting a command name
*/
-#define CMD_AND_ERR_MSG _( L"Expected a command string, got token of type '%ls'. Did you mean 'COMMAND; and COMMAND'? For more information on the 'and' builtin command, see the help section for 'and' by typing 'help and'.")
+#define CMD_AND_ERR_MSG _( L"Expected a command name, got token of type '%ls'. Did you mean 'COMMAND; and COMMAND'? For more information on the 'and' builtin command, see the help section for 'and' by typing 'help and'.")
/**
Error message when encountering an illegal command name
*/
-#define ILLEGAL_CMD_ERR_MSG _( L"Illegal command name '%ls'.")
+#define ILLEGAL_CMD_ERR_MSG _( L"Illegal command name '%ls'")
/**
Error message for wildcards with no matches
@@ -137,7 +137,7 @@ The fish parser. Contains functions for parsing code.
/**
Error message for Posix-style assignment
*/
-#define COMMAND_ASSIGN_ERR_MSG _( L"Unknown command '%ls'. Did you mean 'set VARIABLE VALUE'? For information on setting variable values, see the manual section on the set command by typing 'help set'.")
+#define COMMAND_ASSIGN_ERR_MSG _( L"Unknown command '%ls'. Did you mean 'set VARIABLE VALUE'? For information on setting variable values, see the help section on the set command by typing 'help set'.")
/**
Error for invalid redirection token
@@ -157,7 +157,7 @@ The fish parser. Contains functions for parsing code.
/**
Error for evaluating in illegal scope
*/
-#define INVALID_SCOPE_ERR_MSG _( L"Tried to evaluate buffer using invalid block scope of type '%ls'." )
+#define INVALID_SCOPE_ERR_MSG _( L"Tried to evaluate commands using invalid block type '%ls'" )
/**
@@ -228,7 +228,7 @@ The fish parser. Contains functions for parsing code.
/**
Begin block description
*/
-#define BEGIN_BLOCK _( L"unconditional block" )
+#define BEGIN_BLOCK _( L"'begin' unconditional block" )
/**
diff --git a/po/sv.po b/po/sv.po
index d1dfbcaa..479f1609 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,15 +1,15 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+# fish - the friendly interactive shell
+# Copyright (C) 2006
+# This file is distributed under the same license as the fish package.
+# Axel Liljencrantz <liljencrantz@gmail.com>, 2006
#
msgid ""
msgstr ""
"Project-Id-Version: fish 1.20.0\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-01-09 18:21+0100\n"
+"POT-Creation-Date: 2006-01-11 15:10+0100\n"
"Last-Translator: Axel Liljencrantz <liljencrantz@gmail.com>\n"
-"Language-Team: Swedish <sv@li.org>\n"
+"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -27,12 +27,12 @@ msgstr "%ls: Can inte specificera definitionsområde vid blockradering\n"
#: builtin.c:376
#, c-format
msgid "%ls: No blocks defined\n"
-msgstr "%ls: Inga block är definerade\n"
+msgstr "%ls: Inga block definerade\n"
#: builtin.c:829 builtin.h:28
#, c-format
msgid "%ls: Invalid combination of options\n"
-msgstr "%ls: Ogiltig kombination av block\n"
+msgstr "%ls: Ogiltig kombination av flaggor\n"
#: builtin.c:853
#, c-format
@@ -105,312 +105,302 @@ msgstr "%ls: Slumpfrö '%ls' är inte ett giltigt nummer\n"
msgid "%ls: Expected zero or one argument, got %d\n"
msgstr "%ls: Förväntade noll eller ett argument, fick %d\n"
-#: builtin.c:1830 builtin.c:3029
+#: builtin.c:1837 builtin.c:3037
#, c-format
-msgid "%ls: Argument must be an integer '%ls'\n"
-msgstr "%ls: Argumentet '%d' är inte ett heltal\n"
+msgid "%ls: Argument '%ls' must be an integer\n"
+msgstr "%ls: Argumentet '%ls' måste vara ett heltal\n"
-#: builtin.c:1841 builtin.c:2134 builtin.c:3040
+#: builtin.c:1848 builtin.c:2141 builtin.c:3048
#, c-format
msgid "%ls: Too many arguments\n"
msgstr "%ls: För många argument\n"
-#: builtin.c:1886
+#: builtin.c:1893
#, c-format
msgid "%ls: Could not find home directory\n"
msgstr "%ls: Kunde inte hitta hemkatalogen\n"
-#: builtin.c:1898
+#: builtin.c:1905
#, c-format
msgid "%ls: '%ls' is not a directory or you do not have permission to enter it\n"
-msgstr "%ls: '%ls' är inte en katalog, eller så har du inte rättigheter att läsa denna katalog\n"
+msgstr "%ls: '%ls' är inte en katalog eller så har du inte rättigheter att läsa denna katalog\n"
-#: builtin.c:1910
+#: builtin.c:1917
#, c-format
msgid "%ls: '%ls' is not a directory\n"
msgstr "%ls: '%ls' är inte en katalog\n"
-#: builtin.c:1925
+#: builtin.c:1932
#, c-format
msgid "%ls: Could not set PWD variable\n"
msgstr "%ls: Kunde inte sätta variableln PWD\n"
-#: builtin.c:2080
+#: builtin.c:2087
#, c-format
msgid "%ls: Parameter '%ls' is too long\n"
msgstr "%ls: Parametern '%ls' är för lång\n"
-#: builtin.c:2201 builtin.c:3085
+#: builtin.c:2208 builtin.c:3093
#, c-format
msgid "%ls: Expected exactly one argument, got %d\n"
msgstr "%ls: Förväntade exakt ett argument, fick %d\n"
-#: builtin.c:2214
+#: builtin.c:2221
#, c-format
msgid "%ls: '%ls' is not a file\n"
msgstr "%ls: '%ls' är inte en fil\n"
-#: builtin.c:2239
+#: builtin.c:2246
#, c-format
msgid "%ls: Error while reading file '%ls'\n"
msgstr "%ls: Ett fel uppstod medan filen '%ls' lästed\n"
-#: builtin.c:2312
+#: builtin.c:2306 builtin.c:2727
+#, c-format
+msgid "%ls: There are no jobs\n"
+msgstr "%ls: Det finns inga jobb\n"
+
+#: builtin.c:2323
#, c-format
msgid "%ls: Ambiguous job\n"
-msgstr "%ls: Mer än ett job matchar\n"
+msgstr "%ls: Mer än ett jobb matchar\n"
-#: builtin.c:2318
+#: builtin.c:2329 builtin.c:2686
#, c-format
msgid "%ls: '%ls' is not a job\n"
msgstr "%ls: '%ls' är inte ett jobb\n"
-#: builtin.c:2335
+#: builtin.c:2342 builtin.c:2701
#, c-format
-msgid "%ls: No suitable job\n"
-msgstr "%ls: Inget jobb matchar\n"
+msgid "%ls: No suitable job: %d\n"
+msgstr "%ls: Inget passande jobb: %d\n"
-#: builtin.c:2385
+#: builtin.c:2393
#, c-format
msgid "%ls: Unknown job '%ls'\n"
msgstr "%ls: Okänt jobb '%ls'\n"
-#: builtin.c:2394
+#: builtin.c:2402
#, c-format
msgid "Send job %d '%ls' to background\n"
msgstr "Skicka jobb %d '%ls' till bakgrunden\n"
-#: builtin.c:2414
+#: builtin.c:2422
msgid "(default)"
msgstr "(standard)"
-#: builtin.c:2468
+#: builtin.c:2476
msgid "Job\tGroup\t"
msgstr "Jobb\tGrupp\t"
-#: builtin.c:2470
+#: builtin.c:2478
msgid "CPU\t"
msgstr "CPU\t"
-#: builtin.c:2472
+#: builtin.c:2480
msgid "State\tCommand\n"
msgstr "Status\tKommando\n"
-#: builtin.c:2481 proc.c:613
+#: builtin.c:2489 proc.c:613
msgid "stopped"
msgstr "stannat"
-#: builtin.c:2481
+#: builtin.c:2489
msgid "running"
msgstr "kör"
-#: builtin.c:2496
+#: builtin.c:2504
msgid "Group\n"
msgstr "Grupp\n"
-#: builtin.c:2509
+#: builtin.c:2517
msgid "Procces\n"
msgstr "Process\n"
-#: builtin.c:2526
+#: builtin.c:2534
msgid "Command\n"
msgstr "Kommando\n"
-#: builtin.c:2678
-#, c-format
-msgid "%ls: Not a process id: '%ls'\n"
-msgstr "%ls: '%ls' är inte ett processid\n"
-
-#: builtin.c:2693
-#, c-format
-msgid "%ls: No suitable job: %d\n"
-msgstr "%ls: Inget passande jobb: %d\n"
-
-#: builtin.c:2719
-#, c-format
-msgid "%ls: There are no jobs\n"
-msgstr "%ls: Det finns inga jobb\n"
-
-#: builtin.c:2738
+#: builtin.c:2746
#, c-format
msgid "%ls: Expected at least two arguments\n"
msgstr "%ls: Förväntade minst två argument\n"
-#: builtin.c:2745
+#: builtin.c:2753
#, c-format
-msgid "%ls: '%ls' invalid variable name\n"
+msgid "%ls: '%ls' is not a valid variable name\n"
msgstr "%ls: '%ls' är ett ogiltigt variabelnamn\n"
-#: builtin.c:2753
+#: builtin.c:2761
#, c-format
msgid "%ls: Second argument must be 'in'\n"
msgstr "%ls: Andra argumentet måste vara 'in'\n"
-#: builtin.c:2813
+#: builtin.c:2821
#, c-format
msgid "%ls: Not inside of block\n"
msgstr "%ls: Inte i ett block\n"
-#: builtin.c:2937
+#: builtin.c:2945
#, c-format
msgid "%ls: Not inside of 'if' block\n"
msgstr "%ls: Inte i ett 'if' block\n"
-#: builtin.c:2989
+#: builtin.c:2997
#, c-format
msgid "%ls: Not inside of loop\n"
msgstr "%ls: Inte i en loop\n"
-#: builtin.c:3056
+#: builtin.c:3064
#, c-format
msgid "%ls: Not inside of function\n"
msgstr "%ls: Inte i en funktion\n"
-#: builtin.c:3116
+#: builtin.c:3124
#, c-format
msgid "%ls: 'case' command while not in switch block\n"
msgstr "%ls: 'case' kommandot kan bara användas i ett 'switch' block\n"
-#: builtin.c:3314
+#: builtin.c:3322
#, c-format
msgid "Unknown builtin '%ls'"
msgstr "Okänt inbyggt kommando '%ls'"
-#: builtin.c:3337
+#: builtin.c:3345
msgid "Temporarily block delivery of events"
msgstr "Blockera tillfälligt leverans av händelser"
-#: builtin.c:3338
-msgid "Run a builtin command"
-msgstr "Utför ett inbyggt kommando"
+#: builtin.c:3346
+msgid "Run a builtin command instead of a function"
+msgstr "Utför ett inbyggt kommando istället för en funktion"
-#: builtin.c:3339
+#: builtin.c:3347
msgid "Edit command specific completions"
-msgstr "Ändra kommando-specifika kompletteringar"
+msgstr "Redigera kommando-specifika kompletteringar"
-#: builtin.c:3340
+#: builtin.c:3348
msgid "Change working directory"
msgstr "Ändra arbetskatalog"
-#: builtin.c:3341
+#: builtin.c:3349
msgid "Exit the shell"
msgstr "Avsluta fish"
-#: builtin.c:3342
+#: builtin.c:3350
msgid "Define a new function"
msgstr "Definera ny funktion"
-#: builtin.c:3343
+#: builtin.c:3351
msgid "List or remove functions"
-msgstr "Visa och ta bort funktioner"
+msgstr "Visa eller ta bort funktioner"
-#: builtin.c:3344
+#: builtin.c:3352
msgid "End a block of commands"
msgstr "Avsluta ett block av kommandon"
-#: builtin.c:3345
+#: builtin.c:3353
msgid "Evaluate block if condition is false"
-msgstr "Utför block om ett villkor är uppfyllt"
+msgstr "Utför block om ett villkor inte är uppfyllt"
-#: builtin.c:3346
+#: builtin.c:3354
msgid "Evaluate parameters as a command"
-msgstr "Utför argument som kommandon"
+msgstr "Utför argument som kommando"
-#: builtin.c:3347
+#: builtin.c:3355
msgid "Perform a set of commands multiple times"
msgstr "Utför ett block flera gånger"
-#: builtin.c:3348
+#: builtin.c:3356
msgid "Evaluate contents of file"
msgstr "Utför filinnehåll som kommandon"
-#: builtin.c:3349
+#: builtin.c:3357
msgid "Handle environment variables"
msgstr "Redigera miljövariabler"
-#: builtin.c:3350
+#: builtin.c:3358
msgid "Send job to foreground"
msgstr "Skick jobb till förgrunden"
-#: builtin.c:3351
+#: builtin.c:3359
msgid "Send job to background"
msgstr "Skicka jobb till bakgrunden"
-#: builtin.c:3352
+#: builtin.c:3360
msgid "Print currently running jobs"
-msgstr "Skriv ut nuvarande jobb"
+msgstr "Visa nuvarande jobb"
-#: builtin.c:3353
+#: builtin.c:3361
msgid "Read a line of input into variables"
-msgstr "Läs in en rad till en variabel"
+msgstr "Läs in en rad till variabler"
-#: builtin.c:3354
+#: builtin.c:3362
msgid "Stop the innermost loop"
msgstr "Avbryt den innersta loopen"
-#: builtin.c:3355
+#: builtin.c:3363
msgid "Skip the rest of the current lap of the innermost loop"
msgstr "Avbryt nuvarande varv i den innersta loopen"
-#: builtin.c:3356
-msgid "Stop the innermost currently evaluated function"
-msgstr "Avbryt den innersta utförda funktionen"
+#: builtin.c:3364
+msgid "Stop the currently evaluated function"
+msgstr "Avbryt den nuvarande funktionen"
-#: builtin.c:3357
+#: builtin.c:3365
msgid "Set or get the commandline"
msgstr "Ändra eller visa kommandoraden"
-#: builtin.c:3358 builtin.c:3359
+#: builtin.c:3366 builtin.c:3367
msgid "Conditionally execute a block of commands"
-msgstr "Utför ett block av kommandon om ett villkor är uppfyllt"
+msgstr "Utför ett kommando om ett villkor är uppfyllt"
-#: builtin.c:3360
-msgid "Run a program"
-msgstr "Kör ett program"
+#: builtin.c:3368
+msgid "Run a program instead of a function or builtin"
+msgstr "Kör ett program istället för en funktion eller ett inbuggt kommando"
-#: builtin.c:3361
-msgid "Conditionally execute a command"
-msgstr "Utför ett kommando om ett villkor är uppfyllt"
+#: builtin.c:3369
+msgid "Evaluate block if condition is true"
+msgstr "Utför ett block om ett villkor är uppfyllt"
-#: builtin.c:3362
+#: builtin.c:3370
msgid "Perform a command multiple times"
msgstr "Utför ett kommando upprepade gånger"
-#: builtin.c:3363
-msgid "Handle key bindings"
+#: builtin.c:3371
+msgid "Handle fish key bindings"
msgstr "Hantera tangentbordsgenvägar för fish"
-#: builtin.c:3364
+#: builtin.c:3372
msgid "Generate random number"
msgstr "Generera ett slumptal"
-#: builtin.c:3365
+#: builtin.c:3373
msgid "Run command in current process"
msgstr "Kör ett kommando i den nuvarande processen"
-#: builtin.c:3366
+#: builtin.c:3374
msgid "Negate exit status of job"
msgstr "Negera resultatet av ett kommando"
-#: builtin.c:3367
-msgid "Execute second command if first fails"
-msgstr "Utför ett kommando om föregående kommando misslyckades"
+#: builtin.c:3375
+msgid "Execute command if previous command failed"
+msgstr "Utför kommando om föregående kommando misslyckades"
-#: builtin.c:3368
-msgid "Execute second command if first suceeds"
-msgstr "Utför ett kommando om föregående kommando lyckades"
+#: builtin.c:3376
+msgid "Execute command if previous command suceeded"
+msgstr "Utför kommando om föregående kommando lyckades"
-#: builtin.c:3369
+#: builtin.c:3377
msgid "Create a block of code"
msgstr "Skapa ett kodblock"
-#: builtin.c:3370
+#: builtin.c:3378
msgid "Return status information about fish"
-msgstr "Visa information om fish"
+msgstr "Visa statusinformation om fish"
-#: builtin.c:3371
+#: builtin.c:3379
msgid "Set or get the shells resource usage limits"
-msgstr "Visa eller redigera skalets resursanvändningsgränser"
+msgstr "Redigera eller visa skalets resursanvändningsgränser"
#: builtin_set.c:96
#, c-format
@@ -493,28 +483,28 @@ msgstr "Funktion"
msgid "Builtin"
msgstr "Inbyggt kommando"
-#: complete.c:756 complete.c:775
+#: complete.c:760 complete.c:779
msgid "Unknown option: "
msgstr "Okänd flagga: "
-#: complete.c:780
+#: complete.c:784
msgid "Multiple matches for option: "
-msgstr "Mer än en flagga passar: "
+msgstr "Mer än en flagga matchar: "
#: env.c:194
msgid "Could not get user information"
msgstr "Kunde inte hitta information om användare"
-#: env.c:276
+#: env.c:279
msgid "Changing language to english"
msgstr "Byter språk till svenska"
-#: env.c:834
+#: env.c:837
#, c-format
-msgid "No history at idx %d\n"
-msgstr "Ingen historieinformation för index %d\n"
+msgid "No history item at index %d\n"
+msgstr "Ingen historieinformation vid index %d\n"
-#: env.c:994
+#: env.c:997
msgid "Tried to pop empty environment stack."
msgstr "Försökte ta bort element från tom variabelstack"
@@ -559,12 +549,12 @@ msgstr "Okänd funktion '%ls'"
#: exec.c:878
#, c-format
msgid "Unknown input redirection type %d"
-msgstr "Okänd IO dirigering av typ %d"
+msgstr "Okänd dirigering av standard in av typ %d"
#: exec.c:1205
#, c-format
msgid "Sent null command to subshell. This is a fish bug. If it can be reproduced, please send a bug report to %s."
-msgstr "Skickade null-kommando till subskal. Detta är en fish-bug. Om du kan reproducera den, skicka en rapport till %s."
+msgstr "Skickade noll-kommando till subskal. Detta är en fish-bug. Om den kan reproduceras, skicka en rapport till %s."
#: input.c:406
msgid "Invalid Control sequence"
@@ -623,7 +613,7 @@ msgid "Syntax: set KEY VALUE"
msgstr "Syntax: set NAMN VÄRDE"
#: input.c:1029
-msgid "Unable to parse binding"
+msgid "Unable to parse key binding"
msgstr "Kunde inte tolka tangentbordsgenväg"
#: input.c:1055
@@ -642,8 +632,8 @@ msgstr "Kunde inte initiera terminalen"
#: io.c:73
#, c-format
-msgid "An error occured while reading output from code block on fd %d"
-msgstr "Ett fel inträffade under inläsning från kodblock på filidentifierare %d"
+msgid "An error occured while reading output from code block on file descriptor %d"
+msgstr "Ett fel inträffade under inläsning av utdata från kodblock på filidentifierare %d"
#: parser.c:59
#, c-format
@@ -657,19 +647,19 @@ msgstr "Detta kommando kan ej användas i ett rör"
#: parser.c:70
#, c-format
msgid "Tokenizer error: '%ls'"
-msgstr "Följande fel inträffade vid symboluppdelning: '%ls'"
+msgstr "Ett fel inträffade vid symboluppdelning: '%ls'"
#: parser.c:75
msgid "Short circut command requires additional command"
-msgstr "Kortslutningkommandon kräver två följande kommandon"
+msgstr "Kortslutningkommandon kräver ett efterföljande kommandon"
#: parser.c:80
msgid "Maximum recursion depth reached. Accidental infinite loop?"
-msgstr "Maximalt rekursionsdjup uppnått. Oavsiktlig oändlig loop?"
+msgstr "Maximalt rekursionsdjup uppnått. Oavsiktlig oändlig upprepning?"
#: parser.c:85
-msgid "Could not locate end of block. The 'end' command is missing, misspelled or a preceding ';' is missing."
-msgstr "Kunde inte hitta slutet på ett kodblock. Kommandot 'end' kan saknas, vara felstavat eller ett ';' kan saknas."
+msgid "Could not locate end of block. The 'end' command is missing, misspelled or a ';' is missing."
+msgstr "Kunde inte hitta slutet på kodblock. Kommandot 'end' saknas, är felstavat eller ett ';' saknas."
#: parser.c:90
msgid "Maximum number of nested blocks reached."
@@ -677,28 +667,28 @@ msgstr "Maximalt antal nästade block har uppnåtts."
#: parser.c:95
#, c-format
-msgid "Expected a command string, got token of type '%ls'."
-msgstr "Förväntade att hitta ett kommandonamn, hittade en symbol av typen '%ls'."
+msgid "Expected a command name, got token of type '%ls'"
+msgstr "Förväntade att hitta ett kommandonamn, hittade en symbol av typen '%ls'"
#: parser.c:100
#, c-format
-msgid "Expected a command string, got token of type '%ls'. Did you mean 'COMMAND; or COMMAND'? For more information on the 'or' builtin command, see the help section for 'or' by typing 'help or'."
-msgstr "Förväntade att hitta ett kommandonamn, hittade en symbol av typen '%ls'. Menade du 'KOMMANDO; or KOMMANDO'? För mer information, se manualsektionen om det inbbyggda kommandot 'or' genom att skriva 'help or'."
+msgid "Expected a command name, got token of type '%ls'. Did you mean 'COMMAND; or COMMAND'? For more information on the 'or' builtin command, see the help section for 'or' by typing 'help or'."
+msgstr "Förväntade att hitta ett kommandonamn, hittade en symbol av typen '%ls'. Menade du 'KOMMANDO; or KOMMANDO'? För mer information on det inbyggda kommandot 'or', se hjälpsektionen om 'or' genom att skriva 'help or'."
#: parser.c:105
#, c-format
-msgid "Expected a command string, got token of type '%ls'. Did you mean 'COMMAND; and COMMAND'? For more information on the 'and' builtin command, see the help section for 'and' by typing 'help and'."
-msgstr "Förväntade att hitta ett kommandonamn, hittade en symbol av typen '%ls'. Menade du 'KOMMANDO; and KOMMANDO'? För mer information, se manualsektionen om det inbbyggda kommandot 'and' genom att skriva 'help and'."
+msgid "Expected a command name, got token of type '%ls'. Did you mean 'COMMAND; and COMMAND'? For more information on the 'and' builtin command, see the help section for 'and' by typing 'help and'."
+msgstr "Förväntade att hitta ett kommandonamn, hittade en symbol av typen '%ls'. Menade du 'KOMMANDO; and KOMMANDO'? För mer information om det inbyggda kommandot 'and', se hjälpsektionen om 'and' genom att skriva 'help and'."
#: parser.c:110
#, c-format
-msgid "Illegal command name '%ls'."
-msgstr "Ogiltigt kommandonamn '%ls'."
+msgid "Illegal command name '%ls'"
+msgstr "Ogiltigt kommandonamn '%ls'"
#: parser.c:115
#, c-format
msgid "Warning: No match for wildcard '%ls'. The command will not be executed."
-msgstr "Varning: Inga matchningar för jokertecknen i '%ls', kommandot kommer ej utföras."
+msgstr "Varning: Inga matchningar för jokertecknen i '%ls'. Kommandot kommer ej utföras."
#: parser.c:120
msgid "'case' builtin not inside of switch block"
@@ -718,8 +708,8 @@ msgstr "Det inbyggda kommandot 'end' får bara användas i ett block"
#: parser.c:140
#, c-format
-msgid "Unknown command '%ls'. Did you mean 'set VARIABLE VALUE'? For information on setting variable values, see the manual section on the set command by typing 'help set'."
-msgstr "Okänt kommando '%ls'. Menade du 'set VARIABEL VÄRDE'? För mer information om hur man tilldelar variabler värden, se manualsektionen om det inbyggda kommandot 'set' genom att skriva 'help set'."
+msgid "Unknown command '%ls'. Did you mean 'set VARIABLE VALUE'? For information on setting variable values, see the help section on the set command by typing 'help set'."
+msgstr "Okänt kommando '%ls'. Menade du 'set VARIABEL VÄRDE'? För mer information om hur man tilldelar variabler, se hjälpsektionen om det inbyggda kommandot 'set' genom att skriva 'help set'."
#: parser.c:145
#, c-format
@@ -736,8 +726,8 @@ msgstr "Försökte evaluera nollpekare."
#: parser.c:160
#, c-format
-msgid "Tried to evaluate buffer using invalid block scope of type '%ls'."
-msgstr "Försökte evaluera ett block av kommandon med ogiltig definitionsområde '%ls'"
+msgid "Tried to evaluate commands using invalid block type '%ls'"
+msgstr "Försökte utföra kommandon i ogiltig blocktyp '%ls'"
#: parser.c:166
#, c-format
@@ -786,7 +776,7 @@ msgid "command substitution block"
msgstr "kommandosubstitution-block"
#: parser.c:231
-msgid "unconditional block"
+msgid "'begin' unconditional block"
msgstr "'begin' ovillkorligen exekverat block"
#: parser.c:237
@@ -796,7 +786,7 @@ msgstr "okänt/ogiltigt block"
#: parser.c:879
#, c-format
msgid "Could not write profiling information to file '%s'"
-msgstr "Kunde inte skrive profileringsinformation till filen '%s'"
+msgstr "Kunde inte skriva profileringsinformation till filen '%s'"
#: parser.c:885
msgid "Time\tSum\tCommand\n"
@@ -819,7 +809,7 @@ msgstr "Ogiltig IO omdirigering"
#: parser.c:1366
#, c-format
msgid "Requested redirection to something that is not a file descriptor %ls"
-msgstr "IO omdirigering till någonting som inte är en filidentifierare"
+msgstr "IO dirigering till någonting som inte är en filidentifierare"
#: parser.c:1779
#, c-format
@@ -847,7 +837,7 @@ msgstr "%ls: Jobb %d, '%ls' avslutat av signal %ls (%ls)"
#: proc.c:566
#, c-format
msgid "%ls: Process %d, '%ls' from job %d, '%ls' terminated by signal %ls (%ls)"
-msgstr "Process %d, '%ls', från jobb %d, '%ls' avslutat av signal %ls (%ls)"
+msgstr "%ls: Process %d, '%ls', från jobb %d, '%ls' avslutat av signal %ls (%ls)"
#: proc.c:597
msgid "ended"
@@ -855,7 +845,7 @@ msgstr "avslutat"
#: proc.c:812
msgid "An error occured while reading output from code block"
-msgstr "Ett fel inträffade medan utdata lästes från kodblock"
+msgstr "Ett fel inträffade under läsandet av utdata från kodblock"
#: proc.c:979 proc.c:989 proc.c:999
msgid "Could not return shell to foreground"
@@ -871,7 +861,7 @@ msgstr "Processlistepekare"
#: proc.c:1028
msgid "Job list pointer"
-msgstr "Joblistepekare"
+msgstr "Jobblistepekare"
#: proc.c:1039
#, c-format
@@ -938,8 +928,8 @@ msgid "Error while reading commands"
msgstr "Ett fel inträffade medan kommandon lästes in"
#: reader.c:3123
-msgid "Error while closing input"
-msgstr "Ett fel inträffade medan indatafilen stängdes"
+msgid "Error while closing input stream"
+msgstr "Ett fel inträffade medan indataström stängdes"
#: reader.c:3151
#, c-format
@@ -951,8 +941,22 @@ msgid "Could not read input stream"
msgstr "Kunde inte läsa från indataström"
#: reader.c:3166
-msgid "Error while opening input"
-msgstr "Ett fel inträffade medan indatafil öppnades"
+msgid "Error while opening input stream"
+msgstr "Ett fel inträffade medan indataström öppnades"
+
+#: sanity.c:34
+msgid "Errors detected, shutting down"
+msgstr "Fel har upptäckts, avslutar programmet"
+
+#: sanity.c:62
+#, c-format
+msgid "The pointer '%ls' is invalid"
+msgstr "Pekaren '%ls' är ogiltig"
+
+#: sanity.c:68
+#, c-format
+msgid "The pointer '%ls' is null"
+msgstr "Pekaren '%ls' är noll"
#: signal.c:55
msgid "Terminal hung up"
@@ -972,7 +976,7 @@ msgstr "Ogiltig instruktion"
#: signal.c:79
msgid "Trace or breakpoint trap"
-msgstr "Spårning eller brytpunkt utlöstes"
+msgstr "Spårnings eller brytpunktsfälla utlöstes"
#: signal.c:85
msgid "Abort"
@@ -980,7 +984,7 @@ msgstr "Avbrott"
#: signal.c:91
msgid "Misaligned address error"
-msgstr "Ogiltig minnesadress"
+msgstr "Bussfel (Ogiltigt justerad minnesadress)"
#: signal.c:97
msgid "Floating point exception"
@@ -1024,19 +1028,19 @@ msgstr "Fortsätt tidigare stannad process"
#: signal.c:156
msgid "Forced stop"
-msgstr "Tvingad stopp"
+msgstr "Tvingad att stoppa"
#: signal.c:162
msgid "Stop request from job control (^Z)"
-msgstr "Stopp från jobbkontroll (^Z)"
+msgstr "Stoppad genom jobbkontroll (^Z)"
#: signal.c:168
msgid "Stop from terminal input"
-msgstr "Stopp från terminalläsning"
+msgstr "Stoppad från terminalläsning"
#: signal.c:174
msgid "Stop from terminal output"
-msgstr "Stopp från terminalskrivning"
+msgstr "Stoppad från terminalskrivning"
#: signal.c:180
msgid "Urgent socket condition"
@@ -1063,8 +1067,8 @@ msgid "Window size change"
msgstr "Terminalfönstret ändrade storlek"
#: signal.c:216
-msgid "Asynchronous IO event"
-msgstr "Asynkron IO händelse"
+msgid "I/O on asynchronous file descriptor is possible"
+msgstr "Läsning/skrivning på asynkron filidentifierare möjligt"
#: signal.c:223
msgid "Power failure"
@@ -1072,7 +1076,7 @@ msgstr "Strömavbrott"
#: signal.c:230
msgid "Bad system call"
-msgstr "Ogiltigt systemanrop"
+msgstr "Felaktigt systemanrop"
#: tokenizer.c:28
msgid "Unexpected end of token"
@@ -1080,7 +1084,7 @@ msgstr "Oväntat slut på symbol"
#: tokenizer.c:32
msgid "Parenthesis mismatch"
-msgstr "Paranteser matcher inte varandra"
+msgstr "Paranteser matchar inte varandra"
#: tokenizer.c:36
msgid "Invalid redirection"
@@ -1088,11 +1092,11 @@ msgstr "Ogiltig IO dirigering"
#: tokenizer.c:40
msgid "Invalid input"
-msgstr "Ogiltiga indata"
+msgstr "Ogiltig indata"
#: tokenizer.c:45
msgid "Can not use fd 0 as pipe output"
-msgstr "Kan inte skicka rördata till fileidentifierare 0"
+msgstr "Kan inte skicka rördata till filidentifierare 0"
#: tokenizer.c:59
msgid "Tokenizer not yet initialized"
@@ -1116,15 +1120,15 @@ msgstr "Rör"
#: tokenizer.c:64
msgid "End of command"
-msgstr "Slut på kommando"
+msgstr "Slut av kommando"
#: tokenizer.c:65
msgid "Redirect output to file"
-msgstr "IO dirigering till fil"
+msgstr "IO dirigering av utdata till fil"
#: tokenizer.c:66
msgid "Append output to file"
-msgstr "IO dirigering till slutet av fil"
+msgstr "IO dirigering av utdata till slutet av fil"
#: tokenizer.c:67
msgid "Redirect input to file"
@@ -1167,10 +1171,10 @@ msgstr ""
#: builtin.h:38
#, c-format
msgid ""
-"%ls: Variable can only be one of universal, global and local\n"
+"%ls: Variable scope can only be one of universal, global and local\n"
"%ls\n"
msgstr ""
-"%ls: Variabel kan bara vara en av universal, global och lokal\n"
+"%ls: En variabels definitionsområde kan bara vara en av universal, global och lokal\n"
"%ls\n"
#: builtin.h:43
@@ -1195,7 +1199,7 @@ msgstr "%ls: Ogiltigt tecken '%lc' i variabelnamn. Bara alfanumeriska tecken och
#: builtin.h:52
#, c-format
msgid "%ls: Variable name can not be the empty string\n"
-msgstr "%ls: Variabelnamn får inte vara tomma\n"
+msgstr "%ls: Den tomma strängen är inte ett tillåtet variabelnamn\n"
#: exec.h:19
msgid "An error occurred while setting up pipe"
@@ -1274,11 +1278,11 @@ msgstr "Stanna och starta tjänst"
msgid "Reload service configuration"
msgstr "Ladda om konfiguration för tjänst"
-#: init/fish.in:70
+#: init/fish.in:73
msgid "-d"
msgstr ""
-#: init/fish.in:71
+#: init/fish.in:74
msgid "fish"
msgstr ""
@@ -1300,7 +1304,7 @@ msgstr "Hej då\\n"
#: init/fish_interactive.fish.in:28 init/fish_interactive.fish:28
msgid "Write out the prompt"
-msgstr "Skriver ut prompten"
+msgstr "Skriv prompten"
#: init/fish_function.fish:58
msgid "%s: Key not specified\\n"
@@ -1313,7 +1317,7 @@ msgstr "%s: Kunde inte hitta en webbrowser\\n"
#: init/fish_function.fish:131
#, sh-format
msgid "Please set the variable $BROWSER to a suitable browser and try again\\n\\n"
-msgstr "Var vänlig sätt variablen $BROWSER till en lämplig browser och försök igen\\n\\n"
+msgstr "Var vänlig sätt variablen $BROWSER så den anger en lämplig browser och försök igen\\n\\n"
#: init/fish_function.fish:273
msgid "vared: %s is an array variable. Use %svared%s %s[n] to edit the n:th element of %s\\n"
@@ -1325,7 +1329,7 @@ msgstr "vared: Förväntade exakt ett argument, fick %s\\n\\nSynopsis:\\n\\t%sva
#: init/fish_function.fish:386
msgid "Hit end of history...\\n"
-msgstr "Inga fler kataloger..."
+msgstr "Slut på kataloghistorik...\\n"
#: init/fish_function.fish:422
msgid "The number of positions to skip must be a non-negative integer\\n"
@@ -1341,7 +1345,7 @@ msgstr "funktion"
#: init/fish_function.fish:795
msgid "%s is a builtin\\n"
-msgstr "%s är ett inbygggt kommando\\n"
+msgstr "%s är ett inbyggt kommando\\n"
#: init/fish_function.fish:798
msgid "builtin\\n"
@@ -1376,18 +1380,20 @@ msgstr "%s: Okänt argument '%s'\\n"
#: init/completions/apt-cdrom.fish:11 init/completions/apt-config.fish:5
#: init/completions/apt-file.fish:12 init/completions/apt-ftparchive.fish:15
#: init/completions/apt-get.fish:61 init/completions/apt-proxy-import.fish:3
-#: init/completions/apt-rdepends.fish:12 init/completions/apt-sortpkgs.fish:4
-#: init/completions/apt-zip-inst.fish:3 init/completions/apt-zip-list.fish:3
-#: init/completions/at.fish:2 init/completions/atq.fish:2
-#: init/completions/atrm.fish:2 init/completions/bc.fish:8
-#: init/completions/bunzip2.fish:15 init/completions/bzip2.fish:17
-#: init/completions/cat.fish:11 init/completions/chgrp.fish:11
-#: init/completions/chown.fish:10 init/completions/configure.fish:2
-#: init/completions/cut.fish:9 init/completions/cvs.fish:33
-#: init/completions/cvs.fish:44 init/completions/date.fish:10
-#: init/completions/df.fish:17 init/completions/diff.fish:25
-#: init/completions/du.fish:19 init/completions/echo.fish:5
-#: init/completions/fish.fish:3 init/completions/grep.fish:40
+#: init/completions/apt-rdepends.fish:12
+#: init/completions/apt-show-source.fish:8
+#: init/completions/apt-sortpkgs.fish:4 init/completions/apt-zip-inst.fish:3
+#: init/completions/apt-zip-list.fish:3 init/completions/at.fish:2
+#: init/completions/atq.fish:2 init/completions/atrm.fish:2
+#: init/completions/bc.fish:8 init/completions/bunzip2.fish:15
+#: init/completions/bzip2.fish:17 init/completions/cat.fish:11
+#: init/completions/chgrp.fish:11 init/completions/chown.fish:10
+#: init/completions/configure.fish:2 init/completions/cut.fish:9
+#: init/completions/cvs.fish:33 init/completions/cvs.fish:44
+#: init/completions/date.fish:10 init/completions/df.fish:17
+#: init/completions/diff.fish:25 init/completions/du.fish:19
+#: init/completions/echo.fish:5 init/completions/fish.fish:3
+#: init/completions/gprof.fish:32 init/completions/grep.fish:40
#: init/completions/gunzip.fish:18 init/completions/gzip.fish:20
#: init/completions/id.fish:7 init/completions/less.fish:41
#: init/completions/ls.fish:73 init/completions/make.fish:26
@@ -1409,11 +1415,11 @@ msgstr "%s: Okänt argument '%s'\\n"
#: init/completions/xsel.fish:18 init/completions/yum.fish:57
#: init/completions/zcat.fish:9
msgid "Display version and exit"
-msgstr "Visa hjälp och avsluta"
+msgstr "Visa version och avsluta"
#: init/completions/apm.fish:3
msgid "Print APM info"
-msgstr "Visa APM info"
+msgstr "Visa APM-information"
#: init/completions/apm.fish:4
msgid "Print time remaining"
@@ -1421,27 +1427,27 @@ msgstr "Visa kvarvarande tid"
#: init/completions/apm.fish:5
msgid "Monitor status info"
-msgstr "Bevaka status information"
+msgstr "Bevaka statusinformation"
#: init/completions/apm.fish:6
msgid "Request APM standby mode"
-msgstr "Begär APM standbyläge"
+msgstr "Begär APM-standbyläge"
#: init/completions/apm.fish:7
msgid "Request APM suspend mode"
-msgstr "Begär APM suspendläge"
+msgstr "Begär APM-suspendläge"
#: init/completions/apm.fish:8
msgid "APM status debugging info"
-msgstr "APM status debuginfo"
+msgstr "APM-status debuginformation"
#: init/completions/apropos.fish:9
-msgid "Whatis entry"
-msgstr "'Whatis'-inlägg"
+msgid "whatis entry"
+msgstr "'whatis'-inlägg"
#: init/completions/apropos.fish:12
msgid "Print debugging info"
-msgstr "Visa debuginfo"
+msgstr "Visa debuginformation"
#: init/completions/apropos.fish:13 init/completions/apt-file.fish:8
#: init/completions/apt-listchanges.fish:4
@@ -1450,11 +1456,12 @@ msgstr "Visa debuginfo"
#: init/completions/darcs.fish:64 init/completions/darcs.fish:148
#: init/completions/darcs.fish:160 init/completions/darcs.fish:166
#: init/completions/makedepend.fish:11 init/completions/mount.fish:48
-#: init/completions/ping.fish:26 init/completions/python.fish:11
+#: init/completions/mv.fish:9 init/completions/ping.fish:26
+#: init/completions/python.fish:11 init/completions/rmdir.fish:5
#: init/completions/rpm.fish:7 init/completions/ruby.fish:19
-#: init/completions/ssh.fish:61 init/completions/umount.fish:17
-#: init/completions/valgrind.fish:28 init/completions/wget.fish:13
-#: init/completions/zip.fish:14
+#: init/completions/ssh.fish:61 init/completions/tar.fish:49
+#: init/completions/umount.fish:17 init/completions/valgrind.fish:28
+#: init/completions/wget.fish:13 init/completions/zip.fish:14
msgid "Verbose mode"
msgstr "Utförligt läge"
@@ -1472,19 +1479,19 @@ msgstr "Nyckelord är en exakt matchning"
#: init/completions/apropos.fish:17
msgid "Search for other system"
-msgstr "Sör efter annat system"
+msgstr "Sök efter annat system"
#: init/completions/apropos.fish:18
msgid "Specify man path"
msgstr "Välj manualsökväg"
#: init/completions/apropos.fish:19
-msgid "Specify a conf file"
+msgid "Specify a configuration file"
msgstr "Välj en konfigurationsfil"
#: init/completions/apt-build.fish:4
msgid "Update list of packages"
-msgstr "Updatera listan på paket"
+msgstr "Updatera paketlista"
#: init/completions/apt-build.fish:5
msgid "Upgrade packages"
@@ -1495,15 +1502,15 @@ msgid "Rebuild your system"
msgstr "Återbygg systemet"
#: init/completions/apt-build.fish:7
-msgid "Build and install a new pkg"
+msgid "Build and install a new package"
msgstr "Bygg och installera nytt paket"
#: init/completions/apt-build.fish:8
-msgid "Download and extract a src"
+msgid "Download and extract a source"
msgstr "Nedladda och extrahera källkod"
#: init/completions/apt-build.fish:9
-msgid "Info on a pkg"
+msgid "Info on a package"
msgstr "Visa info om paket"
#: init/completions/apt-build.fish:10
@@ -1511,19 +1518,19 @@ msgid "Remove packages"
msgstr "Radera paket"
#: init/completions/apt-build.fish:11
-msgid "Erase built pkgs"
+msgid "Erase built packages"
msgstr "Radera byggda paket"
#: init/completions/apt-build.fish:12
-msgid "Build src without install"
+msgid "Build source without install"
msgstr "Bygg källkod utan att installera"
#: init/completions/apt-build.fish:13
-msgid "Clean src dirs"
-msgstr "Rensa källkodskataloger"
+msgid "Clean source directories"
+msgstr "Rengör källkodskataloger"
#: init/completions/apt-build.fish:14
-msgid "Update src and rebuild them"
+msgid "Update source and rebuild"
msgstr "Uppdatera källkod och bygg om dem"
#: init/completions/apt-build.fish:15
@@ -1532,7 +1539,7 @@ msgstr "Uppdatera lager"
#: init/completions/apt-build.fish:16
msgid "Do not use gcc wrapper"
-msgstr "Använd inte gcc-wrapper"
+msgstr "Använd inte omslag (wrapper) kring gcc"
#: init/completions/apt-build.fish:17
msgid "Remove build-dep"
@@ -1551,7 +1558,7 @@ msgid "Rebuild a package"
msgstr "Bygg om paket"
#: init/completions/apt-build.fish:21
-msgid "Rebuild and install an installed pkg"
+msgid "Rebuild and install an installed package"
msgstr "Bygg och installera ett installerat paket"
#: init/completions/apt-build.fish:22
@@ -1608,31 +1615,31 @@ msgid "Print available list"
msgstr "Visa tillgängliga paket"
#: init/completions/apt-cache.fish:9
-msgid "List unmet dep in cache"
+msgid "List unmet dependencies in cache"
msgstr "Visa ouppklarade beroenden i cache"
#: init/completions/apt-cache.fish:10
msgid "Display package record"
-msgstr "Visa paketinformation"
+msgstr "Visa paketpost"
#: init/completions/apt-cache.fish:11
-msgid "Search pkgname by REGEX"
-msgstr "Sök paket matchande reguljärt uttryck"
+msgid "Search packagename by REGEX"
+msgstr "Sök paketnamn som matchar reguljärt uttryck"
#: init/completions/apt-cache.fish:12
msgid "Search full package name"
msgstr "Sök fullt paketnamn"
#: init/completions/apt-cache.fish:13
-msgid "Search pkgname only"
+msgid "Search packagename only"
msgstr "Sök enbart paketnamn"
#: init/completions/apt-cache.fish:14
-msgid "List dep for the package"
+msgid "List dependencies for the package"
msgstr "Visa beroenden för paket"
#: init/completions/apt-cache.fish:15
-msgid "List reverse dep for the package"
+msgid "List reverse dependencies for the package"
msgstr "Visa paket som beror på det givna paketet"
#: init/completions/apt-cache.fish:16
@@ -1648,27 +1655,29 @@ msgid "Debug preferences file"
msgstr "Fil för debuginställningar"
#: init/completions/apt-cache.fish:19
-msgid "Select file to store pkg cache"
+msgid "Select file to store package cache"
msgstr "Välj paketcache"
#: init/completions/apt-cache.fish:20
-msgid "Select file to store src cache"
-msgstr "Välj källkodscache"
+msgid "Select file to store source cache"
+msgstr "Välj fil för källkodscache"
#: init/completions/apt-cache.fish:21 init/completions/apt-ftparchive.fish:10
#: init/completions/apt-get.fish:39 init/completions/configure.fish:3
-#: init/completions/ping.fish:17 init/completions/rpm.fish:6
-#: init/completions/ssh.fish:98 init/completions/zip.fish:13
+#: init/completions/make.fish:23 init/completions/ping.fish:17
+#: init/completions/rpm.fish:6 init/completions/ssh.fish:98
+#: init/completions/valgrind.fish:27 init/completions/wget.fish:12
+#: init/completions/zip.fish:13
msgid "Quiet mode"
msgstr "Tyst läge"
#: init/completions/apt-cache.fish:22
-msgid "Print important deps"
+msgid "Print important dependencies"
msgstr "Visa viktiga beroenden"
#: init/completions/apt-cache.fish:23
msgid "Print full records"
-msgstr "Visa full info"
+msgstr "Visa fulla poster"
#: init/completions/apt-cache.fish:24
msgid "Auto-gen package cache"
@@ -1724,7 +1733,7 @@ msgid "Fast copy"
msgstr "Snabb kopiering"
#: init/completions/apt-cdrom.fish:9
-msgid "Thorough pkg scan"
+msgid "Thorough package scan"
msgstr "Nogrann paketskanning"
#: init/completions/apt-cdrom.fish:10
@@ -1748,15 +1757,15 @@ msgid "Specifiy config file"
msgstr "Välj konfigurationsfil"
#: init/completions/apt-file.fish:3
-msgid "Resync pkg contents from source"
+msgid "Resync package contents from source"
msgstr "Återsynkronisera paketinnehåll från källkod"
#: init/completions/apt-file.fish:4
-msgid "Search pkg containing pattern"
+msgid "Search package containing pattern"
msgstr "Sök paket innehållande mönster"
#: init/completions/apt-file.fish:5
-msgid "List contents of a pkg matching pattern"
+msgid "List contents of a package matching pattern"
msgstr "Lista innehåll av paket som matchar mönster"
#: init/completions/apt-file.fish:6
@@ -1788,7 +1797,7 @@ msgid "Set sources.list file"
msgstr "Välj sources.list fil"
#: init/completions/apt-file.fish:15
-msgid "Only display pkg name"
+msgid "Only display package name"
msgstr "Visa bara paketnamn"
#: init/completions/apt-file.fish:17
@@ -1796,7 +1805,7 @@ msgid "Run in dummy mode"
msgstr "Kör i dummyläge"
#: init/completions/apt-ftparchive.fish:3
-msgid "Generate pkg from source"
+msgid "Generate package from source"
msgstr "Generera paket från källkod"
#: init/completions/apt-ftparchive.fish:4
@@ -1813,7 +1822,7 @@ msgstr "Skapa release-fil"
#: init/completions/apt-ftparchive.fish:7
msgid "Remove records"
-msgstr "Ta bort paketinformation"
+msgstr "Ta bort poster"
#: init/completions/apt-ftparchive.fish:8
msgid "Generate MD5 sums"
@@ -1846,7 +1855,7 @@ msgstr "Välj konfigurationsfil"
#: init/completions/apt-ftparchive.fish:17
#: init/completions/apt-sortpkgs.fish:6
msgid "Set config options"
-msgstr "Välj inställningar"
+msgstr "Välj konfigurationsinställningar"
#: init/completions/apt-get.fish:3
msgid "Test if apt has yet to be given the subcommand"
@@ -1889,23 +1898,23 @@ msgid "Install/remove packages for dependencies"
msgstr "Installera/ta bort paket för beroenden"
#: init/completions/apt-get.fish:32
-msgid "Update cache and check dep"
+msgid "Update cache and check dependencies"
msgstr "Uppdatera källkod och verifiera beroenden"
#: init/completions/apt-get.fish:33
msgid "Clean local caches and packages"
-msgstr "Töm lokala cachear och paket"
+msgstr "Rengör lokala cachear och paket"
#: init/completions/apt-get.fish:34
msgid "Clean packages no longer be downloaded"
-msgstr "Ta bort paket som inte längre skall nedladdas"
+msgstr "Rengör paket som inte längre skall nedladdas"
#: init/completions/apt-get.fish:35
msgid "Download Only"
msgstr "Bara nedladdning"
#: init/completions/apt-get.fish:36
-msgid "Correct broken deps"
+msgid "Correct broken dependencies"
msgstr "Korrigera trasiga beroenden"
#: init/completions/apt-get.fish:37
@@ -1914,7 +1923,7 @@ msgstr "Ignorera saknade paket"
#: init/completions/apt-get.fish:38
msgid "Disable downloading packages"
-msgstr "Avaktivera paketnedladdning"
+msgstr "Inaktivera paketnedladdning"
#: init/completions/apt-get.fish:40
msgid "Perform a simulation"
@@ -1974,7 +1983,7 @@ msgstr "Avbryt om paket ska tas bort"
#: init/completions/apt-get.fish:56
msgid "Only accept source packages"
-msgstr "Acceptera bara källpaket"
+msgstr "Acceptera bara källkodpaket"
#: init/completions/apt-get.fish:57
msgid "Download only diff file"
@@ -1985,7 +1994,7 @@ msgid "Download only tar file"
msgstr "Ladda bara tar-fil"
#: init/completions/apt-get.fish:59
-msgid "Only process arch-dep build-deps"
+msgid "Only process arch-dependant build-dependencies"
msgstr "Processa bara arkitekturberoende byggberoenden"
#: init/completions/apt-get.fish:60
@@ -1998,7 +2007,7 @@ msgstr "Välj en konfigurationsfil"
#: init/completions/apt-get.fish:63
msgid "Set a config option"
-msgstr "Sätt ett konfigurationsinlägg"
+msgstr "Välj en konfigurationsinställning"
#: init/completions/apt-key.fish:2
msgid "Add a new key"
@@ -2021,19 +2030,19 @@ msgid "Tags you want to see"
msgstr "Välj märken du vill se"
#: init/completions/apt-listbugs.fish:5
-msgid "Outstanding 'pending upload' resolved done open"
-msgstr ""
+msgid "Bug-status you want to see"
+msgstr "Bugg-status du vill se"
#: init/completions/apt-listbugs.fish:6
msgid "Ignore bugs in your system"
msgstr "Ignorera buggar i ditt system"
#: init/completions/apt-listbugs.fish:7
-msgid "Ignore newer bugs than upgrade pkgs"
+msgid "Ignore newer bugs than upgrade packages"
msgstr "Ignorera nyare buggar än uppgraderade paket"
#: init/completions/apt-listbugs.fish:8
-msgid "Bugs for downgrade pkgs"
+msgid "Bugs for downgrade packages"
msgstr "Buggar för nedgraderade paket"
#: init/completions/apt-listbugs.fish:9
@@ -2068,7 +2077,7 @@ msgstr "Välj rss-titel"
msgid "Retrieve fresh bugs"
msgstr "Hämta färska buggar"
-#: init/completions/apt-listbugs.fish:17
+#: init/completions/apt-listbugs.fish:17 init/completions/scp.fish:32
msgid "Do not display progress bar"
msgstr "Visa inte förloppsindikator"
@@ -2078,7 +2087,7 @@ msgstr "Välj lokal cachekatalog"
#: init/completions/apt-listbugs.fish:19
msgid "Specify the expire cache timer"
-msgstr "Sätt cacheexpireringstimes"
+msgstr "Välj cacheexpireringstimer"
#: init/completions/apt-listbugs.fish:20
msgid "Specify apt config file"
@@ -2089,8 +2098,8 @@ msgid "Assume no to all questions"
msgstr "Anta nej på alla frågor"
#: init/completions/apt-listbugs.fish:23
-msgid "List bugs from pkgs"
-msgstr "Lista buggar i paket"
+msgid "List bugs from packages"
+msgstr "Lista buggar från paket"
#: init/completions/apt-listbugs.fish:24
msgid "List bugs in rss format"
@@ -2128,7 +2137,7 @@ msgstr "Välj display"
msgid "Insert header"
msgstr "Lägg till huvud"
-#: init/completions/apt-listchanges.fish:12
+#: init/completions/apt-listchanges.fish:12 init/completions/ps.fish:36
msgid "Display debug info"
msgstr "Visa debuginformation"
@@ -2141,15 +2150,15 @@ msgid "Generate master file"
msgstr "Generera huvudfil"
#: init/completions/apt-move.fish:3
-msgid "Alias of get"
-msgstr "Alias för get"
+msgid "Alias for 'get'"
+msgstr "Alias för 'get'"
#: init/completions/apt-move.fish:4
-msgid "Move pkgs to local tree"
+msgid "Move packages to local tree"
msgstr "Flytta paket till lokalt träd"
#: init/completions/apt-move.fish:5
-msgid "Delete obsolete pkg files"
+msgid "Delete obsolete package files"
msgstr "Radera obsoleta paketfiler"
#: init/completions/apt-move.fish:6
@@ -2161,62 +2170,58 @@ msgid "Rebuild index files"
msgstr "Bygg om indexfiler"
#: init/completions/apt-move.fish:8
-msgid "Move pkgs from cache to local mirror"
+msgid "Move packages from cache to local mirror"
msgstr "Flytta paket från cache till lokal spegel"
#: init/completions/apt-move.fish:9
-msgid "Alias to move delete packages"
-msgstr ""
+msgid "Alias for 'move delete packages'"
+msgstr "Alias för 'move delete packages'"
#: init/completions/apt-move.fish:10
-msgid "Alias for update"
-msgstr "Alias för update"
+msgid "Alias for 'update'"
+msgstr "Alias för 'update'"
#: init/completions/apt-move.fish:11
-msgid "Download pkg missing from mirror"
+msgid "Download package missing from mirror"
msgstr "Ladde ner paket som saknas från spegel"
#: init/completions/apt-move.fish:12
-msgid "Sync pkgs installed"
+msgid "Sync packages installed"
msgstr "Synkronisera installerade paket"
#: init/completions/apt-move.fish:14
-msgid "Move file from CLI"
-msgstr ""
+msgid "Move file specified on commandline"
+msgstr "Flytta filen som specificerades på kommandoraden"
#: init/completions/apt-move.fish:15
-msgid "Mirror|sync|repo"
-msgstr ""
+msgid "List packags that may serve as input to mirrorbin or mirrorsource"
+msgstr "Visa paket som kan användas som input till mirrorbin eller mirrorsrc"
#: init/completions/apt-move.fish:16
-msgid "Fetch pkg from STDIN"
-msgstr "Hämta paket från fil"
+msgid "Fetch package from STDIN"
+msgstr "Hämta paket från standard in"
#: init/completions/apt-move.fish:17
-msgid "Fetch src pkg from STDIN"
+msgid "Fetch source package from STDIN"
msgstr "Hämta källkodspaket från standard in"
#: init/completions/apt-move.fish:18
-msgid "Process all pkgs"
-msgstr "Processa alla paket"
+msgid "Process all packages"
+msgstr "Behandla alla paket"
#: init/completions/apt-move.fish:19
msgid "Use specific conffile"
msgstr "Välj konfigurationsfil"
#: init/completions/apt-move.fish:20
-msgid "Use specific dist"
-msgstr ""
-
-#: init/completions/apt-move.fish:21
msgid "Force deletion"
msgstr "Tvinga radering"
-#: init/completions/apt-move.fish:22
+#: init/completions/apt-move.fish:21
msgid "Suppresses normal output"
msgstr "Tyst läge"
-#: init/completions/apt-move.fish:23
+#: init/completions/apt-move.fish:22
msgid "Test run"
msgstr "Testkörning"
@@ -2241,7 +2246,7 @@ msgid "Debug level[default 0]"
msgstr "Debugnivå [Standard är 0]"
#: init/completions/apt-rdepends.fish:3
-msgid "Show bulid deps"
+msgid "Show bulid dependencies"
msgstr "Visa byggberoenden"
#: init/completions/apt-rdepends.fish:4
@@ -2249,28 +2254,28 @@ msgid "Generate a dotty graph"
msgstr "Generera en dottygraf"
#: init/completions/apt-rdepends.fish:5
-msgid "Show state of deps"
+msgid "Show state of dependencies"
msgstr "Visa beroendens tillstånd"
#: init/completions/apt-rdepends.fish:6
-msgid "List pkgs depending on"
+msgid "List packages depending on"
msgstr "Visa paket som beror på"
#: init/completions/apt-rdepends.fish:7
-msgid "Only follow DEPENDS recursively"
-msgstr ""
+msgid "Comma-separated list of dependancy types to follow recursively"
+msgstr "Komma-separarad lista av beroendetyper att följa rekursivt"
#: init/completions/apt-rdepends.fish:8
-msgid "Only show DEPENDS"
-msgstr ""
+msgid "Comma-separated list of dependancy types to show"
+msgstr "Komma-separarad lista av beroendetyper att visa"
#: init/completions/apt-rdepends.fish:9
-msgid "Only follow STATES recursively"
-msgstr ""
+msgid "Comma-separated list of package installation states to follow recursively"
+msgstr "Komma-separarad lista av paketinstallationstillstånd att följa rekursivt"
#: init/completions/apt-rdepends.fish:10
-msgid "Only show STATES"
-msgstr ""
+msgid "Comma-separated list of package installation states to show"
+msgstr "Komma-separarad lista av paketinstallationstillstånd att visa"
#: init/completions/apt-rdepends.fish:11
msgid "Display man page"
@@ -2278,7 +2283,7 @@ msgstr "Visa manualsida"
#: init/completions/apt-setup.fish:2
msgid "Probe a CD"
-msgstr ""
+msgstr "Känn av CD"
#: init/completions/apt-setup.fish:3
msgid "Run in noninteractive mode"
@@ -2288,7 +2293,7 @@ msgstr "Kör i icke-interaktivt läge"
#: init/completions/apt-show-source.fish:4
#: init/completions/apt-show-versions.fish:10
#: init/completions/apt-show-versions.fish:11
-msgid "Read pkg from FILE"
+msgid "Read package from file"
msgstr "Läs paket från fil"
#: init/completions/apt-show-source.fish:5
@@ -2303,7 +2308,7 @@ msgid "List PKG info"
msgstr "Lista paketinformation"
#: init/completions/apt-show-source.fish:9
-msgid "Print all src pkgs with version"
+msgid "Print all source packages with version"
msgstr "Visa alla källkodspaket med version"
#: init/completions/apt-show-versions.fish:3
@@ -2315,7 +2320,7 @@ msgid "Using regex"
msgstr "Använd reguljära uttryck"
#: init/completions/apt-show-versions.fish:5
-msgid "Print only upgradeable pkgs"
+msgid "Print only upgradeable packages"
msgstr "Visa bara paket som kan uppgraderas"
#: init/completions/apt-show-versions.fish:6
@@ -2323,7 +2328,7 @@ msgid "Print all versions"
msgstr "Visa alla versioner"
#: init/completions/apt-show-versions.fish:7
-msgid "Print pkg name/distro"
+msgid "Print package name/distro"
msgstr "Visa paketnamn/distribution"
#: init/completions/apt-show-versions.fish:8
@@ -2348,7 +2353,7 @@ msgstr "Debian distribution"
#: init/completions/apt-spy.fish:4
msgid "Servers in the areas"
-msgstr ""
+msgstr "Servrar i områden"
#: init/completions/apt-spy.fish:5
msgid "Conf file"
@@ -2356,7 +2361,7 @@ msgstr "Konfigurationsfil"
#: init/completions/apt-spy.fish:6
msgid "Finish after number of servers"
-msgstr ""
+msgstr "Avsluta efter antal servrar"
#: init/completions/apt-spy.fish:7
msgid "File to grab servers"
@@ -2376,19 +2381,19 @@ msgstr "Skriv en sources.list fil"
#: init/completions/apt-spy.fish:11
msgid "Use proxy server"
-msgstr ""
+msgstr "Använd proxyserver"
#: init/completions/apt-spy.fish:12
msgid "Comma separated country list"
-msgstr ""
+msgstr "Kommasepararad landslista"
#: init/completions/apt-spy.fish:13
msgid "How long in sec to download"
-msgstr ""
+msgstr "Hur länga i sekunder som nedladdning får ske"
#: init/completions/apt-spy.fish:14
msgid "Custom URL to get mirror list"
-msgstr ""
+msgstr "Egen URL för att hämta lista av speglar"
#: init/completions/apt-spy.fish:15
msgid "Write top servers to file"
@@ -2396,59 +2401,59 @@ msgstr "Skriv top-servrar till fil"
#: init/completions/apt-spy.fish:16
msgid "Number of top servers"
-msgstr ""
+msgstr "Antal toppservrar"
#: init/completions/apt-spy.fish:17
msgid "Update mirror list"
-msgstr ""
+msgstr "Uppdatera spegellista"
#: init/completions/apt-spy.fish:18
msgid "Version number"
msgstr "Visa versionsnummer"
#: init/completions/apt-src.fish:3
-msgid "Update list of src pkgs"
-msgstr "Updatera listan på källpaket"
+msgid "Update list of source packages"
+msgstr "Updatera källkodpaketlista"
#: init/completions/apt-src.fish:4
-msgid "Install src pkgs"
-msgstr "Installera källpaket"
+msgid "Install source packages"
+msgstr "Installera källkodpaket"
#: init/completions/apt-src.fish:5
-msgid "Upgrade src pkgs"
-msgstr "Upgradera källpaket"
+msgid "Upgrade source packages"
+msgstr "Upgradera källkodpaket"
#: init/completions/apt-src.fish:6
-msgid "Remove src pkgs"
-msgstr "Radera källpaket"
+msgid "Remove source packages"
+msgstr "Radera källkodpaket"
#: init/completions/apt-src.fish:7 init/completions/apt-src.fish:14
-msgid "Build src pkgs"
-msgstr "Bygg källpaket"
+msgid "Build source packages"
+msgstr "Bygg källkodpaket"
#: init/completions/apt-src.fish:8
-msgid "Clean src pkgs"
-msgstr "Rensa källpaket"
+msgid "Clean source packages"
+msgstr "Rengör källkodpaket"
#: init/completions/apt-src.fish:9
-msgid "Detect known src tree"
+msgid "Detect known source tree"
msgstr "Detektera känt källkodsträd"
#: init/completions/apt-src.fish:10
-msgid "List installed src pkg\\(s\\)"
-msgstr ""
+msgid "List installed source package\\(s\\)"
+msgstr "Lista installerade källkodpaket"
#: init/completions/apt-src.fish:11
-msgid "Root src tree"
+msgid "Root source tree"
msgstr "Rotkällträd"
#: init/completions/apt-src.fish:12
-msgid "Version of src pkg"
-msgstr "Version på källpaket"
+msgid "Version of source package"
+msgstr "Version på källkodpaket"
#: init/completions/apt-src.fish:13
-msgid "Name of the src pkg"
-msgstr "Namn på källkodspaket"
+msgid "Name of the source package"
+msgstr "Namn på källkodpaket"
#: init/completions/apt-src.fish:15
msgid "Install after build"
@@ -2499,12 +2504,12 @@ msgid "Select an action"
msgstr "Välj en handling"
#: init/completions/apt-zip-inst.fish:6 init/completions/apt-zip-list.fish:6
-msgid "List of pkgs to install"
-msgstr "Visa paket att installera"
+msgid "List of packages to install"
+msgstr "Lista av paket att installera"
#: init/completions/apt-zip-inst.fish:7 init/completions/apt-zip-list.fish:7
msgid "Fix broken option"
-msgstr "Fixa trasigt val"
+msgstr "Fixa trasig flagga"
#: init/completions/apt-zip-inst.fish:8 init/completions/apt-zip-list.fish:8
msgid "Specify a non-mountpoint dir"
@@ -2562,7 +2567,7 @@ msgstr "Begränsande lastfaktor"
msgid "Minimum interval in seconds"
msgstr "Minimalt intervall i sekunder"
-#: init/completions/atd.fish:4
+#: init/completions/atd.fish:4 init/completions/make.fish:11
msgid "Debug mode"
msgstr "Debugläge"
@@ -2616,11 +2621,11 @@ msgstr "Använd exakt Posix bc"
#: init/completions/bc.fish:7
msgid "Do not print the GNU welcome"
-msgstr "Visa inte välkomstmeddelande"
+msgstr "Visa inte GNUs välkomstmeddelande"
#: init/completions/btdownloadheadless.py.fish:4
msgid "Maximum uploads at once"
-msgstr "Maximalt antal uppladningar"
+msgstr "Maximalt antal samtidiga uppladningar"
#: init/completions/btdownloadheadless.py.fish:5
msgid "Number of seconds between keepalives"
@@ -2664,7 +2669,7 @@ msgstr "Lokal fil att hämta till"
#: init/completions/btdownloadheadless.py.fish:15
msgid "Time to close inactive socket"
-msgstr "Fördröjning innan inaktivt uttag stängs"
+msgstr "Fördröjning innan inaktivt uttag (socket) stängs"
#: init/completions/btdownloadheadless.py.fish:16
msgid "Time between checking timeouts"
@@ -2680,7 +2685,7 @@ msgstr "Maximalt tid att gissa kvot"
#: init/completions/btdownloadheadless.py.fish:19
msgid "IP to bind to locally"
-msgstr "Lokal IP adress att binda till"
+msgstr "Lokal IP-adress att binda till"
#: init/completions/btdownloadheadless.py.fish:20
msgid "Time between screen updates"
@@ -2712,7 +2717,7 @@ msgstr "Om disk-hashar skall verifieras"
#: init/completions/btdownloadheadless.py.fish:27
msgid "Maximum kB/s to upload at"
-msgstr "MAximal uppladdningstakt i kB/s"
+msgstr "Maximal uppladdningstakt i kB/s"
#: init/completions/btdownloadheadless.py.fish:28
msgid "Seconds to wait for data to come in before assuming choking"
@@ -2728,7 +2733,7 @@ msgstr "Antal nedladdningar för att byta från slumpmässig slice till ovanliga
#: init/completions/btdownloadheadless.py.fish:31
msgid "Number of uploads to fill out to with optimistic unchokes"
-msgstr "Antalet uppladningar att fulla med optimistisk avstrypning"
+msgstr "Antalet uppladningar att fylla med optimistisk avstrypning"
#: init/completions/btdownloadheadless.py.fish:32
msgid "Whether to inform the user that hash failures occur"
@@ -2745,9 +2750,8 @@ msgid "Overwrite"
msgstr "Skiv över"
#: init/completions/bunzip2.fish:11 init/completions/bzip2.fish:12
-#: init/completions/tar.fish:26
msgid "Do not overwrite"
-msgstr "Skriv ej över"
+msgstr "Skriv inte över"
#: init/completions/bunzip2.fish:12 init/completions/bzcat.fish:8
#: init/completions/bzip2.fish:13
@@ -2858,7 +2862,7 @@ msgid "Username"
msgstr "Användarnamn"
#: init/completions/commandline.fish:1
-msgid "Add text to the end of commandline"
+msgid "Add text to the end of the selected area"
msgstr "Lägg till text till slutet av valt område"
#: init/completions/commandline.fish:2
@@ -2866,28 +2870,30 @@ msgid "Add text at cursor"
msgstr "Lägg till text vid markören"
#: init/completions/commandline.fish:3
-msgid "Replace selected part of buffer (replace)"
+msgid "Replace selected part"
msgstr "Ersätt valt område"
#: init/completions/commandline.fish:5
-msgid "Operate only on job under cursor"
+msgid "Select job under cursor"
msgstr "Välj jobb under markören"
#: init/completions/commandline.fish:6
-msgid "Operate only on process under cursor"
+#, fuzzy
+msgid "Select process under cursor"
msgstr "Välj process under markören"
#: init/completions/commandline.fish:7
-msgid "Operate only on tokenizer token under cursor"
+msgid "Select token under cursor"
msgstr "Välj symbol under markören"
#: init/completions/commandline.fish:8
-msgid "Operate on entire buffer (default)"
-msgstr "Välj hela buffern"
+msgid "Select entire command line (default)"
+msgstr "Välj hela kommandoraden (standard)"
#: init/completions/commandline.fish:10
-msgid "Only return part of commandline before the cursor"
-msgstr "Visa bara del av buffern före markören"
+#, fuzzy
+msgid "Only return that part of the command line before the cursor"
+msgstr "Visa bara den del av kommandoraden som är före markören"
#: init/completions/commandline.fish:11
msgid "Inject readline functions to reader"
@@ -2955,7 +2961,7 @@ msgstr "Skapa inte utfiler"
#: init/completions/configure.fish:7
msgid "Set source directory"
-msgstr "Sätt källkatalog"
+msgstr "Välj källkatalog"
#: init/completions/configure.fish:8
msgid "Architecture-independent install directory"
@@ -3071,14 +3077,14 @@ msgstr "Ta bort inlägg i .cvspass för fjärrlager"
#: init/completions/cvs.fish:21
msgid "Password server mode"
-msgstr "Serverpassordläge"
+msgstr "Serverlösenordsläge"
#: init/completions/cvs.fish:22
msgid "Show last revision where each line of module was modified"
msgstr "Visa senaste revision vid vilken vare rad i modul modifierades"
#: init/completions/cvs.fish:23
-msgid "Create \"patch\" format diffs between releases"
+msgid "Create patch format diffs between releases"
msgstr "Skapa differens mellan versioner i \"patch\"-format"
#: init/completions/cvs.fish:24
@@ -3131,11 +3137,11 @@ msgstr "Visa användningsinformation för kommando"
#: init/completions/cvs.fish:38
msgid "Cause CVS to be really quiet"
-msgstr "Mycket tyst läge"
+msgstr "Gör CVS mycket tyst läge"
#: init/completions/cvs.fish:39
msgid "Cause CVS to be somewhat quiet"
-msgstr "Tyst läge"
+msgstr "Gör CVS något tystare"
#: init/completions/cvs.fish:40
msgid "Make checked-out files read-only"
@@ -3154,17 +3160,12 @@ msgid "Show trace of program execution -- try with -n"
msgstr "Visa spår av programexekvering -- använd med -n"
#: init/completions/cvs.fish:45
-msgid "Use \"tmpdir\" for temporary files"
+msgid "Use tmpdir for temporary files"
msgstr "Välj temporär katalog"
#: init/completions/cvs.fish:46
-msgid "Use \"editor\" for editing log information"
-msgstr "Välj editor"
-
-#: init/completions/cvs.fish:47
-#, sh-format
-msgid "Overrides $CVSROOT as the root of the CVS tree"
-msgstr "Välj rot för CVSträd"
+msgid "Use editor for editing log information"
+msgstr "Välj editor för loginformationsredigering"
#: init/completions/cvs.fish:48
msgid "Do not use the ~/.cvsrc file"
@@ -3184,7 +3185,7 @@ msgstr "Autentisera all nätverkstrafik"
#: init/completions/cvs.fish:52
msgid "Set CVS user variable"
-msgstr "Set CVS-användare"
+msgstr "Välj CVS-användare"
#: init/completions/darcs.fish:28
msgid "Create new project"
@@ -3504,11 +3505,11 @@ msgstr "Tillåt konflikter, men markera dem inte"
#: init/completions/darcs.fish:137
msgid "Fail on patches that create conflicts [DEFAULT]"
-msgstr ""
+msgstr "Misslyckas på fixar som skapar konflikter [STANDARD]"
#: init/completions/darcs.fish:140
msgid "Forward unsigned messages without extra header"
-msgstr ""
+msgstr "Skicka vidare osignerade meddelanden utan extra huvud"
#: init/completions/darcs.fish:150
msgid "Check the entire repository"
@@ -3544,7 +3545,7 @@ msgstr "Signera fix med givet nyckelid"
#: init/completions/darcs.fish:183
msgid "Sign the patch using openssl with a given private key"
-msgstr "Signera fix via openssl med en given privat nyckel"
+msgstr "Signera fix via openssl med en given hemlig nyckel"
#: init/completions/darcs.fish:184
msgid "Do not sign the patch"
@@ -3552,7 +3553,7 @@ msgstr "Signera inte fixen"
#: init/completions/darcs.fish:187
msgid "Send to context stored in FILENAME"
-msgstr ""
+msgstr "Skicka till sammanhang lagrat i FILNAMN"
#: init/completions/darcs.fish:188
msgid "Edit the patch bundle description"
@@ -3560,7 +3561,7 @@ msgstr "Redigera fix-paketbeskrivning"
#: init/completions/darcs.fish:195
msgid "Use a plain pristine tree [DEFAULT]"
-msgstr ""
+msgstr "Använd enkelt pristint träd [DEFAULT]"
#: init/completions/darcs.fish:196
msgid "Use no pristine tree"
@@ -3580,7 +3581,7 @@ msgstr "Visa datum i ISO 8601-format"
#: init/completions/date.fish:4 init/completions/touch.fish:9
msgid "Set time"
-msgstr "Sätt tid"
+msgstr "Välj tid"
#: init/completions/date.fish:5
msgid "Output RFC-2822 compliant date string"
@@ -3604,10 +3605,12 @@ msgid "Block size"
msgstr "Blockstorlek"
#: init/completions/df.fish:5 init/completions/du.fish:7
+#: init/completions/ls.fish:21
msgid "Human readable sizes"
msgstr "Människoanpassade storleksangivelser, bas 1024"
#: init/completions/df.fish:6 init/completions/du.fish:8
+#: init/completions/ls.fish:22
msgid "Human readable sizes, powers of 1000"
msgstr "Människoanpassade storleksangivelser, bas 1000"
@@ -3796,7 +3799,7 @@ msgid "No newline"
msgstr "Skriv ingen radbrytning"
#: init/completions/echo.fish:2
-msgid "Use backslash-escaped characters"
+msgid "Use backslash escaped characters"
msgstr "Använd omvänt snedstreck-specialsekvenser"
#: init/completions/echo.fish:3
@@ -3991,14 +3994,6 @@ msgstr "Kontrollera pekare från 'new'"
msgid "Put globals in the common segment"
msgstr "Lägg globaler i det gemensamma segmentet"
-#: init/completions/gcc.fish:66
-msgid "Accept $ in identifiers"
-msgstr "Tillåt $ i identifierare"
-
-#: init/completions/gcc.fish:67
-msgid "Reject $ in identifiers"
-msgstr "Tillåt inte $ i identifierare"
-
#: init/completions/gcc.fish:68
msgid "Do not omit unneeded temporarys"
msgstr "Ta into bort onödiga tillfälliga variabler"
@@ -4037,15 +4032,15 @@ msgstr "Visa inte varningar om MFC"
#: init/completions/gcc.fish:77
msgid "Disable some built-in functions"
-msgstr "Avaktivera somliga inbyggda funktioner"
+msgstr "Inaktivera somliga inbyggda funktioner"
#: init/completions/gcc.fish:78
msgid "Disable operator keywords"
-msgstr "Avaktivera operator-nyckelord"
+msgstr "Inaktivera operator-nyckelord"
#: init/completions/gcc.fish:79
msgid "Disable optional diagnostics"
-msgstr "Avaktivera extra-diagnostik"
+msgstr "Inaktivera frivillig diagnostik"
#: init/completions/gcc.fish:80
msgid "Downgrade some errors to warnings"
@@ -4057,7 +4052,7 @@ msgstr "Slå på automatisk templateinstantiering vid länktillfälle"
#: init/completions/gcc.fish:82
msgid "Disable generation of C++ runtime type information"
-msgstr "Avaktivera generering av C++-typinformation under körning av program"
+msgstr "Inaktivera generering av C++-typinformation under körning av program"
#: init/completions/gcc.fish:86
msgid "Set maximum template depth to %s"
@@ -4213,7 +4208,7 @@ msgstr "Processa binär fil som text"
#: init/completions/grep.fish:4
msgid "Print NUM lines of leading context"
-msgstr "Visa NUM rader av föregående sammanhang"
+msgstr "Visa NUM rader av inledande sammanhang"
#: init/completions/grep.fish:5
msgid "Print NUM lines of context"
@@ -4458,7 +4453,7 @@ msgstr "Hjälp om hemkatalogexpansion ~ANVÄNDARE"
#: init/completions/help.fish:33
msgid "Help on brace expansion {a,b,c}"
-msgstr "Hjälp om måsvingeexpansion {a,b,c}"
+msgstr "Hjälp om klammerparantesexpansion {a,b,c}"
#: init/completions/help.fish:34
msgid "Help on wildcard expansion *.*"
@@ -4494,15 +4489,15 @@ msgstr "Visa effektivt användar-id"
#: init/completions/ifconfig.fish:1
msgid "Stop interface"
-msgstr "Stanna enhet"
+msgstr "Stanna gränssnitt"
#: init/completions/ifconfig.fish:2
msgid "Start interface"
-msgstr "Starta enhet"
+msgstr "Starta gränssnitt"
#: init/completions/ifconfig.fish:25
msgid "Network interface"
-msgstr "Nätverksenhet"
+msgstr "Nätverkgränssnitt"
#: init/completions/jobs.fish:3
msgid "Show the process id of each process in the job"
@@ -4530,11 +4525,11 @@ msgstr "Sök förbi slut på skärmen"
#: init/completions/less.fish:3
msgid "Buffer space"
-msgstr "Buffer-utrymme"
+msgstr "Buffert-utrymme"
#: init/completions/less.fish:4
msgid "Disable automtic buffer allocation"
-msgstr "Avaktivera automatisk buffer-allokering"
+msgstr "Inaktivera automatisk buffert-allokering"
#: init/completions/less.fish:5
msgid "Repaint from top"
@@ -4546,15 +4541,15 @@ msgstr "Töm och rita om från toppen"
#: init/completions/less.fish:7
msgid "Supress error for lacking terminal capability"
-msgstr "Visa inte felmeddelanden för saknade terminalfunktioner"
+msgstr "Visa inte felmeddelanden för saknade terminalförmågor"
#: init/completions/less.fish:8
msgid "Exit on second EOF"
-msgstr "Avsluta andra gången slut på fil påträffas"
+msgstr "Avsluta andra gången filslut påträffas"
#: init/completions/less.fish:9
msgid "Exit on EOF"
-msgstr "Avsluta vid slut på fil"
+msgstr "Avsluta vid filslut"
#: init/completions/less.fish:10
msgid "Open non-regular files"
@@ -4586,7 +4581,7 @@ msgstr "Sökning ignorerar skiftläge"
#: init/completions/less.fish:17
msgid "Target line"
-msgstr ""
+msgstr "Målrad"
#: init/completions/less.fish:18
msgid "Display status column"
@@ -4703,7 +4698,7 @@ msgstr "Välj citat-tecken"
#: init/completions/less.fish:50
msgid "Lines after EOF are blank"
-msgstr "Gör rader efter slut på fil tomma"
+msgstr "Gör rader efter filslut tomma"
#: init/completions/less.fish:51
msgid "Characters to scroll on left/right arrows"
@@ -4726,7 +4721,7 @@ msgid "Octal escapes for non graphic"
msgstr "Använd oktala specialsekvenser för ickegrafiska tecken"
#: init/completions/ls.fish:8
-msgid "Use SIZE-byte blocks"
+msgid "Set block size"
msgstr "Välj blockstorlek"
#: init/completions/ls.fish:9
@@ -4746,18 +4741,19 @@ msgid "Use colors"
msgstr "Använd färger"
#: init/completions/ls.fish:13
-msgid "List directories"
+msgid "List directories, not their content"
msgstr "Visa kataloger, inte deras innehåll"
#: init/completions/ls.fish:14
msgid "Generate dired output"
msgstr "Generera utdata för dired"
-#: init/completions/ls.fish:15 init/completions/ls.fish:66
-msgid "Do not sort"
+#: init/completions/ls.fish:15
+msgid "Don't sort"
msgstr "Sortera ej filer"
-#: init/completions/ls.fish:16
+#: init/completions/ls.fish:16 init/completions/ls.fish:25
+#: init/completions/ls.fish:35
msgid "Append filetype indicator"
msgstr "Lägg till filtypsindikator"
@@ -4774,7 +4770,7 @@ msgid "Long format without owner"
msgstr "Långt format utan ägare"
#: init/completions/ls.fish:20
-msgid "Do not print group information"
+msgid "Don't print group information"
msgstr "Visa inte information om grupp"
#: init/completions/ls.fish:23 init/completions/ls.fish:30
@@ -4869,6 +4865,10 @@ msgstr "Antag tabbavstånd"
msgid "Show access time"
msgstr "Visa senaste åtkomsttid"
+#: init/completions/ls.fish:66
+msgid "Do not sort"
+msgstr "Sortera ej filer"
+
#: init/completions/ls.fish:67
msgid "Sort by version"
msgstr "Sortera på version"
@@ -4923,7 +4923,7 @@ msgstr "Objektfilprefix"
#: init/completions/makedepend.fish:9
msgid "Starting string delimiter"
-msgstr ""
+msgstr "Avdelare för start av sträng"
#: init/completions/makedepend.fish:10
msgid "Line width"
@@ -4945,13 +4945,9 @@ msgstr "Använd som make-fil"
msgid "Change directory"
msgstr "Ändra katalog"
-#: init/completions/make.fish:11 init/completions/man.fish:52
-msgid "Debug"
-msgstr "Debug-läge"
-
#: init/completions/make.fish:12
msgid "Environment before makefile"
-msgstr ""
+msgstr "Använd värden från miljövariabler före värden från make-fil"
#: init/completions/make.fish:13
msgid "Ignore errors"
@@ -5086,6 +5082,10 @@ msgstr "Visa alla matchningar"
msgid "Always reformat"
msgstr "Formatera alltid om"
+#: init/completions/man.fish:52
+msgid "Debug"
+msgstr "Debug-läge"
+
#: init/completions/man.fish:53
msgid "Debug and run"
msgstr "Debugga och kör"
@@ -5160,19 +5160,19 @@ msgstr "Dumpa konfigurationsfil"
#: init/completions/modprobe.fish:9
msgid "Do not actually insert/remove module"
-msgstr ""
+msgstr "Utför inte insättning/borttagning av modul"
#: init/completions/modprobe.fish:10 init/completions/modprobe.fish:11
msgid "Ignore install and remove commands in configuration file"
-msgstr ""
+msgstr "Ignorera installations- och borttagningskommandon i konfigurationsfil"
#: init/completions/modprobe.fish:12
msgid "Ignore bogus module names"
-msgstr ""
+msgstr "Ignorera felaktiga modulnamn"
#: init/completions/modprobe.fish:13
msgid "Remove modules"
-msgstr ""
+msgstr "Ta bort moduler"
#: init/completions/modprobe.fish:15
msgid "Ignore all version information"
@@ -5180,11 +5180,11 @@ msgstr "Ignorera all versionsinformation"
#: init/completions/modprobe.fish:16
msgid "Ignore version magic information"
-msgstr ""
+msgstr "Ignorera versionsmagiinformation"
#: init/completions/modprobe.fish:17
msgid "Ignore module interface version"
-msgstr ""
+msgstr "Ignorera modulinterfaceversion"
#: init/completions/modprobe.fish:18
msgid "List all modules matching the given wildcard"
@@ -5200,219 +5200,219 @@ msgstr "Begränsa jokertecken till den specificerade katalogen"
#: init/completions/modprobe.fish:21
msgid "Send error messages through syslog"
-msgstr ""
+msgstr "Skicka felmeddelanden genom syslog"
#: init/completions/modprobe.fish:22
msgid "Specify kernel version"
-msgstr ""
+msgstr "Välj kärnversion"
#: init/completions/modprobe.fish:23
msgid "List dependencies of module"
-msgstr ""
+msgstr "Visa beroenden för modul"
#: init/completions/modprobe.fish:24
msgid "Rename module"
-msgstr ""
+msgstr "By tnamn på modul"
#: init/completions/modprobe.fish:25
msgid "Fail if inserting already loaded module"
-msgstr ""
+msgstr "Misslyckas vid insättning av redan laddad modul"
#: init/completions/mount.fish:49
msgid "Mount filesystems in fstab"
-msgstr ""
+msgstr "Montera filsystemen i fstab"
#: init/completions/mount.fish:50
msgid "Fork process for each mount"
-msgstr ""
+msgstr "Starta underprocess för varje montering"
#: init/completions/mount.fish:51
msgid "Fake mounting"
-msgstr ""
+msgstr "Falsk montering"
#: init/completions/mount.fish:52
msgid "Add label to output"
-msgstr ""
+msgstr "Lägg till etikett till utdata"
#: init/completions/mount.fish:53
msgid "Do not write mtab"
-msgstr ""
+msgstr "Skriv inte till mtab"
#: init/completions/mount.fish:54
msgid "Tolerate sloppy mount options"
-msgstr ""
+msgstr "Tolerera slarviga monteringsflaggor"
#: init/completions/mount.fish:55
msgid "Read only"
-msgstr ""
+msgstr "Skrivskyddad"
#: init/completions/mount.fish:56
msgid "Read/Write mode"
-msgstr ""
+msgstr "Läs ock skrivbart läge"
#: init/completions/mount.fish:57
msgid "Mount partition with specified label"
-msgstr ""
+msgstr "Montera partitioner med specificerad etikett"
#: init/completions/mount.fish:58
msgid "Mount partition with specified UID"
-msgstr ""
+msgstr "Montera partition med specificerat UID"
#: init/completions/mount.fish:59
msgid "Exclude filesystems"
-msgstr ""
+msgstr "Exkludera filsystem"
#: init/completions/mount.fish:60
msgid "Remount a subtree to a second position"
-msgstr ""
+msgstr "Montera om ett subträd till en andra plats"
#: init/completions/mount.fish:61
msgid "Move a subtree to a new position"
-msgstr ""
+msgstr "Flytta ett subträd till en ny plats"
#: init/completions/mount.fish:62
msgid "Filesystem"
-msgstr ""
+msgstr "Filsystem"
#: init/completions/mount.fish:64
msgid "Mount option"
-msgstr ""
+msgstr "Monteringsflagga"
#: init/completions/mplayer.fish:27
msgid "Dynamically change postprocessing"
-msgstr ""
+msgstr "Ändra efterbehyandling dynamiskt"
#: init/completions/mplayer.fish:28
msgid "A/V sync speed"
-msgstr ""
+msgstr "Ljud/bild synkroniseringshastighet"
#: init/completions/mplayer.fish:29 init/completions/mplayer.fish:31
msgid "Skip frames to maintain A/V sync"
-msgstr ""
+msgstr "Hoppa över bilder för att behålla ljud/bild synkronisering"
#: init/completions/mplayer.fish:32
msgid "Loop playback"
-msgstr ""
+msgstr "Upprepa uppspelning"
#: init/completions/mplayer.fish:33
msgid "Play in random order"
-msgstr ""
+msgstr "Spela i slumpmässig ordning"
#: init/completions/mplayer.fish:36
msgid "Full screen"
-msgstr ""
+msgstr "Fullskärmsläge"
#: init/completions/mplayer.fish:37
msgid "Set playlist"
-msgstr ""
+msgstr "Välj spellista"
#: init/completions/mplayer.fish:38
msgid "Audio language"
-msgstr ""
+msgstr "Ljudspråk"
#: init/completions/mplayer.fish:39
msgid "Play audio from file"
-msgstr ""
+msgstr "Spela ljud från fil"
#: init/completions/mplayer.fish:40
msgid "Set default CD-ROM drive"
-msgstr ""
+msgstr "Välj normal CD-ROM-enhet"
#: init/completions/mplayer.fish:41
msgid "Set number of audio channels"
-msgstr ""
+msgstr "Välj antal ljudkanaler"
#: init/completions/mplayer.fish:42
msgid "Set start chapter"
-msgstr ""
+msgstr "Välj startkapitel"
#: init/completions/mplayer.fish:43
msgid "Set default DVD-ROM drive"
-msgstr ""
+msgstr "Välj normal DVD-ROM-enhet"
#: init/completions/mplayer.fish:44
msgid "Set dvd viewing angle"
-msgstr ""
+msgstr "Välj dvd-betraktningsvinkel"
#: init/completions/mplayer.fish:45
msgid "Force rebuilding index"
-msgstr ""
+msgstr "Tvinga ombyggning av index"
#: init/completions/mplayer.fish:46
msgid "Override framerate"
-msgstr ""
+msgstr "Åsidosätt bildfrekvens"
#: init/completions/mplayer.fish:47
-msgid "Rebuild index if unavailable"
-msgstr "Bygg om index om inte tillgängligt"
+msgid "Build index if unavailable"
+msgstr "Bygg index om inte tillgängligt"
#: init/completions/mplayer.fish:48
msgid "Load index from file"
-msgstr ""
+msgstr "Ladda index från fil"
#: init/completions/mplayer.fish:49
msgid "Force non-interleaved AVI parser"
-msgstr ""
+msgstr "Tvinga icke-sammanflätat AVI-tolk"
#: init/completions/mplayer.fish:50
msgid "Rebuild index and save to file"
-msgstr ""
+msgstr "Bygg om index och spara till fil"
#: init/completions/mplayer.fish:51
msgid "Seek to give time position"
-msgstr ""
+msgstr "Sök för att ange tidsposition"
#: init/completions/mplayer.fish:52
msgid "TV capture mode"
-msgstr ""
+msgstr "TV-inspelningsläge"
#: init/completions/mplayer.fish:53
msgid "Subtitle language"
-msgstr ""
+msgstr "Textningsspråk"
#: init/completions/mplayer.fish:54
msgid "Subtitle file"
-msgstr ""
+msgstr "Textningsfil"
#: init/completions/mplayer.fish:55
msgid "Handle subtitlefile as unicode"
-msgstr ""
+msgstr "Hantera textningsfil som unicode"
#: init/completions/mplayer.fish:56
msgid "Handle subtitlefile as utf8"
-msgstr ""
+msgstr "Hantera textningsfil som utf8"
#: init/completions/mplayer.fish:58 init/completions/mplayer.fish:76
msgid "Video output"
-msgstr ""
+msgstr "Bildutdata"
#: init/completions/mplayer.fish:64 init/completions/mplayer.fish:70
msgid "Audio output"
-msgstr ""
+msgstr "Ljudutdata"
#: init/completions/mv.fish:1
msgid "Make backup of each existing destination file"
-msgstr ""
+msgstr "Gör backup av varje existerande destinationsfil"
#: init/completions/mv.fish:2
msgid "Do not prompt before overwriting"
-msgstr ""
+msgstr "Fråga inte före överskrivning"
#: init/completions/mv.fish:3
msgid "Prompt before overwrite"
-msgstr ""
+msgstr "Fråga före överskrivning"
#: init/completions/mv.fish:4
msgid "Answer for overwrite questions"
-msgstr ""
+msgstr "Svar till överskrivningsfrågor"
#: init/completions/mv.fish:5
msgid "Remove trailing slashes from source"
-msgstr ""
+msgstr "Ta bort snedstreck i slutet på källangivelser"
#: init/completions/mv.fish:6
msgid "Backup suffix"
-msgstr ""
+msgstr "Backup-ändelse"
#: init/completions/mv.fish:7
msgid "Target directory"
@@ -5420,40 +5420,35 @@ msgstr "Målkatalog"
#: init/completions/mv.fish:8
msgid "Do not overwrite newer files"
-msgstr ""
-
-#: init/completions/mv.fish:9 init/completions/rmdir.fish:5
-#: init/completions/rm.fish:7
-msgid "Explain what is done"
-msgstr ""
+msgstr "Skriv inte över nyare filer"
#: init/completions/nextd.fish:1 init/completions/prevd.fish:1
msgid "Also print directory history"
-msgstr ""
+msgstr "Skriv även ut kataloghistorik"
#: init/completions/nice.fish:2
msgid "Increment priority by specified number first"
-msgstr ""
+msgstr "Öka prioritet med specificerat nummer först"
#: init/completions/perl.fish:1 init/completions/ruby.fish:2
msgid "Specify record separator"
-msgstr ""
+msgstr "Specificera postavdelare"
#: init/completions/perl.fish:2 init/completions/ruby.fish:3
-msgid "Feed input to split"
-msgstr ""
+msgid "Turn on autosplit mode"
+msgstr "Slå på autosplitläge"
#: init/completions/perl.fish:3 init/completions/ruby.fish:4
msgid "Check syntax"
-msgstr ""
+msgstr "Kontrollera syntax"
#: init/completions/perl.fish:4 init/completions/ruby.fish:6
msgid "Debugger"
-msgstr ""
+msgstr "Debugger"
#: init/completions/perl.fish:5
msgid "Debug option"
-msgstr ""
+msgstr "Debugflagga"
#: init/completions/perl.fish:6 init/completions/ruby.fish:7
msgid "Execute command"
@@ -5461,45 +5456,45 @@ msgstr "Utför kommando"
#: init/completions/perl.fish:7 init/completions/ruby.fish:9
msgid "Set regexp used to split input"
-msgstr ""
+msgstr "Välj reguljärt uttryck för att avdela indata"
#: init/completions/perl.fish:8 init/completions/ruby.fish:10
msgid "Edit files in-place"
-msgstr ""
+msgstr "Redigera filer på plats"
#: init/completions/perl.fish:9 init/completions/ruby.fish:11
msgid "Include path"
-msgstr ""
+msgstr "Inkluderingssökväg"
#: init/completions/perl.fish:10 init/completions/ruby.fish:12
-msgid "Line ending processing"
-msgstr ""
+msgid "Automatic line ending processing"
+msgstr "Automatisk radslutprocessning"
#: init/completions/perl.fish:11 init/completions/ruby.fish:13
msgid "Loop script"
-msgstr ""
+msgstr "Upprepa skript"
#: init/completions/perl.fish:12 init/completions/ruby.fish:14
#, sh-format
msgid "Loop script, print $_"
-msgstr ""
+msgstr "Upprepa skript, skriv $_"
#: init/completions/perl.fish:13
msgid "Invoke CPP"
-msgstr ""
+msgstr "Kör C-förprocessorn"
#: init/completions/perl.fish:14 init/completions/ruby.fish:16
msgid "Define custom switches"
-msgstr ""
+msgstr "Definera egna flaggor"
#: init/completions/perl.fish:15 init/completions/ruby.fish:17
#, sh-format
msgid "Search $PATH for script"
-msgstr ""
+msgstr "Genomsög $PATH efter skript"
#: init/completions/perl.fish:16 init/completions/ruby.fish:18
msgid "Taint checking"
-msgstr ""
+msgstr "'taint'-verifiering"
#: init/completions/perl.fish:17
msgid "Unsafe mode"
@@ -5507,11 +5502,11 @@ msgstr "Osäkert läge"
#: init/completions/perl.fish:19 init/completions/ruby.fish:22
msgid "Extract script"
-msgstr ""
+msgstr "Extrahera skript"
#: init/completions/pine.fish:1
msgid "Open folder"
-msgstr ""
+msgstr "Öppna katalog"
#: init/completions/pine.fish:2
msgid "Open file"
@@ -5519,27 +5514,27 @@ msgstr "Öppna fil"
#: init/completions/pine.fish:4
msgid "Start in folder index"
-msgstr ""
+msgstr "Börja i folderindex"
#: init/completions/pine.fish:5
msgid "Initial set of keystrokes"
-msgstr ""
+msgstr "Initiala tangenttryckningar"
#: init/completions/pine.fish:6
msgid "Use function keys for commands"
-msgstr ""
+msgstr "Använd funktionstangenter för kommandon"
#: init/completions/pine.fish:7
msgid "Expand collections in FOLDER LIST display"
-msgstr ""
+msgstr "Expandera samlingar i sidan 'FOLDER LIST'"
#: init/completions/pine.fish:8
msgid "Start with specified current message number"
-msgstr ""
+msgstr "Starta vid specificerat meddelandenummer"
#: init/completions/pine.fish:9
msgid "Open folder read-only"
-msgstr ""
+msgstr "Öppna folder i skrivskyddat läge"
#: init/completions/pine.fish:10
msgid "Set configuration file"
@@ -5567,115 +5562,115 @@ msgstr "Skapa exempelkonfigurationsfil"
#: init/completions/pine.fish:16
msgid "Set mail sort order"
-msgstr ""
+msgstr "Välj brevsorteringsordning"
#: init/completions/pine.fish:26
msgid "Config option"
-msgstr ""
+msgstr "Konfigurationsinställning"
#: init/completions/ping.fish:2
msgid "Audible ping"
-msgstr ""
+msgstr "Hörbart ping"
#: init/completions/ping.fish:3
msgid "Adaptive ping"
-msgstr ""
+msgstr "Adaptiv ping"
#: init/completions/ping.fish:4
msgid "Allow pinging a broadcast address"
-msgstr ""
+msgstr "Tillåt pingning till broadcast-adress"
#: init/completions/ping.fish:5
msgid "Do not allow ping to change source address of probes"
-msgstr ""
+msgstr "Tillåt inte ping att ändra källadress på frågor"
#: init/completions/ping.fish:6
-msgid "Stop after sending count ECHO_REQUEST packets"
-msgstr ""
+msgid "Stop after specified number of ECHO_REQUEST packets"
+msgstr "Stoppa efter specificerat antal ECHO_REQUEST-paket"
#: init/completions/ping.fish:7
msgid "Set the SO_DEBUG option on the socket being used"
-msgstr ""
+msgstr "Sätt SO_DEBUG-flaggan på uttaget (socket) som används"
#: init/completions/ping.fish:8
-msgid "Allocate and set 20 bit flow label on echo request packets"
-msgstr ""
+msgid "Allocate and set 20 bit flow label on ECHO_REQUEST packets"
+msgstr "Allokera och sätt 20 bitars flödesetikett på ECHO_REQUEST-paket"
#: init/completions/ping.fish:9
msgid "Flood ping"
-msgstr ""
+msgstr "Översvämmningsping"
#: init/completions/ping.fish:10
-msgid "Wait interval seconds between sending each packet"
-msgstr ""
+msgid "Wait specified interval of seconds between sending each packet"
+msgstr "Vänta specificerat antal sekunder mellan skickande av paket"
#: init/completions/ping.fish:11
msgid "Set source address to specified interface address"
-msgstr ""
+msgstr "Välj källadress till specificerad gränssnittsadress"
#: init/completions/ping.fish:12
-msgid "If preload is specified, ping sends that many packets not waiting for reply"
-msgstr ""
+msgid "Send the specified number of packets without waiting for reply"
+msgstr "Skicka specificerat antal paket utan att vänta på svar"
#: init/completions/ping.fish:13
msgid "Suppress loopback of multicast packets"
-msgstr ""
+msgstr "Undertryck vändslinga (loopback) för multicastpaket"
#: init/completions/ping.fish:14
msgid "Numeric output only"
msgstr "Bara numerisk utdata"
#: init/completions/ping.fish:15
-msgid "You may specify up to 16 'pad' bytes to fill out the packet you send"
-msgstr ""
+msgid "Pad packet with empty bytes"
+msgstr "Lägg till tomma bytes till paket"
#: init/completions/ping.fish:16
msgid "Set Quality of Service -related bits in ICMP datagrams"
-msgstr ""
+msgstr "Sätt Tjänstekvalitets-relaterade bitar i ICMP-datagram"
#: init/completions/ping.fish:18
msgid "Record route"
-msgstr ""
+msgstr "Spela in rutt"
#: init/completions/ping.fish:19
-msgid "Bypass the normal routing tables and send directly to a host on an attached interface"
-msgstr ""
+msgid "Bypass the normal routing tables and send directly to a host on an attached interface"
+msgstr "Gå förbi de vanliga rutt-tabellerna och skicka direkt till en värd på ett inkopplat gränssnitt"
#: init/completions/ping.fish:20
-msgid "Specifies the number of data bytes to be sent"
-msgstr ""
+msgid "Specifies the number of data bytes to be sent"
+msgstr "Specificera antalet bytes av data att sicka"
#: init/completions/ping.fish:21
-msgid "Set socket sndbuf"
-msgstr ""
+msgid "Set socket buffer size"
+msgstr "Välj uttags (socket) buffertstorlek"
#: init/completions/ping.fish:22
msgid "Set the IP Time to Live"
-msgstr ""
+msgstr "Välj paketlivstid på IP-protokollnivå"
#: init/completions/ping.fish:23
msgid "Set special IP timestamp options"
-msgstr ""
+msgstr "Välj särskilda inställningar för IP-protokoll-tidsstämpel"
#: init/completions/ping.fish:24
-msgid "Select Path MTU Discovery strategy"
-msgstr ""
+msgid "Select Path MTU Discovery strategy"
+msgstr "Välj MTU-väghittarstrategi"
#: init/completions/ping.fish:25
msgid "Print full user-to-user latency"
-msgstr ""
+msgstr "Visa full användare-tilöl-användare-latens"
#: init/completions/ping.fish:28
msgid "Specify a timeout, in seconds, before ping exits regardless of how many packets have been sent or received"
-msgstr ""
+msgstr "Specificera en timeout, i sekunder, innan ping avslutar oavsett hur många paket som skickats eller tagits emot"
#: init/completions/ping.fish:29
msgid "Time to wait for a response, in seconds"
-msgstr ""
+msgstr "Tid att vänta på ett svar, i sekunder"
#: init/completions/ps.fish:3 init/completions/ps.fish:7
msgid "Select all"
-msgstr ""
+msgstr "Välj alla"
#: init/completions/ps.fish:4
msgid "Invert selection"
@@ -5683,15 +5678,15 @@ msgstr "Invertera val"
#: init/completions/ps.fish:5
msgid "Select all processes except session leaders and terminal-less"
-msgstr ""
+msgstr "Välj alla processer utom sessionsledare och terminal-lösa"
#: init/completions/ps.fish:6
msgid "Select all processes except session leaders"
-msgstr ""
+msgstr "Välj alla processer utom sessionsledare"
#: init/completions/ps.fish:8
msgid "Deselect all processes that do not fulfill conditions"
-msgstr ""
+msgstr "Avmarkera alla processer som inte uppfyller villkor"
#: init/completions/ps.fish:10
msgid "Select by command"
@@ -5727,19 +5722,19 @@ msgstr "Välj via tty"
#: init/completions/ps.fish:20
msgid "Extra full format"
-msgstr ""
+msgstr "Extra utförligt format"
#: init/completions/ps.fish:21 init/completions/ps.fish:26
msgid "User defined format"
msgstr "Användardefinerat format"
-#: init/completions/ps.fish:22
+#: init/completions/ps.fish:22 init/completions/ps.fish:28
msgid "Add column for security data"
-msgstr ""
+msgstr "Lägg till kolumn med säkerhetsinformation"
#: init/completions/ps.fish:23
msgid "Full format"
-msgstr ""
+msgstr "Fullt format"
#: init/completions/ps.fish:24
msgid "Jobs format"
@@ -5747,39 +5742,31 @@ msgstr "Jobbformat"
#: init/completions/ps.fish:27
msgid "Do not show flags"
-msgstr ""
-
-#: init/completions/ps.fish:28
-msgid "Display security context format"
-msgstr ""
+msgstr "Visa inte flaggor"
#: init/completions/ps.fish:29
msgid "Show hierarchy"
-msgstr ""
+msgstr "Visa hierarki"
#: init/completions/ps.fish:30
msgid "Set namelist file"
-msgstr ""
+msgstr "Visa namnlistfil"
#: init/completions/ps.fish:31
msgid "Wide output"
-msgstr ""
+msgstr "Bred utdata"
#: init/completions/ps.fish:32 init/completions/ps.fish:33
msgid "Show threads"
-msgstr ""
-
-#: init/completions/ps.fish:36
-msgid "Display debugging info"
-msgstr ""
+msgstr "Visa trådar"
#: init/completions/python.fish:1
msgid "Execute argument as command"
-msgstr ""
+msgstr "Utför parameter som kommando"
#: init/completions/python.fish:2
msgid "Debug on"
-msgstr ""
+msgstr "Debugläge på"
#: init/completions/python.fish:3
msgid "Ignore environment variables"
@@ -5787,35 +5774,35 @@ msgstr "Ignorera miljövariabler"
#: init/completions/python.fish:5
msgid "Interactive mode after executing commands"
-msgstr ""
+msgstr "Interaktivt läge efter att komandon utförts"
#: init/completions/python.fish:6
msgid "Enable optimizations"
-msgstr ""
+msgstr "Slå på optimeringar"
#: init/completions/python.fish:7
msgid "Division control"
-msgstr ""
+msgstr "Divisionskontroll"
#: init/completions/python.fish:8
msgid "Disable import of site module"
-msgstr ""
+msgstr "Slå av importering av platsmodul"
#: init/completions/python.fish:9
msgid "Warn on mixed tabs and spaces"
-msgstr ""
+msgstr "Varna vid blandad användning av tabbar och mellanslag"
#: init/completions/python.fish:10
-msgid "Unbuffered inputg and output"
-msgstr ""
+msgid "Unbuffered input and output"
+msgstr "Buffra inte indata och utdata"
#: init/completions/python.fish:13
msgid "Warning control"
-msgstr ""
+msgstr "Varningsläge"
#: init/completions/python.fish:14
-msgid "Skip first line of input"
-msgstr ""
+msgid "Ignore first line of input"
+msgstr "Ignorera första raden indata"
#: init/completions/read.fish:2
msgid "Set prompt command"
@@ -5823,7 +5810,7 @@ msgstr "Välj promptkommando"
#: init/completions/read.fish:3 init/completions/set.fish:5
msgid "Export variable to subprocess"
-msgstr "Exportera variable till underprocess"
+msgstr "Exportera variabel till underprocess"
#: init/completions/read.fish:4 init/completions/set.fish:7
msgid "Make variable scope global"
@@ -5833,45 +5820,53 @@ msgstr "Globalt definitionsområde"
msgid "Make variable scope local"
msgstr "Lokalt defintionsområde"
-#: init/completions/read.fish:6 init/completions/set.fish:6
+#: init/completions/read.fish:6 init/completions/set.fish:9
+msgid "Make variable scope universal, i.e. share variable with all the users fish processes on this computer"
+msgstr "Gör variabelns definitionsområde universellt, dvs. dela variabel med alla användarens fish-processer på denna dator"
+
+#: init/completions/read.fish:7 init/completions/set.fish:6
msgid "Do not export variable to subprocess"
msgstr "Exportera inte variabel till barnprocesser"
#: init/completions/renice.fish:2
msgid "Force following parameters to be process ID's (The default)"
-msgstr ""
+msgstr "Tvinga efterföljande parametrar att tolkas som process-id (standard)"
#: init/completions/renice.fish:3
msgid "Force following parameters to be interpreted as process group ID's"
-msgstr ""
+msgstr "Tvinga efterföljande parametrar att tolkas som grupp-id"
#: init/completions/renice.fish:4
msgid "Force following parameters to be interpreted as user names"
-msgstr ""
+msgstr "Tvinga efterföljande parametrar att tolkas som användarnamn"
#: init/completions/rmdir.fish:3
msgid "Ignore errors from non-empty directories"
-msgstr ""
+msgstr "Ignorera fel från icke-tomma kataloger"
#: init/completions/rmdir.fish:4
msgid "Remove each component of path"
-msgstr ""
+msgstr "Ta bort alla sökvägskomponenter"
#: init/completions/rm.fish:2
msgid "Unlink directory (Only by superuser)"
-msgstr ""
+msgstr "Avlänka katalog (Kan bara utföras av administratör)"
#: init/completions/rm.fish:3
msgid "Never prompt before removal"
-msgstr ""
+msgstr "Fråga inte före borttagning"
#: init/completions/rm.fish:4
msgid "Prompt before removal"
-msgstr ""
+msgstr "Fråga före borttagning"
#: init/completions/rm.fish:5 init/completions/rm.fish:6
-msgid "Remove content of subdirectories"
-msgstr ""
+msgid "Recursively remove subdirectories"
+msgstr "Ta bort underkataloger rekursivt"
+
+#: init/completions/rm.fish:7
+msgid "Explain what is done"
+msgstr "Förklara vad som utförs"
#: init/completions/rpm.fish:8
msgid "List of rpm configuration files"
@@ -5883,345 +5878,337 @@ msgstr "Filtrera utdata genom specificerat kommando"
#: init/completions/rpm.fish:10
msgid "Specify directory for rpm database"
-msgstr ""
+msgstr "Välj katalog för rpm-databas"
#: init/completions/rpm.fish:15
msgid "Specify root directory for rpm operations"
-msgstr ""
+msgstr "Välj rot-katalog för rpm-operationer"
-#: init/completions/rpm.fish:22 init/completions/rpm.fish:25
+#: init/completions/rpm.fish:22
msgid "Add suggested packages to the transaction set when needed"
-msgstr ""
+msgstr "Lägg till föreslagna paket till transkation vid behov"
#: init/completions/rpm.fish:23
-msgid "Installs or upgrades all the missing ok files in the package, regardless if they exist"
-msgstr ""
+msgid "Installs or upgrades all the files in the package, even if they aren't needed (missingok) and don't exist"
+msgstr "Installerar eller uppgraderar alla saknade filer i paketet, även om de inte behövs (missingok) och inte existerar"
-#: init/completions/rpm.fish:24 init/completions/rpm.fish:27
+#: init/completions/rpm.fish:24
msgid "Used with --relocate, permit relocations on all file paths, not just those OLD-PATH's included in the binary package relocation hint(s)"
-msgstr ""
+msgstr "Använd tillsammans med --relocate, tillåter flyttning på alla fökvägar, inte bara de OLD_PATH inkluderade i de binära paketflyttningshintarna"
+
+#: init/completions/rpm.fish:25
+msgid "Don't install files whose name begins with specified path"
+msgstr "Installera inte filer vars namn börjar med angiven sökväg"
#: init/completions/rpm.fish:26
-msgid "Installs or upgrades all the missingok files in the package, regardless if they exist"
-msgstr ""
+msgid "Don't install any files which are marked as documentation"
+msgstr "Installera inte filer som markerats som dokumentation"
+
+#: init/completions/rpm.fish:27
+msgid "Same as using --replacepkgs, --replacefiles, and --oldpackage"
+msgstr "Samma sak som --replacepkgs, --replacefiles, och --oldpackage"
#: init/completions/rpm.fish:28
-msgid "Don't install files whose name begins with OLDPATH"
-msgstr ""
+msgid "Print 50 hash marks as the package archive is unpacked"
+msgstr "Visa 50 brädgårdstecken medan arkivet packas upp"
#: init/completions/rpm.fish:29
-msgid "Don't install any files which are marked as documentation (which includes man pages and texinfo documents)"
-msgstr ""
+msgid "Don't check for sufficient disk space before installation"
+msgstr "Kontrollera inte diskutrymme före installation"
#: init/completions/rpm.fish:30
-msgid "Same as using --replacepkgs, --replacefiles, and --oldpackage"
-msgstr ""
+msgid "Allow installation or upgrading even if the architectures of the binary package and host don't match"
+msgstr "Tillåt installation eller uppgradering även om binärt pakets arkitetkur inte matchar värddatorns"
#: init/completions/rpm.fish:31
-msgid "Print 50 hash marks as the package archive is unpacked. Use with -v or --verbose for a nicer display"
-msgstr ""
+msgid "Allow installation or upgrading even if the operating systems of the binary package and host don't match"
+msgstr "Tillåt installation eller uppgradering även om binärt pakets operativsystem inte matchar värddatorns"
#: init/completions/rpm.fish:32
-msgid "Don't check mount file systems for sufficient disk space before installing this package"
-msgstr ""
+msgid "Install documentation files (default)"
+msgstr "Installera dokumentation (standard)"
#: init/completions/rpm.fish:33
-msgid "Allow installation or upgrading even if the architectures of the binary package and host don't match"
-msgstr ""
-
-#: init/completions/rpm.fish:34
-msgid "Allow installation or upgrading even if the operating systems of the binary package and host don't match"
-msgstr ""
-
-#: init/completions/rpm.fish:35
-msgid "Install documentation files. This is the default behavior"
-msgstr ""
-
-#: init/completions/rpm.fish:36
msgid "Update only the database, not the filesystem"
msgstr "Uppdatera bara databasen, inte filsystemet"
-#: init/completions/rpm.fish:37 init/completions/rpm.fish:97
+#: init/completions/rpm.fish:34 init/completions/rpm.fish:94
msgid "Don't verify package or header digests when reading"
-msgstr ""
+msgstr "Kontrollera inte paket- eller huvudsammanfattningar vid inläsning"
-#: init/completions/rpm.fish:38 init/completions/rpm.fish:100
+#: init/completions/rpm.fish:35 init/completions/rpm.fish:97
msgid "Don't verify package or header signatures when reading"
-msgstr ""
+msgstr "Kontrollera inte paket- eller huvudsignatur vid inläsning"
-#: init/completions/rpm.fish:39
-msgid "Don't do a dependency check before installing or upgrading a package"
-msgstr ""
+#: init/completions/rpm.fish:36
+msgid "Don't do a dependency check"
+msgstr "Utför inte beroendeverifiering"
-#: init/completions/rpm.fish:40
+#: init/completions/rpm.fish:37
msgid "Don't suggest package(s) that provide a missing dependency"
-msgstr ""
+msgstr "Föreslå inte paket som upfyller ett ouppfyllt beroende"
-#: init/completions/rpm.fish:41
-msgid "Don't reorder the packages for an install. The list of packages would normally be reordered to satisfy dependencies"
-msgstr ""
+#: init/completions/rpm.fish:38
+msgid "Don't change the package installation order"
+msgstr "Byt inte paketinstallationsordning "
-#: init/completions/rpm.fish:42
+#: init/completions/rpm.fish:39
msgid "Don't execute scripts"
msgstr "Kör inte skript"
-#: init/completions/rpm.fish:43
+#: init/completions/rpm.fish:40
msgid "Don't execute pre scripts"
msgstr "Kör inte pre-skript"
-#: init/completions/rpm.fish:44
+#: init/completions/rpm.fish:41
msgid "Don't execute post scripts"
msgstr "Kör inte post-skript"
-#: init/completions/rpm.fish:45
+#: init/completions/rpm.fish:42
msgid "Don't execute preun scripts"
msgstr "Kör inte preun-skript"
-#: init/completions/rpm.fish:46
+#: init/completions/rpm.fish:43
msgid "Don't execute postun scripts"
msgstr "Kör inte postun-skript"
-#: init/completions/rpm.fish:47 init/completions/rpm.fish:118
+#: init/completions/rpm.fish:44 init/completions/rpm.fish:115
msgid "Don't execute trigger scriptlets"
msgstr "Kör inte trigger-skriptlets"
-#: init/completions/rpm.fish:48
+#: init/completions/rpm.fish:45
msgid "Don't execute triggerin scriptlets"
msgstr "Kör inte triggerin-skriptlets"
-#: init/completions/rpm.fish:49 init/completions/rpm.fish:119
+#: init/completions/rpm.fish:46 init/completions/rpm.fish:116
msgid "Don't execute triggerun scriptlets"
msgstr "Kör inte triggerun-skriptlets"
-#: init/completions/rpm.fish:50 init/completions/rpm.fish:120
+#: init/completions/rpm.fish:47 init/completions/rpm.fish:117
msgid "Don't execute triggerpostun scriptlets"
msgstr "Kör inte triggerpostun-skriptlets"
-#: init/completions/rpm.fish:51
+#: init/completions/rpm.fish:48
msgid "Allow an upgrade to replace a newer package with an older one"
-msgstr ""
+msgstr "Tillåt en uppgradering att ersätta ett nyare paket med ett äldre"
-#: init/completions/rpm.fish:52
+#: init/completions/rpm.fish:49
msgid "Print percentages as files are unpacked from the package archive. This is intended to make rpm easy to run from other tools"
-msgstr ""
+msgstr "Visa procentandel medan filer packas upp från paketarkiv. Detta är tänkt att användas för att göra rpm lättare att köra från andra verktyg"
-#: init/completions/rpm.fish:53
+#: init/completions/rpm.fish:50
msgid "For relocatable binary packages, translate all file paths that start with the installation prefix in the package relocation hint(s) to NEWPATH"
-msgstr ""
+msgstr "För flyttbara binära paket, översätt alla sökvägar som startar med installationsprefixet i paketets flytthintar till den angivna sökvägen"
-#: init/completions/rpm.fish:54
-msgid "For relocatable binary packages, translate all file paths that start with OLDPATH in the package relocation hint(s) to NEWPATH. This option can be used repeatedly if several OLDPATH's in the package are to be relocated"
-msgstr ""
+#: init/completions/rpm.fish:51
+msgid "Translate all paths that start with first half of following parameter to second half of following parameter"
+msgstr "Översätt alla sökvägar som börjar med första halvan av följande parameter till sista halvan av följande parameter"
-#: init/completions/rpm.fish:55
-msgid "Re-package the files before erasing. The previously installed package will be named according to the macro %_repackage_name_fmt and will be created in the directory named by the macro %_repackage_dir (default value is /var/spool/repackage)"
-msgstr ""
+#: init/completions/rpm.fish:52 init/completions/rpm.fish:118
+msgid "Re-package the files before erasing"
+msgstr "Ompaketera paket inan radering"
-#: init/completions/rpm.fish:56
+#: init/completions/rpm.fish:53
msgid "Install the packages even if they replace files from other, already installed, packages"
-msgstr ""
+msgstr "Installera paket även om de ersätter filer från andra, redan installerade paket"
-#: init/completions/rpm.fish:57
+#: init/completions/rpm.fish:54
msgid "Install the packages even if some of them are already installed on this system"
-msgstr ""
+msgstr "Installera paket även om somliga redan är installerade"
-#: init/completions/rpm.fish:58
+#: init/completions/rpm.fish:55
msgid "Don't install the package, simply check for and report potential conflicts"
-msgstr ""
+msgstr "Installera inte paket, kontrollera och rapportera potentiella konflikter"
-#: init/completions/rpm.fish:62
+#: init/completions/rpm.fish:59
msgid "Display change information for the package"
msgstr "Visa ändringsinformation för paket"
-#: init/completions/rpm.fish:63
+#: init/completions/rpm.fish:60
msgid "List only configuration files (implies -l)"
msgstr "Visa bara konfigurationsfiler (implicerar -l)"
-#: init/completions/rpm.fish:64
+#: init/completions/rpm.fish:61
msgid "List only documentation files (implies -l)"
msgstr "Visa bara dokumentationsfiler (implicerar -l)"
-#: init/completions/rpm.fish:65
+#: init/completions/rpm.fish:62
msgid "Dump file information. Must be used with at least one of -l, -c, -d"
-msgstr ""
+msgstr "Dumpa filinformation. Kräver minst en av -l, -c, -d"
-#: init/completions/rpm.fish:66
+#: init/completions/rpm.fish:63
msgid "List all the files in each selected package"
-msgstr ""
+msgstr "Visa alla filer i varje valt paket"
-#: init/completions/rpm.fish:67
-msgid "Display package information, including name, version, and description. This uses the --queryformat if one was specified"
-msgstr ""
+#: init/completions/rpm.fish:64
+msgid "Display package information, including name, version, and description. Uses --queryformat if specified"
+msgstr "Visa paketinformation, inklusive namn, version och beskrivning. Använder --queryfromet om angivet"
-#: init/completions/rpm.fish:68
-msgid "Orders the package listing by install time such that the latest packages are at the top"
-msgstr ""
+#: init/completions/rpm.fish:65
+msgid "Orders the package listing by install time"
+msgstr "Sortera paketlistning efter installationstid"
-#: init/completions/rpm.fish:69
+#: init/completions/rpm.fish:66
msgid "List files in package"
msgstr "Visa filer i paket"
-#: init/completions/rpm.fish:70
+#: init/completions/rpm.fish:67
msgid "List capabilities this package provides"
-msgstr ""
+msgstr "Visa förmågor som detta paket tillhandahåller"
-#: init/completions/rpm.fish:71
+#: init/completions/rpm.fish:68
msgid "List packages on which this package depends"
-msgstr ""
+msgstr "Visa paket som detta paket beror på"
-#: init/completions/rpm.fish:72
-msgid "List the package specific scriptlet(s) that are used as part of the installation and uninstallation processes"
-msgstr ""
+#: init/completions/rpm.fish:69
+msgid "List the package specific scriptlets"
+msgstr "Visa paket-specifika skriptlets"
-#: init/completions/rpm.fish:73
-msgid "Display the states of files in the package (implies -l). The state of each file is one of normal, not installed, or replaced"
-msgstr ""
+#: init/completions/rpm.fish:70
+msgid "Display the states of files in the package. The state of each file is one of normal, not installed, or replaced"
+msgstr "Visa tillstånd för paketets filer. Tillståndet är en av normal, inte installerad och ersatt"
-#: init/completions/rpm.fish:74 init/completions/rpm.fish:75
-msgid "Display the trigger scripts, if any, which are contained in the package"
-msgstr ""
+#: init/completions/rpm.fish:71 init/completions/rpm.fish:72
+msgid "Display the trigger scripts contained in the package"
+msgstr "Visa paketets triggerskript"
-#: init/completions/rpm.fish:81
+#: init/completions/rpm.fish:78
msgid "Query all installed packages"
msgstr "Fråga alla installerade paket"
+#: init/completions/rpm.fish:79
+msgid "Query package owning specified file"
+msgstr "Fråga paket som äger angiven fil"
+
+#: init/completions/rpm.fish:80
+msgid "Query package that contains a given file identifier, i.e. the MD5 digest of the file contents"
+msgstr "Fråga paket som innehåller en given filidentitet, dvs. MD5-summa av filinnehåll"
+
+#: init/completions/rpm.fish:81
+msgid "Query packages with the specified group"
+msgstr "Fråga paket med angiven grupp"
+
#: init/completions/rpm.fish:82
-msgid "Query package owning FILE"
-msgstr ""
+msgid "Query package that contains a given header identifier, i.e. the SHA1 digest of the immutable header region"
+msgstr "Fråga paket som innehåller en given huvudidentitet, dvs. SHA1-summa av den konstanta huvud-regionen"
#: init/completions/rpm.fish:83
-msgid "Query package that contains a given file identifier, i.e. the MD5 digest of the file contents"
-msgstr ""
+msgid "Query an (uninstalled) package in specified file"
+msgstr "Fråga ett (oinstallerat) paket i angiven fil"
#: init/completions/rpm.fish:84
-msgid "Query packages with the group of GROUP"
-msgstr ""
+msgid "Query package that contains a given package identifier, i.e. the MD5 digest of the combined header and payload contents"
+msgstr "Fråga paket som innehåller en given paketidentitet, dvs. MD5-summa av den kombinerade huvud- och filinnehållet"
#: init/completions/rpm.fish:85
-msgid "Query package that contains a given header identifier, i.e. the SHA1 digest of the immutable header region"
-msgstr ""
+msgid "Parse and query specified spec-file as if it were a package"
+msgstr "Tolka och fråga angiven spec-fil som om det vore ett paket"
#: init/completions/rpm.fish:86
-msgid "Query an (uninstalled) package PACKAGE_FILE"
-msgstr ""
+msgid "Query package(s) that have the specified TID (transaction identifier)"
+msgstr "Fråga paket med angiven TID (transaktions-id)"
#: init/completions/rpm.fish:87
-msgid "Query package that contains a given package identifier, i.e. the MD5 digest of the combined header and payload contents"
-msgstr ""
+msgid "Query packages that are triggered by the specified packages"
+msgstr "Fråga paket som triggas av angivna paket"
#: init/completions/rpm.fish:88
-msgid "Parse and query SPECFILE as if it were a package"
-msgstr ""
+msgid "Query all packages that provide the specified capability"
+msgstr "Fråga alla paket som tillhandahåller den angivna förmågan"
#: init/completions/rpm.fish:89
-msgid "Query package(s) that have a given TID transaction identifier"
-msgstr ""
+msgid "Query all packages that requires the specified capability for functioning"
+msgstr "Fråga alla paket som kräver den angivna förmågan för att fungera"
-#: init/completions/rpm.fish:90
-msgid "Query packages that are triggered by package(s) PACKAGE_NAME"
-msgstr ""
-
-#: init/completions/rpm.fish:91
-msgid "Query all packages that provide the CAPABILITY capability"
-msgstr ""
-
-#: init/completions/rpm.fish:92
-msgid "Query all packages that requires CAPABILITY for proper functioning"
-msgstr ""
-
-#: init/completions/rpm.fish:96
+#: init/completions/rpm.fish:93
msgid "Don't verify dependencies of packages"
msgstr "Verifiera inte paketens beroenden"
-#: init/completions/rpm.fish:98
+#: init/completions/rpm.fish:95
msgid "Don't verify any attributes of package files"
-msgstr ""
+msgstr "Verifiera inga attribut i paketfiler"
-#: init/completions/rpm.fish:99
-msgid "Don't execute the %verifyscript scriptlet (if any)"
-msgstr ""
+#: init/completions/rpm.fish:96
+msgid "Don't execute the %verifyscript scriptlet"
+msgstr "Utför inte %verifyskriptlet"
-#: init/completions/rpm.fish:101
+#: init/completions/rpm.fish:98
msgid "Don't verify linkto attribute"
-msgstr ""
+msgstr "Verifiera inte linkto-attribut"
-#: init/completions/rpm.fish:102
+#: init/completions/rpm.fish:99
msgid "Don't verify md5 attribute"
-msgstr ""
+msgstr "Verifiera inte md5-attribut"
-#: init/completions/rpm.fish:103
+#: init/completions/rpm.fish:100
msgid "Don't verify size attribute"
-msgstr ""
+msgstr "Verifiera inte storleksattribut"
-#: init/completions/rpm.fish:104
+#: init/completions/rpm.fish:101
msgid "Don't verify user attribute"
-msgstr ""
+msgstr "Verifiera inte användarattribut"
-#: init/completions/rpm.fish:105
+#: init/completions/rpm.fish:102
msgid "Don't verify group attribute"
-msgstr ""
+msgstr "Verifiera inte gruppattribut"
-#: init/completions/rpm.fish:106
+#: init/completions/rpm.fish:103
msgid "Don't verify time attribute"
msgstr "Verifiera inte tidsattribut"
-#: init/completions/rpm.fish:107
+#: init/completions/rpm.fish:104
msgid "Don't verify mode attribute"
-msgstr ""
+msgstr "Verifiera inte filrättighetsattribut"
-#: init/completions/rpm.fish:108
+#: init/completions/rpm.fish:105
msgid "Don't verify dev attribute"
-msgstr ""
+msgstr "Verifiera inte enhetsattribut"
-#: init/completions/rpm.fish:113
-msgid "Remove all versions of the package which match PACKAGE_NAME. Normally an error is issued if PACKAGE_NAME matches multiple packages"
-msgstr ""
+#: init/completions/rpm.fish:110
+msgid "Remove all versions of the package which match specified string"
+msgstr "Ta bort alla version av paketet som matchar angiven sträng"
-#: init/completions/rpm.fish:114
+#: init/completions/rpm.fish:111
msgid "Don't check dependencies before uninstalling the packages"
-msgstr ""
+msgstr "Verifiera inte beroenden före paketen avinstalleras"
-#: init/completions/rpm.fish:115
+#: init/completions/rpm.fish:112
msgid "Don't execute scriplets"
msgstr "Kör inte skriptlets"
-#: init/completions/rpm.fish:116
+#: init/completions/rpm.fish:113
msgid "Don't execute preun scriptlet"
msgstr "Kör inte preun-skriptlet"
-#: init/completions/rpm.fish:117
+#: init/completions/rpm.fish:114
msgid "Don't execute postun scriptlet"
msgstr "Kör inte postun-skriptlet"
-#: init/completions/rpm.fish:121
-msgid "Re-package the files before erasing"
-msgstr ""
-
-#: init/completions/rpm.fish:122
-msgid "Don't really uninstall anything, just go through the motions"
-msgstr ""
+#: init/completions/rpm.fish:119
+msgid "Don't really uninstall anything"
+msgstr "Avinstallera ingenting på riktigt"
-#: init/completions/rpm.fish:126
+#: init/completions/rpm.fish:123
msgid "Install new package"
msgstr "Installera nytt paket"
-#: init/completions/rpm.fish:127
+#: init/completions/rpm.fish:124
msgid "Upgrade existing package"
msgstr "Upgradera existerande paket"
-#: init/completions/rpm.fish:128
+#: init/completions/rpm.fish:125
msgid "Upgrade package if already installed"
msgstr "Upgradera paket om det är installerat"
-#: init/completions/rpm.fish:129
+#: init/completions/rpm.fish:126
msgid "Query installed packages"
msgstr "Fråga installerat paket"
-#: init/completions/rpm.fish:130
+#: init/completions/rpm.fish:127
msgid "Verify package integrety"
msgstr "Verifiera paketintegritet"
-#: init/completions/rpm.fish:131
+#: init/completions/rpm.fish:128
msgid "Erase package"
msgstr "Ta bort paket"
@@ -6235,19 +6222,19 @@ msgstr "Kräv fil"
#: init/completions/ruby.fish:20
msgid "Verbose mode without message"
-msgstr ""
+msgstr "Utförligt läge utan meddelande"
#: init/completions/ruby.fish:24
msgid "Compiler debug mode"
-msgstr ""
+msgstr "Kompliatordebugläge"
#: init/completions/scp.fish:28 init/completions/top.fish:2
msgid "Batch mode"
-msgstr ""
+msgstr "Satsvis-läge"
#: init/completions/scp.fish:29
msgid "Bandwidth limit"
-msgstr ""
+msgstr "Bandbreddsgräns"
#: init/completions/scp.fish:30 init/completions/ssh.fish:97
msgid "Port"
@@ -6255,11 +6242,11 @@ msgstr "Port"
#: init/completions/scp.fish:31
msgid "Preserves modification times, access times, and modes from the original file"
-msgstr ""
+msgstr "Bevara ändringstid, åtkomsttid och rättigheter från orginalfil"
#: init/completions/scp.fish:33
msgid "Recursively copy"
-msgstr ""
+msgstr "Rekursiv kopiering"
#: init/completions/scp.fish:34
msgid "Encyption program"
@@ -6267,7 +6254,7 @@ msgstr "Krypteringsprogram"
#: init/completions/screen.fish:1
msgid "Print a list of running screen sessions"
-msgstr ""
+msgstr "Visa lista på alla körande screen-sessioner"
#: init/completions/sed.fish:3
msgid "Evaluate expression"
@@ -6279,27 +6266,27 @@ msgstr "Utför filinnehåll som kommandon"
#: init/completions/sed.fish:5
msgid "Edit files in place"
-msgstr ""
+msgstr "Redigera filer på plats"
#: init/completions/sed.fish:6
msgid "Specify line-length"
-msgstr ""
+msgstr "Välj radlängd"
#: init/completions/sed.fish:7
msgid "Disable all GNU extensions"
-msgstr ""
+msgstr "Inaktivera alla GNU-förlängningar"
#: init/completions/sed.fish:8
msgid "Use extended regexp"
-msgstr ""
+msgstr "Använd utökade reguljära uttryck"
#: init/completions/sed.fish:9
msgid "Consider files as separate"
-msgstr ""
+msgstr "Betrakta filer separat"
#: init/completions/sed.fish:10
msgid "Use minimal IO buffers"
-msgstr ""
+msgstr "Minimera användning av IO-buffrar"
#: init/completions/service.fish:3
msgid "Service name"
@@ -6307,67 +6294,63 @@ msgstr "Namn på tjänst"
#: init/completions/set_color.fish:1 init/completions/set.fish:46
msgid "Color"
-msgstr ""
+msgstr "Färg"
#: init/completions/set_color.fish:2
msgid "Change background color"
-msgstr ""
+msgstr "Byt bakgrundsfärg"
#: init/completions/set_color.fish:3
msgid "Make font bold"
-msgstr ""
+msgstr "Använd fetstil"
#: init/completions/set.fish:4
msgid "Erase variable"
-msgstr ""
-
-#: init/completions/set.fish:9
-msgid "Make variable scope universal, i.e. shared between all fish terminals"
-msgstr ""
+msgstr "Radera variabel"
#: init/completions/set.fish:10
msgid "Test if variable is defined"
-msgstr ""
+msgstr "Testa om variabeln är definerad"
#: init/completions/sort.fish:1
msgid "Ignore leading blanks"
-msgstr ""
+msgstr "Ignorera inledande mellanslag"
#: init/completions/sort.fish:2
msgid "Consider only blanks and alphanumerics"
-msgstr ""
+msgstr "Ta endast hänsyn till mellanslag och alfanumeriska tecken"
#: init/completions/sort.fish:4
msgid "Compare general numeric value"
-msgstr ""
+msgstr "Jämför generellt numeriskt värde"
#: init/completions/sort.fish:5
msgid "Consider only printable"
-msgstr ""
+msgstr "Ta endast hänsyn till skrivbara tecken"
#: init/completions/sort.fish:6
msgid "Compare month names"
-msgstr ""
+msgstr "Jämför månadsnamn"
#: init/completions/sort.fish:7
msgid "Compare string numerical value"
-msgstr ""
+msgstr "Jämför strängars numeriska värde"
#: init/completions/sort.fish:8
msgid "Reverse results"
-msgstr ""
+msgstr "Omvända resultat"
#: init/completions/sort.fish:9
msgid "Only check if sorted"
-msgstr ""
+msgstr "Verifiera bara sortering"
#: init/completions/sort.fish:10
msgid "Define key"
-msgstr ""
+msgstr "Definera nyckel"
#: init/completions/sort.fish:11
msgid "Merge sorted files"
-msgstr ""
+msgstr "Sammanslå sorterade filer"
#: init/completions/sort.fish:12
msgid "Write to file"
@@ -6375,27 +6358,27 @@ msgstr "Skriv till fil"
#: init/completions/sort.fish:13
msgid "Stabilize sort"
-msgstr ""
+msgstr "Stabilisera sortering"
#: init/completions/sort.fish:14
-msgid "Set main memory buffer"
-msgstr ""
+msgid "Set memory buffer size"
+msgstr "Välj minnesbuffertstorlek"
#: init/completions/sort.fish:15
msgid "Field separator"
-msgstr ""
+msgstr "Fältavdelare"
#: init/completions/sort.fish:16
msgid "Set temporary directory"
-msgstr ""
+msgstr "Välj katalog för tillfälligt lagringsutrymme"
#: init/completions/sort.fish:17
msgid "Output only first of equal lines"
-msgstr ""
+msgstr "Visa bara först raden vid dubletter"
#: init/completions/sort.fish:18
msgid "Lines end with 0 byte"
-msgstr ""
+msgstr "Rader slutar ned nolltecken"
#: init/completions/ssh.fish:6
msgid "Protocoll version 1 only"
@@ -6407,43 +6390,43 @@ msgstr "Bara protokoll version 2"
#: init/completions/ssh.fish:8
msgid "IPv4 addresses only"
-msgstr ""
+msgstr "Bara IPv4-adresser"
#: init/completions/ssh.fish:9
msgid "IPv6 addresses only"
-msgstr ""
+msgstr "Bara IPv6-adresser"
#: init/completions/ssh.fish:10
msgid "Compress all data"
-msgstr ""
+msgstr "Komprimera all data"
#: init/completions/ssh.fish:11
msgid "Encryption algorithm"
-msgstr ""
+msgstr "Krypteringsalgoritm"
#: init/completions/ssh.fish:13
msgid "Identity file"
-msgstr ""
+msgstr "Identitetsfil"
#: init/completions/ssh.fish:14
msgid "Options"
-msgstr ""
+msgstr "Flaggor"
#: init/completions/ssh.fish:80
msgid "Disables forwarding of the authentication agent"
-msgstr ""
+msgstr "Inaktivera vidareskickning av autentiseringsagent"
#: init/completions/ssh.fish:81
msgid "Enables forwarding of the authentication agent"
-msgstr ""
+msgstr "Aktivera vidareskickning av autentiseringsagent"
#: init/completions/ssh.fish:82
msgid "Interface to transmit from"
-msgstr ""
+msgstr "Gränssnitt att skicka från"
#: init/completions/ssh.fish:88
msgid "Escape character"
-msgstr ""
+msgstr "Avbrottstecken"
#: init/completions/ssh.fish:89
msgid "Go to background"
@@ -6451,7 +6434,7 @@ msgstr "Gå till bakgrunden"
#: init/completions/ssh.fish:90
msgid "Allow remote host to connect to local forwarded ports"
-msgstr ""
+msgstr "Tillåt fjärrvärd att koppla in sig på lokala vidareskickade portar"
#: init/completions/ssh.fish:91
msgid "Smartcard device"
@@ -6459,7 +6442,7 @@ msgstr "Smartcardenhet"
#: init/completions/ssh.fish:92
msgid "Disable forwarding of Kerberos tickets"
-msgstr ""
+msgstr "Inaktivera vidareskickning av Kerberosbiljetter"
#: init/completions/ssh.fish:93
msgid "User"
@@ -6467,11 +6450,11 @@ msgstr "Användare"
#: init/completions/ssh.fish:94
msgid "MAC algorithm"
-msgstr ""
+msgstr "MAC-algoritm"
#: init/completions/ssh.fish:95
msgid "Prevent reading from stdin"
-msgstr ""
+msgstr "Förhindra läsning från standard in"
#: init/completions/ssh.fish:96
msgid "Do not execute remote command"
@@ -6479,39 +6462,39 @@ msgstr "Utför inte fjärrkommando"
#: init/completions/ssh.fish:99
msgid "Subsystem"
-msgstr ""
+msgstr "Subsystem"
#: init/completions/ssh.fish:100
msgid "Force pseudo-tty allocation"
-msgstr ""
+msgstr "Tvinga pseudo-tty-allokering"
#: init/completions/ssh.fish:101
msgid "Disable pseudo-tty allocation"
-msgstr ""
+msgstr "Inaktivera pseudo-tty-allokering"
#: init/completions/ssh.fish:102
msgid "Disable X11 forwarding"
-msgstr ""
+msgstr "Inaktivera X11-vidareskickning"
#: init/completions/ssh.fish:103
msgid "Enable X11 forwarding"
-msgstr ""
+msgstr "Aktivera X11-vidareskickning"
#: init/completions/ssh.fish:104
msgid "Locally forwarded ports"
-msgstr ""
+msgstr "Lokalt vidareskickade portar"
#: init/completions/ssh.fish:105
msgid "Remotely forwarded ports"
-msgstr ""
+msgstr "Vidareskickade portar på fjärrdatorn"
#: init/completions/ssh.fish:106
msgid "Dynamic port forwarding"
-msgstr ""
+msgstr "Dynamisk portvidareskickning"
#: init/completions/su.fish:4
msgid "Make login shell"
-msgstr ""
+msgstr "Skapa login-skal"
#: init/completions/su.fish:5
msgid "Pass command to shell"
@@ -6523,31 +6506,31 @@ msgstr "Skicka -f till skalet"
#: init/completions/su.fish:7 init/completions/su.fish:8
msgid "Preserve environment"
-msgstr ""
+msgstr "Bevara miljövariabler"
#: init/completions/tar.fish:1 init/completions/tar.fish:2
msgid "Append archive to archive"
-msgstr ""
+msgstr "Lägg till arkiv till annat arkiv"
#: init/completions/tar.fish:3
msgid "Create archive"
-msgstr ""
+msgstr "Skapa arkiv"
#: init/completions/tar.fish:4 init/completions/tar.fish:5
msgid "Compare archive and filesystem"
-msgstr ""
+msgstr "Jämför arkiv med filsystem"
#: init/completions/tar.fish:6
msgid "Delete from archive"
-msgstr ""
+msgstr "Radera från arkiv"
#: init/completions/tar.fish:7
msgid "Append files to archive"
-msgstr ""
+msgstr "Lägg till filer till arkiv"
#: init/completions/tar.fish:8
msgid "List archive"
-msgstr ""
+msgstr "Visa arkivinnehåll"
#: init/completions/tar.fish:9
msgid "Append new files"
@@ -6555,11 +6538,11 @@ msgstr "Lägg till nya filer"
#: init/completions/tar.fish:10 init/completions/tar.fish:11
msgid "Extract from archive"
-msgstr ""
+msgstr "Hämta från arkiv"
#: init/completions/tar.fish:12
msgid "Keep access time"
-msgstr ""
+msgstr "Behåll åtkomsttid"
#: init/completions/tar.fish:14
msgid "Reblock while reading"
@@ -6567,219 +6550,219 @@ msgstr "Gör om block-indelning under inläsning"
#: init/completions/tar.fish:16
msgid "Print directory names"
-msgstr ""
+msgstr "Visa katalognamn"
#: init/completions/tar.fish:17
msgid "Archive file"
-msgstr ""
+msgstr "Arkivfil"
#: init/completions/tar.fish:18
msgid "Archive is local"
-msgstr ""
+msgstr "Arkiv är lokalt"
#: init/completions/tar.fish:19
msgid "Run script at end of tape"
-msgstr ""
+msgstr "Utför skript vid slut på band"
#: init/completions/tar.fish:20
msgid "Use old incremental GNU format"
-msgstr ""
+msgstr "Använd gammalt inkrementellt GNU-format"
#: init/completions/tar.fish:21
msgid "Use new incremental GNU format"
-msgstr ""
+msgstr "Använd nytt inkrementellt GNU-format"
#: init/completions/tar.fish:22
msgid "Derefrerence symlinks"
-msgstr ""
+msgstr "Följ symboliska länkar"
#: init/completions/tar.fish:23
-msgid "Ignore zero bloch in archive"
-msgstr ""
+msgid "Ignore zero block in archive"
+msgstr "Ignorera nollblock i arkiv"
#: init/completions/tar.fish:24
msgid "Filter through bzip2"
-msgstr ""
+msgstr "Filtrera genom bzip2"
#: init/completions/tar.fish:25
-msgid "Dont exit on unreadable files"
-msgstr ""
+msgid "Don't exit on unreadable files"
+msgstr "Avsluta inte vid oläsbara filer"
+
+#: init/completions/tar.fish:26
+msgid "Don't overwrite"
+msgstr "Skriv inte över"
#: init/completions/tar.fish:27
msgid "Starting file in archive"
-msgstr ""
+msgstr "Startfil i arkiv"
#: init/completions/tar.fish:28
msgid "Stay in local filesystem"
-msgstr ""
+msgstr "Stanna på lokala filsystem"
#: init/completions/tar.fish:29
msgid "Tape length"
-msgstr ""
+msgstr "Bandlängd"
#: init/completions/tar.fish:30
-msgid "Dont extract modification time"
-msgstr ""
+msgid "Don't extract modification time"
+msgstr "Hämta inte modifieringstider"
#: init/completions/tar.fish:31
msgid "Multi volume archive"
-msgstr ""
+msgstr "Flervolymsarkiv"
#: init/completions/tar.fish:32
msgid "Only store newer files"
-msgstr ""
+msgstr "Lagra bara nyare filer"
#: init/completions/tar.fish:33 init/completions/tar.fish:34
msgid "Use V7 format"
-msgstr ""
+msgstr "Använd V7-format"
#: init/completions/tar.fish:35
msgid "Extract to stdout"
-msgstr ""
+msgstr "Hämta till standard ut"
#: init/completions/tar.fish:36 init/completions/tar.fish:37
msgid "Extract all permissions"
-msgstr ""
+msgstr "Hämta alla rättigheter"
#: init/completions/tar.fish:38
-msgid "Dont strip leading /"
-msgstr ""
+msgid "Don't strip leading /"
+msgstr "Ta inte bort inledande /"
#: init/completions/tar.fish:39
msgid "Preserve all permissions and do not sort file arguments"
-msgstr ""
+msgstr "Bevara alla rättigheter, och sortera inte filargument"
#: init/completions/tar.fish:40
msgid "Show record number"
-msgstr ""
+msgstr "Visa paketnummer"
#: init/completions/tar.fish:41
msgid "Remove files after adding to archive"
-msgstr ""
+msgstr "Ta bort filer efter att de lagts till arkivet"
#: init/completions/tar.fish:42 init/completions/tar.fish:43
msgid "Do not sort file arguments"
-msgstr ""
+msgstr "Sortera inte filargument"
#: init/completions/tar.fish:44
msgid "Preserve file ownership"
-msgstr ""
+msgstr "Bevara filägare"
#: init/completions/tar.fish:45
msgid "Handle sparse files"
-msgstr ""
+msgstr "Hantera glesa filer"
#: init/completions/tar.fish:46
msgid "Extract file from file"
-msgstr ""
+msgstr "Axtrahera fil från fil"
#: init/completions/tar.fish:47
msgid "-T has null-terminated names"
-msgstr ""
+msgstr "-T har noll-terminerade namn"
#: init/completions/tar.fish:48
msgid "Print total bytes written"
-msgstr ""
-
-#: init/completions/tar.fish:49
-msgid "Vorbose mode"
-msgstr ""
+msgstr "Visa totalt anta skrivna bytes"
#: init/completions/tar.fish:50
msgid "Set volume name"
-msgstr ""
+msgstr "Välj volymnamn"
#: init/completions/tar.fish:52 init/completions/tar.fish:53
msgid "Ask for confirmation"
-msgstr ""
+msgstr "Be om bekräftelse"
#: init/completions/tar.fish:54
msgid "Verify archive"
-msgstr ""
+msgstr "Verifiera arkiv"
#: init/completions/tar.fish:55
msgid "Exclude file"
-msgstr ""
+msgstr "Exkludera fil"
#: init/completions/tar.fish:56
msgid "Exclude files listed in specified file"
-msgstr ""
+msgstr "Exklidera filer listade i angiven fil"
#: init/completions/tar.fish:57 init/completions/tar.fish:58
msgid "Filter through compress"
-msgstr ""
+msgstr "Filtrera genom compress"
#: init/completions/tar.fish:59 init/completions/tar.fish:60
msgid "Filter through gzip"
-msgstr ""
+msgstr "Filtrera genom gzip"
#: init/completions/tar.fish:61
msgid "Filter through specified program"
-msgstr ""
+msgstr "Filtrera genom specificerat program"
#: init/completions/test.fish:4
msgid "Negate expression"
-msgstr ""
+msgstr "Negera uttryck"
#: init/completions/test.fish:5
msgid "Logical and"
-msgstr ""
+msgstr "Logisk 'och'"
#: init/completions/test.fish:6
msgid "Logical or"
-msgstr ""
+msgstr "Logisk 'eller'"
#: init/completions/test.fish:7
msgid "String length is non-zero"
-msgstr ""
+msgstr "Strängens längd är nollskild"
#: init/completions/test.fish:8
msgid "String length is zero"
-msgstr ""
+msgstr "Strängens längd är noll"
#: init/completions/test.fish:9
msgid "Strings are equal"
-msgstr ""
+msgstr "Strängar är identiska"
#: init/completions/test.fish:10
msgid "Strings are not equal"
-msgstr ""
+msgstr "Strängar skiljer sig"
#: init/completions/test.fish:11
msgid "Integers are equal"
-msgstr ""
+msgstr "Heltal är identiska"
#: init/completions/test.fish:12
msgid "Left integer larger than or equal to right integer"
-msgstr ""
+msgstr "Vänster tal är större än eller lika med höger tal"
#: init/completions/test.fish:13
msgid "Left integer larger than right integer"
-msgstr ""
+msgstr "Vänster tal är större än höger tal"
#: init/completions/test.fish:14
msgid "Left integer less than or equal to right integer"
-msgstr ""
+msgstr "Vänster tal är mindre än eller lika med höger tal"
#: init/completions/test.fish:15
msgid "Left integer less than right integer"
-msgstr ""
+msgstr "Vänster tal är mindre än höger tal"
#: init/completions/test.fish:16
msgid "Left integer not equal to right integer"
-msgstr ""
+msgstr "Vänster tal skilt från höger tal"
#: init/completions/test.fish:17
msgid "Left file equal to right file"
-msgstr ""
+msgstr "Vänster fil identisk med höger fil"
#: init/completions/test.fish:18
msgid "Left file newer than right file"
-msgstr ""
+msgstr "Vänster fil nyare än höger fil"
#: init/completions/test.fish:19
msgid "Left file older than right file"
-msgstr ""
+msgstr "Vänster fil är äldre än höger fil"
#: init/completions/test.fish:20
msgid "File is block device"
@@ -6799,147 +6782,135 @@ msgstr "Fil existerar"
#: init/completions/test.fish:24
msgid "File is regular"
-msgstr ""
+msgstr "Fil är vanlig fil"
#: init/completions/test.fish:25
msgid "File is set-group-ID"
-msgstr ""
+msgstr "Fil har kör-som-grupp-bit satt"
#: init/completions/test.fish:26 init/completions/test.fish:29
msgid "File is symlink"
-msgstr ""
+msgstr "Fil är symbolisk länk"
#: init/completions/test.fish:27
msgid "File owned by effective group ID"
-msgstr ""
+msgstr "Fil ägs av effektiv grupp-id"
#: init/completions/test.fish:28
msgid "File has sticky bit set"
-msgstr ""
+msgstr "Fils fastbit är satt"
#: init/completions/test.fish:30
msgid "File owned by effective user ID"
-msgstr ""
+msgstr "Fil ägd av effektiv användar-id"
#: init/completions/test.fish:31
msgid "File is named pipe"
-msgstr ""
+msgstr "Fil är namngivet rör"
#: init/completions/test.fish:32
msgid "File is readable"
-msgstr ""
+msgstr "Fil är läsbar"
#: init/completions/test.fish:33
msgid "File size is non-zero"
-msgstr ""
+msgstr "Filstorlek är nollskild"
#: init/completions/test.fish:34
msgid "File is socket"
-msgstr ""
+msgstr "Fil är uttag (socket)"
#: init/completions/test.fish:35
msgid "FD is terminal"
-msgstr ""
+msgstr "Filidentifierare är terminal"
#: init/completions/test.fish:36
msgid "File set-user-ID bit is set"
-msgstr ""
+msgstr "Fil har hör-som-användare-bit satt"
#: init/completions/test.fish:37
msgid "File is writable"
-msgstr ""
+msgstr "Fil är skrivbar"
#: init/completions/test.fish:38
msgid "File is executable"
msgstr "Fil är program"
-#: init/completions/tokenize.fish:1
-msgid "Allow empty tokens"
-msgstr ""
-
-#: init/completions/tokenize.fish:2
-msgid "Ignore empty tokens"
-msgstr ""
-
-#: init/completions/tokenize.fish:3
-msgid "Delimiters for tokenization"
-msgstr ""
-
#: init/completions/top.fish:3
msgid "Toggle command line/program name"
-msgstr ""
+msgstr "Växla visning av kommandorad/programnamn"
#: init/completions/top.fish:4
msgid "Update interval"
-msgstr ""
+msgstr "Uppdateringsintervall"
#: init/completions/top.fish:6
msgid "Toggle idle processes"
-msgstr ""
+msgstr "Växla visning av overksamma processer"
#: init/completions/top.fish:7
msgid "Maximium iterations"
-msgstr ""
+msgstr "Maximalt antal step"
#: init/completions/top.fish:8
msgid "Monitor effective UID"
-msgstr ""
+msgstr "Bevaka effektivt användarid"
#: init/completions/top.fish:9
msgid "Monitor user"
-msgstr ""
+msgstr "Bevaka användare"
#: init/completions/top.fish:10
msgid "Monitor PID"
-msgstr ""
+msgstr "Bevaka process-id"
#: init/completions/top.fish:11
msgid "Secure mode"
-msgstr ""
+msgstr "Säkert läge"
#: init/completions/top.fish:12
msgid "Cumulative mode"
-msgstr ""
+msgstr "Ackumulerande läge"
#: init/completions/touch.fish:1
msgid "Change access time"
-msgstr ""
+msgstr "Visa åtkomsttid"
#: init/completions/touch.fish:2
msgid "Set date back"
-msgstr ""
+msgstr "Sätt tillbaka datum"
#: init/completions/touch.fish:3
msgid "Do not create file"
-msgstr ""
+msgstr "Skapa inte fil"
#: init/completions/touch.fish:4 init/completions/touch.fish:8
msgid "Set date"
-msgstr ""
+msgstr "Välj datum"
#: init/completions/touch.fish:5
msgid "Set date forward"
-msgstr ""
+msgstr "Sätt fram datum"
#: init/completions/touch.fish:6
msgid "Change modification time"
-msgstr ""
+msgstr "Ändra modifieringstid"
#: init/completions/touch.fish:7
msgid "Use this files times"
-msgstr ""
+msgstr "Använd denna fils tider"
#: init/completions/trap.fish:2
msgid "Display names of all signals"
-msgstr ""
+msgstr "Visa namn på alla signaler"
#: init/completions/trap.fish:3
msgid "Display all currently defined trap handlers"
-msgstr ""
+msgstr "Visa all för tillfället definerade trap-hanterare"
#: init/completions/type.fish:3
msgid "Print all possible definitions of the specified name"
-msgstr ""
+msgstr "Visa alla möjliga definitioner av det specificerade namnet"
#: init/completions/type.fish:4
msgid "Supress function and builtin lookup"
@@ -6951,7 +6922,7 @@ msgstr "Skriv ut kommandotyp"
#: init/completions/type.fish:6
msgid "Print path to command, or nothing if name is not a command"
-msgstr ""
+msgstr "Visa sökväg till kommando, eller ingenting om namn inte är ett kommando"
#: init/completions/type.fish:7
msgid "Print path to command"
@@ -6995,50 +6966,50 @@ msgstr "Maximal cpu-tid i sekunder"
#: init/completions/ulimit.fish:11
msgid "Maximum number of processes available to a single user"
-msgstr ""
+msgstr "Maximalt antal processer tillgängliga för en enskild användare"
#: init/completions/ulimit.fish:12
msgid "Maximum amount of virtual memory available to the shell"
-msgstr ""
+msgstr "Maximal mängd virtuellt minne tillgängligt för skalet"
#: init/completions/umount.fish:18
msgid "Unmount without writing in /etc/mtab"
-msgstr ""
+msgstr "Avmontera utan stt skriva till /etc/mtab"
#: init/completions/umount.fish:19
msgid "In case unmounting fails, try to remount read-only"
-msgstr ""
+msgstr "Om avmontering misslyckas, försök att ommontera i skrivskyddat läge"
#: init/completions/umount.fish:20
msgid "In case the unmounted device was a loop device, also free this loop device"
-msgstr ""
+msgstr "Om den avmonterade enheten var en vändslinga, återlämna också denna enhet"
#: init/completions/umount.fish:21
msgid "Don't call the /sbin/umount.<filesystem> helper even if it exists"
-msgstr ""
+msgstr "Anropa inte /sbin/umount.<filsystem>-hjälparen, även om den existerar"
#: init/completions/umount.fish:22
-msgid "All of the file systems described in /etc/mtab are unmounted"
-msgstr ""
+msgid "Unmount all of the file systems described in /etc/mtab"
+msgstr "Avmontera all a filsystem i /etc/mtab"
#: init/completions/umount.fish:23
msgid "Actions should only be taken on file systems of the specified type"
-msgstr ""
+msgstr "Utför bara handlingar på filsystem av angiven typ"
#: init/completions/umount.fish:24
-msgid "Indicate that the actions should only be taken on file systems with the specified options in /etc/fstab"
-msgstr ""
+msgid "Actions should only be taken on file systems with the specified options in /etc/fstab"
+msgstr "Utför bara handlingar på filsystem med de specificerade flaggorna i /etc/fstab"
#: init/completions/umount.fish:25
msgid "Force unmount (in case of an unreachable NFS system)"
-msgstr ""
+msgstr "Tvinga avmontering (vid onåbart NFS-filsystem)"
#: init/completions/umount.fish:26
msgid "Detach the filesystem from the filesystem hierarchy now, and cleanup all references to the filesystem as soon as it is not busy"
-msgstr ""
+msgstr "Koppla bort filsystemet från hierarkin nu, och rensa upp alla referenser till filsystemet så fort som det inte är upptaget"
#: init/completions/uname.fish:1
-msgid "Print all"
+msgid "Print all information"
msgstr "Visa all information"
#: init/completions/uname.fish:2
@@ -7082,8 +7053,8 @@ msgid "Only print duplicates"
msgstr "Visa bara dubletter"
#: init/completions/uniq.fish:3
-msgid "Remove non-suplicate lines"
-msgstr ""
+msgid "Remove non-duplicate lines"
+msgstr "Ta bort rader som saknar dubletter"
#: init/completions/uniq.fish:8
msgid "Avoid comparing first N fields"
@@ -7095,15 +7066,15 @@ msgstr "Ignorera skiftläge"
#: init/completions/uniq.fish:10
msgid "Avoid comparing first N characters"
-msgstr ""
+msgstr "Jämför inte de första N tecken"
#: init/completions/uniq.fish:11
msgid "Only print unique lines"
-msgstr ""
+msgstr "Visa bara unika rader"
#: init/completions/uniq.fish:12
-msgid "Compare only N characters"
-msgstr ""
+msgid "Compare only specified number of characters"
+msgstr "Jämför bara angivet antal tecken"
#: init/completions/valgrind.fish:12
msgid "Skin"
@@ -7113,13 +7084,9 @@ msgstr "Verktyg"
msgid "Display help and debug options"
msgstr "Visa hjälp och debug-val"
-#: init/completions/valgrind.fish:27
-msgid "Run silently"
-msgstr ""
-
#: init/completions/valgrind.fish:29
msgid "Valgrind-ise children"
-msgstr ""
+msgstr "Kör barnprocesser i valgrind"
#: init/completions/valgrind.fish:30
msgid "Track file descriptors"
@@ -7139,27 +7106,27 @@ msgstr "Logga till uttag (socket)"
#: init/completions/valgrind.fish:35
msgid "Callers in stack trace"
-msgstr ""
+msgstr "Antal visade anrop i stack-spår"
#: init/completions/valgrind.fish:36
msgid "Stop showing errors if too many"
-msgstr ""
+msgstr "Sluta visa fel om för många"
#: init/completions/valgrind.fish:37
msgid "Continue trace below main()"
-msgstr ""
+msgstr "Fortsätt spåra under main()-anroppet"
#: init/completions/valgrind.fish:38
msgid "Supress errors from file"
-msgstr ""
+msgstr "Undertryck fel från fil"
#: init/completions/valgrind.fish:39
msgid "Print suppressions for detected errors"
-msgstr ""
+msgstr "Visa undertryckningar för detekterade fel"
#: init/completions/valgrind.fish:40
msgid "Start debugger on error"
-msgstr ""
+msgstr "Starta debugger vid fel"
#: init/completions/valgrind.fish:41
msgid "Debugger command"
@@ -7167,67 +7134,67 @@ msgstr "Debuggerkommando"
#: init/completions/valgrind.fish:42
msgid "File descriptor for input"
-msgstr ""
+msgstr "Filidentifierare för indata"
#: init/completions/valgrind.fish:46 init/completions/valgrind.fish:55
msgid "Check for memory leaks"
-msgstr ""
+msgstr "Kontrollera förekomst av minnesläckor"
#: init/completions/valgrind.fish:47 init/completions/valgrind.fish:56
msgid "Show reachable leaked memory"
-msgstr ""
+msgstr "Visa nåbart läckt minne"
#: init/completions/valgrind.fish:48
msgid "Determines how willing Memcheck is to consider different backtraces to be the same"
-msgstr ""
+msgstr "Bestämmer hur villig Memcheck är att betrakta olika stack-spår som lika"
#: init/completions/valgrind.fish:49 init/completions/valgrind.fish:58
msgid "Set size of freed memory pool"
-msgstr ""
+msgstr "Välj storlek på pool av återlämnat minne"
#: init/completions/valgrind.fish:57
msgid "Determines how willing Addrcheck is to consider different backtraces to be the same"
-msgstr ""
+msgstr "Bestämmer hur villig Addrcheck är att betrakta olika stack-spår som lika"
#: init/completions/valgrind.fish:63
msgid "Type of L1 instruction cache"
-msgstr ""
+msgstr "Typ av L1-instruktionscache"
#: init/completions/valgrind.fish:64
msgid "Type of L1 data cache"
-msgstr ""
+msgstr "Typ av L1-datacache"
#: init/completions/valgrind.fish:65
msgid "Type of L2 cache"
-msgstr ""
+msgstr "Typ av L2-cache"
#: init/completions/valgrind.fish:69
msgid "Specify a function that allocates memory"
-msgstr ""
+msgstr "Ange en minnesallokeringsfunktion"
#: init/completions/valgrind.fish:71
msgid "The number of bytes of heap overhead per allocation"
-msgstr ""
+msgstr "Antalet bytes av extra heap-utrymme som används per allokering"
#: init/completions/valgrind.fish:72
msgid "Profile stack usage"
-msgstr ""
+msgstr "Profilera stackanvändning"
#: init/completions/valgrind.fish:73
msgid "Depth of call chain"
-msgstr ""
+msgstr "Djup i anroppskedjan"
#: init/completions/valgrind.fish:74
msgid "Profiling output format"
-msgstr ""
+msgstr "Utdataformat för profilering"
#: init/completions/wc.fish:1
msgid "Print byte counts"
-msgstr ""
+msgstr "Visa antal bytes"
#: init/completions/wc.fish:2
msgid "Print character counts"
-msgstr ""
+msgstr "Visa antal tecken"
#: init/completions/wc.fish:3
msgid "Print newline counts"
@@ -7235,31 +7202,31 @@ msgstr "Visa antal radbrytningar"
#: init/completions/wc.fish:4
msgid "Print length of longest line"
-msgstr ""
+msgstr "Visa längd av längsta rad"
#: init/completions/wc.fish:5
msgid "Print word counts"
-msgstr ""
+msgstr "Visa antal ord"
#: init/completions/w.fish:1
msgid "Dont print header"
-msgstr ""
+msgstr "Visa inte huvud"
#: init/completions/w.fish:2
msgid "Ignore username for time calculations"
-msgstr ""
+msgstr "Ignorera användarnamn vid tidsberäkningar"
#: init/completions/w.fish:3
msgid "Short format"
-msgstr ""
+msgstr "Kort format"
#: init/completions/w.fish:4
msgid "Toggle printing of remote hostname"
-msgstr ""
+msgstr "Växla utskrift av värdnamn för andra datorer"
#: init/completions/wget.fish:7
msgid "Go to background immediately after startup"
-msgstr ""
+msgstr "Gå till bakgrunden omedelbart efter uppstart"
#: init/completions/wget.fish:8
msgid "Execute command as if part of .wgetrc"
@@ -7267,43 +7234,39 @@ msgstr "Utför kommando som om get vore en del av .wgetrc"
#: init/completions/wget.fish:9
msgid "Log all messages to logfile"
-msgstr ""
+msgstr "Logga alla meddelanden till loggfil"
#: init/completions/wget.fish:10
msgid "Append all messages to logfile"
-msgstr ""
+msgstr "Lägg till alla meddelanden till loggfil"
#: init/completions/wget.fish:11
msgid "Turn on debug output"
-msgstr ""
-
-#: init/completions/wget.fish:12
-msgid "Turn off Wget's output"
-msgstr ""
+msgstr "Slå på visning av debuginformation"
#: init/completions/wget.fish:14 init/completions/wget.fish:15
msgid "Turn off verbose without being completely quiet"
-msgstr ""
+msgstr "Slå av utförligt läge utan att vara helt tyst"
#: init/completions/wget.fish:16
msgid "Read URLs from file"
-msgstr ""
+msgstr "Läs URLer från fil"
#: init/completions/wget.fish:17
msgid "Force input to be treated as HTML"
-msgstr ""
+msgstr "Tvinga indata att behandlas som HTML"
#: init/completions/wget.fish:18
msgid "Prepend string to relative links"
-msgstr ""
+msgstr "Lägg till sträng före relativa länkar"
#: init/completions/wget.fish:19
msgid "Bind address on local machine"
-msgstr ""
+msgstr "Bind till adress på lokal maskin"
#: init/completions/wget.fish:20
msgid "Set number of retries to number"
-msgstr ""
+msgstr "Välj antal gånger att försöka igen"
#: init/completions/wget.fish:21
msgid "Concatenate output to file"
@@ -7311,51 +7274,51 @@ msgstr "Sammanlägg utdata till fil"
#: init/completions/wget.fish:22 init/completions/wget.fish:23
msgid "Never overwrite files with same name"
-msgstr ""
+msgstr "Skriv aldrig över filer med samma namn"
#: init/completions/wget.fish:24
msgid "Continue getting a partially-downloaded file"
-msgstr ""
+msgstr "Fortsätt hämta partiellt nedladdad fil"
#: init/completions/wget.fish:25
msgid "Select progress meter type"
-msgstr ""
+msgstr "Välj förloppsindikatortyp"
#: init/completions/wget.fish:32
msgid "Turn on time-stamping"
-msgstr ""
+msgstr "Slå på tidsstämpling"
#: init/completions/wget.fish:33
msgid "Print the headers/responses sent by servers"
-msgstr ""
+msgstr "Visa huvuden/svar skickade från servrar"
#: init/completions/wget.fish:34
msgid "Do not download the pages, just check that they are there"
-msgstr ""
+msgstr "Ladda inte ner sidorna, kontrollera bara att de är där"
#: init/completions/wget.fish:35
msgid "Set the network timeout"
-msgstr ""
+msgstr "Välj nätverkstimeout"
#: init/completions/wget.fish:36
msgid "Set the DNS lookup timeout"
-msgstr ""
+msgstr "Välj DNS-lookuptimeout"
#: init/completions/wget.fish:37
msgid "Set the connect timeout"
-msgstr ""
+msgstr "Välj uppkopplingstimeout"
#: init/completions/wget.fish:38
msgid "Set the read (and write) timeout"
-msgstr ""
+msgstr "Välj läs (och skriv) timeout"
#: init/completions/wget.fish:39
msgid "Limit the download speed"
-msgstr ""
+msgstr "Begränsa nedladdningshastigheten"
#: init/completions/wget.fish:40
msgid "Wait the specified number of seconds between the retrievals"
-msgstr ""
+msgstr "Vänta det specificerade antalet sekunder mellan hämtningar"
#: init/completions/wget.fish:41
msgid "Wait time between retries"
@@ -7391,7 +7354,7 @@ msgstr "Tvinga skapande av kataloghierarki"
#: init/completions/wget.fish:56 init/completions/wget.fish:57
msgid "Disable generation of host-prefixed directories"
-msgstr "Avaktivera generering av värd-prefixkatalogkomponenter"
+msgstr "Inaktivera generering av värd-prefixkatalogkomponenter"
#: init/completions/wget.fish:58
msgid "Use the protocol name as a directory component"
@@ -7419,11 +7382,11 @@ msgstr "Välj httplösenord"
#: init/completions/wget.fish:64
msgid "Disable server-side cache"
-msgstr "Avaktivera cache på serversidan"
+msgstr "Inaktivera cache på serversidan"
#: init/completions/wget.fish:65
msgid "Disable the use of cookies"
-msgstr "Avaktivera användandet av kakor"
+msgstr "Inaktivera användandet av kakor"
#: init/completions/wget.fish:66
msgid "Load cookies from file"
@@ -7656,7 +7619,7 @@ msgstr "Välj X-server"
#: init/completions/xprop.fish:9
msgid "Maximum display length"
-msgstr "MAximal displaylängd"
+msgstr "Maximal displaylängd"
#: init/completions/xprop.fish:10
msgid "Do not show property type"
@@ -7667,8 +7630,8 @@ msgid "Set format file"
msgstr "Välj formatfil"
#: init/completions/xprop.fish:12
-msgid "Select window manager frame"
-msgstr "Välj fönsterhanterarens ram"
+msgid "Select a window by clicking on its frame"
+msgstr "Välj ett fönster genom att klicka på dess ram"
#: init/completions/xprop.fish:13
msgid "Remove property"
@@ -7828,7 +7791,7 @@ msgstr "Konvertera CR LF (Windowsradbrytning) till LF (Unixradbrytning)"
#: init/completions/zip.fish:11
msgid "Compress faster"
-msgstr "Snabbkomprimering"
+msgstr "Snabb komprimering"
#: init/completions/zip.fish:12
msgid "Compress better"
@@ -7895,5 +7858,5 @@ msgid "Encrypt"
msgstr "Kryptera"
#: init/completions/zip.fish:30
-msgid "Don't compress these files with these suffixes"
+msgid "Don't compress files with these suffixes"
msgstr "Komprimera inte filer med dessa ändelser"
diff --git a/reader.c b/reader.c
index 3b1ff9d7..1c428133 100644
--- a/reader.c
+++ b/reader.c
@@ -3120,7 +3120,7 @@ static int read_ni( int fd )
if( fclose( in_stream ))
{
debug( 1,
- _( L"Error while closing input" ) );
+ _( L"Error while closing input stream" ) );
wperror( L"fclose" );
res = 1;
}
@@ -3163,7 +3163,7 @@ static int read_ni( int fd )
else
{
debug( 1,
- _( L"Error while opening input" ) );
+ _( L"Error while opening input stream" ) );
wperror( L"fdopen" );
free( buff );
res=1;
diff --git a/sanity.c b/sanity.c
index 2e8a896c..1a342327 100644
--- a/sanity.c
+++ b/sanity.c
@@ -31,7 +31,7 @@ static int insane;
void sanity_lose()
{
- debug( 0, L"Errors detected, shutting down" );
+ debug( 0, _(L"Errors detected, shutting down") );
insane = 1;
}
@@ -59,13 +59,13 @@ void validate_pointer( const void *ptr, const wchar_t *err, int null_ok )
if( (0x00000003 & (int)ptr) != 0 )
{
- debug( 0, L"The pointer '\%ls\' is invalid", err );
+ debug( 0, _(L"The pointer '%ls' is invalid"), err );
sanity_lose();
}
if((!null_ok) && (ptr==0))
{
- debug( 0, L"The pointer '\%ls\' is null", err );
+ debug( 0, _(L"The pointer '%ls' is null"), err );
sanity_lose();
}
}
diff --git a/signal.c b/signal.c
index 7532980e..1586796f 100644
--- a/signal.c
+++ b/signal.c
@@ -213,7 +213,7 @@ static struct lookup_entry lookup[] =
{
SIGIO,
L"SIGIO",
- N_( L"Asynchronous IO event" )
+ N_( L"I/O on asynchronous file descriptor is possible" )
}
,
#ifdef SIGPWR