diff --git a/.builds/alpine.yml b/.builds/alpine.yml index 31ebbb364..d9c98e5ee 100644 --- a/.builds/alpine.yml +++ b/.builds/alpine.yml @@ -5,6 +5,7 @@ packages: - ncurses-dev - pcre2-dev - expect + - python sources: - https://git.sr.ht/~faho/fish tasks: diff --git a/.builds/arch.yml b/.builds/arch.yml index 45fc2500f..31c55db6c 100644 --- a/.builds/arch.yml +++ b/.builds/arch.yml @@ -3,6 +3,7 @@ packages: - cmake - ninja - expect + - python sources: - https://git.sr.ht/~faho/fish tasks: diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml index c340a364c..e3d4eafbc 100644 --- a/.builds/freebsd.yml +++ b/.builds/freebsd.yml @@ -7,6 +7,7 @@ packages: - cmake - gmake - pcre2 + - python sources: - https://git.sr.ht/~faho/fish tasks: diff --git a/.builds/netbsd.yml b/.builds/netbsd.yml deleted file mode 100644 index 5756e2745..000000000 --- a/.builds/netbsd.yml +++ /dev/null @@ -1,23 +0,0 @@ -image: netbsd/latest -packages: - - ncurses - - gettext - - tcl-expect - - cmake - - gmake - - pcre2 -tasks: - - build: | - git -c http.sslVerify=false clone https://git.sr.ht/~faho/fish - cd fish - mkdir build || : - cd build - cmake .. \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_DATADIR=share \ - -DCMAKE_INSTALL_DOCDIR=share/doc/fish \ - -DCMAKE_INSTALL_SYSCONFDIR=/etc - gmake -j2 - - test: | - cd fish/build - gmake test SHOW_INTERACTIVE_LOG=1 diff --git a/.clang-format b/.clang-format index c540053d5..0243776b3 100644 --- a/.clang-format +++ b/.clang-format @@ -6,5 +6,11 @@ BasedOnStyle: Google ColumnLimit: 100 IndentWidth: 4 + +# Place config.h first always. +IncludeCategories: + - Regex: '^"config.h"' + Priority: -1 + # We don't want OCLint pragmas to be reformatted. CommentPragmas: '^!OCLINT' diff --git a/.editorconfig b/.editorconfig index a99eceb75..bed92f3e4 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,7 +12,7 @@ max_line_length = 100 [{Makefile,*.in}] indent_style = tab -[*.md] +[*.{md,rst}] trim_trailing_whitespace = false [*.{sh,ac}] diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 6b42e39e1..03b2b48a7 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -11,7 +11,4 @@ Please tell us if you tried fish without third-party customizations by executing sh -c 'env HOME=$(mktemp -d) fish' Tell us how to reproduce the problem. Including an asciinema.org recording is useful for problems that involve the visual display of fish output such as its prompt. - -If you are reporting a bug in fish 3.0, please make sure to indicate whether or not this is a -regression from fish 2.7.1. --> diff --git a/.travis.yml b/.travis.yml index b17542071..dc8c82f56 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,10 @@ matrix: - gettext - libncurses5-dev - libpcre2-dev + - python + env: + # Some warnings upgraded to errors to match Open Build Service platforms + - CXXFLAGS="-Werror=address -Werror=return-type" - os: linux compiler: gcc addons: @@ -22,12 +26,13 @@ matrix: - gettext - lib32ncurses5-dev - g++-multilib + - python env: - - CXXFLAGS="-g -O2 -m32" CFLAGS="-g -m32" + - CXXFLAGS="-m32 -Werror=address -Werror=return-type" CFLAGS="-m32" - os: linux compiler: clang env: - - CXXFLAGS="-g -O2 -fno-omit-frame-pointer -fsanitize=undefined -fsanitize=address" + - CXXFLAGS="-fno-omit-frame-pointer -fsanitize=undefined -fsanitize=address" - ASAN_OPTIONS=check_initialization_order=1:detect_stack_use_after_return=1:detect_leaks=1 - UBSAN_OPTIONS=print_stacktrace=1:report_error_type=1:suppressions=$TRAVIS_BUILD_DIR/build_tools/ubsan.blacklist addons: @@ -37,6 +42,19 @@ matrix: - gettext - libncurses5-dev - libpcre2-dev + - python + - os: linux + compiler: clang + env: + - CXXFLAGS="-fsanitize=thread" + addons: + apt: + packages: + - expect + - gettext + - libncurses5-dev + - libpcre2-dev + - python coverity_scan: project: name: "fish-shell/fish-shell" diff --git a/CHANGELOG.md b/CHANGELOG.md index d5a33add6..4c96eefd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,34 +1,243 @@ # fish next-minor -## Deprecations -- The vcs-prompt functions have been renamed to names without double-underscore, so __fish_git_prompt is now fish_git_prompt, __fish_vcs_prompt is now fish_vcs_prompt, __fish_hg_prompt is now fish_hg_prompt and __fish_svn_prompt is now fish_svn_prompt. Shims at the old names have been added, and the variables have kept their old names (#5586). - -## Notable fixes and improvements -- Add `$pipestatus` support -- `string split0` now returns 0 if it split something (#5701). +## Notable improvements and fixes ### Syntax changes and new commands -- None yet. + +### Scripting improvements ### Interactive improvements -- Major improvements in performance and functionality to the 'sorin' sample prompt (#5411). -- Added completions for: - - nothing yet... -- Lots of improvements to completions. -- fish_clipboard_* now supports wayland by means of [wl-clipboard](https://github.com/bugaevc/wl-clipboard). -- mandoc can now be used to format the output from `--help` if nroff is not installed -- New color options for the pager have been added (#5524). -- The default escape delay (to differentiate between the escape key and an alt-combination) has been reduced to 30ms, down from 300ms for the default mode and 100ms for vi-mode (#3904). -- In the interest of consistency, `builtin -q` and `command -q` can now be used to query if a builtin or command exists (#5631). -- The `path_helper` on macOS now only runs in login shells, matching the bash implementation. -- `math` now accepts `--scale=max` for the maximum scale (#5579). -- The `forward-bigword` binding now interacts correctly with autosuggestions (#5336) + +#### New or improved bindings +- New readline commands `undo` (Ctrl+_) and `redo` (Alt-/) can be used to revert changes to the command line or the pager search field (#6570). + +#### Improved prompts +- The default and example prompts print the correct exit status for commands prefixed with `not` (#6566). + +#### Improved terminal output + +#### Completions - Added completions for - - `cf` - - `bosh` + - `wireshark`, `tshark`, and `dumpcap` + +### Deprecations and removed features ### For distributors and developers -- The autotools-based build system and legacy Xcode build systems have been removed, leaving only the CMake build system. All distributors and developers must migrate to the CMake build. + +--- + +# fish 3.1b1 (released January 26, 2020) + +## Notable improvements and fixes +- A new `$pipestatus` variable contains a list of exit statuses of the previous job, for each of the separate commands in a pipeline (#5632). +- fish no longer buffers pipes to the last function in a pipeline, improving many cases where pipes appeared to block or hang (#1396). +- An overhaul of error messages for builtin commands, including a removal of the overwhelming usage summary, more readable stack traces (#3404, #5434), and stack traces for `test` (aka `[`) (#5771). +- fish's debugging arguments have been significantly improved. The `--debug-level` option has been removed, and a new `--debug` option replaces it. This option accepts various categories, which may be listed via `fish --print-debug-categories` (#5879). A new `--debug-output` option allows for redirection of debug output. +- `string` has a new `collect` subcommand for use in command substitutions, producing a single output instead of splitting on new lines (similar to `"$(cmd)"` in other shells) (#159). +- The fish manual, tutorial and FAQ are now available in `man` format as `fish-doc`, `fish-tutorial` and `fish-faq` respectively (#5521). +- Like other shells, `cd` now always looks for its argument in the current directory as a last resort, even if the `CDPATH` variable does not include it or "." (#4484). +- fish now correctly handles `CDPATH` entries that start with `..` (#6220) or contain `./` (#5887). +- The `fish_trace` variable may be set to trace execution (#3427). This performs a similar role as `set -x` in other shells. +- fish uses the temporary directory determined by the system, rather than relying on `/tmp` (#3845). +- The fish Web configuration tool (`fish_config`) prints a list of commands it is executing, to help understanding and debugging (#5584). +- Major performance improvements when pasting (#5866), executing lots of commands (#5905), importing history from bash (#6295), and when completing variables that might match `$history` (#6288). + +### Syntax changes and new commands +- A new builtin command, `time`, which allows timing of fish functions and builtins as well as external commands (#117). +- Brace expansion now only takes place if the braces include a "," or a variable expansion, meaning common commands such as `git reset HEAD@{0}` do not require escaping (#5869). +- New redirections `&>` and `&|` may be used to redirect or pipe stdout, and also redirect stderr to stdout (#6192). +- `switch` now allows arguments that expand to nothing, like empty variables (#5677). +- The `VAR=val cmd` syntax can now be used to run a command in a modified environment (#6287). +- `and` is no longer recognised as a command, so that nonsensical constructs like `and and and` produce a syntax error (#6089). +- `math`'s exponent operator, '`^`', was previously left-associative, but now uses the more commonly-used right-associative behaviour (#6280). This means that `math '3^0.5^2'` was previously calculated as '(3^0.5)^2', but is now calculated as '3^(0.5^2)'. +- In fish 3.0, the variable used with `for` loops inside command substitutions could leak into enclosing scopes; this was an inadvertent behaviour change and has been reverted (#6480). + +### Scripting improvements +- `string split0` now returns 0 if it split something (#5701). +- In the interest of consistency, `builtin -q` and `command -q` can now be used to query if a builtin or command exists (#5631). +- `math` now accepts `--scale=max` for the maximum scale (#5579). +- `builtin $var` now works correctly, allowing a variable as the builtin name (#5639). +- `cd` understands the `--` argument to make it possible to change to directories starting with a hyphen (#6071). +- `complete --do-complete` now also does fuzzy matches (#5467). +- `complete --do-complete` can be used inside completions, allowing limited recursion (#3474). +- `count` now also counts lines fed on standard input (#5744). +- `eval` produces an exit status of 0 when given no arguments, like other shells (#5692). +- `printf` prints what it can when input hasn't been fully converted to a number, but still prints an error (#5532). +- `complete -C foo` now works as expected, rather than requiring `complete -Cfoo`. +- `complete` has a new `--force-files` option, to re-enable file completions. This allows `sudo -E` and `pacman -Qo` to complete correctly (#5646). +- `argparse` now defaults to showing the current function name (instead of `argparse`) in its errors, making `--name` often superfluous (#5835). +- `argparse` has a new `--ignore-unknown` option to keep unrecognized options, allowing multiple argparse passes to parse options (#5367). +- `argparse` correctly handles flag value validation of options that only have short names (#5864). +- `read -S` (short option of `--shell`) is recognised correctly (#5660). +- `read` understands `--list`, which acts like `--array` in reading all arguments into a list inside a single variable, but is better named (#5846). +- `read` has a new option, `--tokenize`, which splits a string into variables according to the shell's tokenization rules, considering quoting, escaping, and so on (#3823). +- `read` interacts more correctly with the deprecated `$IFS` variable, in particular removing multiple separators when splitting a variable into a list (#6406), matching other shells. +- `fish_indent` now handles semicolons better, including leaving them in place for `; and` and `; or` instead of breaking the line (#5859). +- `fish_indent --write` now supports multiple file arguments, indenting them in turn. +- The default read limit has been increased to 100MiB (#5267). +- `math` now also understands `x` for multiplication, provided it is followed by whitespace (#5906). +- `math` reports the right error when incorrect syntax is used inside parentheses (#6063), and warns when unsupported logical operations are used (#6096). +- `functions --erase` now also prevents fish from autoloading a function for the first time (#5951). +- `jobs --last` returns 0 to indicate success when a job is found (#6104). +- `commandline -p` and `commandline -j` now split on `&&` and `||` in addition to `;` and `&` (#6214). +- A bug where `string split` would drop empty strings if the output was only empty strings has been fixed (#5987). +- `eval` no long creates a new local variable scope, but affects variables in the scope it is called from (#4443). `source` still creates a new local scope. +- `abbr` has a new `--query` option to check for the existence of an abbreviation. +- Local values for `fish_complete_path` and `fish_function_path` are now ignored; only their global values are respected. +- Syntax error reports now display a marker in the correct position (#5812). +- Empty universal variables may now be exported (#5992). +- Exported universal variables are no longer imported into the global scope, preventing shadowing. This makes it easier to change such variables for all fish sessions and avoids breakage when the value is a list of multiple elements (#5258). +- A bug where `for` could use invalid variable names has been fixed (#5800). +- A bug where local variables would not be exported to functions has been fixed (#6153). +- The null command (`:`) now always exits successfully, rather than passing through the previous exit status (#6022). +- The output of `functions FUNCTION` matches the declaration of the function, correctly including comments or blank lines (#5285), and correctly includes any `--wraps` flags (#1625). +- `type` supports a new option, `--short`, which suppress function expansion (#6403). +- `type --path` with a function argument will now output the path to the file containing the definition of that function, if it exists. +- `type --force-path` with an argument that cannot be found now correctly outputs nothing, as documented (#6411). +- The `$hostname` variable is no longer truncated to 32 characters (#5758). +- Line numbers in function backtraces are calculated correctly (#6350). +- A new `fish_cancel` event is emitted when the command line is cancelled, which is useful for terminal integration (#5973). + +### Interactive improvements +- New Base16 color options are available through the Web-based configuration (#6504). +- fish only parses `/etc/paths` on macOS in login shells, matching the bash implementation (#5637) and avoiding changes to path ordering in child shells (#5456). It now ignores blank lines like the bash implementation (#5809). +- The locale is now reloaded when the `LOCPATH` variable is changed (#5815). +- `read` no longer keeps a history, making it suitable for operations that shouldn't end up there, like password entry (#5904). +- `dirh` outputs its stack in the correct order (#5477), and behaves as documented when universal variables are used for its stack (#5797). +- `funced` and the edit-commandline-in-buffer bindings did not work in fish 3.0 when the `$EDITOR` variable contained spaces; this has been corrected (#5625). +- Builtins now pipe their help output to a pager automatically (#6227). +- `set_color` now colors the `--print-colors` output in the matching colors if it is going to a terminal. +- fish now underlines every valid entered path instead of just the last one (#5872). +- When syntax highlighting a string with an unclosed quote, only the quote itself will be shown as an error, instead of the whole argument. +- Syntax highlighting works correctly with variables as commands (#5658) and redirections to close file descriptors (#6092). +- `help` works properly on Windows Subsytem for Linux (#5759, #6338). +- A bug where `disown` could crash the shell has been fixed (#5720). +- fish will not autosuggest files ending with `~` unless there are no other candidates, as these are generally backup files (#985). +- Escape in the pager works correctly (#5818). +- Key bindings that call `fg` no longer leave the terminal in a broken state (#2114). +- Brackets (#5831) and filenames containing `$` (#6060) are completed with appropriate escaping. +- The output of `complete` and `functions` is now colorized in interactive terminals. +- The Web-based configuration handles aliases that include single quotes correctly (#6120), and launches correctly under Termux (#6248) and OpenBSD (#6522). +- `function` now correctly validates parameters for `--argument-names` as valid variable names (#6147) and correctly parses options following `--argument-names`, as in "`--argument-names foo --description bar`" (#6186). +- History newly imported from bash includes command lines using `&&` or `||`. +- The automatic generation of completions from manual pages is better described in job and process listings, and no longer produces a warning when exiting fish (#6269). +- In private mode, setting `$fish_greeting` to an empty string before starting the private session will prevent the warning about history not being saved from being printed (#6299). +- In the interactive editor, a line break (Enter) inside unclosed brackets will insert a new line, rather than executing the command and producing an error (#6316). +- Ctrl-C always repaints the prompt (#6394). +- When run interactively from another program (such as Python), fish will correctly start a new process group, like other shells (#5909). +- Job identifiers (for example, for background jobs) are assigned more logically (#6053). +- A bug where history would appear truncated if an empty command was executed was fixed (#6032). + +#### New or improved bindings +- Pasting strips leading spaces to avoid pasted commands being omitted from the history (#4327). +- Shift-Left and Shift-Right now default to moving backwards and forwards by one bigword (words separated by whitespace) (#1505). +- The default escape delay (to differentiate between the escape key and an alt-combination) has been reduced to 30ms, down from 300ms for the default mode and 100ms for Vi mode (#3904). +- The `forward-bigword` binding now interacts correctly with autosuggestions (#5336). +- The `fish_clipboard_*` functions support Wayland by using [`wl-clipboard`](https://github.com/bugaevc/wl-clipboard) (#5450). +- The `nextd` and `prevd` functions no longer print "Hit end of history", instead using a bell. They correctly store working directories containing symbolic links (#6395). +- If a `fish_mode_prompt` function exists, Vi mode will only execute it on mode-switch instead of the entire prompt. This should make it much more responsive with slow prompts (#5783). +- The path-component bindings (like Ctrl-w) now also stop at ":" and "@", because those are used to denote user and host in commands such as `ssh` (#5841). +- The NULL character can now be bound via `bind -k nul`. Terminals often generate this character via control-space. (#3189). +- A new readline command `expand-abbr` can be used to trigger abbreviation expansion (#5762). +- A new readline command, `delete-or-exit`, removes a character to the right of the cursor or exits the shell if the command line is empty (moving this functionality out of the `delete-or-exit` function). +- The `self-insert` readline command will now insert the binding sequence, if not empty. +- A new binding to prepend `sudo`, bound to Alt-S by default (#6140). +- The Alt-W binding to describe a command should now work better with multiline prompts (#6110) +- The Alt-H binding to open a command's man page now tries to ignore `sudo` (#6122). +- A new pair of bind functions, `history-prefix-search-backward` (and `forward`), was introduced (#6143). +- Vi mode now supports R to enter replace mode (#6342), and `d0` to delete the current line (#6292). +- In Vi mode, hitting Enter in replace-one mode no longer erases the prompt (#6298). +- Selections in Vi mode are inclusive, matching the actual behaviour of Vi (#5770). + +#### Improved prompts +- The Git prompt in informative mode now shows the number of stashes if enabled. +- The Git prompt now has an option (`$__fish_git_prompt_use_informative_chars`) to use the (more modern) informative characters without enabling informative mode. +- The default prompt now also features VCS integration and will color the host if running via SSH (#6375). +- The default and example prompts print the pipe status if an earlier command in the pipe fails. +- The default and example prompts try to resolve exit statuses to signal names when appropriate. + +#### Improved terminal output +- New `fish_pager_color_` options have been added to control more elements of the pager's colors (#5524). +- Better detection and support for using fish from various system consoles, where limited colors and special characters are supported (#5552). +- fish now tries to guess if the system supports Unicode 9 (and displays emoji as wide), eliminating the need to set `$fish_emoji_width` in most cases (#5722). +- Improvements to the display of wide characters, particularly Korean characters and emoji (#5583, #5729). +- The Vi mode cursor is correctly redrawn when regaining focus under terminals that report focus (eg tmux) (#4788). +- Variables that control background colors (such as `fish_pager_color_search_match`) can now use `--reverse`. + +#### Completions +- Added completions for + - `aws` + - `bat` (#6052) + - `bosh` (#5700) + - `btrfs` + - `camcontrol` + - `cf` (#5700) + - `chronyc` (#6496) + - `code` (#6205) + - `cryptsetup` (#6488) + - `csc` and `csi` (#6016) + - `cwebp` (#6034) + - `cygpath` and `cygstart` (#6239) + - `epkginfo` (#5829) + - `ffmpeg`, `ffplay`, and `ffprobe` (#5922) + - `fsharpc` and `fsharpi` (#6016) + - `fzf` (#6178) + - `g++` (#6217) + - `gpg1` (#6139) + - `gpg2` (#6062) + - `grub-mkrescue` (#6182) + - `hledger` (#6043) + - `hwinfo` (#6496) + - `irb` (#6260) + - `iw` (#6232) + - `kak` + - `keepassxc-cli` (#6505) + - `keybase` (#6410) + - `loginctl` (#6501) + - `lz4`, `lz4c` and `lz4cat` (#6364) + - `mariner` (#5718) + - `nethack` (#6240) + - `patool` (#6083) + - `phpunit` (#6197) + - `plutil` (#6301) + - `pzstd` (#6364) + - `qubes-gpg-client` (#6067) + - `resolvectl` (#6501) + - `rg` + - `rustup` + - `sfdx` (#6149) + - `speedtest` and `speedtest-cli` (#5840) + - `src` (#6026) + - `tokei` (#6085) + - `tsc` (#6016) + - `unlz4` (#6364) + - `unzstd` (#6364) + - `vbc` (#6016) + - `zpaq` (#6245) + - `zstd`, `zstdcat`, `zstdgrep`, `zstdless` and `zstdmt` (#6364) +- Lots of improvements to completions. +- Selecting short options which also have a long name from the completion pager is possible (#5634). +- Tab completion will no longer add trailing spaces if they already exist (#6107). +- Completion of subcommands to builtins like `and` or `not` now works correctly (#6249). +- Completion of arguments to short options works correctly when multiple short options are used together (#332). +- Activating completion in the middle of an invalid completion does not move the cursor any more, making it easier to fix a mistake (#4124). +- Completion in empty commandlines now lists all available commands. +- Functions listed as completions could previously leak parts of the function as other completions; this has been fixed. + +### Deprecations and removed features +- The vcs-prompt functions have been promoted to names without double-underscore, so __fish_git_prompt is now fish_git_prompt, __fish_vcs_prompt is now fish_vcs_prompt, __fish_hg_prompt is now fish_hg_prompt and __fish_svn_prompt is now fish_svn_prompt. Shims at the old names have been added, and the variables have kept their old names (#5586). +- `string replace` has an additional round of escaping in the replacement expression, so escaping backslashes requires many escapes (eg `string replace -ra '([ab])' '\\\\\\\$1' a`). The new feature flag `regex-easyesc` can be used to disable this, so that the same effect can be achieved with `string replace -ra '([ab])' '\\\\$1' a` (#5556). As a reminder, the intention behind feature flags is that this will eventually become the default and then only option, so scripts should be updated. +- The `fish_vi_mode` function, deprecated in fish 2.3, has been removed. Use `fish_vi_key_bindings` instead (#6372). + +### For distributors and developers +- fish 3.0 introduced a CMake-based build system. In fish 3.1, both the Autotools-based build and legacy Xcode build system have been removed, leaving only the CMake build system. All distributors and developers must install CMake. +- fish now depends on the common `tee` external command, for the `psub` process substitution function. +- The documentation is now built with Sphinx. The old Doxygen-based documentation system has been removed. Developers, and distributors who wish to rebuild the documentation, must install Sphinx. +- The `INTERNAL_WCWIDTH` build option has been removed, as fish now always uses an internal `wcwidth` function. It has a number of configuration options that make it more suitable for general use (#5777). +- mandoc can now be used to format the output from `--help` if `nroff` is not installed, reducing the number of external dependencies on systems with `mandoc` installed (#5489). +- Some bugs preventing building on Solaris-derived systems such as Illumos were fixed (#5458, #5461, #5611). +- Completions for `npm`, `bower` and `yarn` no longer require the `jq` utility for full functionality, but will use Python instead if it is available. +- The paths for completions, functions and configuration snippets have been extended. On systems that define `XDG_DATA_DIRS`, each of the directories in this variable are searched in the subdirectories `fish/vendor_completions.d`, `fish/vendor_functions.d`, and `fish/vendor_conf.d` respectively. On systems that do not define this variable in the environment, the vendor directories are searched for in both the installation prefix and the default "extra" directory, which now defaults to `/usr/local` (#5029). --- diff --git a/CMakeLists.txt b/CMakeLists.txt index b0b518aa5..6072dfe59 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,18 +4,24 @@ IF(POLICY CMP0066) CMAKE_POLICY(SET CMP0066 OLD) ENDIF() IF(POLICY CMP0067) - CMAKE_POLICY(SET CMP0067 OLD) + CMAKE_POLICY(SET CMP0067 NEW) ENDIF() PROJECT(fish) # We are C++11. SET(CMAKE_CXX_STANDARD 11) -SET(CMAKE_CXX_FLAGS_DEBUG "-O0 -g") -SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g") -SET(CMAKE_CXX_FLAGS_RELEASE "-O2") SET(DEFAULT_BUILD_TYPE "RelWithDebInfo") +# Use the default flags (#6296) but remove -DNDEBUG so that asserts remain enabled. +STRING(REPLACE "-DNDEBUG" "" + CMAKE_CXX_FLAGS_RELWITHDEBINFO + "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}") + +STRING(REPLACE "-DNDEBUG" "" + CMAKE_CXX_FLAGS_RELEASE + "${CMAKE_CXX_FLAGS_RELEASE}") + IF(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) MESSAGE(STATUS "Setting build type to default '${DEFAULT_BUILD_TYPE}'") SET(CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}") @@ -30,10 +36,32 @@ if (CMAKE_GENERATOR STREQUAL "Ninja" AND set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fdiagnostics-color=always") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fdiagnostics-color=always") endif() +# Enable a whole bunch of warnings, but turn off: +# - implicit fallthrough because that does not recognize some cases where it's desired (and I *really* want this one!) +# - comment because we use a bunch of those, and they're not really all that harmful. +# - address, because that occurs for our mkostemp check (weak-linking requires us to compare `&mkostemp == nullptr`). +# - strict-aliasing, because on old GCCs (*Travis*) those are triggered by maybe.h, so you get it every time it is included. +# - redundant-move, because we have one that is required on old libc +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra \ +-Wno-implicit-fallthrough \ +-Wno-comment \ +-Wno-address \ +-Wno-strict-aliasing \ +-Wno-redundant-move \ +") # Disable exception handling. ADD_COMPILE_OPTIONS(-fno-exceptions) +# Prefer the gold linker because it doesn't emit useless warnings about sys_nerr and _sys_errlist. +if (UNIX AND NOT APPLE) + EXECUTE_PROCESS(COMMAND ${CMAKE_C_COMPILER} -fuse-ld=gold -Wl,--version + ERROR_QUIET OUTPUT_VARIABLE LD_VERSION) + if ("${LD_VERSION}" MATCHES "GNU gold") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fuse-ld=gold") + endif() +endif() + # Hide the CMake Rules directories in Xcode projects. SOURCE_GROUP("CMake Rules" REGULAR_EXPRESSION "^$") @@ -77,18 +105,20 @@ SET(FISH_SRCS src/builtin_random.cpp src/builtin_read.cpp src/builtin_realpath.cpp src/builtin_return.cpp src/builtin_set.cpp src/builtin_set_color.cpp src/builtin_source.cpp src/builtin_status.cpp src/builtin_string.cpp - src/builtin_test.cpp src/builtin_ulimit.cpp src/builtin_wait.cpp - src/color.cpp src/common.cpp src/complete.cpp src/env.cpp + src/builtin_test.cpp src/builtin_ulimit.cpp src/builtin_wait.cpp src/builtin_eval.cpp + src/color.cpp src/common.cpp src/complete.cpp src/env.cpp src/env_dispatch.cpp src/env_universal_common.cpp src/event.cpp src/exec.cpp src/expand.cpp src/fallback.cpp src/fish_version.cpp src/function.cpp src/highlight.cpp - src/history.cpp src/input.cpp src/input_common.cpp src/intern.cpp src/io.cpp - src/iothread.cpp src/kill.cpp src/output.cpp src/pager.cpp + src/history.cpp src/history_file.cpp src/input.cpp src/input_common.cpp src/intern.cpp + src/io.cpp src/iothread.cpp src/kill.cpp src/output.cpp src/pager.cpp src/parse_execution.cpp src/parse_productions.cpp src/parse_tree.cpp src/parse_util.cpp src/parser.cpp src/parser_keywords.cpp src/path.cpp src/postfork.cpp src/proc.cpp src/reader.cpp src/sanity.cpp src/screen.cpp src/signal.cpp src/tinyexpr.cpp src/tnode.cpp src/tokenizer.cpp src/utf8.cpp src/util.cpp src/wcstringutil.cpp src/wgetopt.cpp src/wildcard.cpp src/wutil.cpp src/future_feature_flags.cpp src/redirection.cpp src/topic_monitor.cpp + src/flog.cpp src/trace.cpp src/timer.cpp src/null_terminated_array.cpp + src/operation_context.cpp src/fd_monitor.cpp ) # Header files are just globbed. @@ -127,22 +157,12 @@ SET_SOURCE_FILES_PROPERTIES(src/fish_version.cpp PROPERTIES OBJECT_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/${FBVF}) -OPTION(INTERNAL_WCWIDTH "use fallback wcwidth" ON) -IF(INTERNAL_WCWIDTH) - ADD_DEFINITIONS(-DHAVE_BROKEN_WCWIDTH=1) -ELSE() - ADD_DEFINITIONS(-DHAVE_BROKEN_WCWIDTH=0) -ENDIF() - # Enable thread-safe errno on Solaris (#5611) ADD_DEFINITIONS(-D_REENTRANT) # Set up PCRE2 INCLUDE(cmake/PCRE2.cmake) -# Set up the docs. -INCLUDE(cmake/Docs.cmake) - # Define a function to link dependencies. FUNCTION(FISH_LINK_DEPS target) TARGET_LINK_LIBRARIES(${target} fishlib) @@ -153,7 +173,7 @@ ADD_LIBRARY(fishlib STATIC ${FISH_SRCS}) TARGET_SOURCES(fishlib PRIVATE ${FISH_HEADERS}) TARGET_LINK_LIBRARIES(fishlib ${CURSES_LIBRARY} ${CURSES_EXTRA_LIBRARY} Threads::Threads ${CMAKE_DL_LIBS} - ${PCRE2_LIB} ${Intl_LIBRARIES}) + ${PCRE2_LIB} ${Intl_LIBRARIES} ${ATOMIC_LIBRARY}) # Define fish. ADD_EXECUTABLE(fish src/fish.cpp) @@ -169,9 +189,18 @@ ADD_EXECUTABLE(fish_key_reader src/fish_key_reader.cpp src/print_help.cpp) FISH_LINK_DEPS(fish_key_reader) +# Set up the docs. +INCLUDE(cmake/Docs.cmake) + +# A helper for running tests. +ADD_EXECUTABLE(fish_test_helper src/fish_test_helper.cpp) + # Set up tests. INCLUDE(cmake/Tests.cmake) +# Benchmarking support. +INCLUDE(cmake/Benchmark.cmake) + # Set up install. INCLUDE(cmake/Install.cmake) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a8e0bd830..b879877bc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -297,7 +297,13 @@ sudo ln -s /usr/bin/clang-format-3.9 /usr/bin/clang-format ## Message Translations -Fish uses the GNU gettext library to translate messages from English to other languages. To create or update a translation run `make po/[LANGUAGE CODE].po` where `LANGUAGE CODE` is the two letter ISO 639-1 language code of the language you are translating to (e.g. `de` for German). Make sure that you have the `xgettext`, `msgfmt` and `msgmerge` commands installed in order to do this. +Fish uses the GNU gettext library to translate messages from English to other languages. + +All non-debug messages output for user consumption should be marked for translation. In C++, this requires the use of the `_` (underscore) macro: + +``` +streams.out.append_format(_(L"%ls: There are no jobs\n"), argv[0]); +``` All messages in fish script must be enclosed in single or double quote characters. They must also be translated via a subcommand. This means that the following are **not** valid: @@ -315,6 +321,18 @@ echo (_ "goodbye") Note that you can use either single or double quotes to enclose the message to be translated. You can also optionally include spaces after the opening parentheses and once again before the closing parentheses. -Be cautious about blindly updating an existing translation file. Trivial changes to an existing message (e.g., changing the punctuation) will cause existing translations to be removed, since the tools do literal string matching. Therefore, in general, you need to carefully review any recommended deletions. +Creating and updating translations requires the Gettext tools, including `xgettext`, `msgfmt` and `msgmerge`. Translation sources are stored in the `po` directory, named `LANG.po`, where `LANG` is the two letter ISO 639-1 language code of the target language (eg `de` for German). + +To create a new translation, for example for German: +* generate a `messages.pot` file by running `build_tools/fish_xgettext.fish` from the source tree +* copy `messages.pot` to `po/LANG.po` () + +To update a translation: +* generate a `messages.pot` file by running `build_tools/fish_xgettext.fish` from the source tree +* update the existing translation by running `msgmerge --update --no-fuzzy-matching po/LANG.po messages.pot` + +Many tools are available for editing translation files, including command-line and graphical user interface programs. + +Be cautious about blindly updating an existing translation file. Trivial changes to an existing message (eg changing the punctuation) will cause existing translations to be removed, since the tools do literal string matching. Therefore, in general, you need to carefully review any recommended deletions. Read the [translations wiki](https://github.com/fish-shell/fish-shell/wiki/Translations) for more information. diff --git a/COPYING b/COPYING index a8a80460d..527c6ad49 100644 --- a/COPYING +++ b/COPYING @@ -1,6 +1,7 @@ Fish is a smart and user-friendly command line shell. Copyright (C) 2005-2009 Axel Liljencrantz +Copyright (C) 2009-2019 fish-shell contributors fish is free software. diff --git a/Dockerfile b/Dockerfile index 3a5ac8150..02728cb63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM centos:latest # Build dependency RUN yum update -y &&\ - yum install -y clang cmake gcc-c++ make ncurses-devel &&\ + yum install -y epel-release &&\ + yum install -y clang cmake3 gcc-c++ make ncurses-devel &&\ yum clean all # Test dependency @@ -12,7 +13,7 @@ ADD . /src WORKDIR /src # Build fish -RUN cmake . &&\ +RUN cmake3 . &&\ make &&\ make install diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 000000000..3d0d61d65 --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,69 @@ +# This is a very basic `make` wrapper around the CMake build toolchain. +# +# Supported arguments: +# PREFIX: sets the installation prefix +# GENERATOR: explicitly specifies the CMake generator to use + +CMAKE ?= cmake + +GENERATOR ?= $(shell (which ninja > /dev/null 2> /dev/null && echo Ninja) || \ + echo 'Unix Makefiles') +prefix ?= /usr/local +PREFIX ?= $(prefix) + +ifeq ($(GENERATOR), Ninja) +BUILDFILE = build.ninja +else +BUILDFILE = Makefile +endif + + +# If CMake has generated an in-tree Makefile, use that instead (issue #6264) +MAKE_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) +ifeq ($(shell test -f $(MAKE_DIR)/Makefile && echo 1), 1) + +all: + @+$(MAKE) -f $(MAKE_DIR)/Makefile $(MAKECMDGOALS) --no-print-directory +%: + @+$(MAKE) -f $(MAKE_DIR)/Makefile $(MAKECMDGOALS) --no-print-directory + +else + +all: .begin build/fish + +PHONY: .begin +.begin: + @which $(CMAKE) > /dev/null 2> /dev/null || \ + (echo 'Please install CMake and then re-run the `make` command!' 1>&2 && false) + +build/fish: build/$(BUILDFILE) + $(CMAKE) --build build + +build/$(BUILDFILE): build + cd build; $(CMAKE) .. -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -G "$(GENERATOR)" \ + -DCMAKE_INSTALL_PREFIX="$(PREFIX)" -DCMAKE_EXPORT_COMPILE_COMMANDS=1 + +build: + mkdir -p build + +.PHONY: clean +clean: + rm -rf build + +.PHONY: test +test: build/fish + $(CMAKE) --build build --target test + +.PHONY: install +install: build/fish + $(CMAKE) --build build --target install + +.PHONY: run +run: build/fish + ./build/fish || true + +.PHONY: exec +exec: build/fish + exec ./build/fish + +endif # CMake in-tree build check diff --git a/README.md b/README.md index 8c9918a0f..6830a8e0f 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ Once installed, run `fish` from your current shell to try fish out! Running fish requires: * curses or ncurses (preinstalled on most \*nix systems) -* some common \*nix system utilities (currently `mktemp` and `seq`), in addition to the basic POSIX utilities +* some common \*nix system utilities (currently `mktemp`), in addition to the basic POSIX utilities (`cat`, `cut`, `dirname`, `ls`, `mkdir`, `mkfifo`, `rm`, `sort`, `tee`, `tr`, `uname` and `sed` at least, but the full coreutils plus find, sed and awk is preferred) * gettext (library and `gettext` command), if compiled with translation support The following optional features also have specific requirements: @@ -76,8 +76,7 @@ The following optional features also have specific requirements: `backports.lzma` module for Python 2.7 * the `fish_config` web configuration tool requires Python (2.7+ or 3.3 +) and a web browser * system clipboard integration (with the default Ctrl-V and Ctrl-X bindings) require either the - `xsel` or `pbcopy`/`pbpaste` utilities -* full completions for `yarn` and `bower` require the `jq` utility + `xsel`, `xclip`, `wl-copy`/`wl-paste` or `pbcopy`/`pbpaste` utilities * full completions for `yarn` and `npm` require the `all-the-package-names` NPM module ### Switching to fish @@ -86,7 +85,7 @@ If you wish to use fish as your default shell, use the following command: chsh -s /usr/local/bin/fish -`chsh` will prompt you for your password and change your default shell. (Substitute `/usr/local/bin/fish` with whatever path fish was installed to, if it differs.) +`chsh` will prompt you for your password and change your default shell. (Substitute `/usr/local/bin/fish` with whatever path fish was installed to, if it differs.) Log out, then log in again for the changes to take effect. Use the following command if fish isn't already added to `/etc/shells` to permit fish to be your login shell: @@ -106,10 +105,12 @@ Compiling fish requires: * PCRE2 (headers and libraries) - a copy is included with fish * gettext (headers and libraries) - optional, for translation support -Doxygen (1.8.7 or later) is also optionally required to build the documentation from a cloned git repository. +Sphinx is also optionally required to build the documentation from a cloned git repository. ### Building from source (all platforms) - Makefile generator +To install into `/usr/local`, run: + ```bash mkdir build; cd build cmake .. @@ -117,6 +118,8 @@ make sudo make install ``` +The install directory can be changed using the `-DCMAKE_INSTALL_PREFIX` parameter for `cmake`. + ### Building from source (macOS) - Xcode ```bash @@ -124,7 +127,15 @@ mkdir build; cd build cmake .. -G Xcode ``` -An Xcode project will now be available in the `build` subdirectory. +An Xcode project will now be available in the `build` subdirectory. You can open it with Xcode, +or run the following to build and install in `/usr/local`: + +```bash +xcodebuild +xcodebuild -scheme install +``` + +The install directory can be changed using the `-DCMAKE_INSTALL_PREFIX` parameter for `cmake`. ### Help, it didn't build! @@ -144,6 +155,6 @@ See the [Guide for Developers](CONTRIBUTING.md). ## Contact Us -Questions, comments, rants and raves can be posted to the official fish mailing list at or join us on our [gitter.im channel](https://gitter.im/fish-shell/fish-shell) or IRC channel [#fish at irc.oftc.net](https://webchat.oftc.net/?channels=fish). Or use the [fish tag on Stackoverflow](https://stackoverflow.com/questions/tagged/fish) for questions related to fish script and the [fish tag on Superuser](https://superuser.com/questions/tagged/fish) for all other questions (e.g., customizing colors, changing key bindings). +Questions, comments, rants and raves can be posted to the official fish mailing list at or join us on our [gitter.im channel](https://gitter.im/fish-shell/fish-shell). Or use the [fish tag on Stackoverflow](https://stackoverflow.com/questions/tagged/fish) for questions related to fish script and the [fish tag on Superuser](https://superuser.com/questions/tagged/fish) for all other questions (e.g., customizing colors, changing key bindings). Found a bug? Have an awesome idea? Please [open an issue](https://github.com/fish-shell/fish-shell/issues/new). diff --git a/benchmarks/benchmarks/aliases.fish b/benchmarks/benchmarks/aliases.fish new file mode 100644 index 000000000..e6a366685 --- /dev/null +++ b/benchmarks/benchmarks/aliases.fish @@ -0,0 +1,1092 @@ +function alias --description 'Creates a function wrapping a command' + set -l options 'h/help' 's/save' + argparse -n alias --max-args=2 $options -- $argv + or return + + if set -q _flag_help + __fish_print_help alias + return 0 + end + + set -l name + set -l body + set -l prefix + set -l first_word + set -l wrapped_cmd + + if not set -q argv[1] + # Print the known aliases. + for func in (functions -n) + set -l output (functions $func | string match -r -- "^function .* --description 'alias (.*)'") + if set -q output[2] + set output (string replace -r -- '^'$func'[= ]' '' $output[2]) + echo alias $func (string escape -- $output[1]) + end + end + return 0 + else if not set -q argv[2] + # Alias definition of the form "name=value". + set -l tmp (string split -m 1 "=" -- $argv) "" + set name $tmp[1] + set body $tmp[2] + else + # Alias definition of the form "name value". + set name $argv[1] + set body $argv[2] + end + + # sanity check + if test -z "$name" + printf ( _ "%s: Name cannot be empty\n") alias + return 1 + else if test -z "$body" + printf ( _ "%s: Body cannot be empty\n") alias + return 1 + end + + # Extract the first command from the body. + printf '%s\n' $body | read -lt first_word body + + # Prevent the alias from immediately running into an infinite recursion if + # $body starts with the same command as $name. + if test $first_word = $name + if contains $name (builtin --names) + set prefix builtin + else + set prefix command + end + end + set -l cmd_string (string escape -- "alias $argv") + set wrapped_cmd (string join ' ' -- $first_word $body | string escape) + echo "function $name --wraps $wrapped_cmd --description $cmd_string; $prefix $first_word $body \$argv; end" | source + if set -q _flag_save + funcsave $name + end + #echo "function $name --wraps $wrapped_cmd --description $cmd_string; $prefix $first_word $body \$argv; end" +end + +alias alias0='something --arg0' +alias alias1='something --arg1' +alias alias2='something --arg2' +alias alias3='something --arg3' +alias alias4='something --arg4' +alias alias5='something --arg5' +alias alias6='something --arg6' +alias alias7='something --arg7' +alias alias8='something --arg8' +alias alias9='something --arg9' +alias alias10='something --arg10' +alias alias11='something --arg11' +alias alias12='something --arg12' +alias alias13='something --arg13' +alias alias14='something --arg14' +alias alias15='something --arg15' +alias alias16='something --arg16' +alias alias17='something --arg17' +alias alias18='something --arg18' +alias alias19='something --arg19' +alias alias20='something --arg20' +alias alias21='something --arg21' +alias alias22='something --arg22' +alias alias23='something --arg23' +alias alias24='something --arg24' +alias alias25='something --arg25' +alias alias26='something --arg26' +alias alias27='something --arg27' +alias alias28='something --arg28' +alias alias29='something --arg29' +alias alias30='something --arg30' +alias alias31='something --arg31' +alias alias32='something --arg32' +alias alias33='something --arg33' +alias alias34='something --arg34' +alias alias35='something --arg35' +alias alias36='something --arg36' +alias alias37='something --arg37' +alias alias38='something --arg38' +alias alias39='something --arg39' +alias alias40='something --arg40' +alias alias41='something --arg41' +alias alias42='something --arg42' +alias alias43='something --arg43' +alias alias44='something --arg44' +alias alias45='something --arg45' +alias alias46='something --arg46' +alias alias47='something --arg47' +alias alias48='something --arg48' +alias alias49='something --arg49' +alias alias50='something --arg50' +alias alias51='something --arg51' +alias alias52='something --arg52' +alias alias53='something --arg53' +alias alias54='something --arg54' +alias alias55='something --arg55' +alias alias56='something --arg56' +alias alias57='something --arg57' +alias alias58='something --arg58' +alias alias59='something --arg59' +alias alias60='something --arg60' +alias alias61='something --arg61' +alias alias62='something --arg62' +alias alias63='something --arg63' +alias alias64='something --arg64' +alias alias65='something --arg65' +alias alias66='something --arg66' +alias alias67='something --arg67' +alias alias68='something --arg68' +alias alias69='something --arg69' +alias alias70='something --arg70' +alias alias71='something --arg71' +alias alias72='something --arg72' +alias alias73='something --arg73' +alias alias74='something --arg74' +alias alias75='something --arg75' +alias alias76='something --arg76' +alias alias77='something --arg77' +alias alias78='something --arg78' +alias alias79='something --arg79' +alias alias80='something --arg80' +alias alias81='something --arg81' +alias alias82='something --arg82' +alias alias83='something --arg83' +alias alias84='something --arg84' +alias alias85='something --arg85' +alias alias86='something --arg86' +alias alias87='something --arg87' +alias alias88='something --arg88' +alias alias89='something --arg89' +alias alias90='something --arg90' +alias alias91='something --arg91' +alias alias92='something --arg92' +alias alias93='something --arg93' +alias alias94='something --arg94' +alias alias95='something --arg95' +alias alias96='something --arg96' +alias alias97='something --arg97' +alias alias98='something --arg98' +alias alias99='something --arg99' +alias alias100='something --arg100' +alias alias101='something --arg101' +alias alias102='something --arg102' +alias alias103='something --arg103' +alias alias104='something --arg104' +alias alias105='something --arg105' +alias alias106='something --arg106' +alias alias107='something --arg107' +alias alias108='something --arg108' +alias alias109='something --arg109' +alias alias110='something --arg110' +alias alias111='something --arg111' +alias alias112='something --arg112' +alias alias113='something --arg113' +alias alias114='something --arg114' +alias alias115='something --arg115' +alias alias116='something --arg116' +alias alias117='something --arg117' +alias alias118='something --arg118' +alias alias119='something --arg119' +alias alias120='something --arg120' +alias alias121='something --arg121' +alias alias122='something --arg122' +alias alias123='something --arg123' +alias alias124='something --arg124' +alias alias125='something --arg125' +alias alias126='something --arg126' +alias alias127='something --arg127' +alias alias128='something --arg128' +alias alias129='something --arg129' +alias alias130='something --arg130' +alias alias131='something --arg131' +alias alias132='something --arg132' +alias alias133='something --arg133' +alias alias134='something --arg134' +alias alias135='something --arg135' +alias alias136='something --arg136' +alias alias137='something --arg137' +alias alias138='something --arg138' +alias alias139='something --arg139' +alias alias140='something --arg140' +alias alias141='something --arg141' +alias alias142='something --arg142' +alias alias143='something --arg143' +alias alias144='something --arg144' +alias alias145='something --arg145' +alias alias146='something --arg146' +alias alias147='something --arg147' +alias alias148='something --arg148' +alias alias149='something --arg149' +alias alias150='something --arg150' +alias alias151='something --arg151' +alias alias152='something --arg152' +alias alias153='something --arg153' +alias alias154='something --arg154' +alias alias155='something --arg155' +alias alias156='something --arg156' +alias alias157='something --arg157' +alias alias158='something --arg158' +alias alias159='something --arg159' +alias alias160='something --arg160' +alias alias161='something --arg161' +alias alias162='something --arg162' +alias alias163='something --arg163' +alias alias164='something --arg164' +alias alias165='something --arg165' +alias alias166='something --arg166' +alias alias167='something --arg167' +alias alias168='something --arg168' +alias alias169='something --arg169' +alias alias170='something --arg170' +alias alias171='something --arg171' +alias alias172='something --arg172' +alias alias173='something --arg173' +alias alias174='something --arg174' +alias alias175='something --arg175' +alias alias176='something --arg176' +alias alias177='something --arg177' +alias alias178='something --arg178' +alias alias179='something --arg179' +alias alias180='something --arg180' +alias alias181='something --arg181' +alias alias182='something --arg182' +alias alias183='something --arg183' +alias alias184='something --arg184' +alias alias185='something --arg185' +alias alias186='something --arg186' +alias alias187='something --arg187' +alias alias188='something --arg188' +alias alias189='something --arg189' +alias alias190='something --arg190' +alias alias191='something --arg191' +alias alias192='something --arg192' +alias alias193='something --arg193' +alias alias194='something --arg194' +alias alias195='something --arg195' +alias alias196='something --arg196' +alias alias197='something --arg197' +alias alias198='something --arg198' +alias alias199='something --arg199' +alias alias200='something --arg200' +alias alias201='something --arg201' +alias alias202='something --arg202' +alias alias203='something --arg203' +alias alias204='something --arg204' +alias alias205='something --arg205' +alias alias206='something --arg206' +alias alias207='something --arg207' +alias alias208='something --arg208' +alias alias209='something --arg209' +alias alias210='something --arg210' +alias alias211='something --arg211' +alias alias212='something --arg212' +alias alias213='something --arg213' +alias alias214='something --arg214' +alias alias215='something --arg215' +alias alias216='something --arg216' +alias alias217='something --arg217' +alias alias218='something --arg218' +alias alias219='something --arg219' +alias alias220='something --arg220' +alias alias221='something --arg221' +alias alias222='something --arg222' +alias alias223='something --arg223' +alias alias224='something --arg224' +alias alias225='something --arg225' +alias alias226='something --arg226' +alias alias227='something --arg227' +alias alias228='something --arg228' +alias alias229='something --arg229' +alias alias230='something --arg230' +alias alias231='something --arg231' +alias alias232='something --arg232' +alias alias233='something --arg233' +alias alias234='something --arg234' +alias alias235='something --arg235' +alias alias236='something --arg236' +alias alias237='something --arg237' +alias alias238='something --arg238' +alias alias239='something --arg239' +alias alias240='something --arg240' +alias alias241='something --arg241' +alias alias242='something --arg242' +alias alias243='something --arg243' +alias alias244='something --arg244' +alias alias245='something --arg245' +alias alias246='something --arg246' +alias alias247='something --arg247' +alias alias248='something --arg248' +alias alias249='something --arg249' +alias alias250='something --arg250' +alias alias251='something --arg251' +alias alias252='something --arg252' +alias alias253='something --arg253' +alias alias254='something --arg254' +alias alias255='something --arg255' +alias alias256='something --arg256' +alias alias257='something --arg257' +alias alias258='something --arg258' +alias alias259='something --arg259' +alias alias260='something --arg260' +alias alias261='something --arg261' +alias alias262='something --arg262' +alias alias263='something --arg263' +alias alias264='something --arg264' +alias alias265='something --arg265' +alias alias266='something --arg266' +alias alias267='something --arg267' +alias alias268='something --arg268' +alias alias269='something --arg269' +alias alias270='something --arg270' +alias alias271='something --arg271' +alias alias272='something --arg272' +alias alias273='something --arg273' +alias alias274='something --arg274' +alias alias275='something --arg275' +alias alias276='something --arg276' +alias alias277='something --arg277' +alias alias278='something --arg278' +alias alias279='something --arg279' +alias alias280='something --arg280' +alias alias281='something --arg281' +alias alias282='something --arg282' +alias alias283='something --arg283' +alias alias284='something --arg284' +alias alias285='something --arg285' +alias alias286='something --arg286' +alias alias287='something --arg287' +alias alias288='something --arg288' +alias alias289='something --arg289' +alias alias290='something --arg290' +alias alias291='something --arg291' +alias alias292='something --arg292' +alias alias293='something --arg293' +alias alias294='something --arg294' +alias alias295='something --arg295' +alias alias296='something --arg296' +alias alias297='something --arg297' +alias alias298='something --arg298' +alias alias299='something --arg299' +alias alias300='something --arg300' +alias alias301='something --arg301' +alias alias302='something --arg302' +alias alias303='something --arg303' +alias alias304='something --arg304' +alias alias305='something --arg305' +alias alias306='something --arg306' +alias alias307='something --arg307' +alias alias308='something --arg308' +alias alias309='something --arg309' +alias alias310='something --arg310' +alias alias311='something --arg311' +alias alias312='something --arg312' +alias alias313='something --arg313' +alias alias314='something --arg314' +alias alias315='something --arg315' +alias alias316='something --arg316' +alias alias317='something --arg317' +alias alias318='something --arg318' +alias alias319='something --arg319' +alias alias320='something --arg320' +alias alias321='something --arg321' +alias alias322='something --arg322' +alias alias323='something --arg323' +alias alias324='something --arg324' +alias alias325='something --arg325' +alias alias326='something --arg326' +alias alias327='something --arg327' +alias alias328='something --arg328' +alias alias329='something --arg329' +alias alias330='something --arg330' +alias alias331='something --arg331' +alias alias332='something --arg332' +alias alias333='something --arg333' +alias alias334='something --arg334' +alias alias335='something --arg335' +alias alias336='something --arg336' +alias alias337='something --arg337' +alias alias338='something --arg338' +alias alias339='something --arg339' +alias alias340='something --arg340' +alias alias341='something --arg341' +alias alias342='something --arg342' +alias alias343='something --arg343' +alias alias344='something --arg344' +alias alias345='something --arg345' +alias alias346='something --arg346' +alias alias347='something --arg347' +alias alias348='something --arg348' +alias alias349='something --arg349' +alias alias350='something --arg350' +alias alias351='something --arg351' +alias alias352='something --arg352' +alias alias353='something --arg353' +alias alias354='something --arg354' +alias alias355='something --arg355' +alias alias356='something --arg356' +alias alias357='something --arg357' +alias alias358='something --arg358' +alias alias359='something --arg359' +alias alias360='something --arg360' +alias alias361='something --arg361' +alias alias362='something --arg362' +alias alias363='something --arg363' +alias alias364='something --arg364' +alias alias365='something --arg365' +alias alias366='something --arg366' +alias alias367='something --arg367' +alias alias368='something --arg368' +alias alias369='something --arg369' +alias alias370='something --arg370' +alias alias371='something --arg371' +alias alias372='something --arg372' +alias alias373='something --arg373' +alias alias374='something --arg374' +alias alias375='something --arg375' +alias alias376='something --arg376' +alias alias377='something --arg377' +alias alias378='something --arg378' +alias alias379='something --arg379' +alias alias380='something --arg380' +alias alias381='something --arg381' +alias alias382='something --arg382' +alias alias383='something --arg383' +alias alias384='something --arg384' +alias alias385='something --arg385' +alias alias386='something --arg386' +alias alias387='something --arg387' +alias alias388='something --arg388' +alias alias389='something --arg389' +alias alias390='something --arg390' +alias alias391='something --arg391' +alias alias392='something --arg392' +alias alias393='something --arg393' +alias alias394='something --arg394' +alias alias395='something --arg395' +alias alias396='something --arg396' +alias alias397='something --arg397' +alias alias398='something --arg398' +alias alias399='something --arg399' +alias alias400='something --arg400' +alias alias401='something --arg401' +alias alias402='something --arg402' +alias alias403='something --arg403' +alias alias404='something --arg404' +alias alias405='something --arg405' +alias alias406='something --arg406' +alias alias407='something --arg407' +alias alias408='something --arg408' +alias alias409='something --arg409' +alias alias410='something --arg410' +alias alias411='something --arg411' +alias alias412='something --arg412' +alias alias413='something --arg413' +alias alias414='something --arg414' +alias alias415='something --arg415' +alias alias416='something --arg416' +alias alias417='something --arg417' +alias alias418='something --arg418' +alias alias419='something --arg419' +alias alias420='something --arg420' +alias alias421='something --arg421' +alias alias422='something --arg422' +alias alias423='something --arg423' +alias alias424='something --arg424' +alias alias425='something --arg425' +alias alias426='something --arg426' +alias alias427='something --arg427' +alias alias428='something --arg428' +alias alias429='something --arg429' +alias alias430='something --arg430' +alias alias431='something --arg431' +alias alias432='something --arg432' +alias alias433='something --arg433' +alias alias434='something --arg434' +alias alias435='something --arg435' +alias alias436='something --arg436' +alias alias437='something --arg437' +alias alias438='something --arg438' +alias alias439='something --arg439' +alias alias440='something --arg440' +alias alias441='something --arg441' +alias alias442='something --arg442' +alias alias443='something --arg443' +alias alias444='something --arg444' +alias alias445='something --arg445' +alias alias446='something --arg446' +alias alias447='something --arg447' +alias alias448='something --arg448' +alias alias449='something --arg449' +alias alias450='something --arg450' +alias alias451='something --arg451' +alias alias452='something --arg452' +alias alias453='something --arg453' +alias alias454='something --arg454' +alias alias455='something --arg455' +alias alias456='something --arg456' +alias alias457='something --arg457' +alias alias458='something --arg458' +alias alias459='something --arg459' +alias alias460='something --arg460' +alias alias461='something --arg461' +alias alias462='something --arg462' +alias alias463='something --arg463' +alias alias464='something --arg464' +alias alias465='something --arg465' +alias alias466='something --arg466' +alias alias467='something --arg467' +alias alias468='something --arg468' +alias alias469='something --arg469' +alias alias470='something --arg470' +alias alias471='something --arg471' +alias alias472='something --arg472' +alias alias473='something --arg473' +alias alias474='something --arg474' +alias alias475='something --arg475' +alias alias476='something --arg476' +alias alias477='something --arg477' +alias alias478='something --arg478' +alias alias479='something --arg479' +alias alias480='something --arg480' +alias alias481='something --arg481' +alias alias482='something --arg482' +alias alias483='something --arg483' +alias alias484='something --arg484' +alias alias485='something --arg485' +alias alias486='something --arg486' +alias alias487='something --arg487' +alias alias488='something --arg488' +alias alias489='something --arg489' +alias alias490='something --arg490' +alias alias491='something --arg491' +alias alias492='something --arg492' +alias alias493='something --arg493' +alias alias494='something --arg494' +alias alias495='something --arg495' +alias alias496='something --arg496' +alias alias497='something --arg497' +alias alias498='something --arg498' +alias alias499='something --arg499' +alias alias500='something --arg500' +alias alias501='something --arg501' +alias alias502='something --arg502' +alias alias503='something --arg503' +alias alias504='something --arg504' +alias alias505='something --arg505' +alias alias506='something --arg506' +alias alias507='something --arg507' +alias alias508='something --arg508' +alias alias509='something --arg509' +alias alias510='something --arg510' +alias alias511='something --arg511' +alias alias512='something --arg512' +alias alias513='something --arg513' +alias alias514='something --arg514' +alias alias515='something --arg515' +alias alias516='something --arg516' +alias alias517='something --arg517' +alias alias518='something --arg518' +alias alias519='something --arg519' +alias alias520='something --arg520' +alias alias521='something --arg521' +alias alias522='something --arg522' +alias alias523='something --arg523' +alias alias524='something --arg524' +alias alias525='something --arg525' +alias alias526='something --arg526' +alias alias527='something --arg527' +alias alias528='something --arg528' +alias alias529='something --arg529' +alias alias530='something --arg530' +alias alias531='something --arg531' +alias alias532='something --arg532' +alias alias533='something --arg533' +alias alias534='something --arg534' +alias alias535='something --arg535' +alias alias536='something --arg536' +alias alias537='something --arg537' +alias alias538='something --arg538' +alias alias539='something --arg539' +alias alias540='something --arg540' +alias alias541='something --arg541' +alias alias542='something --arg542' +alias alias543='something --arg543' +alias alias544='something --arg544' +alias alias545='something --arg545' +alias alias546='something --arg546' +alias alias547='something --arg547' +alias alias548='something --arg548' +alias alias549='something --arg549' +alias alias550='something --arg550' +alias alias551='something --arg551' +alias alias552='something --arg552' +alias alias553='something --arg553' +alias alias554='something --arg554' +alias alias555='something --arg555' +alias alias556='something --arg556' +alias alias557='something --arg557' +alias alias558='something --arg558' +alias alias559='something --arg559' +alias alias560='something --arg560' +alias alias561='something --arg561' +alias alias562='something --arg562' +alias alias563='something --arg563' +alias alias564='something --arg564' +alias alias565='something --arg565' +alias alias566='something --arg566' +alias alias567='something --arg567' +alias alias568='something --arg568' +alias alias569='something --arg569' +alias alias570='something --arg570' +alias alias571='something --arg571' +alias alias572='something --arg572' +alias alias573='something --arg573' +alias alias574='something --arg574' +alias alias575='something --arg575' +alias alias576='something --arg576' +alias alias577='something --arg577' +alias alias578='something --arg578' +alias alias579='something --arg579' +alias alias580='something --arg580' +alias alias581='something --arg581' +alias alias582='something --arg582' +alias alias583='something --arg583' +alias alias584='something --arg584' +alias alias585='something --arg585' +alias alias586='something --arg586' +alias alias587='something --arg587' +alias alias588='something --arg588' +alias alias589='something --arg589' +alias alias590='something --arg590' +alias alias591='something --arg591' +alias alias592='something --arg592' +alias alias593='something --arg593' +alias alias594='something --arg594' +alias alias595='something --arg595' +alias alias596='something --arg596' +alias alias597='something --arg597' +alias alias598='something --arg598' +alias alias599='something --arg599' +alias alias600='something --arg600' +alias alias601='something --arg601' +alias alias602='something --arg602' +alias alias603='something --arg603' +alias alias604='something --arg604' +alias alias605='something --arg605' +alias alias606='something --arg606' +alias alias607='something --arg607' +alias alias608='something --arg608' +alias alias609='something --arg609' +alias alias610='something --arg610' +alias alias611='something --arg611' +alias alias612='something --arg612' +alias alias613='something --arg613' +alias alias614='something --arg614' +alias alias615='something --arg615' +alias alias616='something --arg616' +alias alias617='something --arg617' +alias alias618='something --arg618' +alias alias619='something --arg619' +alias alias620='something --arg620' +alias alias621='something --arg621' +alias alias622='something --arg622' +alias alias623='something --arg623' +alias alias624='something --arg624' +alias alias625='something --arg625' +alias alias626='something --arg626' +alias alias627='something --arg627' +alias alias628='something --arg628' +alias alias629='something --arg629' +alias alias630='something --arg630' +alias alias631='something --arg631' +alias alias632='something --arg632' +alias alias633='something --arg633' +alias alias634='something --arg634' +alias alias635='something --arg635' +alias alias636='something --arg636' +alias alias637='something --arg637' +alias alias638='something --arg638' +alias alias639='something --arg639' +alias alias640='something --arg640' +alias alias641='something --arg641' +alias alias642='something --arg642' +alias alias643='something --arg643' +alias alias644='something --arg644' +alias alias645='something --arg645' +alias alias646='something --arg646' +alias alias647='something --arg647' +alias alias648='something --arg648' +alias alias649='something --arg649' +alias alias650='something --arg650' +alias alias651='something --arg651' +alias alias652='something --arg652' +alias alias653='something --arg653' +alias alias654='something --arg654' +alias alias655='something --arg655' +alias alias656='something --arg656' +alias alias657='something --arg657' +alias alias658='something --arg658' +alias alias659='something --arg659' +alias alias660='something --arg660' +alias alias661='something --arg661' +alias alias662='something --arg662' +alias alias663='something --arg663' +alias alias664='something --arg664' +alias alias665='something --arg665' +alias alias666='something --arg666' +alias alias667='something --arg667' +alias alias668='something --arg668' +alias alias669='something --arg669' +alias alias670='something --arg670' +alias alias671='something --arg671' +alias alias672='something --arg672' +alias alias673='something --arg673' +alias alias674='something --arg674' +alias alias675='something --arg675' +alias alias676='something --arg676' +alias alias677='something --arg677' +alias alias678='something --arg678' +alias alias679='something --arg679' +alias alias680='something --arg680' +alias alias681='something --arg681' +alias alias682='something --arg682' +alias alias683='something --arg683' +alias alias684='something --arg684' +alias alias685='something --arg685' +alias alias686='something --arg686' +alias alias687='something --arg687' +alias alias688='something --arg688' +alias alias689='something --arg689' +alias alias690='something --arg690' +alias alias691='something --arg691' +alias alias692='something --arg692' +alias alias693='something --arg693' +alias alias694='something --arg694' +alias alias695='something --arg695' +alias alias696='something --arg696' +alias alias697='something --arg697' +alias alias698='something --arg698' +alias alias699='something --arg699' +alias alias700='something --arg700' +alias alias701='something --arg701' +alias alias702='something --arg702' +alias alias703='something --arg703' +alias alias704='something --arg704' +alias alias705='something --arg705' +alias alias706='something --arg706' +alias alias707='something --arg707' +alias alias708='something --arg708' +alias alias709='something --arg709' +alias alias710='something --arg710' +alias alias711='something --arg711' +alias alias712='something --arg712' +alias alias713='something --arg713' +alias alias714='something --arg714' +alias alias715='something --arg715' +alias alias716='something --arg716' +alias alias717='something --arg717' +alias alias718='something --arg718' +alias alias719='something --arg719' +alias alias720='something --arg720' +alias alias721='something --arg721' +alias alias722='something --arg722' +alias alias723='something --arg723' +alias alias724='something --arg724' +alias alias725='something --arg725' +alias alias726='something --arg726' +alias alias727='something --arg727' +alias alias728='something --arg728' +alias alias729='something --arg729' +alias alias730='something --arg730' +alias alias731='something --arg731' +alias alias732='something --arg732' +alias alias733='something --arg733' +alias alias734='something --arg734' +alias alias735='something --arg735' +alias alias736='something --arg736' +alias alias737='something --arg737' +alias alias738='something --arg738' +alias alias739='something --arg739' +alias alias740='something --arg740' +alias alias741='something --arg741' +alias alias742='something --arg742' +alias alias743='something --arg743' +alias alias744='something --arg744' +alias alias745='something --arg745' +alias alias746='something --arg746' +alias alias747='something --arg747' +alias alias748='something --arg748' +alias alias749='something --arg749' +alias alias750='something --arg750' +alias alias751='something --arg751' +alias alias752='something --arg752' +alias alias753='something --arg753' +alias alias754='something --arg754' +alias alias755='something --arg755' +alias alias756='something --arg756' +alias alias757='something --arg757' +alias alias758='something --arg758' +alias alias759='something --arg759' +alias alias760='something --arg760' +alias alias761='something --arg761' +alias alias762='something --arg762' +alias alias763='something --arg763' +alias alias764='something --arg764' +alias alias765='something --arg765' +alias alias766='something --arg766' +alias alias767='something --arg767' +alias alias768='something --arg768' +alias alias769='something --arg769' +alias alias770='something --arg770' +alias alias771='something --arg771' +alias alias772='something --arg772' +alias alias773='something --arg773' +alias alias774='something --arg774' +alias alias775='something --arg775' +alias alias776='something --arg776' +alias alias777='something --arg777' +alias alias778='something --arg778' +alias alias779='something --arg779' +alias alias780='something --arg780' +alias alias781='something --arg781' +alias alias782='something --arg782' +alias alias783='something --arg783' +alias alias784='something --arg784' +alias alias785='something --arg785' +alias alias786='something --arg786' +alias alias787='something --arg787' +alias alias788='something --arg788' +alias alias789='something --arg789' +alias alias790='something --arg790' +alias alias791='something --arg791' +alias alias792='something --arg792' +alias alias793='something --arg793' +alias alias794='something --arg794' +alias alias795='something --arg795' +alias alias796='something --arg796' +alias alias797='something --arg797' +alias alias798='something --arg798' +alias alias799='something --arg799' +alias alias800='something --arg800' +alias alias801='something --arg801' +alias alias802='something --arg802' +alias alias803='something --arg803' +alias alias804='something --arg804' +alias alias805='something --arg805' +alias alias806='something --arg806' +alias alias807='something --arg807' +alias alias808='something --arg808' +alias alias809='something --arg809' +alias alias810='something --arg810' +alias alias811='something --arg811' +alias alias812='something --arg812' +alias alias813='something --arg813' +alias alias814='something --arg814' +alias alias815='something --arg815' +alias alias816='something --arg816' +alias alias817='something --arg817' +alias alias818='something --arg818' +alias alias819='something --arg819' +alias alias820='something --arg820' +alias alias821='something --arg821' +alias alias822='something --arg822' +alias alias823='something --arg823' +alias alias824='something --arg824' +alias alias825='something --arg825' +alias alias826='something --arg826' +alias alias827='something --arg827' +alias alias828='something --arg828' +alias alias829='something --arg829' +alias alias830='something --arg830' +alias alias831='something --arg831' +alias alias832='something --arg832' +alias alias833='something --arg833' +alias alias834='something --arg834' +alias alias835='something --arg835' +alias alias836='something --arg836' +alias alias837='something --arg837' +alias alias838='something --arg838' +alias alias839='something --arg839' +alias alias840='something --arg840' +alias alias841='something --arg841' +alias alias842='something --arg842' +alias alias843='something --arg843' +alias alias844='something --arg844' +alias alias845='something --arg845' +alias alias846='something --arg846' +alias alias847='something --arg847' +alias alias848='something --arg848' +alias alias849='something --arg849' +alias alias850='something --arg850' +alias alias851='something --arg851' +alias alias852='something --arg852' +alias alias853='something --arg853' +alias alias854='something --arg854' +alias alias855='something --arg855' +alias alias856='something --arg856' +alias alias857='something --arg857' +alias alias858='something --arg858' +alias alias859='something --arg859' +alias alias860='something --arg860' +alias alias861='something --arg861' +alias alias862='something --arg862' +alias alias863='something --arg863' +alias alias864='something --arg864' +alias alias865='something --arg865' +alias alias866='something --arg866' +alias alias867='something --arg867' +alias alias868='something --arg868' +alias alias869='something --arg869' +alias alias870='something --arg870' +alias alias871='something --arg871' +alias alias872='something --arg872' +alias alias873='something --arg873' +alias alias874='something --arg874' +alias alias875='something --arg875' +alias alias876='something --arg876' +alias alias877='something --arg877' +alias alias878='something --arg878' +alias alias879='something --arg879' +alias alias880='something --arg880' +alias alias881='something --arg881' +alias alias882='something --arg882' +alias alias883='something --arg883' +alias alias884='something --arg884' +alias alias885='something --arg885' +alias alias886='something --arg886' +alias alias887='something --arg887' +alias alias888='something --arg888' +alias alias889='something --arg889' +alias alias890='something --arg890' +alias alias891='something --arg891' +alias alias892='something --arg892' +alias alias893='something --arg893' +alias alias894='something --arg894' +alias alias895='something --arg895' +alias alias896='something --arg896' +alias alias897='something --arg897' +alias alias898='something --arg898' +alias alias899='something --arg899' +alias alias900='something --arg900' +alias alias901='something --arg901' +alias alias902='something --arg902' +alias alias903='something --arg903' +alias alias904='something --arg904' +alias alias905='something --arg905' +alias alias906='something --arg906' +alias alias907='something --arg907' +alias alias908='something --arg908' +alias alias909='something --arg909' +alias alias910='something --arg910' +alias alias911='something --arg911' +alias alias912='something --arg912' +alias alias913='something --arg913' +alias alias914='something --arg914' +alias alias915='something --arg915' +alias alias916='something --arg916' +alias alias917='something --arg917' +alias alias918='something --arg918' +alias alias919='something --arg919' +alias alias920='something --arg920' +alias alias921='something --arg921' +alias alias922='something --arg922' +alias alias923='something --arg923' +alias alias924='something --arg924' +alias alias925='something --arg925' +alias alias926='something --arg926' +alias alias927='something --arg927' +alias alias928='something --arg928' +alias alias929='something --arg929' +alias alias930='something --arg930' +alias alias931='something --arg931' +alias alias932='something --arg932' +alias alias933='something --arg933' +alias alias934='something --arg934' +alias alias935='something --arg935' +alias alias936='something --arg936' +alias alias937='something --arg937' +alias alias938='something --arg938' +alias alias939='something --arg939' +alias alias940='something --arg940' +alias alias941='something --arg941' +alias alias942='something --arg942' +alias alias943='something --arg943' +alias alias944='something --arg944' +alias alias945='something --arg945' +alias alias946='something --arg946' +alias alias947='something --arg947' +alias alias948='something --arg948' +alias alias949='something --arg949' +alias alias950='something --arg950' +alias alias951='something --arg951' +alias alias952='something --arg952' +alias alias953='something --arg953' +alias alias954='something --arg954' +alias alias955='something --arg955' +alias alias956='something --arg956' +alias alias957='something --arg957' +alias alias958='something --arg958' +alias alias959='something --arg959' +alias alias960='something --arg960' +alias alias961='something --arg961' +alias alias962='something --arg962' +alias alias963='something --arg963' +alias alias964='something --arg964' +alias alias965='something --arg965' +alias alias966='something --arg966' +alias alias967='something --arg967' +alias alias968='something --arg968' +alias alias969='something --arg969' +alias alias970='something --arg970' +alias alias971='something --arg971' +alias alias972='something --arg972' +alias alias973='something --arg973' +alias alias974='something --arg974' +alias alias975='something --arg975' +alias alias976='something --arg976' +alias alias977='something --arg977' +alias alias978='something --arg978' +alias alias979='something --arg979' +alias alias980='something --arg980' +alias alias981='something --arg981' +alias alias982='something --arg982' +alias alias983='something --arg983' +alias alias984='something --arg984' +alias alias985='something --arg985' +alias alias986='something --arg986' +alias alias987='something --arg987' +alias alias988='something --arg988' +alias alias989='something --arg989' +alias alias990='something --arg990' +alias alias991='something --arg991' +alias alias992='something --arg992' +alias alias993='something --arg993' +alias alias994='something --arg994' +alias alias995='something --arg995' +alias alias996='something --arg996' +alias alias997='something --arg997' +alias alias998='something --arg998' +alias alias999='something --arg999' +alias alias1000='something --arg1000' +alias alias1001='something --arg1001' +alias alias1002='something --arg1002' +alias alias1003='something --arg1003' +alias alias1004='something --arg1004' +alias alias1005='something --arg1005' +alias alias1006='something --arg1006' +alias alias1007='something --arg1007' +alias alias1008='something --arg1008' +alias alias1009='something --arg1009' +alias alias1010='something --arg1010' +alias alias1011='something --arg1011' +alias alias1012='something --arg1012' +alias alias1013='something --arg1013' +alias alias1014='something --arg1014' +alias alias1015='something --arg1015' +alias alias1016='something --arg1016' +alias alias1017='something --arg1017' +alias alias1018='something --arg1018' +alias alias1019='something --arg1019' +alias alias1020='something --arg1020' +alias alias1021='something --arg1021' +alias alias1022='something --arg1022' +alias alias1023='something --arg1023' + diff --git a/benchmarks/benchmarks/external_cmds.fish b/benchmarks/benchmarks/external_cmds.fish new file mode 100644 index 000000000..34b3cab40 --- /dev/null +++ b/benchmarks/benchmarks/external_cmds.fish @@ -0,0 +1,4 @@ +for i in (seq 2000) + command true +end + diff --git a/benchmarks/benchmarks/seq_echo.fish b/benchmarks/benchmarks/seq_echo.fish new file mode 100644 index 000000000..a309bfbea --- /dev/null +++ b/benchmarks/benchmarks/seq_echo.fish @@ -0,0 +1,3 @@ +for i in (seq 1000) + echo $i +end diff --git a/benchmarks/driver.sh b/benchmarks/driver.sh new file mode 100755 index 000000000..dcb0e5988 --- /dev/null +++ b/benchmarks/driver.sh @@ -0,0 +1,17 @@ +#!/bin/sh + +if [ "$#" -ne 1 ]; then + echo "Usage: driver.sh /path/to/fish" +fi + +FISH_PATH=$1 +BENCHMARKS_DIR=$(dirname "$0")/benchmarks + +for benchmark in "$BENCHMARKS_DIR"/*; do + basename "$benchmark" + ${FISH_PATH} --print-rusage-self "$benchmark" > /dev/null + if command -v hyperfine >/dev/null 2>&1; then + hyperfine "${FISH_PATH} $benchmark > /dev/null" + fi +done + diff --git a/build_tools/diff_profiles.fish b/build_tools/diff_profiles.fish index d96af3063..c58c3ced4 100644 --- a/build_tools/diff_profiles.fish +++ b/build_tools/diff_profiles.fish @@ -10,37 +10,37 @@ set profile2 (cat $argv[2]) set line_no 0 while set next_line_no (math $line_no + 1) && set -q profile1[$next_line_no] && set -q profile2[$next_line_no] - set line_no $next_line_no + set line_no $next_line_no - set line1 $profile1[$line_no] - set line2 $profile2[$line_no] + set line1 $profile1[$line_no] + set line2 $profile2[$line_no] - if not string match -qr '^\d+\t\d+' $line1 - echo $line1 - continue - end + if not string match -qr '^\d+\t\d+' $line1 + echo $line1 + continue + end - set results1 (string match -r '^(\d+)\t(\d+)\s+(.*)' $line1) - set results2 (string match -r '^(\d+)\t(\d+)\s+(.*)' $line2) + set results1 (string match -r '^(\d+)\t(\d+)\s+(.*)' $line1) + set results2 (string match -r '^(\d+)\t(\d+)\s+(.*)' $line2) - # times from both files - set time1 $results1[2..3] - set time2 $results2[2..3] + # times from both files + set time1 $results1[2..3] + set time2 $results2[2..3] - # leftover from both files - set remainder1 $results1[4] - set remainder2 $results2[4] + # leftover from both files + set remainder1 $results1[4] + set remainder2 $results2[4] - if not string match -q -- $remainder1 $remainder2 - echo Mismatch on line $line_no: - echo - $remainder1 - echo + $remainder2 - exit 1 - end + if not string match -q -- $remainder1 $remainder2 + echo Mismatch on line $line_no: + echo - $remainder1 + echo + $remainder2 + exit 1 + end - set -l diff - set diff[1] (math $time1[1] - $time2[1]) - set diff[2] (math $time1[2] - $time2[2]) + set -l diff + set diff[1] (math $time1[1] - $time2[1]) + set diff[2] (math $time1[2] - $time2[2]) - echo $diff[1] $diff[2] $remainder1 + echo $diff[1] $diff[2] $remainder1 end diff --git a/build_tools/find_globals.fish b/build_tools/find_globals.fish index f7b819be1..5aaa1f4e9 100755 --- a/build_tools/find_globals.fish +++ b/build_tools/find_globals.fish @@ -4,6 +4,22 @@ # for object files in this directory. # This was written for macOS nm. +set FISH_SOURCE_DIR $argv[1] +if not test -d "$FISH_SOURCE_DIR" + echo "FISH_SOURCE_DIR not given" + exit 1 +end + +set -g whitelist \ + # unclear what this is \ + l_constinit \ + # hacks to work around missing ncurses strings on mac \ + sitm_esc ritm_esc dim_esc \ + + +# In our nm regex, we are interested in data (dD) and bss (bB) segments. +set -g nm_regex '^([^ ]+) ([dDbB])' + set total_globals 0 set boring_files \ fish_key_reader.cpp.o \ @@ -11,31 +27,86 @@ set boring_files \ fish_indent.cpp.o \ -set whitelist \ - termsize_lock termsize \ - initial_pid initial_fg_process_group \ - _debug_level \ - sitm_esc ritm_esc dim_esc \ - iothread_init()::inited \ - s_result_queue s_main_thread_request_queue s_read_pipe s_write_pipe \ - s_main_thread_performer_lock s_main_thread_performer_cond s_main_thread_request_q_lock \ - locked_consumed_job_ids \ - env_initialized \ +# return if we should ignore the given symbol name +function should_ignore + set symname $argv[1] + string match -q '*guard variable for*' $symname + and return 0 + contains $symname $whitelist + and return 0 + return 1 +end +# echo a cleaned-up symbol name, e.g. replacing template gunk +function cleanup_syname + set symname $argv[1] + set symname (string replace --all 'std::__1::basic_string, std::__1::allocator >' 'wcstring' $symname) + set symname (string replace --all 'std::__1::vector >' 'wcstring_list_t' $symname) + echo $symname +end + +# Output the declaration for a symbol name in a given file. +function print_decl + set -l objfile $argv[1] + set -l symname $argv[2] + set -l varname (string split '::' $symname)[-1] + set -l srcfile (basename $objfile .o) + set -l srcpath $FISH_SOURCE_DIR/src/$srcfile + + # A leading underscore indicates a global, strip it. + set varname (string replace --regex '^_' '' $varname) + + if not test -f "$srcpath" + echo "Could not find $srcpath" + end + # Guess the variable as the first usage of the name. + # Strip everything after the first =. + set vardecl (egrep -m 1 " $varname\\b" $srcpath | cut -f -1 -d '=' | string trim) + if test -z "$vardecl" + echo "COULD_NOT_FIND_$varname" + return 1 + end + echo $vardecl + return 0 +end + +# Return if a variable declaration is "thread safe". +function decl_is_threadsafe + set -l vardecl $argv[1] + # decls starting with 'const ' or containing ' const ' are assumed safe. + string match -q --regex '(^|\\*| )const ' $vardecl + and return 0 + + # Ordinary types indicating a safe variable. + set safes relaxed_atomic_bool_t std::mutex std::condition_variable std::once_flag sig_atomic_t + for safe in $safes + string match -q "*$safe*" $vardecl + and return 0 + end + + # Template types indicate a safe variable. + set safes owning_lock mainthread_t std::atomic relaxed_atomic_t latch_t + for safe in $safes + string match -q "*$safe<*" $vardecl + and return 0 + end +end for file in ./**.o set filename (basename $file) # Skip boring files. contains $filename $boring_files and continue - for line in (nm -p -P -U $file) - # Look in data (dD) and bss (bB) segments. - set matches (string match --regex '^([^ ]+) ([dDbB])' -- $line) + for line in (nm -p -P -U $file | egrep $nm_regex) + set matches (string match --regex $nm_regex -- $line) or continue - set symname (echo $matches[2] | c++filt) - contains $symname $whitelist + set symname (cleanup_syname (echo $matches[2] | c++filt)) + should_ignore $symname and continue - echo $filename $symname $matches[3] + set vardecl (print_decl $filename $symname) + decl_is_threadsafe $vardecl + and continue + echo $filename $symname $matches[3] ":" $vardecl set total_globals (math $total_globals + 1) end end diff --git a/build_tools/fish_xgettext.fish b/build_tools/fish_xgettext.fish index eeeddaf32..f772d0f75 100755 --- a/build_tools/fish_xgettext.fish +++ b/build_tools/fish_xgettext.fish @@ -1,5 +1,8 @@ #!/usr/bin/env fish # +# Tool to generate messages.pot +# Extended to replace the old Makefile rule which did not port easily to CMak + # This script was originally motivated to work around a quirk (or bug depending on your viewpoint) # of the xgettext command. See https://lists.gnu.org/archive/html/bug-gettext/2014-11/msg00006.html. # However, it turns out that even if that quirk did not exist we would still need something like @@ -8,14 +11,19 @@ # all the strings we want translated. So we extract and normalize all such strings into a format # that `xgettext` can handle. +# Start with the C++ source +xgettext -k -k_ -kN_ -LC++ --no-wrap -o messages.pot src/*.cpp src/*.h + # This regex handles descriptions for `complete` and `function` statements. These messages are not # particularly important to translate. Hence the "implicit" label. -set implicit_regex '(?:^| +)(?:complete|function) .*? (?:-d|--description) (([\'"]).+?(?/tmp/fish/implicit/$f.tmp ^/dev/null while read description @@ -40,3 +48,8 @@ for f in share/config.fish share/completions/*.fish share/functions/*.fish end /tmp/fish/implicit/$f rm /tmp/fish/implicit/$f.tmp end + +xgettext -j -k -kN_ -LShell --from-code=UTF-8 -cDescription --no-wrap -o messages.pot /tmp/fish/explicit/share/*/*.fish +xgettext -j -k -kN_ -LShell --from-code=UTF-8 -cDescription --no-wrap -o messages.pot /tmp/fish/implicit/share/*/*.fish + +rm -r /tmp/fish diff --git a/build_tools/git_version_gen.sh b/build_tools/git_version_gen.sh index 86132888e..49a15c108 100755 --- a/build_tools/git_version_gen.sh +++ b/build_tools/git_version_gen.sh @@ -6,8 +6,8 @@ set -e -# Find the fish git directory as two levels up from script directory. -GIT_DIR="$( cd "$( dirname $( dirname "$0" ) )" && pwd )" +# Find the fish directory as two levels up from script directory. +FISH_BASE_DIR="$( cd "$( dirname "$( dirname "$0" )" )" && pwd )" DEF_VER=unknown # First see if there is a version file (included in release tarballs), @@ -15,7 +15,7 @@ DEF_VER=unknown if test -f version then VN=$(cat version) || VN="$DEF_VER" -elif ! VN=$(git -C "$GIT_DIR" describe --always --dirty 2>/dev/null); then +elif ! VN=$(git -C "$FISH_BASE_DIR" describe --always --dirty 2>/dev/null); then VN="$DEF_VER" fi @@ -34,7 +34,7 @@ if test -r $FBVF then VC=$(grep -v '^#' $FBVF | tr -d '"' | sed -e 's/^FISH_BUILD_VERSION=//') else - VC=unset + VC="unset" fi # Maybe output the FBVF diff --git a/build_tools/list_committers_since.fish b/build_tools/list_committers_since.fish index e5c51c423..83d57bbb9 100755 --- a/build_tools/list_committers_since.fish +++ b/build_tools/list_committers_since.fish @@ -20,8 +20,8 @@ set committers_from_tag (mktemp) # Unicode collation tables mean that this is fraught with danger; for example, the # "“" character will not case-fold in UTF-8 locales. sort suggests using the C locale! -git log "$TAG" --format="%aN" --reverse | sort -u > $committers_to_tag -git log "$TAG".. --format="%aN" --reverse | sort -u > $committers_from_tag +git log "$TAG" --format="%aN" --reverse | sort -u >$committers_to_tag +git log "$TAG".. --format="%aN" --reverse | sort -u >$committers_from_tag echo New committers: echo (comm -13 $committers_to_tag $committers_from_tag)',' diff --git a/build_tools/littlecheck.py b/build_tools/littlecheck.py new file mode 100755 index 000000000..106478f0f --- /dev/null +++ b/build_tools/littlecheck.py @@ -0,0 +1,485 @@ +#!/usr/bin/env python + +""" Command line test driver. """ + +from __future__ import unicode_literals +from __future__ import print_function + +import argparse +import io +import re +import shlex +import subprocess +import sys + +# A regex showing how to run the file. +RUN_RE = re.compile(r"\s*#\s*RUN:\s+(.*)\n") + +# A regex capturing lines that should be checked against stdout. +CHECK_STDOUT_RE = re.compile(r"\s*#\s*CHECK:\s+(.*)\n") + +# A regex capturing lines that should be checked against stderr. +CHECK_STDERR_RE = re.compile(r"\s*#\s*CHECKERR:\s+(.*)\n") + + +class Config(object): + def __init__(self): + # Whether to have verbose output. + self.verbose = False + # Whether output gets ANSI colorization. + self.colorize = False + # Whether to show which file was tested. + self.progress = False + # How many after lines to print + self.after = 5 + + def colors(self): + """ Return a dictionary mapping color names to ANSI escapes """ + + def ansic(n): + return "\033[%dm" % n if self.colorize else "" + + return { + "RESET": ansic(0), + "BOLD": ansic(1), + "NORMAL": ansic(39), + "BLACK": ansic(30), + "RED": ansic(31), + "GREEN": ansic(32), + "YELLOW": ansic(33), + "BLUE": ansic(34), + "MAGENTA": ansic(35), + "CYAN": ansic(36), + "LIGHTGRAY": ansic(37), + "DARKGRAY": ansic(90), + "LIGHTRED": ansic(91), + "LIGHTGREEN": ansic(92), + "LIGHTYELLOW": ansic(93), + "LIGHTBLUE": ansic(94), + "LIGHTMAGENTA": ansic(95), + "LIGHTCYAN": ansic(96), + "WHITE": ansic(97), + } + + +def output(*args): + print("".join(args) + "\n") + + +class CheckerError(Exception): + """Exception subclass for check line parsing. + + Attributes: + line: the Line object on which the exception occurred. + """ + + def __init__(self, message, line=None): + super(CheckerError, self).__init__(message) + self.line = line + + +class Line(object): + """ A line that remembers where it came from. """ + + def __init__(self, text, number, file): + self.text = text + self.number = number + self.file = file + + def subline(self, text): + """ Return a substring of our line with the given text, preserving number and file. """ + return Line(text, self.number, self.file) + + @staticmethod + def readfile(file, name): + return [Line(text, idx + 1, name) for idx, text in enumerate(file)] + + def is_empty_space(self): + return not self.text or self.text.isspace() + + +class RunCmd(object): + """ A command to run on a given Checker. + + Attributes: + args: Unexpanded shell command as a string. + """ + + def __init__(self, args, line): + self.args = args + self.line = line + + @staticmethod + def parse(line): + if not shlex.split(line.text): + raise CheckerError("Invalid RUN command", line) + return RunCmd(line.text, line) + + +class TestFailure(object): + def __init__(self, line, check, testrun, after = None): + self.line = line + self.check = check + self.testrun = testrun + self.error_annotation_line = None + # The output that comes *after* the failure. + self.after = after + + def message(self): + afterlines = self.testrun.config.after + fields = self.testrun.config.colors() + fields["name"] = self.testrun.name + fields["subbed_command"] = self.testrun.subbed_command + if self.line: + fields.update( + { + "output_file": self.line.file, + "output_lineno": self.line.number, + "output_line": self.line.text.rstrip("\n"), + } + ) + if self.check: + fields.update( + { + "input_file": self.check.line.file, + "input_lineno": self.check.line.number, + "input_line": self.check.line.text, + "check_type": self.check.type, + } + ) + filemsg = "" if self.testrun.config.progress else " in {name}" + fmtstrs = ["{RED}Failure{RESET}" + filemsg + ":", ""] + if self.line and self.check: + fmtstrs += [ + " The {check_type} on line {input_lineno} wants:", + " {BOLD}{input_line}{RESET}", + "", + " which failed to match line {output_file}:{output_lineno}:", + " {BOLD}{output_line}{RESET}", + "", + ] + + elif self.check: + fmtstrs += [ + " The {check_type} on line {input_lineno} wants:", + " {BOLD}{input_line}{RESET}", + "", + " but there was no remaining output to match.", + "", + ] + else: + fmtstrs += [ + " There were no remaining checks left to match {output_file}:{output_lineno}:", + " {BOLD}{output_line}{RESET}", + "", + ] + if self.error_annotation_line: + fields["error_annotation"] = self.error_annotation_line.text + fields["error_annotation_lineno"] = self.error_annotation_line.number + fmtstrs += [ + " additional output on stderr:{error_annotation_lineno}:", + " {BOLD}{error_annotation}{RESET}", + ] + if self.after: + fields["additional_output"] = " ".join(self.after[:afterlines]) + fmtstrs += [ + " additional output:", + " {BOLD}{additional_output}{RESET}", + ] + fmtstrs += [" when running command:", " {subbed_command}"] + return "\n".join(fmtstrs).format(**fields) + + def print_message(self): + """ Print our message to stdout. """ + print(self.message()) + + +def perform_substitution(input_str, subs): + """ Perform the substitutions described by subs to str + Return the substituted string. + """ + # Sort our substitutions into a list of tuples (key, value), descending by length. + # It needs to be descending because we need to try longer substitutions first. + subs_ordered = sorted(subs.items(), key=lambda s: len(s[0]), reverse=True) + + def subber(m): + # We get the entire sequence of characters. + # Replace just the prefix and return it. + text = m.group(1) + for key, replacement in subs_ordered: + if text.startswith(key): + return replacement + text[len(key) :] + # No substitution found, so we default to running it as-is, + # which will end up running it via $PATH. + return text + + return re.sub(r"%(%|[a-zA-Z0-9_-]+)", subber, input_str) + + +class TestRun(object): + def __init__(self, name, runcmd, checker, subs, config): + self.name = name + self.runcmd = runcmd + self.subbed_command = perform_substitution(runcmd.args, subs) + self.checker = checker + self.subs = subs + self.config = config + + def check(self, lines, checks): + # Reverse our lines and checks so we can pop off the end. + lineq = lines[::-1] + checkq = checks[::-1] + while lineq and checkq: + line = lineq[-1] + check = checkq[-1] + if check.regex.match(line.text): + # This line matched this checker, continue on. + lineq.pop() + checkq.pop() + elif line.is_empty_space(): + # Skip all whitespace input lines. + lineq.pop() + else: + # Failed to match. + lineq.pop() + # Add context, ignoring empty lines. + return TestFailure(line, check, self, after = [line.text for line in lineq[::-1] if not line.is_empty_space()]) + # Drain empties. + while lineq and lineq[-1].is_empty_space(): + lineq.pop() + # If there's still lines or checkers, we have a failure. + # Otherwise it's success. + if lineq: + return TestFailure(lineq[-1], None, self) + elif checkq: + return TestFailure(None, checkq[-1], self) + else: + return None + + def run(self): + """ Run the command. Return a TestFailure, or None. """ + + def split_by_newlines(s): + """ Decode a string and split it by newlines only, + retaining the newlines. + """ + return [s + "\n" for s in s.decode("utf-8").split("\n")] + + PIPE = subprocess.PIPE + if self.config.verbose: + print(self.subbed_command) + proc = subprocess.Popen( + self.subbed_command, + stdin=PIPE, + stdout=PIPE, + stderr=PIPE, + shell=True, + close_fds=True, # For Python 2.6 as shipped on RHEL 6 + ) + stdout, stderr = proc.communicate() + # HACK: This is quite cheesy: POSIX specifies that sh should return 127 for a missing command. + # Technically it's also possible to return it in other conditions. + # Practically, that's *probably* not going to happen. + status = proc.returncode + if status == 127: + raise CheckerError("Command could not be found: " + self.subbed_command) + + outlines = [ + Line(text, idx + 1, "stdout") + for idx, text in enumerate(split_by_newlines(stdout)) + ] + errlines = [ + Line(text, idx + 1, "stderr") + for idx, text in enumerate(split_by_newlines(stderr)) + ] + outfail = self.check(outlines, self.checker.outchecks) + errfail = self.check(errlines, self.checker.errchecks) + # It's possible that something going wrong on stdout resulted in new + # text being printed on stderr. If we have an outfailure, and either + # non-matching or unmatched stderr text, then annotate the outfail + # with it. + if outfail and errfail and errfail.line: + outfail.error_annotation_line = errfail.line + return outfail if outfail else errfail + + +class CheckCmd(object): + def __init__(self, line, checktype, regex): + self.line = line + self.type = checktype + self.regex = regex + + @staticmethod + def parse(line, checktype): + # type: (Line) -> CheckCmd + # Everything inside {{}} is a regular expression. + # Everything outside of it is a literal string. + # Split around {{...}}. Then every odd index will be a regex, and + # evens will be literals. + # Note that if {{...}} appears first we will get an empty string in + # the split array, so the {{...}} matches are always at odd indexes. + bracket_re = re.compile( + r""" + \{\{ # Two open brackets + (.*?) # Nongreedy capture + \}\} # Two close brackets + """, + re.VERBOSE, + ) + pieces = bracket_re.split(line.text) + even = True + re_strings = [] + for piece in pieces: + if even: + # piece is a literal string. + re_strings.append(re.escape(piece)) + else: + # piece is a regex (found inside {{...}}). + # Verify the regex can be compiled. + try: + re.compile(piece) + except re.error: + raise CheckerError("Invalid regular expression: '%s'" % piece, line) + re_strings.append(piece) + even = not even + # Enclose each piece in a non-capturing group. + # This ensures that lower-precedence operators don't trip up catenation. + # For example: {{b|c}}d would result in /b|cd/ which is different. + # Backreferences are assumed to match across the entire string. + re_strings = ["(?:%s)" % s for s in re_strings] + # Anchor at beginning and end (allowing arbitrary whitespace), and maybe + # a terminating newline. + # We need the anchors because Python's match() matches an arbitrary prefix, + # not the entire string. + re_strings = [r"^\s*"] + re_strings + [r"\s*\n?$"] + full_re = re.compile("".join(re_strings)) + return CheckCmd(line, checktype, full_re) + + +class Checker(object): + def __init__(self, name, lines): + self.name = name + # Helper to yield subline containing group1 from all matching lines. + def group1s(regex): + for line in lines: + m = regex.match(line.text) + if m: + yield line.subline(m.group(1)) + + # Find run commands. + self.runcmds = [RunCmd.parse(sl) for sl in group1s(RUN_RE)] + if not self.runcmds: + # If no RUN command has been given, fall back to the shebang. + if lines[0].text.startswith("#!"): + # Remove the "#!" at the beginning, and the newline at the end. + self.runcmds = [RunCmd(lines[0].text[2:-1] + " %s", lines[0])] + else: + raise CheckerError("No runlines ('# RUN') found") + + # Find check cmds. + self.outchecks = [ + CheckCmd.parse(sl, "CHECK") for sl in group1s(CHECK_STDOUT_RE) + ] + self.errchecks = [ + CheckCmd.parse(sl, "CHECKERR") for sl in group1s(CHECK_STDERR_RE) + ] + + +def check_file(input_file, name, subs, config, failure_handler): + """ Check a single file. Return a True on success, False on error. """ + success = True + lines = Line.readfile(input_file, name) + checker = Checker(name, lines) + for runcmd in checker.runcmds: + failure = TestRun(name, runcmd, checker, subs, config).run() + if failure: + failure_handler(failure) + success = False + return success + + +def check_path(path, subs, config, failure_handler): + with io.open(path, encoding="utf-8") as fd: + return check_file(fd, path, subs, config, failure_handler) + + +def parse_subs(subs): + """ Given a list of input substitutions like 'foo=bar', + return a dictionary like {foo:bar}, or exit if invalid. + """ + result = {} + for sub in subs: + try: + key, val = sub.split("=", 1) + if not key: + print("Invalid substitution %s: empty key" % sub) + sys.exit(1) + if not val: + print("Invalid substitution %s: empty value" % sub) + sys.exit(1) + result[key] = val + except ValueError: + print("Invalid substitution %s: equal sign not found" % sub) + sys.exit(1) + return result + + +def get_argparse(): + """ Return a littlecheck argument parser. """ + parser = argparse.ArgumentParser( + description="littlecheck: command line tool tester." + ) + parser.add_argument( + "-s", + "--substitute", + type=str, + help="Add a new substitution for RUN lines. Example: bash=/bin/bash", + action="append", + default=[], + ) + parser.add_argument( + "-p", + "--progress", + action='store_true', + dest='progress', + help="Show the files to be checked", + default=False, + ) + parser.add_argument("file", nargs="+", help="File to check") + parser.add_argument( + "-A", "--after", + type=int, + help="How many non-empty lines of output after a failure to print (default: 5)", + action="store", + default=5, + ) + return parser + + +def main(): + args = get_argparse().parse_args() + # Default substitution is %% -> % + def_subs = {"%": "%"} + def_subs.update(parse_subs(args.substitute)) + + success = True + config = Config() + config.colorize = sys.stdout.isatty() + config.progress = args.progress + fields = config.colors() + config.after = args.after + for path in args.file: + fields["path"] = path + if config.progress: + print("Testing file {path} ... ".format(**fields), end='') + subs = def_subs.copy() + subs["s"] = path + if not check_path(path, subs, config, TestFailure.print_message): + success = False + elif config.progress: + print("{GREEN}ok{RESET}".format(**fields)) + sys.exit(0 if success else 1) + + +if __name__ == "__main__": + main() diff --git a/build_tools/make_pkg.sh b/build_tools/make_pkg.sh index 44897afb6..71c8ee1ed 100755 --- a/build_tools/make_pkg.sh +++ b/build_tools/make_pkg.sh @@ -2,11 +2,11 @@ # Script to produce an OS X installer .pkg and .app(.zip) -VERSION=`git describe --always --dirty 2>/dev/null` +VERSION=$(git describe --always --dirty 2>/dev/null) if test -z "$VERSION" ; then echo "Could not get version from git" if test -f version; then - VERSION=`cat version` + VERSION=$(cat version) fi fi @@ -17,19 +17,19 @@ set -x #Exit on error set -e -PKGDIR=`mktemp -d` +PKGDIR=$(mktemp -d) SRC_DIR=$PWD OUTPUT_PATH=${FISH_ARTEFACT_PATH:-~/fish_built} -mkdir -p $PKGDIR/build $PKGDIR/root $PKGDIR/intermediates $PKGDIR/dst -( cd "$PKGDIR/build" && cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo "$SRC_DIR" && make -j 4 && env DESTDIR=$PKGDIR/root/ make install ) -pkgbuild --scripts build_tools/osx_package_scripts --root $PKGDIR/root/ --identifier 'com.ridiculousfish.fish-shell-pkg' --version "$VERSION" $PKGDIR/intermediates/fish.pkg +mkdir -p "$PKGDIR/build" "$PKGDIR/root" "$PKGDIR/intermediates" "$PKGDIR/dst" +{ cd "$PKGDIR/build" && cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo "$SRC_DIR" && make -j 4 && env DESTDIR="$PKGDIR/root/" make install; } +pkgbuild --scripts build_tools/osx_package_scripts --root "$PKGDIR/root/" --identifier 'com.ridiculousfish.fish-shell-pkg' --version "$VERSION" "$PKGDIR/intermediates/fish.pkg" -productbuild --package-path $PKGDIR/intermediates --distribution build_tools/osx_distribution.xml --resources build_tools/osx_package_resources/ $OUTPUT_PATH/fish-$VERSION.pkg +productbuild --package-path "$PKGDIR/intermediates" --distribution build_tools/osx_distribution.xml --resources build_tools/osx_package_resources/ "$OUTPUT_PATH/fish-$VERSION.pkg" # Make the app -( cd "$PKGDIR/build" && make fish_macapp && zip -r "$OUTPUT_PATH/fish-$VERSION.app.zip" fish.app ) +{ cd "$PKGDIR/build" && make fish_macapp && zip -r "$OUTPUT_PATH/fish-$VERSION.app.zip" fish.app; } -rm -r $PKGDIR +rm -r "$PKGDIR" diff --git a/build_tools/make_tarball.sh b/build_tools/make_tarball.sh index 89789a348..ffe12a930 100755 --- a/build_tools/make_tarball.sh +++ b/build_tools/make_tarball.sh @@ -2,7 +2,7 @@ # Script to generate a tarball # We use git to output a tree. But we also want to build the user documentation -# and put that in the tarball, so that nobody needs to have doxygen installed +# and put that in the tarball, so that nobody needs to have sphinx installed # to build it. # Outputs to $FISH_ARTEFACT_PATH or ~/fish_built by default @@ -32,7 +32,7 @@ fi wd="$PWD" # Get the version from git-describe -VERSION=`git describe --dirty 2>/dev/null` +VERSION=$(git describe --dirty 2>/dev/null) # The name of the prefix, which is the directory that you get when you untar prefix="fish-$VERSION" @@ -48,10 +48,10 @@ rm -f "$path" "$path".gz git archive --format=tar --prefix="$prefix"/ HEAD > "$path" # tarball out the documentation, generate a version file -PREFIX_TMPDIR=`mktemp -d` -cd $PREFIX_TMPDIR -echo $VERSION > version -cmake $wd +PREFIX_TMPDIR=$(mktemp -d) +cd "$PREFIX_TMPDIR" +echo "$VERSION" > version +cmake "$wd" make doc TAR_APPEND="$TAR --append --file=$path --mtime=now --owner=0 --group=0 \ diff --git a/build_tools/style.fish b/build_tools/style.fish index 71b113d6c..4075bc9ef 100755 --- a/build_tools/style.fish +++ b/build_tools/style.fish @@ -5,7 +5,8 @@ # set git_clang_format no set c_files -set f_files +set fish_files +set python_files set all no if test "$argv[1]" = "--all" @@ -22,15 +23,13 @@ if test $all = yes set files (git status --porcelain --short --untracked-files=all | sed -e 's/^ *[^ ]* *//') if set -q files[1] echo - echo You have uncommited changes. Cowardly refusing to restyle the entire code base. + echo You have uncommitted changes. Cowardly refusing to restyle the entire code base. echo exit 1 end set c_files src/*.h src/*.cpp src/*.c - # For now we don't restyle all fish scripts other than completion scripts. That's because people - # really like to vertically align the elements of the `complete` command and fish_indent - # currently does not honor that whitespace. - set f_files (printf '%s\n' share/***.fish | grep -v /completions/) + set fish_files (printf '%s\n' share/***.fish) + set python_files **.py else # We haven't been asked to reformat all the source. If there are uncommitted changes reformat # those using `git clang-format`. Else reformat the files in the most recent commit. @@ -49,17 +48,20 @@ else test -f $file; and set c_files $c_files $file end # Extract just the fish files. - set f_files (string match -r '^.*\.fish$' -- $files) + set fish_files (string match -r '^.*\.fish$' -- $files) + set python_files (string match -r '^.*\.py$' -- $files) end +set -l red (set_color red) +set -l green (set_color green) +set -l blue (set_color blue) +set -l normal (set_color normal) + # Run the C++ reformatter if we have any C++ files. if set -q c_files[1] if test $git_clang_format = yes if type -q git-clang-format - echo - echo ======================================== - echo Running git-clang-format - echo ======================================== + echo === Running "$red"git-clang-format"$normal" git add $c_files git-clang-format else @@ -68,10 +70,7 @@ if set -q c_files[1] echo end else if type -q clang-format - echo - echo ======================================== - echo Running clang-format - echo ======================================== + echo === Running "$red"clang-format"$normal" for file in $c_files cp $file $file.new # preserves mode bits clang-format $file >$file.new @@ -90,23 +89,22 @@ if set -q c_files[1] end # Run the fish reformatter if we have any fish files. -if set -q f_files[1] +if set -q fish_files[1] if not type -q fish_indent make fish_indent set PATH . $PATH end - echo - echo ======================================== - echo Running fish_indent - echo ======================================== - for file in $f_files - cp $file $file.new # preserves mode bits - fish_indent <$file >$file.new - if cmp --quiet $file $file.new - rm $file.new - else - echo $file was NOT correctly formatted - mv $file.new $file - end + echo === Running "$green"fish_indent"$normal" + fish_indent -w -- $fish_files +end + +if set -q python_files[1] + if not type -q black + echo + echo Please install "`black`" to style python + echo + else + echo === Running "$blue"black"$normal" + black $python_files end end diff --git a/cmake/Benchmark.cmake b/cmake/Benchmark.cmake new file mode 100644 index 000000000..840d8e27a --- /dev/null +++ b/cmake/Benchmark.cmake @@ -0,0 +1,6 @@ +# Support for benchmarking fish. + +ADD_CUSTOM_TARGET(benchmark + COMMAND ${CMAKE_SOURCE_DIR}/benchmarks/driver.sh $ + USES_TERMINAL +) diff --git a/cmake/ConfigureChecks.cmake b/cmake/ConfigureChecks.cmake index 2b8cd2a4a..be696da71 100644 --- a/cmake/ConfigureChecks.cmake +++ b/cmake/ConfigureChecks.cmake @@ -4,6 +4,7 @@ # `wcstod_l` is a GNU-extension, sometimes hidden behind GNU-related defines. # This is the case for at least Cygwin and Newlib. LIST(APPEND CMAKE_REQUIRED_DEFINITIONS -D_GNU_SOURCE=1) + IF(APPLE) INCLUDE(CheckCXXCompilerFlag) CHECK_CXX_COMPILER_FLAG("-Werror=unguarded-availability" REQUIRES_UNGUARDED_AVAILABILITY) @@ -61,6 +62,7 @@ CHECK_CXX_SYMBOL_EXISTS(futimens sys/stat.h HAVE_FUTIMENS) CHECK_CXX_SYMBOL_EXISTS(futimes sys/time.h HAVE_FUTIMES) CHECK_CXX_SYMBOL_EXISTS(getifaddrs ifaddrs.h HAVE_GETIFADDRS) CHECK_CXX_SYMBOL_EXISTS(getpwent pwd.h HAVE_GETPWENT) +CHECK_CXX_SYMBOL_EXISTS(getrusage sys/resource.h HAVE_GETRUSAGE) CHECK_CXX_SYMBOL_EXISTS(gettext libintl.h HAVE_GETTEXT) CHECK_CXX_SYMBOL_EXISTS(killpg "sys/types.h;signal.h" HAVE_KILLPG) CHECK_CXX_SYMBOL_EXISTS(lrand48_r stdlib.h HAVE_LRAND48_R) @@ -127,9 +129,6 @@ IF(STRUCT_WINSIZE GREATER -1 AND HAVE_TIOCGWINSZ EQUAL 1) ENDIF() CMAKE_POP_CHECK_STATE() -IF(EXISTS "/proc/self/stat") - SET(HAVE__PROC_SELF_STAT 1) -ENDIF() CHECK_TYPE_SIZE("wchar_t[8]" WCHAR_T_BITS LANGUAGE CXX) # Solaris, NetBSD and X/Open-conforming systems have a fixed-args tparm @@ -178,6 +177,15 @@ int main () { ENDIF() CMAKE_POP_CHECK_STATE() +# Work around the fact that cmake does not propagate the language standard flag into +# the CHECK_CXX_SOURCE_COMPILES function. See CMake issue #16456. +# Ensure we do this after the FIND_PACKAGE calls which use C, and will error on a C++ +# standards flag. +# Also see https://github.com/fish-shell/fish-shell/issues/5865 +IF(NOT POLICY CMP0067) + LIST(APPEND CMAKE_REQUIRED_FLAGS "${CMAKE_CXX${CMAKE_CXX_STANDARD}_EXTENSION_COMPILE_OPTION}") +ENDIF() + CHECK_CXX_SOURCE_COMPILES(" #include @@ -189,3 +197,15 @@ int main () { ) FIND_PROGRAM(SED sed) + +CHECK_CXX_SOURCE_COMPILES(" +#include +#include +std::atomic x; +int main() { + return x; +}" +LIBATOMIC_NOT_NEEDED) +IF (NOT LIBATOMIC_NOT_NEEDED) + SET(ATOMIC_LIBRARY "atomic") +ENDIF() diff --git a/cmake/Docs.cmake b/cmake/Docs.cmake index 1f6c30ca8..eedb757e0 100644 --- a/cmake/Docs.cmake +++ b/cmake/Docs.cmake @@ -13,23 +13,33 @@ SET(SPHINX_CACHE_DIR "${SPHINX_ROOT_DIR}/doctrees") SET(SPHINX_HTML_DIR "${SPHINX_ROOT_DIR}/html") SET(SPHINX_MANPAGE_DIR "${SPHINX_ROOT_DIR}/man") +# sphinx-docs uses fish_indent for highlighting. +# Prepend the output dir of fish_indent to PATH. ADD_CUSTOM_TARGET(sphinx-docs - ${SPHINX_EXECUTABLE} + mkdir -p ${SPHINX_HTML_DIR}/_static/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${SPHINX_SRC_DIR}/_static/pygments.css ${SPHINX_HTML_DIR}/_static/ + COMMAND ${CMAKE_COMMAND} -E copy_if_different ${SPHINX_SRC_DIR}/_static/custom.css ${SPHINX_HTML_DIR}/_static/ + COMMAND env PATH="$:$$PATH" + ${SPHINX_EXECUTABLE} -q -b html -c "${SPHINX_SRC_DIR}" -d "${SPHINX_CACHE_DIR}" "${SPHINX_SRC_DIR}" "${SPHINX_HTML_DIR}" + DEPENDS sphinx_doc_src/fish_indent_lexer.py fish_indent COMMENT "Building HTML documentation with Sphinx") +# sphinx-manpages needs the fish_indent binary for the version number ADD_CUSTOM_TARGET(sphinx-manpages - ${SPHINX_EXECUTABLE} + env PATH="$:$$PATH" + ${SPHINX_EXECUTABLE} -q -b man -c "${SPHINX_SRC_DIR}" -d "${SPHINX_CACHE_DIR}" "${SPHINX_SRC_DIR}" # TODO: This only works if we only have section 1 manpages. "${SPHINX_MANPAGE_DIR}/man1" + DEPENDS fish_indent COMMENT "Building man pages with Sphinx") IF(SPHINX_EXECUTABLE) diff --git a/cmake/Install.cmake b/cmake/Install.cmake index be7d10b23..cc2e234cb 100644 --- a/cmake/Install.cmake +++ b/cmake/Install.cmake @@ -25,15 +25,15 @@ SET(configure_input DO NOT MANUALLY EDIT THIS FILE!") SET(extra_completionsdir - ${datadir}/fish/vendor_completions.d + /usr/local/share/fish/vendor_completions.d CACHE STRING "Path for extra completions") SET(extra_functionsdir - ${datadir}/fish/vendor_functions.d - CACHE STRING "Path for extra completions") + /usr/local/share/fish/vendor_functions.d + CACHE STRING "Path for extra functions") SET(extra_confdir - ${datadir}/fish/vendor_conf.d + /usr/local/share/fish/vendor_conf.d CACHE STRING "Path for extra configuration") # These are the man pages that go in system manpath; all manpages go in the fish-specific manpath. @@ -44,18 +44,18 @@ SET(MANUALS ${CMAKE_CURRENT_BINARY_DIR}/user_doc/man/man1/fish.1 # Determine which man page we don't want to install. # On OS X, don't install a man page for open, since we defeat fish's open # function on OS X. +# On other operating systems, don't install a realpath man page, as they almost all have a realpath +# command, while macOS does not. IF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") SET(CONDEMNED_PAGE "open.1") ELSE() - SET(CONDEMNED_PAGE "none") + SET(CONDEMNED_PAGE "realpath.1") ENDIF() # Define a function to help us create directories. FUNCTION(FISH_CREATE_DIRS) FOREACH(dir ${ARGV}) - IF(NOT EXISTS ${CMAKE_INSTALL_PREFIX}/${dir}) - INSTALL(DIRECTORY DESTINATION ${dir}) - ENDIF() + INSTALL(DIRECTORY DESTINATION ${dir}) ENDFOREACH(dir) ENDFUNCTION(FISH_CREATE_DIRS) @@ -113,13 +113,13 @@ INSTALL(FILES share/config.fish # -$v $(INSTALL) -m 755 -d $(DESTDIR)$(extra_completionsdir) # -$v $(INSTALL) -m 755 -d $(DESTDIR)$(extra_functionsdir) # -$v $(INSTALL) -m 755 -d $(DESTDIR)$(extra_confdir) -FISH_CREATE_DIRS(${rel_datadir}/pkgconfig) -# Don't try too hard to create these directories as they may be outside our writeable area -# https://github.com/Homebrew/homebrew-core/pull/2813 -FISH_TRY_CREATE_DIRS(${extra_completionsdir} ${extra_functionsdir} ${extra_confdir}) +# Create only the vendor directories inside the prefix (#5029 / #6508) +FISH_CREATE_DIRS(${rel_datadir}/fish/vendor_completions.d ${rel_datadir}/fish/vendor_functions.d + ${rel_datadir}/fish/vendor_conf.d) # @echo "Installing pkgconfig file" # $v $(INSTALL) -m 644 fish.pc $(DESTDIR)$(datadir)/pkgconfig +FISH_TRY_CREATE_DIRS(${rel_datadir}/pkgconfig) CONFIGURE_FILE(fish.pc.in fish.pc.noversion) ADD_CUSTOM_COMMAND(OUTPUT fish.pc @@ -216,9 +216,12 @@ IF(GETTEXT_FOUND) ENDFOREACH() ENDIF() +INSTALL(FILES fish.desktop DESTINATION ${rel_datadir}/applications) +INSTALL(FILES fish.png DESTINATION ${rel_datadir}/pixmaps) + # Group install targets into a InstallTargets folder SET_PROPERTY(TARGET build_fish_pc CHECK-FISH-BUILD-VERSION-FILE - test_invocation test_fishscript + test_fishscript test_prep tests_buildroot_target PROPERTY FOLDER cmake/InstallTargets) diff --git a/cmake/Tests.cmake b/cmake/Tests.cmake index cab0158e9..cc61bc837 100644 --- a/cmake/Tests.cmake +++ b/cmake/Tests.cmake @@ -26,32 +26,22 @@ IF(NOT FISH_IN_TREE_BUILD) ADD_DEPENDENCIES(fish_tests tests_dir) ENDIF() -# Create the 'test' target. -# Set a policy so CMake stops complaining about the name 'test'. -CMAKE_POLICY(PUSH) -IF(POLICY CMP0037) - CMAKE_POLICY(SET CMP0037 OLD) -ENDIF() -ADD_CUSTOM_TARGET(test) -CMAKE_POLICY(POP) - -ADD_CUSTOM_TARGET(test_low_level - COMMAND env XDG_DATA_HOME=test/data XDG_CONFIG_HOME=test/home ./fish_tests - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} - DEPENDS fish_tests - USES_TERMINAL) -ADD_DEPENDENCIES(test test_low_level tests_dir) +# Copy littlecheck.py +CONFIGURE_FILE(build_tools/littlecheck.py littlecheck.py COPYONLY) # Make the directory in which to run tests. # Also symlink fish to where the tests expect it to be. +# Lastly put fish_test_helper there too. ADD_CUSTOM_TARGET(tests_buildroot_target COMMAND ${CMAKE_COMMAND} -E make_directory ${TEST_INSTALL_DIR} COMMAND DESTDIR=${TEST_INSTALL_DIR} ${CMAKE_COMMAND} --build ${CMAKE_CURRENT_BINARY_DIR} --target install + COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_BINARY_DIR}/fish_test_helper + ${TEST_INSTALL_DIR}/${CMAKE_INSTALL_PREFIX}/bin COMMAND ${CMAKE_COMMAND} -E create_symlink ${TEST_INSTALL_DIR}/${CMAKE_INSTALL_PREFIX} ${TEST_ROOT_DIR} - DEPENDS fish) + DEPENDS fish fish_test_helper) IF(NOT FISH_IN_TREE_BUILD) # We need to symlink share/functions for the tests. @@ -65,67 +55,68 @@ ELSE() ADD_CUSTOM_TARGET(symlink_functions) ENDIF() -# # Prep the environment for running the unit tests. -# test-prep: show-DESTDIR show-LN_S show-FISH_VERSION -# $v rm -rf test -# $v $(MKDIR_P) test/data test/home test/temp -# ifdef DESTDIR -# $v $(LN_S) $(DESTDIR) test/root -# else -# $v $(MKDIR_P) test/root -# endif ADD_CUSTOM_TARGET(test_prep COMMAND ${CMAKE_COMMAND} -E remove_directory ${TEST_DIR}/data COMMAND ${CMAKE_COMMAND} -E remove_directory ${TEST_DIR}/home COMMAND ${CMAKE_COMMAND} -E remove_directory ${TEST_DIR}/temp COMMAND ${CMAKE_COMMAND} -E make_directory ${TEST_DIR}/data ${TEST_DIR}/home ${TEST_DIR}/temp - DEPENDS tests_buildroot_target + DEPENDS tests_buildroot_target tests_dir USES_TERMINAL) - -# test_high_level_test_deps = test_fishscript test_interactive test_invocation -# test_high_level: DESTDIR = $(PWD)/test/root/ -# test_high_level: prefix = . -# test_high_level: test-prep install-force test_fishscript test_interactive test_invocation -# .PHONY: test_high_level -# -# test_invocation: $(call filter_up_to,test_invocation,$(active_test_goals)) -# cd tests; ./invocation.sh -# .PHONY: test_invocation -ADD_CUSTOM_TARGET(test_invocation - COMMAND ./invocation.sh - WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/tests/ - DEPENDS test_prep test_low_level - USES_TERMINAL) - -# -# test_fishscript: $(call filter_up_to,test_fishscript,$(active_test_goals)) -# cd tests; ../test/root/bin/fish test.fish -# .PHONY: test_fishscript - -ADD_CUSTOM_TARGET(test_fishscript - COMMAND cd tests && ${TEST_ROOT_DIR}/bin/fish test.fish - DEPENDS test_prep test_invocation - USES_TERMINAL) -# -# test_interactive: $(call filter_up_to,test_interactive,$(active_test_goals)) -# cd tests; ../test/root/bin/fish interactive.fish -# .PHONY: test_interactive - -ADD_CUSTOM_TARGET(test_interactive - COMMAND cd tests && ${TEST_ROOT_DIR}/bin/fish interactive.fish - DEPENDS test_prep test_invocation test_fishscript +# Define our individual tests. +# Each test is conceptually independent. +# However when running all tests, we want to run them serially for sanity's sake. +# So define both a normal target, and a serial variant which enforces ordering. +FOREACH(TESTTYPE test serial_test) + ADD_CUSTOM_TARGET(${TESTTYPE}_low_level + COMMAND env XDG_DATA_HOME=test/data XDG_CONFIG_HOME=test/home ./fish_tests + WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} + DEPENDS fish_tests USES_TERMINAL) -ADD_CUSTOM_TARGET(test_high_level - DEPENDS test_invocation test_fishscript test_interactive) -ADD_DEPENDENCIES(test test_high_level) + ADD_CUSTOM_TARGET(${TESTTYPE}_fishscript + COMMAND cd tests && ${TEST_ROOT_DIR}/bin/fish test.fish + DEPENDS test_prep + USES_TERMINAL) + + ADD_CUSTOM_TARGET(${TESTTYPE}_interactive + COMMAND cd tests && ${TEST_ROOT_DIR}/bin/fish interactive.fish + DEPENDS test_prep + USES_TERMINAL) +ENDFOREACH(TESTTYPE) + +# Now add a dependency chain between the serial versions. +# This ensures they run in order. +ADD_DEPENDENCIES(serial_test_fishscript serial_test_low_level) +ADD_DEPENDENCIES(serial_test_interactive serial_test_fishscript) + + +ADD_CUSTOM_TARGET(serial_test_high_level + DEPENDS serial_test_interactive serial_test_fishscript) + +# Create the 'test' target. +# Set a policy so CMake stops complaining about the name 'test'. +CMAKE_POLICY(PUSH) + +IF(${CMAKE_VERSION} VERSION_LESS 3.11.0 AND POLICY CMP0037) + CMAKE_POLICY(SET CMP0037 OLD) +ENDIF() +ADD_CUSTOM_TARGET(test) +CMAKE_POLICY(POP) +ADD_DEPENDENCIES(test serial_test_high_level) # Group test targets into a TestTargets folder -SET_PROPERTY(TARGET test test_low_level test_high_level tests_dir - test_invocation test_fishscript test_prep +SET_PROPERTY(TARGET test tests_dir + test_low_level + test_fishscript + test_interactive + test_fishscript test_prep tests_buildroot_target + serial_test_high_level + serial_test_low_level + serial_test_fishscript + serial_test_interactive symlink_functions PROPERTY FOLDER cmake/TestTargets) diff --git a/config_cmake.h.in b/config_cmake.h.in index 8071546fd..471094269 100644 --- a/config_cmake.h.in +++ b/config_cmake.h.in @@ -31,6 +31,9 @@ /* Define to 1 if you have the `getpwent' function. */ #cmakedefine HAVE_GETPWENT 1 +/* Define to 1 if you have the 'getrusage' function. */ +#cmakedefine HAVE_GETRUSAGE 1 + /* Define to 1 if you have the `gettext' function. */ #cmakedefine HAVE_GETTEXT 1 @@ -124,8 +127,8 @@ /* Define to 1 if the _nl_msg_cat_cntr symbol is exported. */ #cmakedefine HAVE__NL_MSG_CAT_CNTR 1 -/* Define to 1 if you have the file `/proc/self/stat'. */ -#cmakedefine HAVE__PROC_SELF_STAT 1 +/* Define to 1 if std::make_unique is available. */ +#cmakedefine HAVE_STD__MAKE_UNIQUE 1 /* Define to 1 if the _sys_errs array is available. */ #cmakedefine HAVE__SYS__ERRS 1 @@ -142,7 +145,7 @@ /* Define to the full name of this package. */ #define PACKAGE_NAME "fish" -/* Define to 1 if tparm accepts a fixed amount of paramters. */ +/* Define to 1 if tparm accepts a fixed amount of parameters. */ #cmakedefine TPARM_SOLARIS_KLUDGE 1 /* Enable GNU extensions on systems that have them. */ @@ -165,14 +168,6 @@ #ifndef __warn_unused #define __warn_unused __attribute__ ((warn_unused_result)) #endif -#ifndef __sentinel -#define __sentinel __attribute__ ((sentinel)) -#endif -#ifndef __packed -#define __packed __attribute__ ((packed)) -#endif #else #define __warn_unused -#define __sentinel -#define __packed #endif diff --git a/debian/control b/debian/control index 941edc38b..04c5589b2 100644 --- a/debian/control +++ b/debian/control @@ -1,13 +1,13 @@ Source: fish Section: shells -Priority: extra +Priority: optional Maintainer: ridiculous_fish Uploaders: David Adam Build-Depends: debhelper (>= 9.0.0), libncurses5-dev, cmake3 (>= 3.2.0) | cmake (>= 3.2.0), gettext, # Test dependencies - locales-all + locales-all, python3 # When libpcre2-dev is available on all supported Debian versions, add a dependency on that. -Standards-Version: 3.9.4 +Standards-Version: 4.1.5 Homepage: https://fishshell.com/ Vcs-Git: https://github.com/fish-shell/fish-shell.git Vcs-Browser: https://github.com/fish-shell/fish-shell @@ -24,7 +24,7 @@ Description: friendly interactive shell Package: fish-common Architecture: all Depends: ${misc:Depends} -Recommends: fish, python3 (>= 3.3) | python (>=2.7) +Recommends: fish, python3 (>= 3.5) Suggests: xdg-utils Replaces: fish (<= 2.1.1.dfsg-2) Description: friendly interactive shell (architecture-independent files) @@ -37,7 +37,6 @@ Description: friendly interactive shell (architecture-independent files) Package: fish-dbg Architecture: any Section: debug -Priority: extra Depends: fish (= ${binary:Version}), ${misc:Depends} Description: debugging symbols for friendly interactive shell Fish is a command-line shell for modern systems, focusing on user-friendliness, diff --git a/debian/menu b/debian/menu deleted file mode 100644 index ff443fd11..000000000 --- a/debian/menu +++ /dev/null @@ -1,2 +0,0 @@ -?package(fish):needs="text" section="Applications/Shells"\ - title="fish" command="/usr/bin/fish" diff --git a/fish.desktop b/fish.desktop new file mode 100644 index 000000000..62a8cc6e0 --- /dev/null +++ b/fish.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Encoding=UTF-8 +Version=1.0 +Type=Application +Terminal=true +# This file is for use in appimages, which rewrite the path. +# Other uses would have to replace these with the correct path. +Exec=fish +Name=fish +Icon=fish +# "Shell" would be the proper category, but it's reserved so we can't use it. +Categories=ConsoleOnly;System; diff --git a/fish.png b/fish.png new file mode 100644 index 000000000..6bfcd3ad2 Binary files /dev/null and b/fish.png differ diff --git a/fish.spec.in b/fish.spec.in index 652d75b36..fb8ee73f6 100644 --- a/fish.spec.in +++ b/fish.spec.in @@ -14,22 +14,27 @@ BuildRequires: ncurses-devel gettext gcc-c++ autoconf %if 0%{?rhel} && 0%{?rhel} < 8 BuildRequires: cmake3 %else -BuildRequires: cmake +BuildRequires: cmake pcre2-devel +%endif + +%if 0%{?suse_version} +BuildRequires: update-desktop-files %endif %if 0%{?opensuse_bs} && 0%{?rhel} && 0%{?rhel} < 7 -BuildRequires: gcc48 gcc48-c++ -%endif - -%if 0%{?is_opensuse} || 0%{?fedora} -BuildRequires: pcre2-devel +BuildRequires: gcc48 gcc48-c++ python-argparse %endif # for tests -%if 0%{?fedora} +%if 0%{?fedora} || ( 0%{?rhel} && 0%{?rhel} > 7 ) # Need the en_US.utf-8 locale at a minimum BuildRequires: glibc-langpack-en %endif +%if 0%{?rhel} && 0%{?rhel} < 8 +BuildRequires: python +%else +BuildRequires: python3 +%endif BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -74,6 +79,10 @@ make %{?_smp_mflags} %make_install %endif %find_lang %{name} +# OpenSUSE has strong opinions about categories which do not apply to other systems +%if 0%{?suse_version} +%suse_update_desktop_file fish "System;TerminalEmulator" +%endif %check # OpenSUSE does out-of-tree builds and defines __builddir @@ -122,3 +131,7 @@ fi # pkgconfig %{_datadir}/pkgconfig/fish.pc + +# FreeDesktop entry +%{_datadir}/applications/fish.desktop +%{_datadir}/pixmaps/fish.png diff --git a/osx/CMakeMacAppInfo.plist.in b/osx/CMakeMacAppInfo.plist.in index 212143cfa..695625441 100644 --- a/osx/CMakeMacAppInfo.plist.in +++ b/osx/CMakeMacAppInfo.plist.in @@ -24,6 +24,8 @@ public.app-category.productivity LSMinimumSystemVersion 10.6 + NSAppleEventsUsageDescription + A Terminal window with the fish shell running in it will be opened. LSUIElement NSHumanReadableCopyright diff --git a/osx/install.sh b/osx/install.sh index 44a790410..6e3ce6cb2 100755 --- a/osx/install.sh +++ b/osx/install.sh @@ -4,8 +4,8 @@ set -e # Make sure we're run as root -scriptname=`basename "$0"` -if [[ $UID -ne 0 ]]; then +scriptname=$(basename "$0") +if [ "$UID" -ne 0 ]; then echo "${scriptname} must be run as root" exit 1 fi diff --git a/po/de.po b/po/de.po index 7e83305d4..0412a36d1 100644 --- a/po/de.po +++ b/po/de.po @@ -39,14 +39,14 @@ msgid "%ls: Mutually exclusive flags '%ls' and `%ls` seen\n" msgstr "" #: src/builtin_argparse.cpp:160 -#, fuzzy, c-format +#, c-format msgid "%ls: exclusive flag string '%ls' is not valid\n" -msgstr "%ls: Maximalwert '%ls' ist keine gültige Zahl\n" +msgstr "" #: src/builtin_argparse.cpp:176 -#, fuzzy, c-format +#, c-format msgid "%ls: exclusive flag '%ls' is not valid\n" -msgstr "%ls: Maximalwert '%ls' ist keine gültige Zahl\n" +msgstr "" #: src/builtin_argparse.cpp:196 #, c-format @@ -85,14 +85,14 @@ msgid "%ls: No option specs were provided\n" msgstr "" #: src/builtin_argparse.cpp:391 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid --min-args value '%ls'\n" -msgstr "%ls: Ungültiger Anfangswert '%ls'\n" +msgstr "" #: src/builtin_argparse.cpp:401 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid --max-args value '%ls'\n" -msgstr "%ls: Ungültiger Anfangswert '%ls'\n" +msgstr "" #: src/builtin_bg.cpp:23 #, c-format @@ -109,19 +109,19 @@ msgid "Send job %d '%ls' to background\n" msgstr "Sende Job %d '%ls' in den Hintergrund\n" #: src/builtin_bg.cpp:63 src/builtin_disown.cpp:69 src/builtin_fg.cpp:49 -#, fuzzy, c-format +#, c-format msgid "%ls: There are no suitable jobs\n" -msgstr "%ls: Es gibt keine passenden Jobs\n" +msgstr "" #: src/builtin_bg.cpp:80 src/builtin_disown.cpp:82 src/builtin_wait.cpp:147 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is not a valid job specifier\n" -msgstr "%ls: '%ls' ist kein Job\n" +msgstr "" #: src/builtin_bg.cpp:95 src/builtin_disown.cpp:89 src/builtin_wait.cpp:163 -#, fuzzy, c-format +#, c-format msgid "%ls: Could not find job '%d'\n" -msgstr "%ls: Konnte '%d' nicht finden\n" +msgstr "" #: src/builtin_bind.cpp:141 #, c-format @@ -129,19 +129,19 @@ msgid "%ls: No key with name '%ls' found\n" msgstr "%ls: Kein Schlüssel mit Name '%ls' gefunden\n" #: src/builtin_bind.cpp:143 -#, fuzzy, c-format +#, c-format msgid "%ls: Key with name '%ls' does not have any mapping\n" -msgstr "%ls: Schlüssel '%ls' hat keine Zuordnung\n" +msgstr "" #: src/builtin_bind.cpp:146 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown error trying to bind to key named '%ls'\n" -msgstr "%ls: Unbekannte Fehler beim Zuordnen von Schlüssel '%ls'\n" +msgstr "" #: src/builtin_bind.cpp:239 -#, fuzzy, c-format +#, c-format msgid "%ls: No binding found for key '%ls'\n" -msgstr "%ls: Keine Zuordnung für Taste '%ls'\n" +msgstr "" #: src/builtin_bind.cpp:242 #, c-format @@ -149,9 +149,9 @@ msgid "%ls: No binding found for sequence '%ls'\n" msgstr "%ls: Keine Zuordnung für Sequenz '%ls'\n" #: src/builtin_bind.cpp:406 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid state\n" -msgstr "%ls: Ungültiger Zustand\n" +msgstr "" #: src/builtin_block.cpp:89 #, c-format @@ -174,24 +174,24 @@ msgid "%ls: '%ls' is not a directory\n" msgstr "%ls: '%ls' ist kein Verzeichnis\n" #: src/builtin_cd.cpp:55 -#, fuzzy, c-format +#, c-format msgid "%ls: The directory '%ls' does not exist\n" -msgstr "%ls: Verzeichnis '%ls' existiert nicht\n" +msgstr "" #: src/builtin_cd.cpp:58 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is a rotten symlink\n" -msgstr "%ls: '%ls' ist defekter symbolischer Link\n" +msgstr "" #: src/builtin_cd.cpp:61 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown error trying to locate directory '%ls'\n" -msgstr "%ls: Unbekannter Fehler beim Suchen von Verzeichnis '%ls'\n" +msgstr "" #: src/builtin_cd.cpp:76 -#, fuzzy, c-format +#, c-format msgid "%ls: Permission denied: '%ls'\n" -msgstr "%ls: Keine Erlaubnis: '%ls'\n" +msgstr "" #: src/builtin_cd.cpp:90 #, c-format @@ -199,34 +199,34 @@ msgid "%ls: Could not set PWD variable\n" msgstr "%ls: Konnte PWD-Variable nicht setzen\n" #: src/builtin_commandline.cpp:344 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown input function '%ls'" -msgstr "%ls: Unbekannte Eingabefunktion '%ls'" +msgstr "" #: src/builtin_complete.cpp:183 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid token '%ls'\n" -msgstr "%ls: Ungültiges Token '%ls'\n" +msgstr "" #: src/builtin_complete.cpp:203 -#, fuzzy, c-format +#, c-format msgid "%ls: -s requires a non-empty string\n" -msgstr "%ls: -s benötigt einen nicht-leeren String\n" +msgstr "" #: src/builtin_complete.cpp:211 -#, fuzzy, c-format +#, c-format msgid "%ls: -l requires a non-empty string\n" -msgstr "%ls: -l benötigt einen nicht-leeren String\n" +msgstr "" #: src/builtin_complete.cpp:219 -#, fuzzy, c-format +#, c-format msgid "%ls: -o requires a non-empty string\n" -msgstr "%ls: -o benötigt einen nicht-leeren String\n" +msgstr "" #: src/builtin_contains.cpp:75 -#, fuzzy, c-format +#, c-format msgid "%ls: Key not specified\n" -msgstr "%ls: Schlüssel nicht angegeben\n" +msgstr "" #: src/builtin.cpp:262 #, c-format @@ -248,9 +248,8 @@ msgid "%ls: Command not valid at an interactive prompt\n" msgstr "" #: src/builtin.cpp:410 src/builtin.cpp:460 -#, fuzzy msgid "Test a condition" -msgstr "Eine Bedingung testen" +msgstr "" #: src/builtin.cpp:411 msgid "Execute command if previous command suceeded" @@ -320,28 +319,24 @@ msgid "Skip the rest of the current lap of the innermost loop" msgstr "Rest des aktuellen Durchlaufs der innersten Schleife überspringen" #: src/builtin.cpp:429 -#, fuzzy msgid "Count the number of arguments" -msgstr "Anzahl der Argumente zählen" +msgstr "" #: src/builtin.cpp:430 -#, fuzzy msgid "Remove job from job list" -msgstr "Job aus Datei lesen" +msgstr "" #: src/builtin.cpp:431 -#, fuzzy msgid "Print arguments" -msgstr "Argumente ausgeben" +msgstr "" #: src/builtin.cpp:432 msgid "Evaluate block if condition is false" msgstr "Werte Block aus, wenn die Bedingung falsch ist" #: src/builtin.cpp:433 -#, fuzzy msgid "Emit an event" -msgstr "Ein Ereignis auslösen" +msgstr "" #: src/builtin.cpp:434 msgid "End a block of commands" @@ -388,9 +383,8 @@ msgid "Print currently running jobs" msgstr "Derzeit laufende Jobs ausgeben" #: src/builtin.cpp:445 -#, fuzzy msgid "Evaluate math expressions" -msgstr "Ausdruck auswerten" +msgstr "" #: src/builtin.cpp:446 msgid "Negate exit status of job" @@ -401,14 +395,12 @@ msgid "Execute command if previous command failed" msgstr "Befehl ausführen, wenn vorheriger Befehl fehlerhaft war" #: src/builtin.cpp:448 -#, fuzzy msgid "Prints formatted text" -msgstr "Befehlstyp ausgeben" +msgstr "" #: src/builtin.cpp:449 -#, fuzzy msgid "Print the working directory" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: src/builtin.cpp:450 msgid "Generate random number" @@ -502,43 +494,41 @@ msgstr "" "Jobsteuerung unterliegt\n" #: src/builtin_function.cpp:68 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown signal '%ls'" -msgstr "%ls: Unbekanntes Signal '%ls'" +msgstr "" #: src/builtin_function.cpp:113 -#, fuzzy, c-format +#, c-format msgid "%ls: Cannot find calling job for event handler" -msgstr "%ls: Kann aufrufenden Job zur Ereignisbehandlung nicht finden" +msgstr "" #: src/builtin_function.cpp:121 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid process id '%ls'" -msgstr "%ls: Ungültige Prozesskennung %ls" +msgstr "" #: src/builtin_function.cpp:179 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected function name" -msgstr "%ls: Erwartete einen Funktionsnamen" +msgstr "" #: src/builtin_function.cpp:185 -#, fuzzy, c-format +#, c-format msgid "%ls: Illegal function name '%ls'" -msgstr "%ls: Ungültiger Funktionsname '%ls'" +msgstr "" #: src/builtin_function.cpp:192 -#, fuzzy, c-format +#, c-format msgid "" "%ls: The name '%ls' is reserved,\n" "and can not be used as a function name" msgstr "" -"%ls: Der Name '%ls' ist reserviert,\n" -"und kann nicht als Funktionsname benutzt werden" #: src/builtin_function.cpp:239 -#, fuzzy, c-format +#, c-format msgid "%ls: Unexpected positional argument '%ls'" -msgstr "%ls: Unerwartetes Argument '%ls'" +msgstr "" #: src/builtin_functions.cpp:275 src/builtin.h:38 #, c-format @@ -556,17 +546,16 @@ msgid "%ls: Function '%ls' does not exist\n" msgstr "%ls: Funktion '%ls' existiert nicht\n" #: src/builtin_functions.cpp:307 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected exactly one function name for --details\n" -msgstr "%ls: Erwartete genau einen Funktionsnamen\n" +msgstr "" #: src/builtin_functions.cpp:342 -#, fuzzy, c-format +#, c-format msgid "" "%ls: Expected exactly two names (current function name, and new function " "name)\n" msgstr "" -"%ls: Erwartete genau zwei Funktionsnamen (den aktuellen und den neuen)\n" #: src/builtin_functions.cpp:359 #, c-format @@ -574,9 +563,9 @@ msgid "%ls: Illegal function name '%ls'\n" msgstr "%ls: Ungültiger Funktionsname '%ls'\n" #: src/builtin_functions.cpp:368 -#, fuzzy, c-format +#, c-format msgid "%ls: Function '%ls' already exists. Cannot create copy '%ls'\n" -msgstr "%ls: Funktion '%ls' existiert schon. Kann keine Kopie '%ls' anlegen\n" +msgstr "" #: src/builtin_history.cpp:71 src/builtin_status.cpp:117 #, c-format @@ -589,9 +578,9 @@ msgid "%ls: you cannot use any options with the %ls command\n" msgstr "%ls: Sie können keine Option mit dem %ls Befehl verwenden\n" #: src/builtin_history.cpp:163 -#, fuzzy, c-format +#, c-format msgid "%ls: max value '%ls' is not a valid number\n" -msgstr "%ls: Maximalwert '%ls' ist keine gültige Zahl\n" +msgstr "" #: src/builtin_history.cpp:261 msgid "builtin history delete only supports --exact\n" @@ -626,9 +615,8 @@ msgid "Group\n" msgstr "Gruppe\n" #: src/builtin_jobs.cpp:84 -#, fuzzy msgid "Process\n" -msgstr "Prozess\n" +msgstr "" #: src/builtin_jobs.cpp:95 msgid "Command\n" @@ -640,9 +628,9 @@ msgid "%ls: There are no jobs\n" msgstr "%ls: Es gibt keine Jobs\n" #: src/builtin_math.cpp:44 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is not a valid scale value\n" -msgstr "%ls: '%ls' ist kein Job\n" +msgstr "" #: src/builtin_math.cpp:148 #, c-format @@ -655,19 +643,18 @@ msgid "More than %d var names in math expression." msgstr "" #: src/builtin_math.cpp:194 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid expression: %ls\n" -msgstr "%ls: Ungültige Prozesskennung %ls\n" +msgstr "" #: src/builtin_printf.cpp:243 -#, fuzzy msgid "Number out of range" -msgstr "Anzahl der Top-Server" +msgstr "" #: src/builtin_printf.cpp:249 -#, fuzzy, c-format +#, c-format msgid "%ls: expected a numeric value" -msgstr "%ls: erwartete Zahl" +msgstr "" #: src/builtin_printf.cpp:251 #, c-format @@ -693,14 +680,14 @@ msgid "invalid field width: %ls" msgstr "Ungültige Feldlänge: %ls" #: src/builtin_printf.cpp:674 -#, fuzzy, c-format +#, c-format msgid "invalid precision: %ls" -msgstr "Ungültige Genauigkeit: %ls" +msgstr "" #: src/builtin_printf.cpp:699 -#, fuzzy, c-format +#, c-format msgid "%.*ls: invalid conversion specification" -msgstr "%.*ls: Ungültige Umwandlungsspezifikation" +msgstr "" #: src/builtin_read.cpp:123 #, c-format @@ -709,9 +696,9 @@ msgid "" msgstr "" #: src/builtin_read.cpp:132 -#, fuzzy, c-format +#, c-format msgid "%ls: Argument '%ls' is out of range\n" -msgstr "%ls: Argument '%ls' ist ausserhalb des Gültigkeitsbereichs\n" +msgstr "" #: src/builtin_read.cpp:344 #, c-format @@ -719,9 +706,9 @@ msgid "%ls: You can't specify both -p and -P\n" msgstr "" #: src/builtin_realpath.cpp:44 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid path: %ls\n" -msgstr "%ls: Ungültiger Indexstart bei '%ls'\n" +msgstr "" #: src/builtin_return.cpp:100 #, c-format @@ -729,14 +716,14 @@ msgid "%ls: Not inside of function\n" msgstr "%ls: Nicht innerhalb einer Funktion\n" #: src/builtin_set_color.cpp:159 src/builtin_set_color.cpp:178 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown color '%ls'\n" -msgstr "%ls: Unbekannte Farbe '%ls'\n" +msgstr "" #: src/builtin_set_color.cpp:167 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected an argument\n" -msgstr "%ls: Argument erwartet\n" +msgstr "" #: src/builtin_set.cpp:62 #, c-format @@ -754,9 +741,9 @@ msgid "%ls: You provided %d indexes but %d values\n" msgstr "" #: src/builtin_set.cpp:66 -#, fuzzy, c-format +#, c-format msgid "%ls: Erase needs a variable name\n" -msgstr "%ls: Erase benötigt einen Variablennamen\n" +msgstr "" #: src/builtin_set.cpp:67 #, c-format @@ -771,21 +758,19 @@ msgid "" msgstr "" #: src/builtin_set.cpp:303 -#, fuzzy, c-format +#, c-format msgid "%ls: Tried to change the read-only variable '%ls'\n" -msgstr "%ls: Versuchte read-only Variable '%ls' zu ändern\n" +msgstr "" #: src/builtin_set.cpp:310 -#, fuzzy, c-format +#, c-format msgid "%ls: Tried to set the special variable '%ls' with the wrong scope\n" msgstr "" -"%ls: Versuchte spezielle Variable '%ls' mit falscher Gültigkeit zu setzen\n" #: src/builtin_set.cpp:317 -#, fuzzy, c-format +#, c-format msgid "%ls: Tried to set the special variable '%ls' to an invalid value\n" msgstr "" -"%ls: Versuchte spezielle Variable '%ls' auf ungültigen Wert zu setzen\n" #: src/builtin_set.cpp:355 #, c-format @@ -816,9 +801,9 @@ msgid "$%ls[%d]: length=%d value=|%ls|\n" msgstr "" #: src/builtin_set.cpp:578 -#, fuzzy, c-format +#, c-format msgid "$%ls: invalid var name\n" -msgstr "%ls: Ungültiger Zustand\n" +msgstr "" #: src/builtin_set.cpp:584 #, c-format @@ -826,9 +811,9 @@ msgid "%ls: `set --show` does not allow slices with the var names\n" msgstr "" #: src/builtin_source.cpp:49 src/builtin_source.cpp:57 -#, fuzzy, c-format +#, c-format msgid "%ls: Error encountered while sourcing file '%ls':\n" -msgstr "%ls: Fehler beim Lesen der Datei '%ls'\n" +msgstr "" #: src/builtin_source.cpp:65 #, c-format @@ -841,19 +826,17 @@ msgid "%ls: Error while reading file '%ls'\n" msgstr "%ls: Fehler beim Lesen der Datei '%ls'\n" #: src/builtin_status.cpp:155 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid level value '%ls'\n" -msgstr "%ls: Ungültiger Längenwert '%ls'\n" +msgstr "" #: src/builtin_status.cpp:276 -#, fuzzy msgid "This is a login shell\n" -msgstr "Dies ist eine Login-Shell\n" +msgstr "" #: src/builtin_status.cpp:278 -#, fuzzy msgid "This is not a login shell\n" -msgstr "Dies ist keine Login-Shell\n" +msgstr "" #: src/builtin_status.cpp:282 #, c-format @@ -861,9 +844,8 @@ msgid "Job control: %ls\n" msgstr "Jobsteuerung: %ls\n" #: src/builtin_status.cpp:284 -#, fuzzy msgid "Only on interactive jobs" -msgstr "Nur bei interaktiven Jobs" +msgstr "" #: src/builtin_status.cpp:285 msgid "Never" @@ -874,14 +856,12 @@ msgid "Always" msgstr "Immer" #: src/builtin_status.cpp:312 src/fish.cpp:433 src/parser.cpp:552 -#, fuzzy msgid "Standard input" -msgstr "Standardeingabe" +msgstr "" #: src/builtin_status.cpp:320 -#, fuzzy msgid "Not a function" -msgstr "Funktion" +msgstr "" #: src/builtin_string.cpp:39 #, c-format @@ -889,29 +869,29 @@ msgid "%ls: Expected argument\n" msgstr "%ls: Argument erwartet\n" #: src/builtin_string.cpp:160 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid escape style '%ls'\n" -msgstr "%ls: Ungültiger Anfangswert '%ls'\n" +msgstr "" #: src/builtin_string.cpp:238 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid length value '%ls'\n" -msgstr "%ls: Ungültiger Längenwert '%ls'\n" +msgstr "" #: src/builtin_string.cpp:258 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid max value '%ls'\n" -msgstr "%ls: Ungültiger Anfangswert '%ls'\n" +msgstr "" #: src/builtin_string.cpp:275 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid count value '%ls'\n" -msgstr "%ls: Ungültiger Längenwert '%ls'\n" +msgstr "" #: src/builtin_string.cpp:321 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid start value '%ls'\n" -msgstr "%ls: Ungültiger Anfangswert '%ls'\n" +msgstr "" #: src/builtin_string.cpp:743 #, c-format @@ -938,19 +918,19 @@ msgid "%ls: Regular expression substitute error: %ls\n" msgstr "%ls: Fehler beim Ersetzen von Regulärem Ausdruck: %ls\n" #: src/builtin_test.cpp:608 -#, fuzzy, c-format +#, c-format msgid "invalid integer '%ls'" -msgstr "Ungültige Ganzzahl '%ls'" +msgstr "" #: src/builtin_ulimit.cpp:285 -#, fuzzy, c-format +#, c-format msgid "%ls: New limit cannot be an empty string\n" -msgstr "%ls: Neues Limit kann nicht leer sein\n" +msgstr "" #: src/builtin_ulimit.cpp:297 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid limit '%ls'\n" -msgstr "%ls: Ungültiges Limit '%ls'\n" +msgstr "" #: src/common.cpp:1551 msgid "Current terminal parameters have rows and/or columns set to zero." @@ -974,11 +954,9 @@ msgid "This is a bug. Break on bugreport to debug." msgstr "" #: src/common.cpp:1782 -#, fuzzy, c-format +#, c-format msgid "If you can reproduce it, please send a bug report to %s." msgstr "" -"Wenn dieser Fehler reproduziert werden kann, senden Sie bitte einen " -"Fehlerbericht an %s." #: src/common.cpp:1792 msgid "empty" @@ -990,44 +968,40 @@ msgid "Home for %ls" msgstr "Heimordner für %ls" #: src/complete.cpp:56 -#, fuzzy, c-format +#, c-format msgid "Variable: %ls" -msgstr "Variable: %ls" +msgstr "" #: src/env.cpp:242 msgid "Tried to pop empty environment stack." msgstr "Versuchte, einen leeren Umgebungsstack zu poppen." #: src/env.cpp:537 -#, fuzzy, c-format +#, c-format msgid "Using fallback terminal type '%s'." -msgstr "Benutze Fallbackterminaltyp '%ls'" +msgstr "" #: src/env.cpp:542 -#, fuzzy, c-format +#, c-format msgid "Could not set up terminal using the fallback terminal type '%s'." -msgstr "Konnte Terminal mit Fallbacktyp '%ls' nicht einrichten - beende" +msgstr "" #: src/env.cpp:574 -#, fuzzy msgid "Could not set up terminal." -msgstr "Konnte Terminal nicht einrichten" +msgstr "" #: src/env.cpp:576 -#, fuzzy msgid "TERM environment variable not set." -msgstr "TERM Umgebungsvariable nicht gesetzt" +msgstr "" #: src/env.cpp:578 -#, fuzzy, c-format +#, c-format msgid "TERM environment variable set to '%ls'." -msgstr "TERM Umgebungsvariable gesetzt auf '%ls'" +msgstr "" #: src/env.cpp:579 -#, fuzzy msgid "Check that this terminal type is supported on this system." msgstr "" -"Überprüfen sie das dieser Terminaltyp auf diesem System unterstützt wird" #: src/env.cpp:673 msgid "" @@ -1035,10 +1009,9 @@ msgid "" msgstr "" #: src/env_universal_common.cpp:461 -#, fuzzy, c-format +#, c-format msgid "Unable to write to universal variables file '%ls': %s" msgstr "" -"Konnte nicht in die Datei für universelle Variablen '%ls' schreiben: %s" #: src/env_universal_common.cpp:481 #, c-format @@ -1046,9 +1019,9 @@ msgid "Unable to rename file from '%ls' to '%ls': %s" msgstr "Konnte Datei '%ls' nicht zu '%ls' umbenennen: %s" #: src/env_universal_common.cpp:533 -#, fuzzy, c-format +#, c-format msgid "Unable to open temporary file '%ls': %s" -msgstr "Konnte temporäre Datei '%ls' nicht öffnen: %s" +msgstr "" #: src/env_universal_common.cpp:543 #, c-format @@ -1058,9 +1031,9 @@ msgstr "" "Sekunden)" #: src/env_universal_common.cpp:595 -#, fuzzy, c-format +#, c-format msgid "Unable to open universal variable file '%ls': %s" -msgstr "Konnte die Datei für universelle Variablen '%ls' nicht öffnen: %s" +msgstr "" #: src/env_universal_common.cpp:970 #, c-format @@ -1083,14 +1056,14 @@ msgid "Unable to memory map shared memory object with path '%s': %s" msgstr "" #: src/env_universal_common.cpp:1396 -#, fuzzy, c-format +#, c-format msgid "Unable to make a pipe for universal variables using '%ls': %s" -msgstr "Konnte keine Pipe für universelle Variablen mit '%ls' erstellen: %s" +msgstr "" #: src/env_universal_common.cpp:1405 -#, fuzzy, c-format +#, c-format msgid "Unable to open a pipe for universal variables using '%ls': %s" -msgstr "Konnte keine Pipe für universelle Variablen mit '%ls' öffnen: %s" +msgstr "" #: src/event.cpp:119 #, c-format @@ -1098,9 +1071,9 @@ msgid "signal handler for %ls (%ls)" msgstr "Signalbehandler für %ls (%ls)" #: src/event.cpp:124 -#, fuzzy, c-format +#, c-format msgid "handler for variable '%ls'" -msgstr "Behandler für Variable '%ls'" +msgstr "" #: src/event.cpp:129 #, c-format @@ -1128,9 +1101,9 @@ msgid "handler for generic event '%ls'" msgstr "" #: src/event.cpp:157 -#, fuzzy, c-format +#, c-format msgid "Unknown event type '0x%x'" -msgstr "Unbekannter Ereignistyp '0x%x'" +msgstr "" #: src/event.cpp:403 msgid "Signal list overflow. Signals have been ignored." @@ -1142,14 +1115,13 @@ msgid "An error occurred while redirecting file descriptor %d" msgstr "Fehler beim Umleiten des Dateideskriptors %d" #: src/exec.cpp:48 -#, fuzzy msgid "An error occurred while writing output" -msgstr "Fehler beim Schreiben der Ausgabe" +msgstr "" #: src/exec.cpp:51 -#, fuzzy, c-format +#, c-format msgid "An error occurred while redirecting file '%s'" -msgstr "Fehler beim Umleiten der Datei '%s'" +msgstr "" #: src/exec.cpp:714 #, c-format @@ -1162,14 +1134,12 @@ msgid "Unknown input redirection type %d" msgstr "Unbekannter Typ %d bei Eingabeumleitung " #: src/expand.cpp:55 -#, fuzzy msgid "Child process" -msgstr "Kindprozess" +msgstr "" #: src/expand.cpp:58 -#, fuzzy msgid "Process" -msgstr "Prozess" +msgstr "" #: src/expand.cpp:61 msgid "Job" @@ -1181,14 +1151,12 @@ msgid "Job: %ls" msgstr "Job: %ls" #: src/expand.cpp:67 -#, fuzzy msgid "Shell process" -msgstr "Shellprozess" +msgstr "" #: src/expand.cpp:70 -#, fuzzy msgid "Last background job" -msgstr "Letzter Hintergrundjob" +msgstr "" #: src/expand.cpp:398 #, c-format @@ -1197,9 +1165,8 @@ msgstr "" "Unerwarteter Fehler beim Konvertieren von PID '%ls' zu einer Ganzzahl\n" #: src/expand.cpp:984 -#, fuzzy msgid "Mismatched brackets" -msgstr "Unpassende Klammern" +msgstr "" #: src/expand.cpp:1063 msgid "Too much data emitted by command substitution so it was discarded\n" @@ -1251,9 +1218,8 @@ msgid "Opening \"%s\" failed: %s\n" msgstr "Öffnen von \"%s\" fehlgeschlagen: %s\n" #: src/fish_indent.cpp:469 -#, fuzzy msgid "Too many arguments\n" -msgstr "Zu viele Argumente\n" +msgstr "" #: src/fish_key_reader.cpp:241 #, c-format @@ -1261,14 +1227,14 @@ msgid "signal #%d (%ls) received\n" msgstr "Signal #%d (%ls) erhalten\n" #: src/fish_key_reader.cpp:313 -#, fuzzy, c-format +#, c-format msgid "Invalid value '%s' for debug-level flag\n" -msgstr "Ungültiger Wert '%s' für debug-level Option\n" +msgstr "" #: src/fish_key_reader.cpp:327 -#, fuzzy, c-format +#, c-format msgid "Invalid value '%s' for debug-stack-frames flag\n" -msgstr "Ungültiger Wert '%s' für debug-stack-frames Option\n" +msgstr "" #: src/history.cpp:146 #, c-format @@ -1297,9 +1263,8 @@ msgstr "" "%s" #: src/pager.cpp:40 -#, fuzzy msgid "search: " -msgstr "Suche: " +msgstr "" #: src/pager.cpp:493 #, c-format @@ -1312,14 +1277,13 @@ msgid "rows %lu to %lu of %lu" msgstr "Zeilen %lu bis %lu von %lu" #: src/pager.cpp:503 -#, fuzzy msgid "(no matches)" -msgstr "(Keine Treffer)" +msgstr "" #: src/parse_execution.cpp:556 -#, fuzzy, c-format +#, c-format msgid "switch: Expected exactly one argument, got %lu\n" -msgstr "switch: Erwartete genau ein Argument, erhielt %lu\n" +msgstr "" #: src/parse_execution.cpp:791 #, c-format @@ -1336,14 +1300,14 @@ msgid "The file '%ls' is not executable by this user" msgstr "Die Datei '%ls' kann von diesem Benutzer nicht ausgeführt werden" #: src/parse_execution.cpp:1007 -#, fuzzy, c-format +#, c-format msgid "Invalid redirection target: %ls" -msgstr "Ungültiges Umleitungsziel: %ls" +msgstr "" #: src/parse_execution.cpp:1021 -#, fuzzy, c-format +#, c-format msgid "Requested redirection to '%ls', which is not a valid file descriptor" -msgstr "Angeforderte Umleitung auf etwas, das kein Dateideskriptor ist %ls" +msgstr "" #: src/parser.cpp:30 #, c-format @@ -1371,9 +1335,8 @@ msgid "function invocation block" msgstr "Funktionsausführungsblock" #: src/parser.cpp:48 -#, fuzzy msgid "function invocation block with no variable shadowing" -msgstr "Funktionsausführungsblock ohne Variablenverdeckung" +msgstr "" #: src/parser.cpp:51 msgid "'switch' block" @@ -1396,9 +1359,8 @@ msgid "block created by the . builtin" msgstr "Vom '.' builtin erstellter Block" #: src/parser.cpp:66 -#, fuzzy msgid "event handler block" -msgstr "Ereignisbehandler-Block" +msgstr "" #: src/parser.cpp:69 msgid "unknown/invalid block" @@ -1424,14 +1386,13 @@ msgid "from sourcing file %ls\n" msgstr "" #: src/parser.cpp:392 -#, fuzzy, c-format +#, c-format msgid "in function '%ls'\n" -msgstr "Unbekannte Funktion '%ls'\n" +msgstr "" #: src/parser.cpp:396 -#, fuzzy msgid "in command substitution\n" -msgstr "Befehlsersetzungsblock\n" +msgstr "" #: src/parser.cpp:407 #, c-format @@ -1465,9 +1426,9 @@ msgid "Job inconsistency" msgstr "Jobinkonsistenz" #: src/parser.cpp:797 -#, fuzzy, c-format +#, c-format msgid "%ls (line %lu): " -msgstr "%ls (Zeile %lu): " +msgstr "" #: src/parser.cpp:800 #, c-format @@ -1475,20 +1436,18 @@ msgid "%ls: " msgstr "" #: src/parse_util.cpp:28 -#, fuzzy, c-format +#, c-format msgid "The '%ls' command can not be used in a pipeline" -msgstr "Befehl '%ls' kann nicht in einer Pipe benutzt werden" +msgstr "" #: src/parse_util.cpp:32 -#, fuzzy, c-format +#, c-format msgid "The '%ls' command can not be used immediately after a backgrounded job" msgstr "" -"Befehl '%ls' kann nicht direkt nach einem Hintergrundjob benutzt werden" #: src/parse_util.cpp:36 -#, fuzzy msgid "Backgrounded commands can not be used as conditionals" -msgstr "Hintergrundkommandos können nicht als Bedingung verwendet werden" +msgstr "" #: src/path.cpp:25 #, c-format @@ -1496,9 +1455,9 @@ msgid "Error while searching for command '%ls'" msgstr "Fehler beim Suchen des Befehls '%ls'" #: src/path.cpp:276 -#, fuzzy, c-format +#, c-format msgid "Unable to locate the %ls directory." -msgstr "Konnte Verzeichnis %ls nicht finden." +msgstr "" #: src/path.cpp:277 #, c-format @@ -1512,9 +1471,9 @@ msgid "Unable to locate %ls directory derived from $%ls: '%ls'." msgstr "Konnte Verzeichnis %ls abgeleitet von %ls nicht finden: '%ls'." #: src/path.cpp:283 -#, fuzzy, c-format +#, c-format msgid "The error was '%s'." -msgstr "Der Fehler war: '%s'." +msgstr "" #: src/path.cpp:284 #, c-format @@ -1535,14 +1494,14 @@ msgid "Job %d, " msgstr "" #: src/proc.cpp:587 -#, fuzzy, c-format +#, c-format msgid "%ls: %ls'%ls' terminated by signal %ls (%ls)" -msgstr "%ls: %ls'%ls' durch Signal %ls (%ls) beendet" +msgstr "" #: src/proc.cpp:595 -#, fuzzy, c-format +#, c-format msgid "%ls: Process %d, '%ls' %ls'%ls' terminated by signal %ls (%ls)" -msgstr "%ls: Prozess %d, '%ls' %ls'%ls' durch Signal %ls (%ls) beendet" +msgstr "" #: src/proc.cpp:779 msgid "An error occured while reading output from code block" @@ -1610,18 +1569,14 @@ msgid "Pop null reader block" msgstr "" #: src/reader.cpp:2160 -#, fuzzy msgid "There are still jobs active:\n" -msgstr "Es gibt keine passenden Jobs\n" +msgstr "" #: src/reader.cpp:2161 -#, fuzzy msgid "" "\n" " PID Command\n" msgstr "" -"\n" -" Befehl\n" #: src/reader.cpp:2170 msgid "A second attempt to exit will terminate them.\n" @@ -1638,9 +1593,8 @@ msgid "Unknown key binding 0x%X" msgstr "Unbekannte Tastenkombination 0x%X" #: src/reader.cpp:3294 -#, fuzzy msgid "Error while reading from file descriptor" -msgstr "Fehler beim Lesen von Dateideskriptor" +msgstr "" #: src/reader.cpp:3308 msgid "Error while closing input stream" @@ -1651,9 +1605,8 @@ msgid "Error while opening input stream" msgstr "Fehler beim Öffnen des Eingabestroms" #: src/sanity.cpp:18 -#, fuzzy msgid "Errors detected, shutting down. Break on sanity_lose() to debug." -msgstr "Fehler gefunden, Programmabbruch" +msgstr "" #: src/sanity.cpp:33 #, c-format @@ -1802,23 +1755,20 @@ msgid "Abort (Alias for SIGABRT)" msgstr "" #: src/signal.cpp:141 -#, fuzzy msgid "Unused signal" -msgstr "Benutzerdefiniertes Signal 1" +msgstr "" #: src/signal.cpp:173 src/signal.cpp:185 -#, fuzzy msgid "Unknown" -msgstr "Unbekannt" +msgstr "" #: src/signal.cpp:413 msgid "Signal block mismatch" msgstr "" #: src/tokenizer.cpp:26 -#, fuzzy msgid "Unexpected end of string, quotes are not balanced" -msgstr "Unerwartetes Zeichenende" +msgstr "" #: src/tokenizer.cpp:29 msgid "Unexpected end of string, parenthesis do not match" @@ -1829,59 +1779,56 @@ msgid "Unexpected end of string, square brackets do not match" msgstr "Unerwartetes Stringende, eckige Klammern passen nicht" #: src/tokenizer.cpp:35 -#, fuzzy msgid "Unexpected end of string, incomplete escape sequence" -msgstr "Unerwartetes Zeichenende, unvollständige Escapesequenz" +msgstr "" #: src/tokenizer.cpp:38 -#, fuzzy msgid "Invalid input/output redirection" -msgstr "Ungültige Umleitung" +msgstr "" #: src/tokenizer.cpp:41 -#, fuzzy msgid "Cannot use stdin (fd 0) as pipe output" -msgstr "Kann FD 0 nicht als Pipe-Ausgabe verwenden" +msgstr "" #: src/wgetopt.cpp:246 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid option -- %lc\n" -msgstr "%ls: Ungültige Option -- %lc\n" +msgstr "" #: src/wgetopt.cpp:277 -#, fuzzy, c-format +#, c-format msgid "%ls: Option requires an argument -- %lc\n" -msgstr "%ls: Option benötigt ein Argument -- %lc\n" +msgstr "" #: src/wgetopt.cpp:304 -#, fuzzy, c-format +#, c-format msgid "%ls: Option '--%ls' doesn't allow an argument\n" -msgstr "%ls: Option '--%ls' erlaubt kein Argument\n" +msgstr "" #: src/wgetopt.cpp:308 -#, fuzzy, c-format +#, c-format msgid "%ls: Option '%lc%ls' doesn't allow an argument\n" -msgstr "%ls: Option '%lc%ls' erlaubt kein Argument\n" +msgstr "" #: src/wgetopt.cpp:320 -#, fuzzy, c-format +#, c-format msgid "%ls: Option '%ls' requires an argument\n" -msgstr "%ls: Option '%ls' benötigt ein Argument\n" +msgstr "" #: src/wgetopt.cpp:383 -#, fuzzy, c-format +#, c-format msgid "%ls: Option '%ls' is ambiguous\n" -msgstr "%ls: Option '%ls' ist mehrdeutig\n" +msgstr "" #: src/wgetopt.cpp:402 -#, fuzzy, c-format +#, c-format msgid "%ls: Unrecognized option '--%ls'\n" -msgstr "%ls: Unbekannte Option '%ls'\n" +msgstr "" #: src/wgetopt.cpp:405 -#, fuzzy, c-format +#, c-format msgid "%ls: Unrecognized option '%lc%ls'\n" -msgstr "%ls: Unbekannte Option '%lc%ls'\n" +msgstr "" #: src/wildcard.cpp:27 /tmp/fish/implicit/share/completions/journalctl.fish:2 msgid "Executable" @@ -1919,9 +1866,8 @@ msgid "Symbolic link" msgstr "Symbolischer Link" #: src/wildcard.cpp:41 -#, fuzzy msgid "Symbolic link to directory" -msgstr "Symbolischer Link auf Ordner" +msgstr "" #: src/wildcard.cpp:43 msgid "Rotten symbolic link" @@ -1947,9 +1893,9 @@ msgid "getcwd() failed with errno %d/%s" msgstr "getcwd() schlug mit errno %d/%s fehl" #: src/builtin.h:35 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected argument for option %ls\n" -msgstr "%ls: Erwartete ein Argument, erhielt %d\n" +msgstr "" #: src/builtin.h:41 #, c-format @@ -1961,15 +1907,14 @@ msgstr "" "%ls\n" #: src/builtin.h:45 -#, fuzzy, c-format +#, c-format msgid "%ls: Variable scope can only be one of universal, global and local\n" -msgstr "%ls: Variablenbereich kann nur universell, global oder lokal sein\n" +msgstr "" #: src/builtin.h:48 -#, fuzzy, c-format +#, c-format msgid "%ls: Variable can't be both exported and unexported\n" msgstr "" -"%ls: Variable kann nicht gleichzeitig exportiert und nicht exportiert sein\n" #: src/builtin.h:51 #, c-format @@ -1997,14 +1942,14 @@ msgid "%ls: Expected at most %d args, got %d\n" msgstr "" #: src/builtin.h:60 -#, fuzzy, c-format +#, c-format msgid "%ls: Variable name '%ls' is not valid. See `help identifiers`.\n" -msgstr "%ls: Maximalwert '%ls' ist keine gültige Zahl\n" +msgstr "" #: src/builtin.h:63 -#, fuzzy, c-format +#, c-format msgid "%ls: mode name '%ls' is not valid. See `help identifiers`.\n" -msgstr "%ls: Maximalwert '%ls' ist keine gültige Zahl\n" +msgstr "" #: src/builtin.h:66 #, c-format @@ -2012,9 +1957,9 @@ msgid "%ls: Too many arguments\n" msgstr "%ls: Zu viele Argumente\n" #: src/builtin.h:69 -#, fuzzy, c-format +#, c-format msgid "%ls: Argument '%ls' is not a number\n" -msgstr "%ls: Argument '%ls' muss eine Ganzzahl sein\n" +msgstr "" #: src/builtin.h:72 #, c-format @@ -2022,9 +1967,9 @@ msgid "%ls: Expected a subcommand to follow the command\n" msgstr "" #: src/builtin.h:73 -#, fuzzy, c-format +#, c-format msgid "%ls: Subcommand '%ls' is not valid\n" -msgstr "%ls: '%ls' ist keine Datei\n" +msgstr "" #: src/builtin.h:76 #, c-format @@ -2066,9 +2011,9 @@ msgid "Unable to expand variable name '%ls'" msgstr "" #: src/parse_constants.h:242 -#, fuzzy, c-format +#, c-format msgid "Unable to find a process '%ls'" -msgstr "Konnte Prozess '%ls' nicht ausführen" +msgstr "" #: src/parse_constants.h:245 #, c-format @@ -2076,31 +2021,26 @@ msgid "Illegal file descriptor in redirection '%ls'" msgstr "" #: src/parse_constants.h:248 -#, fuzzy, c-format +#, c-format msgid "No matches for wildcard '%ls'. See `help expand`." msgstr "" -"Warnung: Kein Treffer für Jokerzeichen '%ls'. Der Befehl wird nicht " -"ausgeführt." #: src/parse_constants.h:251 -#, fuzzy msgid "'break' while not inside of loop" -msgstr "Schleifensteuerungsbefehl 'while' nicht innerhalb einer Schleife" +msgstr "" #: src/parse_constants.h:254 -#, fuzzy msgid "'continue' while not inside of loop" -msgstr "Schleifensteuerungsbefehl 'while' nicht innerhalb einer Schleife" +msgstr "" #: src/parse_constants.h:257 -#, fuzzy msgid "'return' outside of function definition" -msgstr "Internen Befehl anstatt einer Funktion ausführen" +msgstr "" #: src/parse_constants.h:262 -#, fuzzy, c-format +#, c-format msgid "$%lc is not a valid variable in fish." -msgstr "$%lc ist kein gültiger Variablenname" +msgstr "" #: src/parse_constants.h:265 #, c-format @@ -2164,16 +2104,14 @@ msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:1 #: /tmp/fish/explicit/share/completions/emerge.fish:4 -#, fuzzy msgid "All base system packages" -msgstr "Erstellte Pakete löschen" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:2 #: /tmp/fish/explicit/share/completions/emerge.fish:5 #: /tmp/fish/explicit/share/completions/emerge.fish:6 -#, fuzzy msgid "All packages in world" -msgstr "Installierte Pakete synchronisieren" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:3 #: /tmp/fish/implicit/share/completions/aura.fish:90 @@ -2184,9 +2122,8 @@ msgstr "Installierte Pakete synchronisieren" #: /tmp/fish/implicit/share/completions/pacman.fish:55 #: /tmp/fish/implicit/share/completions/yaourt.fish:69 #: /tmp/fish/implicit/share/completions/yaourt.fish:76 -#, fuzzy msgid "Installed package" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:7 msgid "Packages that are linked to preserved libs" @@ -2201,88 +2138,72 @@ msgid "Usage overview of emerge" msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:10 -#, fuzzy msgid "Help on subject system" -msgstr "Hilfeabschnitt zu" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:11 -#, fuzzy msgid "Help on subject config" -msgstr "Hilfeabschnitt zu" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:12 -#, fuzzy msgid "Help on subject sync" -msgstr "Hilfeabschnitt zu" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:13 -#, fuzzy msgid "Use colors in output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:14 -#, fuzzy msgid "Don't use colors in output" -msgstr "Keine ausführliche Ausgabe" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:15 -#, fuzzy msgid "Pull in build time dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:16 -#, fuzzy msgid "Don't pull in build time dependencies" -msgstr "Nicht automatisch Abhängigkeiten erfüllen" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:1 -#, fuzzy msgid "list all packages owning file(s)" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:2 msgid "check MD5sums and timestamps of package" msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:3 -#, fuzzy msgid "list all packages depending on specified package" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:4 -#, fuzzy msgid "display a dependency tree for package" -msgstr "Abhängigkeiten für dieses Paket auflisten" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:5 -#, fuzzy msgid "list files owned by package" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:6 -#, fuzzy msgid "list all packages with specified useflag" -msgstr "Ein (deinstalliertes) Paket in der angegebenen Datei abfragen" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:7 -#, fuzzy msgid "list all packages matching pattern" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:8 -#, fuzzy msgid "print size of files contained in package" -msgstr "Die im Paket enthaltenen Auslöser-Skripte anzeigen" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:9 -#, fuzzy msgid "display USE flags for package" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:10 -#, fuzzy msgid "print full path to ebuild for package" -msgstr "Vollständigen Quellpfad ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:1 msgid "Build a gem from a gemspec" @@ -2293,82 +2214,68 @@ msgid "Adjust RubyGems certificate settings" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:3 -#, fuzzy msgid "Check installed gems" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:4 -#, fuzzy msgid "Cleanup old versions of installed gems in the local repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:5 -#, fuzzy msgid "Display the contents of the installed gems" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:6 -#, fuzzy msgid "Show the dependencies of an installed gem" -msgstr "Vor dem Deinstallieren der Pakete keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:7 -#, fuzzy msgid "Display RubyGems environmental information" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:8 -#, fuzzy msgid "Provide help on the 'gem' command" -msgstr "Hilfe für den Befehl 'gem'" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:9 -#, fuzzy msgid "Install a gem into the local repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:10 msgid "Display all gems whose name starts with STRING" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:11 -#, fuzzy msgid "Query gem information in local or remote repositories" -msgstr "Einträge in .cvspass für entferntes Paketdepot entfernen" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:12 -#, fuzzy msgid "Generates RDoc for pre-installed gems" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:13 msgid "Display all gems whose name contains STRING" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:14 -#, fuzzy msgid "Display gem specification (in yaml)" -msgstr "Letzte Veränderungszeit der Datei anzeigen" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:15 -#, fuzzy msgid "Uninstall a gem from the local repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:16 -#, fuzzy msgid "Unpack an installed gem to the current directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:17 -#, fuzzy msgid "Update the named gem (or all installed gems) in the local repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:18 -#, fuzzy msgid "display the remote gem servers" -msgstr "Datei zum Zugriff auf Server" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:19 msgid "show some examples of usage" @@ -2391,14 +2298,12 @@ msgid "Enables an existing service" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:4 -#, fuzzy msgid "Disables an existing service" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:5 -#, fuzzy msgid "Removes the specified service name from the service cache" -msgstr "Die auf der Befehlszeile angegebene Datei verschieben" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:6 msgid "Forces an existing service to start" @@ -2425,14 +2330,12 @@ msgid "Prints a description of a domain or service" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:12 -#, fuzzy msgid "Prints information about the service cache" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:13 -#, fuzzy msgid "Prints which services are disabled" -msgstr "Dienststatus ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:14 msgid "" @@ -2441,14 +2344,12 @@ msgid "" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:15 -#, fuzzy msgid "Prints port information about a process" -msgstr "Während der Verarbeitung zusätzliche Informationen ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:16 -#, fuzzy msgid "Prints port information about the host" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:17 msgid "Resolves a port name from a process to an endpoint in launchd" @@ -2459,9 +2360,8 @@ msgid "Reads or modifies launchd's resource limits" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:19 -#, fuzzy msgid "Prints performance statistics for a service" -msgstr "Prototypen in Datei schreiben" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:20 msgid "" @@ -2473,18 +2373,16 @@ msgid "Modifies persistent configuration parameters for launchd domains" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:22 -#, fuzzy msgid "Dumps launchd state to stdout" -msgstr "Auf Standardausgabe dekomprimieren" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:23 msgid "Dumps the jetsam properties category for all services" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:24 -#, fuzzy msgid "Initiates a system reboot of the specified type" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:25 msgid "Brings the system up from single-user mode with a console shell" @@ -2499,24 +2397,20 @@ msgid "Unloads a service or directory of services" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:28 -#, fuzzy msgid "Unloads the specified service name" -msgstr "Angegebenen Schlüsselserver verwenden" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:29 -#, fuzzy msgid "Lists information about services" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:30 -#, fuzzy msgid "Starts the specified service" -msgstr "Angegebenen Schlüsselserver verwenden" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:31 -#, fuzzy msgid "Stops the specified service if it is running" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:32 msgid "" @@ -2541,9 +2435,8 @@ msgid "Execute a program in the bootstrap context of a given user" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:37 -#, fuzzy msgid "Submit a basic job from the command line" -msgstr "Festlegen oder Abrufen der Befehlszeile" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:38 msgid "Prints the PID of the launchd controlling the session" @@ -2554,28 +2447,24 @@ msgid "Prints the UID of the current launchd session" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:40 -#, fuzzy msgid "Prints the name of the current launchd session" -msgstr "Rest des aktuellen Durchlaufs der innersten Schleife überspringen" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:41 -#, fuzzy msgid "Prints a description of an error" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:42 msgid "Prints the launchd variant" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:43 -#, fuzzy msgid "Prints the launchd version" -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:44 -#, fuzzy msgid "Prints the usage for a given subcommand" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:1 #: /tmp/fish/explicit/share/completions/mdadm.fish:2 @@ -2584,9 +2473,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:3 #: /tmp/fish/explicit/share/completions/mdadm.fish:4 -#, fuzzy msgid "Use last 1.x format superblock" -msgstr "Normale Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:5 msgid "Use 1.0 format superblock" @@ -2615,9 +2503,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:11 #: /tmp/fish/explicit/share/completions/mdadm.fish:12 #: /tmp/fish/explicit/share/completions/mdadm.fish:13 -#, fuzzy msgid "Stripped volume (RAID 0)" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:14 #: /tmp/fish/explicit/share/completions/mdadm.fish:15 @@ -2655,9 +2542,8 @@ msgid "Pseudo RAID layer for single device (akin faulty RAID 1)" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:28 -#, fuzzy msgid "Container" -msgstr "Kein Neue-Zeile-Zeichen" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:29 msgid "Alias of left-asymmetric" @@ -2680,9 +2566,8 @@ msgid "Alias of write-transient" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:34 -#, fuzzy msgid "Alias of read-transient" -msgstr "Alias für atrm" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:35 msgid "Alias of write-persistent" @@ -2693,60 +2578,50 @@ msgid "Alias of read-persistent" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:37 -#, fuzzy msgid "Alias of read-fixable" -msgstr "Datei ist lesbar" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:38 -#, fuzzy msgid "Use standard format (default)" -msgstr "Normale Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:39 -#, fuzzy msgid "Use a non-partitionable array" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:40 #: /tmp/fish/explicit/share/completions/mdadm.fish:41 #: /tmp/fish/explicit/share/completions/mdadm.fish:42 -#, fuzzy msgid "Use a partitionable array" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:43 msgid "Remove superblock misalignement from SPARC kernel 2.2" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:44 -#, fuzzy msgid "Correct superblock summaries" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:45 -#, fuzzy msgid "Update array UUID" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:46 -#, fuzzy msgid "Update array name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:47 -#, fuzzy msgid "Update array nodes" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:48 -#, fuzzy msgid "Update array homehost" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:49 -#, fuzzy msgid "Update array cluster name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:50 msgid "Mark the array as dirty, thus forcing resync" @@ -2757,18 +2632,16 @@ msgid "Reverse superblock endianness" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:52 -#, fuzzy msgid "Refresh device size" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:53 msgid "Assume bitmap absence" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:54 -#, fuzzy msgid "Reserve space for bad block list" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:55 msgid "Free reserved space for bad block list" @@ -2783,9 +2656,8 @@ msgid "Reset preferred minor to current one" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:58 -#, fuzzy msgid "Abort currently running actions" -msgstr "Derzeit laufende Jobs ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:59 msgid "Abort currently running actions, prevent their restart" @@ -2796,9 +2668,8 @@ msgid "Scrub the array (i.e. check constistency)" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:61 -#, fuzzy msgid "Check, then resync" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/explicit/share/completions/set.fish:1 msgid "Locale" @@ -2806,9 +2677,8 @@ msgstr "Locale" #: /tmp/fish/explicit/share/completions/telnet.fish:1 #: /tmp/fish/explicit/share/completions/telnet.fish:6 -#, fuzzy msgid "Specifies an 8-bit data path" -msgstr "Man-Pfad angeben" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:2 msgid "Do not try to negotiate TELNET BINARY option" @@ -2831,66 +2701,56 @@ msgid "Attempt automatic login" msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:8 -#, fuzzy msgid "Disables reading user's .telnetrc" -msgstr "Weiterleitung von Kerberos-Tickets deaktivieren" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:9 -#, fuzzy msgid "Sets debug mode" -msgstr "Debug-Grad festlegen" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:10 msgid "Sets IP TOS" msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:11 -#, fuzzy msgid "Disables specified type of authentication" -msgstr "Deaktiviert Weiterleitung des Authentifizierungs-Agenten" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:12 -#, fuzzy msgid "User login" -msgstr "Benutzer-Startverzeichnis" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:13 -#, fuzzy msgid "Log to tracefile" -msgstr "Log in Datei schreiben" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:14 -#, fuzzy msgid "Turn on encryption" -msgstr "Funktionsbeschreibung festlegen" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:15 msgid "User interface similar to rlogin" msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:16 -#, fuzzy msgid "Use Kerberos realm for authentication" -msgstr "Pseudo-tty-Zuordnung erzwingen" +msgstr "" #: /tmp/fish/explicit/share/completions/update-eix-remote.fish:1 msgid "Remove all temporarily added virtual overlays from the eix database" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:1 -#, fuzzy msgid "ZFS filesystem" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:2 -#, fuzzy msgid "ZFS filesystem snapshot" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:3 -#, fuzzy msgid "ZFS block storage device" -msgstr "Datei ist ein Block-Gerät" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:4 msgid "ZFS snapshot bookmark" @@ -2901,14 +2761,12 @@ msgid "Any ZFS dataset" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:6 -#, fuzzy msgid "Dataset-specific value" -msgstr "Angegebene Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:7 -#, fuzzy msgid "Default ZFS value" -msgstr "Datum festlegen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:8 msgid "Value inherited from parent dataset" @@ -2919,19 +2777,16 @@ msgid "Value received by 'zfs receive'" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:10 -#, fuzzy msgid "Value valid for the current mount" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:11 -#, fuzzy msgid "Read-only value" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:12 -#, fuzzy msgid "Dataset full name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:13 #: /tmp/fish/explicit/share/completions/zpool.fish:2 @@ -2939,15 +2794,13 @@ msgstr "Dienstname" #: /tmp/fish/implicit/share/completions/minikube.fish:26 #: /tmp/fish/implicit/share/completions/minikube.fish:27 #: /tmp/fish/implicit/share/completions/minikube.fish:28 -#, fuzzy msgid "Property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:14 #: /tmp/fish/explicit/share/completions/zpool.fish:3 -#, fuzzy msgid "Property value" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:15 #: /tmp/fish/explicit/share/completions/zpool.fish:4 @@ -2955,24 +2808,20 @@ msgid "Property value origin" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:16 -#, fuzzy msgid "Identity type" -msgstr "Datei identifizieren" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:17 -#, fuzzy msgid "Identity name" -msgstr "Datei identifizieren" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:18 -#, fuzzy msgid "Space usage" -msgstr "Quellpaket anzeigen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:19 -#, fuzzy msgid "Space quota" -msgstr "Markierungszeichen festlegen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:20 msgid "POSIX user" @@ -2992,14 +2841,12 @@ msgid "POSIX group" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:24 -#, fuzzy msgid "Samba group" -msgstr "Auswahl per Gruppe" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:26 -#, fuzzy msgid "Also needs the permission to be allowed" -msgstr "Auswahl, wie Passwortsätze verstümmelt werden" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:27 msgid "" @@ -3036,9 +2883,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:37 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:26 -#, fuzzy msgid "Volume block size" -msgstr "Blockgröße festlegen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:38 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:1 @@ -3048,9 +2894,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:39 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:2 -#, fuzzy msgid "Update access time on read" -msgstr "Zugriffszeit behalten" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:40 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:3 @@ -3059,27 +2904,23 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:41 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:4 -#, fuzzy msgid "Data checksum" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:42 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:5 -#, fuzzy msgid "Compression algorithm" -msgstr "Benutze angegebenen Kompressionsalgorithmus" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:43 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:6 -#, fuzzy msgid "Number of copies of data" -msgstr "Alle Zeilen nummerieren" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:44 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:7 -#, fuzzy msgid "Deduplication" -msgstr "Nicht doppelte Zeilen entfernen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:45 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:2 @@ -3090,21 +2931,18 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:46 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:3 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:9 -#, fuzzy msgid "Can contained executables be executed" -msgstr "Befehle auf Standardfehlerausgabe ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:47 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:10 -#, fuzzy msgid "Max number of filesystems and volumes" -msgstr "Maximalanzahl geschachtelter Blöcke erreicht." +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:48 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:11 -#, fuzzy msgid "Mountpoint" -msgstr "Einhängepunkt" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:49 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:12 @@ -3118,22 +2956,19 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:51 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:14 -#, fuzzy msgid "Max number of snapshots" -msgstr "Anzahl gleichzeitiger Jobs" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:52 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:4 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:15 -#, fuzzy msgid "Read-only" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:53 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:16 -#, fuzzy msgid "Suggest block size" -msgstr "Blockgröße festlegen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:54 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:17 @@ -3178,9 +3013,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:62 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:25 -#, fuzzy msgid "Hide .zfs directory" -msgstr "Datei ist ein Verzeichnis" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:63 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:26 @@ -3189,9 +3023,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:64 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:27 -#, fuzzy msgid "Volume logical size" -msgstr "Blockgröße festlegen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:65 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:38 @@ -3230,9 +3063,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:79 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:35 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:45 -#, fuzzy msgid "On-disk version of filesystem" -msgstr "Nur neuere Dateien speichern" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:71 #: /tmp/fish/explicit/share/completions/zfs.fish:80 @@ -3247,9 +3079,8 @@ msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:10 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:37 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:47 -#, fuzzy msgid "Extended attributes" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:73 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:39 @@ -3264,9 +3095,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:78 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:44 -#, fuzzy msgid "Hide volume snapshots" -msgstr "Ein oder mehrere Paket(e) entfernen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:82 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:30 @@ -3281,9 +3111,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:84 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:1 -#, fuzzy msgid "Unicode normalization" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:85 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:2 @@ -3294,30 +3123,25 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:87 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:8 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:9 -#, fuzzy msgid "Case sensitivity" -msgstr "Groß-/Klein-Schreibung nicht unterscheiden" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:88 -#, fuzzy msgid "Space properties" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:89 #: /tmp/fish/explicit/share/completions/zfs.fish:90 -#, fuzzy msgid "Dataset name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:1 -#, fuzzy msgid "Pool full name" -msgstr "Dateiname ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:5 -#, fuzzy msgid "Mirror of at least two devices" -msgstr "Datei ist ein Block-Gerät" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:6 #: /tmp/fish/explicit/share/completions/zpool.fish:7 @@ -3337,14 +3161,12 @@ msgid "Pseudo vdev for pool hot spares" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:11 -#, fuzzy msgid "SLOG device" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:12 -#, fuzzy msgid "L2ARC device" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:13 msgid "Physically allocated space" @@ -3354,9 +3176,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:15 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:1 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:2 -#, fuzzy msgid "Available space" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:16 msgid "System boot partition size" @@ -3367,9 +3188,8 @@ msgid "Usage percentage of pool" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:18 -#, fuzzy msgid "Deduplication ratio" -msgstr "Lese-/Schreib-Modus" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:19 msgid "Amount of uninitialized space within the pool" @@ -3392,9 +3212,8 @@ msgid "Pool GUID" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:24 -#, fuzzy msgid "Current pool health" -msgstr "Quellpaket anzeigen" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:25 msgid "Total pool space" @@ -3410,21 +3229,18 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:28 #: /tmp/fish/explicit/share/completions/zpool.fish:29 -#, fuzzy msgid "Alternate root directory" -msgstr "Verzeichnis" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:30 #: /tmp/fish/explicit/share/completions/zpool.fish:31 -#, fuzzy msgid "Import pool in read-only mode" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:32 #: /tmp/fish/explicit/share/completions/zpool.fish:33 -#, fuzzy msgid "Automatic pool expansion on LUN growing" -msgstr "Automatische Zeilenende-Verarbeitung" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:34 #: /tmp/fish/explicit/share/completions/zpool.fish:35 @@ -3436,9 +3252,8 @@ msgid "Default bootable dataset" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:37 -#, fuzzy msgid "Pool configuration cache" -msgstr "Konfigurationsdatei ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:38 msgid "Comment about the pool" @@ -3461,28 +3276,24 @@ msgid "Display snapshots even if 'zfs list' does not use '-t'" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:43 -#, fuzzy msgid "On-disk version of pool" -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:44 msgid "%sEnable the %s feature\\n" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:45 -#, fuzzy msgid "All properties" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:1 -#, fuzzy msgid "%s: Could not figure out what to do!\\n" -msgstr "%s: Konnte Startverzeichnis nicht finden\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:2 -#, fuzzy msgid "%s %s: Requires at least two arguments\\n" -msgstr "%s: Erwartete ein Argument, erhielt %s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:3 #: /tmp/fish/explicit/share/functions/abbr.fish:5 @@ -3501,9 +3312,8 @@ msgid "%s %s: No abbreviation named %s\\n" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:7 -#, fuzzy msgid "%s %s: Requires exactly two arguments\\n" -msgstr "%s: Erwartete ein Argument, erhielt %s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:11 msgid "%s %s: Abbreviation %s already exists, cannot rename %s\\n" @@ -3514,52 +3324,13 @@ msgstr "" msgid "%s %s: Unexpected argument -- '%s'\\n" msgstr "" -#: /tmp/fish/explicit/share/functions/abbr_old.fish:1 -#, fuzzy -msgid "%s: invalid option -- %s\\n" -msgstr "%s: Ungültige Prozesskennung -- %ls\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:2 -msgid "%s: %s cannot be specified along with %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:3 -#, fuzzy -msgid "%s: option requires an argument -- %s\\n" -msgstr "%s: Erwartete ein Argument, erhielt %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:4 -#, fuzzy -msgid "%s: Unexpected argument -- %s\\n" -msgstr "%s: Argument erwartet -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:5 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:8 -msgid "%s: abbreviation cannot have spaces in the key\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:6 -msgid "%s: abbreviation must have a value\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:7 -msgid "%s: abbreviation '%s' already exists, cannot rename\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:9 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:10 -msgid "%s: no such abbreviation '%s'\\n" -msgstr "" - #: /tmp/fish/explicit/share/functions/alias.fish:1 -#, fuzzy msgid "%s: Name cannot be empty\\n" -msgstr "%s: Variablenname kann nicht leer sein\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/alias.fish:2 -#, fuzzy msgid "%s: Body cannot be empty\\n" -msgstr "%s: Variablenname kann nicht leer sein\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/cd.fish:1 msgid "Too many args for cd command" @@ -3599,27 +3370,16 @@ msgid "Ignoring the output of your editor since its exit status was non-zero" msgstr "" #: /tmp/fish/explicit/share/functions/edit_command_buffer.fish:4 -#, fuzzy msgid "or the file was empty" -msgstr "Nicht vorhandene Dateien als leer behandeln" - -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:2 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:3 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:4 -#: /tmp/fish/explicit/share/functions/__fish_complete_unrar.fish:1 -msgid "%s\\tArchived file\\n" msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:3 -#, fuzzy msgid "Achieved compression ratio" -msgstr "Kompressionsraten ausgeben" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:4 -#, fuzzy msgid "Dataset creation time" -msgstr "Vergleiche Monatsnamen" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:5 msgid "Snapshot clones" @@ -3635,9 +3395,8 @@ msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:8 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:9 -#, fuzzy msgid "Logical total space" -msgstr "Log in Datei schreiben" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:10 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:11 @@ -3645,14 +3404,12 @@ msgid "Logical used space" msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:12 -#, fuzzy msgid "Is currently mounted?" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:13 -#, fuzzy msgid "Source snapshot" -msgstr "Ja erzwingen" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:14 msgid "Token for interrupted reception resumption" @@ -3660,14 +3417,12 @@ msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:15 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:16 -#, fuzzy msgid "Total space" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:17 -#, fuzzy msgid "Achieved compression ratio of referenced space" -msgstr "Zeige den für eine Nachricht benutzten Sitzungsschlüssel an" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:18 msgid "Total lower-level snapshots" @@ -3728,24 +3483,20 @@ msgid "%sMax usage by group %s\\n" msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:3 -#, fuzzy msgid "Allow overlay mount" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:4 -#, fuzzy msgid "SELinux context for the child filesystem" -msgstr "Nur die Datenbank, nicht das Dateisystem aktualisieren" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:5 -#, fuzzy msgid "SELinux context for the filesystem being mounted" -msgstr "Nur die Datenbank, nicht das Dateisystem aktualisieren" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:6 -#, fuzzy msgid "SELinux context for unlabeled files" -msgstr "Bei unlesbaren Dateien nicht abbrechen" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:7 msgid "SELinux context for the root inode of the filesystem" @@ -3761,9 +3512,8 @@ msgid "%s: Too many arguments %s\\n" msgstr "" #: /tmp/fish/explicit/share/functions/__fish_move_last.fish:1 -#, fuzzy msgid "Hit end of history…\\n" -msgstr "Ende des Befehlsverlaufs errreicht ...\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/fish_opt.fish:1 msgid "%s: The --short flag is required and must be a single character\\n" @@ -3786,9 +3536,8 @@ msgid "Package" msgstr "Paket" #: /tmp/fish/explicit/share/functions/fish_update_completions.fish:1 -#, fuzzy msgid "python executable not found" -msgstr "Entfernten Befehl nicht ausführen" +msgstr "" #: /tmp/fish/explicit/share/functions/funced.fish:2 msgid "Editing failed or was cancelled" @@ -3803,14 +3552,12 @@ msgid "Edit the file again\\? [Y/n]" msgstr "" #: /tmp/fish/explicit/share/functions/funced.fish:5 -#, fuzzy msgid "Cancelled function editing" -msgstr "Funktionsdefinitonsblock" +msgstr "" #: /tmp/fish/explicit/share/functions/funcsave.fish:1 -#, fuzzy msgid "%s: Could not create configuration directory\\n" -msgstr "%s: Konnte Startverzeichnis nicht finden\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/funcsave.fish:2 msgid "%s: Unknown function '%s'\\n" @@ -3829,9 +3576,8 @@ msgid "help: Help is being displayed in %s.\\n" msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:1 -#, fuzzy msgid "%ls: you cannot use any options with the %ls command\\n" -msgstr "%ls: Sie können keine Option mit dem %ls Befehl verwenden\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:2 msgid "%ls: %ls expected %d args, got %d\\n" @@ -3855,9 +3601,8 @@ msgid "You did not say 'yes' so I will not clear your command history\\n" msgstr "" #: /tmp/fish/explicit/share/functions/isatty.fish:1 -#, fuzzy msgid "%s: Too many arguments" -msgstr "%s: Zu viele Argumente" +msgstr "" #: /tmp/fish/explicit/share/functions/nextd.fish:1 #: /tmp/fish/explicit/share/functions/prevd.fish:1 @@ -3881,14 +3626,12 @@ msgid "%s: These flags are not allowed by fish realpath: '%s'" msgstr "" #: /tmp/fish/explicit/share/functions/seq.fish:1 -#, fuzzy msgid "%s: Expected 1, 2 or 3 arguments, got %d\\n" -msgstr "%s: Erwartete ein Argument, erhielt %d\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/seq.fish:2 -#, fuzzy msgid "%s: '%s' is not a number\\n" -msgstr "%s: '%s' ist kein Job\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/setenv.fish:1 #: /tmp/fish/explicit/share/functions/umask.fish:3 @@ -3912,9 +3655,8 @@ msgid "%s is a builtin\\n" msgstr "%s ist ein eingebauter Befehl\\n" #: /tmp/fish/explicit/share/functions/type.fish:4 -#, fuzzy msgid "builtin" -msgstr "eingebauter Befehl\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/type.fish:5 msgid "%s is %s\\n" @@ -3925,9 +3667,8 @@ msgid "file" msgstr "Datei" #: /tmp/fish/explicit/share/functions/type.fish:7 -#, fuzzy msgid "%s: Could not find '%s'\\n" -msgstr "%s: Konnte '%s' nicht finden" +msgstr "" #: /tmp/fish/explicit/share/functions/umask.fish:1 #: /tmp/fish/explicit/share/functions/umask.fish:2 @@ -3947,27 +3688,20 @@ msgid "%s: Value '%s' for flag '%s' greater than max allowed of '%s'\\n" msgstr "" #: /tmp/fish/explicit/share/functions/vared.fish:1 -#, fuzzy msgid "%s: Unknown option %s\\n" -msgstr "%s: Unbekannte Option %s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/vared.fish:2 -#, fuzzy msgid "" "%s: %s is an array variable. Use %svared%s %s[n]%s to edit the n:th element " "of %s\\n" msgstr "" -"%s: %s ist eine Feldvariable. Benutzen Sie %svared%s %s[n]%s zum Editieren " -"den n. Elementes von %s\\n" #: /tmp/fish/explicit/share/functions/vared.fish:3 -#, fuzzy msgid "" "%s: Expected exactly one argument, got %s.\\n\\nSynopsis:\\n\\t%svared%s " "VARIABLE\\n" msgstr "" -"%s: Erwartete genau ein Argument, erhielt %s.\\n\\nSynopsis:\\n\\t%svared%s " -"VARIABLE\\n" #: /tmp/fish/implicit/share/config.fish:1 msgid "Update PATH when fish_user_paths changes" @@ -3983,9 +3717,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/a2enconf.fish:1 #: /tmp/fish/implicit/share/completions/a2enmod.fish:1 #: /tmp/fish/implicit/share/completions/a2ensite.fish:1 -#, fuzzy msgid "Don't show informative messages" -msgstr "Informative Nachrichten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/a2disconf.fish:2 #: /tmp/fish/implicit/share/completions/a2dismod.fish:2 @@ -3994,24 +3727,20 @@ msgid "Purge all traces of module" msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:1 -#, fuzzy msgid "Add abbreviation" -msgstr "Handbuch-Sektionen" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:2 -#, fuzzy msgid "Erase abbreviation" -msgstr "Handbuch-Sektionen" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:3 -#, fuzzy msgid "Print all abbreviations" -msgstr "Handbuch-Sektionen" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:4 -#, fuzzy msgid "Print all abbreviation names" -msgstr "Alle Namen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:5 #: /tmp/fish/implicit/share/completions/help.fish:11 @@ -4022,24 +3751,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:1 #: /tmp/fish/implicit/share/completions/grub-install.fish:32 -#, fuzzy msgid "Show usage" -msgstr "Quellpaket anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:2 -#, fuzzy msgid "Use an alternative configuration file" -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:3 -#, fuzzy msgid "Use an alternative addressbook file" -msgstr "Muster aus Datei nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:4 -#, fuzzy msgid "Make a query for mutt" -msgstr "Datei-Deskriptor für Eingabe" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:5 msgid "Read email message from stdin and add the sender" @@ -4054,41 +3779,35 @@ msgid "Convert address book files" msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:8 -#, fuzzy msgid "Input file format" -msgstr "Zusätzliches Vollformat" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:9 -#, fuzzy msgid "Output file format" -msgstr "Ausgabe im ISO 8601-Format" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:10 msgid "Input file (default: stdin)" msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:11 -#, fuzzy msgid "Output file (default: stdout)" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:12 -#, fuzzy msgid "Print available formats" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/acat.fish:1 #: /tmp/fish/implicit/share/completions/als.fish:1 #: /tmp/fish/implicit/share/completions/aunpack.fish:1 -#, fuzzy msgid "Archive content" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/accept.fish:1 #: /tmp/fish/implicit/share/completions/cupsaccept.fish:1 -#, fuzzy msgid "Accept reason" -msgstr "Zu akzeptierende Protokolle" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:1 #: /tmp/fish/implicit/share/completions/grep.fish:23 @@ -4097,93 +3816,76 @@ msgid "Ignore case" msgstr "Gross-/Kleinschreibung ignorieren" #: /tmp/fish/implicit/share/completions/ack.fish:2 -#, fuzzy msgid "Ignore case when pattern contains no uppercase" -msgstr "Groß-/Kleinschreibung beim Dateinamenvergleich ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:3 -#, fuzzy msgid "Don't ignore case" -msgstr "Gross-/Kleinschreibung ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:4 -#, fuzzy msgid "Invert match" -msgstr "Bedeutung der Treffer umkehren" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:5 -#, fuzzy msgid "Match only whole words" -msgstr "Nur vollständig übereinstimmende Worte" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:6 -#, fuzzy msgid "Quote all metacharacters" -msgstr "Benutze per 'backslash (\\)'maskierte Zeichen " +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:7 -#, fuzzy msgid "Only print line(s) NUM of each file" -msgstr "Nur Anzahl von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:8 -#, fuzzy msgid "Only print filenames containing matches" -msgstr "Nur Anzahl von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:9 -#, fuzzy msgid "Only print filenames with no matches" -msgstr "Nur Anzahl von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:10 msgid "Output the evaluation of Perl expression for each line" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:11 -#, fuzzy msgid "Output the part of line matching pattern" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:12 -#, fuzzy msgid "Print all lines" -msgstr "Alle Namen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:13 -#, fuzzy msgid "Specify pattern explicitly" -msgstr "Vertrauensmodell angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:14 -#, fuzzy msgid "Stop searching in each file after NUM matches" -msgstr "Lesen nach NUM Treffern beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:15 -#, fuzzy msgid "Stop searching after first match" -msgstr "Lesen nach NUM Treffern beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:16 -#, fuzzy msgid "Print the filename for each match" -msgstr "Byte-Offset von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:17 -#, fuzzy msgid "Suppress the prefixing filename on output" -msgstr "Dateinamenausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:18 -#, fuzzy msgid "Show number of lines matching per file" -msgstr "Anzeigen, wer eine Datei beobachtet" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:19 -#, fuzzy msgid "Show column number of first match" -msgstr "Befehlsnamen eines jeden Jobs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:20 msgid "Don't show column number of first match" @@ -4209,19 +3911,16 @@ msgid "Print null byte as separator between filenames" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:25 -#, fuzzy msgid "Suppress error messages about file errors" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:26 -#, fuzzy msgid "Pipes all ack output through command" -msgstr "Ausgabe durch angegebenen Befehl schicken" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:27 -#, fuzzy msgid "Do not send output through a pager" -msgstr "Ausgabe durch 'pr' schicken" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:28 msgid "Prints a filename heading above file's results" @@ -4232,9 +3931,8 @@ msgid "Don't print a filename heading above file's results" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:30 -#, fuzzy msgid "Print a break between results" -msgstr "Wartezeiten zwischen Abrufversuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:31 msgid "Don't print a break between results" @@ -4249,9 +3947,8 @@ msgid "No filename heading and no line breaks between results" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:34 -#, fuzzy msgid "Highlight the matching text" -msgstr "Ein Suchziel hervorheben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:35 msgid "Don't highlight the matching text" @@ -4262,9 +3959,8 @@ msgid "Set the color for filenames" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:37 -#, fuzzy msgid "Set the color for matches" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:38 msgid "Set the color for line numbers" @@ -4275,14 +3971,12 @@ msgid "Flush output immediately" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:40 -#, fuzzy msgid "Only print the files selected" -msgstr "Nur einmalige Zeilen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:41 -#, fuzzy msgid "Only select files matching pattern" -msgstr "Dem Muster entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:42 msgid "Sort the found files lexically" @@ -4293,38 +3987,32 @@ msgid "Show which types each file has" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:44 -#, fuzzy msgid "Read the list of files to search from file" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:45 msgid "Read the list of files to search from STDIN" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:46 -#, fuzzy msgid "Ignore directory" -msgstr "include-Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:47 -#, fuzzy msgid "Don't ignore directory" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:48 -#, fuzzy msgid "Add filter for ignoring files" -msgstr "Datentyp für Binärdateien unterstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:49 -#, fuzzy msgid "Recurse into subdirectories" -msgstr "in Unterverzeichnis verzweigen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:50 -#, fuzzy msgid "No descending into subdirectories" -msgstr "Aktion für Verzeichnisse" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:51 #: /tmp/fish/implicit/share/completions/file.fish:7 @@ -4343,83 +4031,70 @@ msgid "Don't follow symlinks" msgstr "Symbolischen Links nicht folgen" #: /tmp/fish/implicit/share/completions/ack.fish:53 -#, fuzzy msgid "Include only recognized files" -msgstr "Nur die folgenden Namen einschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:54 -#, fuzzy msgid "Include only X files" -msgstr "Nur die folgenden Namen einschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:55 msgid "Replaces definition of type" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:56 -#, fuzzy msgid "Specify definition of type" -msgstr "Ziel-E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:57 -#, fuzzy msgid "Removes all filters associated with type" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:58 -#, fuzzy msgid "Ignores environment variables and ackrc files" -msgstr "Umgebungsvariablen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:59 -#, fuzzy msgid "Specifies location of ackrc file" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:60 -#, fuzzy msgid "Ignore default definitions ack includes" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:61 -#, fuzzy msgid "Outputs default ackrc" -msgstr "Standardaktion für mime-Typ ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:62 #: /tmp/fish/implicit/share/completions/udisksctl.fish:1 #: /tmp/fish/implicit/share/completions/udisksctl.fish:2 -#, fuzzy msgid "Shows help" -msgstr "Zeige versteckte Dateien" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:63 -#, fuzzy msgid "Shows all known types" -msgstr "Arp-Einträge anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:64 msgid "Dump information on which options are loaded" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:65 -#, fuzzy msgid "Forces ack to treat input as a pipe" -msgstr "Die Eingabe aus einer Pipe erwarten" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:66 msgid "Forces ack to treat input as tty" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:67 -#, fuzzy msgid "Shows man page" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:68 -#, fuzzy msgid "Displays version and copyright" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:69 msgid "Bill the Cat" @@ -4430,34 +4105,28 @@ msgid "The warning admiral" msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:1 -#, fuzzy msgid "Show battery information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:2 -#, fuzzy msgid "Suppress battery information" -msgstr "Informationelle Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:3 -#, fuzzy msgid "Show thermal information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:4 -#, fuzzy msgid "Suppress thermal information" -msgstr "Informationelle Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:5 -#, fuzzy msgid "Show ac adapter information" -msgstr "apropos-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:6 -#, fuzzy msgid "Suppress ac-adapter information" -msgstr "Informationelle Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:7 msgid "Show every device, overrides above options" @@ -4536,7 +4205,6 @@ msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:5 #: /tmp/fish/implicit/share/completions/entr.fish:3 #: /tmp/fish/implicit/share/completions/env.fish:5 -#: /tmp/fish/implicit/share/completions/eval.fish:1 #: /tmp/fish/implicit/share/completions/exec.fish:1 #: /tmp/fish/implicit/share/completions/exit.fish:1 #: /tmp/fish/implicit/share/completions/fg.fish:1 @@ -4626,14 +4294,12 @@ msgstr "Hilfe anzeigen und beenden" #: /tmp/fish/implicit/share/completions/timeout.fish:5 #: /tmp/fish/implicit/share/completions/watch.fish:12 #: /tmp/fish/implicit/share/completions/xgettext.fish:39 -#, fuzzy msgid "Output version information and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:1 -#, fuzzy msgid "Test if adb has yet to be given the subcommand" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:2 msgid "Run adb devices and parse output" @@ -4656,29 +4322,24 @@ msgid "Communicate with emulator" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:7 -#, fuzzy msgid "Connect to device" -msgstr "Aktion für Gerätedateien" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:8 -#, fuzzy msgid "Disconnect from device" -msgstr "Aktion für Gerätedateien" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:9 -#, fuzzy msgid "List all connected devices" -msgstr "Wichtige Abhängigkeiten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:10 -#, fuzzy msgid "Copy file to device" -msgstr "Datei ist ein Block-Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:11 -#, fuzzy msgid "Copy file from device" -msgstr "Datei aus Datei extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:12 msgid "Copy host->device only if changed" @@ -4697,51 +4358,44 @@ msgid "View device log" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:16 -#, fuzzy msgid "Install package" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:17 -#, fuzzy msgid "Uninstall package" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:18 msgid "List PIDs of processes hosting a JDWP transport" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:19 -#, fuzzy msgid "Port forwarding" -msgstr "Dynamische Port-Weiterleitung" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:20 -#, fuzzy msgid "Return bugreport information" -msgstr "Keine Gruppeninformation ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:21 -#, fuzzy msgid "Perform device backup" -msgstr "Trennung ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:22 msgid "Restore device from backup" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:23 -#, fuzzy msgid "Show adb version" -msgstr "Sortierung nach Version" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:24 msgid "Show adb help" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:25 -#, fuzzy msgid "Block until device is online" -msgstr "Blockorientiertes Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:26 msgid "Ensure that there is a server running" @@ -4760,24 +4414,20 @@ msgid "Reboots the device, optionally into the bootloader or recovery program" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:30 -#, fuzzy msgid "Prints state of the device" -msgstr "Wichtige Abhängigkeiten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:31 -#, fuzzy msgid "Prints serial number of the device" -msgstr "Inode-Nummer der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:32 -#, fuzzy msgid "Prints device path" -msgstr "Dienststatus ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:33 -#, fuzzy msgid "Continuously print the device status" -msgstr "Dienststatus ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:34 msgid "Restart the adbd daemon with root permissions" @@ -4796,9 +4446,8 @@ msgid "Run PPP over USB" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:38 -#, fuzzy msgid "Sideloads the given package" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:39 msgid "Kick current connection from host side and make it reconnect." @@ -4809,46 +4458,40 @@ msgid "Forward-lock the app" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:41 -#, fuzzy msgid "Reinstall the app keeping its data" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:42 msgid "Install on SD card instead of internal storage" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:43 -#, fuzzy msgid "Algorithm name" -msgstr "MAC-Algorithmus" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:44 msgid "Hex-encoded key" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:45 -#, fuzzy msgid "Hex-encoded iv" -msgstr "Standardeingabe umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:46 -#, fuzzy msgid "Keep the data and cache directories" -msgstr "Keine Verzeichnis-Hierarchie erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:47 msgid "Also list device qualifiers" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:48 -#, fuzzy msgid "Device to disconnect" -msgstr "Geräte-Sektion" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:49 -#, fuzzy msgid "File to write backup data to" -msgstr "Beschreibung des Patchpaketes editieren" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:50 msgid "Enable backup of the .apks themselves" @@ -4876,14 +4519,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:56 -#, fuzzy msgid "Back up all installed applications" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:57 -#, fuzzy msgid "Include system applications in -all (default)" -msgstr "Dokumentationsdateien installieren (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:58 msgid "Exclude system applications in -all" @@ -4894,9 +4535,8 @@ msgid "Package(s) to backup" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:60 -#, fuzzy msgid "List all forward socket connections" -msgstr "Funktionen auflisten oder entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:61 msgid "Fails the forward if local is already forwarded" @@ -4907,9 +4547,8 @@ msgid "Remove a specific forward socket connection" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:63 -#, fuzzy msgid "Remove all forward socket connections" -msgstr "entfernt weitergeleitete Ports" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:64 msgid "Kick current connection from device side and make it reconnect." @@ -4956,14 +4595,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:8 -#, fuzzy msgid "Display brief instructions" -msgstr "Kompressionsrate anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:9 -#, fuzzy msgid "Use specified directory as the user's home directory" -msgstr "Angegebenen Schlüssel als Schlüssel zum Signieren verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:10 msgid "" @@ -4978,9 +4615,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:12 -#, fuzzy msgid "Do not create the home directory, even if it doesni't exist" -msgstr "Keine Verzeichnis-Hierarchie erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:13 msgid "Suppress informational messages, only show warnings and errors" @@ -4995,9 +4631,8 @@ msgid "Create a system user or group" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:16 -#, fuzzy msgid "Force the new userid to be the given number" -msgstr "Schlüsselserver nach den angegebenen Namen durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:17 msgid "" @@ -5016,9 +4651,8 @@ msgid "Add new user to extra groups defined in the configuration file" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:20 -#, fuzzy msgid "Display version and copyright information" -msgstr "Magische Versionsinformation ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:1 msgid "Save current driver state" @@ -5037,18 +4671,16 @@ msgid "Try to restore control elements as much as possible" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:5 -#, fuzzy msgid "Ignore missing soundcards" -msgstr "Fehlende Pakete ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:6 msgid "Do not restore mismatching control elements" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:7 -#, fuzzy msgid "Do not init if restore fails" -msgstr "Zeilen nicht ohne Begrenzer ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:8 msgid "Initialize all devices to a default state" @@ -5067,43 +4699,36 @@ msgid "Notify daemon to do an operation" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:12 -#, fuzzy msgid "Monitor events" -msgstr "Benutzer beobachten" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:13 -#, fuzzy msgid "Show available flags and commands" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:14 msgid "Make output a bit more verbose" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:15 -#, fuzzy msgid "Print alsactl version number" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:16 -#, fuzzy msgid "Select the configuration file to use" -msgstr "Liste der rpm-Konfigurationsdateien" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:17 -#, fuzzy msgid "Use a lock file" -msgstr "1B-Blockgröße verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:18 -#, fuzzy msgid "Do not use a lock file" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:19 -#, fuzzy msgid "Select the state lock file path" -msgstr "Schnittstelle auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:20 msgid "Save restore and init state to this file" @@ -5114,33 +4739,28 @@ msgid "Remove runstate file at first" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:22 -#, fuzzy msgid "Set environment variable" -msgstr "Behandlung von Umgebungsvariablen" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:23 -#, fuzzy msgid "The configuration file for init" -msgstr "Konfigurationsdatei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:24 msgid "The store period in seconds for the daemon command" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:25 -#, fuzzy msgid "The PID file to use" -msgstr "Mail an Benutzer senden" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:26 -#, fuzzy msgid "Run the task in background" -msgstr "Job im Hintergrund ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:27 -#, fuzzy msgid "Use syslog for messages" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:28 msgid "Set the process priority (see 'man nice')" @@ -5166,57 +4786,48 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:2 #: /tmp/fish/implicit/share/completions/mocha.fish:1 #: /tmp/fish/implicit/share/completions/modinfo.fish:11 -#: /tmp/fish/implicit/share/completions/netcat.fish:7 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:1 #: /tmp/fish/implicit/share/completions/poweroff.fish:1 #: /tmp/fish/implicit/share/completions/terraform.fish:2 #: /tmp/fish/implicit/share/completions/yast2.fish:2 -#, fuzzy msgid "Show help" -msgstr "Zeige versteckte Dateien" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:2 -#, fuzzy msgid "Soundcard number or id to use" -msgstr "Anzahl der Versuche auf Anzahl festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:3 -#, fuzzy msgid "Mixer device to control" -msgstr "Bereichskontrolle" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:4 -#, fuzzy msgid "Starting view mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:5 -#, fuzzy msgid "Toggle the using of colors" -msgstr "Anzeige des entfernten Rechners ein/ausschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:6 msgid "Mixer abstraction level" msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:1 -#, fuzzy msgid "this help" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:2 -#, fuzzy msgid "select the card" -msgstr "Auswahl per Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:3 msgid "select the device, default 'default'" msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:4 -#, fuzzy msgid "debug mode" -msgstr "Debug-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:5 msgid "do not perform range checking" @@ -5227,24 +4838,20 @@ msgid "print version of this program" msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:7 -#, fuzzy msgid "be quiet" -msgstr "Erzwungene Beendigung" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:8 -#, fuzzy msgid "show also inactive controls" -msgstr "Interaktiven Modus erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:9 -#, fuzzy msgid "select abstraction level" -msgstr "Eine Aktion auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:10 -#, fuzzy msgid "Read and execute commands from stdin sequentially" -msgstr "Befehl ausführen, als ob es Teil von .wgetrc wäre" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:1 #: /tmp/fish/implicit/share/completions/compare.fish:1 @@ -5428,9 +5035,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:21 #: /tmp/fish/implicit/share/completions/display.fish:23 -#, fuzzy msgid "Displayed image cannot be modified" -msgstr "$ am Zeilenende anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:22 #: /tmp/fish/implicit/share/completions/compare.fish:18 @@ -5489,9 +5095,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:50 #: /tmp/fish/implicit/share/completions/montage.fish:40 #: /tmp/fish/implicit/share/completions/stream.fish:14 -#, fuzzy msgid "Monitor progress " -msgstr "Benutzer beobachten" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:28 msgid "Seconds to pause before reanimating" @@ -5526,9 +5131,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:60 #: /tmp/fish/implicit/share/completions/montage.fish:47 #: /tmp/fish/implicit/share/completions/stream.fish:16 -#, fuzzy msgid "Suppress all warning messages" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:32 #: /tmp/fish/implicit/share/completions/compare.fish:28 @@ -5640,9 +5244,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:80 #: /tmp/fish/implicit/share/completions/montage.fish:68 #: /tmp/fish/implicit/share/completions/stream.fish:27 -#, fuzzy msgid "Print detailed information about the image" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:42 #: /tmp/fish/implicit/share/completions/display.fish:49 @@ -5690,9 +5293,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:8 #: /tmp/fish/implicit/share/completions/montage.fish:23 #: /tmp/fish/implicit/share/completions/stream.fish:8 -#, fuzzy msgid "Extract area from image [geometry]" -msgstr "Datei aus Datei extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:48 #: /tmp/fish/implicit/share/completions/composite.fish:60 @@ -5757,17 +5359,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:56 #: /tmp/fish/implicit/share/completions/display.fish:88 #: /tmp/fish/implicit/share/completions/montage.fish:92 -#, fuzzy msgid "Merge a sequence of images" -msgstr "Name statt Nummer ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:57 #: /tmp/fish/implicit/share/completions/display.fish:89 #: /tmp/fish/implicit/share/completions/mogrify.fish:33 #: /tmp/fish/implicit/share/completions/montage.fish:77 -#, fuzzy msgid "Flatten a sequence of images" -msgstr "Name statt Nummer ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:58 #: /tmp/fish/implicit/share/completions/compare.fish:40 @@ -5778,9 +5378,8 @@ msgstr "Name statt Nummer ausgeben" #: /tmp/fish/implicit/share/completions/import.fish:65 #: /tmp/fish/implicit/share/completions/montage.fish:100 #: /tmp/fish/implicit/share/completions/stream.fish:29 -#, fuzzy msgid "Display copious debugging information [events]" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:59 #: /tmp/fish/implicit/share/completions/compare.fish:41 @@ -5791,9 +5390,8 @@ msgstr "Zeigt Benutzungsinformation für den Befehl" #: /tmp/fish/implicit/share/completions/import.fish:53 #: /tmp/fish/implicit/share/completions/montage.fish:101 #: /tmp/fish/implicit/share/completions/stream.fish:30 -#, fuzzy msgid "Print program options" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:60 #: /tmp/fish/implicit/share/completions/compare.fish:42 @@ -5869,9 +5467,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:11 #: /tmp/fish/implicit/share/completions/xz.fish:36 #: /tmp/fish/implicit/share/completions/yaourt.fish:12 -#, fuzzy msgid "Display help" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:4 #: /tmp/fish/implicit/share/completions/base64.fish:5 @@ -5879,50 +5476,41 @@ msgstr "Handbuchseite anzeigen" #: /tmp/fish/implicit/share/completions/lscpu.fish:9 #: /tmp/fish/implicit/share/completions/netctl.fish:2 #: /tmp/fish/implicit/share/completions/xz.fish:38 -#, fuzzy msgid "Display version" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:5 -#, fuzzy msgid "Enable colored output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:6 #: /tmp/fish/implicit/share/completions/magento.fish:25 -#, fuzzy msgid "Disable colored output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:7 -#, fuzzy msgid "Modify or list configuration items" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:8 -#, fuzzy msgid "Set config item" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:9 -#, fuzzy msgid "Get config item" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:10 -#, fuzzy msgid "Delete config item" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:11 -#, fuzzy msgid "List config items" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:12 -#, fuzzy msgid "Edit config items" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:13 msgid "Reduce duplication in node_modules in current directory" @@ -5951,9 +5539,8 @@ msgid "Open a package's homepage in the default browser" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:19 -#, fuzzy msgid "Print URL instead of opening" -msgstr "Überschrift ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:20 msgid "Output featured packages as JSON array" @@ -5962,37 +5549,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:21 #: /tmp/fish/implicit/share/completions/apm.fish:45 #: /tmp/fish/implicit/share/completions/apm.fish:73 -#, fuzzy msgid "Only list themes" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:22 msgid "Only list packages/themes compatible with specified Atom version" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:23 -#, fuzzy msgid "Generates code scaffolding for theme or package" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:24 msgid "Path to the package or theme template" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:25 -#, fuzzy msgid "Generates a basic package" -msgstr "Ein neues Schlüsselpaar erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:26 -#, fuzzy msgid "Generates a basic theme" -msgstr "Masterdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:27 -#, fuzzy msgid "Generates a basic language package" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:28 msgid "Convert TextMate bundle/theme" @@ -6008,25 +5590,21 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:31 #: /tmp/fish/implicit/share/completions/apm.fish:52 -#, fuzzy msgid "Show verbose debug information" -msgstr "apropos-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:32 -#, fuzzy msgid "Specify text file containing packages to install" -msgstr "Liste zu installierender Pakete" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:33 -#, fuzzy msgid "Do not install dev dependencies" -msgstr "Nicht automatisch Abhängigkeiten erfüllen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:34 #: /tmp/fish/implicit/share/completions/apm.fish:51 -#, fuzzy msgid "Only install packages/themes compatible with specified Atom version" -msgstr "Ein (deinstalliertes) Paket in der angegebenen Datei abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:35 msgid "Set npm log level to silent" @@ -6045,51 +5623,44 @@ msgid "Link to ~/.atom/dev/packages" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:39 -#, fuzzy msgid "List all installed and bundled packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:40 msgid "Print packages one per line with no formatting" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:41 -#, fuzzy msgid "Include dev packages" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:42 -#, fuzzy msgid "Only list installed packages/themes" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:43 msgid "Output all packages as a JSON object" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:44 -#, fuzzy msgid "Include linked packages" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:46 -#, fuzzy msgid "Only list packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:47 msgid "Save Atom API token to keychain" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:48 -#, fuzzy msgid "Specify API token" -msgstr "Optionen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:49 -#, fuzzy msgid "Upgrade out of date packages" -msgstr "Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:50 msgid "Output outdated packages as JSON array" @@ -6100,56 +5671,48 @@ msgid "Confirm before installing updates" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:54 -#, fuzzy msgid "List but don't install the outdated packages" -msgstr "Installierte(s) Quellpaket(e) auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:55 -#, fuzzy msgid "Publish new version of package in current working directory" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:56 msgid "Semantic version category for new version" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:57 -#, fuzzy msgid "Specify a tag to publish" -msgstr "Man-Pfad angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:58 -#, fuzzy msgid "Specify a new name for the package" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:59 msgid "Rebuild modules installed in node_modules in current working directory" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:60 -#, fuzzy msgid "Rebuild module cache for installed packages" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:61 -#, fuzzy msgid "Search for Atom packages/themes in the atom.io registry" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:62 msgid "Output matching packages as JSON array" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:63 -#, fuzzy msgid "Search only non-theme packages" -msgstr "In allen Handbuchseiten suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:64 -#, fuzzy msgid "Search only themes" -msgstr "Nach anderem System suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:65 msgid "View information about package/theme in the atom.io registry" @@ -6160,46 +5723,40 @@ msgid "Output as JSON array" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:67 -#, fuzzy msgid "Show latest version compatible with specified Atom version" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:68 msgid "Star the given packages on https://atom.io" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:69 -#, fuzzy msgid "Star all packages in ~/.atom/packages" -msgstr "Vollständigen Paketnamen suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:70 -#, fuzzy msgid "List or install starred Atom packages and themes" -msgstr "Installierte(s) Quellpaket(e) auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:71 msgid "Output packages as JSON array" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:72 -#, fuzzy msgid "Install the starred packages" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:74 msgid "GitHub username to show starred packages for" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:75 -#, fuzzy msgid "Runs the package's tests contained within the spec directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:76 -#, fuzzy msgid "Path to atom command" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:77 msgid "Delete the symlink in ~/.atom/packages for the package" @@ -6214,9 +5771,8 @@ msgid "Remove published package or version from the atom.io registry" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:82 -#, fuzzy msgid "Do not prompt for confirmation" -msgstr "Nicht nach einer Ablaufzeit fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:83 msgid "Unstar given packages on https://atom.io" @@ -6389,9 +5945,8 @@ msgid "Keyword as regex" msgstr "Schlüsselwort als regulärer Ausdruck" #: /tmp/fish/implicit/share/completions/apropos.fish:6 -#, fuzzy msgid "Keyword as wildcards" -msgstr "Schlüsselwort als Muster" +msgstr "" #: /tmp/fish/implicit/share/completions/apropos.fish:7 msgid "Keyword as exactly match" @@ -6504,9 +6059,8 @@ msgstr "Bei allen Fragen ja annehmen" #: /tmp/fish/implicit/share/completions/apt-build.fish:24 #: /tmp/fish/implicit/share/completions/apt-get.fish:35 -#, fuzzy msgid "Use purge instead of remove" -msgstr "purge anstelle von remove verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:25 msgid "Do not run update" @@ -6753,15 +6307,13 @@ msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" #: /tmp/fish/implicit/share/completions/apt.fish:3 #: /tmp/fish/implicit/share/completions/snap.fish:2 -#, fuzzy msgid "Test if given subcommand is used" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/apt.fish:7 #: /tmp/fish/implicit/share/completions/git.fish:4 -#, fuzzy msgid "Set a configuration option" -msgstr "Konfigurationsoption festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt.fish:8 #: /tmp/fish/implicit/share/completions/hugo.fish:1 @@ -6773,9 +6325,8 @@ msgid "Configuration file" msgstr "Konfigurationsdatei" #: /tmp/fish/implicit/share/completions/apt.fish:9 -#, fuzzy msgid "Target release" -msgstr "Zielzeile" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:2 msgid "Generate package from source" @@ -6852,14 +6403,12 @@ msgid "Install one or more packages" msgstr "Ein oder mehrere Paket(e) installieren" #: /tmp/fish/implicit/share/completions/apt-get.fish:10 -#, fuzzy msgid "Display changelog of one or more packages" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:11 -#, fuzzy msgid "Remove and purge one or more packages" -msgstr "Ein oder mehrere Paket(e) entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:12 msgid "Remove one or more packages" @@ -6886,14 +6435,12 @@ msgid "Clean packages no longer be downloaded" msgstr "Pakete, die nicht länger heruntergeladen werden, bereinigen" #: /tmp/fish/implicit/share/completions/apt-get.fish:18 -#, fuzzy msgid "Remove automatically installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:19 -#, fuzzy msgid "Do not install recommended packages" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:20 #: /tmp/fish/implicit/share/completions/aptitude.fish:28 @@ -6914,32 +6461,28 @@ msgid "Disable downloading packages" msgstr "Herunterladen von Paketen deaktivieren" #: /tmp/fish/implicit/share/completions/apt-get.fish:25 -#, fuzzy msgid "Perform a simulation" -msgstr "Simulation durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:26 msgid "Automatic yes to prompts" msgstr "Automatisch Ja für Abfragen verwenden" #: /tmp/fish/implicit/share/completions/apt-get.fish:27 -#, fuzzy msgid "Show upgraded packages" -msgstr "Pakete nicht aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:28 -#, fuzzy msgid "Show full versions for packages" -msgstr "Volle Versionen der Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:29 msgid "Compile source packages" msgstr "Quellpakete kompilieren" #: /tmp/fish/implicit/share/completions/apt-get.fish:30 -#, fuzzy msgid "Install recommended packages" -msgstr "Quellpakete installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:31 msgid "Ignore package Holds" @@ -6954,14 +6497,12 @@ msgid "Force yes" msgstr "Ja erzwingen" #: /tmp/fish/implicit/share/completions/apt-get.fish:34 -#, fuzzy msgid "Print the URIs" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:36 -#, fuzzy msgid "Reinstall packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:37 msgid "Erase obsolete files" @@ -7010,64 +6551,52 @@ msgid "Set a config option" msgstr "Konfigurationsoption festlegen" #: /tmp/fish/implicit/share/completions/aptitude.fish:1 -#, fuzzy msgid "Test if aptitude has yet to be given the subcommand" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:2 -#, fuzzy msgid "Test if aptitude command should have packages as potential completion" msgstr "" -"Testen, ob der apt-Befehl Pakete zur möglichen Fertigstellung haben sollte" #: /tmp/fish/implicit/share/completions/aptitude.fish:4 msgid "Display a brief help message. Identical to the help action" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:5 -#, fuzzy msgid "Remove any cached packages which can no longer be downloaded" -msgstr "Pakete, die nicht länger heruntergeladen werden, bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:6 -#, fuzzy msgid "Remove all downloaded .deb files from the package cache directory" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:7 -#, fuzzy msgid "Forget all internal information about what packages are 'new'" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:8 -#, fuzzy msgid "Cancel all scheduled actions on all packages" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:9 -#, fuzzy msgid "Update the list of available packages from the apt sources" -msgstr "Liste der Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:10 -#, fuzzy msgid "Upgrade installed packages to their most recent version" -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:11 -#, fuzzy msgid "Download and displays the Debian changelog for the packages" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:12 -#, fuzzy msgid "Upgrade, removing or installing packages as necessary" -msgstr "Neueste Pakete aktualisieren oder installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:13 -#, fuzzy msgid "Download the packages to the current directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:14 msgid "Forbid the upgrade to a particular version" @@ -7078,52 +6607,44 @@ msgid "Ignore the packages by future upgrade commands" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:16 -#, fuzzy msgid "Install the packages" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:17 -#, fuzzy msgid "Cancel any scheduled actions on the packages" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:18 -#, fuzzy msgid "Mark packages as automatically installed" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:19 msgid "Remove and delete all associated configuration and data files" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:20 -#, fuzzy msgid "Reinstall the packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:21 -#, fuzzy msgid "Remove the packages" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:22 -#, fuzzy msgid "Display detailed information about the packages" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:23 msgid "Consider the packages by future upgrade commands" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:24 -#, fuzzy msgid "Mark packages as manually installed" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:25 -#, fuzzy msgid "Search for packages matching one of the patterns" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:26 msgid "Display brief summary of the available commands and options" @@ -7134,23 +6655,20 @@ msgid "Show explanations of automatic installations and removals" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:30 -#, fuzzy msgid "Purge packages that are not required by any installed package" -msgstr "Pakete abfragen, die von den angegebenen Paketen aktiviert werden" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:31 msgid "Always display a prompt" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:32 -#, fuzzy msgid "Do not treat recommendations as dependencies" -msgstr "Nicht nach zusätzlichen Abhängigkeiten fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:33 -#, fuzzy msgid "Treat recommendations as dependencies" -msgstr "Zerstörte Abhängigkeiten korrigieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:34 msgid "Don't perform the actions. Just show them" @@ -7165,37 +6683,32 @@ msgid "Suppress incremental progress indicators" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:37 -#, fuzzy msgid "Show which versions of packages will be installed" -msgstr "Liste zu installierender Pakete" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:38 -#, fuzzy msgid "Display extra information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:39 -#, fuzzy msgid "Display the version of aptitude and compile information" -msgstr "Magische Versionsinformation ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:40 msgid "Start up the visual interface and display its preview screen" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:41 -#, fuzzy msgid "Assume the answer yes for all question prompts" -msgstr "Bei allen Fragen ja annehmen" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:42 msgid "Show how much disk space will be used or freed" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:43 -#, fuzzy msgid "Specify the format to be used by the search command" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:44 msgid "Set the release from which packages should be installed" @@ -7206,9 +6719,8 @@ msgid "Specify the order for the output from the search command" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:46 -#, fuzzy msgid "Set a configuration file option directly" -msgstr "Globale Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:47 msgid "Specify the display width for the output from the search command" @@ -7308,9 +6820,8 @@ msgid "Assume no to all questions" msgstr "Für alle Fragen nein annehmen" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:22 -#, fuzzy msgid "List bugs from packages" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:23 msgid "List bugs in rss format" @@ -7321,9 +6832,8 @@ msgid "Read filenames from pipe" msgstr "Dateinamen über Pipe lesen" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:4 -#, fuzzy msgid "Select frontend interface" -msgstr "Benutzerschnittstelle auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:5 #: /tmp/fish/implicit/share/completions/darcs.fish:749 @@ -7343,9 +6853,8 @@ msgid "Avoid changelogs from db in named file" msgstr "Änderungsprotokolle aus der Datenbank der benannten Datei vermeiden" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:9 -#, fuzzy msgid "Select display" -msgstr "X Server-Anzeige" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:10 msgid "Insert header" @@ -7361,49 +6870,40 @@ msgid "Select an option profile" msgstr "Optionsprofil auswählen" #: /tmp/fish/implicit/share/completions/apt-mark.fish:5 -#, fuzzy msgid "Mark a package as automatically installed" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:6 -#, fuzzy msgid "Mark a package as manually installed" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:7 -#, fuzzy msgid "Hold a package, prevent automatic installation or removal" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:8 -#, fuzzy msgid "Cancel a hold on a package" -msgstr "Informationen über ein Paket" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:9 -#, fuzzy msgid "Show automatically installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:10 -#, fuzzy msgid "Show manually installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:11 -#, fuzzy msgid "Show held packages" -msgstr "Aktualisierte Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:15 -#, fuzzy msgid "Write package statistics to a file" -msgstr "Prototypen in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:1 -#, fuzzy msgid "Generate master file" -msgstr "Veröffentlichungsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:2 msgid "Alias for 'get'" @@ -7446,16 +6946,12 @@ msgid "Sync packages installed" msgstr "Installierte Pakete synchronisieren" #: /tmp/fish/implicit/share/completions/apt-move.fish:13 -#, fuzzy msgid "Move file specified on commandline" -msgstr "Die auf der Befehlszeile angegebene Datei verschieben" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:14 -#, fuzzy msgid "List packages that may serve as input to mirrorbin or mirrorsource" msgstr "" -"Pakete auflisten, die als Quelle für mirrorbin oder mirrorsource dienen " -"können" #: /tmp/fish/implicit/share/completions/apt-move.fish:15 msgid "Fetch package from STDIN" @@ -7506,9 +7002,8 @@ msgid "Debug level[default 0]" msgstr "Debug-Grad [Standard 0]" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:2 -#, fuzzy msgid "Show build dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:3 msgid "Generate a dotty graph" @@ -7523,16 +7018,12 @@ msgid "List packages depending on" msgstr "Pakete auflisten, die abhängen von " #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:6 -#, fuzzy msgid "Comma-separated list of dependency types to follow recursively" msgstr "" -"Komma-getrennte Liste der Abhängigkeitstypen, die rekursiv abgearbeitet " -"werden" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:7 -#, fuzzy msgid "Comma-separated list of dependency types to show" -msgstr "Komma-getrennte Liste anzuzeigender Abhängigkeitstypen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:8 msgid "" @@ -7556,9 +7047,8 @@ msgid "Probe a CD" msgstr "Eine CD testen" #: /tmp/fish/implicit/share/completions/apt-setup.fish:2 -#, fuzzy msgid "Run in non-interactive mode" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-source.fish:2 #: /tmp/fish/implicit/share/completions/apt-show-source.fish:3 @@ -7619,9 +7109,8 @@ msgid "Specify conffile" msgstr "Konfigurationsdatei angeben" #: /tmp/fish/implicit/share/completions/apt-spy.fish:2 -#, fuzzy msgid "Debian distribution" -msgstr "Debian-Distribution" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:3 msgid "Servers in the areas" @@ -7636,9 +7125,8 @@ msgid "Finish after number of servers" msgstr "Nach Anzahl der Server beenden" #: /tmp/fish/implicit/share/completions/apt-spy.fish:6 -#, fuzzy msgid "File to grab servers" -msgstr "Datei für Serverantworten" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:7 msgid "File as input" @@ -7781,9 +7269,8 @@ msgstr "Eine Aktion auswählen" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:5 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:5 -#, fuzzy msgid "List of packages to install" -msgstr "Installierte Pakete synchronisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:6 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:6 @@ -7808,79 +7295,65 @@ msgid "Reject protocols" msgstr "Abzulehnende Protokolle" #: /tmp/fish/implicit/share/completions/arc.fish:1 -#, fuzzy msgid "Debugging command" -msgstr "Debugger-Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:2 #: /tmp/fish/implicit/share/completions/arc.fish:4 -#, fuzzy msgid "Don't use color or style for output" -msgstr "Keine ausführliche Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:3 -#, fuzzy msgid "Always use fromatting" -msgstr "immer neuformatieren" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:5 -#, fuzzy msgid "Specify which libraies to load" -msgstr "sendmail-Befehl angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:6 -#, fuzzy msgid "Specify the Conduit URI" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:7 -#, fuzzy msgid "Specify the Conduit token" -msgstr "Befehl an die Shell übergeben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:8 -#, fuzzy msgid "Force a version" -msgstr "Version des Quellenbaumes" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:9 -#, fuzzy msgid "Sets the timeout" -msgstr "Zeitüberschreitung für Netzwerk festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:10 -#, fuzzy msgid "Sets a config" -msgstr "Konfigurationsoption festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:11 -#, fuzzy msgid "Skip the working copy configuration file" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:12 -#, fuzzy msgid "Use provided file instead of ~/.arcrc" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:13 -#, fuzzy msgid "Implements shell completion" -msgstr "Keine Dateinamenvervollständigung benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:14 msgid "Current term in the argument list being completed" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:15 -#, fuzzy msgid "Reads an arc configuration option" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:16 -#, fuzzy msgid "Show detailed information about options" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:17 msgid "Download a file to local disk" @@ -7891,9 +7364,8 @@ msgid "Save the file with a specific name rather than the default" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:19 -#, fuzzy msgid "Write file to stdout instead of to disk" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:20 msgid "List your open Differential revisions" @@ -7908,14 +7380,12 @@ msgid "Override configured lint engine for this project" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:23 -#, fuzzy msgid "Apply patches suggested by lint to the working copy" -msgstr "Nicht aufgezeichnete Änderungen in der Arbeitskopie anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:24 -#, fuzzy msgid "Set minimum message severity" -msgstr "Schwere festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:25 #: /tmp/fish/implicit/share/completions/arc.fish:176 @@ -7923,14 +7393,12 @@ msgid "Never apply patches suggested by lint" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:26 -#, fuzzy msgid "Lint changes since a specific revision" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:27 -#, fuzzy msgid "Output the linter results to a file" -msgstr "rss-Data in Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:28 msgid "Show all lint warnings, not just those on changed lines" @@ -7942,9 +7410,8 @@ msgid "When linting git repositories, amend HEAD with all patches" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:30 -#, fuzzy msgid "Lint all files in the project" -msgstr "Alle Dateien als Text behandeln" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:31 msgid "Specify how results will be displayed" @@ -7968,9 +7435,8 @@ msgid "In the first form, list objects you've flagged" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:36 -#, fuzzy msgid "Edit the flag on an object" -msgstr "Standardmäßig den langen Kommentar editieren" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:37 msgid "Set the color of a flag" @@ -7981,14 +7447,12 @@ msgid "Delete the flag on an object" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:39 -#, fuzzy msgid "Set the note on a flag" -msgstr "Setzen der Terminalfarbe" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:40 -#, fuzzy msgid "Export the local changeset to a file" -msgstr "Prototypen in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:41 msgid "Export change as a unified patch" @@ -8048,9 +7512,8 @@ msgid "what they do and which versions are installed" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:55 -#, fuzzy msgid "Search for linters" -msgstr "Nach anderem System suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:56 msgid "Show detailed information, including options" @@ -8065,24 +7528,20 @@ msgid "Stop tracking work in Phrequent" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:59 -#, fuzzy msgid "A note to attach to the tracked time" -msgstr "An den Tracker zu sendende IP-Adresse" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:60 -#, fuzzy msgid "Create an alias" -msgstr "Archiv erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:61 -#, fuzzy msgid "Sets an arc configuration option" -msgstr "Konfigurationsoption festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:62 -#, fuzzy msgid "Set a local config value instead of a user one" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:63 msgid "Start tracking work in Phrequent" @@ -8097,9 +7556,8 @@ msgid "Provide a comment with your status change" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:66 -#, fuzzy msgid "Show available status options and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:67 msgid "Publish an accepted revision after review" @@ -8147,18 +7605,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:78 #: /tmp/fish/implicit/share/completions/arc.fish:86 -#, fuzzy msgid "Use the message from a specific revision" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:79 msgid "Show which commits will be selected" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:80 -#, fuzzy msgid "Print base commit only and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:81 #: /tmp/fish/implicit/share/completions/arc.fish:173 @@ -8166,9 +7622,8 @@ msgid "Additional rules for determining base revision" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:82 -#, fuzzy msgid "Specify the end of the commit range to select" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:83 msgid "Show committed and abandoned revisions" @@ -8176,81 +7631,68 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:84 #: /tmp/fish/implicit/share/completions/arc.fish:114 -#, fuzzy msgid "Alias for arc feature" -msgstr "Alias für atrm" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:85 -#, fuzzy msgid "Amend the working copy" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:87 -#, fuzzy msgid "Show the amended commit message" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:88 -#, fuzzy msgid "Upgrade arcanist and libphutil to the latest versions" -msgstr "Abhängigkeiten an makefile anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:89 -#, fuzzy msgid "Shows the help" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:90 -#, fuzzy msgid "Print detailed information about each command" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:91 msgid "Share and grab text using the Paste application" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:92 -#, fuzzy msgid "Language for syntax highlighting" -msgstr "Keine Hervorhebung bei Suche" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:93 -#, fuzzy msgid "Output in JSON format" -msgstr "Ausgabe im ISO 8601-Format" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:94 -#, fuzzy msgid "Title for the paste" -msgstr "Nach anderem System suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:95 msgid "Commit a revision which has been accepted by a reviewer" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:96 -#, fuzzy msgid "Commit a specific revision" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:97 msgid "Show the command which would be issued" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:98 -#, fuzzy msgid "Apply changes to the working copy" -msgstr "Nicht aufgezeichnete Änderungen in der Arbeitskopie anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:99 -#, fuzzy msgid "Do not run any sanity checks" -msgstr "Aktualisierung nicht durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:101 -#, fuzzy msgid "Do not commit the changes" -msgstr "Änderungen nicht zusammenfassen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:102 msgid "Update the local working copy before applying the patch" @@ -8261,23 +7703,20 @@ msgid "Apply changes from a git patch file or unified patch file" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:104 -#, fuzzy msgid "Apply changes from an arc bundlej" -msgstr "Patches (aus einem E-Mail-Paket) auf das Paketdepot anwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:105 -#, fuzzy msgid "Do not apply dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:106 msgid "Apply changes from a Differential diff" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:107 -#, fuzzy msgid "Do not create a branch" -msgstr "keine mtab schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:108 msgid "Apply changes from a Differential revision" @@ -8300,9 +7739,8 @@ msgid "Output upload information in JSON format" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:113 -#, fuzzy msgid "Mark the file as temporary" -msgstr "Datei als Terminal benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:115 msgid "There's only one way to find out" @@ -8313,14 +7751,12 @@ msgid "Show blame for the lines you changed" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:117 -#, fuzzy msgid "Cover changes since a specific revision" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:118 -#, fuzzy msgid "Close a revision" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:119 msgid "Do not print a success message" @@ -8360,9 +7796,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:128 #: /tmp/fish/implicit/share/completions/arc.fish:140 -#, fuzzy msgid "Specify the output format" -msgstr "Ausgabedateiname angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:129 msgid "Include closed and abandoned revisions" @@ -8385,43 +7820,37 @@ msgid "Show a detailed coverage report on the CLI" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:134 -#, fuzzy msgid "Record a copy of the test results on the specified build target" -msgstr "Testergebnisse in angegebener Datei zwischenspeichern" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:135 -#, fuzzy msgid "Use uglier formatting" -msgstr "Zeilenpufferung benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:136 msgid "Run unit tests covering changes since a specific revision" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:137 -#, fuzzy msgid "Run every test" -msgstr "Ergebnisse umkehren" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:138 msgid "Report results in JSON format" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:139 -#, fuzzy msgid "Always enable coverage information" -msgstr "immer neuformatieren" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:141 #: /tmp/fish/implicit/share/completions/arc.fish:184 -#, fuzzy msgid "Always disable coverage information" -msgstr "Komprimierungsinformation auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:142 -#, fuzzy msgid "Backouts on a previous commit" -msgstr "Befehl ausführen, wenn vorheriger Befehl fehlerhaft war" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:143 msgid "Make a raw Conduit method call" @@ -8432,9 +7861,8 @@ msgid "Generate a Differential diff or revision from local changes" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:145 -#, fuzzy msgid "Generate diff by executing a specified command" -msgstr "Interaktiver Modus nach Ausführung der Befehle" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:146 msgid "Attempt to convert non UTF-8 hunks into specified encoding" @@ -8449,34 +7877,28 @@ msgid "When creating a revision, add reviewers" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:149 -#, fuzzy msgid "Do not copy changes to the staging area" -msgstr "Nichts schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:150 -#, fuzzy msgid "Read diff from stdin" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:151 -#, fuzzy msgid "Suppress warning about uncommitted changes" -msgstr "Warnung über die Verwendung unsicheren Speichers unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:152 -#, fuzzy msgid "Read revision information from file" -msgstr "Fehler beim Lesen der Eingabeinformationen aus Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:153 -#, fuzzy msgid "Do not run lint" -msgstr "Aktualisierung nicht durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:154 -#, fuzzy msgid "Use the specified message when updating a revision" -msgstr "Angegebenen Message-Digest-Algorithmus verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:155 msgid "Create or update a revision without requesting a code review" @@ -8491,9 +7913,8 @@ msgid "Always create a new revision" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:158 -#, fuzzy msgid "Disable lint cache" -msgstr "Server-seitigen Cache deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:159 msgid "Read revision information from a specific commit" @@ -8504,9 +7925,8 @@ msgid "Only generate a diff, without running lint, unit tests, or other" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:161 -#, fuzzy msgid "Do not upload binaries" -msgstr "Keine Init-Dateien laden" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:162 msgid "only create a diff" @@ -8517,19 +7937,16 @@ msgid "Apply patches suggested by lint" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:165 -#, fuzzy msgid "Specify the end of the commit range" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:166 -#, fuzzy msgid "When creating a revision, try to use the working copy commit" -msgstr "Patches von einem anderen Paketdepot auf dieses kopieren und anwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:167 -#, fuzzy msgid "Create a diff with a few lines of context." -msgstr "NUM Kontext-Zeilen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:168 msgid "Require excuse for lint advice in addition to lint warnings and errors" @@ -8540,9 +7957,8 @@ msgid "Emit machine-readable JSON" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:170 -#, fuzzy msgid "Always update a specific revision" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:171 msgid "Ignore unsound test failures without prompting" @@ -8561,34 +7977,28 @@ msgid "Automatically add all unstaged and uncommitted" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:177 -#, fuzzy msgid "Edit revision information" -msgstr "Komprimierungsinformation auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:178 -#, fuzzy msgid "Do not run unit tests" -msgstr "Aktualisierung nicht durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:179 -#, fuzzy msgid "Raise all lint warnings" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:181 -#, fuzzy msgid "Only run lint and unit tests" -msgstr "Nur doppelte Zeilen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:182 -#, fuzzy msgid "Skip checks for untracked files in the working copy" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:183 -#, fuzzy msgid "Display only new lint messages" -msgstr "Zeilennummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:185 msgid "Create or update a libphutil library" @@ -8615,14 +8025,12 @@ msgid "Force the library map to be updated" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:191 -#, fuzzy msgid "Set the library name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:192 -#, fuzzy msgid "Shows the current version of arcanist" -msgstr "Volle Versionen der Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/arp.fish:2 msgid "Numerical address" @@ -8657,42 +8065,36 @@ msgid "Take addr from filename, default /etc/ethers" msgstr "Adresse aus Dateiname entnehmen, Standard /etc/ethers" #: /tmp/fish/implicit/share/completions/as.fish:1 -#, fuzzy msgid "Omit false conditionals" -msgstr "Eine Bedingung testen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:2 -#, fuzzy msgid "Omit debugging directives" -msgstr "Debug-Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:3 -#, fuzzy msgid "Include general information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:4 msgid "Include high-level source" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:5 -#, fuzzy msgid "Include assembly" -msgstr "Include-Pfad" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:6 msgid "Include macro expansions" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:7 -#, fuzzy msgid "Omit forms processing" -msgstr "Anmeldeprozess ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:8 -#, fuzzy msgid "Include symbols" -msgstr "Datei ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:9 msgid "Initially turn on alternate macro syntax" @@ -8703,24 +8105,20 @@ msgid "Compress DWARF debug sections using zlib" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:11 -#, fuzzy msgid "Don't compress DWARF debug sections" -msgstr "Keine Skrpte ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:12 -#, fuzzy msgid "Produce assembler debugging messages" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:13 -#, fuzzy msgid "Remap debug information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:14 -#, fuzzy msgid "Redefine symbols" -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:15 msgid "Require executable stack for this object" @@ -8747,173 +8145,146 @@ msgid "Skip whitespace and comment preprocessing" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:21 -#, fuzzy msgid "Generate debugging information" -msgstr "Debug-Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:22 -#, fuzzy msgid "Generate STABS debugging information" -msgstr "Debug-Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:23 msgid "Generate STABS debug info with GNU extensions" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:24 -#, fuzzy msgid "Generate DWARF2 debugging information" -msgstr "Debug-Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:25 msgid "Generate per-function section names for DWARF line information" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:26 -#, fuzzy msgid "Set the hash table size close" -msgstr "Standardzeichensatz festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:27 -#, fuzzy msgid "Show help message and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:28 -#, fuzzy msgid "Show target specific options" -msgstr "Befehlsspezifische Erweiterungen bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:29 -#, fuzzy msgid "Add DIR to search list for .include directives" -msgstr "include-Verzeichnisse ersetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:30 -#, fuzzy msgid "Don't warn about signed overflow" -msgstr "Nur doppelte Zeilen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:31 msgid "Warn when differences altered for long displacements" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:32 -#, fuzzy msgid "Keep local symbols" -msgstr "Lokalen Zwischenspeicher und Pakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:33 msgid "Assemble in MRI compatibility mode" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:34 -#, fuzzy msgid "Write dependency information in given file" -msgstr "Informative Nachrichten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:35 -#, fuzzy msgid "Do not pad the end of sections to alignment boundaries" -msgstr "Standardschlüsselringe nicht der Schlüsselringliste hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:36 -#, fuzzy msgid "Set object-file output file name" -msgstr "Ausgabedateiname angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:37 -#, fuzzy msgid "Fold data section into text section" -msgstr "Fließkomma-Ausnahmefehler" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:38 msgid "Prefer smaller memory use" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:39 -#, fuzzy msgid "Print various measured statistics from execution" -msgstr "Prototypen in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:40 -#, fuzzy msgid "Strip local absolute symbols" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:41 msgid "Use same format as native assembler when possible" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:42 -#, fuzzy msgid "Print assembler version number and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:43 #: /tmp/fish/implicit/share/completions/gunzip.fish:8 #: /tmp/fish/implicit/share/completions/gzip.fish:8 -#, fuzzy msgid "Suppress warnings" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:44 -#, fuzzy msgid "Don't suppress warnings" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:45 -#, fuzzy msgid "Treat warnings as errors" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:46 -#, fuzzy msgid "Generate object file even after errors" -msgstr "Gepunkteten Graph generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:47 -#, fuzzy msgid "Read option from given file" -msgstr "Cookies aus Datei laden" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:48 -#, fuzzy msgid "Print assembler version number" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:49 msgid "Don't optimize code alignment" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:50 -#, fuzzy msgid "Quieten some warnings" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:51 -#, fuzzy msgid "Generate 32 bits code" -msgstr "Ein neues Schlüsselpaar erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:52 -#, fuzzy msgid "Generate 64 bits code" -msgstr "Ein neues Schlüsselpaar erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:53 -#, fuzzy msgid "Generate x32 code" -msgstr "Ein neues Schlüsselpaar erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:54 msgid "Encode SSE instructions with VEX prefix" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:55 -#, fuzzy msgid "Check SSE instructions" -msgstr "Illegale Instruktion" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:56 msgid "Check operand combinations for validity" @@ -8936,14 +8307,12 @@ msgid "Encode EVEX instructions with specific EVEX.RC" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:61 -#, fuzzy msgid "Use specfied mnemonic" -msgstr "Angegebene Warteschlange benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:62 -#, fuzzy msgid "Use specfied syntax" -msgstr "Angegebene Warteschlange benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:63 msgid "Support pseudo index registers" @@ -8962,19 +8331,16 @@ msgid "Add BND prefix for all valid branches" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:67 -#, fuzzy msgid "Disable branch optimization for shared code" -msgstr "Sparse-Dateien bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:68 -#, fuzzy msgid "Strip all lock prefixes" -msgstr "Kein flaches Profil" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:70 -#, fuzzy msgid "Generate relax relocations" -msgstr "Quellindexdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:71 msgid "Accept only AMD64 ISA" @@ -8985,23 +8351,20 @@ msgid "Accept only Intel64 ISA" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:73 -#, fuzzy msgid "Optimize for given CPU" -msgstr "Paketdepot optimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:1 -#, fuzzy msgid "Checkout package" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:2 msgid "Show the full history of the target, with file diffs" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:3 -#, fuzzy msgid "Put the source files in current directory" -msgstr "Dateien unter jedem Verzeichnis lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:4 msgid "Collect garbage" @@ -9012,46 +8375,40 @@ msgid "Report approximate disk usage" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:7 -#, fuzzy msgid "List all known packages" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:8 msgid "List the architectures the targets are available for" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:9 -#, fuzzy msgid "List locally tracked packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:10 msgid "List repos the targets exist in" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:11 -#, fuzzy msgid "Show revision history of the target" -msgstr "Nur zutreffenden Teil anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:12 -#, fuzzy msgid "Show condensed revision history" -msgstr "Unterschiede zwischen Revisionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:13 msgid "Show the target's PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:14 -#, fuzzy msgid "Update given targets" -msgstr "Aktualisierungs-Intervall" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:15 -#, fuzzy msgid "Remove target from local repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/atd.fish:1 msgid "Limiting load factor" @@ -9102,23 +8459,20 @@ msgid "Print the jobs listed" msgstr "Aufgelistete Jobs ausgeben" #: /tmp/fish/implicit/share/completions/atom.fish:1 -#, fuzzy msgid "Run in development mode." -msgstr "Im Dummy-Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:2 msgid "Keep the browser process in the foreground." msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:3 -#, fuzzy msgid "Print usage message." -msgstr "Informative Nachrichten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:4 -#, fuzzy msgid "Log all output to file." -msgstr "Eingabe in Datei protokollieren" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:5 msgid "Open a new window." @@ -9147,9 +8501,8 @@ msgid "Run the specified specs and exit with error code on failures." msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:11 -#, fuzzy msgid "Print the version." -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:12 msgid "Wait for window to be closed before returning." @@ -9160,34 +8513,28 @@ msgid "Manage file archives of various types" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:2 -#, fuzzy msgid "list files in archive (als)" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:3 -#, fuzzy msgid "extract files from archive (aunpack)" -msgstr "Aus Archiv extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:4 -#, fuzzy msgid "extract archive to specified directory" -msgstr "Jokerzeichen auf angegebenes Verzeichnis beschränken" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:5 -#, fuzzy msgid "create archive (apack)" -msgstr "Archiv erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:6 -#, fuzzy msgid "extract file to standard out (acat)" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:7 -#, fuzzy msgid "generate a diff between two archives (adiff)" -msgstr "Diff zwischen zwei Versionen des Paketdepots erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:8 msgid "repack archives to a different format (arepack)" @@ -9202,9 +8549,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tee.fish:3 #: /tmp/fish/implicit/share/completions/tr.fish:5 #: /tmp/fish/implicit/share/completions/unexpand.fish:5 -#, fuzzy msgid "display this help and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:10 #: /tmp/fish/implicit/share/completions/dd.fish:2 @@ -9219,14 +8565,12 @@ msgstr "Hilfe anzeigen und beenden" #: /tmp/fish/implicit/share/completions/tee.fish:4 #: /tmp/fish/implicit/share/completions/tr.fish:6 #: /tmp/fish/implicit/share/completions/unexpand.fish:6 -#, fuzzy msgid "output version information and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:11 -#, fuzzy msgid "execute command above for each file specified" -msgstr "Befehl ausführen, als ob es Teil von .wgetrc wäre" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:12 msgid "override archive format (see below)" @@ -9241,66 +8585,56 @@ msgid "always create subdirectory when extracting" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:15 -#, fuzzy msgid "allow overwriting of local files" -msgstr "Neue lokale Dateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:16 -#, fuzzy msgid "decrease verbosity level by one" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:17 -#, fuzzy msgid "increase verbosity level by one" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:18 msgid "specify verbosity (0, 1 or 2)" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:19 -#, fuzzy msgid "send output through pager" -msgstr "Ausgabe durch 'pr' schicken" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:20 msgid "filenames from standard in are null-byte separated" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:21 -#, fuzzy msgid "explain what is being done by atool" -msgstr "Erläutere was geschieht" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:22 msgid "simulation mode - no filesystem changes are made" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:23 -#, fuzzy msgid "override a configuration option (KEY=VALUE)" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:24 -#, fuzzy msgid "load configuration defaults from file" -msgstr "Globale Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:1 -#, fuzzy msgid "Synchronize AUR packages" -msgstr "Aktualisierte Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:2 -#, fuzzy msgid "Save and restore package state" -msgstr "Quellpakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:3 -#, fuzzy msgid "Package cache actions" -msgstr "Handbuch-Sektionen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:4 #: /tmp/fish/implicit/share/completions/pacaur.fish:1 @@ -9309,23 +8643,20 @@ msgstr "Handbuch-Sektionen" #: /tmp/fish/implicit/share/completions/pacman.fish:3 #: /tmp/fish/implicit/share/completions/yaourt.fish:1 #: /tmp/fish/implicit/share/completions/yaourt.fish:4 -#, fuzzy msgid "Modify the package database" -msgstr "Paketsatz anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:5 msgid "Pacman log actions" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:6 -#, fuzzy msgid "Build packages from ABS" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:7 -#, fuzzy msgid "Operate on orphan packages" -msgstr "Paketliste aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:8 #: /tmp/fish/implicit/share/completions/pacaur.fish:2 @@ -9334,55 +8665,48 @@ msgstr "Paketliste aktualisieren" #: /tmp/fish/implicit/share/completions/pacman.fish:4 #: /tmp/fish/implicit/share/completions/yaourt.fish:2 #: /tmp/fish/implicit/share/completions/yaourt.fish:5 -#, fuzzy msgid "Query the package database" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:9 #: /tmp/fish/implicit/share/completions/pacaur.fish:6 #: /tmp/fish/implicit/share/completions/pacman.fish:5 #: /tmp/fish/implicit/share/completions/yaourt.fish:6 -#, fuzzy msgid "Remove packages from the system" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:10 #: /tmp/fish/implicit/share/completions/pacaur.fish:7 #: /tmp/fish/implicit/share/completions/pacman.fish:6 #: /tmp/fish/implicit/share/completions/yaourt.fish:7 -#, fuzzy msgid "Synchronize packages" -msgstr "Aktualisierte Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:11 #: /tmp/fish/implicit/share/completions/pacaur.fish:8 #: /tmp/fish/implicit/share/completions/pacman.fish:7 #: /tmp/fish/implicit/share/completions/yaourt.fish:8 -#, fuzzy msgid "Check dependencies" -msgstr "Zerstörte Abhängigkeiten korrigieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:12 #: /tmp/fish/implicit/share/completions/pacaur.fish:9 #: /tmp/fish/implicit/share/completions/pacman.fish:8 #: /tmp/fish/implicit/share/completions/yaourt.fish:9 -#, fuzzy msgid "Upgrade or add a local package" -msgstr "Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:13 msgid "Show settings while running" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:14 -#, fuzzy msgid "Do not use powerpill" -msgstr "Nicht die gcc-Ummantelung benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:15 -#, fuzzy msgid "Show available languages" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:16 msgid "View pacman.conf" @@ -9408,58 +8732,51 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:23 #: /tmp/fish/implicit/share/completions/pacman.fish:14 #: /tmp/fish/implicit/share/completions/yaourt.fish:20 -#, fuzzy msgid "Output more status messages" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:22 #: /tmp/fish/implicit/share/completions/pacaur.fish:24 #: /tmp/fish/implicit/share/completions/pacman.fish:15 #: /tmp/fish/implicit/share/completions/yaourt.fish:21 -#, fuzzy msgid "Alternate architecture" -msgstr "Archiv erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:23 #: /tmp/fish/implicit/share/completions/pacaur.fish:25 #: /tmp/fish/implicit/share/completions/pacman.fish:16 #: /tmp/fish/implicit/share/completions/yaourt.fish:22 -#, fuzzy msgid "Alternative package cache location" -msgstr "Paketcache automatisch generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:24 #: /tmp/fish/implicit/share/completions/pacaur.fish:26 #: /tmp/fish/implicit/share/completions/pacman.fish:17 #: /tmp/fish/implicit/share/completions/tmux.fish:12 #: /tmp/fish/implicit/share/completions/yaourt.fish:23 -#, fuzzy msgid "Alternate config file" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:25 #: /tmp/fish/implicit/share/completions/pacaur.fish:27 #: /tmp/fish/implicit/share/completions/pacman.fish:18 #: /tmp/fish/implicit/share/completions/yaourt.fish:24 -#, fuzzy msgid "Display debug messages" -msgstr "Debug-Informationen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:26 #: /tmp/fish/implicit/share/completions/pacaur.fish:28 #: /tmp/fish/implicit/share/completions/pacman.fish:19 #: /tmp/fish/implicit/share/completions/yaourt.fish:25 -#, fuzzy msgid "GPG directory to verify signatures" -msgstr "Optionen zum Überprüfen von Signaturen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:27 #: /tmp/fish/implicit/share/completions/pacaur.fish:30 #: /tmp/fish/implicit/share/completions/pacman.fish:21 #: /tmp/fish/implicit/share/completions/yaourt.fish:27 -#, fuzzy msgid "Specify alternative log file" -msgstr "apt-Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:28 #: /tmp/fish/implicit/share/completions/pacaur.fish:31 @@ -9472,9 +8789,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:45 #: /tmp/fish/implicit/share/completions/pacman.fish:23 #: /tmp/fish/implicit/share/completions/yaourt.fish:37 -#, fuzzy msgid "Skip [all] dependency checks" -msgstr "Keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:30 #: /tmp/fish/implicit/share/completions/pacaur.fish:46 @@ -9487,9 +8803,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:48 #: /tmp/fish/implicit/share/completions/pacman.fish:26 #: /tmp/fish/implicit/share/completions/yaourt.fish:40 -#, fuzzy msgid "Do not execute install script" -msgstr "Keine post-Skripte ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:33 #: /tmp/fish/implicit/share/completions/pacaur.fish:49 @@ -9502,9 +8817,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:50 #: /tmp/fish/implicit/share/completions/pacman.fish:28 #: /tmp/fish/implicit/share/completions/yaourt.fish:42 -#, fuzzy msgid "Specify printf-like format" -msgstr "Zeilenlänge angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:35 #: /tmp/fish/implicit/share/completions/pacaur.fish:51 @@ -9523,9 +8837,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacman.fish:63 #: /tmp/fish/implicit/share/completions/yaourt.fish:44 #: /tmp/fish/implicit/share/completions/yaourt.fish:92 -#, fuzzy msgid "Mark PACKAGE as explicitly installed" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:37 #: /tmp/fish/implicit/share/completions/pacaur.fish:53 @@ -9552,9 +8865,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:56 #: /tmp/fish/implicit/share/completions/pacman.fish:34 #: /tmp/fish/implicit/share/completions/yaourt.fish:48 -#, fuzzy msgid "Do not reinstall up-to-date targets" -msgstr "Aktualisierung nicht durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:41 #: /tmp/fish/implicit/share/completions/pacaur.fish:57 @@ -9567,17 +8879,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:58 #: /tmp/fish/implicit/share/completions/pacman.fish:36 #: /tmp/fish/implicit/share/completions/yaourt.fish:50 -#, fuzzy msgid "Display all packages in GROUP" -msgstr "Alle Änderungsprotokolle anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:43 #: /tmp/fish/implicit/share/completions/pacaur.fish:59 #: /tmp/fish/implicit/share/completions/pacman.fish:37 #: /tmp/fish/implicit/share/completions/yaourt.fish:51 -#, fuzzy msgid "Display information on PACKAGE" -msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:44 #: /tmp/fish/implicit/share/completions/aura.fish:53 @@ -9587,31 +8897,27 @@ msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" #: /tmp/fish/implicit/share/completions/pacman.fish:73 #: /tmp/fish/implicit/share/completions/yaourt.fish:52 #: /tmp/fish/implicit/share/completions/yaourt.fish:102 -#, fuzzy msgid "Show less information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:45 #: /tmp/fish/implicit/share/completions/pacaur.fish:61 #: /tmp/fish/implicit/share/completions/pacman.fish:39 #: /tmp/fish/implicit/share/completions/yaourt.fish:53 -#, fuzzy msgid "Search packages for regexp" -msgstr "Nur Paketname suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:46 msgid "Remove packages only needed during installation" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:47 -#, fuzzy msgid "View package dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:48 -#, fuzzy msgid "View package information" -msgstr "Paketinformation anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:49 msgid "Show PKGBUILD diffs" @@ -9622,63 +8928,52 @@ msgid "View the packages's PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:51 -#, fuzzy msgid "Show makepkg output" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:52 -#, fuzzy msgid "Build dependencies from ABS" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:54 -#, fuzzy msgid "Search AUR by string matching" -msgstr "Rekursiv, Dateien gemäß MUSTER suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:55 -#, fuzzy msgid "Upgrade all installed AUR packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:56 -#, fuzzy msgid "Download the source tarball" -msgstr "Quelle nicht herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:57 -#, fuzzy msgid "Ignore given comma-separated packages" -msgstr "Nicht authentifizierte Pakete ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:58 -#, fuzzy msgid "Specify a build location" -msgstr "Debug-Optionen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:59 -#, fuzzy msgid "User to build as" -msgstr "Benutze zur Erstellung" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:60 msgid "Run customizepkg before build" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:61 -#, fuzzy msgid "Include -git/-svn/etc packages" -msgstr "Fehlende Pakete ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:62 -#, fuzzy msgid "Prompt for PKGBUILD editing" -msgstr "Nach Ablaufzeit fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:63 -#, fuzzy msgid "Ignore architecture checking" -msgstr "Groß-/Kleinschreibung beim Dateinamenvergleich ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:64 msgid "Sort alphabetically" @@ -9701,25 +8996,21 @@ msgid "Restores a record kept with -B" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:69 -#, fuzzy msgid "Backup to directory" -msgstr "Zielverzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:70 -#, fuzzy msgid "Save this many versions" -msgstr "Sortierung nach Version" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:71 #: /tmp/fish/implicit/share/completions/aura.fish:73 -#, fuzzy msgid "Search via regex" -msgstr "Muster ist ein regulärer Ausdruck" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:72 -#, fuzzy msgid "Show package history" -msgstr "Paketinformation anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:74 msgid "Search ABS by regex" @@ -9739,14 +9030,12 @@ msgid "Download fresh copy of the package list" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:77 -#, fuzzy msgid "Sync the given to local ABS tree" -msgstr "Pakete in lokalen Verzeichnisbaum verschieben" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:79 -#, fuzzy msgid "Uninstall orphan packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:80 #: /tmp/fish/implicit/share/completions/pacaur.fish:62 @@ -9759,17 +9048,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:63 #: /tmp/fish/implicit/share/completions/pacman.fish:41 #: /tmp/fish/implicit/share/completions/yaourt.fish:60 -#, fuzzy msgid "List only non-explicit packages (dependencies)" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:82 #: /tmp/fish/implicit/share/completions/pacaur.fish:64 #: /tmp/fish/implicit/share/completions/pacman.fish:42 #: /tmp/fish/implicit/share/completions/yaourt.fish:61 -#, fuzzy msgid "List only explicitly installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:83 #: /tmp/fish/implicit/share/completions/pacaur.fish:65 @@ -9782,25 +9069,22 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:66 #: /tmp/fish/implicit/share/completions/pacman.fish:44 #: /tmp/fish/implicit/share/completions/yaourt.fish:63 -#, fuzzy msgid "List all files owned by PACKAGE" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:85 #: /tmp/fish/implicit/share/completions/pacaur.fish:67 #: /tmp/fish/implicit/share/completions/pacman.fish:45 #: /tmp/fish/implicit/share/completions/yaourt.fish:64 -#, fuzzy msgid "List all packages not in the database" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:86 #: /tmp/fish/implicit/share/completions/pacaur.fish:68 #: /tmp/fish/implicit/share/completions/pacman.fish:46 #: /tmp/fish/implicit/share/completions/yaourt.fish:65 -#, fuzzy msgid "Search for the package that owns FILE" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:87 #: /tmp/fish/implicit/share/completions/pacaur.fish:69 @@ -9813,33 +9097,29 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:70 #: /tmp/fish/implicit/share/completions/pacman.fish:48 #: /tmp/fish/implicit/share/completions/yaourt.fish:67 -#, fuzzy msgid "List only unrequired packages" -msgstr "Nur aktualisierbare Pakete ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:89 #: /tmp/fish/implicit/share/completions/pacaur.fish:71 #: /tmp/fish/implicit/share/completions/pacman.fish:49 #: /tmp/fish/implicit/share/completions/yaourt.fish:68 -#, fuzzy msgid "List only out-of-date packages" -msgstr "Nur aktualisierbare Pakete ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:91 #: /tmp/fish/implicit/share/completions/pacaur.fish:73 #: /tmp/fish/implicit/share/completions/pacman.fish:51 #: /tmp/fish/implicit/share/completions/yaourt.fish:72 -#, fuzzy msgid "Also remove packages depending on PACKAGE" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:92 #: /tmp/fish/implicit/share/completions/pacaur.fish:74 #: /tmp/fish/implicit/share/completions/pacman.fish:52 #: /tmp/fish/implicit/share/completions/yaourt.fish:73 -#, fuzzy msgid "Ignore file backup designations" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:93 #: /tmp/fish/implicit/share/completions/pacaur.fish:75 @@ -9859,33 +9139,29 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:78 #: /tmp/fish/implicit/share/completions/pacman.fish:56 #: /tmp/fish/implicit/share/completions/yaourt.fish:77 -#, fuzzy msgid "Remove [all] packages from cache" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:97 #: /tmp/fish/implicit/share/completions/pacaur.fish:79 #: /tmp/fish/implicit/share/completions/pacman.fish:57 #: /tmp/fish/implicit/share/completions/yaourt.fish:78 -#, fuzzy msgid "List all packages in REPOSITORY" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:98 #: /tmp/fish/implicit/share/completions/pacaur.fish:80 #: /tmp/fish/implicit/share/completions/pacman.fish:58 #: /tmp/fish/implicit/share/completions/yaourt.fish:79 -#, fuzzy msgid "Upgrade all packages that are out of date" -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:99 #: /tmp/fish/implicit/share/completions/pacaur.fish:82 #: /tmp/fish/implicit/share/completions/pacman.fish:60 #: /tmp/fish/implicit/share/completions/yaourt.fish:81 -#, fuzzy msgid "Only download the target packages" -msgstr "Herunterladen von Paketen deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:101 #: /tmp/fish/implicit/share/completions/aura.fish:102 @@ -9895,9 +9171,8 @@ msgstr "Herunterladen von Paketen deaktivieren" #: /tmp/fish/implicit/share/completions/pacman.fish:76 #: /tmp/fish/implicit/share/completions/yaourt.fish:104 #: /tmp/fish/implicit/share/completions/yaourt.fish:105 -#, fuzzy msgid "Package file" -msgstr "Paket" +msgstr "" #: /tmp/fish/implicit/share/completions/awk.fish:1 msgid "" @@ -9936,11 +9211,8 @@ msgid "Input_file Read a list of already existing known bad blocks" msgstr "" #: /tmp/fish/implicit/share/completions/badblocks.fish:5 -#, fuzzy msgid "Output_file Write the list of bad blocks to the specified file" msgstr "" -"Die Liste der Standardeinstellungen gemäß der angegebenen Zeichenkette " -"festlegen" #: /tmp/fish/implicit/share/completions/badblocks.fish:6 msgid "" @@ -9984,9 +9256,8 @@ msgid "Wrap encoded line after given number of caracters (default 76)" msgstr "" #: /tmp/fish/implicit/share/completions/bc.fish:1 -#, fuzzy msgid "Force interactive mode" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/bc.fish:2 msgid "Define math library" @@ -10013,32 +9284,28 @@ msgid "Seems mode: goes back to the first directory containing string" msgstr "" #: /tmp/fish/implicit/share/completions/bd.fish:3 -#, fuzzy msgid "Case insensitive move (implies seems mode)" -msgstr "Groß-/Klein-Schreibung nicht unterscheiden" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:1 msgid "Show unavailable key bindings/erase all bindings" msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:2 -#, fuzzy msgid "Erase mode" -msgstr "Ausführlicher Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:3 -#, fuzzy msgid "Print names of available functions" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:5 msgid "Specify key name, not sequence" msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:6 -#, fuzzy msgid "Print names of available keys" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:7 msgid "Add to named bind mode" @@ -10049,15 +9316,13 @@ msgid "Change current bind mode to named mode" msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:9 -#, fuzzy msgid "Key name" -msgstr "Benutzername" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:10 #: /tmp/fish/implicit/share/completions/commandline.fish:17 -#, fuzzy msgid "Function name" -msgstr "Funktion" +msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:1 msgid "Specify a prefix to use for all bison output file names" @@ -10097,9 +9362,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:9 -#, fuzzy msgid "Specify the name outfile for the parser file" -msgstr "Gibt die Anzahl zu sendender Bytes an" +msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:10 msgid "" @@ -10120,9 +9384,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:13 -#, fuzzy msgid "Print the version number of bison and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:14 msgid "Print a summary of the options to bison and exit" @@ -10145,28 +9408,24 @@ msgid "Create a global (manually erased) event block" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:1 -#, fuzzy msgid "Check formula" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:2 -#, fuzzy msgid "Create a binary package" -msgstr "Informationen über ein Paket" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:3 -#, fuzzy msgid "Output developer debug information" -msgstr "Magische Versionsinformation ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:4 msgid "Do not bump the bottle revision number" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:5 -#, fuzzy msgid "Write bottle block to a Ruby source file" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:6 msgid "Write bottle block to formula file" @@ -10177,14 +9436,12 @@ msgid "Merge multiple bottle outputs" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:8 -#, fuzzy msgid "Display formula" -msgstr "Zusammenfassung anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:9 -#, fuzzy msgid "Remove old installed versions" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:10 msgid "Remove out-of-date keg-only brews as well" @@ -10196,9 +9453,8 @@ msgid "Show what files would be removed" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:13 -#, fuzzy msgid "Scrub the cache" -msgstr "Apt-Zwischenspeicher erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:14 msgid "Create new formula from URL" @@ -10213,14 +9469,12 @@ msgid "Use template for Autotools-style build" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:17 -#, fuzzy msgid "Don't download URL" -msgstr "Quelle nicht herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:18 -#, fuzzy msgid "Override name autodetection" -msgstr "Frame-Rate überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:19 msgid "Override version autodetection" @@ -10231,24 +9485,20 @@ msgid "Summarize specified formulae in one line" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:21 -#, fuzzy msgid "Search names and descriptions" -msgstr "Über Bildschirmende hinaus suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:22 -#, fuzzy msgid "Search only names" -msgstr "In allen Handbuchseiten suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:23 -#, fuzzy msgid "Search only descriptions" -msgstr "$PATH nach Skript durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:24 -#, fuzzy msgid "Show a formula's dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:25 msgid "Show only 1 level down" @@ -10259,33 +9509,28 @@ msgid "Show in topological order" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:27 -#, fuzzy msgid "Show dependencies as tree" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:28 -#, fuzzy msgid "Show dependencies for all formulae" -msgstr "Vor dem Deinstallieren der Pakete keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:29 -#, fuzzy msgid "Show dependencies for installed formulae" -msgstr "Vor dem Deinstallieren der Pakete keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:30 msgid "Determine installation prefix for non-brew software" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:31 -#, fuzzy msgid "Set name of package" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:32 -#, fuzzy msgid "Set version of package" -msgstr "Version des Quellpaketes" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:33 msgid "Check your system for problems" @@ -10296,9 +9541,8 @@ msgid "Open brew/formula for editing" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:35 -#, fuzzy msgid "Download source for formula" -msgstr "Quelle nicht herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:36 msgid "Remove a previously cached version and re-fetch" @@ -10309,48 +9553,42 @@ msgid "Download the HEAD version from a VCS" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:38 -#, fuzzy msgid "Also download dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:39 msgid "Make HEAD checkout verbose" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:40 -#, fuzzy msgid "Fetch source package instead of bottle" -msgstr "Quellpakete abrufen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:42 msgid "Open brew/formula's homepage" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:43 -#, fuzzy msgid "Display information about formula" -msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:44 -#, fuzzy msgid "Display info for all formulae" -msgstr "Zeilennummer für jede Zeile anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:45 msgid "Open the GitHub History page for formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:46 -#, fuzzy msgid "Install formula" -msgstr "Nach Erstellung installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:47 #: /tmp/fish/implicit/share/completions/prt-get.fish:35 #: /tmp/fish/implicit/share/completions/prt-get.fish:94 -#, fuzzy msgid "Force install" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:48 msgid "If install fails, open shell in temp directory" @@ -10361,9 +9599,8 @@ msgid "skip installing any dependencies of any kind" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:50 -#, fuzzy msgid "Attempt to compile using the specified compiler" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:51 msgid "Compile from source even if a bottle is provided" @@ -10382,18 +9619,16 @@ msgid "Download and patch formula, then open a shell" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:55 -#, fuzzy msgid "Force the specified build environment" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:56 msgid "Optimize for a generic CPU architecture" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:57 -#, fuzzy msgid "Optimize for the specified CPU architecture" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:58 msgid "Symlink installed formula" @@ -10401,9 +9636,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:59 #: /tmp/fish/implicit/share/completions/brew.fish:60 -#, fuzzy msgid "Overwrite existing files" -msgstr "Neuere Dateien nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:61 #: /tmp/fish/implicit/share/completions/brew.fish:62 @@ -10424,9 +9658,8 @@ msgid "Link .app bundles into ~/Applications instead" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:67 -#, fuzzy msgid "List all installed formula" -msgstr "Auf Installierte begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:68 #: /tmp/fish/implicit/share/completions/brew.fish:71 @@ -10435,9 +9668,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:69 #: /tmp/fish/implicit/share/completions/brew.fish:72 -#, fuzzy msgid "Show the version number" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:70 #: /tmp/fish/implicit/share/completions/brew.fish:73 @@ -10445,9 +9677,8 @@ msgid "Show the versions of pinned formulae" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:74 -#, fuzzy msgid "Show log for formula" -msgstr "Kurzes Format" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:75 #: /tmp/fish/implicit/share/completions/brew.fish:77 @@ -10459,9 +9690,8 @@ msgid "formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:76 -#, fuzzy msgid "Check formula for missing dependencies" -msgstr "Nach zusätzlichen Abhängigkeiten fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:78 msgid "Display install options for formula" @@ -10476,33 +9706,28 @@ msgid "Show options for all formulae" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:81 -#, fuzzy msgid "Show options for all installed formulae" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:83 msgid "Show formula that have updated versions" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:84 -#, fuzzy msgid "Display only names" -msgstr "Steuerzeichen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:85 -#, fuzzy msgid "Pin the specified formulae to their current versions" -msgstr "Angegebene Datei zur aktuellen Schlüsselringliste hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:87 -#, fuzzy msgid "Remove dead symlinks" -msgstr "Quellpakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:88 -#, fuzzy msgid "Search for formula by name" -msgstr "Nach anderem System suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:89 #: /tmp/fish/implicit/share/completions/brew.fish:91 @@ -10531,14 +9756,12 @@ msgid "Gracefully restart a service" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:97 -#, fuzzy msgid "Start a service" -msgstr "Dienst starten" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:98 -#, fuzzy msgid "Stop a service" -msgstr "Dienst anhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:100 msgid "All Services" @@ -10549,9 +9772,8 @@ msgid "Instantiate a Homebrew build enviornment" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:102 -#, fuzzy msgid "Use stdenv instead of superenv" -msgstr "purge anstelle von remove verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:103 msgid "Tap a new formula repository on GitHub" @@ -10566,16 +9788,14 @@ msgid "Run tests for formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:107 -#, fuzzy msgid "Uninstall formula" -msgstr "Nach Erstellung installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:108 #: /tmp/fish/implicit/share/completions/brew.fish:109 #: /tmp/fish/implicit/share/completions/brew.fish:110 -#, fuzzy msgid "Delete all installed versions" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:111 msgid "Unlink formula" @@ -10590,19 +9810,16 @@ msgid "Remove links from ~/Applications created by brew linkapps" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:114 -#, fuzzy msgid "Extract source code" -msgstr "Skript extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:115 -#, fuzzy msgid "Unpin specified formulae" -msgstr "Angegebene Datei ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:116 -#, fuzzy msgid "Remove a tapped repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:117 msgid "Fetch newest version of Homebrew and formulas" @@ -10613,29 +9830,24 @@ msgid "Use git pull --rebase" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:119 -#, fuzzy msgid "Upgrade outdated brews" -msgstr "Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:120 -#, fuzzy msgid "Show formulas that depend on specified formula" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:121 -#, fuzzy msgid "List only installed formulae" -msgstr "Auf Installierte begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:122 -#, fuzzy msgid "Resolve more than one level of dependencies" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:123 -#, fuzzy msgid "Print version number of brew" -msgstr "Inode-Nummer der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:124 msgid "Show Homebrew a summary of the build environment" @@ -10646,75 +9858,64 @@ msgid "Display where Homebrew's .git directory is located" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:126 -#, fuzzy msgid "Show Homebrew and system configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:127 -#, fuzzy msgid "Display Homebrew's install path" -msgstr "Kompressionsrate anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:128 -#, fuzzy msgid "Display formula's install path" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:129 -#, fuzzy msgid "Display Homebrew's download cache" -msgstr "Herunterladen von Paketen deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:130 msgid "Display the file or directory used to cache formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:131 -#, fuzzy msgid "Display Homebrew's Cellar path" -msgstr "Kompressionsrate anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:132 msgid "Display formula's install path in Cellar" msgstr "" #: /tmp/fish/implicit/share/completions/builtin.fish:2 -#, fuzzy msgid "Print names of all existing builtins" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:1 -#, fuzzy msgid "Test if bundle has been given no subcommand" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:2 -#, fuzzy msgid "Test if bundle has been given a specific subcommand" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:3 msgid "Specify the number of times you wish to attempt network commands" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:4 -#, fuzzy msgid "Disable colorization in output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:5 msgid "Enable verbose output mode" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:6 -#, fuzzy msgid "Display a help page" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:7 -#, fuzzy msgid "Prints version information" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:8 #: /tmp/fish/implicit/share/completions/bundle.fish:40 @@ -10723,19 +9924,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:9 #: /tmp/fish/implicit/share/completions/bundle.fish:57 -#, fuzzy msgid "The location of the Gemfile bundler should use" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:10 -#, fuzzy msgid "The location to install the gems in the bundle to" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:11 -#, fuzzy msgid "Installs the gems in the bundle to the system location" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:12 msgid "A space-separated list of groups to skip installing" @@ -10776,14 +9974,12 @@ msgid "Do not update the cache in vendor/cache with the newly bundled gems" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:21 -#, fuzzy msgid "Do not print progress information to stdout" -msgstr "Keine Gruppeninformation ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:22 -#, fuzzy msgid "Run bundle clean automatically after install" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:23 #: /tmp/fish/implicit/share/completions/bundle.fish:30 @@ -10792,9 +9988,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:24 #: /tmp/fish/implicit/share/completions/bundle.fish:89 -#, fuzzy msgid "Do not remove stale gems from the cache" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:25 msgid "Do not allow the Gemfile.lock to be updated after this install" @@ -10802,9 +9997,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:26 #: /tmp/fish/implicit/share/completions/bundle.fish:41 -#, fuzzy msgid "Update dependencies to their latest versions" -msgstr "Abhängigkeiten an makefile anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:27 msgid "The name of a :git or :path source used in the Gemfile" @@ -10819,30 +10013,26 @@ msgid "Only output warnings and errors" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:31 -#, fuzzy msgid "Specify the number of jobs to run in parallel" -msgstr "Gibt die Anzahl zu sendender Bytes an" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:32 msgid "Update a specific group" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:33 -#, fuzzy msgid "" "Package the .gem files required by your application into the vendor/cache " "directory" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:34 -#, fuzzy msgid "Install the binstubs of the listed gem" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:35 -#, fuzzy msgid "Binstub destination directory (default bin)" -msgstr "Dokumentationsdateien installieren (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:36 msgid "Overwrite existing binstubs if they exist" @@ -10862,34 +10052,29 @@ msgid "Describe available tasks or one specific task" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:42 -#, fuzzy msgid "Package .gem files into the vendor/cache directory" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:44 -#, fuzzy msgid "Specify and read configuration options for bundler" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:45 msgid "Check bundler requirements for your application" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:46 -#, fuzzy msgid "Show all of the gems in the current bundle" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:47 -#, fuzzy msgid "Show the source location of a particular gem in the bundle" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:48 #: /tmp/fish/implicit/share/completions/bundle.fish:64 -#, fuzzy msgid "Show all of the outdated gems in the current bundle" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:49 #: /tmp/fish/implicit/share/completions/bundle.fish:69 @@ -10902,9 +10087,8 @@ msgid "Generate a visual representation of your dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:52 -#, fuzzy msgid "Generate a simple Gemfile" -msgstr "Masterdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:53 #: /tmp/fish/implicit/share/completions/bundle.fish:78 @@ -10932,9 +10116,8 @@ msgid "Specify a path other than the system default (BUNDLE_PATH or GEM_HOME)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:59 -#, fuzzy msgid "Lock the Gemfile" -msgstr "Log in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:60 #: /tmp/fish/implicit/share/completions/bundle.fish:62 @@ -10949,9 +10132,8 @@ msgid "List the paths of all gems required by your Gemfile" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:65 -#, fuzzy msgid "Check for newer pre-release gems" -msgstr "Test auf Speicher-Lecks" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:66 msgid "Check against a specific source" @@ -10970,9 +10152,8 @@ msgid "The name to use for the generated file (see format option)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:73 -#, fuzzy msgid "Show each gem version" -msgstr "Version des Quellenbaumes" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:74 msgid "Show the version of each required dependency" @@ -10983,9 +10164,8 @@ msgid "Output a specific format (png, jpg, svg, dot, …)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:76 -#, fuzzy msgid "Generate a simple Gemfile, placed in the current directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:77 msgid "Use a specified .gemspec to create the Gemfile" @@ -11008,9 +10188,8 @@ msgid "Generate the boilerplate for C extension code" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:84 -#, fuzzy msgid "Only display Ruby directive information" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:86 msgid "Only print out changes, do not actually clean gems" @@ -11029,9 +10208,8 @@ msgid "Include all sources (including path and git)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:91 -#, fuzzy msgid "Prints the license of all gems in the bundle" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:92 msgid "Print information about the environment Bundler is running under" @@ -11051,9 +10229,8 @@ msgstr "Überschreiben" #: /tmp/fish/implicit/share/completions/bunzip2.fish:3 #: /tmp/fish/implicit/share/completions/bzip2.fish:5 -#, fuzzy msgid "Do not overwrite" -msgstr "Nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/bunzip2.fish:4 #: /tmp/fish/implicit/share/completions/bzcat.fish:1 @@ -11075,9 +10252,8 @@ msgid "Print license" msgstr "Lizenz ausgeben" #: /tmp/fish/implicit/share/completions/busctl.fish:1 -#, fuzzy msgid "Suppress message payload display" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:2 msgid "Show a flat list instead of a tree" @@ -11088,9 +10264,8 @@ msgid "Activate the peer if necessary" msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:4 -#, fuzzy msgid "Only show unique (:X.Y) names" -msgstr "Nur einmalige Zeilen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:5 msgid "Only show well-known names" @@ -11107,9 +10282,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bzip2.fish:1 #: /tmp/fish/implicit/share/completions/gunzip.fish:1 #: /tmp/fish/implicit/share/completions/gzip.fish:1 -#, fuzzy msgid "Compress to stdout" -msgstr "Auf Standardausgabe dekomprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/bzip2.fish:2 msgid "Compress file" @@ -11134,28 +10308,24 @@ msgid "Large block size" msgstr "Grosse Blockgrösse" #: /tmp/fish/implicit/share/completions/bzr.fish:2 -#, fuzzy msgid "List all help topics" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:3 -#, fuzzy msgid "List all commands" -msgstr "Diesen Befehl deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:4 -#, fuzzy msgid "Help about supported formats" -msgstr "Komma-getrenntes Format" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:5 msgid "Help about current supported formats" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:6 -#, fuzzy msgid "How to specify revisions in bzr" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:7 msgid "Show bug tracker settings in bzr" @@ -11198,9 +10368,8 @@ msgid "Switch the checkout in the current directory to the new branch" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:17 -#, fuzzy msgid "Hard-link working tree files where possible" -msgstr "Arbeitsbaum mit Paketdepot synchronisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:18 msgid "Bind new branch to from location" @@ -11211,33 +10380,28 @@ msgid "Create a branch without a working-tree" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:20 -#, fuzzy msgid "Make files or directories versioned" -msgstr "Ein oder mehrere Dateien/Verzeichnisse aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:21 -#, fuzzy msgid "Don't recursively add the contents of directories" -msgstr "Keine Verzeichnis-Hierarchie erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:22 -#, fuzzy msgid "Ignore a file or pattern" -msgstr "white space (Worttrenner) ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:23 msgid "Display the default ignore rules that bzr uses" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:24 -#, fuzzy msgid "Move or rename a versioned file" -msgstr "Datei nicht erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:25 -#, fuzzy msgid "Automatically guess renames" -msgstr "Automatisch Ja für Abfragen verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:26 msgid "" @@ -11246,41 +10410,36 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:27 -#, fuzzy msgid "Summarize changes in working copy" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:28 msgid "Use short status indicators" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:29 -#, fuzzy msgid "Only show versioned files" -msgstr "Nur neuere Dateien speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:30 -#, fuzzy msgid "Don't show pending merges" -msgstr "Führenden / nicht entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:31 msgid "Do not mark object type using indicator" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:32 -#, fuzzy msgid "Show internal object ids" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:33 msgid "Show detailed diffs" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:34 -#, fuzzy msgid "Pull in changes from another branch" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:35 msgid "" @@ -11289,9 +10448,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:36 -#, fuzzy msgid "Remember the specified location as a default" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:37 msgid "Merge even if the destination tree has uncommitted changes" @@ -11307,18 +10465,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:40 -#, fuzzy msgid "Show base revision text in conflicts" -msgstr "Letzte Revision anzeigen, bei der jede Zeile verändert wurde" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:41 msgid "Instead of merging, show a diff of the merge" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:42 -#, fuzzy msgid "Select changes interactively" -msgstr "Schnittstelle auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:43 msgid "" @@ -11327,14 +10483,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:44 #: /tmp/fish/implicit/share/completions/bzr.fish:45 -#, fuzzy msgid "Select changes introduced by the specified revision" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:46 -#, fuzzy msgid "Save some or all changes" -msgstr "Anzahl der Audiokanäle festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:47 msgid "" @@ -11343,18 +10497,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:48 -#, fuzzy msgid "Take commit message from this file" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:49 msgid "Do not consider changes made to a given path" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:50 -#, fuzzy msgid "Description of the new revision" -msgstr "Beschreibung dieser Vervollständigung" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:51 msgid "Set the author's name, if it's different from the commiter" @@ -11373,9 +10525,8 @@ msgid "Mark a bug as being fixed by this revision" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:55 -#, fuzzy msgid "Refuse to commit if there are unknown files in the working tree" -msgstr "Nicht aufgezeichnete Änderungen in der Arbeitskopie anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:56 msgid "" @@ -11406,14 +10557,12 @@ msgid "Mail the request to this address" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:62 -#, fuzzy msgid "Use the specified output format" -msgstr "Angegebene Warteschlange benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:63 -#, fuzzy msgid "Do not include a bundle in the merge directive" -msgstr "Unterverzeichnisgrösse nicht einschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:64 msgid "" @@ -11426,50 +10575,41 @@ msgid "Do not include a preview patch in the merge directive" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:66 -#, fuzzy msgid "Show history of changes" -msgstr "Quellpaket anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:67 -#, fuzzy msgid "Validate storage" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:68 -#, fuzzy msgid "Check the working tree related to the current directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:69 -#, fuzzy msgid "Check the repository related to the current directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:70 -#, fuzzy msgid "Check the branch related to the current directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:71 -#, fuzzy msgid "Show usage message and options" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:72 #: /tmp/fish/implicit/share/completions/git.fish:382 -#, fuzzy msgid "Show help message" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:73 -#, fuzzy msgid "Only displays errors and warnings" -msgstr "Einge Fehler zu Warnungen herabstufen" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:74 -#, fuzzy msgid "Display more information" -msgstr "Inode-Information auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:75 msgid "Show what would be done" @@ -11528,18 +10668,16 @@ msgid "Default port to use for HTTPS" msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:14 -#, fuzzy msgid "Process log file" -msgstr "Zeiger auf Prozessliste" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:15 msgid "Path to write pid file" msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:16 -#, fuzzy msgid "List installed plugins" -msgstr "Auf Installierte begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:17 msgid "Default port" @@ -11558,14 +10696,12 @@ msgid "Hostname for which to revoke the certificate" msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:21 -#, fuzzy msgid "Root path of default site" -msgstr "Standardpaketdepot nicht festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:22 -#, fuzzy msgid "Type of server to run" -msgstr "Top-Server in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:23 msgid "Parse the Caddyfile but do not start the server" @@ -11580,9 +10716,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:10 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:2 #: /tmp/fish/implicit/share/completions/s3cmd.fish:128 -#, fuzzy msgid "Show version" -msgstr "Sortierung nach Version" +msgstr "" #: /tmp/fish/implicit/share/completions/caffeinate.fish:1 msgid "Create an assertion to prevent the display from sleeping" @@ -11605,9 +10740,8 @@ msgid "Create an assertion to declare that user is active" msgstr "" #: /tmp/fish/implicit/share/completions/caffeinate.fish:6 -#, fuzzy msgid "Specifies the timeout value in seconds" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/caffeinate.fish:7 msgid "Waits for the process with the specified PID to exit" @@ -11618,29 +10752,24 @@ msgid "Cancel jobs owned by username" msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:1 -#, fuzzy msgid "Show Help" -msgstr "Zeittyp anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:3 -#, fuzzy msgid "Update before running" -msgstr "Quelle aktualisieren und erneut erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:4 -#, fuzzy msgid "List feeds" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:5 -#, fuzzy msgid "Show number of new items" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:6 -#, fuzzy msgid "Show number of new items for feed" -msgstr "Anzahl der Versuche auf Anzahl festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:7 msgid "Feed" @@ -11659,63 +10788,52 @@ msgid "Add feed" msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:11 -#, fuzzy msgid "Set configuration directory" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:12 #: /tmp/fish/implicit/share/completions/pine.fish:10 -#, fuzzy msgid "Set configuration file" -msgstr "Globale Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:13 -#, fuzzy msgid "Set client log file" -msgstr "Kennzeichnungsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:14 -#, fuzzy msgid "Set feed directory" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:15 -#, fuzzy msgid "Set script directory" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:1 #: /tmp/fish/implicit/share/completions/light.fish:2 #: /tmp/fish/implicit/share/completions/rustc.fish:1 -#, fuzzy msgid "Print version info and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:2 -#, fuzzy msgid "List installed commands" -msgstr "Diesen Befehl deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:3 #: /tmp/fish/implicit/share/completions/rustc.fish:2 -#, fuzzy msgid "Use verbose output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:4 -#, fuzzy msgid "No output printed to stdout" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:5 -#, fuzzy msgid "Don't build documentation for dependencies" -msgstr "Nicht automatisch Abhängigkeiten erfüllen" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:6 -#, fuzzy msgid "Specify a vcs to use" -msgstr "Befehl an die Shell übergeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:7 msgid "Opens the docs in a browser after the operation" @@ -11730,9 +10848,8 @@ msgid "Login of a user to remove as an owner" msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:10 -#, fuzzy msgid "Don't verify the contents by building them" -msgstr "Zeit-Attribute nicht prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:11 msgid "Ignore warnings about a lack of human-usable metadata" @@ -11771,9 +10888,8 @@ msgid "Path or URL to SRT or VTT file" msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:5 -#, fuzzy msgid "Set subtitles font scale" -msgstr "Untertitel-Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:6 msgid "Set subtitles font RGBA color" @@ -11784,15 +10900,13 @@ msgid "Specify port to be used for serving subtitles" msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:8 -#, fuzzy msgid "Set local IP" -msgstr "Blockgröße festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:9 #: /tmp/fish/implicit/share/completions/pv.fish:12 -#, fuzzy msgid "No output" -msgstr "Video-Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:10 msgid "Explicitly set the mime-type" @@ -11816,37 +10930,32 @@ msgid "Play in random order" msgstr "in zufälliger Reihenfolge spielen" #: /tmp/fish/implicit/share/completions/castnow.fish:15 -#, fuzzy msgid "List all files in directories recursively" -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:16 -#, fuzzy msgid "Set at which the volume changes" -msgstr "Lokale Änderungen patchen" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:17 msgid "Specify port to be used for serving local file" msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:18 -#, fuzzy msgid "Specify port to be used for serving transcoded file" -msgstr "Port für Weboberfläche angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:19 -#, fuzzy msgid "Specify port to be used for serving torrented file" -msgstr "Port für Weboberfläche angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:20 msgid "Specify port to be used for serving file read from stdin" msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:21 -#, fuzzy msgid "Execute key command(s)" -msgstr "Argument als Befehl ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:22 msgid "Exit when playback begins or --command completes" @@ -11873,9 +10982,8 @@ msgid "Do not print out a status report for failed SCSI commands" msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:7 -#, fuzzy msgid "Force to continue on some errors" -msgstr "Keine Fortsetzung bei Fehlern" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:8 msgid "Tell cdrecord to set the SCSI IMMED flag in certain commands" @@ -11905,9 +11013,8 @@ msgid "Set TAO (Track At Once) writing mode" msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:14 -#, fuzzy msgid "Set RAW writing mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:15 msgid "Select Set RAW writing, the preferred raw writing mode" @@ -11955,9 +11062,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:25 -#, fuzzy msgid "Load the media and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:26 msgid "Load the media, lock the door and exit" @@ -11980,9 +11086,8 @@ msgid "Format a CD-RW/DVD-RW/DVD+RW disc" msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:31 -#, fuzzy msgid "Set the FIFO (ring buffer) size to #" -msgstr "Speicherpuffergröße festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:32 msgid "Set the maximum transfer size for a single SCSI command to #" @@ -12005,9 +11110,8 @@ msgid "Allows the user to manually select a driver for the device" msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:37 -#, fuzzy msgid "Set driver specific options" -msgstr "Befehlsspezifische Erweiterungen bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:38 msgid "" @@ -12050,9 +11154,8 @@ msgid "Ignore the known size of the medium, use for debugging only" msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:47 -#, fuzzy msgid "Use *.inf files to overwrite audio options" -msgstr "Antwort für Überschreib-Fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:48 msgid "Set the default pre-gap size for all tracks except track nr 1" @@ -12209,9 +11312,8 @@ msgstr "Informationen über geänderte Dateien ausgeben" #: /tmp/fish/implicit/share/completions/chgrp.fish:2 #: /tmp/fish/implicit/share/completions/chown.fish:2 -#, fuzzy msgid "Dereference symbolic links" -msgstr "Symbolische Verweise dereferenzieren" +msgstr "" #: /tmp/fish/implicit/share/completions/chgrp.fish:3 #: /tmp/fish/implicit/share/completions/chown.fish:3 @@ -12225,9 +11327,8 @@ msgstr "Von Eigner/Gruppe wechseln" #: /tmp/fish/implicit/share/completions/chgrp.fish:5 #: /tmp/fish/implicit/share/completions/chown.fish:5 -#, fuzzy msgid "Suppress errors" -msgstr "Fehler unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/chgrp.fish:6 #: /tmp/fish/implicit/share/completions/chown.fish:6 @@ -12254,29 +11355,25 @@ msgid "Do not treat / specially (the default)" msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:3 -#, fuzzy msgid "Fail to operate recursively on /" -msgstr "Rekursiv arbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:4 #: /tmp/fish/implicit/share/completions/readlink.fish:5 -#, fuzzy msgid "Suppress most error messages" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:5 -#, fuzzy msgid "Output a diagnostic for every file processed" -msgstr "Informationen zu jeder Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:6 msgid "Use RFILEs mode instead of MODE values" msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:7 -#, fuzzy msgid "Change files and directories recursively" -msgstr "Dateien unter jedem Verzeichnis lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/chown.fish:11 #: /tmp/fish/implicit/share/completions/chown.fish:12 @@ -12285,34 +11382,28 @@ msgid "Username" msgstr "Benutzername" #: /tmp/fish/implicit/share/completions/chsh.fish:1 -#, fuzzy msgid "Specify your login shell" -msgstr "E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:2 -#, fuzzy msgid "Display help and exit\t" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:4 -#, fuzzy msgid "List available shells and exit" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:2 -#, fuzzy msgid "Update your climate install" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:3 -#, fuzzy msgid "uninstall climate" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:4 -#, fuzzy msgid "Show climate version" -msgstr "Version des Quellenbaumes" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:5 msgid "Get the weather" @@ -12320,23 +11411,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:6 #: /tmp/fish/implicit/share/completions/climate.fish:7 -#, fuzzy msgid "Display remaining battery" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:8 msgid "Lock computer" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:9 -#, fuzzy msgid "Shutdown the computer" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:10 -#, fuzzy msgid "Restart the computer" -msgstr "Startkapitel festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:12 msgid "Put a console clock in the top right corner" @@ -12351,67 +11439,56 @@ msgid "A stopwatch" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:15 -#, fuzzy msgid "Pipe output to ix.io" -msgstr "Ausgabe an Datei anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:16 -#, fuzzy msgid "Find the biggest files recursively" -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:17 -#, fuzzy msgid "Find the biggest directories" -msgstr "Datei ist ein Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:18 -#, fuzzy msgid "Find directory size" -msgstr "Unterverzeichnisgrösse nicht einschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:19 -#, fuzzy msgid "Remove empty directories" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:20 -#, fuzzy msgid "Extract any given archive" -msgstr "Aus Archiv extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:21 -#, fuzzy msgid "Report duplicate files in a directory" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:22 -#, fuzzy msgid "Count the number of occurences" -msgstr "Anzahl der Argumente zählen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:23 msgid "Monitor file for changes" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:24 -#, fuzzy msgid "Search for the given pattern recursively" -msgstr "Schlüsselserver nach den angegebenen Namen durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:25 -#, fuzzy msgid "Replace all occurences" -msgstr "include-Verzeichnisse ersetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:26 msgid "Create a ramfs of size (in MB) at path" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:27 -#, fuzzy msgid "Test your network speed" -msgstr "Markierungen, die Sie sehen möchten" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:28 msgid "Retrieve your local ip address" @@ -12426,52 +11503,44 @@ msgid "Retrieve your public ip address" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:31 -#, fuzzy msgid "List open ports" -msgstr "Komprimierungsinformation auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:32 -#, fuzzy msgid "Edit the hosts file" -msgstr "In Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:33 -#, fuzzy msgid "http-server serving the current directory" -msgstr "Dateien unter jedem Verzeichnis lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:34 msgid "Determine if server is up" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:35 -#, fuzzy msgid "Download file from server" -msgstr "Originaldateien editieren" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:36 -#, fuzzy msgid "Download dir from server" -msgstr "Eine Quelle herunterladen und extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:37 -#, fuzzy msgid "Upload to server" -msgstr "Proxy-Server verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:38 -#, fuzzy msgid "Mount a remote path" -msgstr "Patch nicht signieren" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:39 msgid "Unmount a ssh mount" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:40 -#, fuzzy msgid "Undo the latest commit" -msgstr "Das test-Skript ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:41 msgid "Reset local repo to match remote" @@ -12482,28 +11551,24 @@ msgid "Seset local repo to match remote" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:43 -#, fuzzy msgid "List all branches" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:44 -#, fuzzy msgid "Calculate the repo size" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:45 msgid "Calculate total contribution for a user" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:46 -#, fuzzy msgid "Display a performance overview" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:47 -#, fuzzy msgid "Find memory used" -msgstr "Speicherbedarf reduzieren" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:48 msgid "Find disk used" @@ -12518,18 +11583,16 @@ msgid "Find the trash size" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:51 -#, fuzzy msgid "Empty the trash" -msgstr "Shell verlassen" +msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:1 msgid "Combine sets of lines from two files using boolean operations" msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:2 -#, fuzzy msgid "Output lines that are in both files" -msgstr "rss-Data in Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:3 msgid "Output lines that are inf file1 but not in file2" @@ -12544,9 +11607,8 @@ msgid "Output lines that are in either file1 or file2, but not in both files" msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:6 -#, fuzzy msgid "Read file from stdin" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/command.fish:2 msgid "Print the file that would be executed" @@ -12597,23 +11659,20 @@ msgid "Inject readline functions to reader" msgstr "readline-Funktion zum reader injizieren" #: /tmp/fish/implicit/share/completions/commandline.fish:11 -#, fuzzy msgid "Print each token on a separate line" -msgstr "Länge der längsten Zeile ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:12 -#, fuzzy msgid "Specify command to operate on" -msgstr "Befehl an die Shell übergeben" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:13 msgid "Set/get cursor position, not buffer contents" msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:14 -#, fuzzy msgid "Print the line that the cursor is on" -msgstr "Nachrichten über den Programmablauf ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:15 msgid "Return true if performing a history search" @@ -12672,9 +11731,8 @@ msgid "Measure differences between images with this metric [type]" msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:23 -#, fuzzy msgid "Get the passphrase from this file [filename]" -msgstr "Passwortsatz aus dem angegebenen Dateideskriptor lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:24 #: /tmp/fish/implicit/share/completions/display.fish:32 @@ -12693,9 +11751,8 @@ msgid "JPEG/MIFF/PNG compression level [value]" msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:34 -#, fuzzy msgid "Search for subimage" -msgstr "Nach anderem System suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:36 #: /tmp/fish/implicit/share/completions/composite.fish:74 @@ -12713,9 +11770,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:34 #: /tmp/fish/implicit/share/completions/stream.fish:33 #: /tmp/fish/implicit/share/completions/terraform.fish:1 -#, fuzzy msgid "Print version information" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:44 #: /tmp/fish/implicit/share/completions/composite.fish:39 @@ -12734,14 +11790,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:73 #: /tmp/fish/implicit/share/completions/montage.fish:59 #: /tmp/fish/implicit/share/completions/stream.fish:25 -#, fuzzy msgid "Declare the image as modified" -msgstr "Vorgegebene Datei wurde geändert" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:1 -#, fuzzy msgid "Command to add completion to" -msgstr "Pfad, bei dem Vervollständigung berücksichtigt werden soll" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:2 msgid "Path to add completion to" @@ -12784,14 +11838,12 @@ msgid "Option list is not complete" msgstr "Optionsliste ist nicht vollständig" #: /tmp/fish/implicit/share/completions/complete.fish:12 -#, fuzzy msgid "Remove completion" -msgstr "Vervollständigung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:14 -#, fuzzy msgid "Print all completions for the specified commandline" -msgstr "Alle möglichen Definitionen des angegebenen Namens ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:15 msgid "" @@ -12800,24 +11852,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:16 -#, fuzzy msgid "Inherit completions from the specified command" -msgstr "Ausgabe durch angegebenen Befehl schicken" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:1 -#, fuzzy msgid "User script" -msgstr "Datei auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:2 -#, fuzzy msgid "Short information about Composer" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:3 -#, fuzzy msgid "Create an archive of this composer package" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:4 #: /tmp/fish/implicit/share/completions/composer.fish:15 @@ -12830,14 +11878,12 @@ msgid "Clears composer's internal package cache." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:8 -#, fuzzy msgid "Create new project from a package into given directory." -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:9 -#, fuzzy msgid "Shows which packages depend on the given package" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:10 msgid "Diagnoses the system to identify common errors." @@ -12845,9 +11891,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:11 #: /tmp/fish/implicit/share/completions/composer.fish:12 -#, fuzzy msgid "Dumps the autoloader" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:13 #, sh-format @@ -12855,14 +11900,12 @@ msgid "Allows running commands in the global composer dir ($COMPOSER_HOME)." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:14 -#, fuzzy msgid "Displays help for a command" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:16 -#, fuzzy msgid "Creates a basic composer.json file in current directory." -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:17 msgid "" @@ -12871,19 +11914,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:18 -#, fuzzy msgid "Show information about licenses of dependencies" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:19 -#, fuzzy msgid "Lists commands" -msgstr "Prozessbefehl" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:20 -#, fuzzy msgid "Removes a package from the require or require-dev" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:21 msgid "Adds required packages to your composer.json and installs them" @@ -12895,25 +11935,21 @@ msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:23 #: /tmp/fish/implicit/share/completions/npm.fish:34 -#, fuzzy msgid "Search for packages" -msgstr "Quellpakete abrufen" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:24 #: /tmp/fish/implicit/share/completions/composer.fish:25 -#, fuzzy msgid "Updates composer.phar to the latest version." -msgstr "Abhängigkeiten an makefile anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:26 -#, fuzzy msgid "Show information about packages" -msgstr "Volle Versionen der Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:27 -#, fuzzy msgid "Show a list of locally modified packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:28 msgid "" @@ -12926,23 +11962,20 @@ msgid "Validates a composer.json" msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:30 -#, fuzzy msgid "Shows which packages cause the given package to be installed" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:31 -#, fuzzy msgid "Shows which packages prevent the given package from being installed" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:32 msgid "Displays composer's help." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:33 -#, fuzzy msgid "Do not output any message." -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:34 msgid "" @@ -12951,9 +11984,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:35 -#, fuzzy msgid "Display composer's application version." -msgstr "Kompressionsrate anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:36 msgid "Force ANSI output." @@ -12964,9 +11996,8 @@ msgid "Disable ANSI output." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:38 -#, fuzzy msgid "Do not ask any interactive question." -msgstr "Ausführung im interaktiven Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:39 msgid "Display timing and memory usage information." @@ -12996,15 +12027,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:5 #: /tmp/fish/implicit/share/completions/mogrify.fish:15 #: /tmp/fish/implicit/share/completions/montage.fish:11 -#, fuzzy msgid "Annotate image with comment [string]" -msgstr "Keinen Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:8 #: /tmp/fish/implicit/share/completions/montage.fish:12 -#, fuzzy msgid "Composite operator [operator]" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:13 #: /tmp/fish/implicit/share/completions/convert.fish:24 @@ -13061,9 +12090,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:30 #: /tmp/fish/implicit/share/completions/mogrify.fish:57 #: /tmp/fish/implicit/share/completions/montage.fish:43 -#, fuzzy msgid "Font point size [value]" -msgstr "Kopfzeile nicht ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:32 #: /tmp/fish/implicit/share/completions/convert.fish:57 @@ -13076,9 +12104,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:62 #: /tmp/fish/implicit/share/completions/import.fish:36 #: /tmp/fish/implicit/share/completions/mogrify.fish:64 -#, fuzzy msgid "Image scene number [value]" -msgstr "Vergleiche generelle numerische Werte" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:43 msgid "Repeat composite operation across and down image" @@ -13205,9 +12232,8 @@ msgid "Architecture-dependent install directory" msgstr "Architekturabhängiges Installationsverzeichnis" #: /tmp/fish/implicit/share/completions/configure.fish:10 -#, fuzzy msgid "Configure for building on BUILD" -msgstr "Konfiguration zur Kompilererstellung für ZIEL" +msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:11 msgid "Cross-compile to build programs to run on HOST" @@ -13222,9 +12248,8 @@ msgid "Shows if the system is online or offline" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:2 -#, fuzzy msgid "Display technologies" -msgstr "Alle Änderungsprotokolle anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:3 msgid "Get System Clock Properties" @@ -13235,23 +12260,20 @@ msgid "Enables given technology or offline mode" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:5 -#, fuzzy msgid "Disables given technology or offline mode" -msgstr "Import des Seitenmoduls deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:6 msgid "Enable, disable tethering, set SSID and passphrase for wifi" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:7 -#, fuzzy msgid "Display services" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:8 -#, fuzzy msgid "Display peers" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:9 msgid "Scans for new services for given technology" @@ -13266,24 +12288,20 @@ msgid "Disconnect a given service or peer" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:12 -#, fuzzy msgid "Set service configuration options" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:13 -#, fuzzy msgid "Monitor signals from interfaces" -msgstr "X-Schnittstelle nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:14 -#, fuzzy msgid "Display VPN connections" -msgstr "Steuerzeichen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:15 -#, fuzzy msgid "Enable or disable a session" -msgstr "Ausdruck auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:16 msgid "(Un)Register a Peer Service" @@ -13313,9 +12331,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:7 #: /tmp/fish/implicit/share/completions/mogrify.fish:5 -#, fuzzy msgid "Background color [color]" -msgstr "Hintergrundfarbe ändern" +msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:8 #: /tmp/fish/implicit/share/completions/mogrify.fish:6 @@ -13397,14 +12414,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:51 #: /tmp/fish/implicit/share/completions/identify.fish:18 #: /tmp/fish/implicit/share/completions/mogrify.fish:56 -#, fuzzy msgid "Efficiently determine image attributes" -msgstr "Zusätzliche Dateiattribute ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:53 -#, fuzzy msgid "Maximum number of significant digits to print [value]" -msgstr "erlaubte Anzahl maximaler Verbindungen" +msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:54 #: /tmp/fish/implicit/share/completions/mogrify.fish:58 @@ -13570,133 +12585,35 @@ msgstr "" msgid "Enhance or reduce the image contrast" msgstr "" -#: /tmp/fish/implicit/share/completions/cower.fish:1 -#, fuzzy -msgid "Show output in a more script friendly format" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" - -#: /tmp/fish/implicit/share/completions/cower.fish:2 -#, fuzzy -msgid "Download [twice to fetch dependencies]" -msgstr "Status der Abhängigkeiten anzeigen" - -#: /tmp/fish/implicit/share/completions/cower.fish:3 -msgid "Show info for target [twice for more details]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:4 -#, fuzzy -msgid "Search for packages by maintainer" -msgstr "Paket entsprechend Muster suchen" - -#: /tmp/fish/implicit/share/completions/cower.fish:5 -#, fuzzy -msgid "Search for packages by name" -msgstr "Vollständigen Paketnamen suchen" - -#: /tmp/fish/implicit/share/completions/cower.fish:6 -#, fuzzy -msgid "Check AUR packages for updates" -msgstr "Komprimierte Patche erstellen" - -#: /tmp/fish/implicit/share/completions/cower.fish:7 -#, fuzzy -msgid "Use colored output" -msgstr "Farben benutzen" - -#: /tmp/fish/implicit/share/completions/cower.fish:8 -#, fuzzy -msgid "Show debug output" -msgstr "Debug-Ausgabe aktivieren" - -#: /tmp/fish/implicit/share/completions/cower.fish:9 -#, fuzzy -msgid "Overwrite existing files when downloading" -msgstr "Jede einzelne heruntergeladene Datei löschen" - -#: /tmp/fish/implicit/share/completions/cower.fish:10 -#, fuzzy -msgid "Print formatted" -msgstr "Befehlstyp ausgeben" - -#: /tmp/fish/implicit/share/completions/cower.fish:11 -#, fuzzy -msgid "Display help and quit" -msgstr "Hilfe anzeigen und beenden" - -#: /tmp/fish/implicit/share/completions/cower.fish:12 -#, fuzzy -msgid "Ignore a package upgrade" -msgstr "Gehaltene Pakete ignorieren" - -#: /tmp/fish/implicit/share/completions/cower.fish:13 -#, fuzzy -msgid "Ignore a binary repo when checking for updates" -msgstr "Benutzername für Zeitberechnungen ignorieren" - -#: /tmp/fish/implicit/share/completions/cower.fish:14 -#, fuzzy -msgid "Specify a delimiter for list formatters" -msgstr "Verzeichnis für rpm-Datenbank angeben" - -#: /tmp/fish/implicit/share/completions/cower.fish:15 -#, fuzzy -msgid "Output less" -msgstr "Ausgabeverfolgung" - -#: /tmp/fish/implicit/share/completions/cower.fish:16 -msgid "Download targets to DIR" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:17 -msgid "Limit the number of threads created [10]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:18 -#, fuzzy -msgid "Curl timeout in seconds" -msgstr "Minimalintervall in Sekunden" - -#: /tmp/fish/implicit/share/completions/cower.fish:19 -#, fuzzy -msgid "Output more" -msgstr "Ausgabeverfolgung" - #: /tmp/fish/implicit/share/completions/cowsay.fish:1 #: /tmp/fish/implicit/share/completions/cowthink.fish:1 -#, fuzzy msgid "Specify eye string" -msgstr "Optionen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:2 #: /tmp/fish/implicit/share/completions/cowthink.fish:2 -#, fuzzy msgid "Specify cow file" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:4 #: /tmp/fish/implicit/share/completions/cowthink.fish:4 -#, fuzzy msgid "List all cowfiles" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:5 #: /tmp/fish/implicit/share/completions/cowthink.fish:5 -#, fuzzy msgid "No word wrapping" -msgstr "Ping-Flood" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:6 #: /tmp/fish/implicit/share/completions/cowthink.fish:6 -#, fuzzy msgid "Specify tounge string" -msgstr "Optionen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:7 #: /tmp/fish/implicit/share/completions/cowthink.fish:7 -#, fuzzy msgid "Column width" -msgstr "Zeilenbreite" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:8 #: /tmp/fish/implicit/share/completions/cowthink.fish:8 @@ -13740,9 +12657,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cupsdisable.fish:1 #: /tmp/fish/implicit/share/completions/cupsenable.fish:1 -#, fuzzy msgid "Cancels all jobs on the named destination" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/cupsdisable.fish:2 #: /tmp/fish/implicit/share/completions/cupsenable.fish:2 @@ -13755,9 +12671,8 @@ msgid "Releases pending jobs for printing" msgstr "" #: /tmp/fish/implicit/share/completions/cupsdisable.fish:4 -#, fuzzy msgid "Disable reason" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cupsenable.fish:4 msgid "Cancel reason" @@ -13765,14 +12680,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cupsreject.fish:1 #: /tmp/fish/implicit/share/completions/reject.fish:1 -#, fuzzy msgid "Reject reason" -msgstr "Abzulehnende Protokolle" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:1 -#, fuzzy msgid "Output byte range" -msgstr "Bytebereich ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:2 msgid "Output character range" @@ -13787,107 +12700,88 @@ msgid "Select fields" msgstr "Felder auswählen" #: /tmp/fish/implicit/share/completions/cut.fish:5 -#, fuzzy msgid "Don't split multi byte characters" -msgstr "Multibytezeichen nicht trennen" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:6 -#, fuzzy msgid "Do not print lines without delimiter" -msgstr "Zeilen nicht ohne Begrenzer ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:7 msgid "Select output delimiter" msgstr "Ausgabebegrenzer festlegen" #: /tmp/fish/implicit/share/completions/cvs.fish:1 -#, fuzzy msgid "Displays usage information for command." -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:2 -#, fuzzy msgid "Cause CVS to be really quiet." -msgstr "Veranlasst CVS, wirklich still zu sein" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:3 -#, fuzzy msgid "Cause CVS to be somewhat quiet." -msgstr "Veranlasst CVS, etwas stiller zu sein" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:4 -#, fuzzy msgid "Make checked-out files read-only." -msgstr "Ausgecheckte Dateien mit Schreibschutz versehen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:5 -#, fuzzy msgid "Make checked-out files read-write (default)." -msgstr "Ausgecheckte Dateien beschreibbar machen (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:6 -#, fuzzy msgid "Do not execute anything that will change the disk." -msgstr "Nichts ausführen, was Änderungen auf die Platte schreibt" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:7 -#, fuzzy msgid "Show trace of program execution -- try with -n." -msgstr "Programmablauf anzeigen -- versuchen Sie -n" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:8 msgid "Assume repository is read-only, such as CDROM" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:9 -#, fuzzy msgid "CVS version and copyright." -msgstr "Magische Versionsinformation ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:10 -#, fuzzy msgid "Use 'tmpdir' for temporary files." -msgstr "tmpdir für temporäre Dateien benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:11 -#, fuzzy msgid "Use 'editor' for editing log information." -msgstr "Editor zum Editieren der Loginformation verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:13 -#, fuzzy msgid "Do not use the ~/.cvsrc file." -msgstr "~/.cvsrc-Datei nicht benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:14 -#, fuzzy msgid "Request compression level '#' for net traffic." -msgstr "Komprimierungsgrad für Netzverkehr" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:15 -#, fuzzy msgid "Encrypt all net traffic." -msgstr "Sämtlichen Netzverkehr verschlüsseln" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:16 -#, fuzzy msgid "Authenticate all net traffic." -msgstr "Sämtlichen Netzverkehr authentifizieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:17 -#, fuzzy msgid "Use IPv4 addresses only." -msgstr "Nur IPv4-Adressen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:18 -#, fuzzy msgid "Use IPv6 addresses only." -msgstr "Nur IPv6-Adressen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:19 -#, fuzzy msgid "Set CVS user variable." -msgstr "CVS-Benutzervariable festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:20 msgid "Add a new file/directory to the repository" @@ -13934,32 +12828,28 @@ msgid "Import sources into CVS, using vendor branches" msgstr "Quellen in CVS importieren, verwende Herstellerzweige" #: /tmp/fish/implicit/share/completions/cvs.fish:31 -#, fuzzy msgid "Create a CVS repository if it doesn't exist" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:32 msgid "Kerberos server mode" msgstr "Kerberos-Servermodus" #: /tmp/fish/implicit/share/completions/cvs.fish:33 -#, fuzzy msgid "Print out history information for files" -msgstr "Verlaufsinformationen für ein Modul ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:34 msgid "Prompt for password for authenticating server" msgstr "Abfrage des Passworts für den Authentifizierungsserver" #: /tmp/fish/implicit/share/completions/cvs.fish:35 -#, fuzzy msgid "Removes entry in .cvspass for remote repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:36 -#, fuzzy msgid "List files available from CVS" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:37 msgid "Password server mode" @@ -13970,27 +12860,24 @@ msgid "Show last revision where each line of module was modified" msgstr "Zeige letzte Revision, bei der jede Modulzeile verändert wurde" #: /tmp/fish/implicit/share/completions/cvs.fish:39 -#, fuzzy msgid "Create 'patch' format diffs between releases" -msgstr "Erstelle Diffs zwischen Veröffentlichungen im Patch-Format" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:40 msgid "Indicate that a Module is no longer in use" msgstr "Anzeigen, das ein Modul nicht mehr benutzt wird" #: /tmp/fish/implicit/share/completions/cvs.fish:41 -#, fuzzy msgid "Remove an entry from the repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:42 msgid "Print out history information for a module" msgstr "Verlaufsinformationen für ein Modul ausgeben" #: /tmp/fish/implicit/share/completions/cvs.fish:43 -#, fuzzy msgid "List files in a module" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:44 msgid "Add a symbolic tag to a module" @@ -14001,9 +12888,8 @@ msgid "Server mode" msgstr "Server-Modus" #: /tmp/fish/implicit/share/completions/cvs.fish:46 -#, fuzzy msgid "Display status information on checked out files" -msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:47 msgid "Add a symbolic tag to checked out version of files" @@ -14011,23 +12897,20 @@ msgstr "" "Der Version von ausgecheckten Dateien eine symbolische Markierung hinzufügen" #: /tmp/fish/implicit/share/completions/cvs.fish:48 -#, fuzzy msgid "Undo an edit command" -msgstr "Keine Befehle ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:49 msgid "Bring work tree in sync with repository" msgstr "Arbeitsbaum mit Paketdepot synchronisieren" #: /tmp/fish/implicit/share/completions/cvs.fish:50 -#, fuzzy msgid "Show current CVS version(s)" -msgstr "Version des Quellenbaumes" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:51 -#, fuzzy msgid "Set watches" -msgstr "Architektur festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:52 msgid "See who is watching a file" @@ -14046,9 +12929,8 @@ msgid "Append (comma-separated) user names to access list." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:56 -#, fuzzy msgid "Append another file's access list." -msgstr "Neue Dateien anfügen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:57 msgid "[rev] Set default branch (highest branch on trunk if omitted)." @@ -14063,14 +12945,12 @@ msgid "[users] Remove (comma-separated) user names from access list" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:60 -#, fuzzy msgid "Run interactively." -msgstr "Benutzer interaktiv fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:61 -#, fuzzy msgid "Set keyword substitution mode:" -msgstr "Befehlsersetzungsblock" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:62 msgid "[rev] Lock revision (latest revision on branch," @@ -14081,9 +12961,8 @@ msgid "Set strict locking." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:64 -#, fuzzy msgid "Replace revision's log message." -msgstr "E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:65 msgid "Tag branch or revision. If :rev is omitted," @@ -14094,9 +12973,8 @@ msgid "Same as -n except override existing tag." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:67 -#, fuzzy msgid "Delete (outdate) specified range of revisions:" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:68 msgid "Run quietly." @@ -14141,9 +13019,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:259 #: /tmp/fish/implicit/share/completions/cvs.fish:267 #: /tmp/fish/implicit/share/completions/cvs.fish:278 -#, fuzzy msgid "Process directories recursively." -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:76 #: /tmp/fish/implicit/share/completions/cvs.fish:205 @@ -14152,21 +13029,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:77 #: /tmp/fish/implicit/share/completions/cvs.fish:206 -#, fuzzy msgid "Annotate binary files." -msgstr "Kommentare in Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:78 #: /tmp/fish/implicit/share/completions/cvs.fish:207 -#, fuzzy msgid "Annotate file as of specified revision/tag." -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:79 #: /tmp/fish/implicit/share/completions/cvs.fish:208 -#, fuzzy msgid "Annotate file as of specified date." -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:80 #: /tmp/fish/implicit/share/completions/cvs.fish:272 @@ -14182,9 +13056,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:198 #: /tmp/fish/implicit/share/completions/cvs.fish:241 #: /tmp/fish/implicit/share/completions/cvs.fish:273 -#, fuzzy msgid "Prune empty directories." -msgstr "Temporäres Verzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:84 msgid "\"cat\" the module database." @@ -14203,9 +13076,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:102 #: /tmp/fish/implicit/share/completions/cvs.fish:150 #: /tmp/fish/implicit/share/completions/cvs.fish:211 -#, fuzzy msgid "Local directory only, not recursive" -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:87 #: /tmp/fish/implicit/share/completions/cvs.fish:152 @@ -14247,24 +13119,21 @@ msgid "Check for valid edits before committing." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:97 -#, fuzzy msgid "Local directory only (not recursive)." -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:98 msgid "Force the file to be committed; disables recursion." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:99 -#, fuzzy msgid "Read the log message from file." -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:100 #: /tmp/fish/implicit/share/completions/cvs.fish:180 -#, fuzzy msgid "Log message." -msgstr "E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:101 msgid "Commit to this branch or trunk revision." @@ -14272,9 +13141,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:104 #: /tmp/fish/implicit/share/completions/cvs.fish:218 -#, fuzzy msgid "Specify keyword expansion mode." -msgstr "Kernel-Version angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:105 msgid "Diff revision for date against working file." @@ -14297,45 +13165,38 @@ msgid "--ignore-case Consider upper- and lower-case to be the same." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:110 -#, fuzzy msgid "--ignore-all-space Ignore all white space." -msgstr "white space (Worttrenner) ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:111 -#, fuzzy msgid "--ignore-space-change Ignore changes in the amount of white space." -msgstr "Änderung in der Anzahl von Worttrennern ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:112 -#, fuzzy msgid "--ignore-blank-lines Ignore changes whose lines are all blank." -msgstr "Änderungen ignorieren, deren Zeilen dem reg. Ausdruck entsprechen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:113 -#, fuzzy msgid "--ignore-matching-lines=RE Ignore changes whose lines all match RE." -msgstr "Änderungen ignorieren, deren Zeilen dem reg. Ausdruck entsprechen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:114 msgid "Binary Read and write data in binary mode." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:115 -#, fuzzy msgid "--text Treat all files as text." -msgstr "Alle Dateien als Text behandeln" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:116 -#, fuzzy msgid "" "-C NUM --context[=NUM] Output NUM (default 2) lines of copied context." -msgstr "NUM Zeilen des kopierten Kontextes ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:117 -#, fuzzy msgid "" "-U NUM --unified[=NUM] Output NUM (default 2) lines of unified context." -msgstr "NUM Zeilen des vereinheitlichten Kontextes ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:118 msgid "UM Use NUM context lines." @@ -14350,14 +13211,12 @@ msgid "--show-c-function Show which C function each change is in." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:121 -#, fuzzy msgid "--show-function-line=RE Show the most recent line matching RE." -msgstr "Änderungen ignorieren, deren Zeilen dem reg. Ausdruck entsprechen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:122 -#, fuzzy msgid "Brief Output only whether files differ." -msgstr "Nur Unterschiede der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:123 msgid "--ed Output an ed script." @@ -14368,14 +13227,12 @@ msgid "--forward-ed Output something like an ed script in forward order." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:125 -#, fuzzy msgid "--rcs Output an RCS format diff." -msgstr "Normalen Diff ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:126 -#, fuzzy msgid "--side-by-side Output in two columns." -msgstr "Ausgabe in zwei Spalten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:127 msgid "--width=NUM Output at most NUM (default 130) characters per line." @@ -14412,9 +13269,8 @@ msgid "--initial-tab Make tabs line up by prepending a tab." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:136 -#, fuzzy msgid "--new-file Treat absent files as empty." -msgstr "Nicht vorhandene Dateien als leer behandeln" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:137 msgid "--report-identical-files Report when two files are the same." @@ -14425,9 +13281,8 @@ msgid "Horizon-lines=NUM Keep NUM lines of the common prefix and suffix." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:139 -#, fuzzy msgid "--minimal Try hard to find a smaller set of changes." -msgstr "Versuche, eine kleinere Menge Änderungen zu finden" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:140 msgid "" @@ -14439,18 +13294,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:266 #: /tmp/fish/implicit/share/completions/cvs.fish:270 #: /tmp/fish/implicit/share/completions/cvs.fish:286 -#, fuzzy msgid "Local directory only, not recursive." -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:142 #: /tmp/fish/implicit/share/completions/cvs.fish:147 #: /tmp/fish/implicit/share/completions/cvs.fish:151 #: /tmp/fish/implicit/share/completions/cvs.fish:271 #: /tmp/fish/implicit/share/completions/cvs.fish:287 -#, fuzzy msgid "Process directories recursively (default)." -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:143 msgid "Specify action to register for temporary watch, one of:" @@ -14467,19 +13320,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:146 #: /tmp/fish/implicit/share/completions/cvs.fish:223 #: /tmp/fish/implicit/share/completions/cvs.fish:258 -#, fuzzy msgid "Process this directory only (not recursive)." -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:153 -#, fuzzy msgid "Export tagged revisions." -msgstr "PKG-Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:154 -#, fuzzy msgid "Export revisions as of date." -msgstr "Dem Muster entsprechende Einträge übergehen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:155 msgid "Export into dir instead of module name." @@ -14498,18 +13348,16 @@ msgid "Committed (Modified) files" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:159 -#, fuzzy msgid "Checked out modules" -msgstr "Module entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:160 msgid "Look for specified module (repeatable)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:161 -#, fuzzy msgid "Extract by record type" -msgstr "Skript extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:162 msgid "Everything (same as -x, but all record types)" @@ -14524,14 +13372,12 @@ msgid "Last modified (committed or modified report)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:165 -#, fuzzy msgid "Working directory must match" -msgstr "Verzeichnisnamen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:166 -#, fuzzy msgid "Since date (Many formats)" -msgstr "Profildatenformat" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:167 msgid "Back to record with str in module/file/repos field" @@ -14546,9 +13392,8 @@ msgid "In module (repeatable)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:170 -#, fuzzy msgid "In repository (repeatable)" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:171 msgid "Since rev or tag (looks inside RCS files!)" @@ -14575,9 +13420,8 @@ msgid "When importing new files, mark their trunk revisions as dead." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:177 -#, fuzzy msgid "Set default RCS keyword substitution mode." -msgstr "Befehlsersetzungsblock" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:178 #: /tmp/fish/implicit/share/completions/cvs.fish:284 @@ -14590,9 +13434,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:181 #: /tmp/fish/implicit/share/completions/cvs.fish:285 -#, fuzzy msgid "Wrappers specification line." -msgstr "Letzte Veränderungszeit der Datei anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:183 #: /tmp/fish/implicit/share/completions/cvs.fish:226 @@ -14601,15 +13444,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:184 #: /tmp/fish/implicit/share/completions/cvs.fish:227 -#, fuzzy msgid "Only print header." -msgstr "Kopfzeile nicht ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:185 #: /tmp/fish/implicit/share/completions/cvs.fish:228 -#, fuzzy msgid "Only print name of RCS file." -msgstr "Nur Anzahl von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:186 #: /tmp/fish/implicit/share/completions/cvs.fish:229 @@ -14618,9 +13459,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:187 #: /tmp/fish/implicit/share/completions/cvs.fish:230 -#, fuzzy msgid "Do not list tags." -msgstr "keine mtab schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:188 #: /tmp/fish/implicit/share/completions/cvs.fish:231 @@ -14634,27 +13474,23 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:190 #: /tmp/fish/implicit/share/completions/cvs.fish:233 -#, fuzzy msgid "This option." -msgstr "Konfigurations-Option" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:191 #: /tmp/fish/implicit/share/completions/cvs.fish:234 -#, fuzzy msgid "[revisions]" -msgstr "PKG-Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:192 #: /tmp/fish/implicit/share/completions/cvs.fish:235 -#, fuzzy msgid "A semicolon-separated list of dates" -msgstr "Komma-getrennte Liste anzuzeigender Abhängigkeitstypen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:193 #: /tmp/fish/implicit/share/completions/cvs.fish:236 -#, fuzzy msgid "Only list revisions with specified states." -msgstr "Partition mit angegebenem Label einhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:194 #: /tmp/fish/implicit/share/completions/cvs.fish:237 @@ -14663,9 +13499,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:195 #: /tmp/fish/implicit/share/completions/cvs.fish:238 -#, fuzzy msgid "Show dead revisions (with tag when specified)." -msgstr "Nur zutreffenden Teil anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:196 #: /tmp/fish/implicit/share/completions/cvs.fish:239 @@ -14674,21 +13509,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:197 #: /tmp/fish/implicit/share/completions/cvs.fish:240 -#, fuzzy msgid "Display all details." -msgstr "Alle Änderungsprotokolle anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:199 #: /tmp/fish/implicit/share/completions/cvs.fish:242 -#, fuzzy msgid "List recursively." -msgstr "Rekursiv arbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:200 #: /tmp/fish/implicit/share/completions/cvs.fish:243 -#, fuzzy msgid "Show files with revision or tag." -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:201 #: /tmp/fish/implicit/share/completions/cvs.fish:244 @@ -14709,9 +13541,8 @@ msgid "Context diffs (default)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:214 -#, fuzzy msgid "Unidiff format." -msgstr "Listenformat" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:215 msgid "Short patch - one liner per file." @@ -14722,9 +13553,8 @@ msgid "Top two diffs - last change made to the file." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:217 -#, fuzzy msgid "Use RCS Version vers for keyword expansion." -msgstr "Kernel-Version angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:219 msgid "Date." @@ -14735,14 +13565,12 @@ msgid "Revision - symbolic or numeric." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:221 -#, fuzzy msgid "Delete the given directory." -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:222 -#, fuzzy msgid "Delete the file before removing it." -msgstr "Dateien vor dem Löschen umpacken" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:245 msgid "Clear tag from removed files that would not otherwise be tagged." @@ -14787,18 +13615,16 @@ msgid "Verbose format; includes tag information for the file" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:262 -#, fuzzy msgid "Check that working files are unmodified." -msgstr "Eine lokale Kopie eines weiteren Paketdepots erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:274 msgid "Overwrite locally modified files with clean repository copies." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:275 -#, fuzzy msgid "Build directories, like checkout does." -msgstr "Verzeichnisse, aber nicht deren Inhalt auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:279 msgid "Send updates to standard output (avoids stickiness)." @@ -14813,9 +13639,8 @@ msgid "Set date to update from (is sticky)." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:288 -#, fuzzy msgid "Specify what actions, one of: " -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:1 msgid "Build for 32-bit Cygwin" @@ -14830,34 +13655,28 @@ msgid "Enable debugging messages" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:4 -#, fuzzy msgid "Cygport file" -msgstr "Konfigurationsdatei" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:5 -#, fuzzy msgid "Download all sources" -msgstr "Quelle nicht herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:6 -#, fuzzy msgid "Download missing sources" -msgstr "Quelle nicht herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:7 -#, fuzzy msgid "Prepare source directory" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:8 -#, fuzzy msgid "Build software" -msgstr "Apt-Zwischenspeicher erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:9 -#, fuzzy msgid "Run test suite" -msgstr "Das test-Skript ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:10 msgid "Install into DESTDIR and run post-installation steps" @@ -14868,62 +13687,52 @@ msgid "Run post-installation steps" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:12 -#, fuzzy msgid "List package files" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:13 -#, fuzzy msgid "List debug package files" -msgstr "Fehler aus Paketen auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:14 -#, fuzzy msgid "Show dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:15 -#, fuzzy msgid "Show packaging info" -msgstr "Paketinformation anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:16 msgid "Show project homepage URL" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:17 -#, fuzzy msgid "Create packages, marked as test" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:18 -#, fuzzy msgid "Create packages" -msgstr "Paket löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:19 -#, fuzzy msgid "Create source patches" -msgstr "Quellpakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:20 -#, fuzzy msgid "Upload finished packages" -msgstr "Pakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:21 -#, fuzzy msgid "Upload packages without marking !ready" -msgstr "Ein Paket neu erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:22 msgid "Send announcement email" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:23 -#, fuzzy msgid "Delete working directory" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:24 msgid "Same as prep build inst pkg" @@ -14934,37 +13743,32 @@ msgid "Darcs repo" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:2 -#, fuzzy msgid "Set the specified option" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:3 -#, fuzzy msgid "Display help about darcs and darcs commands" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:4 msgid "Add one or more new files or directories" msgstr "Ein/mehrere neue Datei/en oder Verzeichnis/se hinzufügen" #: /tmp/fish/implicit/share/completions/darcs.fish:5 -#, fuzzy msgid "Remove files from version control" -msgstr "Dateien nach Archivierung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:6 -#, fuzzy msgid "Move or rename files" -msgstr "Datei nicht erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:7 msgid "Substitute one word for another" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:8 -#, fuzzy msgid "Discard unrecorded changes" -msgstr "Nicht aufgezeichnete Änderungen in der Arbeitskopie anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:9 msgid "Undo the last revert (may fail if changes after the revert)" @@ -14973,46 +13777,40 @@ msgstr "" "Änderungen vorgenommen wurden)" #: /tmp/fish/implicit/share/completions/darcs.fish:10 -#, fuzzy msgid "List unrecorded changes in the working tree" -msgstr "Nicht aufgezeichnete Änderungen in der Arbeitskopie anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:11 -#, fuzzy msgid "Create a patch from unrecorded changes" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:12 msgid "Remove recorded patches without changing the working copy" msgstr "Aufgezeichnete Patche ohne Änderung der Arbeitskopie entfernen" #: /tmp/fish/implicit/share/completions/darcs.fish:13 -#, fuzzy msgid "Improve a patch before it leaves your repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:14 -#, fuzzy msgid "Mark unresolved conflicts in working tree, for manual resolution" -msgstr "Alle Konflikte in der Arbeitskopie für manuelle Resolution markieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:15 msgid "Name the current repository state for future reference" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:16 -#, fuzzy msgid "Set a preference (test, predist, boringfile or binariesfile)" -msgstr "Wert für eine Einstellung (test, predist, ...) festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:17 msgid "Create a diff between two versions of the repository" msgstr "Diff zwischen zwei Versionen des Paketdepots erstellen" #: /tmp/fish/implicit/share/completions/darcs.fish:18 -#, fuzzy msgid "List patches in the repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:19 msgid "Display which patch last modified something" @@ -15035,14 +13833,12 @@ msgid "Copy and apply patches from another repository to this one" msgstr "Patches von einem anderen Paketdepot auf dieses kopieren und anwenden" #: /tmp/fish/implicit/share/completions/darcs.fish:24 -#, fuzzy msgid "Delete selected patches from the repository. (UNSAFE!)" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:25 -#, fuzzy msgid "Record a new patch reversing some recorded changes" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:26 msgid "Copy and apply patches from this repository to another one" @@ -15064,75 +13860,65 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:439 #: /tmp/fish/implicit/share/completions/darcs.fish:847 #: /tmp/fish/implicit/share/completions/darcs.fish:880 -#, fuzzy msgid "Select changes up to a patch matching PATTERN" -msgstr "Patches entsprechend dem MUSTER auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:406 #: /tmp/fish/implicit/share/completions/darcs.fish:440 #: /tmp/fish/implicit/share/completions/darcs.fish:848 #: /tmp/fish/implicit/share/completions/darcs.fish:881 -#, fuzzy msgid "Select changes up to a patch matching REGEXP" -msgstr "Dem REGEXP entsprechende Patche auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:407 #: /tmp/fish/implicit/share/completions/darcs.fish:441 -#, fuzzy msgid "Select changes up to a tag matching REGEXP" -msgstr "Dem REGEXP entsprechende Markierungen auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:408 #: /tmp/fish/implicit/share/completions/darcs.fish:442 #: /tmp/fish/implicit/share/completions/darcs.fish:619 #: /tmp/fish/implicit/share/completions/darcs.fish:657 -#, fuzzy msgid "Select changes starting with a patch matching PATTERN" -msgstr "Patches entsprechend dem MUSTER auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:409 #: /tmp/fish/implicit/share/completions/darcs.fish:443 #: /tmp/fish/implicit/share/completions/darcs.fish:620 #: /tmp/fish/implicit/share/completions/darcs.fish:658 -#, fuzzy msgid "Select changes starting with a patch matching REGEXP" -msgstr "Dem REGEXP entsprechende Patche auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:410 #: /tmp/fish/implicit/share/completions/darcs.fish:444 #: /tmp/fish/implicit/share/completions/darcs.fish:621 #: /tmp/fish/implicit/share/completions/darcs.fish:659 -#, fuzzy msgid "Select changes starting with a tag matching REGEXP" -msgstr "Dem REGEXP entsprechende Markierungen auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:411 #: /tmp/fish/implicit/share/completions/darcs.fish:495 #: /tmp/fish/implicit/share/completions/darcs.fish:520 -#, fuzzy msgid "Select a single patch matching PATTERN" -msgstr "Patches entsprechend dem MUSTER auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:412 #: /tmp/fish/implicit/share/completions/darcs.fish:496 #: /tmp/fish/implicit/share/completions/darcs.fish:521 -#, fuzzy msgid "Select a single patch matching REGEXP" -msgstr "Dem REGEXP entsprechende Patche auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:413 #: /tmp/fish/implicit/share/completions/darcs.fish:445 #: /tmp/fish/implicit/share/completions/darcs.fish:622 #: /tmp/fish/implicit/share/completions/darcs.fish:660 -#, fuzzy msgid "Select the last NUMBER patches" -msgstr "Lesen nach NUM Treffern beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:414 #: /tmp/fish/implicit/share/completions/darcs.fish:446 -#, fuzzy msgid "Select a range of patches" -msgstr "Schnittstelle auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:415 msgid "Specify diff command (ignores --diff-opts)" @@ -15147,9 +13933,8 @@ msgid "Pass -u option to diff" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:418 -#, fuzzy msgid "Output patch in diff's dumb format" -msgstr "Ausgabe im ISO 8601-Format" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:419 #: /tmp/fish/implicit/share/completions/darcs.fish:463 @@ -15177,9 +13962,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:421 #: /tmp/fish/implicit/share/completions/darcs.fish:525 -#, fuzzy msgid "Do patch application on disk [DEFAULT]" -msgstr "Abbruch bei Patchen, die Konflikte erzeugen (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:422 #: /tmp/fish/implicit/share/completions/darcs.fish:466 @@ -15242,9 +14026,8 @@ msgstr "Kurze Beschreibung des Befehls und seiner Argumente anzeigen" #: /tmp/fish/implicit/share/completions/darcs.fish:974 #: /tmp/fish/implicit/share/completions/darcs.fish:992 #: /tmp/fish/implicit/share/completions/darcs.fish:1012 -#, fuzzy msgid "Give only debug output" -msgstr "Debug-Ausgabe aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:425 #: /tmp/fish/implicit/share/completions/darcs.fish:469 @@ -15264,9 +14047,8 @@ msgstr "Debug-Ausgabe aktivieren" #: /tmp/fish/implicit/share/completions/darcs.fish:975 #: /tmp/fish/implicit/share/completions/darcs.fish:993 #: /tmp/fish/implicit/share/completions/darcs.fish:1013 -#, fuzzy msgid "Give debug and verbose output" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:426 #: /tmp/fish/implicit/share/completions/darcs.fish:470 @@ -15307,9 +14089,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:977 #: /tmp/fish/implicit/share/completions/darcs.fish:995 #: /tmp/fish/implicit/share/completions/darcs.fish:1015 -#, fuzzy msgid "Give verbose output" -msgstr "Ausgabe weder ausführlich noch schweigsam" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:428 #: /tmp/fish/implicit/share/completions/darcs.fish:472 @@ -15371,9 +14152,8 @@ msgstr "Ausgabe weder ausführlich noch schweigsam" #: /tmp/fish/implicit/share/completions/darcs.fish:980 #: /tmp/fish/implicit/share/completions/darcs.fish:998 #: /tmp/fish/implicit/share/completions/darcs.fish:1018 -#, fuzzy msgid "Provide debugging timings information" -msgstr "Debug-Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:431 #: /tmp/fish/implicit/share/completions/darcs.fish:481 @@ -15414,9 +14194,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:982 #: /tmp/fish/implicit/share/completions/darcs.fish:1001 #: /tmp/fish/implicit/share/completions/darcs.fish:1026 -#, fuzzy msgid "Don't run posthook command" -msgstr "Entfernten Befehl nicht ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:433 #: /tmp/fish/implicit/share/completions/darcs.fish:483 @@ -15499,9 +14278,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:986 #: /tmp/fish/implicit/share/completions/darcs.fish:1005 #: /tmp/fish/implicit/share/completions/darcs.fish:1030 -#, fuzzy msgid "Don't run prehook command" -msgstr "Entfernten Befehl nicht ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:437 #: /tmp/fish/implicit/share/completions/darcs.fish:487 @@ -15577,9 +14355,8 @@ msgid "Return only NUMBER results" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:451 -#, fuzzy msgid "Show only changes to specified files" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:452 msgid "Show changes to all files [DEFAULT]" @@ -15596,9 +14373,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:707 #: /tmp/fish/implicit/share/completions/darcs.fish:760 #: /tmp/fish/implicit/share/completions/darcs.fish:803 -#, fuzzy msgid "Generate XML formatted output" -msgstr "dired-Ausgabe erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:455 #: /tmp/fish/implicit/share/completions/darcs.fish:493 @@ -15606,14 +14382,12 @@ msgid "Give human-readable output" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:456 -#, fuzzy msgid "Number the changes" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:457 -#, fuzzy msgid "Output count of changes" -msgstr "Informationen über geänderte Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:458 #: /tmp/fish/implicit/share/completions/darcs.fish:489 @@ -15621,9 +14395,8 @@ msgstr "Informationen über geänderte Dateien ausgeben" #: /tmp/fish/implicit/share/completions/darcs.fish:632 #: /tmp/fish/implicit/share/completions/darcs.fish:708 #: /tmp/fish/implicit/share/completions/darcs.fish:761 -#, fuzzy msgid "Summarize changes" -msgstr "Änderungen nicht zusammenfassen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:459 #: /tmp/fish/implicit/share/completions/darcs.fish:490 @@ -15635,18 +14408,16 @@ msgid "Don't summarize changes" msgstr "Änderungen nicht zusammenfassen" #: /tmp/fish/implicit/share/completions/darcs.fish:460 -#, fuzzy msgid "Show changes in reverse order" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:461 msgid "Show changes in the usual order [DEFAULT]" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:462 -#, fuzzy msgid "Specify the repository URL" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:464 #: /tmp/fish/implicit/share/completions/darcs.fish:566 @@ -15705,9 +14476,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:869 #: /tmp/fish/implicit/share/completions/darcs.fish:904 #: /tmp/fish/implicit/share/completions/darcs.fish:1022 -#, fuzzy msgid "Disable HTTP pipelining" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:479 #: /tmp/fish/implicit/share/completions/darcs.fish:609 @@ -15716,9 +14486,8 @@ msgstr "Warnungen über MFC deaktivieren" #: /tmp/fish/implicit/share/completions/darcs.fish:870 #: /tmp/fish/implicit/share/completions/darcs.fish:905 #: /tmp/fish/implicit/share/completions/darcs.fish:1023 -#, fuzzy msgid "Don't use patch caches" -msgstr "Stapelverarbeitungsmodus nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:480 #: /tmp/fish/implicit/share/completions/darcs.fish:610 @@ -15736,33 +14505,28 @@ msgstr "" "Patch in einem darcs-spezifischen Format ausgeben, das diff -u entspricht" #: /tmp/fish/implicit/share/completions/darcs.fish:492 -#, fuzzy msgid "Output patch in darcs' usual format" msgstr "" -"Patch in einem darcs-spezifischen Format ausgeben, das diff -u entspricht" #: /tmp/fish/implicit/share/completions/darcs.fish:497 #: /tmp/fish/implicit/share/completions/darcs.fish:522 #: /tmp/fish/implicit/share/completions/darcs.fish:849 #: /tmp/fish/implicit/share/completions/darcs.fish:882 -#, fuzzy msgid "Select tag matching REGEXP" -msgstr "Dem REGEXP entsprechende Markierungen auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:498 #: /tmp/fish/implicit/share/completions/darcs.fish:523 -#, fuzzy msgid "Select one patch" -msgstr "Eine Aktion auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:499 msgid "Specify hash of creator patch (see docs)" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:518 -#, fuzzy msgid "Name of version" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:553 #: /tmp/fish/implicit/share/completions/darcs.fish:602 @@ -15774,9 +14538,8 @@ msgid "Make scripts executable" msgstr "Skripte ausführbar machen" #: /tmp/fish/implicit/share/completions/darcs.fish:568 -#, fuzzy msgid "Mark conflicts [DEFAULT]" -msgstr "Konflikte markieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:569 #: /tmp/fish/implicit/share/completions/darcs.fish:805 @@ -15785,9 +14548,8 @@ msgstr "Konflikte zulassen, sie aber nicht markieren" #: /tmp/fish/implicit/share/completions/darcs.fish:570 #: /tmp/fish/implicit/share/completions/darcs.fish:807 -#, fuzzy msgid "Filter out any patches that would create conflicts" -msgstr "Abbruch bei Patchen, die Konflikte erzeugen (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:571 #: /tmp/fish/implicit/share/completions/darcs.fish:808 @@ -15820,9 +14582,8 @@ msgstr "Aktion nicht tatsächlich ausführen" #: /tmp/fish/implicit/share/completions/darcs.fish:626 #: /tmp/fish/implicit/share/completions/darcs.fish:698 #: /tmp/fish/implicit/share/completions/darcs.fish:744 -#, fuzzy msgid "Don't automatically fulfill dependencies" -msgstr "Nicht automatisch Abhängigkeiten erfüllen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:579 #: /tmp/fish/implicit/share/completions/darcs.fish:627 @@ -15859,19 +14620,16 @@ msgstr "Standardpaketdepot nicht festlegen" #: /tmp/fish/implicit/share/completions/darcs.fish:584 #: /tmp/fish/implicit/share/completions/darcs.fish:713 #: /tmp/fish/implicit/share/completions/darcs.fish:768 -#, fuzzy msgid "Do not check if repositories are unrelated" -msgstr "Verzeichnisnamen nicht speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:594 -#, fuzzy msgid "Take intersection of all repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:595 -#, fuzzy msgid "Take union of all repositories [DEFAULT]" -msgstr "Standardpaketdepot [STANDARD] festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:596 msgid "Take complement of repositories (in order listed)" @@ -15882,9 +14640,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:685 #: /tmp/fish/implicit/share/completions/darcs.fish:830 #: /tmp/fish/implicit/share/completions/darcs.fish:952 -#, fuzzy msgid "Create compressed patches" -msgstr "Keine komprimierten Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:598 #: /tmp/fish/implicit/share/completions/darcs.fish:725 @@ -15896,9 +14653,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:646 #: /tmp/fish/implicit/share/completions/darcs.fish:828 #: /tmp/fish/implicit/share/completions/darcs.fish:970 -#, fuzzy msgid "Don't trust the file modification times" -msgstr "Modifizierungszeit nicht extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:600 #: /tmp/fish/implicit/share/completions/darcs.fish:647 @@ -15910,9 +14666,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:601 #: /tmp/fish/implicit/share/completions/darcs.fish:726 #: /tmp/fish/implicit/share/completions/darcs.fish:781 -#, fuzzy msgid "Specify the remote repository URL to work with" -msgstr "Das Paketdepotverzeichnis angeben, in dem gearbeitet wird" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:603 #: /tmp/fish/implicit/share/completions/darcs.fish:648 @@ -15952,9 +14707,8 @@ msgstr "Abfragen, ob der lange Kommentar editiert werden soll" #: /tmp/fish/implicit/share/completions/darcs.fish:673 #: /tmp/fish/implicit/share/completions/darcs.fish:811 #: /tmp/fish/implicit/share/completions/darcs.fish:967 -#, fuzzy msgid "Don't remove the test directory" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:674 #: /tmp/fish/implicit/share/completions/darcs.fish:812 @@ -15993,52 +14747,45 @@ msgid "Specify destination email" msgstr "Ziel-E-Mail-Adresse angeben" #: /tmp/fish/implicit/share/completions/darcs.fish:752 -#, fuzzy msgid "Mail results to additional EMAIL(s)" -msgstr "Ergebnisse an zusätzliche EMAIL(s) senden. Erfordert --reply" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:753 -#, fuzzy msgid "Specify mail subject" -msgstr "makefile angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:754 -#, fuzzy msgid "Specify in-reply-to header" -msgstr "Indexverzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:755 msgid "Specify output filename" msgstr "Ausgabedateiname angeben" #: /tmp/fish/implicit/share/completions/darcs.fish:763 -#, fuzzy msgid "Edit the patch bundle description" -msgstr "Beschreibung des Patchpaketes editieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:767 #: /tmp/fish/implicit/share/completions/darcs.fish:827 -#, fuzzy msgid "Specify sendmail command" -msgstr "E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:778 msgid "Give patch name and comment in file" msgstr "Patch-Name und Kommentar in Datei angeben" #: /tmp/fish/implicit/share/completions/darcs.fish:779 -#, fuzzy msgid "Delete the logfile when done" -msgstr "Nach Fertigstellung Logdatei löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:780 msgid "Keep the logfile when done [DEFAULT]" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:782 -#, fuzzy msgid "Send to context stored in FILENAME" -msgstr "Kontext im DATEINAMEN abgespeichert senden" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:797 msgid "Verify that the patch was signed by a key in PUBRING" @@ -16046,10 +14793,8 @@ msgstr "" "Überprüfen, das der Patch mit einem Schlüssel aus PUBRING signiert wurde" #: /tmp/fish/implicit/share/completions/darcs.fish:798 -#, fuzzy msgid "Verify using openSSL with authorized keys from file KEYS" msgstr "" -"Mittels openSSL und autorisierten Schlüsseln aus der Datei 'KEYS' überprüfen" #: /tmp/fish/implicit/share/completions/darcs.fish:799 msgid "Don't verify patch signature" @@ -16076,9 +14821,8 @@ msgid "Forward unsigned messages without extra header" msgstr "Unsignierte Nachrichten ohne zusätzliche Kopfzeile weiterleiten" #: /tmp/fish/implicit/share/completions/darcs.fish:826 -#, fuzzy msgid "Don't forward unsigned messages without extra header [DEFAULT]" -msgstr "Unsignierte Nachrichten ohne zusätzliche Kopfzeile weiterleiten" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:842 #: /tmp/fish/implicit/share/completions/darcs.fish:1008 @@ -16095,21 +14839,18 @@ msgid "Get patch files only as needed" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:845 -#, fuzzy msgid "Don't save patch files in the repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:846 #: /tmp/fish/implicit/share/completions/darcs.fish:963 -#, fuzzy msgid "Get a complete copy of the repository" -msgstr "Das ganze Paketdepot prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:850 #: /tmp/fish/implicit/share/completions/darcs.fish:883 -#, fuzzy msgid "Version specified by the context in FILENAME" -msgstr "Kontext im DATEINAMEN abgespeichert senden" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:855 #: /tmp/fish/implicit/share/completions/darcs.fish:885 @@ -16134,14 +14875,12 @@ msgid "Minimal features. What older repos use" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:937 -#, fuzzy msgid "Reorder the patches in the repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:938 -#, fuzzy msgid "Specify a sibling directory" -msgstr "Verzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:939 msgid "Relink random internal data to a sibling" @@ -16160,9 +14899,8 @@ msgid "Optimize hashed pristine layout" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:953 -#, fuzzy msgid "Uncompress patches" -msgstr "Keine komprimierten Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:1 msgid "Read the value of a key" @@ -16177,45 +14915,38 @@ msgid "Write a new value to a key" msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:4 -#, fuzzy msgid "Delete a key or an entire directory" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:5 msgid "Compile a binary database from keyfiles" msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:6 -#, fuzzy msgid "Update the system dconf databases" -msgstr "Liste der Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:7 -#, fuzzy msgid "Watch a key or directory for changes" -msgstr "Verzeichnis nach makefile durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:8 -#, fuzzy msgid "Dump an entire subpath to stdout" -msgstr "Auf Standardausgabe dekomprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:9 -#, fuzzy msgid "Populate a subpath from stdin" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/dd.fish:1 #: /tmp/fish/implicit/share/completions/emacs.fish:52 #: /tmp/fish/implicit/share/completions/hg.fish:15 -#, fuzzy msgid "display help and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/dd.fish:3 -#, fuzzy msgid "Complete dd operands" -msgstr "Vergleiche FILE1 mit allen Operanden" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:1 msgid "Restricts preferences operations to the current logged-in host" @@ -16234,42 +14965,36 @@ msgid "Writes domain or or a key in the domain" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:5 -#, fuzzy msgid "String as the value for the given key" -msgstr "Schlüsselserver nach den angegebenen Namen durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:6 msgid "Raw data bytes for given key" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:7 -#, fuzzy msgid "Integer as the value for the given key" -msgstr "Schlüsselserver nach den angegebenen Namen durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:8 msgid "Floating point number as the value for the given key" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:9 -#, fuzzy msgid "Boolean as the value for the given key" -msgstr "Schlüsselserver nach den angegebenen Namen durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:10 -#, fuzzy msgid "Date as the value for the given key" -msgstr "Schlüsselserver nach den angegebenen Namen durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:11 -#, fuzzy msgid "Array as the value for the given key" -msgstr "Schlüsselserver nach den angegebenen Namen durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:12 -#, fuzzy msgid "Add new elements to the end of an array" -msgstr "Text am Ende des selektierten Bereichs anfügen" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:13 msgid "Add a dictionary to domain" @@ -16280,9 +15005,8 @@ msgid "Add new key/value pairs to a dictionary" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:15 -#, fuzzy msgid "Shows the type for the given domain, key" -msgstr "Schlüsselserver nach den angegebenen Namen durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:16 msgid "Renames old_key to new_key" @@ -16293,57 +15017,48 @@ msgid "Deletes domain or a key in the domain" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:18 -#, fuzzy msgid "Prints the names of all domains in the users defaults system" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:19 msgid "Searches for word in domain names, keys, and values" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:20 -#, fuzzy msgid "Prints a list of possible command formats" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:1 -#, fuzzy msgid "Include empty file systems" -msgstr "Leere Dateisysteme einschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:2 -#, fuzzy msgid "Print file system type" -msgstr "Dateisystemtyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:3 -#, fuzzy msgid "Excluded file system type" -msgstr "Dateisystemtyp ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:4 -#, fuzzy msgid "Show all file systems" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:1 -#, fuzzy msgid "Background immediately" -msgstr "Direkt nach Start im Hintergrund arbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:2 -#, fuzzy msgid "Use given script" -msgstr "Aktualisierungs-Intervall" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:3 msgid "Generate an RFC 4361 compliant clientid" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:4 -#, fuzzy msgid "Echo debug messages to stderr & syslog" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:5 msgid "Use last acquired lease if cannot obtain one" @@ -16354,28 +15069,24 @@ msgid "Use last acquired lease if cannot obtain one even if expired" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:7 -#, fuzzy msgid "Push given value the environment" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:8 -#, fuzzy msgid "Reapply configuration for each interface" -msgstr "Konfigurationsdatei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:9 msgid "Request DHCP server to update DNS using FQDN instead of hostname" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:10 -#, fuzzy msgid "Specify config to load instead of /etc/dhcpcd.conf" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:11 -#, fuzzy msgid "Send hostname to DHCP server" -msgstr "Mail an Benutzer senden" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:12 msgid "Send given clientid" @@ -16386,47 +15097,40 @@ msgid "Override DHCPv4 vendorclassid field sent" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:14 -#, fuzzy msgid "Writes to specfied log file instead of syslog" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:15 msgid "Release lease and de-configure interface" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:16 -#, fuzzy msgid "Request specific lease time in secs" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:17 -#, fuzzy msgid "Start dhcpcd in Master mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:18 msgid "Set prefered interface based on given rank (lowest wins)" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:19 -#, fuzzy msgid "Reload config and rebind specified interface" -msgstr "Quelladresse auf angegebene Schnittstellenadresse festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:20 -#, fuzzy msgid "Renew existing addresses on specified interface" -msgstr "Quelladresse auf angegebene Schnittstellenadresse festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:21 -#, fuzzy msgid "Request DHCP option" -msgstr "Optionen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:22 -#, fuzzy msgid "Keep configuration even when dhcpcd exits" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:23 msgid "Request given address in DHCP DISCOVER message" @@ -16441,14 +15145,12 @@ msgid "Perform DHCPv6 Information Request" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:26 -#, fuzzy msgid "Configure static DHCP value" -msgstr "Konfigurationsdatei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:27 -#, fuzzy msgid "Timeout after seconds" -msgstr "Minimalintervall in Sekunden" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:28 msgid "Tag DHCPv4 message with given userclass" @@ -16463,9 +15165,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:8 #: /tmp/fish/implicit/share/completions/pv.fish:33 #: /tmp/fish/implicit/share/completions/subl.fish:9 -#, fuzzy msgid "Show version and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:31 #: /tmp/fish/implicit/share/completions/dhcpcd.fish:32 @@ -16510,9 +15211,8 @@ msgid "Ignore changes whose lines are all blank" msgstr "Änderungen ignorieren, deren Zeilen alle leer sind" #: /tmp/fish/implicit/share/completions/diff.fish:8 -#, fuzzy msgid "Ignore changes whose lines match the REGEX" -msgstr "Änderungen ignorieren, deren Zeilen alle leer sind" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:9 #: /tmp/fish/implicit/share/completions/git.fish:323 @@ -16564,9 +15264,8 @@ msgid "Try to find a smaller set of changes" msgstr "Versuche, eine kleinere Menge Änderungen zu finden" #: /tmp/fish/implicit/share/completions/diff.fish:21 -#, fuzzy msgid "Compare FILE1 to all operands" -msgstr "Vergleiche FILE2 mit allen Operanden" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:22 msgid "Compare FILE2 to all operands" @@ -16593,43 +15292,36 @@ msgid "Bind to source address/port" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:5 -#, fuzzy msgid "Specify batch mode file" -msgstr "apt-Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:6 -#, fuzzy msgid "Specify query class" -msgstr "Proxy-Passwort angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:7 -#, fuzzy msgid "Specify TSIG key file" -msgstr "makefile angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:8 msgid "specify named base64 TSIG key" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:9 -#, fuzzy msgid "Specify port number" -msgstr "Ausgabedateiname angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:10 -#, fuzzy msgid "Specify query name" -msgstr "Proxy-Benutzername angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:11 -#, fuzzy msgid "Specify query type" -msgstr "Kernel-Version angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:12 -#, fuzzy msgid "Reverse lookup" -msgstr "Sortierreihenfolge umkehren" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:13 #: /tmp/fish/implicit/share/completions/killall.fish:10 @@ -16637,17 +15329,15 @@ msgstr "Sortierreihenfolge umkehren" #: /tmp/fish/implicit/share/completions/lsof.fish:1 #: /tmp/fish/implicit/share/completions/lua.fish:5 #: /tmp/fish/implicit/share/completions/wicd-cli.fish:1 -#, fuzzy msgid "Print help and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:14 #: /tmp/fish/implicit/share/completions/feh.fish:55 #: /tmp/fish/implicit/share/completions/fuser.fish:12 #: /tmp/fish/implicit/share/completions/tree.fish:43 -#, fuzzy msgid "Print version and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:15 msgid "TCP mode" @@ -16670,9 +15360,8 @@ msgid "Deprecated, treated as a synonym for +[no]search" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:20 -#, fuzzy msgid "Recursive mode" -msgstr "Sicherer Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:21 msgid "Dont revert to TCP for TC responses." @@ -16715,9 +15404,8 @@ msgid "Control display of question" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:31 -#, fuzzy msgid "Control display of answer" -msgstr "Keinen Fortschrittsbalken anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:32 msgid "Control display of authority" @@ -16744,14 +15432,12 @@ msgid "Set or clear all display flags" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:38 -#, fuzzy msgid "Print question before sending" -msgstr "Überschrift ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:39 -#, fuzzy msgid "Search all authoritative nameservers" -msgstr "Vollständigen Paketnamen suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:40 msgid "ID responders in short answers" @@ -16762,9 +15448,8 @@ msgid "Trace delegation down from root" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:42 -#, fuzzy msgid "Request DNSSEC records" -msgstr "Sätze entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:43 msgid "Request Name Server ID" @@ -16779,19 +15464,16 @@ msgid "AXFR prints only one soa record" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:46 -#, fuzzy msgid "Set number of UDP attempts" -msgstr "Anzahl der Audiokanäle festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:47 -#, fuzzy msgid "Set number of UDP retries" -msgstr "Anzahl der Versuche auf Anzahl festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:48 -#, fuzzy msgid "Set query timeout" -msgstr "Zeitüberschreitung für Netzwerk festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:49 msgid "Set EDNS0 Max UDP packet size" @@ -16802,9 +15484,8 @@ msgid "Set NDOTS value" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:51 -#, fuzzy msgid "Set EDNS version" -msgstr "Sortierung nach Version" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:1 msgid "List disks" @@ -16813,27 +15494,24 @@ msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:2 #: /tmp/fish/implicit/share/completions/diskutil.fish:4 #: /tmp/fish/implicit/share/completions/diskutil.fish:8 -#, fuzzy msgid "Return a property list" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:3 msgid "Get detailed information about a specific whole disk or partition" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:5 -#, fuzzy msgid "Process all disks" -msgstr "Alle Pakete verarbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:6 msgid "Continuously display system-wide disk manipulation activity" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:7 -#, fuzzy msgid "Show the file system personalities available" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:9 msgid "Unmount a single volume" @@ -16852,18 +15530,16 @@ msgid "Mount a single volume" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:13 -#, fuzzy msgid "Specify mount point" -msgstr "Verzeichnis angeben, das kein Einhängeverzeichnis ist" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:14 msgid "Mount an entire disk (all mountable volumes)" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:15 -#, fuzzy msgid "Rename a volume" -msgstr "Modul umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:16 msgid "Enable journaling on an HFS+ volume" @@ -16882,9 +15558,8 @@ msgid "Enable ownership of a volume" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:20 -#, fuzzy msgid "Disable ownership of a volume" -msgstr "Import des Seitenmoduls deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:21 msgid "Verify the file system data structures of a volume" @@ -16903,9 +15578,8 @@ msgid "Repair the partition map layout of a whole disk" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:25 -#, fuzzy msgid "Erase an existing disk" -msgstr "Bestehendes Paket aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:26 msgid "Write out a new empty file system volume" @@ -16979,15 +15653,13 @@ msgid "Exit program when this window id is destroyed [id]" msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:53 -#, fuzzy msgid "Write image to a file [filename]" -msgstr "Größe für alle Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:54 #: /tmp/fish/implicit/share/completions/montage.fish:72 -#, fuzzy msgid "Automagically orient image" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:62 msgid "Straighten an image [threshold]" @@ -17016,9 +15688,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:69 #: /tmp/fish/implicit/share/completions/montage.fish:79 -#, fuzzy msgid "Flop image in the horizontal direction" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:70 #: /tmp/fish/implicit/share/completions/montage.fish:80 @@ -17054,14 +15725,12 @@ msgid "Threshold the image [value]" msgstr "" #: /tmp/fish/implicit/share/completions/dlocate.fish:1 -#, fuzzy msgid "ls -ldF all files in the package" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/dlocate.fish:2 -#, fuzzy msgid "du -sck all files in the package" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:1 msgid "Clear the kernel ring buffer" @@ -17084,14 +15753,12 @@ msgid "Enable printing messages to console" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:6 -#, fuzzy msgid "Use the file instead of the kernel log buffer" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:7 -#, fuzzy msgid "Restrict output to defined facilities" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:8 #: /tmp/fish/implicit/share/completions/m4.fish:1 @@ -17099,124 +15766,104 @@ msgstr "Schreibe Ausgabe in die angegebene Datei" #: /tmp/fish/implicit/share/completions/timeout.fish:4 #: /tmp/fish/implicit/share/completions/watch.fish:11 #: /tmp/fish/implicit/share/completions/xgettext.fish:38 -#, fuzzy msgid "Display this help and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:9 -#, fuzzy msgid "Display kernel messages" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:10 -#, fuzzy msgid "Restrict output to defined levels" -msgstr "Ausgabe auf Datei umleiten" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:11 msgid "Set level of messages printed to console" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:12 -#, fuzzy msgid "Print the raw message buffer" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:13 msgid "Buffer size to query the kernel ring buffer" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:14 -#, fuzzy msgid "Show human readable timestamp " -msgstr "Lesbare Grössen" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:15 msgid "Don't print messages timestamp" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:16 -#, fuzzy msgid "Display userspace messages" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:18 msgid "Decode facility and level to readable string" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:1 -#, fuzzy msgid "Install .deb package" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:2 -#, fuzzy msgid "Unpack .deb package" -msgstr "Pakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:3 -#, fuzzy msgid "Configure package" -msgstr "Quellpakete kompilieren" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:4 -#, fuzzy msgid "Remove package" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:5 -#, fuzzy msgid "Purge package" -msgstr "Paket löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:6 -#, fuzzy msgid "Verify contents of package" -msgstr "Abhängigkeiten der Pakete nicht prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:7 msgid "Continue on all problems" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:8 -#, fuzzy msgid "Build package from directory" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:9 -#, fuzzy msgid "List contents of .deb" -msgstr "Startverzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:10 -#, fuzzy msgid "Show .deb information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:11 -#, fuzzy msgid "List packages matching pattern" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:12 -#, fuzzy msgid "List contents of packages" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:13 -#, fuzzy msgid "Print status of package" -msgstr "Paketliste aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:14 -#, fuzzy msgid "Search for packages containing file" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:3 -#, fuzzy msgid "Set configuration frontend" -msgstr "Globale Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:4 msgid "Set priority threshold" @@ -17231,24 +15878,20 @@ msgid "Show only unseen question" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:7 -#, fuzzy msgid "Reconfigure also inconsistent packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:8 -#, fuzzy msgid "Prevent reloading templates" -msgstr "Zeichenkette vor relative Links stellen" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:1 -#, fuzzy msgid "Get current status of the dropboxd" -msgstr "Exit-Status des Jobs verneinen" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:2 -#, fuzzy msgid "Provide help" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:3 msgid "Return 1 if dropbox is running" @@ -17275,14 +15918,12 @@ msgid "Get current sync status of one or more files" msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:9 -#, fuzzy msgid "List directory contents with current sync status" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:10 -#, fuzzy msgid "Ignores/excludes a directory from syncing" -msgstr "Angegebene Anzahl von Verzeichniskomponenten ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:11 msgid "Enables or disables LAN sync" @@ -17299,24 +15940,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:14 -#, fuzzy msgid "Do not ignore entries starting with ." -msgstr "Dateien ignorieren, die mit ~ enden" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:15 -#, fuzzy msgid "Prints a list of directories currently excluded from syncing" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:16 -#, fuzzy msgid "Adds one or more directories to the exclusion list" -msgstr "Ein/mehrere neue Datei/en oder Verzeichnis/se hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:17 -#, fuzzy msgid "Removes one or more directories from the exclusion list" -msgstr "Ein oder mehrere Dateien/Verzeichnisse aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:1 msgid "Write size for all files" @@ -17375,14 +16012,12 @@ msgid "Display only a total for each argument" msgstr "Nur eine Gesamtsumme für jedes Argument anzeigen" #: /tmp/fish/implicit/share/completions/du.fish:14 -#, fuzzy msgid "Skip other file systems" -msgstr "Andere Dateisysteme überspringen" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:15 -#, fuzzy msgid "Exclude files that match pattern in file" -msgstr "Den Mustern in der Datei entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:16 #: /tmp/fish/implicit/share/completions/ncdu.fish:5 @@ -17398,38 +16033,32 @@ msgstr "Rekursionsgrenze" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:14 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:15 #: /tmp/fish/implicit/share/completions/netctl.fish:17 -#, fuzzy msgid "Profile" -msgstr "Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:2 msgid "Get usage help text" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:3 -#, fuzzy msgid "Creates a configuration profile" -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:4 -#, fuzzy msgid "Backup with pre/post script execution" -msgstr "Keine post-Skripte ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:5 -#, fuzzy msgid "Backup without executing pre/post scripts" -msgstr "Keine post-Skripte ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:6 -#, fuzzy msgid "Execute /pre script" -msgstr "Keine pre-Skripte ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:7 -#, fuzzy msgid "Execute /post script" -msgstr "Keine post-Skripte ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:8 msgid "Force full backup" @@ -17490,72 +16119,60 @@ msgid "Don" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:22 -#, fuzzy msgid "Output verbosity level" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:1 -#, fuzzy msgid "Do not output a newline" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:2 -#, fuzzy msgid "Do not separate arguments with spaces" -msgstr "Variable nicht an Unterprozess exportieren" +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:3 -#, fuzzy msgid "Disable backslash escapes" -msgstr "Benutze per 'backslash (\\)'maskierte Zeichen " +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:4 -#, fuzzy msgid "Enable backslash escapes" -msgstr "Benutze per 'backslash (\\)'maskierte Zeichen " +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:1 -#, fuzzy msgid "Show a help screen and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:3 -#, fuzzy msgid "Dump variables to stdout" -msgstr "Auf Standardausgabe dekomprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:4 msgid "Dump default values of variables to stdout" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:5 -#, fuzzy msgid "Print non-matching entries first" -msgstr "Erste nicht zutreffende Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:6 msgid "Don't read unguessable slots of installed packages (toggle)" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:7 -#, fuzzy msgid "Always read slots of installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:8 -#, fuzzy msgid "(no) output (toggle)" -msgstr "Ausgabe an Datei anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:9 -#, fuzzy msgid "Don't use ANSI color codes" -msgstr "Keine ausführliche Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:10 -#, fuzzy msgid "Force colorful output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:11 msgid "Compact search results (toggle)" @@ -17574,9 +16191,8 @@ msgid "Print available versions line-by-line (toggle)" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:15 -#, fuzzy msgid "Format string for normal output" -msgstr "Stopp durch Terminalausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:16 msgid "Format string for compact output" @@ -17587,24 +16203,20 @@ msgid "Format string for verbose output" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:18 -#, fuzzy msgid "Next expression only matches installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:19 -#, fuzzy msgid "Match packages installed in several versions" -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:20 -#, fuzzy msgid "Match duplicated packages" -msgstr "Quellpakete abrufen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:21 -#, fuzzy msgid "Match packages with duplicated versions" -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:22 msgid "Match packages with a nontrivial slot" @@ -17615,19 +16227,16 @@ msgid "Match packages with two different slots" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:24 -#, fuzzy msgid "Match packages without best slotted version" -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:25 -#, fuzzy msgid "Match packages from overlays" -msgstr "Paket über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:26 -#, fuzzy msgid "Match packages with obsolete entries" -msgstr "Pakete in lokalen Verzeichnisbaum verschieben" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:27 msgid "Invert the expression (toggle)" @@ -17642,57 +16251,48 @@ msgid "Search the description field" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:30 -#, fuzzy msgid "Search the category and name fields" -msgstr "Verzeichnis nach makefile durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:31 -#, fuzzy msgid "Search the category field" -msgstr "Verzeichnis nach makefile durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:32 -#, fuzzy msgid "Search the name field (default)" -msgstr "Vollständige Befehlszeile selektieren (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:33 -#, fuzzy msgid "Search the homepage field" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:34 -#, fuzzy msgid "Search the license field" -msgstr "Indexfeld der Quelle verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:35 msgid "Search the provides field" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:36 -#, fuzzy msgid "Pattern is a regexp (default)" -msgstr "Muster ist ein regulärer Ausdruck" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:37 -#, fuzzy msgid "Pattern is the exact string" -msgstr "Muster ist eine feststehende Zeichenkette" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:38 -#, fuzzy msgid "Pattern is a wildcards-pattern" -msgstr "Muster ist eine feststehende Zeichenkette" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:39 msgid "Use fuzzy-search with the given max. levenshtein-distance (default: 2)" msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:1 -#, fuzzy msgid "Ignore all previous options" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:2 msgid "Only show differences to the previously saved database and exit" @@ -17712,9 +16312,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:6 -#, fuzzy msgid "Update database only and show differences" -msgstr "Zwischenspeicher aktualisieren und Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:7 msgid "Do not call gensync (and the !commands in /etc/eix-sync.conf)" @@ -17753,26 +16352,22 @@ msgid "Really recreate the dep-cache (rm -rf /var/cache/edb/dep/*) (default)" msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:16 -#, fuzzy msgid "Do not really recreate the dep-cache" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:17 -#, fuzzy msgid "Show a short help text and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:1 #: /tmp/fish/implicit/share/completions/iex.fish:1 -#, fuzzy msgid "Prints version and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:2 #: /tmp/fish/implicit/share/completions/iex.fish:2 -#, fuzzy msgid "Evaluates the given command" -msgstr "Parameter als Befehl auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:3 #: /tmp/fish/implicit/share/completions/iex.fish:3 @@ -17781,9 +16376,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:4 #: /tmp/fish/implicit/share/completions/iex.fish:4 -#, fuzzy msgid "Finds and executes the given script" -msgstr "Prerun-Skripte nicht ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:5 #: /tmp/fish/implicit/share/completions/iex.fish:5 @@ -17802,9 +16396,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:8 #: /tmp/fish/implicit/share/completions/iex.fish:8 -#, fuzzy msgid "Start the given app and its dependencies" -msgstr "Wichtige Abhängigkeiten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:9 #: /tmp/fish/implicit/share/completions/iex.fish:9 @@ -17841,14 +16434,12 @@ msgid "Does not halt the Erlang VM after execution" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:1 -#, fuzzy msgid "do not do interactive display; implies -q" -msgstr "Ausführung im interaktiven Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:2 -#, fuzzy msgid "change to directory DIR" -msgstr "Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:3 msgid "start a server in the background" @@ -17875,9 +16466,8 @@ msgid "do not load loadup.el into bare Emacs" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:9 -#, fuzzy msgid "do not load site-start.el" -msgstr "Keine Init-Dateien laden" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:10 msgid "do not add site-lisp directories to load-path" @@ -17913,9 +16503,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:18 #: /tmp/fish/implicit/share/completions/emacs.fish:19 -#, fuzzy msgid "evaluate Emacs Lisp expression EXPR" -msgstr "Ausdruck auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:20 #: /tmp/fish/implicit/share/completions/emacs.fish:21 @@ -17928,14 +16517,12 @@ msgid "call Emacs Lisp function FUNC with no arguments" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:23 -#, fuzzy msgid "insert contents of FILE into current buffer" -msgstr "Startverzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:24 -#, fuzzy msgid "exit without asking for confirmation" -msgstr "Nach Bestätigung fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:25 msgid "load Emacs Lisp FILE using the load function" @@ -17946,18 +16533,16 @@ msgid "override color mode for character terminals" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:28 -#, fuzzy msgid "window background color" -msgstr "Hintergrundfarbe ändern" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:29 msgid "disable many display features; used for debugging Emacs" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:30 -#, fuzzy msgid "main border color" -msgstr "Hintergrundfarbe ändern" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:31 msgid "width of main border" @@ -17972,9 +16557,8 @@ msgid "default font; must be fixed-width" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:34 -#, fuzzy msgid "window foreground color" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:35 msgid "make the first frame high as the screen" @@ -18022,9 +16606,8 @@ msgid "title for initial Emacs frame" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:46 -#, fuzzy msgid "disable blinking cursor" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:47 msgid "switch foreground and background" @@ -18039,9 +16622,8 @@ msgid "set additional X resources" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:51 -#, fuzzy msgid "set parent window" -msgstr "Root-Fenster auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:1 #: /tmp/fish/implicit/share/completions/equery.fish:1 @@ -18056,12 +16638,10 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:3 -#, fuzzy msgid "" "Tests if emerge command should have an installed package as potential " "completion" msgstr "" -"Testen, ob der apt-Befehl Pakete zur möglichen Fertigstellung haben sollte" #: /tmp/fish/implicit/share/completions/emerge.fish:4 msgid "" @@ -18078,14 +16658,12 @@ msgid "Get informations to include in bug reports" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:7 -#, fuzzy msgid "Displays the version number of emerge" -msgstr "Zeilennummer für jede Zeile anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:8 -#, fuzzy msgid "Displays help information for emerge" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:9 msgid "Remove packages that will not affect the functionality of the system" @@ -18101,9 +16679,8 @@ msgid "WARNING: Delete all packages that are neither deps nor in world" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:12 -#, fuzzy msgid "Process all meta-cache files" -msgstr "Alle Pakete verarbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:13 msgid "WARNING: Remove all but the latest version of package" @@ -18114,28 +16691,24 @@ msgid "Check and update the dependency cache" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:15 -#, fuzzy msgid "Resume the last merge operation" -msgstr "Inhaltsgenerierung durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:16 -#, fuzzy msgid "Search for matches in the portage tree" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:17 msgid "Search for matches in package names and descriptions" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:18 -#, fuzzy msgid "WARNING: Remove the given package" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:19 -#, fuzzy msgid "Update the given package" -msgstr "Paketliste aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:20 msgid "Sort flag lists alphabetically" @@ -18150,41 +16723,36 @@ msgid "Build a binary package additionally" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:23 -#, fuzzy msgid "Only build a binary package" -msgstr "Ein Paket neu erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:24 msgid "Show changelog of package. Use with --pretend" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:25 -#, fuzzy msgid "Toggle colorized output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:26 msgid "Align output. Use with --pretend" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:27 -#, fuzzy msgid "Run in debug mode" -msgstr "Im Dummy-Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:28 msgid "Consider the whole dependency tree" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:29 -#, fuzzy msgid "Reinstall all world packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:30 -#, fuzzy msgid "Only download the packages but don't install them" -msgstr "Ordnet die angezeigten Paketen entsprechend der Installationszeit" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:31 msgid "Same as --fetchonly and grab all potential files" @@ -18203,118 +16771,100 @@ msgid "Ignore EMERGE_DEFAULT_OPTS" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:35 -#, fuzzy msgid "Include installed packages with changed USE flags" -msgstr "Ein (deinstalliertes) Paket in der angegebenen Datei abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:36 -#, fuzzy msgid "Disregard merge records" -msgstr "Paketsatz anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:37 -#, fuzzy msgid "Don't merge dependencies" -msgstr "Nicht nach zusätzlichen Abhängigkeiten fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:38 -#, fuzzy msgid "Skip already installed packages" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:39 -#, fuzzy msgid "Disable the spinner" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:40 -#, fuzzy msgid "Don't add packages to world" -msgstr "Installierte Pakete synchronisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:41 -#, fuzzy msgid "Only merge dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:42 msgid "Display what would be done without doing it" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:43 -#, fuzzy msgid "Use a condensed output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:44 msgid "Remove the first package in the resume list. Use with --resume" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:45 -#, fuzzy msgid "Show the dependency tree" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:46 -#, fuzzy msgid "Use binary package if available" -msgstr "Index erstellen, wenn nicht vorhanden" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:47 -#, fuzzy msgid "Only use binary packages" -msgstr "Nur Quellpakete akzeptieren" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:48 -#, fuzzy msgid "Run in verbose mode" -msgstr "Ausführlicher Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:49 -#, fuzzy msgid "Toggle build time dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:1 msgid "Unmount when idle for specified MINUTES" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:2 -#, fuzzy msgid "Run in the foreground" -msgstr "Job in Vordergrund schicken" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:3 msgid "Verbose messages when run foreground" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:4 -#, fuzzy msgid "Run in single threaded mode" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:5 msgid "Enables debugging within the FUSE library" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:6 -#, fuzzy msgid "Return data even from corrupted files" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:7 msgid "Make files public to all other users" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:8 -#, fuzzy msgid "Mount the filesystem on-demand" -msgstr "Dateisystems aus fstab einhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:9 -#, fuzzy msgid "Produce encrypted view of plain files" -msgstr "Beispiel-Konfigurationsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:10 msgid "Use standard options when creating filesystem" @@ -18325,23 +16875,20 @@ msgid "Pass on options to FUSE" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:12 -#, fuzzy msgid "Don't use the default FUSE flags" -msgstr "Standardpaketdepot nicht festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:13 msgid "Get password from an external program" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:14 -#, fuzzy msgid "Read password from standard input" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:15 -#, fuzzy msgid "Turn off key validation checking" -msgstr "Zugriffsprüfung abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/entr.fish:1 msgid "" @@ -18354,14 +16901,12 @@ msgid "Clears the screen before running the utility" msgstr "" #: /tmp/fish/implicit/share/completions/entr.fish:4 -#, fuzzy msgid "Output version information" -msgstr "Magische Versionsinformation ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:1 -#, fuzzy msgid "Redefine variable" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:2 #: /tmp/fish/implicit/share/completions/nice.fish:1 @@ -18370,14 +16915,12 @@ msgid "Command" msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:3 -#, fuzzy msgid "Start with an empty environment" -msgstr "Versuchte, einen leeren Umgebungsstack zu poppen." +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:4 -#, fuzzy msgid "Remove variable from the environment" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:3 msgid "" @@ -18394,14 +16937,12 @@ msgid "turns off colours" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:6 -#, fuzzy msgid "displays a help summary" -msgstr "Zusammenfassung anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:7 -#, fuzzy msgid "displays the equery version" -msgstr "Paketsatz anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:8 msgid "turns off pipe detection" @@ -18420,42 +16961,36 @@ msgid "stop when first match found" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:12 -#, fuzzy msgid "search in all available packages (slow)" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:13 -#, fuzzy msgid "search direct dependencies only (default)" -msgstr "Modulabhängigkeiten auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:14 msgid "search indirect dependencies (very slow)" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:15 -#, fuzzy msgid "do not show USE flags" -msgstr "Keine Flags anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:16 -#, fuzzy msgid "do not use fancy formatting" -msgstr "Kann Benutzerinformation nicht abrufen" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:17 -#, fuzzy msgid "output the timestamp of each file" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:18 msgid "output the md5sum of each file" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:19 -#, fuzzy msgid "output the type of each file" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:20 msgid "filter output based on files type or path (comma separated list)" @@ -18463,15 +16998,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:21 #: /tmp/fish/implicit/share/completions/equery.fish:25 -#, fuzzy msgid "search installed packages (default)" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:22 #: /tmp/fish/implicit/share/completions/equery.fish:26 -#, fuzzy msgid "do not search installed packages" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:23 #: /tmp/fish/implicit/share/completions/equery.fish:27 @@ -18484,28 +17017,24 @@ msgid "also search in overlay tree (/usr/local/portage)" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:29 -#, fuzzy msgid "query is a regular expression" -msgstr "Ausdruck negieren" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:30 msgid "list only those packages that exactly match" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:31 -#, fuzzy msgid "only list installed duplicate packages" -msgstr "Installierte(s) Quellpaket(e) auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:32 -#, fuzzy msgid "report size in bytes" -msgstr "Größe in Gigabyte anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:33 -#, fuzzy msgid "include non-installed packages" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:1 msgid "The page of the document to display" @@ -18516,65 +17045,55 @@ msgid "Run evince in fullscreen mode" msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:3 -#, fuzzy msgid "Run evince in presentation mode" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:4 msgid "Run evince as a previewer" msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:5 -#, fuzzy msgid "X display to use" -msgstr "Mail an Benutzer senden" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:1 -#, fuzzy msgid "Test if exercism has yet to be given the subcommand" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:3 -#, fuzzy msgid "turn on verbose logging" -msgstr "Angemeldete Benutzer auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:4 #: /tmp/fish/implicit/share/completions/exercism.fish:19 #: /tmp/fish/implicit/share/completions/ninja.fish:8 #: /tmp/fish/implicit/share/completions/quilt.fish:1 -#, fuzzy msgid "show help" -msgstr "Zeige versteckte Dateien" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:5 -#, fuzzy msgid "print the version" -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:6 -#, fuzzy msgid "Writes config values to a JSON file." -msgstr "Top-Server in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:7 -#, fuzzy msgid "Outputs useful debug information." -msgstr "Magische Versionsinformation ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:8 -#, fuzzy msgid "Downloads a solution given the ID of the latest iteration." -msgstr "Einen aufgezeichneten Patch mit einer besseren Version ersetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:9 msgid "Fetches the next unsubmitted problem in each track." msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:10 -#, fuzzy msgid "Lists the available problems for a language track, given its ID." -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:11 msgid "" @@ -18601,18 +17120,16 @@ msgid "Submits a new iteration to a problem on exercism.io." msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:16 -#, fuzzy msgid "Lists the available language tracks." -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:17 msgid "REMOVED" msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:18 -#, fuzzy msgid "Upgrades the CLI to the latest released version." -msgstr "Abhängigkeiten an makefile anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/exit.fish:2 msgid "Quit with normal exit status" @@ -18631,9 +17148,8 @@ msgid "have tabs NUMBER characters apart, not 8" msgstr "" #: /tmp/fish/implicit/share/completions/expand.fish:3 -#, fuzzy msgid "use comma separated list of explicit tab positions" -msgstr "Komma-getrennte Liste anzuzeigender Abhängigkeitstypen" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:1 msgid "create a backup of one or several jails" @@ -18652,9 +17168,8 @@ msgid "jail" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:3 -#, fuzzy msgid "manage specific jails" -msgstr "Angegebene Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:5 msgid "attach your console to a running jail" @@ -18673,19 +17188,16 @@ msgid "dump diffs between jail initialisation and freeze time into a flavour" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:12 -#, fuzzy msgid "create the basejail from binary packages" -msgstr "Informationen über ein Paket" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:13 -#, fuzzy msgid "list all jails" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:14 -#, fuzzy msgid "restart a running jail" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:16 msgid "create new jails from archived versions" @@ -18696,34 +17208,29 @@ msgid "create a snapshot of a jail" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:19 -#, fuzzy msgid "start a jail" -msgstr "Job aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:21 -#, fuzzy msgid "stop a running jail" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:23 msgid "check for reasons for the jails to fail" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:24 -#, fuzzy msgid "create or update the basejail from source" -msgstr "Paket aus Quelle generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:1 #: /tmp/fish/implicit/share/completions/pkgfile.fish:2 -#, fuzzy msgid "show this help message and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:2 -#, fuzzy msgid "print detailed info about command NAME" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:3 msgid "formats --list, choices: short, normal, nested" @@ -18738,9 +17245,8 @@ msgid "Force sudo password prompt up-front" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:6 -#, fuzzy msgid "print list of possible commands and exit" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:7 msgid "comma separated KEY=VALUE pairs to set Fab env vars" @@ -18752,14 +17258,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:9 #: /tmp/fish/implicit/share/completions/pkgfile.fish:1 -#, fuzzy msgid "show program's version number and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:10 -#, fuzzy msgid "don't user the running SSH agent" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:11 msgid "forward local agent to remote end" @@ -18770,14 +17274,12 @@ msgid "abort instead of prompting (for password, host, etc)" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:13 -#, fuzzy msgid "specify location of config file to use" -msgstr "apt-Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:14 -#, fuzzy msgid "Color error output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:15 msgid "do not load user known_hosts file" @@ -18796,9 +17298,8 @@ msgid "gateway host to connect through" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:19 -#, fuzzy msgid "Use GSS-API authentication" -msgstr "Pseudo-tty-Zuordnung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:20 msgid "Delegate GSS-API client credentials or not" @@ -18809,14 +17310,12 @@ msgid "Perform GSS-API Key Exchange and user authentication" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:22 -#, fuzzy msgid "comma-separated list of output levels to hide" -msgstr "Komma-getrenntes Format" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:23 -#, fuzzy msgid "comma-separated list of hosts to operate on" -msgstr "Komma-getrennte Liste anzuzeigender Abhängigkeitstypen" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:24 msgid "path to SSH private key file. May be repeated." @@ -18839,14 +17338,12 @@ msgid "make M attempts to connect before giving up" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:29 -#, fuzzy msgid "do not use pseudo-terminal in run/sudo" -msgstr "Keine eingebauten Funktionen verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:30 -#, fuzzy msgid "password for use with authentication and/or sudo" -msgstr "Abfrage des Passworts für den Authentifizierungsserver" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:31 msgid "default to parallel execution method" @@ -18857,9 +17354,8 @@ msgid "SSH connection port" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:33 -#, fuzzy msgid "reject unknown hosts" -msgstr "Unbekannte Option: " +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:34 msgid "password for use with sudo only" @@ -18870,37 +17366,32 @@ msgid "load system known_hosts file before reading user known_hosts" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:36 -#, fuzzy msgid "comma-separated list of roles to operate on" -msgstr "Komma-getrennte Liste anzuzeigender Abhängigkeitstypen" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:37 msgid "specify a new shell, defaults to '/bin/bash -l -c'" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:38 -#, fuzzy msgid "comma-separated list of output levels to show" -msgstr "Komma-getrennte Liste anzuzeigender Abhängigkeitstypen" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:39 msgid "skip over hosts that can't be reached" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:40 -#, fuzzy msgid "skip over unknown tasks" -msgstr "Fehlende Pakete ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:41 -#, fuzzy msgid "Path to SSH config file" -msgstr "Zeichenkette vor relative Links stellen" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:42 -#, fuzzy msgid "set connection timeout to N seconds" -msgstr "Verbindungszeitüberschreitung festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:43 msgid "set remote command timeout to N seconds" @@ -18915,14 +17406,12 @@ msgid "warn, instead of abort, when commands fail" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:46 -#, fuzzy msgid "comma-separated list of hosts to exclude" -msgstr "Komma-getrenntes Format" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:47 -#, fuzzy msgid "number of concurrent processes to use in parallel mode" -msgstr "Anzahl gleichzeitiger Jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:1 msgid "Specify a shell command as action to perform on the image" @@ -18953,33 +17442,28 @@ msgid "Exit feh after one loop through the slideshow" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:8 -#, fuzzy msgid "Draw the defined actions" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:9 -#, fuzzy msgid "Display some EXIF information" -msgstr "Inode-Information auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:10 -#, fuzzy msgid "Draw filename" -msgstr "Dateiname ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:11 msgid "Show overlay texts on semi-transparent background" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:12 -#, fuzzy msgid "Set global font" -msgstr "Globale Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:13 -#, fuzzy msgid "Add given path as directory to search fonts" -msgstr "Zeige den für eine Nachricht benutzten Sitzungsschlüssel an" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:14 msgid "Disable antialiasing for zooming, bg settings, etc." @@ -18994,32 +17478,28 @@ msgid "Limit window size. Format: [w x h] [+ x + y]" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:17 -#, fuzzy msgid "Hide pointer" -msgstr "Zeiger auf Jobliste" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:18 msgid "Use style as background for transparent image parts" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:19 -#, fuzzy msgid "Enable index mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:20 -#, fuzzy msgid "Show image information based on given format" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:21 msgid "Execute given command line and display its output" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:22 -#, fuzzy msgid "Keep files fetched using HTTP" -msgstr "Rekursiv, dem MUSTER entsprechende Dateien überspringen" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:23 msgid "Disable strict hostname and peer checking with HTTPS" @@ -19054,14 +17534,12 @@ msgid "Only show image which are larger then given size" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:31 -#, fuzzy msgid "Enable montage mode" -msgstr "Ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:32 -#, fuzzy msgid "Disable slideshow mode" -msgstr "Cookie-Benutzung deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:33 msgid "Don't jump to first image after resorting filelist" @@ -19076,37 +17554,32 @@ msgid "Don't limit window to screen size" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:36 -#, fuzzy msgid "Disable Xinerama support" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:37 -#, fuzzy msgid "Save files to given directory" -msgstr "Dateien unter jedem Verzeichnis lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:38 msgid "Preload images" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:39 -#, fuzzy msgid "Don't report non-fatal errors" -msgstr "Keine Fortsetzung bei Fehlern" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:40 msgid "Randomize file list before displaying" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:41 -#, fuzzy msgid "Recursivly expand any directory" -msgstr "Unterverzeichnisse rekursiv vergleichen" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:42 -#, fuzzy msgid "Don't recursively expand any directory (default)" -msgstr "Dokumentationsdateien installieren (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:43 msgid "Reload filelist after given time in second" @@ -19135,23 +17608,20 @@ msgid "Sort file list with given parameter" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:49 -#, fuzzy msgid "Start the filelist at given filename" -msgstr "Schlüsselserver nach den angegebenen Namen durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:50 -#, fuzzy msgid "Load options from given config file" -msgstr "Cookies aus Datei laden" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:51 msgid "Set given title for window opended from thumbnail mode" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:52 -#, fuzzy msgid "Set window title" -msgstr "Fenster über Kennung auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:53 msgid "Just print names of images that can't be loaded by imlib2" @@ -19178,9 +17648,8 @@ msgid "Limit montage's height" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:61 -#, fuzzy msgid "Limit montage's width" -msgstr "Zeilenbreite" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:62 msgid "Save created montage to given file" @@ -19211,9 +17680,8 @@ msgid "Set font to print title on index" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:69 -#, fuzzy msgid "Center file on background" -msgstr "Job in Hintergrund schicken" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:70 msgid "Fit file into background by zooming until image fits" @@ -19234,24 +17702,20 @@ msgid "Tile image if too small for screen" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:74 -#, fuzzy msgid "Do not write a ~/.fehbg file" -msgstr "Neuere Dateien nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:1 -#, fuzzy msgid "Select font" -msgstr "Eine Aktion auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:2 -#, fuzzy msgid "Change font directory" -msgstr "Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:3 -#, fuzzy msgid "Center output horizontally" -msgstr "nur numerische Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:4 msgid "Make output flush-left" @@ -19266,14 +17730,12 @@ msgid "Set justification according to text direction" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:7 -#, fuzzy msgid "Set output to terminal width" -msgstr "Niemals Ausgaben aufs Terminal schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:8 -#, fuzzy msgid "Set output width" -msgstr "Ausgabebegrenzer festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:10 msgid "Put FIGlet back to normal" @@ -19284,9 +17746,8 @@ msgid "Switch to German (ISO 646-DE) character set" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:12 -#, fuzzy msgid "Turns off German character set processing" -msgstr "Zugriffsprüfung abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:13 msgid "Add given control file" @@ -19305,33 +17766,28 @@ msgid "Specify layout mode between 1 and 63" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:21 -#, fuzzy msgid "Print version and copyright" -msgstr "Magische Versionsinformation ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:22 -#, fuzzy msgid "Print information given infocode" -msgstr "Informative Nachrichten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:23 -#, fuzzy msgid "Print left-to-right" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:24 msgid "Print right-to-left" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:25 -#, fuzzy msgid "Print with default text direction" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:1 -#, fuzzy msgid "Do not prepend filenames to output lines" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:2 msgid "Print the parsed form of the magic file" @@ -19342,18 +17798,16 @@ msgid "Write an output file containing a pre-parsed version of file" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:4 -#, fuzzy msgid "Do not follow symlinks" -msgstr "Symbolischen Links nicht folgen" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:5 msgid "Output mime type strings instead human readable strings" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:6 -#, fuzzy msgid "Don't stop at the first match" -msgstr "Patch nicht signieren" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:8 msgid "Flush stdout after checking each file" @@ -19376,9 +17830,8 @@ msgid "Read block and character device files too" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:13 -#, fuzzy msgid "Print the version of the program and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:14 msgid "Try to look inside compressed files" @@ -19386,9 +17839,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:15 #: /tmp/fish/implicit/share/completions/gv.fish:33 -#, fuzzy msgid "Print a help message and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:16 msgid "Read the names of the files to be examined from a file" @@ -19399,14 +17851,12 @@ msgid "Use other string as result field separator instead of :" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:18 -#, fuzzy msgid "Alternate list of files containing magic numbers" -msgstr "Die im Paket enthaltenen Auslöser-Skripte anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:1 -#, fuzzy msgid "Never follow symlinks" -msgstr "Symbolischen Links folgen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:3 msgid "" @@ -19430,9 +17880,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:8 #: /tmp/fish/implicit/share/completions/zfs.fish:66 #: /tmp/fish/implicit/share/completions/zfs.fish:76 -#, fuzzy msgid "Maximum recursion depth" -msgstr "Maximale Größe des Programms im Arbeitsspeicher" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:9 msgid "Do not apply any tests or actions at levels less than specified level" @@ -19453,28 +17902,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:13 -#, fuzzy msgid "Specify regular expression type" -msgstr "Kernel-Version angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:15 -#, fuzzy msgid "Turn warnings on" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:16 -#, fuzzy msgid "Turn warnings off" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:17 msgid "File last accessed specified number of minutes ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:18 -#, fuzzy msgid "File last accessed more recently than file was modified" -msgstr "Letzte Revision anzeigen, bei der jede Zeile verändert wurde" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:19 msgid "File last accessed specified number of days ago" @@ -19498,44 +17943,36 @@ msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:24 #: /tmp/fish/implicit/share/completions/test.fish:31 -#, fuzzy msgid "File is executable" -msgstr "Datei ist schreibbar" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:25 -#, fuzzy msgid "Always false" -msgstr "immer neuformatieren" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:26 -#, fuzzy msgid "File is on filesystem of specified type" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:27 -#, fuzzy msgid "Numeric group id of file" -msgstr "nur numerische Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:28 -#, fuzzy msgid "Group name of file" -msgstr "Inode-Nummer der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:29 -#, fuzzy msgid "File is symlink matching specified case insensitive pattern" -msgstr "Dem Muster entsprechende Einträge übergehen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:30 -#, fuzzy msgid "File name matches case insensitive pattern" -msgstr "Module einfügen, die den angegebenen Mustern entsprechen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:31 -#, fuzzy msgid "File has specified inode number" -msgstr "durch angegebenes Programm filtern" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:32 msgid "File path matches case insensitive pattern" @@ -19546,32 +17983,28 @@ msgid "File name matches case insensetive regex" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:34 -#, fuzzy msgid "File has specified number of links" -msgstr "Nur angegebene Anzahl Zeichen vergleichen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:35 -#, fuzzy msgid "File is symlink matching specified pattern" -msgstr "Dem Muster entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:36 msgid "File last modified specified number of minutes ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:37 -#, fuzzy msgid "File last modified more recently than file was modified" -msgstr "Letzte Revision anzeigen, bei der jede Zeile verändert wurde" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:38 msgid "File last modified specified number of days ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:39 -#, fuzzy msgid "File name matches pattern" -msgstr "Dem Muster entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:40 msgid "No user corresponds to file's numeric user ID" @@ -19582,43 +18015,36 @@ msgid "No group corresponds to file's numeric group ID" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:42 -#, fuzzy msgid "File path matches pattern" -msgstr "Dem Muster entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:43 -#, fuzzy msgid "Files has specified permissions set" -msgstr "Benutze angegebenen Kompressionsalgorithmus" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:44 msgid "File name matches regex" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:45 -#, fuzzy msgid "File refers to the same inode as specified file" -msgstr "die in der angegebenen Datei aufgeführten Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:46 -#, fuzzy msgid "File uses specified units of space" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:47 -#, fuzzy msgid "Always true" -msgstr "Immer" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:48 -#, fuzzy msgid "File is of specified type" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:49 -#, fuzzy msgid "File's owner has specified numeric user ID" -msgstr "Datei gehört zu effektiver Benutzerkennung" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:50 msgid "" @@ -19627,9 +18053,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:51 -#, fuzzy msgid "File's owner" -msgstr "Datei ist Socket" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:52 msgid "" @@ -19638,51 +18063,44 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:53 -#, fuzzy msgid "File's security context matches specified pattern" -msgstr "Dem Muster entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:54 -#, fuzzy msgid "Delete selected files" -msgstr "Auswahl löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:55 -#, fuzzy msgid "Execute specified command for each located file" -msgstr "Befehl ausführen, wenn vorheriger Befehl fehlerhaft war" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:56 msgid "Execute specified command for each located file, in the files directory" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:57 -#, fuzzy msgid "List file in ls -dils format, write to specified file" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:58 -#, fuzzy msgid "Print full file names into specified file" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:59 msgid "Print null separated full file names into specified file" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:60 -#, fuzzy msgid "Print formated data into specified file" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:61 msgid "Execute specified command for each located file after asking user" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:62 -#, fuzzy msgid "Print full file names" -msgstr "Dateiname ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:63 msgid "" @@ -19695,28 +18113,24 @@ msgid "Print null separated full file names" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:65 -#, fuzzy msgid "Print formated data" -msgstr "Befehlstyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:66 msgid "Do not recurse unless -depth is specified" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:67 -#, fuzzy msgid "Exit at once" -msgstr "Shell verlassen" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:68 -#, fuzzy msgid "List file in ls -dils format" -msgstr "Fehler im rss-Format auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:69 -#, fuzzy msgid "Negate result of action" -msgstr "Ausdruck negieren" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:70 msgid "Result is only true if both previous and next action are true" @@ -19735,23 +18149,20 @@ msgid "Only parse input, do not execute" msgstr "" #: /tmp/fish/implicit/share/completions/fish.fish:5 -#, fuzzy msgid "Run in interactive mode" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/fish.fish:6 -#, fuzzy msgid "Run in login mode" -msgstr "Im Dummy-Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/fish.fish:7 msgid "Output profiling information to specified file" msgstr "" #: /tmp/fish/implicit/share/completions/fish.fish:8 -#, fuzzy msgid "Run with the specified verbosity level" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:3 msgid "Do not indent output, only reformat into one job per line" @@ -19762,9 +18173,8 @@ msgid "Colorize the output using ANSI escape sequences" msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:5 -#, fuzzy msgid "Output in HTML format" -msgstr "Ausgabe im ISO 8601-Format" +msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:6 #: /tmp/fish/implicit/share/completions/sort.fish:15 @@ -19772,28 +18182,24 @@ msgid "Write to file" msgstr "In Datei schreiben" #: /tmp/fish/implicit/share/completions/fish_indent.fish:7 -#, fuzzy msgid "Enable debug at specified verbosity level" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:8 msgid "Specify how many stack frames to display in debug messages" msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:9 -#, fuzzy msgid "Dump information about parsed statements to stderr" -msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:1 -#, fuzzy msgid "Show the flac version number" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:2 -#, fuzzy msgid "Show this screen" -msgstr "Zeige versteckte Dateien" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:3 msgid "Show detailed explanation of usage and options" @@ -19812,28 +18218,24 @@ msgid "Same as -d except an analysis file is written" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:7 -#, fuzzy msgid "Write output to stdout" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:8 msgid "Do not write runtime encode/decode statistics" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:9 -#, fuzzy msgid "Do not print anything including errors" -msgstr "Nichts schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:10 -#, fuzzy msgid "Force overwriting of output files" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:11 -#, fuzzy msgid "Force the output file name" -msgstr "Ausgabedateiname angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:12 msgid "Prepend STRING to output names" @@ -19860,18 +18262,16 @@ msgid "Serial number to use for the FLAC stream" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:18 -#, fuzzy msgid "Include residual signal in text output" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:19 msgid "Generate gnuplot files of residual distribution" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:20 -#, fuzzy msgid "Continue decoding through stream errors" -msgstr "Fortsetzung nach Fehler" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:21 msgid "Set the beginning and ending cuepoints to decode [#.#][-[#.#]]" @@ -19902,9 +18302,8 @@ msgid "Add a Vorbis comment FIELD=VALUE; may appear multiple times" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:28 -#, fuzzy msgid "Read tags from file" -msgstr "URLs aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:29 msgid "Add seek point(s) {#|X|#x|#s}" @@ -19953,9 +18352,8 @@ msgid "Synonymous with -l 12 -b 4608 -m -e -r 6" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:42 -#, fuzzy msgid "Specify blocksize in samples" -msgstr "Sources.list-Datei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:43 msgid "Try mid-side coding for each frame" @@ -19978,9 +18376,8 @@ msgid "Exhaustively search LP coeff quantization" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:48 -#, fuzzy msgid "Specify precision in bits" -msgstr "Optionen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:49 msgid "Set [min,]max residual partition order" @@ -19992,14 +18389,12 @@ msgid "Set byte order for samples" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:52 -#, fuzzy msgid "Number of channels" -msgstr "Anzahl der Audiokanäle festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:53 -#, fuzzy msgid "Number of bits per sample" -msgstr "Anzahl der Top-Server" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:54 msgid "Sample rate in Hz" @@ -20027,9 +18422,8 @@ msgid "No adaptive mid-side coding for all frames" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:61 -#, fuzzy msgid "Don't continue decoding through stream errors" -msgstr "Keine Fortsetzung bei Fehlern" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:62 msgid "Don't delete after a successful encode/decode" @@ -20068,9 +18462,8 @@ msgid "Don't generate gnuplot files of residual distribution" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:71 -#, fuzzy msgid "Don't include residual signal in text output" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:72 msgid "Don't align multiple files on sector boundaries" @@ -20081,14 +18474,12 @@ msgid "Write runtime encode/decode statistics" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:74 -#, fuzzy msgid "Don't force overwriting of output files" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:75 -#, fuzzy msgid "Don't verify a correct encoding" -msgstr "Beim Lesen keine Paket- oder Kopfzeilen-Prüfsummen überprüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:1 msgid "Install an application or runtime from a remote" @@ -20099,14 +18490,12 @@ msgid "Update an installed application or runtime" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:3 -#, fuzzy msgid "Uninstall an installed application or runtime" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:4 -#, fuzzy msgid "List installed apps and/or runtimes" -msgstr "Installierte(s) Quellpaket(e) auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:5 msgid "Show info for installed app or runtime" @@ -20121,9 +18510,8 @@ msgid "Override permissions for an application" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:8 -#, fuzzy msgid "Specify default version to run" -msgstr "Ziel-E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:9 msgid "Enter the namespace of a running application" @@ -20138,57 +18526,48 @@ msgid "Revoke access to a specific file" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:12 -#, fuzzy msgid "Show information about a specific file" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:13 -#, fuzzy msgid "List exported files" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:14 -#, fuzzy msgid "Add a new remote repository (by URL)" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:15 msgid "Modify properties of a configured remote" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:16 -#, fuzzy msgid "Delete a configured remote" -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:17 -#, fuzzy msgid "List all configured remotes" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:18 -#, fuzzy msgid "List contents of a configured remote" -msgstr "Startverzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:19 -#, fuzzy msgid "Initialize a directory for building" -msgstr "Datei-Deskriptor für Eingabe" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:20 -#, fuzzy msgid "Run a build command inside the build dir" -msgstr "Internen Befehl anstatt einer Funktion ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:21 msgid "Finish a build dir for export" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:22 -#, fuzzy msgid "Export a build dir to a repository" -msgstr "Neue/s Datei/Verzeichnis zum Paketdepot hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:23 msgid "Create a bundle file from a build directory" @@ -20203,14 +18582,12 @@ msgid "Sign an application or runtime" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:26 -#, fuzzy msgid "Update the summary file in a repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:1 -#, fuzzy msgid "Add files to checkout" -msgstr "Dateien an Archiv anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:2 #: /tmp/fish/implicit/share/completions/fossil.fish:8 @@ -20222,17 +18599,15 @@ msgstr "Dateien an Archiv anhängen" #: /tmp/fish/implicit/share/completions/fossil.fish:202 #: /tmp/fish/implicit/share/completions/fossil.fish:211 #: /tmp/fish/implicit/share/completions/fossil.fish:300 -#, fuzzy msgid "Case insensitive file matching" -msgstr "Groß-/Klein-Schreibung nicht unterscheiden" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:3 #: /tmp/fish/implicit/share/completions/fossil.fish:9 #: /tmp/fish/implicit/share/completions/fossil.fish:78 #: /tmp/fish/implicit/share/completions/fossil.fish:130 -#, fuzzy msgid "Include dotfiles" -msgstr "Datei ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:4 #: /tmp/fish/implicit/share/completions/fossil.fish:5 @@ -20240,14 +18615,12 @@ msgstr "Datei ausschliessen" #: /tmp/fish/implicit/share/completions/fossil.fish:11 #: /tmp/fish/implicit/share/completions/fossil.fish:79 #: /tmp/fish/implicit/share/completions/fossil.fish:131 -#, fuzzy msgid "Files to ignore" -msgstr "zu ignorierenden HTML-Markierungen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:7 -#, fuzzy msgid "Remove and add files to checkout" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:12 #: /tmp/fish/implicit/share/completions/fossil.fish:82 @@ -20259,80 +18632,66 @@ msgid "Display actions without running" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:13 -#, fuzzy msgid "Check all repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:14 -#, fuzzy msgid "List changes" -msgstr "Keine Änderungen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:15 #: /tmp/fish/implicit/share/completions/fossil.fish:16 -#, fuzzy msgid "Ignore repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:17 -#, fuzzy msgid "Display locations" -msgstr "Alle Änderungsprotokolle anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:18 -#, fuzzy msgid "Pull repositories" -msgstr "Depot aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:19 -#, fuzzy msgid "Push repositories" -msgstr "Depot aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:20 -#, fuzzy msgid "Rebuild repositories" -msgstr "Depot aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:21 -#, fuzzy msgid "Sync repositories" -msgstr "Depot aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:22 -#, fuzzy msgid "Shows file modifications" -msgstr "Änderungsdatum anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:23 -#, fuzzy msgid "Show file versions" -msgstr "Version des Quellenbaumes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:24 -#, fuzzy msgid "List all analyzed versions" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:25 #: /tmp/fish/implicit/share/completions/fossil.fish:137 -#, fuzzy msgid "Limit analyzed versions" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:26 msgid "Find regressions" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:27 -#, fuzzy msgid "Identify version as not working" -msgstr "Zeichenkette für User-Agent festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:28 -#, fuzzy msgid "Identify version as working" -msgstr "Zeichenkette für User-Agent festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:29 #: /tmp/fish/implicit/share/completions/fossil.fish:39 @@ -20345,14 +18704,12 @@ msgid "Show log of bisects in check-in order" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:31 -#, fuzzy msgid "Skip version" -msgstr "Sortierung nach Version" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:32 -#, fuzzy msgid "Show bisect options" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:33 #: /tmp/fish/implicit/share/completions/fossil.fish:36 @@ -20374,9 +18731,8 @@ msgid "List versions between bad and good" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:41 -#, fuzzy msgid "Don't show anything" -msgstr "Nichts schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:42 msgid "Reinitialize bisect" @@ -20385,69 +18741,57 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:44 #: /tmp/fish/implicit/share/completions/fossil.fish:45 #: /tmp/fish/implicit/share/completions/fossil.fish:46 -#, fuzzy msgid "Show all versions" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:47 -#, fuzzy msgid "Undo latest bad/good command." -msgstr "Befehlsblock beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:48 #: /tmp/fish/implicit/share/completions/git.fish:88 -#, fuzzy msgid "Create a new branch" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:49 -#, fuzzy msgid "Create new branch" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:50 -#, fuzzy msgid "Make branch local" -msgstr "Geltungsbereich der Variablen lokal machen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:51 -#, fuzzy msgid "Set background color" -msgstr "Hintergrundfarbe ändern" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:52 #: /tmp/fish/implicit/share/completions/fossil.fish:106 -#, fuzzy msgid "Don't sign the branch with GPG" -msgstr "Patch nicht signieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:53 #: /tmp/fish/implicit/share/completions/fossil.fish:155 -#, fuzzy msgid "Override date" -msgstr "Frame-Rate überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:54 -#, fuzzy msgid "Override user" -msgstr "Frame-Rate überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:55 -#, fuzzy msgid "List branches" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:56 #: /tmp/fish/implicit/share/completions/fossil.fish:57 -#, fuzzy msgid "Show all branches" -msgstr "Arp-Einträge anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:58 #: /tmp/fish/implicit/share/completions/fossil.fish:59 -#, fuzzy msgid "Show closed branches" -msgstr "Aktualisierte Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:60 #: /tmp/fish/implicit/share/completions/fossil.fish:62 @@ -20457,39 +18801,33 @@ msgstr "Aktualisierte Pakete anzeigen" #: /tmp/fish/implicit/share/completions/fossil.fish:177 #: /tmp/fish/implicit/share/completions/fossil.fish:180 #: /tmp/fish/implicit/share/completions/fossil.fish:267 -#, fuzzy msgid "Run command on repository" -msgstr "Befehl im aktuellen Prozess ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:61 -#, fuzzy msgid "Print a file" -msgstr "Dateiname ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:63 #: /tmp/fish/implicit/share/completions/fossil.fish:140 -#, fuzzy msgid "Print specific revision" -msgstr "PKG-Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:64 -#, fuzzy msgid "List local changes" -msgstr "Lokale Änderungen patchen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:65 #: /tmp/fish/implicit/share/completions/fossil.fish:128 #: /tmp/fish/implicit/share/completions/fossil.fish:263 -#, fuzzy msgid "Display absolute paths" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:66 #: /tmp/fish/implicit/share/completions/fossil.fish:132 #: /tmp/fish/implicit/share/completions/fossil.fish:264 -#, fuzzy msgid "Display relative paths" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:67 #: /tmp/fish/implicit/share/completions/fossil.fish:265 @@ -20497,34 +18835,28 @@ msgid "Verify file status using SHA1" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:68 -#, fuzzy msgid "Identify the repository if there are changes" -msgstr "Das Paketdepotverzeichnis angeben, in dem gearbeitet wird" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:69 -#, fuzzy msgid "Say (none) if there are no changes" -msgstr "Versuche, eine kleinere Menge Änderungen zu finden" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:70 -#, fuzzy msgid "Checkout version" -msgstr "Sortierung nach Version" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:71 -#, fuzzy msgid "Version to check out" -msgstr "Version des Quellpaketes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:72 -#, fuzzy msgid "Ignore edited files" -msgstr "Angegebene Datei ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:73 -#, fuzzy msgid "Ignore missing content" -msgstr "Fehlende Pakete ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:74 msgid "Only update the manifest" @@ -20532,14 +18864,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:75 #: /tmp/fish/implicit/share/completions/fossil.fish:302 -#, fuzzy msgid "Update to latest version" -msgstr "Abhängigkeiten an makefile anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:76 -#, fuzzy msgid "Delete all extra files" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:80 #: /tmp/fish/implicit/share/completions/fossil.fish:212 @@ -20551,19 +18881,16 @@ msgid "Remove without prompting" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:83 -#, fuzzy msgid "Only remove Fossil temporary files" -msgstr "tmpdir für temporäre Dateien benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:84 -#, fuzzy msgid "Show removed files" -msgstr "Datei nicht erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:85 -#, fuzzy msgid "Clone repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:86 #: /tmp/fish/implicit/share/completions/fossil.fish:154 @@ -20579,9 +18906,8 @@ msgid "Use SSL identity" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:89 -#, fuzzy msgid "Create new revision" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:91 msgid "Allow unresolved merge conflicts" @@ -20624,38 +18950,32 @@ msgid "Use a delta manifest" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:101 -#, fuzzy msgid "Commit comment" -msgstr "Kommentar" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:102 -#, fuzzy msgid "Read commit comment from a file" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:103 -#, fuzzy msgid "Mimetype of commit comment" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:105 -#, fuzzy msgid "Omit all warnings" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:107 -#, fuzzy msgid "Don't sync the changes" -msgstr "Änderungen nicht zusammenfassen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:108 msgid "Assign a tag to the checkin" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:109 -#, fuzzy msgid "Show differences" -msgstr "Unterschiede bei Groß-/Kleinschreibung ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:110 #: /tmp/fish/implicit/share/completions/fossil.fish:165 @@ -20664,33 +18984,28 @@ msgid "Binary files glob pattern" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:111 -#, fuzzy msgid "Show diff of branch" -msgstr "Hierarchie anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:112 -#, fuzzy msgid "Show file names only" -msgstr "Log in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:113 -#, fuzzy msgid "Context lines" -msgstr "Kein Neue-Zeile-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:114 -#, fuzzy msgid "Include binary files" -msgstr "Binärdateien überspringen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:115 msgid "Select revision to compare with" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:116 -#, fuzzy msgid "Use internal diff logic" -msgstr "Bearbeiten-Befehl rückgängig machen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:117 msgid "Side-by-side diff" @@ -20709,27 +19024,24 @@ msgid "Unified diff" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:121 -#, fuzzy msgid "Output complete text" -msgstr "mime-Typ ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:122 msgid "Line width in side-by-side diff" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:123 -#, fuzzy msgid "Export repository to git" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:124 msgid "Export rids of exported data to file" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:125 -#, fuzzy msgid "Read rids of data to ignore from file" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:127 msgid "Show files that aren't part of checkout" @@ -20740,38 +19052,32 @@ msgid "Print complete file history" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:134 -#, fuzzy msgid "Display one-line summary" -msgstr "Zusammenfassung anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:136 -#, fuzzy msgid "Select log mode (default)" -msgstr "Vollständige Befehlszeile selektieren (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:138 -#, fuzzy msgid "Skip changes" -msgstr "Keine Änderungen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:139 -#, fuzzy msgid "Select print mode" -msgstr "Ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:141 -#, fuzzy msgid "Select status mode" -msgstr "Eine Methode auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:143 msgid "Show main and auxiliary commands" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:144 -#, fuzzy msgid "Show test commands only" -msgstr "Keine Befehle ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:145 msgid "Show auxilary commands only" @@ -20782,44 +19088,37 @@ msgid "Show list of web UI pages" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:147 -#, fuzzy msgid "Import repository from git" -msgstr "Auf Standardausgabe komprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:148 -#, fuzzy msgid "Allow importing into existing repository" -msgstr "Eine lokale Kopie eines weiteren Paketdepots erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:149 -#, fuzzy msgid "Provide information about object" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:151 #: /tmp/fish/implicit/share/completions/fossil.fish:170 -#, fuzzy msgid "Show extra information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:152 -#, fuzzy msgid "Create a repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:153 -#, fuzzy msgid "Copy settings from repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:156 msgid "Make JSON request" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:158 -#, fuzzy msgid "List files" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:159 #: /tmp/fish/implicit/share/completions/fossil.fish:163 @@ -20831,29 +19130,24 @@ msgstr "Konfigurationsdatei benutzen" #: /tmp/fish/implicit/share/completions/git.fish:246 #: /tmp/fish/implicit/share/completions/git.fish:295 #: /tmp/fish/implicit/share/completions/git.fish:296 -#, fuzzy msgid "Tag" -msgstr "Ziel" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:160 -#, fuzzy msgid "Show commit time" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:161 -#, fuzzy msgid "Provide extra information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:162 -#, fuzzy msgid "Merge commits" -msgstr "Sortierte Dateien mischen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:164 -#, fuzzy msgid "Use baseline" -msgstr "Ansi-Modus benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:167 msgid "Allow empty merge" @@ -20864,14 +19158,12 @@ msgid "Close merged branch" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:171 -#, fuzzy msgid "Move file" -msgstr "Archiv-Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:173 -#, fuzzy msgid "Open repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:174 msgid "Only modify manifest" @@ -20882,9 +19174,8 @@ msgid "Allow opening inside an opened repository" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:176 -#, fuzzy msgid "Pull from a repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:178 #: /tmp/fish/implicit/share/completions/fossil.fish:181 @@ -20892,44 +19183,36 @@ msgid "Pull private branches" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:179 -#, fuzzy msgid "Push into a repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:182 -#, fuzzy msgid "Rebuild a repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:183 -#, fuzzy msgid "Compute clusters" -msgstr "Schnellere Kompromierung" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:184 -#, fuzzy msgid "Compress database" -msgstr "Alle Daten komprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:185 -#, fuzzy msgid "Force rebuild even with errors" -msgstr "Index-Neuerstellung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:186 -#, fuzzy msgid "Skip BLOB table verification" -msgstr "Verifizierung der Signatur überspringen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:187 -#, fuzzy msgid "Set the database pagesize" -msgstr "Standardzeichensatz festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:188 -#, fuzzy msgid "Scan in random order" -msgstr "in zufälliger Reihenfolge spielen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:189 msgid "Run VACUUM" @@ -20948,33 +19231,28 @@ msgid "Set Write-Ahead-Log journalling" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:193 -#, fuzzy msgid "Show statistics" -msgstr "Zwischenspeicherstatistik anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:194 -#, fuzzy msgid "Default server URL" -msgstr "Referer-URL festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:195 msgid "Revert a commit" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:197 -#, fuzzy msgid "Revert back to given revision" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:198 -#, fuzzy msgid "Remove a file from repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:199 -#, fuzzy msgid "Remove files from this checkout" -msgstr "Dateien nach Archivierung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:200 msgid "Skip removing files from this checkout" @@ -20985,19 +19263,16 @@ msgid "Display actions without runing" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:203 -#, fuzzy msgid "Manage settings" -msgstr "Strings manipulieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:204 -#, fuzzy msgid "Log accesses" -msgstr "Zugriffszeit anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:205 -#, fuzzy msgid "Allow symbolic links" -msgstr "Defekter symbolischer Link" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:206 msgid "Allow automatically filling CAPTCHA" @@ -21012,9 +19287,8 @@ msgid "Pull list of shunned references from server" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:209 -#, fuzzy msgid "Automatically sync the repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:213 msgid "Sign commits using GPG" @@ -21033,23 +19307,20 @@ msgid "Allow binary files to be diffed" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:217 -#, fuzzy msgid "External diff command" -msgstr "Bearbeiten-Befehl rückgängig machen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:218 -#, fuzzy msgid "Disallow pushing to the repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:219 msgid "Text editor for writing check-in comments" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:220 -#, fuzzy msgid "List of empty directories" -msgstr "Startverzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:221 msgid "Non-UTF-8 files glob pattern" @@ -21096,14 +19367,12 @@ msgid "HTTP request size limit" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:232 -#, fuzzy msgid "Use modification times" -msgstr "Modifikationszeit ändern" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:233 -#, fuzzy msgid "PGP command" -msgstr "Jobbefehl" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:234 msgid "HTTP proxy URL" @@ -21114,9 +19383,8 @@ msgid "Report relative paths" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:236 -#, fuzzy msgid "Compute checksums over all files" -msgstr "Größe für alle Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:237 msgid "Allow users to register themselves" @@ -21131,14 +19399,12 @@ msgid "Location of SSL CA root certificates" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:240 -#, fuzzy msgid "SSL private certificate path" -msgstr "Zertifikatsregeln festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:241 -#, fuzzy msgid "Allow Tcl scripting" -msgstr "Tcl-Sektion" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:242 msgid "Tcl initialization script" @@ -21149,49 +19415,42 @@ msgid "TH1 initialization script" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:244 -#, fuzzy msgid "Web browser name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:245 msgid "Set globally" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:246 -#, fuzzy msgid "Run SQL commands" -msgstr "Ende des Befehls" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:247 msgid "Manage stashes" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:248 -#, fuzzy msgid "Save current changes" -msgstr "Fehler aus Paketen auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:249 #: /tmp/fish/implicit/share/completions/fossil.fish:250 -#, fuzzy msgid "Stash comment" -msgstr "Kommentar" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:251 -#, fuzzy msgid "List all stashes" -msgstr "Alle Namen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:252 #: /tmp/fish/implicit/share/completions/fossil.fish:253 -#, fuzzy msgid "Show information about files" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:254 -#, fuzzy msgid "Show stash contents" -msgstr "Arp-Einträge anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:255 msgid "Pop last stash" @@ -21215,19 +19474,16 @@ msgid "Forget ALL stashes" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:261 -#, fuzzy msgid "Compare stash" -msgstr "Vergleiche Monatsnamen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:262 -#, fuzzy msgid "Show status" -msgstr "Threads anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:266 -#, fuzzy msgid "Sync with a repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:268 msgid "Sync private branches" @@ -21238,9 +19494,8 @@ msgid "Manage tags" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:270 -#, fuzzy msgid "Add tag to check-in" -msgstr "Taintprüfung" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:271 msgid "Add raw tag" @@ -21251,19 +19506,16 @@ msgid "Propagate tag" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:273 -#, fuzzy msgid "Remove tag from check-in" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:275 -#, fuzzy msgid "Remove raw tag" -msgstr "Schlüssel entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:276 -#, fuzzy msgid "Find tag" -msgstr "Kennzeichnung bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:277 msgid "Find raw tag" @@ -21274,70 +19526,57 @@ msgid "Find tag type" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:279 -#, fuzzy msgid "Limit number of tags" -msgstr "Nur Anzahl von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:281 #: /tmp/fish/implicit/share/completions/git.fish:293 -#, fuzzy msgid "List tags" -msgstr "Kennzeichnung bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:282 -#, fuzzy msgid "List raw tags" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:283 -#, fuzzy msgid "Show timeline" -msgstr "Zeittyp anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:284 -#, fuzzy msgid "Limit timeline entries" -msgstr "Wartezeiten zwischen Abrufversuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:285 -#, fuzzy msgid "Output only event type" -msgstr "mime-Typ ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:286 -#, fuzzy msgid "Output list of files changed" -msgstr "3 Zeilen des vereinheitlichten Kontextes ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:287 -#, fuzzy msgid "Open web UI" -msgstr "Datei öffnen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:288 -#, fuzzy msgid "Start web server" -msgstr "Dienst starten" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:289 -#, fuzzy msgid "Enable automatic login for localhost" -msgstr "Automatische Pufferzuordnung deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:290 -#, fuzzy msgid "Only listen on localhost" -msgstr "Nur Lokationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:291 -#, fuzzy msgid "Port to listen on" -msgstr "Niedrigster Port, an dem gelauscht wird" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:292 -#, fuzzy msgid "Trace TH1 execution" -msgstr "Löschung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:293 msgid "Use base URL" @@ -21356,34 +19595,28 @@ msgid "Use SCGI rather than HTTP" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:297 -#, fuzzy msgid "Undo the changes" -msgstr "Änderung der Fenstergröße" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:299 -#, fuzzy msgid "Update version" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:301 -#, fuzzy msgid "Print debug information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:304 -#, fuzzy msgid "Print information about all files" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:305 -#, fuzzy msgid "Print fossil version" -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:306 -#, fuzzy msgid "Print version of optional features" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:307 #: /tmp/fish/implicit/share/completions/gpasswd.fish:3 @@ -21401,30 +19634,26 @@ msgstr "Sämtliche Versions-Informationen ignorieren" #: /tmp/fish/implicit/share/completions/rejmerge.fish:3 #: /tmp/fish/implicit/share/completions/root.fish:6 #: /tmp/fish/implicit/share/completions/zypper.fish:4 -#, fuzzy msgid "Print help" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:1 #: /tmp/fish/implicit/share/completions/funcsave.fish:1 -#, fuzzy msgid "Save function" -msgstr "Funktion löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:2 msgid "Open function in external editor" msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:3 -#, fuzzy msgid "Edit in interactive mode" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:1 #: /tmp/fish/implicit/share/completions/functions.fish:5 -#, fuzzy msgid "Set function description" -msgstr "Funktionsdefinitonsblock" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:2 #: /tmp/fish/implicit/share/completions/functions.fish:2 @@ -21454,14 +19683,12 @@ msgid "Make the function a variable update event handler" msgstr "Funktion zur Ereignisbehandlung bei Variablenaktualisierung verwenden" #: /tmp/fish/implicit/share/completions/function.fish:8 -#, fuzzy msgid "Make the function a generic event handler" -msgstr "Funktion zur Signalereignisbehandlung verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:9 -#, fuzzy msgid "Specify named arguments" -msgstr "Kernel-Version angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:10 msgid "Do not shadow variable scope of calling function" @@ -21476,38 +19703,32 @@ msgid "Erase function" msgstr "Funktion löschen" #: /tmp/fish/implicit/share/completions/functions.fish:3 -#, fuzzy msgid "Show hidden functions" -msgstr "Zeige versteckte Dateien" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:6 -#, fuzzy msgid "Test if function is defined" -msgstr "Test, ob Variable definiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:7 msgid "List the names of the functions, but not their definition" msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:8 -#, fuzzy msgid "Copy the specified function to the specified new name" -msgstr "Alle möglichen Definitionen des angegebenen Namens ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:9 -#, fuzzy msgid "Display information about the function" -msgstr "$ am Zeilenende anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:10 -#, fuzzy msgid "Print more output" -msgstr "Wortzählung ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:1 -#, fuzzy msgid "Show all files specified on the command line" -msgstr "Angegebene Datei zur aktuellen Schlüsselringliste hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:2 msgid "Kill processes, accessing the file" @@ -21534,14 +19755,12 @@ msgid "Kill only processes which have write access" msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:8 -#, fuzzy msgid "Slect a different namespace" -msgstr "Benutzerschnittstelle auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:9 -#, fuzzy msgid "Silent operation" -msgstr "Ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:10 msgid "Append the user name of the process owner to each PID" @@ -21559,9 +19778,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sshfs.fish:4 #: /tmp/fish/implicit/share/completions/sshfs.fish:8 #: /tmp/fish/implicit/share/completions/udisksctl.fish:19 -#, fuzzy msgid "Mount options" -msgstr "Einhäng-Option" +msgstr "" #: /tmp/fish/implicit/share/completions/fusermount.fish:5 msgid "Unmount" @@ -21569,23 +19787,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fusermount.fish:6 #: /tmp/fish/implicit/share/completions/gdb.fish:10 -#, fuzzy msgid "Quiet" -msgstr "Stiller Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/fusermount.fish:7 msgid "Lazy unmount" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1 -#, fuzzy msgid "Standard mode" -msgstr "Standardmodus" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:2 -#, fuzzy msgid "Place output in file" -msgstr "Ausgabe an Datei anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:3 msgid "" @@ -21595,9 +19810,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:4 -#, fuzzy msgid "Use specified version of the C++ ABI" -msgstr "Benutze angegebenen Kompressionsalgorithmus" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:5 #: /tmp/fish/implicit/share/completions/gcc.fish:481 @@ -21673,20 +19887,18 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:18 -#, fuzzy msgid "Display the version number and copyrights of the invoked GCC" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:19 msgid "In C mode, support all ISO C90 programs" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:20 -#, fuzzy msgid "" "Do not recognize \"asm\", \"inline\" or \"typeof\" as a keyword, so that " "code can use these words as identifiers" -msgstr "Schlüsselworte asm, inline oder typeof nicht erkennen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:21 #: /tmp/fish/implicit/share/completions/gcc.fish:22 @@ -21700,9 +19912,8 @@ msgid "Assert that compilation takes place in a hosted environment" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:24 -#, fuzzy msgid "Assert that compilation takes place in a freestanding environment" -msgstr "Freistehende Umgebung bestätigen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:25 msgid "Accept some non-standard constructs used in Microsoft header files" @@ -21747,9 +19958,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:37 -#, fuzzy msgid "Turn off all access checking" -msgstr "Zugriffsprüfung abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:38 msgid "" @@ -21804,9 +20014,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:48 -#, fuzzy msgid "Don’t emit code for implicit instantiations of inline templates, either" -msgstr "Keinen Code für implizite 'inline'-Vorlagen abgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:49 msgid "" @@ -21838,10 +20047,9 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:54 -#, fuzzy msgid "" "Downgrade some diagnostics about nonconformant code from errors to warnings" -msgstr "Einge Fehler zu Warnungen herabstufen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:55 msgid "Enable automatic template instantiation at link time" @@ -21860,13 +20068,10 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:58 -#, fuzzy msgid "" "Do not emit the extra code to use the routines specified in the C++ ABI for " "thread-safe initialization of local statics" msgstr "" -"Keinen Code für die threadsichere Initialisierung lokaler statischer Objekte " -"abgeben" #: /tmp/fish/implicit/share/completions/gcc.fish:59 msgid "" @@ -21882,9 +20087,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:61 -#, fuzzy msgid "Do not use weak symbol support, even if it is provided by the linker" -msgstr "Unterstützung für schwache Symbole nich verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:62 msgid "" @@ -22052,9 +20256,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:92 -#, fuzzy msgid "Warn if a \"@selector(" -msgstr "Auswahl schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:93 msgid "" @@ -22773,24 +20976,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:239 -#, fuzzy msgid "Optimize even more" -msgstr "Paketdepot optimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:240 -#, fuzzy msgid "Optimize yet more" -msgstr "Paketdepot optimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:241 -#, fuzzy msgid "Do not optimize" -msgstr "Nicht sortieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:242 -#, fuzzy msgid "Optimize for size" -msgstr "Paketdepot optimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:243 msgid "" @@ -22830,9 +21029,8 @@ msgid "Don’t pay attention to the \"inline\" keyword" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:250 -#, fuzzy msgid "Integrate all simple functions into their callers" -msgstr "readline-Funktion zum reader injizieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:251 msgid "" @@ -22993,9 +21191,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:280 -#, fuzzy msgid "Perform cross-jumping transformation" -msgstr "Inhaltsgenerierung durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:281 msgid "Attempt to transform conditional jumps into branch-less equivalents" @@ -23474,9 +21671,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:380 -#, fuzzy msgid "Pass option as an option to the preprocessor" -msgstr "Integrierten Präprozessor nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:381 msgid "Predefine name as a macro, with definition 1" @@ -23499,18 +21695,14 @@ msgid "Do not predefine any system-specific or GCC-specific macros" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:385 -#, fuzzy msgid "" "Add the directory dir to the list of directories to be searched for header " "files" msgstr "" -"Legt eine Liste von Verzeichnissen fest, die nach Bildbetrachtern und " -"Schlüsselserver-Hilfsprogrammen durchsucht werden" #: /tmp/fish/implicit/share/completions/gcc.fish:386 -#, fuzzy msgid "Write output to file" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:387 msgid "Turns on all optional warnings which are desirable for normal code" @@ -23647,9 +21839,8 @@ msgid "Specify the standard to which the code should conform" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:419 -#, fuzzy msgid "Split the include path" -msgstr "Include-Pfad" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:420 msgid "Do not search the standard system directories for header files" @@ -23709,9 +21900,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:432 -#, fuzzy msgid "Accept universal character names in identifiers" -msgstr "In Bezeichnern $ akzeptieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:433 msgid "" @@ -23770,9 +21960,8 @@ msgid "Inhibit generation of linemarkers in the output from the preprocessor" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:445 -#, fuzzy msgid "Do not discard comments" -msgstr "Keinen Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:446 msgid "Do not discard comments, including during macro expansion" @@ -23785,9 +21974,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:448 -#, fuzzy msgid "Process trigraph sequences" -msgstr "at-Warteschlange nur einmal verarbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:449 msgid "" @@ -23941,9 +22129,8 @@ msgid "Compile code for little endian mode" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:486 -#, fuzzy msgid "Compile code for big endian mode" -msgstr "Compiler-Debug-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:487 msgid "Prepend the name of the cpu to all public symbol names" @@ -23963,9 +22150,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:493 -#, fuzzy msgid "Generate code for the specified ABI" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:494 msgid "" @@ -24164,9 +22350,8 @@ msgid "Change only the low 8 bits of the stack pointer" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:532 -#, fuzzy msgid "Assume int to be 8 bit integer" -msgstr "linke Ganzzahl von rechter verschieden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:533 #: /tmp/fish/implicit/share/completions/gcc.fish:818 @@ -24202,9 +22387,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:539 -#, fuzzy msgid "Assume that the program is arbitrarily large" -msgstr "Datentyp für Binärdateien unterstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:540 #: /tmp/fish/implicit/share/completions/gcc.fish:909 @@ -24228,9 +22412,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:547 #: /tmp/fish/implicit/share/completions/gcc.fish:743 #: /tmp/fish/implicit/share/completions/gcc.fish:744 -#, fuzzy msgid "Generate code for the specified architecture" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:548 #: /tmp/fish/implicit/share/completions/gcc.fish:549 @@ -24404,9 +22587,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:591 -#, fuzzy msgid "Produce a Mach-o bundle format file" -msgstr "Beispiel-Konfigurationsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:592 msgid "" @@ -24643,38 +22825,32 @@ msgid "Change ABI to use double word insns" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:698 -#, fuzzy msgid "Do not use double word instructions" -msgstr "Keine eingebauten Funktionen verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:699 -#, fuzzy msgid "Use floating point double instructions" -msgstr "Fließkomma-Ausnahmefehler" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:700 -#, fuzzy msgid "Do not use floating point double instructions" -msgstr "Keine eingebauten Funktionen verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:701 -#, fuzzy msgid "Use media instructions" -msgstr "Illegale Instruktion" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:702 -#, fuzzy msgid "Do not use media instructions" -msgstr "Keine eingebauten Funktionen verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:703 msgid "Use multiply and add/subtract instructions" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:704 -#, fuzzy msgid "Do not use multiply and add/subtract instructions" -msgstr "Keine eingebauten Funktionen verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:705 msgid "" @@ -24737,48 +22913,40 @@ msgid "Use all eight media accumulator registers" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:717 -#, fuzzy msgid "Pack VLIW instructions" -msgstr "Illegale Instruktion" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:718 -#, fuzzy msgid "Do not pack VLIW instructions" -msgstr "Überprüfungsstatus von Schlüsselsignaturen nicht zwischenspeichern" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:719 msgid "Do not mark ABI switches in e_flags" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:720 -#, fuzzy msgid "Enable the use of conditional-move instructions (default)" -msgstr "Benutzung des Veränderungserkennungscodes deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:721 -#, fuzzy msgid "Disable the use of conditional-move instructions" -msgstr "Benutzung des Veränderungserkennungscodes deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:722 -#, fuzzy msgid "Enable the use of conditional set instructions (default)" -msgstr "Benutzung des Veränderungserkennungscodes deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:723 -#, fuzzy msgid "Disable the use of conditional set instructions" -msgstr "Benutzung des Veränderungserkennungscodes deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:724 -#, fuzzy msgid "Enable the use of conditional execution (default)" -msgstr "Benutzung des Veränderungserkennungscodes deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:725 -#, fuzzy msgid "Disable the use of conditional execution" -msgstr "Benutzung des Veränderungserkennungscodes deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:726 msgid "Run a pass to pack branches into VLIW instructions (default)" @@ -24802,9 +22970,8 @@ msgid "Enable nested conditional execution optimizations (default)" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:731 -#, fuzzy msgid "Disable nested conditional execution optimizations" -msgstr "Benutzung des Veränderungserkennungscodes deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:732 msgid "" @@ -24838,9 +23005,8 @@ msgid "Generate code for the H8/300H" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:738 -#, fuzzy msgid "Generate code for the H8S" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:739 msgid "Generate code for the H8S and H8/300H in the normal mode" @@ -24928,14 +23094,12 @@ msgid "Generate the predefine, \"_SIO\", for server IO" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:764 -#, fuzzy msgid "Use GNU ld specific options" -msgstr "Befehlsspezifische Erweiterungen bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:765 -#, fuzzy msgid "Use HP ld specific options" -msgstr "Befehlsspezifische Erweiterungen bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:766 msgid "Generate code that uses long call sequences" @@ -24977,9 +23141,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:776 #: /tmp/fish/implicit/share/completions/gcc.fish:777 -#, fuzzy msgid "A deprecated synonym for -mtune" -msgstr "Synonym für -i" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:778 #: /tmp/fish/implicit/share/completions/gcc.fish:779 @@ -25151,16 +23314,14 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:828 -#, fuzzy msgid "Generate code for a big endian target" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:829 #: /tmp/fish/implicit/share/completions/gcc.fish:939 #: /tmp/fish/implicit/share/completions/gcc.fish:940 -#, fuzzy msgid "Generate code for a little endian target" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:830 #: /tmp/fish/implicit/share/completions/gcc.fish:831 @@ -25199,9 +23360,8 @@ msgid "Generate code that uses a single constant global pointer value" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:842 -#, fuzzy msgid "Generate code that is self-relocatable" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:843 msgid "" @@ -25284,19 +23444,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:866 -#, fuzzy msgid "Generate code for the M32R/2" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:867 -#, fuzzy msgid "Generate code for the M32R/X" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:868 -#, fuzzy msgid "Generate code for the M32R" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:869 msgid "" @@ -25384,39 +23541,33 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:885 #: /tmp/fish/implicit/share/completions/gcc.fish:886 -#, fuzzy msgid "Generate output for a 68000" -msgstr "Punktierte Ausgabe für Pakete erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:887 #: /tmp/fish/implicit/share/completions/gcc.fish:888 -#, fuzzy msgid "Generate output for a 68020" -msgstr "Punktierte Ausgabe für Pakete erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:889 msgid "Generate output containing 68881 instructions for floating point" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:890 -#, fuzzy msgid "Generate output for a 68030" -msgstr "Punktierte Ausgabe für Pakete erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:891 -#, fuzzy msgid "Generate output for a 68040" -msgstr "Punktierte Ausgabe für Pakete erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:892 -#, fuzzy msgid "Generate output for a 68060" -msgstr "Punktierte Ausgabe für Pakete erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:893 -#, fuzzy msgid "Generate output for a CPU32" -msgstr "Punktierte Ausgabe für Pakete erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:894 msgid "Generate output for a 520X \"coldfire\" family cpu" @@ -25436,14 +23587,12 @@ msgid "Consider type \"int\" to be 16 bits wide, like \"short int\"" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:899 -#, fuzzy msgid "Do not use the bit-field instructions" -msgstr "Keine eingebauten Funktionen verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:900 -#, fuzzy msgid "Do use the bit-field instructions" -msgstr "Keine eingebauten Funktionen verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:901 msgid "" @@ -25492,21 +23641,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:912 #: /tmp/fish/implicit/share/completions/gcc.fish:913 -#, fuzzy msgid "Generate output for a 68HC11" -msgstr "Punktierte Ausgabe für Pakete erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:914 #: /tmp/fish/implicit/share/completions/gcc.fish:915 -#, fuzzy msgid "Generate output for a 68HC12" -msgstr "Punktierte Ausgabe für Pakete erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:916 #: /tmp/fish/implicit/share/completions/gcc.fish:917 -#, fuzzy msgid "Generate output for a 68HCS12" -msgstr "Punktierte Ausgabe für Pakete erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:918 msgid "" @@ -25551,9 +23697,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:931 #: /tmp/fish/implicit/share/completions/gcc.fish:932 -#, fuzzy msgid "Always treat bit-fields as int-sized" -msgstr "Alle Bitfielder sind nicht vorzeichenbehaftet" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:933 #: /tmp/fish/implicit/share/completions/gcc.fish:934 @@ -25562,9 +23707,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:935 #: /tmp/fish/implicit/share/completions/gcc.fish:936 -#, fuzzy msgid "Emit callgraph information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:937 #: /tmp/fish/implicit/share/completions/gcc.fish:938 @@ -25577,9 +23721,8 @@ msgid "Generate code for the 210 processor" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:943 -#, fuzzy msgid "Generate big-endian code" -msgstr "Ein neues Schlüsselpaar erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:944 msgid "Generate little-endian code" @@ -25669,9 +23812,8 @@ msgid "Use floating-point coprocessor instructions" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:970 -#, fuzzy msgid "Do not use floating-point coprocessor instructions" -msgstr "Keinen Code für abweichende 'inline'-Funktionen abgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:971 msgid "" @@ -25767,9 +23909,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:998 #: /tmp/fish/implicit/share/completions/gcc.fish:999 -#, fuzzy msgid "Disable (do not disable) use of the \"jal\" instruction" -msgstr "Benutzung des Veränderungserkennungscodes deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1000 #: /tmp/fish/implicit/share/completions/gcc.fish:1001 @@ -25973,9 +24114,8 @@ msgid "Use hardware FPP floating point" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1055 -#, fuzzy msgid "Do not use hardware floating point" -msgstr "Keine Dateinamenvervollständigung benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1056 msgid "Return floating-point results in ac0 (fr0 in Unix assembler syntax)" @@ -26030,9 +24170,8 @@ msgid "Use \"abshi2\" pattern" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1072 -#, fuzzy msgid "Do not use \"abshi2\" pattern" -msgstr "Erweitern Sie das Muster nicht" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1073 msgid "Pretend that branches are expensive" @@ -26257,9 +24396,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1191 #: /tmp/fish/implicit/share/completions/gcc.fish:1195 #: /tmp/fish/implicit/share/completions/gcc.fish:1196 -#, fuzzy msgid "On System V" -msgstr "Subsystem" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1146 #: /tmp/fish/implicit/share/completions/gcc.fish:1147 @@ -26473,29 +24611,24 @@ msgid "These arguments always have to be used in conjunction" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1231 -#, fuzzy msgid "Generate code for the SH1" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1232 -#, fuzzy msgid "Generate code for the SH2" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1233 -#, fuzzy msgid "Generate code for the SH2e" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1234 -#, fuzzy msgid "Generate code for the SH3" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1235 -#, fuzzy msgid "Generate code for the SH3e" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1236 msgid "Generate code for the SH4 without a floating-point unit" @@ -26514,9 +24647,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1239 -#, fuzzy msgid "Generate code for the SH4" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1240 msgid "" @@ -26537,9 +24669,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1243 -#, fuzzy msgid "Generate code for the SH4a" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1244 msgid "" @@ -26563,9 +24694,8 @@ msgid "Use 32-bit offsets in \"switch\" tables" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1250 -#, fuzzy msgid "Enable the use of the instruction \"fmovd\"" -msgstr "Benutzung des Veränderungserkennungscodes deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1251 #: /tmp/fish/implicit/share/completions/gcc.fish:1252 @@ -26753,18 +24883,16 @@ msgid "This is a synonym for -pthreads" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1300 -#, fuzzy msgid "Create a shared object" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1301 msgid "Identify the versions of each tool used by the compiler, in a \"" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1302 -#, fuzzy msgid "Refrain from adding \"" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1304 #: /tmp/fish/implicit/share/completions/gcc.fish:1305 @@ -26819,10 +24947,9 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1320 #: /tmp/fish/implicit/share/completions/gcc.fish:1321 -#, fuzzy msgid "" "Enable (disable) the use of the single instruction repeat instruction RPTS" -msgstr "Benutzung des Veränderungserkennungscodes deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1322 #: /tmp/fish/implicit/share/completions/gcc.fish:1323 @@ -26955,9 +25082,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1356 #: /tmp/fish/implicit/share/completions/gcc.fish:1357 -#, fuzzy msgid "Control the treatment of literal pools" -msgstr "Sparse-Dateien bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1358 #: /tmp/fish/implicit/share/completions/gcc.fish:1359 @@ -27045,9 +25171,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1376 -#, fuzzy msgid "Ignore the #ident directive" -msgstr "Nullblock im Archiv ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1377 msgid "Don’t output a \"" @@ -27155,9 +25280,8 @@ msgid "List all options, with brief explanations" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:2 -#, fuzzy msgid "Read symbol table from file file" -msgstr "Job aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:3 msgid "Enable writing into executable and core files" @@ -27178,24 +25302,21 @@ msgid "Use file file as a core dump to examine" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:7 -#, fuzzy msgid "Execute GDB commands from file file" -msgstr "Befehl ausführen, als ob es Teil von .wgetrc wäre" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:8 msgid "Add directory to the path to search for source files" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:9 -#, fuzzy msgid "Do not execute commands from any .gdbinit files" -msgstr "Keine Befehle ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:11 #: /tmp/fish/implicit/share/completions/root.fish:1 -#, fuzzy msgid "Run in batch mode" -msgstr "Im Dummy-Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:12 msgid "" @@ -27226,66 +25347,56 @@ msgid "Run GDB using a text (console) user interface" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:1 -#, fuzzy msgid "Print usage informations and quit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:2 -#, fuzzy msgid "Print the version and quit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:3 msgid "Use URL as the remote source for gems" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:4 -#, fuzzy msgid "Use the given HTTP proxy for remote operations" -msgstr "root-Verzeichnis für rpm-Operationen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:5 -#, fuzzy msgid "Use no HTTP proxy for remote operations" -msgstr "root-Verzeichnis für rpm-Operationen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:6 msgid "Get help on this command" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:7 -#, fuzzy msgid "Set the verbose level of output" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:8 -#, fuzzy msgid "Use this config file instead of default" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:9 msgid "Show stack backtrace on errors" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:10 -#, fuzzy msgid "Turn on Ruby debugging" -msgstr "Entfernung der Zusatzinformationen abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:11 -#, fuzzy msgid "Add a trusted certificate" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:12 -#, fuzzy msgid "List trusted certificates" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:13 -#, fuzzy msgid "Remove trusted certificates containing STRING" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:14 msgid "Build private key and self-signed certificate for EMAIL_ADDR" @@ -27296,9 +25407,8 @@ msgid "Certificate for --sign command" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:16 -#, fuzzy msgid "Private key for --sign command" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:17 msgid "Sign a certificate with my key and certificate" @@ -27309,33 +25419,28 @@ msgid "Verify gem file against its internal checksum" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:19 -#, fuzzy msgid "Report 'unmanaged' or rogue files in the gem repository" -msgstr "Ein oder mehrere Dateien/Verzeichnisse aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:20 msgid "Run unit tests for gem" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:21 -#, fuzzy msgid "Specify version for which to run unit tests" -msgstr "Das Paketdepotverzeichnis angeben, in dem gearbeitet wird" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:22 -#, fuzzy msgid "Don't really cleanup" -msgstr "Nicht wirklich deinstallieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:23 -#, fuzzy msgid "List the files inside a Gem" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:24 -#, fuzzy msgid "Specify version for gem to view" -msgstr "Ziel-E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:25 msgid "Search for gems under specific paths" @@ -27347,28 +25452,24 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:27 #: /tmp/fish/implicit/share/completions/gem.fish:82 -#, fuzzy msgid "Specify version of gem to uninstall" -msgstr "Liste zu installierender Pakete" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:28 -#, fuzzy msgid "Include reverse dependencies in the output" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:29 -#, fuzzy msgid "Don't include reverse dependencies in the output" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:30 msgid "Pipe Format (name --version ver)" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:31 -#, fuzzy msgid "Specify version of gem to install" -msgstr "Liste zu installierender Pakete" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:32 #: /tmp/fish/implicit/share/completions/gem.fish:51 @@ -27421,51 +25522,43 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:40 #: /tmp/fish/implicit/share/completions/gem.fish:89 -#, fuzzy msgid "Force gem to install, bypassing dependency checks" -msgstr "Keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:41 #: /tmp/fish/implicit/share/completions/gem.fish:90 -#, fuzzy msgid "Don't force gem to install, bypassing dependency checks" -msgstr "Keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:42 #: /tmp/fish/implicit/share/completions/gem.fish:91 -#, fuzzy msgid "Run unit tests prior to installation" -msgstr "Vor der Installation nicht auf ausreichenden Plattenplatz prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:43 #: /tmp/fish/implicit/share/completions/gem.fish:92 -#, fuzzy msgid "Don't run unit tests prior to installation" -msgstr "Vor der Installation nicht auf ausreichenden Plattenplatz prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:44 #: /tmp/fish/implicit/share/completions/gem.fish:93 -#, fuzzy msgid "Use bin wrappers for executables" -msgstr "Datei ist ausführbar" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:45 #: /tmp/fish/implicit/share/completions/gem.fish:94 -#, fuzzy msgid "Don't use bin wrappers for executables" -msgstr "Skripte nicht ausführbar machen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:46 #: /tmp/fish/implicit/share/completions/gem.fish:95 -#, fuzzy msgid "Specify gem trust policy" -msgstr "Vertrauensmodell angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:47 #: /tmp/fish/implicit/share/completions/gem.fish:96 -#, fuzzy msgid "Do not install any required dependent gems" -msgstr "Nicht automatisch Abhängigkeiten erfüllen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:48 #: /tmp/fish/implicit/share/completions/gem.fish:97 @@ -27475,25 +25568,22 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:49 #: /tmp/fish/implicit/share/completions/gem.fish:55 #: /tmp/fish/implicit/share/completions/gem.fish:66 -#, fuzzy msgid "Display detailed information of gem(s)" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:50 #: /tmp/fish/implicit/share/completions/gem.fish:56 #: /tmp/fish/implicit/share/completions/gem.fish:67 -#, fuzzy msgid "Don't display detailed information of gem(s)" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:54 msgid "Name of gem(s) to query on matches the provided REGEXP" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:60 -#, fuzzy msgid "Generate RDoc/RI documentation for all installed gems" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:61 msgid "Include RDoc generated documents" @@ -27512,38 +25602,32 @@ msgid "Don't include RI generated documents" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:65 -#, fuzzy msgid "Specify version of gem to rdoc" -msgstr "Liste zu installierender Pakete" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:71 -#, fuzzy msgid "Specify version of gem to examine" -msgstr "Ziel-E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:75 msgid "Output specifications for all versions of the gem" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:76 -#, fuzzy msgid "Uninstall all matching versions" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:77 -#, fuzzy msgid "Don't uninstall all matching versions" -msgstr "Nicht wirklich deinstallieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:78 -#, fuzzy msgid "Ignore dependency requirements while uninstalling" -msgstr "Vor dem Deinstallieren der Pakete keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:79 -#, fuzzy msgid "Don't ignore dependency requirements while uninstalling" -msgstr "Vor dem Deinstallieren der Pakete keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:80 msgid "Uninstall applicable executables without confirmation" @@ -27554,18 +25638,16 @@ msgid "Don't uninstall applicable executables without confirmation" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:83 -#, fuzzy msgid "Specify version of gem to unpack" -msgstr "Liste zu installierender Pakete" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:98 msgid "Update the RubyGems system software" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:1 -#, fuzzy msgid "Display the manual of a git command" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:3 msgid "Run as if git was started in this directory" @@ -27580,19 +25662,16 @@ msgid "Print the path to the html documentation" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:7 -#, fuzzy msgid "Print the path to the man documentation" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:8 -#, fuzzy msgid "Print the path to the info documentation" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:9 -#, fuzzy msgid "Pipe output into a pager" -msgstr "Ausgabe an Datei anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:10 #: /tmp/fish/implicit/share/completions/journalctl.fish:6 @@ -27601,29 +25680,24 @@ msgstr "Ausgabe an Datei anhängen" #: /tmp/fish/implicit/share/completions/systemctl.fish:41 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:5 #: /tmp/fish/implicit/share/completions/timedatectl.fish:9 -#, fuzzy msgid "Do not pipe output into a pager" -msgstr "Konnte Shell nicht wieder in Vordergrund zurückholen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:11 -#, fuzzy msgid "Set the path to the repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:12 -#, fuzzy msgid "Set the path to the working tree" -msgstr "Nicht aufgezeichnete Änderungen in der Arbeitskopie anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:13 -#, fuzzy msgid "Set the namespace" -msgstr "Volume-Namen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:14 -#, fuzzy msgid "Treat the repository as bare" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:15 msgid "Do not use replacement refs to replace git objects" @@ -27642,14 +25716,12 @@ msgid "Don't treat pathspecs as globs" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:19 -#, fuzzy msgid "Match pathspecs case-insensitively" -msgstr "Groß-/Klein-Schreibung nicht unterscheiden" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:20 -#, fuzzy msgid "Download objects and refs from another repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:21 msgid "Remote" @@ -27680,9 +25752,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:276 #: /tmp/fish/implicit/share/completions/mdadm.fish:12 #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:1 -#, fuzzy msgid "Be quiet" -msgstr "Erzwungene Beendigung" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:24 #: /tmp/fish/implicit/share/completions/git.fish:41 @@ -27694,9 +25765,8 @@ msgstr "Erzwungene Beendigung" #: /tmp/fish/implicit/share/completions/prt-get.fish:53 #: /tmp/fish/implicit/share/completions/prt-get.fish:111 #: /tmp/fish/implicit/share/completions/xz.fish:32 -#, fuzzy msgid "Be verbose" -msgstr "Nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:25 #: /tmp/fish/implicit/share/completions/git.fish:215 @@ -27766,44 +25836,36 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:40 -#, fuzzy msgid "Manage set of tracked repositories" -msgstr "Einträge in .cvspass für entferntes Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:42 -#, fuzzy msgid "Adds a new remote" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:43 -#, fuzzy msgid "Removes a remote" -msgstr "Schlüssel entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:44 -#, fuzzy msgid "Shows a remote" -msgstr "Arp-Einträge anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:45 -#, fuzzy msgid "Deletes all stale tracking branches" -msgstr "Nach Fertigstellung Logdatei löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:46 -#, fuzzy msgid "Fetches updates" -msgstr "Quellpakete abrufen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:47 -#, fuzzy msgid "Renames a remote" -msgstr "Modul umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:48 -#, fuzzy msgid "Sets the default branch for a remote" -msgstr "Standardaktion für mime-Typ ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:49 msgid "Changes URLs for a remote" @@ -27869,23 +25931,20 @@ msgid "Generate a diffstat, showing the number of changed lines of each file" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:66 -#, fuzzy msgid "Shows the commits on branches" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:67 msgid "Rev" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:68 -#, fuzzy msgid "Add file contents to the index" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:69 -#, fuzzy msgid "Don't actually add the file(s)" -msgstr "Aktion nicht tatsächlich ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:71 msgid "Allow adding otherwise ignored files" @@ -27893,23 +25952,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:72 #: /tmp/fish/implicit/share/completions/git.fish:259 -#, fuzzy msgid "Interactive mode" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:73 msgid "Interactively choose hunks to stage" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:74 -#, fuzzy msgid "Manually create a patch" -msgstr "ARP-Adresse manuell erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:75 -#, fuzzy msgid "Only match tracked files" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:76 msgid "Match files both in working tree and index" @@ -27938,14 +25994,12 @@ msgid "Checkout and switch to a branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:82 -#, fuzzy msgid "Local Branch" -msgstr "Logisches Und" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:83 -#, fuzzy msgid "Remote Branch" -msgstr "Eine Platte umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:84 #: /tmp/fish/implicit/share/completions/git.fish:245 @@ -27957,14 +26011,12 @@ msgid "Track a new branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:90 -#, fuzzy msgid "Keep staged changes" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:91 -#, fuzzy msgid "Keep unmerged changes" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:92 msgid "Apply a patch on a git index file and a working tree" @@ -27979,29 +26031,24 @@ msgid "Find the change that introduced a bug by binary search" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:95 -#, fuzzy msgid "List, create, or delete branches" -msgstr "Keine komprimierten Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:97 -#, fuzzy msgid "Delete branch" -msgstr "Aus Archiv löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:98 -#, fuzzy msgid "Force deletion of branch" -msgstr "Löschung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:99 -#, fuzzy msgid "Rename branch" -msgstr "Eine Platte umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:100 -#, fuzzy msgid "Force renaming branch" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:101 msgid "Lists both local and remote branches" @@ -28012,9 +26059,8 @@ msgid "Track remote branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:103 -#, fuzzy msgid "Do not track remote branch" -msgstr "Entfernten Befehl nicht ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:104 msgid "Set remote branch to track" @@ -28054,9 +26100,8 @@ msgid "Fast-forward if possible" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:115 -#, fuzzy msgid "Clone a repository into a new directory" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:116 msgid "Copy files instead of using hardlinks" @@ -28067,52 +26112,44 @@ msgid "Operate quietly and do not report progress" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:118 -#, fuzzy msgid "Provide more information on what is going on" -msgstr "Während der Verarbeitung zusätzliche Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:119 msgid "No checkout of HEAD is performed after the clone is complete" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:120 -#, fuzzy msgid "Make a bare Git repository" -msgstr "Eine lokale Kopie eines weiteren Paketdepots erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:121 -#, fuzzy msgid "Set up a mirror of the source repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:122 -#, fuzzy msgid "Use a specific name of the remote instead of the default" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:123 msgid "Use a specific branch instead of the one used by the cloned repository" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:124 -#, fuzzy msgid "Truncate the history to a specified number of revisions" -msgstr "Priorität zunächst um angegebene Zahl erhöhen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:125 -#, fuzzy msgid "Initialize all submodules within the cloned repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:126 -#, fuzzy msgid "Record changes to the repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:127 -#, fuzzy msgid "Amend the log message of the last commit" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:128 msgid "Fixup commit to be used with rebase --autosquash" @@ -28123,14 +26160,12 @@ msgid "Show changes between commits, commit and working tree, etc" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:131 -#, fuzzy msgid "Show diff of changes in the index" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:132 -#, fuzzy msgid "Compare two paths on the filesystem" -msgstr "Archiv und Dateisystem vergleichen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:134 msgid "Open diffs in a visual tool" @@ -28141,9 +26176,8 @@ msgid "Visually show diff of changes in the index" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:138 -#, fuzzy msgid "Print lines matching a pattern" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:139 msgid "Create an empty git repository or reinitialize an existing one" @@ -28162,14 +26196,12 @@ msgid "Continue listing file history beyond renames" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:144 -#, fuzzy msgid "Don't print ref names" -msgstr "Kopfzeile nicht ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:145 -#, fuzzy msgid "Print out ref names" -msgstr "Kernel-Name ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:146 msgid "Print ref name by which each commit was reached" @@ -28180,9 +26212,8 @@ msgid "Limit the number of commits before starting to show the commit output" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:148 -#, fuzzy msgid "Skip given number of commits" -msgstr "Inode-Nummer der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:149 #: /tmp/fish/implicit/share/completions/git.fish:150 @@ -28191,9 +26222,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:151 #: /tmp/fish/implicit/share/completions/git.fish:152 -#, fuzzy msgid "Show commits older than specified date" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:153 msgid "Limit commits from given author" @@ -28208,9 +26238,8 @@ msgid "Limit commits to ones with reflog entries matching given pattern" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:156 -#, fuzzy msgid "Limit commits with message that match given pattern" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:157 msgid "Limit commits to ones that match all given --grep" @@ -28221,23 +26250,20 @@ msgid "Limit commits to ones with message that don't match --grep" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:159 -#, fuzzy msgid "Case insensitive match" -msgstr "Groß-/Klein-Schreibung nicht unterscheiden" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:160 msgid "Patterns are basic regular expressions (default)" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:161 -#, fuzzy msgid "Patterns are extended regular expressions" -msgstr "Muster ist ein erweiterter regulärer Ausdruck" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:162 -#, fuzzy msgid "Patterns are fixed strings" -msgstr "Muster ist eine feststehende Zeichenkette" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:163 msgid "Patterns are Perl-compatible regular expressions" @@ -28248,9 +26274,8 @@ msgid "Stop when given path disappears from tree" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:165 -#, fuzzy msgid "Print only merge commits" -msgstr "Anzahl Zeilenendzeichen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:166 msgid "Don't print commits with more than one parent" @@ -28310,9 +26335,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:178 -#, fuzzy msgid "Do not include refs matching given glob pattern" -msgstr "Module einfügen, die den angegebenen Mustern entsprechen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:179 msgid "" @@ -28321,14 +26345,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:180 -#, fuzzy msgid "Ignore invalid object names" -msgstr "Umgebungsvariablen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:181 -#, fuzzy msgid "Read commits from stdin" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:182 msgid "Mark equivalent commits with = and inequivalent with +" @@ -28347,9 +26369,8 @@ msgid "Autocommit the merge" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:188 -#, fuzzy msgid "Don't autocommit the merge" -msgstr "Keinen Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:189 msgid "Edit auto-generated merge message" @@ -28380,9 +26401,8 @@ msgid "Don't populate the log message with one-line descriptions" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:196 -#, fuzzy msgid "Show diffstat of the merge" -msgstr "Änderungsdatum anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:197 msgid "Don't show diffstat of the merge" @@ -28393,9 +26413,8 @@ msgid "Squash changes from other branch as a single commit" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:199 -#, fuzzy msgid "Don't squash changes" -msgstr "Änderungen nicht zusammenfassen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:202 #: /tmp/fish/implicit/share/completions/git.fish:219 @@ -28408,23 +26427,20 @@ msgid "Force no progress status" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:204 -#, fuzzy msgid "Set the commit message" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:205 -#, fuzzy msgid "Abort the current conflict resolution process" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:206 msgid "Run merge conflict resolution tools to resolve merge conflicts" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:207 -#, fuzzy msgid "Use specific merge resolution program" -msgstr "Angegebenen Message-Digest-Algorithmus verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:209 msgid "Move or rename a file, a directory, or a symlink" @@ -28439,26 +26455,22 @@ msgid "Fetch from and merge with another repository or a local branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:214 -#, fuzzy msgid "Fetch all remotes" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:217 -#, fuzzy msgid "Keep downloaded pack" -msgstr "Herunterladen von Paketen deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:218 -#, fuzzy msgid "Disable automatic tag following" -msgstr "Automatische Pufferzuordnung deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:220 #: /tmp/fish/implicit/share/completions/git.fish:223 #: /tmp/fish/implicit/share/completions/git.fish:243 -#, fuzzy msgid "Remote alias" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:222 msgid "Update remote refs along with associated objects" @@ -28489,9 +26501,8 @@ msgid "Push all refs under refs/" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:231 -#, fuzzy msgid "Delete all listed refs from the remote repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:232 msgid "Push all refs under refs/tags" @@ -28506,9 +26517,8 @@ msgid "Do everything except actually send the updates" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:235 -#, fuzzy msgid "Produce machine-readable output" -msgstr "Audio-Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:236 msgid "Force update of remote refs" @@ -28528,14 +26538,12 @@ msgid "Forward-port local commits to the updated upstream head" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:247 -#, fuzzy msgid "Restart the rebasing process" -msgstr "Automatische Zeilenende-Verarbeitung" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:248 -#, fuzzy msgid "Abort the rebase operation" -msgstr "Simulation durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:249 msgid "Keep the commits that don't cahnge anything" @@ -28550,9 +26558,8 @@ msgid "Use merging strategies to rebase" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:254 -#, fuzzy msgid "Show diffstat of the rebase" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:255 msgid "Don't show diffstat of the rebase" @@ -28567,18 +26574,16 @@ msgid "Don't allow the pre-rebase hook to run" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:258 -#, fuzzy msgid "Force the rebase" -msgstr "Ja erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:260 msgid "Try to recreate merges" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:261 -#, fuzzy msgid "Rebase all reachable commits" -msgstr "Nach Fertigstellung Logdatei löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:262 msgid "Automatic squashing" @@ -28589,19 +26594,16 @@ msgid "No automatic squashing" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:264 -#, fuzzy msgid "No fast-forward" -msgstr "Datum in Zukunft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:265 -#, fuzzy msgid "Reset current HEAD to the specified state" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:266 -#, fuzzy msgid "Reset files in working directory" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:270 msgid "Reflog" @@ -28612,14 +26614,12 @@ msgid "Revert an existing commit" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:272 -#, fuzzy msgid "Remove files from the working tree and from the index" -msgstr "Dateien nach Archivierung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:273 -#, fuzzy msgid "Keep local copies" -msgstr "Lokalen Zwischenspeicher und Pakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:274 msgid "Exit with a zero status even if no files matched" @@ -28643,9 +26643,8 @@ msgid "Dry run" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:279 -#, fuzzy msgid "Show the working tree status" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:280 msgid "Give the output in the short-format" @@ -28668,9 +26667,8 @@ msgid "The untracked files handling mode" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:285 -#, fuzzy msgid "Ignore changes to submodules" -msgstr "Änderungen aufgrund von Tabulatorausweitung ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:286 msgid "Create, list, delete or verify a tag object signed with GPG" @@ -28681,14 +26679,12 @@ msgid "Make an unsigned, annotated tag object" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:289 -#, fuzzy msgid "Make a GPG-signed tag" -msgstr "Signatur erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:290 -#, fuzzy msgid "Remove a tag" -msgstr "Schlüssel entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:291 msgid "Verify signature of a tag" @@ -28703,14 +26699,12 @@ msgid "List tags that contain a commit" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:297 -#, fuzzy msgid "Stash away changes" -msgstr "Lokale Änderungen patchen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:298 -#, fuzzy msgid "List stashes" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:299 msgid "Show the changes recorded in the stash" @@ -28725,47 +26719,40 @@ msgid "Apply a single stashed state" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:302 -#, fuzzy msgid "Remove all stashed states" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:303 -#, fuzzy msgid "Remove a single stashed state from the stash list" -msgstr "Angegebenen Eintrag aus der --group-Liste entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:304 -#, fuzzy msgid "Create a stash" -msgstr "Archiv erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:305 msgid "Save a new stash" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:306 -#, fuzzy msgid "Create a new branch from a stash" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:307 -#, fuzzy msgid "Set and read git configuration variables" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:308 -#, fuzzy msgid "Generate patch series to send upstream" -msgstr "Paket aus Quelle generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:310 msgid "Generate plain patches without diffstat" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:311 -#, fuzzy msgid "Suppress diff output" -msgstr "Informationelle Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:312 msgid "Spend more time to create smaller diffs" @@ -28788,18 +26775,16 @@ msgid "Show number of added/deleted lines in decimal notation" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:317 -#, fuzzy msgid "Output only last line of the stat" -msgstr "Nur die ersten von gleichen Zeilen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:318 msgid "Output a condensed summary of extended header information" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:319 -#, fuzzy msgid "Disable rename detection" -msgstr "Nicht auf die Veränderungszeiten der Dateien vertrauen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:320 msgid "Show full blob object names" @@ -28814,24 +26799,20 @@ msgid "Also inspect unmodified files as source for a copy" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:324 -#, fuzzy msgid "Ignore changes in whitespace at EOL" -msgstr "Änderung in der Anzahl von Worttrennern ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:325 -#, fuzzy msgid "Ignore changes in amount of whitespace" -msgstr "Änderung in der Anzahl von Worttrennern ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:326 -#, fuzzy msgid "Ignore whitespace when comparing lines" -msgstr "Groß-/Kleinschreibung beim Dateinamenvergleich ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:328 -#, fuzzy msgid "Show whole surrounding functions of changes" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:329 msgid "Allow an external diff helper to be executed" @@ -28868,9 +26849,8 @@ msgid "Initialize, update or inspect submodules" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:337 -#, fuzzy msgid "Add a submodule" -msgstr "Einem Modul eine symbolische Markierung hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:338 msgid "Show submodule status" @@ -28882,28 +26862,24 @@ msgid "Initialize all submodules" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:340 -#, fuzzy msgid "Update all submodules" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:341 -#, fuzzy msgid "Show commit summary" -msgstr "Zusammenfassung ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:342 -#, fuzzy msgid "Run command on each submodule" -msgstr "Befehle aus dem Cache starten" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:343 msgid "Sync submodules' URL with .gitmodules" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:344 -#, fuzzy msgid "Only print error messages" -msgstr "Nur Anzahl von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:346 msgid "Checkout the superproject's commit on a detached HEAD in the submodule" @@ -28939,9 +26915,8 @@ msgid "Also add ignored submodule path" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:353 -#, fuzzy msgid "Remove even with local changes" -msgstr "Lokale Änderungen patchen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:354 msgid "Use the commit stored in the index" @@ -28952,23 +26927,20 @@ msgid "Compare the commit in the index with submodule HEAD" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:356 -#, fuzzy msgid "Traverse submodules recursively" -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:357 msgid "Show logs with difference each commit introduces" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:358 -#, fuzzy msgid "Remove untracked files from the working tree" -msgstr "Dateien nach Archivierung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:359 -#, fuzzy msgid "Force run" -msgstr "Erzwungene Beendigung" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:360 msgid "Show what would be done and clean files interactively" @@ -28991,46 +26963,40 @@ msgid "Remove ignored files, as well" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:365 -#, fuzzy msgid "Remove only ignored files" -msgstr "Aktualisieren: nur geänderte Dateien" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:366 -#, fuzzy msgid "Show what revision and author last modified each line of a file" -msgstr "Letzte Revision anzeigen, bei der jede Zeile verändert wurde" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:367 msgid "Show blank SHA-1 for boundary commits" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:368 -#, fuzzy msgid "Do not treat root commits as boundaries" -msgstr "Entfernten Befehl nicht ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:369 msgid "Include additional statistics" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:370 -#, fuzzy msgid "Annotate only the given line range" -msgstr "Kommentiere jede Zeile" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:371 msgid "Show long rev" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:372 -#, fuzzy msgid "Show raw timestamp" -msgstr "Zeittyp anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:373 -#, fuzzy msgid "Use revisions from named file instead of calling rev-list" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:374 msgid "Walk history forward instead of backward" @@ -29041,23 +27007,20 @@ msgid "Show in a format designed for machine consumption" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:376 -#, fuzzy msgid "Show the porcelain format" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:377 -#, fuzzy msgid "Show the result incrementally" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:378 msgid "Instead of working tree, use the contents of the named file" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:379 -#, fuzzy msgid "Specifies the format used to output dates" -msgstr "Zeitablauf für Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:380 msgid "Detect moved or copied lines within a file" @@ -29074,57 +27037,48 @@ msgid "Use the same output mode as git-annotate" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:384 -#, fuzzy msgid "Show the filename in the original commit" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:385 msgid "Show the line number in the original commit" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:386 -#, fuzzy msgid "Suppress the author name and timestamp from the output" -msgstr "Unterschlüssel erlauben, deren Zeitstempel in der Zukunft liegt" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:387 msgid "Show the author email instead of author name" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:388 -#, fuzzy msgid "Ignore whitespace changes" -msgstr "white space (Worttrenner) ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:389 -#, fuzzy msgid "Custom command" -msgstr "Jobbefehl" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:1 -#, fuzzy msgid "Comma-separated list of analyses to perform" -msgstr "Komma-getrennte Liste anzuzeigender Abhängigkeitstypen" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:2 -#, fuzzy msgid "Show examples in command line mode" -msgstr "Vollständige Befehlszeile selektieren (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:3 -#, fuzzy msgid "Go root directory" -msgstr "Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:4 -#, fuzzy msgid "Print HTML in command-line mode" -msgstr "Befehle auf Standardfehlerausgabe ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:5 -#, fuzzy msgid "HTTP service address" -msgstr "Numerische Adresse" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:6 msgid "httptest.NewServer serves on this address and blocks" @@ -29151,9 +27105,8 @@ msgid "Link identifiers to their declarations" msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:12 -#, fuzzy msgid "Maximum number of full text search results shown" -msgstr "Maximale Zahl offener Datei-Deskriptoren" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:13 msgid "Regular expression matching note markers to show" @@ -29176,9 +27129,8 @@ msgid "Print (exported) source in command-line mode" msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:18 -#, fuzzy msgid "Tab width" -msgstr "Zeilenbreite" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:19 msgid "Directory containing alternate template files" @@ -29193,52 +27145,44 @@ msgid "Print HTML for named URL" msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:23 -#, fuzzy msgid "Write index to a file" -msgstr "In Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:24 msgid "Zip file providing the file system to serve" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:1 -#, fuzzy msgid "Complete go build commands" -msgstr "Vergleiche FILE1 mit allen Operanden" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:2 -#, fuzzy msgid "force rebuild" -msgstr "Index-Neuerstellung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:3 -#, fuzzy msgid "print the commands but do not run them" -msgstr "Maskierte Befehle auf Standardfehlerausgabe ausgeben, nicht ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:4 msgid "number parallel builds (default=#cpus)" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:5 -#, fuzzy msgid "enable data race detection" -msgstr "Auswahl löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:6 -#, fuzzy msgid "print packages being built" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:7 -#, fuzzy msgid "print and preserve work directory" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:8 -#, fuzzy msgid "print the commands" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:9 msgid "c compiler flags" @@ -29269,19 +27213,16 @@ msgid "build tags" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:16 -#, fuzzy msgid "Complete go" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:17 -#, fuzzy msgid "compile packages and dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:18 -#, fuzzy msgid "remove object files" -msgstr "Veraltete Dateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:19 msgid "" @@ -29290,9 +27231,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:20 -#, fuzzy msgid "print the remove commands it would execute, but not run them" -msgstr "Maskierte Befehle auf Standardfehlerausgabe ausgeben, nicht ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:21 msgid "" @@ -29310,99 +27250,83 @@ msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:24 #: /tmp/fish/implicit/share/completions/go.fish:29 -#, fuzzy msgid "prints commands that would be executed" -msgstr "Befehle auf Standardfehlerausgabe ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:25 #: /tmp/fish/implicit/share/completions/go.fish:30 #: /tmp/fish/implicit/share/completions/go.fish:53 -#, fuzzy msgid "prints commands as they are executed" -msgstr "Befehle auf Standardfehlerausgabe ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:26 -#, fuzzy msgid "print Go environment information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:27 -#, fuzzy msgid "run go tool fix on packages" -msgstr "Informationen über ein Paket" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:28 -#, fuzzy msgid "run gofmt on package sources" -msgstr "Paket aus Quelle generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:31 -#, fuzzy msgid "download and install packages and dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:32 -#, fuzzy msgid "stop after downloading the packages; don't install" -msgstr "Herunterladen von Paketen deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:33 msgid "run fix tool on packages before resolving dependencies or building" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:34 -#, fuzzy msgid "update remote packages" -msgstr "Paketliste aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:35 -#, fuzzy msgid "get help on topic" -msgstr "Hilfe für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:36 #: /tmp/fish/implicit/share/completions/go.fish:48 -#, fuzzy msgid "target tool" -msgstr "Zielzeile" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:37 -#, fuzzy msgid "compile and install packages and dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:38 -#, fuzzy msgid "list packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:39 -#, fuzzy msgid "tolerate erroneous packages" -msgstr "Quellpakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:40 msgid "pass in template for formatting" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:41 -#, fuzzy msgid "print in JSON format" -msgstr "Ausgabe im ISO 8601-Format" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:42 -#, fuzzy msgid "list of build tags" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:43 msgid "compile and run Go program" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:44 -#, fuzzy msgid "test packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:45 msgid "compile the test binary to pkg.test but do not run it" @@ -29413,39 +27337,34 @@ msgid "install dependent packages, but don't run tests" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:47 -#, fuzzy msgid "run specified go tool" -msgstr "Defektes Paketdepot reparieren" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:49 msgid "print the command that would be executed but not execute it" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:50 -#, fuzzy msgid "print Go version" -msgstr "PKG-Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:51 -#, fuzzy msgid "vet packages" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:52 msgid "print the command that would be executed" msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:1 -#, fuzzy msgid "Write cpu profile to this file" -msgstr "Top-Server in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:2 #: /tmp/fish/implicit/share/completions/goimports.fish:1 #: /tmp/fish/implicit/share/completions/gorename.fish:1 -#, fuzzy msgid "Display diffs instead of rewriting files" -msgstr "Für jede Zeile der Datei Datum anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:3 msgid "Report all errors (not just the first 10 on different lines)" @@ -29460,9 +27379,8 @@ msgid "Rewrite rule (e.g., 'a[b:len(a)] -> a[b:]')" msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:6 -#, fuzzy msgid "Simplify code" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:7 #: /tmp/fish/implicit/share/completions/goimports.fish:5 @@ -29470,9 +27388,8 @@ msgid "Write result to (source) file instead of stdout" msgstr "" #: /tmp/fish/implicit/share/completions/goimports.fish:2 -#, fuzzy msgid "Report all errors" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/goimports.fish:3 msgid "List files whose formatting differs from goimport's" @@ -29503,43 +27420,36 @@ msgid "Identifier to be renamed" msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:5 -#, fuzzy msgid "Show usage message" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:6 msgid "File and byte offset of identifier to be renamed" msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:7 -#, fuzzy msgid "Build tag" -msgstr "Apt-Zwischenspeicher erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:8 -#, fuzzy msgid "New name for identifier" -msgstr "In Bezeichnern $ akzeptieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:9 -#, fuzzy msgid "Print verbose information" -msgstr "Ausführliche Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:1 -#, fuzzy msgid "Add user to group" -msgstr "Ausgabe mit Markierung versehen" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:2 -#, fuzzy msgid "Remove user from group" -msgstr "Alle Einträge aus der --group-Liste entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:4 -#, fuzzy msgid "Remove the GROUP's password" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:5 msgid "Restrict access to GROUP to its members" @@ -29554,14 +27464,12 @@ msgid "set the list of administrators for GROUP" msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:1 -#, fuzzy msgid "Complete using gpg user ids" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:2 -#, fuzzy msgid "Complete using gpg key ids" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:3 msgid "" @@ -29596,9 +27504,8 @@ msgid "Store only (make a simple RFC1991 packet)" msgstr "Nur speichern (einfaches RFC1991-Paket erzeugen)" #: /tmp/fish/implicit/share/completions/gpg.fish:10 -#, fuzzy msgid "Decrypt specified file or stdin" -msgstr "Für angegebene Benutzerkennung verschlüsseln" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:11 msgid "Assume specified file or stdin is sigfile and verify it" @@ -29656,9 +27563,8 @@ msgstr "Alle Schlüssel mit ihren Fingerabdrücken ausgeben" #: /tmp/fish/implicit/share/completions/gpg.fish:22 #: /tmp/fish/implicit/share/completions/signify.fish:2 -#, fuzzy msgid "Generate a new key pair" -msgstr "Ein neues Schlüsselpaar erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:23 msgid "Present a menu which enables you to do all key related tasks" @@ -29931,9 +27837,8 @@ msgstr "" "Ihrer eigenen geheimen Schlüssel" #: /tmp/fish/implicit/share/completions/gpg.fish:81 -#, fuzzy msgid "Specify trust model" -msgstr "Vertrauensmodell angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:82 msgid "Select how to display key IDs" @@ -30000,9 +27905,8 @@ msgid "Use specified file instead of the default trustdb" msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" #: /tmp/fish/implicit/share/completions/gpg.fish:96 -#, fuzzy msgid "Set the home directory" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:97 msgid "Set the native character set" @@ -30183,9 +28087,8 @@ msgstr "" "zulassen" #: /tmp/fish/implicit/share/completions/gpg.fish:135 -#, fuzzy msgid "Do not cache the verification status of key signatures" -msgstr "Überprüfungsstatus von Schlüsselsignaturen nicht zwischenspeichern" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:136 msgid "Do not verify each signature right after creation" @@ -30304,9 +28207,8 @@ msgid "Ignore CRC errors" msgstr "CRC-Fehler ignorieren" #: /tmp/fish/implicit/share/completions/gpg.fish:161 -#, fuzzy msgid "Do not fail on MDC integrity protection failure" -msgstr "Kein Abbruch beim Versagen des MDC-Integritätsschutzes" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:162 msgid "" @@ -30328,9 +28230,8 @@ msgstr "" "erstellen" #: /tmp/fish/implicit/share/completions/gpg.fish:165 -#, fuzzy msgid "Reset verbose level to 0" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:166 msgid "Suppress the initial copyright message" @@ -30413,9 +28314,8 @@ msgstr "" "Ändert das Verhalten einiger Befehle. Ähnlich --dry-run, aber doch anders" #: /tmp/fish/implicit/share/completions/gpg.fish:181 -#, fuzzy msgid "Display the session key used for one message" -msgstr "Zeige den für eine Nachricht benutzten Sitzungsschlüssel an" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:182 msgid "Don't use the public key but the specified session key" @@ -30499,61 +28399,52 @@ msgstr "" "festlegen" #: /tmp/fish/implicit/share/completions/gphoto2.fish:1 -#, fuzzy msgid "Print complete help message on program usage" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:2 -#, fuzzy msgid "Print short message on program usage" -msgstr "Nachrichten über den Programmablauf ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:3 -#, fuzzy msgid "Turn on debugging" -msgstr "Entfernung der Zusatzinformationen abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:4 msgid "Name of file to write debug info to" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:5 -#, fuzzy msgid "Quiet output (default=verbose)" -msgstr "Ausgabebegrenzer festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:6 msgid "Hook script to call after downloads, captures, etc." msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:7 -#, fuzzy msgid "Send file to stdout" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:8 -#, fuzzy msgid "Print filesize before data" -msgstr "Dateigröße statt Plattenbelegung ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:9 msgid "List auto-detected cameras" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:10 -#, fuzzy msgid "Show EXIF information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:11 -#, fuzzy msgid "Show info" -msgstr "Zeige versteckte Dateien" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:12 -#, fuzzy msgid "Show summary" -msgstr "Zusammenfassung ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:13 msgid "Show camera driver manual" @@ -30564,76 +28455,64 @@ msgid "About the camera driver manual" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:15 -#, fuzzy msgid "Show storage information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:16 -#, fuzzy msgid "gPhoto shell" -msgstr "Befehl an die Shell übergeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:18 -#, fuzzy msgid "List supported camera models" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:19 -#, fuzzy msgid "List supported port devices" -msgstr "Wichtige Abhängigkeiten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:20 msgid "Display camera/driver abilities" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:21 -#, fuzzy msgid "Specify device port" -msgstr "Verzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:22 -#, fuzzy msgid "Specify serial transfer speed" -msgstr "E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:23 -#, fuzzy msgid "Specify camera model" -msgstr "Kernel-Version angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:24 msgid "(expert only) Override USB IDs" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:25 -#, fuzzy msgid "List configuration tree" -msgstr "Konfigurationsdatei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:26 -#, fuzzy msgid "Dump full configuration tree" -msgstr "Konfigurationsdatei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:27 -#, fuzzy msgid "Get configuration value" -msgstr "Konfigurationsdatei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:28 msgid "Set configuration value or index in choices" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:29 -#, fuzzy msgid "Set configuration value index in choices" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:30 -#, fuzzy msgid "Set configuration value" -msgstr "Globale Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:31 msgid "Wait for event(s) from camera" @@ -30648,18 +28527,16 @@ msgid "Capture a quick preview" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:34 -#, fuzzy msgid "Set bulb exposure time in seconds" -msgstr "Maximalanzahl CPU-Zeit in Sekunden" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:35 msgid "Set number of frames to capture (default=infinite)" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:36 -#, fuzzy msgid "Set capture interval in seconds" -msgstr "Minimalintervall in Sekunden" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:37 msgid "Reset capture interval on signal (default=no)" @@ -30674,9 +28551,8 @@ msgid "Capture an image and download it" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:40 -#, fuzzy msgid "Capture a movie" -msgstr "Tv-Capture-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:41 msgid "Capture an audio clip" @@ -30687,39 +28563,32 @@ msgid "Wait for shutter release on the camera and download" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:43 -#, fuzzy msgid "List folders in folder" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:44 -#, fuzzy msgid "List files in folder" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:45 -#, fuzzy msgid "Create a directory" -msgstr "Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:46 -#, fuzzy msgid "Remove a directory" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:47 -#, fuzzy msgid "Display number of files" -msgstr "Inode-Nummer der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:48 -#, fuzzy msgid "Get files given in range" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:49 -#, fuzzy msgid "Get all files from folder" -msgstr "Datei aus Datei extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:50 msgid "Get thumbnails given in range" @@ -30738,9 +28607,8 @@ msgid "Get all metadata from folder" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:54 -#, fuzzy msgid "Upload metadata for file" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:55 msgid "Get raw data given in range" @@ -30755,14 +28623,12 @@ msgid "Get audio data given in range" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:58 -#, fuzzy msgid "Get all audio data from folder" -msgstr "Audio aus Datei spielen" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:59 -#, fuzzy msgid "Delete files given in range" -msgstr "Datei mit in den Daten enthaltenem Namen erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:60 msgid "Delete all files in folder (--no-recurse by default)" @@ -30789,14 +28655,12 @@ msgid "No recursion (default for deletion)" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:66 -#, fuzzy msgid "Process new files only" -msgstr "Binärdateien als Text behandeln" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:67 -#, fuzzy msgid "Overwrite files without asking" -msgstr "Dateien gleichen Namens niemals überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:1 msgid "Print annotated source" @@ -30815,23 +28679,20 @@ msgid "Display summary" msgstr "Zusammenfassung anzeigen" #: /tmp/fish/implicit/share/completions/gprof.fish:5 -#, fuzzy msgid "Search directories for source" -msgstr "Verzeichnis nach makefile durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:6 msgid "No annotated source" msgstr "Keine kommentierte Quelle" #: /tmp/fish/implicit/share/completions/gprof.fish:7 -#, fuzzy msgid "Print full path of source" -msgstr "Vollständigen Quellpfad ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:8 -#, fuzzy msgid "Print flat profile" -msgstr "Kein flaches Profil" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:9 msgid "No flat profile" @@ -30870,18 +28731,16 @@ msgid "Set width of output" msgstr "Ausgabebreite festlegen" #: /tmp/fish/implicit/share/completions/gprof.fish:18 -#, fuzzy msgid "Annotate every line" -msgstr "Kommentiere jede Zeile" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:19 msgid "Set demangling style" msgstr "Format für Entfernen der Zusatzinformation festlegen" #: /tmp/fish/implicit/share/completions/gprof.fish:20 -#, fuzzy msgid "Turn of demangling" -msgstr "FTP-Mustererkennung abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:21 msgid "Supress static functions" @@ -30928,28 +28787,24 @@ msgid "Print summary" msgstr "Zusammenfassung ausgeben" #: /tmp/fish/implicit/share/completions/gradle.fish:2 -#, fuzzy msgid "Don't rebuild dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:3 -#, fuzzy msgid "Specify build file" -msgstr "Erstellungsverzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:4 -#, fuzzy msgid "Specify settings file" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:5 msgid "Only relevent project are configured" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:6 -#, fuzzy msgid "Specify console output type" -msgstr "Ausgabedateiname angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:7 msgid "Continue task execution after failure" @@ -30960,9 +28815,8 @@ msgid "Set system property of the JVM" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:9 -#, fuzzy msgid "Log in debug mode" -msgstr "Compiler-Debug-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:10 msgid "Uses Gradle Daemon to run build" @@ -30973,56 +28827,48 @@ msgid "Uses Gradle Daemon in foreground" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:12 -#, fuzzy msgid "Specify gradle user home directory" -msgstr "Vertrauensmodell angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:13 msgid "Launch Gradle GUI" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:14 -#, fuzzy msgid "Specify an initialization script" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:15 -#, fuzzy msgid "Set log level to info" -msgstr "Fehler-Grad festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:16 -#, fuzzy msgid "Include specified build in composite" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:17 msgid "Runs build with all task actions disabled" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:18 -#, fuzzy msgid "Configure number of concurrent workers" -msgstr "Anzahl gleichzeitiger Jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:19 -#, fuzzy msgid "Don't use deamon" -msgstr "Stapelverarbeitungsmodus nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:20 -#, fuzzy msgid "Don't use network resources" -msgstr "Integrierten Präprozessor nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:21 msgid "Set project property for build script" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:22 -#, fuzzy msgid "Specify start directory" -msgstr "Verzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:23 msgid "Build project in parallel" @@ -31033,9 +28879,8 @@ msgid "Profile build execution time" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:25 -#, fuzzy msgid "Specify project cache directory" -msgstr "Verzeichnis für lokalen Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:26 msgid "Only log erros" @@ -31046,14 +28891,12 @@ msgid "Force build script recompiling" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:28 -#, fuzzy msgid "Refresh state of dependencies" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:29 -#, fuzzy msgid "Ignore previously cached dependencies" -msgstr "Zerstörte Abhängigkeiten korrigieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:30 msgid "Print out full stacktrace for all exceptions" @@ -31087,9 +28930,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/rfkill.fish:2 #: /tmp/fish/implicit/share/completions/tmutil.fish:51 #: /tmp/fish/implicit/share/completions/xdg-mime.fish:13 -#, fuzzy msgid "Print version" -msgstr "PKG-Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:36 msgid "Specify task to be excluded from execution" @@ -31108,15 +28950,13 @@ msgid "Assume data type for binary files" msgstr "Datentyp für Binärdateien unterstellen" #: /tmp/fish/implicit/share/completions/grep.fish:7 -#, fuzzy msgid "Colour output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:8 #: /tmp/fish/implicit/share/completions/jq.fish:10 -#, fuzzy msgid "Color output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:9 msgid "Only print number of matches" @@ -31143,18 +28983,16 @@ msgid "Read pattern list from file. Skip files whose base name matches list" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:15 -#, fuzzy msgid "Exclude matching directories from recursive searches" -msgstr "Verzeichnisse nach Quelle durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:16 msgid "Pattern is a fixed string" msgstr "Muster ist eine feststehende Zeichenkette" #: /tmp/fish/implicit/share/completions/grep.fish:17 -#, fuzzy msgid "Use patterns from a file" -msgstr "Muster aus Datei nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:18 msgid "Pattern is basic regex" @@ -31165,9 +29003,8 @@ msgid "Print filename" msgstr "Dateiname ausgeben" #: /tmp/fish/implicit/share/completions/grep.fish:20 -#, fuzzy msgid "Suppress printing filename" -msgstr "Dateinamenausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:22 msgid "Skip binary files" @@ -31190,9 +29027,8 @@ msgid "Use the mmap system call to read input" msgstr "mmap-Systemaufruf zum Lesen der Eingabe nutzen" #: /tmp/fish/implicit/share/completions/grep.fish:28 -#, fuzzy msgid "Print line number" -msgstr "Zeilennummer ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:29 msgid "Show only matching part" @@ -31207,9 +29043,8 @@ msgid "Use line buffering" msgstr "Zeilenpufferung benutzen" #: /tmp/fish/implicit/share/completions/grep.fish:32 -#, fuzzy msgid "Pattern is a Perl regexp (PCRE) string" -msgstr "Muster ist ein regulärer Ausdruck" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:33 #: /tmp/fish/implicit/share/completions/grep.fish:34 @@ -31218,19 +29053,16 @@ msgstr "Nichts schreiben" #: /tmp/fish/implicit/share/completions/grep.fish:35 #: /tmp/fish/implicit/share/completions/grep.fish:36 -#, fuzzy msgid "Read files under each directory, recursively" -msgstr "Dateien unter jedem Verzeichnis lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:37 -#, fuzzy msgid "Search only files matching PATTERN" -msgstr "Rekursiv, Dateien gemäß MUSTER suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:38 -#, fuzzy msgid "Skip files matching PATTERN" -msgstr "Rekursiv, dem MUSTER entsprechende Dateien überspringen" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:39 msgid "Suppress error messages" @@ -31261,9 +29093,8 @@ msgid "Only whole matching lines" msgstr "Nur vollständig übereinstimmende Zeilen" #: /tmp/fish/implicit/share/completions/grep.fish:47 -#, fuzzy msgid "Ignore case (deprecated: use -i instead)" -msgstr "Unterschiede bei Groß-/Kleinschreibung ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:48 msgid "Treat input as a set of zero-terminated lines" @@ -31283,9 +29114,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/groupadd.fish:3 #: /tmp/fish/implicit/share/completions/useradd.fish:4 -#, fuzzy msgid "Display help message and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/groupadd.fish:4 #: /tmp/fish/implicit/share/completions/useradd.fish:7 @@ -31418,53 +29248,44 @@ msgid "Check if given file is BIOS bootsector" msgstr "" #: /tmp/fish/implicit/share/completions/grub-file.fish:32 -#, fuzzy msgid "Display usage and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:1 -#, fuzzy msgid "Compress GRUB files" -msgstr "Datei komprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:2 -#, fuzzy msgid "Use image and modules under given directory" -msgstr "Dateien unter jedem Verzeichnis lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:3 -#, fuzzy msgid "Install given fonts" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:4 -#, fuzzy msgid "Install only given modules and their dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:5 msgid "Embed given file as public key for signature checking" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:6 -#, fuzzy msgid "Use translations under given directory" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:7 -#, fuzzy msgid "Install only given locales" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:8 -#, fuzzy msgid "Preload specfied modules" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:9 -#, fuzzy msgid "Install given theme" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:11 msgid "Make drive also bootable as floppy" @@ -31475,24 +29296,20 @@ msgid "Install GRUB images under DIR/grub" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:13 -#, fuzzy msgid "Set bootloader ID" -msgstr "Blockgröße festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:14 -#, fuzzy msgid "Choose compression to use for core image" -msgstr "Zeige den für eine Nachricht benutzten Sitzungsschlüssel an" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:15 -#, fuzzy msgid "Set disk module to use" -msgstr "Wählen Sie aus, wie Schlüsselkennungen angezeigt werden sollen" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:16 -#, fuzzy msgid "Use given directory as the EFI System Partition root" -msgstr "Angegebenen Schlüssel als Schlüssel zum Signieren verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:17 msgid "Install even if problems are detected" @@ -31507,24 +29324,20 @@ msgid "Use given color for label background" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:20 -#, fuzzy msgid "Use given color for label" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:21 -#, fuzzy msgid "Use given file for label" -msgstr "Sektion für Dateiformate" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:22 -#, fuzzy msgid "Use given directory for PPC Mac install" -msgstr "Verzeichnis nach makefile durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:23 -#, fuzzy msgid "Do not install bootsector" -msgstr "Keine Init-Dateien laden" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:24 msgid "Don't update the boot-device/Boot* NVRAM variables" @@ -31535,23 +29348,20 @@ msgid "Don't apply any reed-solomon codes when embedding core.img" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:26 -#, fuzzy msgid "Set product version" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:27 -#, fuzzy msgid "Delete device map if it already exists" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:28 msgid "The installation is removable" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:29 -#, fuzzy msgid "Do not probe for filesystems" -msgstr "Im lokalen Dateisystem bleiben" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:30 msgid "Install GRUB for given platform" @@ -31562,23 +29372,20 @@ msgid "Print the grunt version. Combine with --verbose for more info" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:1 -#, fuzzy msgid "Print the version information" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:2 -#, fuzzy msgid "Specify a custom schemas directory" -msgstr "Verzeichnis für lokalen Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:3 msgid "Get the value of a key" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:4 -#, fuzzy msgid "Determine if a key is writable" -msgstr "Datei ist schreibbar" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:5 msgid "Determine the valid value range of a key" @@ -31605,24 +29412,20 @@ msgid "List all installed, non-relocatable schemas" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:11 -#, fuzzy msgid "List all installed, relocatable schemas" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:12 -#, fuzzy msgid "List all keys in a schema" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:13 -#, fuzzy msgid "List all children of a schema" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:14 -#, fuzzy msgid "List keys and values, recursively" -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/gunzip.fish:4 #: /tmp/fish/implicit/share/completions/gzip.fish:4 @@ -31641,9 +29444,8 @@ msgstr "Dateiname (zurück)sichern" #: /tmp/fish/implicit/share/completions/gunzip.fish:9 #: /tmp/fish/implicit/share/completions/gzip.fish:9 -#, fuzzy msgid "Recurse directories" -msgstr "Verzeichnisse rekursiv durchlaufen" +msgstr "" #: /tmp/fish/implicit/share/completions/gunzip.fish:10 #: /tmp/fish/implicit/share/completions/gzip.fish:10 @@ -31660,19 +29462,16 @@ msgid "Display document using only black and white" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:2 -#, fuzzy msgid "Display document without colors" -msgstr "Steuerzeichen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:3 -#, fuzzy msgid "Display document as usual" -msgstr "Steuerzeichen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:4 -#, fuzzy msgid "Start ghostscript in safe mode" -msgstr "Standardmodus" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:5 msgid "Do not start ghostscript in safe mode" @@ -31724,23 +29523,20 @@ msgid "The page should not be centered automatically" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:17 -#, fuzzy msgid "Selects the paper size to be used" -msgstr "Auswahl, wie Passwortsätze verstümmelt werden" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:18 -#, fuzzy msgid "Sets the orientation of the page" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:19 msgid "Selects the scale N, or arbitrary scale f.f" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:20 -#, fuzzy msgid "Selects the scale base N" -msgstr "Zeitformat auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:21 msgid "Interchange the meaning of the orientations landscape and seascape" @@ -31756,9 +29552,8 @@ msgid "Use antialiasing" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:24 -#, fuzzy msgid "Do not use antialiasing" -msgstr "Nichts schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:25 msgid "Dsc comments are respected" @@ -31781,9 +29576,8 @@ msgid "Use backing pixmap" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:30 -#, fuzzy msgid "Do not use backing pixmap" -msgstr "Nicht die gcc-Ummantelung benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:31 msgid "Watch the document file for changes" @@ -31794,9 +29588,8 @@ msgid "Do not watch the document file for changes" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:34 -#, fuzzy msgid "Print a usage message and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:35 msgid "Fit the size of the window to the size of the page" @@ -31807,9 +29600,8 @@ msgid "Do not fit the size of the window to the size of the page" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:37 -#, fuzzy msgid "Set geometry" -msgstr "Schwere festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:38 msgid "Read and use additional resources from FILE (higher priority)" @@ -31836,46 +29628,40 @@ msgid "Start in fullscreen mode (needs support from WM)" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:44 -#, fuzzy msgid "Presentation mode " -msgstr "Fragemodus" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:45 -#, fuzzy msgid "Show gv version and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gzip.fish:14 -#, fuzzy msgid "Use fast setting" -msgstr "Einstellung für Schnelligkeit verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/gzip.fish:15 msgid "Use high compression setting" msgstr "Einstellung für hohe Kompression verwenden" #: /tmp/fish/implicit/share/completions/helm.fish:1 -#, fuzzy msgid "Enable verbose output" -msgstr "dired-Ausgabe erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:2 msgid "Location of your Helm config" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:3 -#, fuzzy msgid "Address of tiller" -msgstr "Adressbereichsfehler" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:4 msgid "Name of the kubeconfig context to use" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:5 -#, fuzzy msgid "More information about a command" -msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:6 msgid "The named Helm starter scaffold" @@ -31899,9 +29685,8 @@ msgid "Prevent hooks from running during deletion" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:10 -#, fuzzy msgid "Remove the release from the store" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:11 #: /tmp/fish/implicit/share/completions/helm.fish:13 @@ -31914,9 +29699,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:12 #: /tmp/fish/implicit/share/completions/helm.fish:14 -#, fuzzy msgid "Verify the packages against signatures" -msgstr "Paketintegrität verifizieren" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:15 #: /tmp/fish/implicit/share/completions/helm.fish:32 @@ -31942,17 +29726,15 @@ msgid "Directory into which the chart is expanded" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:21 -#, fuzzy msgid "Verify the package against its signature" -msgstr "Paketintegrität verifizieren" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:22 #: /tmp/fish/implicit/share/completions/helm.fish:35 #: /tmp/fish/implicit/share/completions/helm.fish:47 #: /tmp/fish/implicit/share/completions/helm.fish:87 -#, fuzzy msgid "Chart version" -msgstr "Sortierung nach Version" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:24 #: /tmp/fish/implicit/share/completions/helm.fish:68 @@ -31965,28 +29747,24 @@ msgid "Dump all (computed) values" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:27 -#, fuzzy msgid "Maximum number of revision to include in history" -msgstr "Maximale Zahl offener Datei-Deskriptoren" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:28 msgid "Use the canary tiller image" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:29 -#, fuzzy msgid "Do not install tiller" -msgstr "Keine Init-Dateien laden" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:30 -#, fuzzy msgid "Do not install local or remote" -msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:31 -#, fuzzy msgid "Override tiller image" -msgstr "Frame-Rate überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:33 #: /tmp/fish/implicit/share/completions/helm.fish:38 @@ -31998,25 +29776,21 @@ msgid "Verify the provenance data for this chart" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:37 -#, fuzzy msgid "Simulate an install" -msgstr "Auf Installierte begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:39 -#, fuzzy msgid "Release name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:40 -#, fuzzy msgid "Specify template used to name the release" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:41 #: /tmp/fish/implicit/share/completions/helm.fish:82 -#, fuzzy msgid "Namespace" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:42 msgid "Prevent hooks from running during install" @@ -32028,68 +29802,57 @@ msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:44 #: /tmp/fish/implicit/share/completions/helm.fish:84 -#, fuzzy msgid "Set values on the command line" -msgstr "Festlegen oder Abrufen der Befehlszeile" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:45 #: /tmp/fish/implicit/share/completions/helm.fish:85 -#, fuzzy msgid "Specify values in a YAML file" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:46 -#, fuzzy msgid "Verify the package before installing it" -msgstr "Paketintegrität verifizieren" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:48 -#, fuzzy msgid "Fail on lint warnings" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:49 -#, fuzzy msgid "Show all releases" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:50 -#, fuzzy msgid "Sort by release date" -msgstr "Nach Größe sortieren" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:51 -#, fuzzy msgid "Show deleted releases" -msgstr "Aktualisierte Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:52 msgid "Show releases that are currently being deleted" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:53 -#, fuzzy msgid "Show deployed releases" -msgstr "Aktualisierte Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:54 -#, fuzzy msgid "Show failed releases" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:55 -#, fuzzy msgid "Maximum number of releases to fetch" -msgstr "Maximalanzahl geschachtelter Blöcke erreicht." +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:56 msgid "Next release name in the list" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:57 -#, fuzzy msgid "Reverse the sort order" -msgstr "Sortierreihenfolge umkehren" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:58 msgid "Output short listing format" @@ -32100,9 +29863,8 @@ msgid "Name of the key to use when signing" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:61 -#, fuzzy msgid "Save packaged chart to local chart repository" -msgstr "Pakete in lokalen Verzeichnisbaum verschieben" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:62 msgid "Use a PGP private key to sign this package" @@ -32113,19 +29875,16 @@ msgid "Raise error if repo is already registered" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:64 -#, fuzzy msgid "Merge the generated index into the given index" -msgstr "Schlüsselserver nach den angegebenen Namen durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:65 -#, fuzzy msgid "URL of chart repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:66 -#, fuzzy msgid "Repository" -msgstr "Depot aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:69 msgid "Simulate a rollback" @@ -32140,23 +29899,20 @@ msgid "Use regular expressions for searching" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:72 -#, fuzzy msgid "Show the long listing" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:73 -#, fuzzy msgid "Address to listen on" -msgstr "Zeiger auf Prozessliste" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:74 msgid "Path from which to serve charts" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:79 -#, fuzzy msgid "Simulate an upgrade" -msgstr "Aktualisierung der Distribution" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:80 msgid "Run an install if the release don't exists" @@ -32171,14 +29927,12 @@ msgid "Verify the provenance of the chart before upgrading" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:89 -#, fuzzy msgid "Show the client version" -msgstr "Version des Quellenbaumes" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:90 -#, fuzzy msgid "Show the server version" -msgstr "Version des Quellenbaumes" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:1 #: /tmp/fish/implicit/share/completions/help.fish:68 @@ -32186,136 +29940,113 @@ msgid "Autosuggestions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:2 -#, fuzzy msgid "Builtin commands" -msgstr "Prozessbefehl" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:3 msgid "Cartesian Products" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:4 -#, fuzzy msgid "Setting syntax highlighting colors" -msgstr "Hilfe zur Farbeinrichtung zur Syntaxhervorhebung" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:5 msgid "Combining different expansions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:6 -#, fuzzy msgid "How tab-completion works" -msgstr "Hilfe zur Tab-Vervollständigung" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:7 -#, fuzzy msgid "Useful functions for writing completions" -msgstr "Funktionstasten für Befehle nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:8 -#, fuzzy msgid "Writing your own completions" -msgstr "Beschreibung dieser Vervollständigung" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:9 -#, fuzzy msgid "Where to put completions" -msgstr "Beschreibung dieser Vervollständigung" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:10 msgid "Debugging fish scripts" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:12 -#, fuzzy msgid "Command line editor" -msgstr "Befehl im aktuellen Prozess ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:13 -#, fuzzy msgid "Emacs mode commands" -msgstr "Befehlsblock beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:14 -#, fuzzy msgid "Escaping characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:15 -#, fuzzy msgid "Event handlers" -msgstr "Ereignisbehandler-Block" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:16 #: /tmp/fish/implicit/share/completions/help.fish:25 -#, fuzzy msgid "Parameter expansion (Globbing)" -msgstr "Hilfe zur Parameter-Expansion (Dateinamen)" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:17 -#, fuzzy msgid "Brace expansion {a,b,c}" -msgstr "Hilfe zur Klammer-Expansion {a,b,c}" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:18 -#, fuzzy msgid "Command substitution" -msgstr "Befehlsersetzungsblock" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:19 -#, fuzzy msgid "Command substitution (SUBCOMMAND)" -msgstr "Hilfe zu Befehlsersetzungen (SUBCOMMAND)" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:20 -#, fuzzy msgid "Home directory expansion ~USER" -msgstr "Hilfe zur Startverzeichnis-Expansion ~USER" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:21 -#, fuzzy msgid "Index range expansion" -msgstr "Änderungen aufgrund von Tabulatorausweitung ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:22 -#, fuzzy msgid "Process expansion %JOB" -msgstr "Hilfe zur Prozess-Expansion %JOB" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:24 -#, fuzzy msgid "Wildcard expansion *.*" -msgstr "Hilfe zur Muster-Expansion *.*" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:26 -#, fuzzy msgid "Configurable greeting" -msgstr "Quellpakete kompilieren" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:27 msgid "Help on how to reuse previously entered commands" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:28 -#, fuzzy msgid "Searchable history" -msgstr "Paketinformation anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:29 -#, fuzzy msgid "Shell variable and function names" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:30 -#, fuzzy msgid "Initialization files" -msgstr "Konfigurationsdatei" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:31 -#, fuzzy msgid "Introduction" -msgstr "Illegale Instruktion" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:32 msgid "Common issues with fish" @@ -32330,9 +30061,8 @@ msgid "Copy and paste (Kill Ring)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:35 -#, fuzzy msgid "Further help and development" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:36 msgid "Multiline editing" @@ -32347,135 +30077,113 @@ msgid "Piping" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:39 -#, fuzzy msgid "Programmable prompt" -msgstr "Ausführlicher Prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:40 msgid "Quotes" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:41 -#, fuzzy msgid "Input/Output (IO) redirection" -msgstr "Ungültige Umleitung" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:42 -#, fuzzy msgid "Shared bindings" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:43 msgid "Introduction to the fish syntax" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:44 -#, fuzzy msgid "Background jobs" -msgstr "Letzter Hintergrundjob" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:45 -#, fuzzy msgid "Conditional execution of code and flow control" -msgstr "Befehlsblock bedingt ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:46 #: /tmp/fish/implicit/share/completions/help.fish:74 -#, fuzzy msgid "Functions" -msgstr "Funktion" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:47 -#, fuzzy msgid "Autoloading functions" -msgstr "Funktion" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:48 msgid "Defining aliases" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:49 -#, fuzzy msgid "Job control" -msgstr "Jobsteuerung" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:50 -#, fuzzy msgid "Some common words" -msgstr "Ende des Befehls" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:51 -#, fuzzy msgid "Programmable title" -msgstr "Programm-Sektion" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:52 -#, fuzzy msgid "Shell variables" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:53 msgid "Arrays" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:54 -#, fuzzy msgid "Variables for changing highlighting colors" -msgstr "Hilfe zur Farbeinrichtung zur Syntaxhervorhebung" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:55 -#, fuzzy msgid "Exporting variables" -msgstr "Variable an Unterprozess exportieren" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:56 -#, fuzzy msgid "Variable scope for functions" -msgstr "Funktion löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:57 -#, fuzzy msgid "Locale variables" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:58 msgid "Variable scope" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:59 -#, fuzzy msgid "Special variables" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:60 -#, fuzzy msgid "The status variable" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:61 -#, fuzzy msgid "More on universal variables" -msgstr "Hilfe zu Umgebungsvariablen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:62 -#, fuzzy msgid "Vi mode commands" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:63 -#, fuzzy msgid "Command mode" -msgstr "Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:64 -#, fuzzy msgid "Insert mode" -msgstr "Kopfzeile einfügen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:65 -#, fuzzy msgid "Visual mode" -msgstr "Ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:66 msgid "Tutorial" @@ -32490,23 +30198,20 @@ msgid "Combiners (And, Or, Not)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:70 -#, fuzzy msgid "Command Substitutions" -msgstr "Befehlsersetzungsblock" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:71 msgid "Conditionals (If, Else, Switch)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:72 -#, fuzzy msgid "Exit Status" -msgstr "Exit-Status des Jobs verneinen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:73 -#, fuzzy msgid "Exports (Shell Variables)" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:75 msgid "Getting Help" @@ -32517,34 +30222,28 @@ msgid "Learning fish" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:77 -#, fuzzy msgid "Lists" -msgstr "Kennzeichnung bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:78 -#, fuzzy msgid "Loops" -msgstr "Schleifen-Skript" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:79 -#, fuzzy msgid "Ready for more?" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:81 -#, fuzzy msgid "Pipes and Redirections" -msgstr "Verzeichnisnamen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:82 -#, fuzzy msgid "Prompt" -msgstr "Prompt-Anzeige" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:83 -#, fuzzy msgid "Running Commands" -msgstr "Ende des Befehls" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:84 msgid "Separating Commands (Semicolon)" @@ -32555,19 +30254,16 @@ msgid "Startup (Where's .bashrc?)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:86 -#, fuzzy msgid "Syntax Highlighting" -msgstr "Keine Hervorhebung bei Suche" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:87 -#, fuzzy msgid "Tab Completions" -msgstr "Vervollständigung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:88 -#, fuzzy msgid "Universal Variables" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:89 msgid "Variables" @@ -32582,9 +30278,8 @@ msgid "Wildcards" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:1 -#, fuzzy msgid "list installed addons" -msgstr "Auf Installierte begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:2 msgid "manage apps (create, destroy)" @@ -32603,9 +30298,8 @@ msgid "manage custom domains" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:6 -#, fuzzy msgid "display logs for an app" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:7 msgid "manage dynos (dynos, workers)" @@ -32645,9 +30339,8 @@ msgid "list commands and display help" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:16 -#, fuzzy msgid "manage authentication keys" -msgstr "Überprüfungsstatus von Schlüsselsignaturen nicht zwischenspeichern" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:18 msgid "manage maintenance mode for an app" @@ -32670,9 +30363,8 @@ msgid "manage plugins to the heroku gem" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:23 -#, fuzzy msgid "list available regions" -msgstr "Ausdruck auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:24 msgid "manage the stack for an app" @@ -32683,14 +30375,12 @@ msgid "check status of heroku platform" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:26 -#, fuzzy msgid "update the heroku client" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:27 -#, fuzzy msgid "display version" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:28 msgid "" @@ -32711,28 +30401,24 @@ msgid "open an addon's documentation in your browser" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:32 -#, fuzzy msgid "downgrade an existing addon" -msgstr "Bestehendes Paket aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:33 -#, fuzzy msgid "list all available addons" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:34 msgid "open an addon's dashboard in your browser" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:35 -#, fuzzy msgid "uninstall one or more addons" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:36 -#, fuzzy msgid "upgrade an existing addon" -msgstr "Bestehendes Paket aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:37 msgid "the org to list the apps for" @@ -32755,9 +30441,8 @@ msgid " permanently destroy an app (--app APP)" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:42 -#, fuzzy msgid "show detailed app information" -msgstr "apropos-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:43 msgid " add yourself to an organization app (--app APP)" @@ -32772,9 +30457,8 @@ msgid " lock an organization app to restrict access" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:46 -#, fuzzy msgid " open the app in a web browser" -msgstr "Konnte keinen Webbrowser finden.\\n" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:47 msgid " rename the app (apps:rename newname --app oldname)" @@ -32789,18 +30473,16 @@ msgid "log in with your heroku credentials" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:50 -#, fuzzy msgid "clear local authentication credentials" -msgstr "Überprüfungsstatus von Schlüsselsignaturen nicht zwischenspeichern" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:51 msgid "display your api token" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:52 -#, fuzzy msgid "display your heroku email address" -msgstr "Datei zum Zugriff auf Server" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:53 msgid "output config vars in shell format" @@ -32808,9 +30490,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:54 #: /tmp/fish/implicit/share/completions/heroku.fish:55 -#, fuzzy msgid "display a config value for an app" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:56 #: /tmp/fish/implicit/share/completions/heroku.fish:57 @@ -32819,9 +30500,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:58 #: /tmp/fish/implicit/share/completions/heroku.fish:59 -#, fuzzy msgid "unset one or more config vars" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:60 msgid "add a custom domain to an app" @@ -32837,18 +30517,16 @@ msgid "remove a custom domain from an app" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:64 -#, fuzzy msgid "the number of lines to display" -msgstr "Anzahl der Versuche auf Anzahl festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:65 msgid "only display logs from the given process" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:66 -#, fuzzy msgid "only display logs from the given source" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:67 msgid "continually stream logs" @@ -32863,29 +30541,24 @@ msgid "cancel an in-progress backup or restore (default newest)" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:70 -#, fuzzy msgid "capture a new backup" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:71 -#, fuzzy msgid "delete a backup" -msgstr "Aus Archiv löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:72 -#, fuzzy msgid "downloads database backup" -msgstr "Eine Quelle herunterladen und extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:73 -#, fuzzy msgid "get information about a specific backup" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:74 -#, fuzzy msgid "restore a backup (default latest) to a database" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:75 msgid "schedule daily backups for given database" @@ -32929,9 +30602,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:88 #: /tmp/fish/implicit/share/completions/heroku.fish:89 -#, fuzzy msgid "view detailed information for a release" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:90 #: /tmp/fish/implicit/share/completions/heroku.fish:91 @@ -32939,9 +30611,8 @@ msgid "roll back to an older release" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:92 -#, fuzzy msgid "specify dyno size" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:93 msgid "open a remote console session (with optional COMMAND)" @@ -32972,38 +30643,32 @@ msgid "repository root directory or name of overlay bundle file" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:2 -#, fuzzy msgid "change working directory" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:3 msgid "do not prompt, automatically pick the first choice for all prompts" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:4 -#, fuzzy msgid "suppress output" -msgstr "Normale Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:5 -#, fuzzy msgid "enable additional output" -msgstr "dired-Ausgabe erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:6 -#, fuzzy msgid "set/override config option" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:7 -#, fuzzy msgid "enable debugging output" -msgstr "Debug-Ausgabe aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:8 -#, fuzzy msgid "start debugger" -msgstr "Bei Fehler Debugger starten" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:9 msgid "set the charset encoding" @@ -33018,14 +30683,12 @@ msgid "always print a traceback on exception" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:12 -#, fuzzy msgid "time how long the command takes" -msgstr "Festlegen oder Abrufen der Befehlszeile" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:13 -#, fuzzy msgid "print command execution profile" -msgstr "Optionsprofil auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:16 msgid "consider hidden changesets" @@ -33062,9 +30725,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:453 #: /tmp/fish/implicit/share/completions/hg.fish:460 #: /tmp/fish/implicit/share/completions/hg.fish:495 -#, fuzzy msgid "include names matching the given patterns" -msgstr "Module einfügen, die den angegebenen Mustern entsprechen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:20 #: /tmp/fish/implicit/share/completions/hg.fish:26 @@ -33089,9 +30751,8 @@ msgstr "Module einfügen, die den angegebenen Mustern entsprechen" #: /tmp/fish/implicit/share/completions/hg.fish:454 #: /tmp/fish/implicit/share/completions/hg.fish:461 #: /tmp/fish/implicit/share/completions/hg.fish:496 -#, fuzzy msgid "exclude names matching the given patterns" -msgstr "Alle Module auflisten, die den angegebenen Mustern entsprechen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:21 #: /tmp/fish/implicit/share/completions/hg.fish:48 @@ -33101,9 +30762,8 @@ msgstr "Alle Module auflisten, die den angegebenen Mustern entsprechen" #: /tmp/fish/implicit/share/completions/hg.fish:287 #: /tmp/fish/implicit/share/completions/hg.fish:430 #: /tmp/fish/implicit/share/completions/hg.fish:497 -#, fuzzy msgid "recurse into subrepositories" -msgstr "in Unterverzeichnis verzweigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:22 #: /tmp/fish/implicit/share/completions/hg.fish:27 @@ -33165,9 +30825,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:518 #: /tmp/fish/implicit/share/completions/hg.fish:523 #: /tmp/fish/implicit/share/completions/hg.fish:524 -#, fuzzy msgid "operate on patch repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:24 #: /tmp/fish/implicit/share/completions/hg.fish:213 @@ -33175,23 +30834,20 @@ msgid "guess renamed files by similarity (0<=s<=100)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:29 -#, fuzzy msgid "annotate the specified revision" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:30 -#, fuzzy msgid "don't follow copies and renames" -msgstr "Nur die folgenden Namen einschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:31 #: /tmp/fish/implicit/share/completions/hg.fish:128 #: /tmp/fish/implicit/share/completions/hg.fish:145 #: /tmp/fish/implicit/share/completions/hg.fish:165 #: /tmp/fish/implicit/share/completions/hg.fish:328 -#, fuzzy msgid "treat all files as text" -msgstr "Alle Dateien als Text behandeln" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:32 #: /tmp/fish/implicit/share/completions/hg.fish:171 @@ -33199,9 +30855,8 @@ msgid "list the author (long with -v)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:33 -#, fuzzy msgid "list the filename" -msgstr "Dateiname ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:34 #: /tmp/fish/implicit/share/completions/hg.fish:172 @@ -33209,14 +30864,12 @@ msgid "list the date (short with -q)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:35 -#, fuzzy msgid "list the revision number (default)" -msgstr "Standardmäßig den langen Kommentar editieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:36 -#, fuzzy msgid "list the changeset" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:37 msgid "show line number at the first appearance" @@ -33227,60 +30880,52 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:333 #: /tmp/fish/implicit/share/completions/hg.fish:396 #: /tmp/fish/implicit/share/completions/hg.fish:431 -#, fuzzy msgid "ignore white space when comparing lines" -msgstr "Groß-/Kleinschreibung beim Dateinamenvergleich ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:39 #: /tmp/fish/implicit/share/completions/hg.fish:134 -#, fuzzy msgid "changes in the amount of white space" -msgstr "Änderung in der Anzahl von Worttrennern ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:40 #: /tmp/fish/implicit/share/completions/hg.fish:135 #: /tmp/fish/implicit/share/completions/hg.fish:335 #: /tmp/fish/implicit/share/completions/hg.fish:398 #: /tmp/fish/implicit/share/completions/hg.fish:433 -#, fuzzy msgid "ignore changes whose lines are all blank" -msgstr "Änderungen ignorieren, deren Zeilen alle leer sind" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:44 msgid "do not pass files through decoders" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:45 -#, fuzzy msgid "directory prefix for files in archive" -msgstr "Startdatei im Archiv" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:46 -#, fuzzy msgid "revision to distribute" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:47 -#, fuzzy msgid "type of distribution to create" -msgstr "Typ des L1-Anweisungs-Cache" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:52 msgid "merge with old dirstate parent after backout" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:53 -#, fuzzy msgid "revision to backout" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:54 #: /tmp/fish/implicit/share/completions/hg.fish:160 #: /tmp/fish/implicit/share/completions/hg.fish:269 #: /tmp/fish/implicit/share/completions/hg.fish:452 -#, fuzzy msgid "specify merge tool" -msgstr "Kernel-Version angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:57 #: /tmp/fish/implicit/share/completions/hg.fish:112 @@ -33290,9 +30935,8 @@ msgstr "Kernel-Version angeben" #: /tmp/fish/implicit/share/completions/hg.fish:394 #: /tmp/fish/implicit/share/completions/hg.fish:408 #: /tmp/fish/implicit/share/completions/hg.fish:426 -#, fuzzy msgid "use text as commit message" -msgstr "Copyright-Meldung beim Start unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:58 #: /tmp/fish/implicit/share/completions/hg.fish:113 @@ -33302,9 +30946,8 @@ msgstr "Copyright-Meldung beim Start unterdrücken" #: /tmp/fish/implicit/share/completions/hg.fish:395 #: /tmp/fish/implicit/share/completions/hg.fish:409 #: /tmp/fish/implicit/share/completions/hg.fish:427 -#, fuzzy msgid "read commit message from file" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:59 #: /tmp/fish/implicit/share/completions/hg.fish:114 @@ -33312,9 +30955,8 @@ msgstr "Paket aus Datei lesen" #: /tmp/fish/implicit/share/completions/hg.fish:211 #: /tmp/fish/implicit/share/completions/hg.fish:428 #: /tmp/fish/implicit/share/completions/hg.fish:513 -#, fuzzy msgid "record the specified date as commit date" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:60 #: /tmp/fish/implicit/share/completions/hg.fish:115 @@ -33322,9 +30964,8 @@ msgstr "Angegebene Zeichenkette als Kommentar verwenden" #: /tmp/fish/implicit/share/completions/hg.fish:212 #: /tmp/fish/implicit/share/completions/hg.fish:429 #: /tmp/fish/implicit/share/completions/hg.fish:514 -#, fuzzy msgid "record the specified user as committer" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:62 msgid "reset bisect state" @@ -33351,9 +30992,8 @@ msgid "use command to check changeset state" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:68 -#, fuzzy msgid "do not update to target" -msgstr "Pakete nicht aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:70 #: /tmp/fish/implicit/share/completions/ifdown.fish:2 @@ -33397,9 +31037,8 @@ msgid "run even when the destination is unrelated" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:82 -#, fuzzy msgid "a changeset intended to be added to the destination" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:83 msgid "a specific branch you would like to bundle" @@ -33410,9 +31049,8 @@ msgid "a base changeset assumed to be available at the destination" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:85 -#, fuzzy msgid "bundle all changesets in the repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:86 msgid "bundle compression type to use (default: bzip2)" @@ -33427,9 +31065,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:305 #: /tmp/fish/implicit/share/completions/hg.fish:314 #: /tmp/fish/implicit/share/completions/hg.fish:324 -#, fuzzy msgid "specify ssh command to use" -msgstr "Befehl an die Shell übergeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:88 #: /tmp/fish/implicit/share/completions/hg.fish:104 @@ -33440,9 +31077,8 @@ msgstr "Befehl an die Shell übergeben" #: /tmp/fish/implicit/share/completions/hg.fish:306 #: /tmp/fish/implicit/share/completions/hg.fish:315 #: /tmp/fish/implicit/share/completions/hg.fish:325 -#, fuzzy msgid "specify hg command to run on the remote side" -msgstr "root-Verzeichnis für rpm-Operationen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:89 msgid "do not verify server certificate (ignoring web.cacerts" @@ -33450,37 +31086,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:91 #: /tmp/fish/implicit/share/completions/hg.fish:142 -#, fuzzy msgid "print output to file with formatted name" -msgstr "Ausgabe auf Datei umleiten" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:92 -#, fuzzy msgid "print the given revision" -msgstr "PKG-Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:93 msgid "apply any matching decode filter" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:97 -#, fuzzy msgid "the clone will include an empty working copy (only a repository)" -msgstr "Eine lokale Kopie eines weiteren Paketdepots erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:98 msgid "revision, tag or branch to check out" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:99 -#, fuzzy msgid "include the specified changeset" -msgstr "Angegebenes Paket von Aktualisierung ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:100 -#, fuzzy msgid "clone only the specified branch" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:101 #: /tmp/fish/implicit/share/completions/hg.fish:320 @@ -33514,20 +31145,17 @@ msgid "mark a branch as closed, hiding it from the branch list" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:108 -#, fuzzy msgid "amend the parent of the working directory" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:109 #: /tmp/fish/implicit/share/completions/hg.fish:423 -#, fuzzy msgid "use the secret phase for committing" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:118 -#, fuzzy msgid "untrusted configuration options" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:120 msgid "record a copy that has already occurred" @@ -33539,9 +31167,8 @@ msgid "forcibly copy over an existing managed file" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:127 -#, fuzzy msgid "change made by revision" -msgstr "Handbuch-Sektionen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:129 #: /tmp/fish/implicit/share/completions/hg.fish:146 @@ -33553,9 +31180,8 @@ msgstr "Handbuch-Sektionen" #: /tmp/fish/implicit/share/completions/hg.fish:357 #: /tmp/fish/implicit/share/completions/hg.fish:387 #: /tmp/fish/implicit/share/completions/hg.fish:400 -#, fuzzy msgid "use git extended diff format" -msgstr "Bearbeiten-Befehl rückgängig machen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:130 #: /tmp/fish/implicit/share/completions/hg.fish:147 @@ -33575,9 +31201,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:136 #: /tmp/fish/implicit/share/completions/hg.fish:336 -#, fuzzy msgid "number of lines of context to show" -msgstr "NUM Kontext-Zeilen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:137 #: /tmp/fish/implicit/share/completions/hg.fish:225 @@ -33592,14 +31217,12 @@ msgid "against the second parent" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:144 -#, fuzzy msgid "revisions to export" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:152 -#, fuzzy msgid "revisions to graft" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:153 msgid "resume interrupted graft" @@ -33611,28 +31234,24 @@ msgid "invoke editor on commit messages" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:155 -#, fuzzy msgid "append graft info to log message" -msgstr "E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:156 -#, fuzzy msgid "the current date as commit date" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:157 -#, fuzzy msgid "the current user as committer" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:163 msgid "end fields with NUL" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:164 -#, fuzzy msgid "print all revisions that match" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:166 #: /tmp/fish/implicit/share/completions/hg.fish:244 @@ -33640,18 +31259,16 @@ msgid "follow changeset history, or file history across copies and renames" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:167 -#, fuzzy msgid "ignore case when matching" -msgstr "Groß-/Kleinschreibung beim Dateinamenvergleich ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:168 msgid "print only filenames and revisions that match" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:169 -#, fuzzy msgid "print matching line numbers" -msgstr "Zeilennummer ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:170 msgid "only search files changed within revision range" @@ -33674,38 +31291,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:259 #: /tmp/fish/implicit/share/completions/hg.fish:282 #: /tmp/fish/implicit/share/completions/hg.fish:290 -#, fuzzy msgid "display using template map file" -msgstr "Alle Übereinstimmungen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:180 #: /tmp/fish/implicit/share/completions/hg.fish:228 #: /tmp/fish/implicit/share/completions/hg.fish:260 #: /tmp/fish/implicit/share/completions/hg.fish:283 #: /tmp/fish/implicit/share/completions/hg.fish:291 -#, fuzzy msgid "display with template" -msgstr "Alle Übereinstimmungen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:182 -#, fuzzy msgid "only help for extensions" -msgstr "Alle GNU-Erweiterungen deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:183 -#, fuzzy msgid "show only help for commands" -msgstr "Funktionstasten für Befehle nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:184 -#, fuzzy msgid "show topics matching keyword" -msgstr "Nur zutreffenden Teil anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:185 -#, fuzzy msgid "read history edits from the specified file" -msgstr "Benutzereingaben aus dem angegebenen Dateideskriptor lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:186 msgid "continue an edit already in progress" @@ -33720,63 +31331,52 @@ msgid "abort an edit in progress" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:189 -#, fuzzy msgid "changesets not found in destination" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:190 -#, fuzzy msgid "force outgoing even for unrelated repositories" -msgstr "Einträge in .cvspass für entferntes Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:191 -#, fuzzy msgid "first revision to be edited" -msgstr "Dem Muster entsprechende Einträge übergehen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:193 -#, fuzzy msgid "identify the specified revision" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:194 -#, fuzzy msgid "show local revision number" -msgstr "Satznummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:195 -#, fuzzy msgid "show global revision id" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:196 -#, fuzzy msgid "show branch" -msgstr "Hierarchie anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:197 -#, fuzzy msgid "show tags" -msgstr "Threads anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:198 msgid "show bookmarks" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:203 -#, fuzzy msgid "directory strip option for patch" -msgstr "Präfix zum Entfernen des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:205 -#, fuzzy msgid "don't commit, just update the working directory" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:206 -#, fuzzy msgid "apply patch without touching the working directory" -msgstr "Einen inversen Patch ohne Änderung der Arbeitskopie aufzeichnen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:207 msgid "apply patch to the nodes from which it was generated" @@ -33796,9 +31396,8 @@ msgid "show newest record first" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:217 -#, fuzzy msgid "file to store the bundles into" -msgstr "Beschreibung des Patchpaketes editieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:218 msgid "a remote changeset intended to be added" @@ -33817,9 +31416,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:221 #: /tmp/fish/implicit/share/completions/hg.fish:253 #: /tmp/fish/implicit/share/completions/hg.fish:276 -#, fuzzy msgid "show patch" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:223 #: /tmp/fish/implicit/share/completions/hg.fish:255 @@ -33830,21 +31428,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:224 #: /tmp/fish/implicit/share/completions/hg.fish:256 #: /tmp/fish/implicit/share/completions/hg.fish:279 -#, fuzzy msgid "do not show merges" -msgstr "Keine Flags anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:226 #: /tmp/fish/implicit/share/completions/hg.fish:258 #: /tmp/fish/implicit/share/completions/hg.fish:281 -#, fuzzy msgid "show the revision DAG" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:238 -#, fuzzy msgid "search the repository as it is in REV" -msgstr "Das Paketdepotverzeichnis angeben, in dem gearbeitet wird" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:239 #: /tmp/fish/implicit/share/completions/hg.fish:492 @@ -33852,61 +31447,52 @@ msgid "end filenames with NUL, for use with xargs" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:240 -#, fuzzy msgid "print complete paths from the filesystem root" -msgstr "Nur die Datenbank, nicht das Dateisystem aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:245 -#, fuzzy msgid "show revisions matching date spec" -msgstr "Nur zutreffenden Teil anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:246 -#, fuzzy msgid "show copied files" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:247 msgid "do case-insensitive search for a given text" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:248 -#, fuzzy msgid "show the specified revision or range" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:249 msgid "include revisions where files were removed" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:250 -#, fuzzy msgid "revisions committed by user" -msgstr "Befehlsgeschichte" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:251 -#, fuzzy msgid "show changesets within the given named branch" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:252 msgid "do not display revision or any of its ancestors" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:264 -#, fuzzy msgid "revision to display" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:265 -#, fuzzy msgid "list files from all revisions" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:267 -#, fuzzy msgid "revision to merge" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:268 msgid "review revisions to merge (no merge is performed)" @@ -33914,9 +31500,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:272 #: /tmp/fish/implicit/share/completions/hg.fish:310 -#, fuzzy msgid "a changeset intended to be included in the destination" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:275 #: /tmp/fish/implicit/share/completions/hg.fish:312 @@ -33924,9 +31509,8 @@ msgid "a specific branch you would like to push" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:289 -#, fuzzy msgid "show parents of the specified revision" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:294 msgid "set changeset phase to public" @@ -33945,9 +31529,8 @@ msgid "allow to move boundary backward" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:298 -#, fuzzy msgid "target revision" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:300 msgid "update to new branch head if changesets were pulled" @@ -33966,9 +31549,8 @@ msgid "bookmark to pull" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:309 -#, fuzzy msgid "force push" -msgstr "Ja erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:311 msgid "bookmark to push" @@ -33980,9 +31562,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:318 #: /tmp/fish/implicit/share/completions/hg.fish:418 -#, fuzzy msgid "show only the preceding applied patch" -msgstr "Nur zutreffenden Teil anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:319 #: /tmp/fish/implicit/share/completions/hg.fish:367 @@ -33990,45 +31571,38 @@ msgstr "Nur zutreffenden Teil anzeigen" #: /tmp/fish/implicit/share/completions/hg.fish:416 #: /tmp/fish/implicit/share/completions/hg.fish:417 #: /tmp/fish/implicit/share/completions/hg.fish:419 -#, fuzzy msgid "print first line of patch header" -msgstr "Überschrift ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:321 -#, fuzzy msgid "do not update the new working directories" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:323 -#, fuzzy msgid "location of source patch repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:327 -#, fuzzy msgid "keep patch file" -msgstr "Archiv-Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:334 #: /tmp/fish/implicit/share/completions/hg.fish:397 #: /tmp/fish/implicit/share/completions/hg.fish:432 -#, fuzzy msgid "ignore changes in the amount of white space" -msgstr "Änderung in der Anzahl von Worttrennern ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:340 msgid "finish all applied changesets" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:341 -#, fuzzy msgid "edit patch header" -msgstr "Kopfzeile nicht ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:342 -#, fuzzy msgid "keep folded patch files" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:345 #: /tmp/fish/implicit/share/completions/hg.fish:369 @@ -34037,58 +31611,50 @@ msgid "tolerate non-conflicting local changes" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:346 -#, fuzzy msgid "overwrite any local changes" -msgstr "Lokale Änderungen patchen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:347 #: /tmp/fish/implicit/share/completions/hg.fish:371 #: /tmp/fish/implicit/share/completions/hg.fish:379 #: /tmp/fish/implicit/share/completions/hg.fish:459 -#, fuzzy msgid "do not save backup copies of files" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:348 -#, fuzzy msgid "all patches and guards" -msgstr "Installierte Pakete synchronisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:349 msgid "drop all guards" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:350 -#, fuzzy msgid "import file in patch directory" -msgstr "Symbolischer Link auf Ordner" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:351 -#, fuzzy msgid "name of patch file" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:352 -#, fuzzy msgid "overwrite existing files" -msgstr "Neuere Dateien nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:353 msgid "place existing revisions under mq control" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:355 -#, fuzzy msgid "qpush after importing" -msgstr "Optionen zum Importieren von Schlüsseln" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:356 #: /tmp/fish/implicit/share/completions/hg.fish:386 #: /tmp/fish/implicit/share/completions/hg.fish:399 #: /tmp/fish/implicit/share/completions/hg.fish:511 -#, fuzzy msgid "edit commit message" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:358 #: /tmp/fish/implicit/share/completions/hg.fish:388 @@ -34115,53 +31681,44 @@ msgid "interactively record a new patch" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:368 -#, fuzzy msgid "pop all patches" -msgstr "Alle Patches mit ja beantworten" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:370 -#, fuzzy msgid "forget any local changes to patched files" -msgstr "Vorbereitung zum Editieren einer beobachteten Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:374 -#, fuzzy msgid "apply on top of local changes" -msgstr "Lokale Änderungen patchen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:375 -#, fuzzy msgid "apply the target patch to its recorded parent" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:376 -#, fuzzy msgid "list patch name in commit text" -msgstr "Patch-Name und Kommentar in Datei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:377 -#, fuzzy msgid "apply all patches" -msgstr "-Patch anwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:378 msgid "reorder patch series and apply only the patch" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:380 -#, fuzzy msgid "list all available queues" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:381 -#, fuzzy msgid "print name of active queue" -msgstr "Effektive Benutzerkennung ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:382 -#, fuzzy msgid "create new queue" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:383 msgid "rename active queue" @@ -34200,14 +31757,12 @@ msgid "interactively select changes to refresh" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:411 -#, fuzzy msgid "disable all guards" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:412 -#, fuzzy msgid "list all guards in series file" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:413 msgid "pop to before first guarded applied patch" @@ -34218,14 +31773,12 @@ msgid "pop, then reapply patches" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:415 -#, fuzzy msgid "print patches not in series" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:422 -#, fuzzy msgid "amend the parent of the working dir" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:436 msgid "record delete for missing files" @@ -34244,9 +31797,8 @@ msgid "select all unresolved files" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:448 -#, fuzzy msgid "list state of files needing merge" -msgstr "Die im Paket enthaltenen Auslöser-Skripte anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:449 msgid "mark files as resolved" @@ -34267,23 +31819,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:457 #: /tmp/fish/implicit/share/completions/hg.fish:521 -#, fuzzy msgid "tipmost revision matching date" -msgstr "Dem Muster entsprechende Einträge übergehen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:458 -#, fuzzy msgid "revert to the specified revision" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:465 msgid "name of access log file to write to" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:466 -#, fuzzy msgid "run server in background" -msgstr "Job im Hintergrund ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:467 msgid "used internally by daemon mode" @@ -34306,9 +31855,8 @@ msgid "prefix path to serve from (default: server root)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:472 -#, fuzzy msgid "name to show in web pages (default: working directory)" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:473 msgid "name of the hgweb config file (see \"hg help hgweb\")" @@ -34320,9 +31868,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:475 #: /tmp/fish/implicit/share/completions/hg.fish:476 -#, fuzzy msgid "for remote clients" -msgstr "Funktionen auflisten oder entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:477 msgid "web templates to use" @@ -34337,34 +31884,28 @@ msgid "use IPv6 in addition to IPv4" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:480 -#, fuzzy msgid "SSL certificate file" -msgstr "Zertifikatsregeln festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:482 -#, fuzzy msgid "show status of all files" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:483 -#, fuzzy msgid "show only modified files" -msgstr "Nur diff-Datei herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:484 -#, fuzzy msgid "show only added files" -msgstr "Aktualisieren: nur geänderte Dateien" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:485 -#, fuzzy msgid "show only removed files" -msgstr "Datei nicht erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:486 -#, fuzzy msgid "show only deleted (but tracked) files" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:487 msgid "show only files without changes" @@ -34375,28 +31916,24 @@ msgid "show only unknown (not tracked) files" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:489 -#, fuzzy msgid "show only ignored files" -msgstr "Aktualisieren: nur geänderte Dateien" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:491 -#, fuzzy msgid "show source of copied files" -msgstr "Indexfeld der Quelle verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:493 -#, fuzzy msgid "show difference from revision" -msgstr "Unterschiede zwischen Revisionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:494 msgid "list the changed files of a revision" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:499 -#, fuzzy msgid "strip specified revision" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:500 msgid "force removal of changesets, discard uncommitted changes" @@ -34419,74 +31956,62 @@ msgid "check for push and pull" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:507 -#, fuzzy msgid "force tag" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:508 msgid "make the tag local" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:509 -#, fuzzy msgid "revision to tag" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:510 -#, fuzzy msgid "remove a tag" -msgstr "Schlüssel entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:512 -#, fuzzy msgid "use as commit message" -msgstr "Copyright-Meldung beim Start unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:517 msgid "update to new branch head if changesets were unbundled" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:519 -#, fuzzy msgid "discard uncommitted changes (no backup)" -msgstr "Nicht aufgezeichnete Änderungen in der Arbeitskopie anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:520 -#, fuzzy msgid "update across branches if no uncommitted changes" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:1 -#, fuzzy msgid "Output file in given format" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:2 -#, fuzzy msgid "Specify tab length" -msgstr "Zeilenlänge angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:3 -#, fuzzy msgid "Name of the input file" -msgstr "Name des Quellpaketes" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:4 -#, fuzzy msgid "Name of the output file" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:5 #: /tmp/fish/implicit/share/completions/hugo.fish:57 #: /tmp/fish/implicit/share/completions/tex.fish:10 -#, fuzzy msgid "Output directory" -msgstr "mime-Typ ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:6 -#, fuzzy msgid "Set type of the source code" -msgstr "Name des Quellpaketes" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:7 msgid "Highlight style" @@ -34499,9 +32024,8 @@ msgstr "Aktualisierungs-Intervall" #: /tmp/fish/implicit/share/completions/htop.fish:2 #: /tmp/fish/implicit/share/completions/htop.fish:3 -#, fuzzy msgid "Start htop in monochrome mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:4 #: /tmp/fish/implicit/share/completions/mkdosfs.fish:22 @@ -34509,117 +32033,96 @@ msgstr "Im Ordner-Index starten" #: /tmp/fish/implicit/share/completions/pv.fish:32 #: /tmp/fish/implicit/share/completions/s3cmd.fish:41 #: /tmp/fish/implicit/share/completions/subl.fish:8 -#, fuzzy msgid "Show help and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:5 -#, fuzzy msgid "Show only given PIDs" -msgstr "Nur zutreffenden Teil anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:6 -#, fuzzy msgid "Monitor given user" -msgstr "Benutzer beobachten" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:7 -#, fuzzy msgid "Sort column" -msgstr "Nach Spalten auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:2 #: /tmp/fish/implicit/share/completions/s3cmd.fish:127 -#, fuzzy msgid "Debug output" -msgstr "Debug-Ausgabe aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:3 -#, fuzzy msgid "Enable logging" -msgstr "Entfernung der Zusatzinformationen abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:4 -#, fuzzy msgid "Log file" -msgstr "Log in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:6 #: /tmp/fish/implicit/share/completions/iptables.fish:25 #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:18 #: /tmp/fish/implicit/share/completions/s3cmd.fish:126 -#, fuzzy msgid "Verbose output" -msgstr "Ausführlicher Prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:7 -#, fuzzy msgid "Verbose logging" -msgstr "Angemeldete Benutzer auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:8 -#, fuzzy msgid "Hostname and path to the root" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:9 -#, fuzzy msgid "Include content marked as draft" -msgstr "include-Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:10 -#, fuzzy msgid "Include expired content" -msgstr "include-Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:11 -#, fuzzy msgid "Include content with publishdate in the future" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:12 -#, fuzzy msgid "Cache directory" -msgstr "Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:13 msgid "Canonicalize all relative URLs using baseurl" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:14 -#, fuzzy msgid "Remove files from destination not found in static directories" -msgstr "Dateien nach Archivierung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:15 -#, fuzzy msgid "Content directory" -msgstr "Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:16 -#, fuzzy msgid "Destination directory" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:17 -#, fuzzy msgid "Do not build 404 page" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:18 -#, fuzzy msgid "Disable different kinds of pages" -msgstr "Sparse-Dateien bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:19 -#, fuzzy msgid "Do not build RSS files" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:20 -#, fuzzy msgid "Do not build sitemap files" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:21 msgid "Add Git revision, date and author info to the pages" @@ -34634,29 +32137,24 @@ msgid "Help for hugo" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:24 -#, fuzzy msgid "Print missing translations" -msgstr "Kompressionsraten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:25 -#, fuzzy msgid "Ignore the cache directory" -msgstr "include-Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:26 -#, fuzzy msgid "Layout directory" -msgstr "mime-Typ ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:27 -#, fuzzy msgid "Do not sync permission mode of files" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:28 -#, fuzzy msgid "Do not sync modification time of files" -msgstr "Nach Veränderungsdatum sortieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:29 msgid "Pluralize titles in lists using inflect" @@ -34668,29 +32166,25 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:31 #: /tmp/fish/implicit/share/completions/hugo.fish:45 -#, fuzzy msgid "Render to memory" -msgstr "Speicherbedarf reduzieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:32 #: /tmp/fish/implicit/share/completions/hugo.fish:58 #: /tmp/fish/implicit/share/completions/hugo.fish:92 #: /tmp/fish/implicit/share/completions/hugo.fish:103 -#, fuzzy msgid "Source directory" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:33 #: /tmp/fish/implicit/share/completions/hugo.fish:46 -#, fuzzy msgid "Display memory and timing of different steps of the program" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:34 #: /tmp/fish/implicit/share/completions/hugo.fish:47 -#, fuzzy msgid "Display metrics about template executions" -msgstr "$ am Zeilenende anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:35 #: /tmp/fish/implicit/share/completions/hugo.fish:48 @@ -34698,24 +32192,20 @@ msgid "Calculate some improvement hints when combined with --templateMetrics" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:36 -#, fuzzy msgid "Theme to use" -msgstr "Mail an Benutzer senden" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:37 -#, fuzzy msgid "Themes directory" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:38 -#, fuzzy msgid "Use /filename.html instead of /filename/" -msgstr "purge anstelle von remove verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:39 -#, fuzzy msgid "Watch filesystem for changes and recreate as needed" -msgstr "Lokale Änderungen patchen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:40 msgid "Benchmark Hugo by building the site a number of times" @@ -34726,23 +32216,20 @@ msgid "Number of times to build the site" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:42 -#, fuzzy msgid "CPU profile file" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:43 msgid "Help for benchmark" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:44 -#, fuzzy msgid "Memory profile file" -msgstr "Datei nicht erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:49 -#, fuzzy msgid "Perform some verification checks" -msgstr "Inhaltsgenerierung durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:50 msgid "Help for check" @@ -34753,34 +32240,28 @@ msgid "Check system ulimit settings" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:52 -#, fuzzy msgid "Help for ulimit" -msgstr "Rekursionsgrenze" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:53 -#, fuzzy msgid "Print the site configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:54 -#, fuzzy msgid "Help for config" -msgstr "Hilfeabschnitt zu" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:55 -#, fuzzy msgid "Convert the content to different formats" -msgstr "Keine Verzeichnis-Hierarchie erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:56 -#, fuzzy msgid "Help for convert" -msgstr "Alias für atq" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:59 -#, fuzzy msgid "Enable less safe operations" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:60 msgid "Convert front matter to JSON" @@ -34807,14 +32288,12 @@ msgid "Help for toYAML" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:66 -#, fuzzy msgid "Print Hugo version and environment info" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:67 -#, fuzzy msgid "Help for env" -msgstr "Alias für atq" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:68 msgid "Collection of several useful generators" @@ -34829,18 +32308,16 @@ msgid "Generate shell autocompletion script for Hugo" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:71 -#, fuzzy msgid "Autocompletion file" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:72 msgid "Help for autocomplete" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:73 -#, fuzzy msgid "Autocompletion type" -msgstr "Pfad, bei dem Vervollständigung berücksichtigt werden soll" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:74 msgid "Generate CSS stylesheet for the Chroma code highlighter" @@ -34851,199 +32328,168 @@ msgid "Help for chromastyles" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:76 -#, fuzzy msgid "Style used for highlighting lines" -msgstr "Keine Hervorhebung bei Suche" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:77 -#, fuzzy msgid "Style used for line numbers" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:78 msgid "Highlighter style" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:79 -#, fuzzy msgid "Generate Markdown documentation for the Hugo CLI" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:80 -#, fuzzy msgid "Doc directory" -msgstr "Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:81 msgid "Help for doc" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:82 -#, fuzzy msgid "Generate man pages for the Hugo CLI" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:83 -#, fuzzy msgid "Man pages directory" -msgstr "Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:84 -#, fuzzy msgid "Help for man" -msgstr "Kurzes Format" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:85 -#, fuzzy msgid "Import your site from others" -msgstr "Auf Standardausgabe komprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:86 -#, fuzzy msgid "Help for import" -msgstr "Zu importierendes Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:87 msgid "Import from Jekyll" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:88 -#, fuzzy msgid "Allow import into non-empty target directory" -msgstr "Eine lokale Kopie eines weiteren Paketdepots erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:89 msgid "Help for jekyll" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:90 -#, fuzzy msgid "List various types of content" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:91 -#, fuzzy msgid "Help for list" -msgstr "Heimordner für %ls" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:93 -#, fuzzy msgid "List all drafts" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:94 msgid "Help for drafts" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:95 -#, fuzzy msgid "List all expired posts" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:96 -#, fuzzy msgid "Help for expired" -msgstr "Zeitgeber abgelaufen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:97 -#, fuzzy msgid "List all posts dated in the future" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:98 -#, fuzzy msgid "Help for future" -msgstr "Alias für atrm" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:99 -#, fuzzy msgid "Create new content" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:100 -#, fuzzy msgid "Editor to use" -msgstr "Mail an Benutzer senden" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:101 msgid "Help for new" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:102 -#, fuzzy msgid "Content type to create" -msgstr "Ausgabe an Datei anfügen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:104 -#, fuzzy msgid "Create a new site" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:105 -#, fuzzy msgid "Create site inside non-empty directory" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:106 msgid "Config and front matter format" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:107 -#, fuzzy msgid "Help for site" -msgstr "Heimordner für %ls" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:108 -#, fuzzy msgid "Create a new theme" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:109 -#, fuzzy msgid "Help for theme" -msgstr "Nach anderem System suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:110 -#, fuzzy msgid "Start high performance web server" -msgstr "Dienst starten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:111 -#, fuzzy msgid "Append port to baseurl" -msgstr "Eingabe an Auswahl anfügen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:112 msgid "Interface to which the server will bind" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:113 -#, fuzzy msgid "Enable full re-renders on changes" -msgstr "Fehler aus Paketen auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:114 msgid "Watch without enabling live browser reload on rebuild" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:115 -#, fuzzy msgid "Help for server" -msgstr "Proxy-Server verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:116 -#, fuzzy msgid "Port for live reloading" -msgstr "Dynamische Port-Weiterleitung" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:117 msgid "Interval to poll memory usage" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:118 -#, fuzzy msgid "Memory usage log file" -msgstr "Veraltete Dateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:119 msgid "Navigate to changed content file on live browser reload" @@ -35058,9 +32504,8 @@ msgid "Port on which the server will listen" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:122 -#, fuzzy msgid "Render to destination directory" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:123 msgid "Reset the content draft status" @@ -35071,58 +32516,48 @@ msgid "Help for undraft" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:125 -#, fuzzy msgid "Print the version number of Hugo" -msgstr "Zeilennummer ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:126 -#, fuzzy msgid "Help for version" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:1 msgid "Only send ipc message and suppress output" msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:2 -#, fuzzy msgid "Display version number and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:4 -#, fuzzy msgid "Set socket" -msgstr "Socket" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:5 -#, fuzzy msgid "Specify ipc message type" -msgstr "E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:1 -#, fuzzy msgid "Convert from specified encoding" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:2 -#, fuzzy msgid "Convert to specified encoding" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:3 -#, fuzzy msgid "List known coded character sets" -msgstr "Standardzeichensatz festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:4 -#, fuzzy msgid "Output file" -msgstr "Ausgabedatei" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:5 -#, fuzzy msgid "Print progress information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:2 #: /tmp/fish/implicit/share/completions/mogrify.fish:4 @@ -35143,9 +32578,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:26 -#, fuzzy msgid "Display the number of unique colors in the image" -msgstr "Zeilennummer für jede Zeile anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:30 msgid "Replace each pixel with its complementary color" @@ -35160,9 +32594,8 @@ msgid "Print all group ids" msgstr "Alle Gruppenkennungen ausgeben" #: /tmp/fish/implicit/share/completions/id.fish:3 -#, fuzzy msgid "Print name, not number" -msgstr "Zeilennummer ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/id.fish:4 msgid "Print real ID, not effective" @@ -35201,131 +32634,108 @@ msgid "Reports interface existence via return code" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:2 -#, fuzzy msgid "Print out the whole config of iface" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:3 msgid "Print out yes or no according to existence" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:4 -#, fuzzy msgid "Print out the address" -msgstr "Wichtige Abhängigkeiten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:5 -#, fuzzy msgid "Print netmask" -msgstr "Zähler ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:6 -#, fuzzy msgid "Print network address" -msgstr "Rechnernamen des Netzwerkknotens ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:7 -#, fuzzy msgid "Print broadcast" -msgstr "Datenbank ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:8 -#, fuzzy msgid "Print mtu" -msgstr "Zähler ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:9 -#, fuzzy msgid "Print out the hardware address" -msgstr "Hardwareadresse verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:10 -#, fuzzy msgid "Print flags" -msgstr "Dateiname ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:11 -#, fuzzy msgid "Print all statistics on input" -msgstr "Prototypen in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:12 -#, fuzzy msgid "Print # of in packets" -msgstr "Anmeldeprozess ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:13 -#, fuzzy msgid "Print # of in bytes" -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:14 -#, fuzzy msgid "Print # of in errors" -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:15 -#, fuzzy msgid "Print # of in drops" -msgstr "APM-Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:16 -#, fuzzy msgid "Print # of in fifo overruns" -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:17 -#, fuzzy msgid "Print # of in compress" -msgstr "Anmeldeprozess ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:18 -#, fuzzy msgid "Print # of in multicast" -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:19 -#, fuzzy msgid "Print all statistics on output" -msgstr "Wortzählung ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:20 -#, fuzzy msgid "Print # of out packets" -msgstr "Byte-Offset von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:21 -#, fuzzy msgid "Print # of out bytes" -msgstr "Byte-Offset von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:22 -#, fuzzy msgid "Print # of out errors" -msgstr "Vollständige Datensätze ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:23 -#, fuzzy msgid "Print # of out drops" -msgstr "Vollständige Datensätze ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:24 msgid "Print # of out fifo overruns" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:25 -#, fuzzy msgid "Print # of out collisions" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:26 msgid "Print # of out carrier loss" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:27 -#, fuzzy msgid "Print # of out multicast" -msgstr "Byte-Offset von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:28 msgid "Print # of incoming bytes per second" @@ -35336,9 +32746,8 @@ msgid "Print # of outgoing bytes per second" msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:2 -#, fuzzy msgid "Include window border in the output image" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:10 msgid "Obtain image by descending window hierarchy" @@ -35370,27 +32779,24 @@ msgid "Seconds delay between snapshots [value]" msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:37 -#, fuzzy msgid "Select image from root window" -msgstr "Root-Fenster auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:40 msgid "Operate silently, i.e. don't ring any bells " msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:41 -#, fuzzy msgid "Number of screen snapshots [value]" -msgstr "Alle Zeilen nummerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:47 msgid "Constant, Edge, Mirror, or Tile [method]" msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:48 -#, fuzzy msgid "Select window with this id or name [id]" -msgstr "Fenster über Name auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:52 msgid "Preferred size or location of the image [geometry]" @@ -35402,78 +32808,64 @@ msgid "Make this color transparent within the image [color]" msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:1 -#, fuzzy msgid "Start the service" -msgstr "Dienst starten" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:2 -#, fuzzy msgid "Stop the service" -msgstr "Dienst anhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:3 -#, fuzzy msgid "Restart the service" -msgstr "Dienst starten" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:4 -#, fuzzy msgid "Reload Configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:5 -#, fuzzy msgid "Force reloading configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:6 -#, fuzzy msgid "Print the status of the service" -msgstr "Byte-Offset von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:1 -#, fuzzy msgid "Read commands from file or stdin" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:2 -#, fuzzy msgid "Don't terminate on errors in batch mode" -msgstr "Fehler in der Befehlszeile tolerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:3 -#, fuzzy msgid "Print the version" -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:4 -#, fuzzy msgid "Output more information" -msgstr "Inode-Information auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:5 -#, fuzzy msgid "Output more detailed information" -msgstr "Inode-Information auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:6 -#, fuzzy msgid "Specify maximum number of loops for 'ip addr flush'" -msgstr "Gibt die Anzahl zu sendender Bytes an" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:7 msgid "The protocol family to use" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:8 -#, fuzzy msgid "Short for --family inet" -msgstr "Kurzes Format" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:9 -#, fuzzy msgid "Short for --family inet6" -msgstr "Kurzes Format" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:10 msgid "Short for --family bridge" @@ -35492,23 +32884,20 @@ msgid "Short for --family link" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:14 -#, fuzzy msgid "Output on one line" -msgstr "Nur die ersten von gleichen Zeilen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:15 msgid "Resolve names and print them instead of addresses" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:16 -#, fuzzy msgid "Use specified network namespace" -msgstr "Angegebenen Schlüsselserver verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:17 -#, fuzzy msgid "Execute command for all objects" -msgstr "Befehl ausführen, als ob es Teil von .wgetrc wäre" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:1 msgid "Create a set identified with SETNAME" @@ -35519,9 +32908,8 @@ msgid "Add a given entry to a SET" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:3 -#, fuzzy msgid "Delete an entry from a SET" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:4 msgid "Test whether an entry is in a set" @@ -35529,9 +32917,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:5 #: /tmp/fish/implicit/share/completions/ipset.fish:6 -#, fuzzy msgid "Destroy the specified set or all sets" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:7 msgid "a" @@ -35542,71 +32929,61 @@ msgid "Output format to the list command" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:10 -#, fuzzy msgid "Suppress any output" -msgstr "Normale Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:11 msgid "Enforce name lookup" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:12 -#, fuzzy msgid "List just the names of the sets" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:13 msgid "List the set names and headers" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:14 -#, fuzzy msgid "Filename instead of stdout" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:1 -#, fuzzy msgid "Append rules to the end of a chain" -msgstr "Dateien an Archiv anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:2 msgid "Check whether a matching rule exists in a chain" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:3 -#, fuzzy msgid "Delete rules from a chain" -msgstr "Aus Archiv löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:4 #: /tmp/fish/implicit/share/completions/iptables.fish:20 -#, fuzzy msgid "Specify the target of a rule" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:5 -#, fuzzy msgid "Specify a match to use" -msgstr "Befehl an die Shell übergeben" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:6 -#, fuzzy msgid "Insert rules in the beginning of a chain" -msgstr "Bedeutung der Treffer umkehren" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:7 msgid "Replace a rule in a chain" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:8 -#, fuzzy msgid "List all rules in a chain" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:9 -#, fuzzy msgid "Print all rules in a chain." -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:10 msgid "Delete ALL rules in a chain" @@ -35617,9 +32994,8 @@ msgid "Zero the packet and byte counters in chains" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:12 -#, fuzzy msgid "Create a new user-defined chain by the given name" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:13 msgid "Delete the optional user-defined chain specified" @@ -35638,9 +33014,8 @@ msgid "The protocol of the rule or of the packet to check" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:18 -#, fuzzy msgid "Source specification" -msgstr "Simulation durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:19 msgid "Destination specification" @@ -35668,14 +33043,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:27 #: /tmp/fish/implicit/share/completions/pv.fish:11 -#, fuzzy msgid "Numeric output" -msgstr "nur numerische Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:28 -#, fuzzy msgid "Expand numbers" -msgstr "Zeilennummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:29 msgid "When listing rules, add line numbers" @@ -35686,9 +33059,8 @@ msgid "The table to operate on" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:31 -#, fuzzy msgid "Use this command to load modules" -msgstr "Benutze zur Erstellung" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:2 msgid "Automock all files by default" @@ -35707,9 +33079,8 @@ msgid "Whether to use the transform cache" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:6 -#, fuzzy msgid "Disable the cache" -msgstr "Server-seitigen Cache deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:7 msgid "The directory where Jest should store its dependency information" @@ -35724,9 +33095,8 @@ msgid "Automatically clear mock calls and instances every test" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:10 -#, fuzzy msgid "Alias for --coverage" -msgstr "Alias für atq" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:11 msgid "" @@ -35742,14 +33112,12 @@ msgid "Forces test results output color highlighting" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:14 -#, fuzzy msgid "Alias for --color" -msgstr "Alias für atq" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:15 -#, fuzzy msgid "The path to a jest config file" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:16 msgid "" @@ -35762,9 +33130,8 @@ msgid "The directory where Jest should output its coverage files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:18 -#, fuzzy msgid "Pattern of files to ignore" -msgstr "zu ignorierenden HTML-Markierungen" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:19 msgid "A list of reporter names that Jest uses when writing coverage reports" @@ -35777,24 +33144,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:21 -#, fuzzy msgid "Print debugging info about your jest config" -msgstr "Debug-Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:22 -#, fuzzy msgid "The test environment used for all tests" -msgstr "Behandlung von Umgebungsvariablen" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:23 -#, fuzzy msgid "Use this flag to show full diffs instead of a patch" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:24 -#, fuzzy msgid "Find related tests for a list of source files" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:25 msgid "Force Jest to exit after all tests have completed running" @@ -35809,9 +33172,8 @@ msgid "A JSON string with map of variables for the haste module system" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:28 -#, fuzzy msgid "Prints the test results in JSON" -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:29 msgid "Will run all tests affected by file changes in the last commit made" @@ -35830,9 +33192,8 @@ msgid "Maps code coverage reports against original source code" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:33 -#, fuzzy msgid "Specifies the maximum number of workers" -msgstr "Maximale Zahl offener Datei-Deskriptoren" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:34 msgid "Directory names to be searched recursively up from the requiring module" @@ -35849,27 +33210,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:37 -#, fuzzy msgid "Modules to ignore" -msgstr "zu ignorierenden HTML-Markierungen" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:38 msgid "An alternative API to setting the NODE_PATH env variable" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:39 -#, fuzzy msgid "Disables stack trace in test results output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:40 msgid "Activates notifications for test results" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:41 -#, fuzzy msgid "Run tests based on the changed files" -msgstr "Aktualisieren: nur geänderte Dateien" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:42 msgid "A file where to write test results" @@ -35888,9 +33246,8 @@ msgid "A list of custom reporters for the test suite" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:46 -#, fuzzy msgid "Automatically reset mock state between every test" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:47 msgid "Whatever to reset the module registry for every test" @@ -35901,18 +33258,16 @@ msgid "A JSON string which allows the use of a custom resolver" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:49 -#, fuzzy msgid "The root directory that Jest should scan for tests and modules within" -msgstr "Das Paketdepotverzeichnis angeben, in dem gearbeitet wird" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:50 msgid "Paths to directories that Jest should use to search for files in" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:51 -#, fuzzy msgid "Run all tests serially in the current process" -msgstr "Befehl im aktuellen Prozess ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:52 msgid "The paths to modules to configure the testing environment" @@ -35923,55 +33278,48 @@ msgid "The path to a module to configure the testing framework" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:54 -#, fuzzy msgid "Print your jest config and then exits" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:55 -#, fuzzy msgid "Prevent tests from printing messages through the console" -msgstr "Fehlermeldungen per syslog senden" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:56 msgid "Snapshot serializer modules Jest should use for snapshot testing" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:57 -#, fuzzy msgid "Alias for --env" -msgstr "Alias für atq" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:58 msgid "The glob patterns Jest uses to detect test files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:59 -#, fuzzy msgid "Run only tests with a name that matches the regex pattern" -msgstr "Den Mustern in der Datei entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:60 msgid "Paths to skip" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:61 -#, fuzzy msgid "Regex for test paths" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:62 msgid "The regexp pattern Jest uses to detect test files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:63 -#, fuzzy msgid "Allows the use of a custom results processor" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:64 -#, fuzzy msgid "Allows to specify a custom test runner" -msgstr "Autorkennung angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:65 msgid "This option sets the URL for the jsdom environment" @@ -36001,9 +33349,8 @@ msgid "Use this flag to re-record snapshots" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:71 -#, fuzzy msgid "Divert all output to stderr" -msgstr "Audio-Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:72 msgid "Display individual test results with the test suite hierarchy" @@ -36012,18 +33359,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:73 #: /tmp/fish/implicit/share/completions/snap.fish:15 #: /tmp/fish/implicit/share/completions/vagrant.fish:3 -#, fuzzy msgid "Print the version and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:74 msgid "Watch files for changes and rerun tests related to changed files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:75 -#, fuzzy msgid "Watch files for changes and rerun all tests" -msgstr "Lokale Änderungen patchen" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:76 msgid "Whether to use watchman for file crawling" @@ -36034,29 +33379,24 @@ msgid "Disable using watchman for file crawling" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:1 -#, fuzzy msgid "Enable debugger" -msgstr "Entfernung der Zusatzinformationen abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:2 -#, fuzzy msgid "Output usage information" -msgstr "Kann Benutzerinformation nicht abrufen" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:3 -#, fuzzy msgid "Output version number" -msgstr "Versionsnummer" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:4 -#, fuzzy msgid "Create a new JHipster application" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:5 -#, fuzzy msgid "Deploy the current application to AWS" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:6 msgid "Create pipeline scripts for popular CI tools" @@ -36083,28 +33423,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:11 -#, fuzzy msgid "Create a JDL file from the existing entities" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:12 -#, fuzzy msgid "Deploy the current application to Heroku" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:13 msgid "Create entities from the JDL file passed in argument" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:14 -#, fuzzy msgid "Display information about your current project and system" -msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:15 -#, fuzzy msgid "Deploy the current application to Kubernetes" -msgstr "Überprüfungsstatus von Schlüsselsignaturen nicht zwischenspeichern" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:16 msgid "" @@ -36113,38 +33449,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:17 -#, fuzzy msgid "Deploy the current application to OpenShift" -msgstr "Version und unterstützte Algorithmen anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:18 -#, fuzzy msgid "Deploy the current application to Rancher" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:19 -#, fuzzy msgid "Create a new JHipster server-side application" -msgstr "Ein oder mehrere Dateien/Verzeichnisse aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:20 -#, fuzzy msgid "Create a new Spring service bean" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:21 msgid "Upgrade the JHipster version and the generated application" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:22 -#, fuzzy msgid "Print command completion script" -msgstr "Befehle auf Standardfehlerausgabe ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/jobs.fish:2 -#, fuzzy msgid "Show the process id of each process in the job" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/jobs.fish:3 msgid "Show group id of job" @@ -36167,43 +33497,36 @@ msgid "OR" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:4 -#, fuzzy msgid "Prints a short help text and exits" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:5 -#, fuzzy msgid "Prints a short version string and exits" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:7 -#, fuzzy msgid "Show all fields in full" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:8 -#, fuzzy msgid "Show live tail of entries" -msgstr "Arp-Einträge anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:9 -#, fuzzy msgid "Controls the number of journal lines" -msgstr "Anzahl der Argumente zählen" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:10 msgid "Show all lines, even in follow mode" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:11 -#, fuzzy msgid "Controls the formatting" -msgstr "Kann Benutzerinformation nicht abrufen" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:12 -#, fuzzy msgid "Suppress warning about normal user" -msgstr "Warnung über die Verwendung unsicheren Speichers unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:13 msgid "Show entries interleaved from all journals" @@ -36214,9 +33537,8 @@ msgid "Show data only from a certain boot" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:15 -#, fuzzy msgid "Show data only of the specified unit" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:16 msgid "Filter by priority" @@ -36239,23 +33561,20 @@ msgid "Print all possible data values" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:21 -#, fuzzy msgid "Specify journal directory" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:22 msgid "Generate a new 128 bit ID" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:23 -#, fuzzy msgid "Show internal header information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:24 -#, fuzzy msgid "Shows the current disk usage" -msgstr "Quellpaket anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:25 msgid "Generate Forward Secure Sealing key pair" @@ -36266,41 +33585,36 @@ msgid "Change interval for the sealing" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:27 -#, fuzzy msgid "Check journal for internal consistency" -msgstr "Paketdepot auf Konsistenz prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:28 msgid "Specifies FSS key for --verify" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:1 -#, fuzzy msgid "Output version and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:2 msgid "Use application/json-seq MIME type scheme" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:3 -#, fuzzy msgid "Parse input in streaming fasion" -msgstr "PKG-Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:4 msgid "Run filter just once in large array" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:5 -#, fuzzy msgid "Don't parse as JSON but as string" -msgstr "Keinen Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:6 -#, fuzzy msgid "Ignore input and treat it as null" -msgstr "Erzwinge die Behandlung der Eingabe als HTML" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:7 msgid "Don't pretty-print JSON" @@ -36315,23 +33629,20 @@ msgid "Use given number of spaces for indentation" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:11 -#, fuzzy msgid "Don't color output" -msgstr "Keine ausführliche Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:12 -#, fuzzy msgid "Replace UTF-8 characters with escape sequences" -msgstr "Nicht darstellbare Zeichen durch '?' ersetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:13 msgid "Flush output after each JSON object is printed" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:14 -#, fuzzy msgid "Sort object keys in output" -msgstr "Keine ausführliche Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:15 msgid "If output is string ouput its content directly to stdout" @@ -36342,62 +33653,52 @@ msgid "Raw ouput without newlines" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:17 -#, fuzzy msgid "Read filter from file" -msgstr "Job aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:18 msgid "Prepend given directory to search modules" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:19 -#, fuzzy msgid "Set exit status" -msgstr "Exit-Status des Jobs verneinen" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:20 -#, fuzzy msgid "Set variable" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:21 -#, fuzzy msgid "Set JSON-encoded variable" -msgstr "CVS-Benutzervariable festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:22 -#, fuzzy msgid "Read JSON in file and bind to given variable" -msgstr "Eine Eingabezeile in Variablen einlesen" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:23 -#, fuzzy msgid "Read JSON in file and bind to given variable [see man]" -msgstr "Eine Eingabezeile in Variablen einlesen" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:24 msgid "Run tests in given file" msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:1 -#, fuzzy msgid "List available modules" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:2 -#, fuzzy msgid "Show author information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:3 -#, fuzzy msgid "Show license information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:4 -#, fuzzy msgid "Set a language" -msgstr "Untertitel-Sprache" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:5 msgid "Don't show main window" @@ -36412,29 +33713,24 @@ msgid "Icon for the module" msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:8 -#, fuzzy msgid "Title for the window" -msgstr "Root-Fenster auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:9 -#, fuzzy msgid "Show version information and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:10 -#, fuzzy msgid "Show help information and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:1 -#, fuzzy msgid "List all devices" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:2 -#, fuzzy msgid "List available (paired and reachable) devices" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:3 msgid "" @@ -36455,9 +33751,8 @@ msgid "Find the said device by ringing it." msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:7 -#, fuzzy msgid "Stop pairing to a said device" -msgstr "Stoppe und starte Dienst" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:8 msgid "Sends a ping to said device" @@ -36468,74 +33763,60 @@ msgid "Same as ping but you can set the message to display" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:10 -#, fuzzy msgid "Share a file to a said device" -msgstr "Vorgegebene Datei wurde geändert" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:11 -#, fuzzy msgid "Display the notifications on a said device" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:12 -#, fuzzy msgid "Lock the specified device" -msgstr "Angegebenen Schlüsselserver verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:13 -#, fuzzy msgid "Sends an SMS. Requires destination" -msgstr "Vervollständigung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:14 -#, fuzzy msgid "Phone number to send the message" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:15 -#, fuzzy msgid "Device ID" -msgstr "Dienst anhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:16 -#, fuzzy msgid "Device Name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:17 -#, fuzzy msgid "Get encryption info about said device" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:18 -#, fuzzy msgid "Lists remote commands and their ids" -msgstr "Abhängigkeiten für dieses Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:19 -#, fuzzy msgid "Executes a remote command by id" -msgstr "Argument als Befehl ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:20 -#, fuzzy msgid "Displays this help." -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:21 -#, fuzzy msgid "Displays version information." -msgstr "Komprimierungsinformation auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:22 -#, fuzzy msgid "Show author information." -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:23 -#, fuzzy msgid "Show license information." -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:24 msgid "The base file name of the desktop entry for this application." @@ -36580,9 +33861,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/killall.fish:11 -#, fuzzy msgid "List names of available signals and exit" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/killall.fish:12 msgid "Case sensitive argument match for processed" @@ -36605,14 +33885,12 @@ msgid "Limit to processes matching specified PROCNAME" msgstr "" #: /tmp/fish/implicit/share/completions/killall.fish:18 -#, fuzzy msgid "Do not skip zombies" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:1 -#, fuzzy msgid "Test if kitchen has yet to be given the main command" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:2 #: /tmp/fish/implicit/share/completions/kitchen.fish:3 @@ -36620,9 +33898,8 @@ msgid "Describe available commands or one specific command" msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:4 -#, fuzzy msgid "Lists one or more instances" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:5 msgid "List the name of each instance only, one per line" @@ -36634,9 +33911,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:2 #: /tmp/fish/implicit/share/completions/latexmk.fish:32 -#, fuzzy msgid "never use bibtex" -msgstr "Benutzerattribute nicht überprüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:3 msgid "use bibtex when needed, but only if the bib files exist" @@ -36651,9 +33927,8 @@ msgid "Set contrast or intensity of banner" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:6 -#, fuzzy msgid "Set scale for banner" -msgstr "Datum in Zukunft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:7 msgid "list commands used by latexmk for processing files" @@ -36680,14 +33955,12 @@ msgid "Do NOT change to directory of source file when processing it" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:13 -#, fuzzy msgid "Show list of dependent files after processing" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:14 -#, fuzzy msgid "Do not show list of dependent files" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:15 msgid "" @@ -36700,9 +33973,8 @@ msgid "Filter to apply to dvi file" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:17 -#, fuzzy msgid "generate dvi" -msgstr "dired-Ausgabe erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:18 msgid "turn off required dvi" @@ -36729,23 +34001,20 @@ msgid "process regardless of file timestamps" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:24 -#, fuzzy msgid "Turn off -g" -msgstr "FTP-Mustererkennung abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:25 -#, fuzzy msgid "print help" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:26 msgid "set basename of output file(s) to STRING" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:27 -#, fuzzy msgid "force landscape mode" -msgstr "Ansi-Modus benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:28 msgid "turn off -l" @@ -36772,9 +34041,8 @@ msgid "omit automatic reading of system, user and project rc files" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:35 -#, fuzzy msgid "set name of directory for output files" -msgstr "Datei-Deskriptor für Eingabe" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:36 msgid "generate pdf by pdflatex" @@ -36797,14 +34065,12 @@ msgid "turn off pdf" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:41 -#, fuzzy msgid "generate postscript" -msgstr "Keine post-Skripte ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:42 -#, fuzzy msgid "turn off postscript" -msgstr "Das test-Skript ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:43 msgid "Filter to apply to postscript file" @@ -36831,9 +34097,8 @@ msgid "preview document" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:49 -#, fuzzy msgid "turn off preview mode" -msgstr "Autosplit-Modus aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:50 msgid "preview document and continuously update" @@ -36849,9 +34114,8 @@ msgid "silence progress messages from called programs" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:53 -#, fuzzy msgid "Read custom RC file" -msgstr "URLs aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:54 msgid "Use -recorder option for (pdf)latex" @@ -36866,14 +34130,12 @@ msgid "Show list of rules after processing" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:57 -#, fuzzy msgid "Do not show list of rules after processing" -msgstr "Integrierten Präprozessor nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:59 -#, fuzzy msgid "show CPU time used" -msgstr "Zeittyp anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:60 msgid "don't show CPU time used" @@ -36889,9 +34151,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:63 #: /tmp/fish/implicit/share/completions/latexmk.fish:65 -#, fuzzy msgid "display program version" -msgstr "Paketsatz anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:64 msgid "display usual progress messages from called programs" @@ -36926,23 +34187,20 @@ msgid "Write the classpath of the current project to output-file." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:3 -#, fuzzy msgid "Remove all files from project's target-path." -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:4 msgid "Compile Clojure source into .class files." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:5 -#, fuzzy msgid "Build jar and deploy to remote repository." -msgstr "Neue/s Datei/Verzeichnis zum Paketdepot hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:6 -#, fuzzy msgid "Show details about dependencies." -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:7 msgid "Higher-order task to perform other tasks in succession." @@ -36953,18 +34211,16 @@ msgid "Display a list of tasks or help for a given task or subtask." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:9 -#, fuzzy msgid "Install current project to the local repository." -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:10 msgid "Package up all the project's files into a jar file." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:11 -#, fuzzy msgid "Compile Java source files." -msgstr "Quellpakete kompilieren" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:12 msgid "Start a Light Table client for this project" @@ -37003,9 +34259,8 @@ msgid "List all available profiles or display one if given an argument." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:21 -#, fuzzy msgid "Run the project's tests." -msgstr "Das test-Skript ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:22 msgid "Run a task without nesting the project's JVM inside Leiningen's." @@ -37024,9 +34279,8 @@ msgid "Upgrade Leiningen to specified version or latest stable." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:26 -#, fuzzy msgid "Print version for Leiningen and the current JVM." -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:27 msgid "Apply the given task with the profile(s) specified." @@ -37101,14 +34355,12 @@ msgid "Display status column" msgstr "Statusspalte anzeigen" #: /tmp/fish/implicit/share/completions/less.fish:19 -#, fuzzy msgid "Specify key bindings file" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:21 -#, fuzzy msgid "Prompt with percentage" -msgstr "Prompt-Anzeige" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:22 msgid "Verbose prompt" @@ -37131,9 +34383,8 @@ msgid "Log to file, overwrite" msgstr "Protokoll in Datei, überschreiben" #: /tmp/fish/implicit/share/completions/less.fish:27 -#, fuzzy msgid "Start at first occurrence of pattern" -msgstr "Start beim ersten Vorkommen des Musters" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:28 msgid "Prompt string" @@ -37162,9 +34413,8 @@ msgid "Multiple blank lines sqeezed" msgstr "Mehrere Leerzeilen zusammengefasst" #: /tmp/fish/implicit/share/completions/less.fish:36 -#, fuzzy msgid "Do not fold long lines" -msgstr "Lange Zeilen nicht umbrechen" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:37 msgid "Edit tag" @@ -37223,14 +34473,12 @@ msgid "Characters to scroll on left/right arrows" msgstr "Anzahl zu blätternde Zeichen bei Links-/Rechts-Pfeilen" #: /tmp/fish/implicit/share/completions/light.fish:3 -#, fuzzy msgid "Get value (default)" -msgstr "(Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:4 -#, fuzzy msgid "Set value" -msgstr "Datum festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:5 msgid "Add value" @@ -37241,9 +34489,8 @@ msgid "Subtract value" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:7 -#, fuzzy msgid "List controllers" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:8 msgid "Restore brightness" @@ -37254,28 +34501,24 @@ msgid "Save brightness" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:10 -#, fuzzy msgid "Brightness (default)" -msgstr "(Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:11 -#, fuzzy msgid "Maximum brightness" -msgstr "Maximale Wiederholungen" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:12 msgid "Minimum cap" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:13 -#, fuzzy msgid "Selects controller automatically (default)" -msgstr "Vollständige Befehlszeile selektieren (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:14 -#, fuzzy msgid "Specify controller to use" -msgstr "Zeitablauf für Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:15 msgid "Interpret & output values in percent" @@ -37286,39 +34529,33 @@ msgid "Interpret & output values in raw mode" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:17 -#, fuzzy msgid "Sets the verbosity level" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:1 -#, fuzzy msgid "Make symbolic links instead of hard links" -msgstr "Symbolische Links als Links speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:2 #: /tmp/fish/implicit/share/completions/ln.fish:3 -#, fuzzy msgid "Make a backup of each existing destination file" -msgstr "Sicherung jeder existierenden Zieldatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:4 msgid "Allow superuser to attempt to hard link directories" msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:5 -#, fuzzy msgid "Remove existing destination files" -msgstr "Sicherung jeder existierenden Zieldatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:6 -#, fuzzy msgid "Prompt whether to remove destinations" -msgstr "Abfragen, ob der lange Kommentar editiert werden soll" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:7 -#, fuzzy msgid "Dereference TARGETs that are symbolic links" -msgstr "Symbolische Verweise dereferenzieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:8 msgid "Treat symlink to directory as if it were a file" @@ -37341,9 +34578,8 @@ msgid "Treat LINK_NAME as a normal file" msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:13 -#, fuzzy msgid "Print name of each linked file" -msgstr "Zeige Name, Zeile und Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:1 #: /tmp/fish/implicit/share/completions/timedatectl.fish:4 @@ -37365,30 +34601,26 @@ msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:4 #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:37 #: /tmp/fish/implicit/share/completions/timedatectl.fish:7 -#, fuzzy msgid "Print a short help text and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:5 #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:38 #: /tmp/fish/implicit/share/completions/timedatectl.fish:8 -#, fuzzy msgid "Print a short version string and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:1 msgid "Match all non-option arguments" msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:2 -#, fuzzy msgid "Match against the base name of the file" -msgstr "Nur die Datenbank, nicht das Dateisystem aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:3 -#, fuzzy msgid "Print only the number of matches found" -msgstr "Nur Anzahl von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:4 msgid "Use different DATABASE file[s]" @@ -37408,14 +34640,12 @@ msgid "Treat broken symbolic links as if they were existing" msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:9 -#, fuzzy msgid "Ignore case distinctions" -msgstr "Unterschiede bei Groß-/Kleinschreibung ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:10 -#, fuzzy msgid "Limit the number of matches" -msgstr "Nur Anzahl von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:11 msgid "Use ASCII NUL as a separator" @@ -37430,20 +34660,17 @@ msgid "Match against the whole name of the file" msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:14 -#, fuzzy msgid "The pattern is a regular expression" -msgstr "Muster ist ein regulärer Ausdruck" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:15 -#, fuzzy msgid "Print a summary of the options and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:16 #: /tmp/fish/implicit/share/completions/xmms.fish:11 -#, fuzzy msgid "Print the version number and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/logkeys.fish:1 msgid "Starts the keylogging daemon" @@ -37458,9 +34685,8 @@ msgid "Set ouput LOGFILE" msgstr "" #: /tmp/fish/implicit/share/completions/logkeys.fish:4 -#, fuzzy msgid "Use file as input KEYMAP" -msgstr "Datei als Eingabe" +msgstr "" #: /tmp/fish/implicit/share/completions/logkeys.fish:5 msgid "Use DEVICE as keyboard input" @@ -37503,9 +34729,8 @@ msgid "Sets a standard System V interface script or PPD file " msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:4 -#, fuzzy msgid "Deletes the named option from printer" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:5 msgid "" @@ -37595,18 +34820,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:1 -#, fuzzy msgid "Prints files to the named printer" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:2 msgid "Specifies an existing job to modify" msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:3 -#, fuzzy msgid "Sets the number of copies to print from 1 to 100" -msgstr "Gibt die Anzahl zu sendender Bytes an" +msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:4 msgid "Sets the job priority from 1 (lowest) to 100 (highest)" @@ -37618,18 +34841,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:6 #: /tmp/fish/implicit/share/completions/lpr.fish:2 -#, fuzzy msgid "Sets the job name" -msgstr "Volume-Namen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:7 msgid "Specifies when the job should be printed" msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:8 -#, fuzzy msgid "Specify the page ranges" -msgstr "http-Benutzername angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lpinfo.fish:1 msgid "Shows a \"long\" listing of devices or drivers" @@ -37642,22 +34863,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpinfo.fish:3 -#, fuzzy msgid "" "Specifies a comma-separated list of device or PPD schemes that " "should be excluded from the results" msgstr "" -"Geben Sie eine Komma-getrennte Liste von Verzeichnissen an, die " -"ausgeschlossen werden soll" #: /tmp/fish/implicit/share/completions/lpinfo.fish:4 -#, fuzzy msgid "" "Specifies a comma-separated list of device or PPD schemes that should be " "included in the results" msgstr "" -"Geben Sie eine Komma-getrennte Liste von Verzeichnissen an, die " -"ausgeschlossen werden soll" #: /tmp/fish/implicit/share/completions/lpinfo.fish:5 msgid "Specifies the language to match when listing drivers with the -m option" @@ -37677,45 +34892,40 @@ msgid "Specifies the timeout when listing devices with the -v option (sec)" msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:1 -#, fuzzy msgid "Sets the user default printer" -msgstr "Standardschlüssel als Standardempfänger benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:2 msgid "Lists the printer specific options and their current settings" msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:3 -#, fuzzy msgid "Specifies a new option for the named destination" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:4 msgid "Sets the destination and instance for any options that follow" msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:5 -#, fuzzy msgid "Removes the specified option for the named destination" -msgstr "Die auf der Befehlszeile angegebene Datei verschieben" +msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:6 msgid "Removes the options for the named destination and instance" msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:1 -#, fuzzy msgid "Change CUPS digest password" -msgstr "Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:2 msgid "Add password" msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:3 -#, fuzzy msgid "Remove password" -msgstr "Sätze entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:4 msgid "Specify the group other, than default system group" @@ -37727,14 +34937,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:1 #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:6 -#, fuzzy msgid "Specifies an alternate server" -msgstr "X-Server angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:3 -#, fuzzy msgid "Disables banner printing" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:4 msgid "" @@ -37750,9 +34958,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:6 -#, fuzzy msgid "Hold job for printing" -msgstr "Druckformat" +msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:7 msgid "" @@ -37764,14 +34971,12 @@ msgid "Show the server hostname and port" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:2 -#, fuzzy msgid "Shows the ranking of print jobs" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:3 -#, fuzzy msgid "Specifies which jobs to show" -msgstr "sendmail-Befehl angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:4 msgid "Shows the accepting state of selected printer queues" @@ -37784,18 +34989,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:6 -#, fuzzy msgid "Shows the current default destination" -msgstr "Derzeit ausgewertete Funktion stoppen" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:7 msgid "Shows a long listing of printers, classes, or jobs" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:8 -#, fuzzy msgid "Shows the jobs queue on the specified destinations" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:9 msgid "Shows the printers and whether or not they are enabled for printing" @@ -37810,34 +35013,28 @@ msgid "Shows a status summary, including the default destination" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:12 -#, fuzzy msgid "Shows all status information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:13 -#, fuzzy msgid "Shows a list of print jobs queued by the specified users" msgstr "" -"Die Liste der persönlichen Übersichtseinstellungen gemäß der angegebenen " -"Zeichenkette festlegen" #: /tmp/fish/implicit/share/completions/lpstat.fish:14 msgid "Shows the printers and what device they are attached to" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:1 -#, fuzzy msgid "print all devices" -msgstr "Alle Namen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:2 msgid "print SIZE in bytes rather than in human readable format" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:3 -#, fuzzy msgid "don't print slaves or holders" -msgstr "Kopfzeile nicht ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:4 msgid "print discard capabilities" @@ -37848,81 +35045,68 @@ msgid "exclude devices by major number (default: RAM disks)" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:6 -#, fuzzy msgid "output info about filesystems" -msgstr "Im lokalen Dateisystem bleiben" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:7 -#, fuzzy msgid "usage information (this)" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:8 msgid "use ascii characters only" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:9 -#, fuzzy msgid "output info about permissions" -msgstr "Ausgabe in zwei Spalten" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:10 -#, fuzzy msgid "don't print headings" -msgstr "Kopfzeile nicht ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:11 -#, fuzzy msgid "output columns" -msgstr "Ausgabe in zwei Spalten" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:12 msgid "use key='value' output format" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:13 -#, fuzzy msgid "use raw output format" -msgstr "Ausgabeformat für Profilierung" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:14 msgid "output info about topology" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:15 -#, fuzzy msgid "use list format ouput" -msgstr "Normale Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:1 -#, fuzzy msgid "Print both online and offline CPUs" -msgstr "Zeige Name, Zeile und Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:2 -#, fuzzy msgid "Print online CPUs only" -msgstr "Anzahl Zeilenendzeichen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:3 -#, fuzzy msgid "Print offline CPUs only" -msgstr "Anzahl Zeilenendzeichen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:4 -#, fuzzy msgid "Print out an extended readable format" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:5 -#, fuzzy msgid "Print out a parseble format" -msgstr "Ausgabeformat für Profilierung" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:6 -#, fuzzy msgid "Use specified directory as system root" -msgstr "Angegebenen Schlüssel als Schlüssel zum Signieren verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:7 msgid "Print hexadecimal masks rather thans lists of CPUs" @@ -38032,29 +35216,24 @@ msgid "Print size of files" msgstr "Größe der Dateien ausgeben" #: /tmp/fish/implicit/share/completions/ls.fish:28 -#, fuzzy msgid "Group directories before files" -msgstr "Verzeichnis nach makefile durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:29 -#, fuzzy msgid "Do not list implied entries matching specified shell pattern" -msgstr "Dem Muster entsprechende Einträge übergehen" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:30 -#, fuzzy msgid "Display security context" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:31 -#, fuzzy msgid "Display security context so it fits on most displays" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:32 -#, fuzzy msgid "Display only security context and file name" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:33 msgid "Print author" @@ -38079,9 +35258,8 @@ msgid "Generate dired output" msgstr "dired-Ausgabe erzeugen" #: /tmp/fish/implicit/share/completions/ls.fish:38 -#, fuzzy msgid "List format" -msgstr "Langformat" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:39 msgid "Long format, full-iso time" @@ -38092,9 +35270,8 @@ msgid "Don't print group information" msgstr "Keine Gruppeninformation ausgeben" #: /tmp/fish/implicit/share/completions/ls.fish:43 -#, fuzzy msgid "Skip entries matching pattern" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:44 #: /tmp/fish/implicit/share/completions/ls.fish:67 @@ -38174,9 +35351,8 @@ msgid "Causes list selections to be ANDed" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:3 -#, fuzzy msgid "Use alternative name list file" -msgstr "namelist-Datei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:4 msgid "Avoid kernel functions that might block: lstat, readlink, stat" @@ -38203,9 +35379,8 @@ msgid "use of device cache file" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:9 -#, fuzzy msgid "select by group (^ - negates)" -msgstr "Auswahl per Gruppe" +msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:10 msgid "Convert UIDs to login names" @@ -38216,18 +35391,16 @@ msgid "Select or exclude processes by pid" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:12 -#, fuzzy msgid "Print PPID" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:13 msgid "Produce terse output (pids only, no header)" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:14 -#, fuzzy msgid "select by user (^ - negates)" -msgstr "Auswahl per Benutzer" +msgstr "" #: /tmp/fish/implicit/share/completions/lsusb.fish:1 msgid "Increase verbosity (show descriptors)" @@ -38257,52 +35430,44 @@ msgid "Show version of program" msgstr "" #: /tmp/fish/implicit/share/completions/lsusb.fish:7 -#, fuzzy msgid "Show usage and help" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:1 -#, fuzzy msgid "Execute string" -msgstr "Programmlink" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:2 -#, fuzzy msgid "Require library" -msgstr "Parameter anfordern" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:3 -#, fuzzy msgid "Enter interactive mode after executing script" -msgstr "Interaktiver Modus nach Ausführung der Befehle" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:6 msgid "Execute stdin and stop handling options" msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:1 -#, fuzzy msgid "Show command executions" -msgstr "Befehlsnamen eines jeden Jobs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:2 msgid "Installs [file] to ~/Library/LaunchAgents or /Library/LaunchAgents" msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:3 -#, fuzzy msgid "Show the list of installed agents" -msgstr "Vor dem Deinstallieren der Pakete keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:4 -#, fuzzy msgid "Start the first matching agent" -msgstr "Erste zutreffende Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:5 -#, fuzzy msgid "Stop the first matching agent" -msgstr "Erste zutreffende Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:6 msgid "Stop and start the first matching agent" @@ -38317,29 +35482,25 @@ msgid "Opens the launchctl daemon file in the default editor" msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:9 -#, fuzzy msgid "Service" -msgstr "Dienst anhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:10 #: /tmp/fish/implicit/share/completions/lunchy.fish:12 -#, fuzzy msgid "Persist command" -msgstr "Prozessbefehl" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:11 msgid "Force start (disabled) agents" msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:1 -#, fuzzy msgid "Test if lxc has yet to be given the command" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:2 -#, fuzzy msgid "Manage configuration." -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:3 msgid "Copy containers within or in between lxd instances." @@ -38350,9 +35511,8 @@ msgid "Delete containers or snapshots." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:5 -#, fuzzy msgid "Execute the specified command in a container." -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:6 msgid "Manage files on a container." @@ -38363,14 +35523,12 @@ msgid "Check if the LXD instance is up." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:8 -#, fuzzy msgid "Print help." -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:9 -#, fuzzy msgid "Manipulate container images." -msgstr "Strings manipulieren" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:10 msgid "List information on LXD servers and containers." @@ -38385,14 +35543,12 @@ msgid "Launch a container from a particular image." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:13 -#, fuzzy msgid "Lists the available resources." -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:14 -#, fuzzy msgid "Prints all the subcommands help." -msgstr "Diesen Befehl deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:15 msgid "Monitor activity on the LXD server." @@ -38403,27 +35559,24 @@ msgid "Move containers within or in between lxd instances." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:17 -#, fuzzy msgid "Manage networks." -msgstr "Neuen Schlüssel hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:18 msgid "Changes state of one or more containers to pause." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:19 -#, fuzzy msgid "Manage configuration profiles." -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:20 msgid "Publish containers as images." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:21 -#, fuzzy msgid "Manage remote LXD servers." -msgstr "Datei zum Zugriff auf Server" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:22 msgid "Changes state of one or more containers to restart." @@ -38446,24 +35599,20 @@ msgid "Changes state of one or more containers to stop." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:27 -#, fuzzy msgid "Prints the version number of this client tool." -msgstr "Inode-Nummer der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:1 -#, fuzzy msgid "print this help and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:2 -#, fuzzy msgid "print version and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:3 -#, fuzzy msgid "use specified profile" -msgstr "Angegebene Datei ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:4 msgid "set log level 0-5. 0 - none 5 - chatty" @@ -38482,9 +35631,8 @@ msgid "Force a 'm4_' prefix to all builtins" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:6 -#, fuzzy msgid "Suppress some warnings for builtins" -msgstr "Dateinamenausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:7 msgid "" @@ -38508,9 +35656,8 @@ msgid "Undefine NAME" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:12 -#, fuzzy msgid "Suppress all GNU extensions" -msgstr "Alle GNU-Erweiterungen deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:13 msgid "Set symbol lookup hash table size [509]" @@ -38553,46 +35700,40 @@ msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:3 #: /tmp/fish/implicit/share/completions/systemctl.fish:39 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:3 -#, fuzzy msgid "Print a short help and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:4 #: /tmp/fish/implicit/share/completions/pactl.fish:9 #: /tmp/fish/implicit/share/completions/systemctl.fish:40 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:4 -#, fuzzy msgid "Print a short version and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:6 #: /tmp/fish/implicit/share/completions/systemctl.fish:22 -#, fuzzy msgid "Do not print header and footer" -msgstr "Kopfzeile nicht ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:7 msgid "Don't ask for password for privileged operations" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:8 -#, fuzzy msgid "List running machines" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:9 -#, fuzzy msgid "List startable machine images" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:10 msgid "Also show machines starting with a '.'" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:11 -#, fuzzy msgid "Show information about machine" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:12 msgid "Do not ellipsize process tree entries" @@ -38607,28 +35748,24 @@ msgid "Formatting of journal output" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:15 -#, fuzzy msgid "Show properties of machines" -msgstr "Nur zutreffenden Teil anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:16 -#, fuzzy msgid "Limit to certain properties" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:17 msgid "Show all properties, even if not set" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:18 -#, fuzzy msgid "Start machine" -msgstr "Maschinenname ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:19 -#, fuzzy msgid "Login to a machine" -msgstr "Log in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:20 msgid "Enable machine to start at boot" @@ -38639,9 +35776,8 @@ msgid "Disable machine from starting at boot" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:22 -#, fuzzy msgid "Poweroff machine" -msgstr "Stromausfall" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:23 msgid "Reboot machine" @@ -38652,52 +35788,44 @@ msgid "Terminate machine (without shutting down)" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:25 -#, fuzzy msgid "Send signal to process in a machine" -msgstr "Adresse an lokale Maschine binden" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:26 msgid "Choose who to send the signal to" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:27 -#, fuzzy msgid "Signal to send" -msgstr "Mail an Benutzer senden" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:28 -#, fuzzy msgid "Bind-mount a directory to a machine" -msgstr "Adresse an lokale Maschine binden" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:29 -#, fuzzy msgid "Create destination directory" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:30 -#, fuzzy msgid "Apply read-only mount" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:31 msgid "Copy file or directory to a machine" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:32 -#, fuzzy msgid "Copy file or directory from a machine" -msgstr "Verzeichnis nach makefile durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:33 -#, fuzzy msgid "Open a shell on a machine" -msgstr "Adresse an lokale Maschine binden" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:34 -#, fuzzy msgid "Show a list of locally installed machines" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:35 msgid "Show information about machine images (human-readable)" @@ -38708,43 +35836,36 @@ msgid "Show properties of machine images (machine-readable)" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:37 -#, fuzzy msgid "Clone a machine image" -msgstr "Maschinenname ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:38 -#, fuzzy msgid "Rename a machine image" -msgstr "Maschinenname ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:39 -#, fuzzy msgid "Mark or unmark machine image as read-only" -msgstr "Zwischenspeicherdatenbank schreibschützen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:40 -#, fuzzy msgid "Remove machine images" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:41 msgid "Set size limit for machine image" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:42 -#, fuzzy msgid "Download a .tar container image" -msgstr "Nur tar-Datei herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:43 -#, fuzzy msgid "Download a .raw container image" -msgstr "Nur tar-Datei herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:44 -#, fuzzy msgid "Download a .dkr container image" -msgstr "Nur tar-Datei herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:45 msgid "Import a .tar container image" @@ -38763,105 +35884,88 @@ msgid "Export a .raw container image" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:49 -#, fuzzy msgid "Specify compression format" -msgstr "Komprimierungsinformation auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:50 -#, fuzzy msgid "Show running downloads, imports and exports" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:51 msgid "Abort running downloads, imports or exports" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:52 -#, fuzzy msgid "Verify image with specified method" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:53 msgid "Verify image (not available for dkr)" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:54 -#, fuzzy msgid "Specify index server" -msgstr "X-Server angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:55 -#, fuzzy msgid "Overwrite existing machine image" -msgstr "Bestehendes Paket aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:1 -#, fuzzy msgid "Shows all available URL protocols" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:2 -#, fuzzy msgid "Lists all Magento modules" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:3 -#, fuzzy msgid "Lists all indexer modes" -msgstr "Roheinträge ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:4 -#, fuzzy msgid "Shows all available packing modes" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:5 msgid "Shows all IDEs supported by magento" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:6 -#, fuzzy msgid "Shows all available magento tests" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:7 -#, fuzzy msgid "Shows all available magento theme areas" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:8 msgid "Shows all existing magento languages" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:9 -#, fuzzy msgid "Shows all available source theme file types" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:10 -#, fuzzy msgid "Shows all available deploy modes" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:11 -#, fuzzy msgid "Shows all available cache types" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:12 -#, fuzzy msgid "Shows all available verbosity levels" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:13 -#, fuzzy msgid "Shows all available output formats" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:14 -#, fuzzy msgid "Lists magento commands" -msgstr "Diesen Befehl deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:15 msgid "Checks that prompt is not inside of magento command" @@ -38869,9 +35973,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:16 #: /tmp/fish/implicit/share/completions/p4.fish:23 -#, fuzzy msgid "Checks if prompt is in a specific command" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:17 #: /tmp/fish/implicit/share/completions/p4.fish:24 @@ -38880,37 +35983,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:18 #: /tmp/fish/implicit/share/completions/p4.fish:25 -#, fuzzy msgid "Adds a specific option for a command" -msgstr "Funktionstasten für Befehle nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:19 msgid "Checks if a parameter has been given already" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:20 -#, fuzzy msgid "Show help for a command" -msgstr "Hilfe für einen Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:21 -#, fuzzy msgid "Do not output any message" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:22 msgid "Increase verbosity: 1 for normal, 2 for verbose and 3 for debug" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:24 -#, fuzzy msgid "Force colored output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:26 -#, fuzzy msgid "Don't ask any interactive question" -msgstr "Ausführung im interaktiven Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:1 msgid "Define" @@ -38925,9 +36023,8 @@ msgid "Replace include directories" msgstr "include-Verzeichnisse ersetzen" #: /tmp/fish/implicit/share/completions/makedepend.fish:4 -#, fuzzy msgid "Append dependencies to makefile" -msgstr "Modulabhängigkeiten auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:5 msgid "Specify makefile" @@ -39020,126 +36117,108 @@ msgid "Touch files, don't run commands" msgstr "Dateien ändern, keine Befehle ausführen" #: /tmp/fish/implicit/share/completions/make.fish:20 -#, fuzzy msgid "Print working directory" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:21 msgid "Pretend file is modified" msgstr "Vorgegebene Datei wurde geändert" #: /tmp/fish/implicit/share/completions/makepkg.fish:1 -#, fuzzy msgid "Ignore missing or incomplete arch field" -msgstr "Fehlende Pakete ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:2 msgid "Clean up work files after build" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:3 -#, fuzzy msgid "Use alternate config " -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:4 -#, fuzzy msgid "Do not perform dependency checks" -msgstr "Keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:5 -#, fuzzy msgid "Do not extract source files" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:6 msgid "Only perform integrity checks" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:7 -#, fuzzy msgid "Force rebuild of the package" -msgstr "Ein Paket neu erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:8 -#, fuzzy msgid "Generate integrity checks" -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:9 -#, fuzzy msgid "Do not perform integrity checks" -msgstr "Integrierten Präprozessor nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:10 -#, fuzzy msgid "Do not verify checksums" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:11 -#, fuzzy msgid "Do not verify PGP signatures" -msgstr "Patch-Signatur nicht überprüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:12 -#, fuzzy msgid "Display syntax and command line options" -msgstr "$ am Zeilenende anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:13 msgid "No automatic bump of pkgver" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:14 -#, fuzzy msgid "Install the package after build" -msgstr "Nach Erstellung installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:15 msgid "Enable makepkg build logging" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:16 -#, fuzzy msgid "Disable color in output messages" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:17 -#, fuzzy msgid "Only download and extract files" -msgstr "Eine Quelle herunterladen und extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:18 msgid "Use alternative " msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:19 -#, fuzzy msgid "Remove installed deps after build" -msgstr "Nach Erstellung installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:20 msgid "Repackage without rebuilding" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:21 -#, fuzzy msgid "Install missing dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:22 msgid "Build a source-only tarball for AUR" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:23 -#, fuzzy msgid "Display the version and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:24 -#, fuzzy msgid "Remove the srcdir before building the package" -msgstr "Vor dem Deinstallieren der Pakete keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:25 msgid "Build a source-only GPL tarball for AUR" @@ -39154,23 +36233,20 @@ msgid "Run the check function in the PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:28 -#, fuzzy msgid "Do not create the archive" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:29 msgid "Do not run the check function in the PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:30 -#, fuzzy msgid "Sign the resulting package with gpg" -msgstr "Patch mit Ihrem gpg-Schlüssel signieren" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:31 -#, fuzzy msgid "Do not create a signature for the package" -msgstr "Nicht abbrechen, wenn die Signatur älter als der Schlüssel ist" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:32 msgid "Specify a to use when signing" @@ -39189,19 +36265,16 @@ msgid "Passed to pacman: Install as dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:36 -#, fuzzy msgid "Passed to pacman: Do not display a progress bar" -msgstr "Keinen Fortschrittsbalken anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:37 -#, fuzzy msgid "List all packages that would be built" -msgstr "Ein (deinstalliertes) Paket in der angegebenen Datei abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:38 -#, fuzzy msgid "Print SRCINFO to stdout" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:1 msgid "Program section" @@ -39220,9 +36293,8 @@ msgid "Device section" msgstr "Geräte-Sektion" #: /tmp/fish/implicit/share/completions/man.fish:5 -#, fuzzy msgid "File format section" -msgstr "Primäre Auswahl verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:6 msgid "Games section" @@ -39265,14 +36337,12 @@ msgid "Pager" msgstr "Anzeigeprogramm" #: /tmp/fish/implicit/share/completions/man.fish:17 -#, fuzzy msgid "Manual sections" -msgstr "Lokale Sektion" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:18 -#, fuzzy msgid "Display all matches" -msgstr "Alle Änderungsprotokolle anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:19 msgid "Always reformat" @@ -39307,9 +36377,8 @@ msgid "Set system" msgstr "System festlegen" #: /tmp/fish/implicit/share/completions/man.fish:28 -#, fuzzy msgid "Preprocessors" -msgstr "Prozess" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:29 msgid "Format for printing" @@ -39333,38 +36402,32 @@ msgid "Force color mode" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:4 -#, fuzzy msgid "Specify a different color set" -msgstr "Satztrenner angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:5 -#, fuzzy msgid "Specify a name of skin" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:6 -#, fuzzy msgid "Disable mouse support" -msgstr "Unterstützung für Suspension aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:7 msgid "Start the internal editor with FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:8 -#, fuzzy msgid "Display the compiled-in search paths" -msgstr "Kompressionsrate anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:9 -#, fuzzy msgid "Display extended info about compiled-in paths" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:10 -#, fuzzy msgid "Display configure options" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:11 msgid "Reset softkeys to their default" @@ -39383,9 +36446,8 @@ msgid "Save the ftpfs dialog with the server in FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:15 -#, fuzzy msgid "Print the last working directory to FILE" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:16 msgid "Set alternative mode drawing of frameworks" @@ -39396,23 +36458,20 @@ msgid "Use the TERMCAP variable for terminal info" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:18 -#, fuzzy msgid "Disable use of the concurrent shell" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:19 -#, fuzzy msgid "Enable use of the concurrent shell" -msgstr "Anzahl gleichzeitiger Jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:20 msgid "Start the internal viewer with FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:21 -#, fuzzy msgid "Display the version of the program" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:22 msgid "Force xterm mode" @@ -39427,18 +36486,16 @@ msgid "Compute and check message digest" msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:2 -#, fuzzy msgid "Read in binary mode" -msgstr "Standardmodus" +msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:3 msgid "Read sums from files and check them" msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:4 -#, fuzzy msgid "Read in text mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:7 msgid "Warn about improperly formatted checksum lines" @@ -39449,9 +36506,8 @@ msgid "With --check, exit non-zero for any invalid input" msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:9 -#, fuzzy msgid "Display help text" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:1 msgid "Assemble a pre-existing array" @@ -39462,14 +36518,12 @@ msgid "Build a legacy array without superblocks" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:3 -#, fuzzy msgid "Create a new array" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:4 -#, fuzzy msgid "Select monitor mode" -msgstr "Ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:5 msgid "Change the size or shape of an active array" @@ -39480,182 +36534,150 @@ msgid "Manage devices in array, and possibly start it" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:7 -#, fuzzy msgid "Start all auto-detected arrays" -msgstr "Beschränkter Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:9 -#, fuzzy msgid "Display more detailed help" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:11 #: /tmp/fish/implicit/share/completions/obnam.fish:47 #: /tmp/fish/implicit/share/completions/xrandr.fish:1 -#, fuzzy msgid "Be more verbose" -msgstr "Nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:13 -#, fuzzy msgid "Force operation" -msgstr "Löschung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:14 -#, fuzzy msgid "Specify config file or directory" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:15 -#, fuzzy msgid "Scan for missing information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:16 -#, fuzzy msgid "Set metadata style to use" -msgstr "Mail an Benutzer senden" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:17 msgid "Provide home host identity" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:18 -#, fuzzy msgid "Give name format preference" -msgstr "Dem Muster entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:19 -#, fuzzy msgid "Give cluster name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:20 -#, fuzzy msgid "Specify the number of active devices" -msgstr "Satztrenner angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:21 -#, fuzzy msgid "Specify the number of spare devices" -msgstr "Anzahl der Versuche auf Anzahl festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:22 -#, fuzzy msgid "Specify the space to use from each drive" -msgstr "root-Verzeichnis für rpm-Operationen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:23 -#, fuzzy msgid "Specify the size made available on the array" -msgstr "Gibt die Anzahl zu sendender Bytes an" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:24 -#, fuzzy msgid "Specify the chunk size" -msgstr "APT-Listenverzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:25 -#, fuzzy msgid "Specify rounding factor" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:26 -#, fuzzy msgid "Specify RAID level" -msgstr "X-Server angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:27 -#, fuzzy msgid "Specify data layout" -msgstr "Zeilenlänge angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:28 -#, fuzzy msgid "Specify file for write-intent bitmap" -msgstr "Port für Weboberfläche angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:29 -#, fuzzy msgid "Specify chunksize of bitmap" -msgstr "Sources.list-Datei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:30 -#, fuzzy msgid "Prefer reading from other devices than these" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:31 -#, fuzzy msgid "Enable writes on array or device" -msgstr "Datei ist ein Zeichengerät" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:32 -#, fuzzy msgid "Disable writes on array" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:33 -#, fuzzy msgid "Enable write-behind mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:34 msgid "Assume the array is clean" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:35 -#, fuzzy msgid "Use this file as a backup" -msgstr "Datei als makefile verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:36 -#, fuzzy msgid "Specify start of array data" -msgstr "Verzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:37 msgid "Resume frozen --grow command" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:38 -#, fuzzy msgid "Set array name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:39 -#, fuzzy msgid "Run array despite warnings" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:40 -#, fuzzy msgid "Give instruction for device file" -msgstr "Aktion für Gerätedateien" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:41 -#, fuzzy msgid "Add devices to array" -msgstr "Blockorientiertes Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:42 -#, fuzzy msgid "Specify max nodes in the cluster" -msgstr "Befehl an die Shell übergeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:43 -#, fuzzy msgid "Specify journal device for RAID-4/5/6 array" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:44 msgid "UUID of array to assemble" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:45 -#, fuzzy msgid "Minor number of array device" -msgstr "Inode-Nummer der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:46 msgid "Refuse to start without all drives" @@ -39666,38 +36688,32 @@ msgid "Do not ask for backup file, unavailable" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:48 -#, fuzzy msgid "Update superblock properties" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:49 -#, fuzzy msgid "Freeze --grow command" -msgstr "Prompt-Befehl festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:50 -#, fuzzy msgid "Test mode" -msgstr "Ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:51 -#, fuzzy msgid "Hot-add listed devices" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:52 msgid "Re-add a previously removed device" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:53 -#, fuzzy msgid "Hot-add listed devices as spare" -msgstr "Dienststatus ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:54 -#, fuzzy msgid "Remove listed inactive devices" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:55 msgid "Mark listed devices as faulty" @@ -39712,56 +36728,48 @@ msgid "Give devices as replacement" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:58 -#, fuzzy msgid "Confirm existence of device" -msgstr "Aktion für Gerätedateien" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:59 msgid "Examine device for md use" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:60 -#, fuzzy msgid "Print details on array" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:61 -#, fuzzy msgid "Print details on platform capabilities" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:62 msgid "Format data output as key=value pairs" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:63 -#, fuzzy msgid "Print content of device metadata" -msgstr "Wichtige Abhängigkeiten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:64 msgid "Fix examination for buggy SPARC 2.2 kernel RAID" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:65 -#, fuzzy msgid "Print report about bitmap" -msgstr "Byte-Offset von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:66 -#, fuzzy msgid "List recorded bad blocks" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:67 -#, fuzzy msgid "Dump metadata to directory" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:68 -#, fuzzy msgid "Restore metadata from directory" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:69 msgid "Deactivate array" @@ -39772,28 +36780,24 @@ msgid "Erase possible superblock" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:71 -#, fuzzy msgid "Delete subarray" -msgstr "Aus Archiv löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:72 -#, fuzzy msgid "Update subarray" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:73 -#, fuzzy msgid "Wait for pending operations" -msgstr "Löschung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:74 msgid "Mark array as clean ASAP" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:75 -#, fuzzy msgid "Set sync action for md devices" -msgstr "Aktion für Gerätedateien" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:76 msgid "Rebuild /run/mdadm/map" @@ -39804,9 +36808,8 @@ msgid "Automatically add eventually appearing device to array" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:78 -#, fuzzy msgid "Mail address to send alerts to" -msgstr "Zeiger auf Prozessliste" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:79 msgid "Program to run in case of an event" @@ -39837,25 +36840,21 @@ msgid "Check arrays only once" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:86 -#, fuzzy msgid "Do not move spares between arrays" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:87 -#, fuzzy msgid "Be more concise" -msgstr "Nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:1 #: /tmp/fish/implicit/share/completions/mdbook.fish:4 -#, fuzzy msgid "Prints help" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:2 -#, fuzzy msgid "Prints version" -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:3 msgid "Build book from markdown files" @@ -39866,9 +36865,8 @@ msgid "Create boilerplate structure and files in directory" msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:6 -#, fuzzy msgid "Skip confirmation prompts" -msgstr "Bestätigung erfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:7 msgid "Copy default theme into source folder" @@ -39891,14 +36889,12 @@ msgid "Test that code samples compile" msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:12 -#, fuzzy msgid "Watch file changes" -msgstr "Lokale Änderungen patchen" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:2 -#, fuzzy msgid "Ignore unknown options" -msgstr "Unbekannte Option: " +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:3 msgid "Do not reveal the resulting package in the Finder" @@ -39909,66 +36905,56 @@ msgid "Avoid restricted operations such as heap" msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:5 -#, fuzzy msgid "Skip gathering system.log" -msgstr "Andere Dateisysteme überspringen" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:6 -#, fuzzy msgid "Prints version of mddiagnose" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:7 msgid "Minimal report" msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:8 -#, fuzzy msgid "Evaluate indexing information for path" -msgstr "Inode-Information auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:9 -#, fuzzy msgid "Evaluate permissions information for path" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:10 -#, fuzzy msgid "Write the diagnostic to the specified path" -msgstr "Protokollausgabe auf angegebenen Dateideskriptor schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:1 -#, fuzzy msgid "Fetches the value of the specified attribute" -msgstr "Grössen-Attribute nicht prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:2 msgid "Query only reports matching items count" msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:3 -#, fuzzy msgid "Search only within given directory" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:4 msgid "Query should stay active" msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:5 -#, fuzzy msgid "Search on file name only" -msgstr "Nur Paketname suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:6 -#, fuzzy msgid "Reprint results on live update" -msgstr "Flaches Profil ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:7 -#, fuzzy msgid "Show contents of smart folder" -msgstr "Startverzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:8 msgid "Use NUL (\\0) as a path separator, for use with xargs -0" @@ -39987,71 +36973,61 @@ msgid "Import files using the listed plugin" msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:2 -#, fuzzy msgid "Print timing information for this run" -msgstr "Verlaufsinformationen für ein Modul ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:3 -#, fuzzy msgid "Print out the list of all of the attributes and exit" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:4 -#, fuzzy msgid "Print out the schema file and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:5 msgid "Ask the server to reimport files for UTIs claimed by the listed plugin" msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:6 -#, fuzzy msgid "Print out performance information gathered during the run" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:7 -#, fuzzy msgid "Print the list of installed importers and exit" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:8 #: /tmp/fish/implicit/share/completions/pkg-config.fish:7 -#, fuzzy msgid "Print debugging information" -msgstr "Debug-Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:9 msgid "Dont send the imported attributes to the data store" msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:10 -#, fuzzy msgid "Wait for the specified interval between scanning files" -msgstr "Warte angegebenes Sekundenintervall zwischen dem Senden der Pakete" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:11 -#, fuzzy msgid "Write the imported attributes to a file" -msgstr "Prototypen in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdls.fish:1 msgid "Print only the matching metadata attribute value" msgstr "" #: /tmp/fish/implicit/share/completions/mdls.fish:2 -#, fuzzy msgid "Print raw attribute data" -msgstr "Roheinträge ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdls.fish:3 msgid "Sets a marker string to be used when a requested attribute is null" msgstr "" #: /tmp/fish/implicit/share/completions/mdls.fish:4 -#, fuzzy msgid "Output attributes in XML format to file" -msgstr "rss-Data in Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:1 msgid "Publish metadata" @@ -40066,14 +37042,12 @@ msgid "Disable Spotlight activity for volume" msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:4 -#, fuzzy msgid "Erase and rebuild index" -msgstr "Index-Neuerstellung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:5 -#, fuzzy msgid "Print indexing status" -msgstr "Dienststatus ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:6 msgid "Resolve files from file id with an optional volume path or device id" @@ -40084,14 +37058,12 @@ msgid "Apply command to all volumes" msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:8 -#, fuzzy msgid "Apply command to all stores on the specified volume" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:9 -#, fuzzy msgid "Display verbose information" -msgstr "Inode-Information auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:1 msgid "Log to standard error as well as files" @@ -40102,9 +37074,8 @@ msgid "When logging hits line file:N, emit a stack trace (default :0)" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:3 -#, fuzzy msgid "Write log files in this directory" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:4 msgid "Log to standard error instead of files" @@ -40123,11 +37094,8 @@ msgid "Log level for logs" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:8 -#, fuzzy msgid "Comma-separated list of pattern=N settings for file-filtered logging" msgstr "" -"Komma-getrennte Liste vom Paketinstallationsstatus, die rekursiv verarbeitet " -"werden" #: /tmp/fish/implicit/share/completions/minikube.fish:9 msgid "Disable the addon w/ADDON_NAME within minikube" @@ -40185,9 +37153,8 @@ msgid "Unsets an individual value in a minikube config file" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:24 -#, fuzzy msgid "Display values currently set in the minikube config file" -msgstr "Alle derzeit definierten Trap-Handler anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:29 msgid "Go template format string for the config view output" @@ -40198,18 +37165,16 @@ msgid "Display the kubernetes dashboard URL instead of opening it" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:31 -#, fuzzy msgid "Add machine IP to NO_PROXY environment variable" -msgstr "Behandlung von Umgebungsvariablen" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:32 msgid "Force environment to be configured for a specified shell" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:33 -#, fuzzy msgid "Unset variables" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:35 msgid "List the URLs for the services in local cluster" @@ -40302,9 +37267,8 @@ msgid "The CIDR to be used for the VM" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:56 -#, fuzzy msgid "The KVM network name" -msgstr "Zeitüberschreitung für Netzwerk festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:57 msgid "The hyperv virtual switch name" @@ -40316,15 +37280,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:1 #: /tmp/fish/implicit/share/completions/mix.fish:58 -#, fuzzy msgid "Starts all registered apps" -msgstr "Beschränkter Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:2 #: /tmp/fish/implicit/share/completions/mix.fish:59 -#, fuzzy msgid "Lists all archives" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:3 #: /tmp/fish/implicit/share/completions/mix.fish:60 @@ -40333,69 +37295,58 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:4 #: /tmp/fish/implicit/share/completions/mix.fish:61 -#, fuzzy msgid "Installs an archive locally" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:5 #: /tmp/fish/implicit/share/completions/mix.fish:62 -#, fuzzy msgid "Uninstalls archives" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:6 #: /tmp/fish/implicit/share/completions/mix.fish:63 -#, fuzzy msgid "Deletes generated application files" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:7 #: /tmp/fish/implicit/share/completions/mix.fish:64 -#, fuzzy msgid "Executes the given command" -msgstr "Argument als Befehl ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:8 #: /tmp/fish/implicit/share/completions/mix.fish:65 -#, fuzzy msgid "Compiles source files" -msgstr "Quellpakete kompilieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:9 #: /tmp/fish/implicit/share/completions/mix.fish:66 -#, fuzzy msgid "Lists dependencies and their status" -msgstr "Abhängigkeiten für dieses Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:10 #: /tmp/fish/implicit/share/completions/mix.fish:67 -#, fuzzy msgid "Deletes the given dependencies' files" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:11 #: /tmp/fish/implicit/share/completions/mix.fish:68 -#, fuzzy msgid "Compiles dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:12 #: /tmp/fish/implicit/share/completions/mix.fish:69 -#, fuzzy msgid "Gets all out of date dependencies" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:13 #: /tmp/fish/implicit/share/completions/mix.fish:70 -#, fuzzy msgid "Unlocks the given dependencies" -msgstr "Zerstörte Abhängigkeiten korrigieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:14 #: /tmp/fish/implicit/share/completions/mix.fish:71 -#, fuzzy msgid "Updates the given dependencies" -msgstr "Zwischenspeicher aktualisieren und Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:15 #: /tmp/fish/implicit/share/completions/mix.fish:72 @@ -40409,15 +37360,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:17 #: /tmp/fish/implicit/share/completions/mix.fish:74 -#, fuzzy msgid "Prints help information for tasks" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:18 #: /tmp/fish/implicit/share/completions/mix.fish:75 -#, fuzzy msgid "Loads and persists the given configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:19 #: /tmp/fish/implicit/share/completions/mix.fish:76 @@ -40426,9 +37375,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:20 #: /tmp/fish/implicit/share/completions/mix.fish:77 -#, fuzzy msgid "Installs Hex locally" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:21 #: /tmp/fish/implicit/share/completions/mix.fish:78 @@ -40442,9 +37390,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:23 #: /tmp/fish/implicit/share/completions/mix.fish:80 -#, fuzzy msgid "Creates a new Elixir project" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:24 #: /tmp/fish/implicit/share/completions/mix.fish:81 @@ -40453,9 +37400,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:25 #: /tmp/fish/implicit/share/completions/mix.fish:82 -#, fuzzy msgid "Runs the given file or expression" -msgstr "Sektion für Dateiformate" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:26 #: /tmp/fish/implicit/share/completions/mix.fish:83 @@ -40463,24 +37409,20 @@ msgid "Runs a project's tests" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:27 -#, fuzzy msgid "specify input directory" -msgstr "Indexverzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:28 -#, fuzzy msgid "specify output file name" -msgstr "Ausgabedateiname angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:29 -#, fuzzy msgid "skip compilation" -msgstr "Bestätigung erfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:30 -#, fuzzy msgid "Clean everything, including dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:31 #: /tmp/fish/implicit/share/completions/mix.fish:48 @@ -40511,9 +37453,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:37 -#, fuzzy msgid "loads the given configuration file" -msgstr "Beispiel-Konfigurationsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:38 msgid "evaluates the given code" @@ -40532,14 +37473,12 @@ msgid "does not compile even if files require compilation" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:42 -#, fuzzy msgid "does not check dependencies" -msgstr "Zwischenspeicher aktualisieren und Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:43 -#, fuzzy msgid "does not halt the system after running the command" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:44 msgid "does not start applications after compilation" @@ -40562,29 +37501,24 @@ msgid "do not start applications after compilation" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:51 -#, fuzzy msgid "disable color in the output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:52 -#, fuzzy msgid "enable color in the output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:53 -#, fuzzy msgid "include tests that match the filter" -msgstr "Den Mustern in der Datei entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:54 -#, fuzzy msgid "exclude tests that match the filter" -msgstr "Den Mustern in der Datei entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:55 -#, fuzzy msgid "run only tests that match the filter" -msgstr "Den Mustern in der Datei entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:56 msgid "seeds the random number generator used to randomize test order" @@ -40595,9 +37529,8 @@ msgid "set the timeout for the tests" msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:1 -#, fuzzy msgid "Output version" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:2 #: /tmp/fish/implicit/share/completions/mkdir.fish:6 @@ -40611,9 +37544,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:4 #: /tmp/fish/implicit/share/completions/mkdir.fish:8 -#, fuzzy msgid "Print a message for each created directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:9 msgid "" @@ -40621,96 +37553,80 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:1 -#, fuzzy msgid "Disable alignment" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:2 -#, fuzzy msgid "Use Atari variation" -msgstr "Primäre Auswahl verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:3 msgid "Select location of backup sector" msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:4 -#, fuzzy msgid "Check for bad blocks" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:5 -#, fuzzy msgid "Create file given as device" -msgstr "Vorgegebene Datei wurde geändert" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:6 -#, fuzzy msgid "Specify drive number" -msgstr "Verzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:7 -#, fuzzy msgid "Specify number of FATs" -msgstr "Kernel-Version angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:8 -#, fuzzy msgid "Specify FAT size" -msgstr "APT-Listenverzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:9 -#, fuzzy msgid "Specify number of hidden sectors" -msgstr "Satztrenner angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:10 -#, fuzzy msgid "Specify volume ID" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:11 msgid "Force to use entire disk" msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:12 -#, fuzzy msgid "Read bad blocks list from given file" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:13 -#, fuzzy msgid "Specify file containing non bootable message" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:14 -#, fuzzy msgid "Specify media type" -msgstr "Man-Pfad angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:15 -#, fuzzy msgid "Specify volume name" -msgstr "Volume-Namen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:16 msgid "Specify number of entries available in root directory" msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:17 -#, fuzzy msgid "Specify number of reserved sectors" -msgstr "Anzahl der Versuche auf Anzahl festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:18 -#, fuzzy msgid "Specify number of sector per cluster" -msgstr "Gibt die Anzahl zu sendender Bytes an" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:19 -#, fuzzy msgid "Specify number of bytes per logical sector" -msgstr "Gibt die Anzahl zu sendender Bytes an" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:21 msgid "Use constants for randomly generated data" @@ -40729,9 +37645,8 @@ msgid "Set directory as the location where the initramfs is built" msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:4 -#, fuzzy msgid "Generate a CPIO image as filename" -msgstr "Masterdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:5 msgid "Output help for a hook" @@ -40746,9 +37661,8 @@ msgid "Use kernelversion, instead of the current running kernel" msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:8 -#, fuzzy msgid "List all available hooks" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:9 msgid "Display modules found via autodetection" @@ -40756,9 +37670,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:10 #: /tmp/fish/implicit/share/completions/rc-service.fish:4 -#, fuzzy msgid "Disable color output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:11 msgid "Process all presets contained in /etc/mkinitcpio.d" @@ -40769,9 +37682,8 @@ msgid "Build initramfs image(s) according to specified preset" msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:13 -#, fuzzy msgid "Specifies the root directory to find modules in" -msgstr "Das Paketdepotverzeichnis angeben, in dem gearbeitet wird" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:14 msgid "Skip hooks when generating the image" @@ -40788,32 +37700,28 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:17 #: /tmp/fish/implicit/share/completions/mvn.fish:34 #: /tmp/fish/implicit/share/completions/termite.fish:2 -#, fuzzy msgid "Display version information" -msgstr "Komprimierungsinformation auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:19 msgid "Override the compression method with the compress program" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:1 -#, fuzzy msgid "Show version information" -msgstr "apropos-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:3 msgid "Extract tracks to external files" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:4 -#, fuzzy msgid "Extract tags as XML" -msgstr "Auf stdout extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:5 -#, fuzzy msgid "Extract attachments" -msgstr "Aus Archiv extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:6 msgid "Extract chapters as XML" @@ -40828,14 +37736,12 @@ msgid "Extract timecodes of a track as timecode v2 file" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:9 -#, fuzzy msgid "Extract cue information as text file" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:10 -#, fuzzy msgid "Parse the whole file instead of relying on the index" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:11 #: /tmp/fish/implicit/share/completions/rsync.fish:1 @@ -40844,28 +37750,24 @@ msgid "Increase verbosity" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:12 -#, fuzzy msgid "Suppress status output" -msgstr "Normale Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:13 msgid "Force the translations for 'code' to be used" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:14 -#, fuzzy msgid "Charset for strings on the command line" -msgstr "Festlegen oder Abrufen der Befehlszeile" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:15 -#, fuzzy msgid "Outputs messages in specified charset" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:16 -#, fuzzy msgid "Redirect all messages into a file" -msgstr "Alle Nachrichten an Logdatei anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:17 msgid "Convert text subtitles to a charset" @@ -40880,9 +37782,8 @@ msgid "Keep only the BlockAdditions up to the specified level" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:20 -#, fuzzy msgid "Extract the data to a raw file" -msgstr "Datei aus Datei extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:21 msgid "Extract the data to a raw file including the CodecPrivate as header" @@ -40893,15 +37794,13 @@ msgid "Exports the chapter information in a simple format" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:23 -#, fuzzy msgid "Uses the chapter names of the specified language" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:2 #: /tmp/fish/implicit/share/completions/yarn.fish:2 -#, fuzzy msgid "output the version number" -msgstr "Versionsnummer" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:3 msgid "force all tests to take a callback (async) or return a promise" @@ -40916,23 +37815,20 @@ msgid "force disabling of colors" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:6 -#, fuzzy msgid "enable growl notification support" -msgstr "Unterstützung für Suspension aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:7 msgid " reporter-specific options" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:8 -#, fuzzy msgid "specify the reporter to use" -msgstr "Zeitablauf für Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:9 -#, fuzzy msgid "sort test files" -msgstr "Kommentare in Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:10 msgid "bail after first test failure" @@ -40943,18 +37839,16 @@ msgid "enable node's debugger, synonym for node --debug" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:12 -#, fuzzy msgid "only run tests matching " -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:13 msgid "only run tests containing " msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:14 -#, fuzzy msgid "expose gc extension" -msgstr "Sortierung nach Erweiterung" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:15 msgid "inverts --grep and --fgrep matches" @@ -40977,18 +37871,16 @@ msgid "specify user-interface (bdd|tdd|qunit|exports)" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:20 -#, fuzzy msgid "watch files for changes" -msgstr "Lokale Änderungen patchen" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:21 msgid "check for global variable leaks" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:22 -#, fuzzy msgid "display the full stack trace" -msgstr "Paketsatz anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:23 msgid "use the given module(s) to compile files" @@ -41017,18 +37909,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:29 -#, fuzzy msgid "include ICU data" -msgstr "Include-Pfad" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:30 msgid "display actual/expected differences inline within each string" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:31 -#, fuzzy msgid "display available interfaces" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:32 msgid "silence deprecation warnings" @@ -41044,9 +37934,8 @@ msgid "disables timeouts, given implicitly with --debug" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:35 -#, fuzzy msgid "specify opts path" -msgstr "Man-Pfad angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:36 msgid "enable perf linux profiler (basic support)" @@ -41061,14 +37950,12 @@ msgid "Time events including external callbacks" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:39 -#, fuzzy msgid "include sub directories" -msgstr "Unterverzeichnisgrösse nicht einschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:40 -#, fuzzy msgid "display available reporters" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:41 msgid "set numbers of time to retry a failed test case" @@ -41079,61 +37966,52 @@ msgid "throw an exception anytime a deprecated function is used" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:43 -#, fuzzy msgid "trace function calls" -msgstr "Funktion löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:44 -#, fuzzy msgid "show stack traces on deprecations" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:45 -#, fuzzy msgid "enforce strict mode" -msgstr "Beschränkter Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:46 msgid "additional extensions to monitor with --watch" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:47 -#, fuzzy msgid "wait for async suite definition" -msgstr "Funktionsdefinitonsblock" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:1 -#, fuzzy msgid "Print program version and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:2 -#, fuzzy msgid "Print usage and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:3 msgid "Turn on logging to a file" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:4 -#, fuzzy msgid "Run only the server" -msgstr "Optionen für den Schlüsselserver" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:5 msgid "Run server in foreground, log to stdout" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:6 -#, fuzzy msgid "Use the specified sound driver" -msgstr "Angegebenen Schlüsselserver verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:7 -#, fuzzy msgid "Start in MusicDir" -msgstr "Standardmodus" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:8 msgid "" @@ -41146,9 +38024,8 @@ msgid "Add the files given on command line to the queue" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:10 -#, fuzzy msgid "Clear the playlist and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:11 msgid "Start playing from the first item on the playlist" @@ -41159,9 +38036,8 @@ msgid "Play files given on command line without modifying the playlist" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:13 -#, fuzzy msgid "Stop playing" -msgstr "Abspielliste einrichten" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:14 msgid "Play next song" @@ -41172,9 +38048,8 @@ msgid "Play previous song" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:16 -#, fuzzy msgid "Shutdown the server" -msgstr "Optionen für den Schlüsselserver" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:17 msgid "" @@ -41182,18 +38057,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:18 -#, fuzzy msgid "Use the specified config file instead of the default" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:19 msgid "NAME=VALUE Override configuration option NAME with VALUE" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:20 -#, fuzzy msgid "Use the specified MOC directory instead of the default" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:21 msgid "Pause" @@ -41224,18 +38097,16 @@ msgid "Use ASCII characters to draw lines" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:28 -#, fuzzy msgid "Print the information about the currently played file" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:29 msgid "Print the formatted information about the currently played file" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:30 -#, fuzzy msgid "Alias for -a" -msgstr "Alias für atq" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:31 msgid "Seek by N seconds (can be negative)" @@ -41246,44 +38117,36 @@ msgid "N{%,s} Jump to some position of the current track" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:33 -#, fuzzy msgid "Turn on a control" -msgstr "Steuerung für Warnungen" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:34 -#, fuzzy msgid "Turn off a control" -msgstr "Zugriffsprüfung abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:35 -#, fuzzy msgid "Toggle a control" -msgstr "Eine Bedingung testen" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:1 -#, fuzzy msgid "Print only 'author'" -msgstr "Autor ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:2 -#, fuzzy msgid "Print only 'description'" -msgstr "Funktionsbeschreibung festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:3 -#, fuzzy msgid "Print only 'license'" -msgstr "Lizenz ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:4 -#, fuzzy msgid "Print only 'parm'" -msgstr "Kernel-Name ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:5 -#, fuzzy msgid "Print only 'filename'" -msgstr "Dateiname ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:6 msgid "Use \\0 instead of \\n" @@ -41323,28 +38186,24 @@ msgid "Remove modules" msgstr "Module entfernen" #: /tmp/fish/implicit/share/completions/modprobe.fish:10 -#, fuzzy msgid "Ignore all version information" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:11 -#, fuzzy msgid "Ignore version magic information" -msgstr "Magische Versionsinformation ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:12 msgid "Ignore module interface version" msgstr "Modulschnittstellenversion ignorieren" #: /tmp/fish/implicit/share/completions/modprobe.fish:13 -#, fuzzy msgid "List all modules matching the given wildcard" -msgstr "Module einfügen, die den angegebenen Mustern entsprechen" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:14 -#, fuzzy msgid "Insert modules matching the given wildcard" -msgstr "Module einfügen, die den angegebenen Mustern entsprechen" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:15 msgid "Restrict wildcards to specified directory" @@ -41355,9 +38214,8 @@ msgid "Send error messages through syslog" msgstr "Fehlermeldungen per syslog senden" #: /tmp/fish/implicit/share/completions/modprobe.fish:17 -#, fuzzy msgid "Specify kernel version" -msgstr "X-Server angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:18 msgid "List dependencies of module" @@ -41397,9 +38255,8 @@ msgid "Adaptively resize image with data dependent triangulation [geometry]" msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:89 -#, fuzzy msgid "Automatically orient image" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/montage.fish:10 msgid "Alternate image colorsapce [type]" @@ -41511,9 +38368,8 @@ msgid "Use a particular server-side UDP port or port range" msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:4 -#, fuzzy msgid "Mount file systems in fstab" -msgstr "Dateisystems aus fstab einhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:5 msgid "Fork process for each mount" @@ -41532,19 +38388,16 @@ msgid "Do not write mtab" msgstr "keine mtab schreiben" #: /tmp/fish/implicit/share/completions/mount.fish:9 -#, fuzzy msgid "Tolerate sloppy mount options" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:10 -#, fuzzy msgid "Read only" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:11 -#, fuzzy msgid "Read/Write mode" -msgstr "Lese-/Schreib-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:12 msgid "Mount partition with specified label" @@ -41555,9 +38408,8 @@ msgid "Mount partition with specified UID" msgstr "Partition mit angegebener UID einhängen" #: /tmp/fish/implicit/share/completions/mount.fish:14 -#, fuzzy msgid "Exclude file systems" -msgstr "Dateisysteme ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:15 msgid "Remount a subtree to a second position" @@ -41568,9 +38420,8 @@ msgid "Move a subtree to a new position" msgstr "Teilbaum zu einer neuen Position verschieben" #: /tmp/fish/implicit/share/completions/mount.fish:17 -#, fuzzy msgid "File system" -msgstr "Dateisystem" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:18 msgid "Mount option" @@ -41638,9 +38489,8 @@ msgid "Override framerate" msgstr "Frame-Rate überschreiben" #: /tmp/fish/implicit/share/completions/mplayer.fish:20 -#, fuzzy msgid "Build index if unavailable" -msgstr "Indexdateien neu erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mplayer.fish:21 msgid "Load index from file" @@ -41655,9 +38505,8 @@ msgid "Rebuild index and save to file" msgstr "Index neu erstellen und in Datei speichern" #: /tmp/fish/implicit/share/completions/mplayer.fish:24 -#, fuzzy msgid "Seek to given time position" -msgstr "Zeitposition suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/mplayer.fish:25 msgid "TV capture mode" @@ -41690,56 +38539,48 @@ msgid "Audio output" msgstr "Audio-Ausgabe" #: /tmp/fish/implicit/share/completions/msgfmt.fish:1 -#, fuzzy msgid "Add specified directory to list for input files search" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:2 -#, fuzzy msgid "Generate a Java ResourceBundle class" -msgstr "Quellindexdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:3 msgid "Like --java, and assume Java2 (JDK 1.2 or higher)" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:4 -#, fuzzy msgid "Generate a .NET .dll file" -msgstr "Masterdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:5 -#, fuzzy msgid "Generate a .NET .resources file" -msgstr "Quellindexdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:6 -#, fuzzy msgid "Generate a tcl/msgcat .msg file" -msgstr "Masterdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:7 -#, fuzzy msgid "Generate a Qt .qm file" -msgstr "Masterdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:9 msgid "Enable strict Uniforum mode" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:10 -#, fuzzy msgid "Resource name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:11 msgid "Locale name, either language or language_COUNTRY" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:12 -#, fuzzy msgid "Base directory for output" -msgstr "Datei-Deskriptor für Eingabe" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:13 msgid "Input files are in Java .properties syntax" @@ -41777,9 +38618,8 @@ msgid "Check presence of keyboard accelerators for menu items" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:21 -#, fuzzy msgid "Use fuzzy entries in output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:22 msgid "Alignment" @@ -41794,9 +38634,8 @@ msgid "Print statistics about translations" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:27 -#, fuzzy msgid "Increase verbosity level" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:1 #: /tmp/fish/implicit/share/completions/mutt.fish:16 @@ -41809,23 +38648,20 @@ msgid "Specify a blind-carbon-copy (BCC) recipient" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:3 -#, fuzzy msgid "Print the value of all configuration options to stdout" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:5 -#, fuzzy msgid "Bypass the system configuration file" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:6 msgid "Resume a postponed message" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:7 -#, fuzzy msgid "Open a mailbox in read-only mode" -msgstr "Ordner nur zum Lesen öffnen" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:8 msgid "Display the Mutt version number and compile-time definitions" @@ -41860,9 +38696,8 @@ msgid "Run command after processing of initialization files" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:18 -#, fuzzy msgid "Specify which mailbox to load" -msgstr "sendmail-Befehl angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:19 msgid "Specify an initialization file to read instead of ~/.muttrc" @@ -41873,24 +38708,20 @@ msgid "Specify a draft file containing header and body for the message" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:21 -#, fuzzy msgid "Specify a file to include into the body of a message" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:22 -#, fuzzy msgid "Specify a default mailbox type" -msgstr "Ziel-E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:23 -#, fuzzy msgid "Query a configuration variables value" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:24 -#, fuzzy msgid "Specify the subject of the message" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/mv.fish:1 msgid "Make backup of each existing destination file" @@ -41931,9 +38762,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:3 -#, fuzzy msgid "Run in non-interactive (batch) mode" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:4 msgid "The id of the build strategy to use." @@ -41955,14 +38785,12 @@ msgid "Ineffective, only kept for backward compatibility" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:8 -#, fuzzy msgid "Define a system property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:9 -#, fuzzy msgid "Produce execution error messages" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:10 msgid "Encrypt master security password" @@ -41995,9 +38823,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:17 #: /tmp/fish/implicit/share/completions/ruby-build.fish:5 -#, fuzzy msgid "Display help information" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:18 msgid "Log file to where all build output will go." @@ -42010,9 +38837,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:20 -#, fuzzy msgid "Do not recurse into sub-projects" -msgstr "Variable nicht an Unterprozess exportieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:23 msgid "Suppress SNAPSHOT updates" @@ -42034,9 +38860,8 @@ msgid "Quiet output - only show errors" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:27 -#, fuzzy msgid "Resume reactor from specified project" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:28 msgid "Alternate path for the user settings file" @@ -42061,9 +38886,8 @@ msgid "Display version information WITHOUT stopping build" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:35 -#, fuzzy msgid "Produce execution debug output" -msgstr "Debug-Ausgabe aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:36 msgid "Comma-delimited list of profiles to activate" @@ -42086,9 +38910,8 @@ msgid "Run surefire tests with debugging on port 5005" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:41 -#, fuzzy msgid "Skip Javadoc generation" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:42 msgid "" @@ -42127,14 +38950,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:48 -#, fuzzy msgid "Installs the artifact in the remote repository." -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:49 -#, fuzzy msgid "Deploys an artifact to remote repository." -msgstr "Einträge in .cvspass für entferntes Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:50 msgid "" @@ -42163,9 +38984,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:55 -#, fuzzy msgid "Installs a file in the local repository." -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:56 msgid "" @@ -42371,19 +39191,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:92 -#, fuzzy msgid "Generate a changelog report." -msgstr "Paket aus Quelle generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:93 -#, fuzzy msgid "Generate a file activity report." -msgstr "Gepunkteten Graph generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:94 -#, fuzzy msgid "Generate a developer activity report." -msgstr "Gepunkteten Graph generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:95 msgid "" @@ -42675,9 +39492,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:147 -#, fuzzy msgid "Generates the project index page." -msgstr "Quellindexdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:148 msgid "Generates the Project Issue Tracking report." @@ -42740,9 +39556,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:161 -#, fuzzy msgid "Generate Ant build files." -msgstr "Inhaltsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:162 msgid "Clean all Ant build files." @@ -42814,9 +39629,8 @@ msgid "Build a JAR from the current Archetype project." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:173 -#, fuzzy msgid "Updates the local catalog" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:174 msgid "" @@ -42991,9 +39805,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:194 -#, fuzzy msgid "Displays the list of dependencies for this project." -msgstr "Abhängigkeiten für dieses Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:195 msgid "" @@ -43016,9 +39829,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:198 -#, fuzzy msgid "Goal that resolves the project dependencies from the repository." -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:199 msgid "" @@ -43030,9 +39842,8 @@ msgid "Goal that resolves the project source dependencies from the repository." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:201 -#, fuzzy msgid "Displays the dependency tree for this project." -msgstr "Abhängigkeiten für dieses Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:202 msgid "" @@ -43186,9 +39997,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:228 -#, fuzzy msgid "Apply one or more patches to project sources." -msgstr "Ein/mehrere neue Datei/en oder Verzeichnis/se hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:229 msgid "" @@ -43235,9 +40045,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:237 -#, fuzzy msgid "Generates a HelpMojo class." -msgstr "Quellindexdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:238 msgid "" @@ -43359,23 +40168,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:254 -#, fuzzy msgid "Display the modification status of the files in the configured scm url." -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:255 -#, fuzzy msgid "Branch the project." -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:256 msgid "Validate scm connection string." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:257 -#, fuzzy msgid "Commit changes to the configured scm url." -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:258 msgid "" @@ -43390,9 +40196,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:260 -#, fuzzy msgid "Add a file set to the project." -msgstr "Neue/s Datei/Verzeichnis zum Paketdepot hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:261 msgid "Mark a set of files for deletion." @@ -43413,14 +40218,12 @@ msgid "Get a fresh copy of the latest source from the configured scm url." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:265 -#, fuzzy msgid "Tag the project." -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:266 -#, fuzzy msgid "Edit/lock a set of files." -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:267 msgid "This mojo will fail the build if there is any local modifications" @@ -43465,9 +40268,8 @@ msgid "Empty goal, provided only to set loose the lifecycle." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:276 -#, fuzzy msgid "Copies artifacts from one repository to another repository." -msgstr "Patches von diesem Paketdepot auf ein anderes kopieren und anwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:277 msgid "" @@ -43525,19 +40327,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:285 -#, fuzzy msgid "Generates MyEclipse configuration files" -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:286 -#, fuzzy msgid "Deletes configuration files used by MyEclipse" -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:287 -#, fuzzy msgid "Generates the rad-6 configuration files." -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:288 msgid "" @@ -43546,9 +40345,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:289 -#, fuzzy msgid "Removes the not-available marker files from the repository." -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:290 msgid "" @@ -43800,9 +40598,8 @@ msgid "Weaves all main classes." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:335 -#, fuzzy msgid "Create eclipse configuration of aspectJ" -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:336 msgid "" @@ -44628,9 +41425,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:477 -#, fuzzy msgid "Prints the configuration settings." -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:478 msgid "Creates the HTML report for a test run based on XSLT." @@ -44777,9 +41573,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:500 -#, fuzzy msgid "Add more resource directories to the POM." -msgstr "Ein/mehrere neue Datei/en oder Verzeichnis/se hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:501 msgid "Store the maven core version in a property maven.version." @@ -44790,9 +41585,8 @@ msgid "Attach additional artifacts to be installed and deployed." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:503 -#, fuzzy msgid "Add test source directories to the POM." -msgstr "Quellverzeichnisse bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:504 msgid "" @@ -44823,14 +41617,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:508 -#, fuzzy msgid "Add more source directories to the POM." -msgstr "Quellverzeichnisse bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:509 -#, fuzzy msgid "Add more test resource directories to the POM." -msgstr "Ein/mehrere neue Datei/en oder Verzeichnis/se hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:510 msgid "" @@ -44914,9 +41706,8 @@ msgid "Runs nodetool repair on a Cassandra instance." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:526 -#, fuzzy msgid "Executes cql statements from maven." -msgstr "Argument als Befehl ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:528 msgid "Runs nodetool flush on a Cassandra instance." @@ -45140,9 +41931,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:567 -#, fuzzy msgid "Display all available licenses." -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:568 msgid "Displays all the available comment style to box file headers." @@ -45252,9 +42042,8 @@ msgid "Executes SQL against a database." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:585 -#, fuzzy msgid "List all files in the archive." -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:586 msgid "" @@ -45271,9 +42060,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:588 -#, fuzzy msgid "Remove a set of files from an existing archive." -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:589 msgid "Copy a set of files in and out of an existing archive." @@ -45386,9 +42174,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:610 -#, fuzzy msgid "Sets the parent version to the latest parent version." -msgstr "Abhängigkeiten an makefile anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:611 msgid "Sets properties to the latest versions of specific artifacts." @@ -45412,9 +42199,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:615 #: /tmp/fish/implicit/share/completions/mvn.fish:618 -#, fuzzy msgid "Replaces any version with the latest version." -msgstr "Einen aufgezeichneten Patch mit einer besseren Version ersetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:616 msgid "" @@ -45461,9 +42247,8 @@ msgid "Move files from a virtual file system to another" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:626 -#, fuzzy msgid "Remove files from a virtual file system" -msgstr "Dateien nach Archivierung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:627 msgid "" @@ -45492,9 +42277,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:631 #: /tmp/fish/implicit/share/completions/mvn.fish:643 -#, fuzzy msgid "Closes a Nexus staging repository." -msgstr "Eine lokale Kopie eines weiteren Paketdepots erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:632 msgid "" @@ -45563,9 +42347,8 @@ msgid "Starts the App Engine development server and does not wait." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:646 -#, fuzzy msgid "Start the specified backend." -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:647 msgid "Stops the App Engine development server." @@ -45576,9 +42359,8 @@ msgid "Roll back a previously in-progress update." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:649 -#, fuzzy msgid "Start the specified module version." -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:650 msgid "Change the default version, but more gently than set_default_version." @@ -45597,9 +42379,8 @@ msgid "Debug the specified VM Runtime instance." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:654 -#, fuzzy msgid "Set the default serving version." -msgstr "Alle Rechte extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:655 msgid "Runs the datanucleus enhancer." @@ -45629,9 +42410,8 @@ msgid "Runs the App Engine development server." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:661 -#, fuzzy msgid "Delete the specified backend." -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:662 msgid "Update the specified backend or all backends." @@ -45646,9 +42426,8 @@ msgid "Update application task queue definitions." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:665 -#, fuzzy msgid "Stop the specified module version." -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:666 msgid "Rollback an in-progress update." @@ -45663,9 +42442,8 @@ msgid "App Engine endpoints get-discovery-doc command." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:669 -#, fuzzy msgid "Stop the specified backend." -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:670 msgid "Creates an Android Archive (aar) file. " @@ -46039,9 +42817,8 @@ msgid "Finishes a hotfix" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:728 -#, fuzzy msgid "Finishes a feature branch" -msgstr "Zeilen nach EOF sind leer" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:729 msgid "" @@ -46049,9 +42826,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:730 -#, fuzzy msgid "Starts a release" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:731 msgid "Starts a feature branch" @@ -46076,161 +42852,60 @@ msgid "Run an executable archive application." msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:1 -#, fuzzy msgid "displays this help text" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:3 msgid "show mount point directories with a 'D'" msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:4 -#, fuzzy msgid "show the mode bits of each file" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:5 -#, fuzzy msgid "show owner and group name of each file" -msgstr "Befehlsnamen eines jeden Jobs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:6 msgid "use a long listing format (-m -o -v)" msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:7 -#, fuzzy msgid "don't follow symlinks" -msgstr "Symbolischen Links nicht folgen" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:8 msgid "vertical align of modes and owners" msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:1 -#, fuzzy msgid "Perform the reverse operation" -msgstr "Inhaltsgenerierung durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:2 -#, fuzzy msgid "Specifies the name of the character encoding" -msgstr "Standardzeichensatz festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:3 msgid "Pass \"option\" to JVM" msgstr "" #: /tmp/fish/implicit/share/completions/ncdu.fish:2 -#, fuzzy msgid "Quiet mode. Refresh interval 2 seconds" -msgstr "Minimalintervall in Sekunden" +msgstr "" #: /tmp/fish/implicit/share/completions/ncdu.fish:4 -#, fuzzy msgid "Same filesystem" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/ncdu.fish:6 -#, fuzzy msgid "Exclude files that match any pattern in file" -msgstr "Den Mustern in der Datei entsprechende Dateien ausschliessen" - -#: /tmp/fish/implicit/share/completions/netcat.fish:1 -#, fuzzy -msgid "Remote hostname" -msgstr "Eintrag für Hostname entfernen" - -#: /tmp/fish/implicit/share/completions/netcat.fish:2 -msgid "Same as -e, but use /bin/sh" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:3 -msgid "Program to execute after connection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:4 -#, fuzzy -msgid "Allow broadcasts" -msgstr "Ping an eine Broadcast-Adresse erlauben" - -#: /tmp/fish/implicit/share/completions/netcat.fish:5 -msgid "Source-routing hop points" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:6 -msgid "Source-routing pointer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:8 -msgid "Delay interval for lines sent, ports scaned" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:9 -#, fuzzy -msgid "Set keepalive option" -msgstr "Konfigurationsoption festlegen" - -#: /tmp/fish/implicit/share/completions/netcat.fish:10 -msgid "Listen mode, acts as a server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:11 -#, fuzzy -msgid "Numeric-only IP addresses, no DNS" -msgstr "Numerische Adresse" - -#: /tmp/fish/implicit/share/completions/netcat.fish:12 -msgid "Hex dump of traffic" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:13 -#, fuzzy -msgid "Local port number" -msgstr "Satznummer anzeigen" - -#: /tmp/fish/implicit/share/completions/netcat.fish:14 -msgid "Randomize local and remote ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:15 -msgid "Quit after EOF on stdin and delay of secs" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:16 -#, fuzzy -msgid "Local source address" -msgstr "Ursprung des Quellbaumes" - -#: /tmp/fish/implicit/share/completions/netcat.fish:17 -msgid "Answer Telnet negotiation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:18 -msgid "UDP Mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:19 -msgid "Verbose, use twice to be more verbose" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:20 -msgid "Timeout for connects and final net reads" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:21 -#, fuzzy -msgid "Set Type of Service" -msgstr "Dienst anhalten" - -#: /tmp/fish/implicit/share/completions/netcat.fish:22 -msgid "No I/O - used for scanning" msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:3 -#, fuzzy msgid "List all available profiles for automatic selection" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:4 msgid "Start automatic profile selection on interface" @@ -46257,57 +42932,48 @@ msgid "Enable all profiles for automatic selection" msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:10 -#, fuzzy msgid "Disable all profiles for automatic selection" -msgstr "Automatische Pufferzuordnung deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:11 -#, fuzzy msgid "Check whether specified profile is active" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:12 msgid "Check whether specified profile is enabled" msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:3 -#, fuzzy msgid "List available profiles" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:4 msgid "Save which profiles are active" msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:5 -#, fuzzy msgid "Load saved profiles" -msgstr "Index aus Datei laden" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:6 -#, fuzzy msgid "Stops all profiles" -msgstr "Kein flaches Profil" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:7 -#, fuzzy msgid "Start a profile" -msgstr "Kein flaches Profil" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:8 -#, fuzzy msgid "Stop a profile" -msgstr "Kein flaches Profil" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:9 -#, fuzzy msgid "Restart a profile" -msgstr "Job aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:10 -#, fuzzy msgid "Switch to a profile" -msgstr "Kein flaches Profil" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:11 msgid "Show runtime status of a profile" @@ -46330,29 +42996,25 @@ msgid "Check whether the unit is enabled" msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:16 -#, fuzzy msgid "Open the specified profile in an editor" -msgstr "Die auf der Befehlszeile angegebene Datei verschieben" +msgstr "" #: /tmp/fish/implicit/share/completions/nextd.fish:1 #: /tmp/fish/implicit/share/completions/prevd.fish:1 -#, fuzzy msgid "Also print directory history" -msgstr "Auch Verzeichnisverlauf ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/nice.fish:2 msgid "Add specified amount to niceness value" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:1 -#, fuzzy msgid "change to specified directory" -msgstr "Jokerzeichen auf angegebenes Verzeichnis beschränken" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:2 -#, fuzzy msgid "specify build file [default=build.ninja]" -msgstr "Erstellungsverzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:3 msgid "dry run" @@ -46363,9 +43025,8 @@ msgid "show all command lines while building" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:5 -#, fuzzy msgid "number of jobs to run in parallel [default derived from CPUs]" -msgstr "Gibt die Anzahl zu sendender Bytes an" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:6 msgid "do not start if load average > N" @@ -46376,18 +43037,16 @@ msgid "keep going until N jobs fail [default=1]" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:9 -#, fuzzy msgid "enable debugging, specify debug mode" -msgstr "Debug-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:10 msgid "adjust warnings, specify flags" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:11 -#, fuzzy msgid "print ninja version" -msgstr "PKG-Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:1 msgid "use STYLE for numbering body lines" @@ -46406,9 +43065,8 @@ msgid "use STYLE for numbering header lines" msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:5 -#, fuzzy msgid "line number increment at each line" -msgstr "Zeilennummer für jede Zeile anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:6 msgid "group of NUMBER empty lines counted as one" @@ -46439,47 +43097,40 @@ msgid "add STRING after (possible) line number" msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:13 -#, fuzzy msgid "first line number on each logical page" -msgstr "Zeilennummer für jede Zeile anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:14 msgid "use NUMBER columns for line numbers" msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:1 -#, fuzzy msgid "Output is terse" -msgstr "Ausgabeverfolgung" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:2 -#, fuzzy msgid "Output is pretty" -msgstr "mime-Typ ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:3 msgid "Switch between tabular and multiline mode" msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:4 -#, fuzzy msgid "Whether to use colors in output" -msgstr "Keine ausführliche Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:5 -#, fuzzy msgid "Specify the output fields" -msgstr "Ausgabedateiname angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:6 -#, fuzzy msgid "Whether to escape \":\" and \"\\" -msgstr "Hashes auf der Platte prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:1 -#, fuzzy msgid "Display debugger-only symbols" -msgstr "Debug-Informationen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:2 #: /tmp/fish/implicit/share/completions/nm.fish:10 @@ -46487,27 +43138,24 @@ msgid "Print name of the input file before every symbol" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:3 -#, fuzzy msgid "Do not demangle low-level symbol names" -msgstr "From-Feld aus E-Mail-Kopfzeilen nicht verstümmeln" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:4 msgid "Display dynamic symbols instead of normal symbols" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:5 -#, fuzzy msgid "Display only defined symbols" -msgstr "Zeilennummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:6 msgid "Use the output format FORMAT. The default is \"bsd\"" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:7 -#, fuzzy msgid "Display only external symbols" -msgstr "Steuerzeichen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:8 msgid "" @@ -46515,47 +43163,40 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:9 -#, fuzzy msgid "Sort symbols numerically by address" -msgstr "Numerische Adresse" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:11 -#, fuzzy msgid "Do not sort the symbols" -msgstr "Unterstützung für schwache Symbole nich verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:12 msgid "Same as --format=posix" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:13 -#, fuzzy msgid "Reverse the sense of the sort" -msgstr "Bedeutung der Treffer umkehren" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:14 -#, fuzzy msgid "Load the specified plugin" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:15 -#, fuzzy msgid "Print size of defined symbols" -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:16 msgid "Include index for symbols from archive members" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:17 -#, fuzzy msgid "Sort symbols by size" -msgstr "Nach Größe sortieren" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:18 -#, fuzzy msgid "Include special symbols in the output" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:19 msgid "Display synthetic symbols as well" @@ -46570,34 +43211,28 @@ msgid "Specify the target object format as BFDNAME" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:22 -#, fuzzy msgid "Display only undefined symbols" -msgstr "Zeilennummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:23 -#, fuzzy msgid "Display this information" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:24 -#, fuzzy msgid "Display this program's version number" -msgstr "Sektion für Dateiformate" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:1 -#, fuzzy msgid "Print node's version" -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:2 -#, fuzzy msgid "Evaluate script" -msgstr "Datei auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:3 -#, fuzzy msgid "Print result of --eval" -msgstr "Flaches Profil ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:4 msgid "Always enter the REPL even if stdin does not appear to be a terminal" @@ -46608,18 +43243,16 @@ msgid "Silence deprecation warnings" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:6 -#, fuzzy msgid "Show stack traces on deprecations" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:7 msgid "Throw errors on deprecations" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:8 -#, fuzzy msgid "Print v8 command line options" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:9 msgid "Set max v8 stack size (bytes)" @@ -47368,18 +44001,16 @@ msgid "Minimal logging (no API, code, GC, suspect, or handles samples)" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:175 -#, fuzzy msgid "Log all events to the log file" -msgstr "Alle Nachrichten in Logdatei speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:176 msgid "Activate runtime system %Log call" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:177 -#, fuzzy msgid "Log API events to the log file" -msgstr "Alle Nachrichten in Logdatei speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:178 msgid "Log code events to the log file without profiling" @@ -47398,9 +44029,8 @@ msgid "log positions of (de)serialized objects in the snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:182 -#, fuzzy msgid "Log suspect operations" -msgstr "Einhäng-Option" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:183 msgid "Log statistical profiling information (implies --log-code)" @@ -47430,9 +44060,8 @@ msgid "Update sliding state window counters" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:189 -#, fuzzy msgid "Specify the name of the log file" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:190 msgid "Enable low-level linux profiler" @@ -47443,76 +44072,63 @@ msgid "Complete the commandline using npm's 'completion' tool" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:2 -#, fuzzy msgid "Manipulates package's cache" -msgstr "Paketcache automatisch generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:3 -#, fuzzy msgid "Add the specified package to the local cache" -msgstr "Angegebene Datei zur aktuellen Schlüsselringliste hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:4 msgid "Delete data out of the cache folder" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:5 -#, fuzzy msgid "Show the data in the cache" -msgstr "Pakete im Zwischenspeicher anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:6 -#, fuzzy msgid "Manage the npm configuration files" -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:7 #: /tmp/fish/implicit/share/completions/npm.fish:14 -#, fuzzy msgid "Sets the config key to the value" -msgstr "Verbindungszeitüberschreitung festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:8 #: /tmp/fish/implicit/share/completions/npm.fish:13 -#, fuzzy msgid "Echo the config value to stdout" -msgstr "Eigentümervertrauenswerte auf Standardausgabe schicken" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:9 -#, fuzzy msgid "Deletes the key from all configuration files" -msgstr "Globale Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:10 #: /tmp/fish/implicit/share/completions/npm.fish:11 -#, fuzzy msgid "Show all the config settings" -msgstr "Arp-Einträge anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:12 -#, fuzzy msgid "Opens the config file in an editor" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:15 -#, fuzzy msgid "install a package" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:16 -#, fuzzy msgid "Save to devDependencies in package.json" -msgstr "Abhängigkeiten der Pakete nicht prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:17 -#, fuzzy msgid "Save to dependencies in package.json" -msgstr "Abhängigkeiten der Pakete nicht prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:18 -#, fuzzy msgid "Install package globally" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:19 #: /tmp/fish/implicit/share/completions/pkg.fish:25 @@ -47520,9 +44136,8 @@ msgstr "Pakete erneut installieren" #: /tmp/fish/implicit/share/completions/prt-get.fish:24 #: /tmp/fish/implicit/share/completions/prt-get.fish:84 #: /tmp/fish/implicit/share/completions/yum.fish:29 -#, fuzzy msgid "List installed packages" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:20 msgid "" @@ -47530,58 +44145,48 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:21 -#, fuzzy msgid "Show information in JSON format" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:22 -#, fuzzy msgid "Show extended information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:23 msgid "Show parseable output instead of tree view" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:24 -#, fuzzy msgid "Max display depth of the dependency tree" -msgstr "Abhängigkeiten für dieses Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:25 -#, fuzzy msgid "Manage package owners" -msgstr "Gehaltene Pakete ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:26 -#, fuzzy msgid "List package owners" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:27 -#, fuzzy msgid "Add a new owner to package" -msgstr "Neuen Schlüssel hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:28 -#, fuzzy msgid "Remove an owner from package" -msgstr "Ein oder mehrere Paket(e) entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:29 -#, fuzzy msgid "remove package" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:30 -#, fuzzy msgid "remove global package" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:31 -#, fuzzy msgid "Package will be removed from your dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:32 msgid "Package will be removed from your devDependencies" @@ -47598,51 +44203,44 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:36 -#, fuzzy msgid "Update package(s)" -msgstr "Pakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:37 -#, fuzzy msgid "Update global package(s)" -msgstr "Paketliste aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:38 msgid "Add a registry user account" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:39 -#, fuzzy msgid "Display npm bin folder" -msgstr "Debug-Informationen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:40 msgid "Bugs for a package in a web browser maybe" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:41 -#, fuzzy msgid "Reduce duplication" -msgstr "Nicht doppelte Zeilen entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:42 -#, fuzzy msgid "Deprecate a version of a package" -msgstr "Version des Quellpaketes" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:43 msgid "Docs for a package in a web browser maybe" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:44 -#, fuzzy msgid "Edit an installed package" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:45 -#, fuzzy msgid "Browse an installed package" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:46 msgid "Frequently Asked Questions" @@ -47657,97 +44255,80 @@ msgid "View registry info" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:50 -#, fuzzy msgid "Symlink a package folder" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:51 -#, fuzzy msgid "Check for outdated packages" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:52 -#, fuzzy msgid "Create a tarball from a package" -msgstr "Informationen über ein Paket" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:53 -#, fuzzy msgid "Display NPM prefix" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:54 -#, fuzzy msgid "Remove extraneous packages" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:55 -#, fuzzy msgid "Publish a package" -msgstr "Ein Paket neu erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:57 -#, fuzzy msgid "Display npm root" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:58 msgid "Run arbitrary package scripts" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:59 -#, fuzzy msgid "Lock down dependency versions" -msgstr "Keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:60 -#, fuzzy msgid "Mark your favorite packages" -msgstr "Quellpakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:61 msgid "View packages marked as favorites" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:62 -#, fuzzy msgid "Start a package" -msgstr "Paket löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:63 -#, fuzzy msgid "Stop a package" -msgstr "Informationen über ein Paket" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:64 -#, fuzzy msgid "Add a package as a git submodule" -msgstr "Einem Modul eine symbolische Markierung hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:65 -#, fuzzy msgid "Test a package" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:66 -#, fuzzy msgid "Remove a package from the registry" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:67 -#, fuzzy msgid "Remove star from a package" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:68 -#, fuzzy msgid "Bump a package version" -msgstr "Paketsatz anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:69 -#, fuzzy msgid "Display npm username" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/nvram.fish:1 msgid "Use XML format for reading and writing variables" @@ -47770,121 +44351,100 @@ msgid "Delete all of the firmware variable" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:1 -#, fuzzy msgid "Display archive header information" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:2 -#, fuzzy msgid "Display contents of the overall file header" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:3 msgid "Display object format specific file header contents" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:4 -#, fuzzy msgid "Display object format specific contents" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:5 -#, fuzzy msgid "Display contents of section headers" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:6 -#, fuzzy msgid "Display content of section headers" -msgstr "Steuerzeichen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:7 -#, fuzzy msgid "Display the contents of all headers" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:8 -#, fuzzy msgid "Display assembler contents of executable sections" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:9 -#, fuzzy msgid "Display assembler contents of all sections" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:10 msgid "Intermix source code with disassembly" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:11 -#, fuzzy msgid "Display full contents of all sections requested" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:12 -#, fuzzy msgid "Display debug information in object file" -msgstr "Für jede Zeile der Datei Datum anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:13 -#, fuzzy msgid "Display debug information using ctags style" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:14 -#, fuzzy msgid "Display (in raw form) any STABS info in file" -msgstr "Für jede Zeile der Datei Datum anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:15 -#, fuzzy msgid "Display DWARF info in file" -msgstr "Für jede Zeile der Datei Datum anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:16 -#, fuzzy msgid "Display contents of symbol table(s)" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:17 -#, fuzzy msgid "Display contents of dynamic symbol table" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:18 -#, fuzzy msgid "Display relocation entries in file" -msgstr "Einträge in Zip-Datei löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:19 -#, fuzzy msgid "Display dynamic relocation entries in file" -msgstr "Für jede Zeile der Datei Datum anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:20 -#, fuzzy msgid "Display version number" -msgstr "Zeilennummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:21 msgid "List object formats and architectures supported" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:23 -#, fuzzy msgid "Specify target object format" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:24 -#, fuzzy msgid "Specify target architecture" -msgstr "http-Benutzername angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:25 -#, fuzzy msgid "Only display information for given section" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:26 msgid "Pass given options on to disassembler" @@ -47911,9 +44471,8 @@ msgid "Add given directory to search list from source files" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:32 -#, fuzzy msgid "Include line numbers and filenames in output" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:33 msgid "Include file offsets when displaying information" @@ -47952,9 +44511,8 @@ msgid "Don't display hex alongside symbolic disassembly" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:42 -#, fuzzy msgid "Display specified number of bytes on single line for -d" -msgstr "Zeilennummer für jede Zeile anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:43 msgid "Add offset to all displayed section address" @@ -47973,68 +44531,56 @@ msgid "Strip initial directory names for -S" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:47 -#, fuzzy msgid "Do not display DIEs at given depth or greater" -msgstr "Keinen Fortschrittsbalken anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:48 -#, fuzzy msgid "Display DIEs starting with given number" -msgstr "Zeilennummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:49 msgid "Make additional dwarf internal consistency checks" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:1 -#, fuzzy msgid "Add a key to the repository" -msgstr "Neue/s Datei/Verzeichnis zum Paketdepot hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:2 -#, fuzzy msgid "Backup data to repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:3 -#, fuzzy msgid "List clients and their keys in the repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:4 -#, fuzzy msgid "List clients using the repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:5 -#, fuzzy msgid "Show difference between two generations" -msgstr "Unterschiede zwischen Revisionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:6 -#, fuzzy msgid "Dump (some) data structures from a repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:7 -#, fuzzy msgid "Force a locked repository to be open" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:8 -#, fuzzy msgid "Forget (remove) specified backup generations" -msgstr "Vervollständigung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:9 -#, fuzzy msgid "Verify internal consistency of backup repository" -msgstr "Das ganze Paketdepot prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:10 -#, fuzzy msgid "List backup generations for client" -msgstr "Vervollständigung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:11 msgid "List generation ids for client" @@ -48045,57 +44591,48 @@ msgid "Print help, including hidden subcommands" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:14 -#, fuzzy msgid "List contents of a generation in kdirstat cache format" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:15 -#, fuzzy msgid "List error codes and explanations" -msgstr "Keine Erklärungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:16 -#, fuzzy msgid "List available repository formats" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:17 msgid "List keys and repository toplevels they are used in" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:18 -#, fuzzy msgid "List repository toplevel directories and their keys" -msgstr "Verzeichnisse, aber nicht deren Inhalt auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:19 -#, fuzzy msgid "List contents of a generation" -msgstr "Startverzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:20 msgid "Mount a backup repository as a FUSE filesystem" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:21 -#, fuzzy msgid "Check if the most recent generation is recent enough" -msgstr "Die aktuellste Version ohne Fehler suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:22 -#, fuzzy msgid "Remove client and its key from repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:23 -#, fuzzy msgid "Remove a key from the repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:24 -#, fuzzy msgid "Restore some or all files from a generation" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:25 msgid "Verify that live data and backed up data match" @@ -48110,47 +44647,40 @@ msgid "Do not restore setuid/setgid bits in restored files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:28 -#, fuzzy msgid "Use CHECKSUM algorithm" -msgstr "MAC-Algorithmus" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:29 -#, fuzzy msgid "Name of client" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:30 -#, fuzzy msgid "Compress repository with" -msgstr "Auf Standardausgabe komprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:31 msgid "For --nagios-last-backup-age: maximum age" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:32 -#, fuzzy msgid "Dump metadata about files" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:33 -#, fuzzy msgid "Do not dump metadata about files" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:34 -#, fuzzy msgid "Generate man page" -msgstr "Ein neues Schlüsselpaar erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:35 msgid "Which generation to restore" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:36 -#, fuzzy msgid "Show this help message and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:37 msgid "Policy for what generations to keep when forgetting." @@ -48161,19 +44691,16 @@ msgid "Wait TIMEOUT seconds for an existing lock" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:39 -#, fuzzy msgid "Write output to FILE instead of STDOUT" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:40 -#, fuzzy msgid "Do not actually change anything" -msgstr "Nichts schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:41 -#, fuzzy msgid "Actually commit changes" -msgstr "Änderungen zusammenfassen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:42 msgid "Show only errors, no progress updates" @@ -48184,23 +44711,20 @@ msgid "Show errors and progress updates" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:44 -#, fuzzy msgid "Name of backup repository" -msgstr "Defektes Paketdepot reparieren" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:45 -#, fuzzy msgid "Use FORMAT for new repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:46 msgid "Where to restore / mount to" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:48 -#, fuzzy msgid "Do not be verbose" -msgstr "Nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:49 msgid "Verify N files randomly from the backup" @@ -48208,9 +44732,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:50 #: /tmp/fish/implicit/share/completions/transmission-remote.fish:72 -#, fuzzy msgid "Show version number and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:51 msgid "For nagios-last-backup-age: maximum age" @@ -48221,23 +44744,20 @@ msgid "Make a checkpoint after a given SIZE" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:53 -#, fuzzy msgid "Deduplicate mode" -msgstr "Lese-/Schreib-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:54 msgid "REGEXP for pathnames to exclude" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:55 -#, fuzzy msgid "Exclude directories tagged as cache" -msgstr "Verzeichnisse nach Quelle durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:56 -#, fuzzy msgid "Include directories tagged as cache" -msgstr "include-Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:57 #: /tmp/fish/implicit/share/completions/rsync.fish:77 @@ -48257,14 +44777,12 @@ msgid "Omit checkpoint generations at the end of backup" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:61 -#, fuzzy msgid "Do not follow mount points" -msgstr "Lange Zeilen nicht umbrechen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:62 -#, fuzzy msgid "Follow mount points" -msgstr "Einhängepunkt" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:63 msgid "What to backup" @@ -48279,34 +44797,28 @@ msgid "No not put small files into the B-tree" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:66 -#, fuzzy msgid "Add FILE to config files" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:67 -#, fuzzy msgid "Write out the current configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:68 -#, fuzzy msgid "Write out setting names" -msgstr "Prompt ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:69 -#, fuzzy msgid "Show all options" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:70 -#, fuzzy msgid "List config files" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:71 -#, fuzzy msgid "Clear list of configuration files to read" -msgstr "Liste der rpm-Konfigurationsdateien" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:72 msgid "Artificially crash the program after COUNTER files" @@ -48317,9 +44829,8 @@ msgid "Pretend it is TIMESTAMP" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:74 -#, fuzzy msgid "Simulate failures for files that match REGEXP" -msgstr "Dem REGEXP entsprechende Patche auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:75 msgid "FILENAME pattern for trace debugging" @@ -48330,19 +44841,16 @@ msgid "PGP key with which to encrypt" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:77 -#, fuzzy msgid "Home directory for GPG" -msgstr "Datei-Deskriptor für Eingabe" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:78 -#, fuzzy msgid "Show additional user IDs" -msgstr "Verzeichnisnamen nicht speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:79 -#, fuzzy msgid "Do not show additional user IDs" -msgstr "Verzeichnisnamen nicht speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:80 msgid "PGP key id" @@ -48353,14 +44861,12 @@ msgid "Size of symmetric key" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:82 -#, fuzzy msgid "Use /dev/urandom instead of /dev/random" -msgstr "purge anstelle von remove verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:83 -#, fuzzy msgid "Use default /dev/random" -msgstr "purge anstelle von remove verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:84 msgid "fsck should try to fix problems" @@ -48371,91 +44877,74 @@ msgid "fsck should not try to fix problems" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:86 -#, fuzzy msgid "Ignore chunks when checking integrity" -msgstr "Groß-/Kleinschreibung beim Dateinamenvergleich ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:87 -#, fuzzy msgid "Check chunks when checking integrity" -msgstr "Groß-/Kleinschreibung beim Dateinamenvergleich ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:88 -#, fuzzy msgid "Do not check data for cient NAME" -msgstr "Verzeichnisnamen nicht speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:89 -#, fuzzy msgid "Check only the last generation" -msgstr "Inhaltsgenerierung durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:90 #: /tmp/fish/implicit/share/completions/obnam.fish:100 -#, fuzzy msgid "Check all generations" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:91 #: /tmp/fish/implicit/share/completions/obnam.fish:92 -#, fuzzy msgid "fsck should remove unused chunks" -msgstr "Quellpakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:93 -#, fuzzy msgid "Do not check checksums of files" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:94 -#, fuzzy msgid "Check checksums of files" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:95 -#, fuzzy msgid "Do not check directories" -msgstr "Verzeichnisnamen nicht speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:96 -#, fuzzy msgid "Check directories" -msgstr "Verzeichnisse rekursiv durchlaufen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:97 -#, fuzzy msgid "Do not check files" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:98 -#, fuzzy msgid "Check files" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:99 -#, fuzzy msgid "Do not check any generations" -msgstr "Überprüfungsstatus von Schlüsselsignaturen nicht zwischenspeichern" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:101 -#, fuzzy msgid "Do not check per-client B-trees" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:102 -#, fuzzy msgid "Check per-client B-trees" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:103 -#, fuzzy msgid "Do not check shared B-trees" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:104 -#, fuzzy msgid "Check shared B-trees" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:105 msgid "Write log to FILE or syslog" @@ -48502,9 +44991,8 @@ msgid "Chunk id level size" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:116 -#, fuzzy msgid "Depth of chunk id mapping" -msgstr "Tiefe der Aufrufkette" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:117 msgid "Chunk id mapping lowest bits skip" @@ -48543,9 +45031,8 @@ msgid "Use only paramiko, no openssh" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:126 -#, fuzzy msgid "Use openssh if available" -msgstr "Index erstellen, wenn nicht vorhanden" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:127 msgid "Executable to be used instead of \"ssh\"" @@ -48564,28 +45051,24 @@ msgid "FILENAME of the known_hosts file" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:1 -#, fuzzy msgid "Produce no output to stderr" -msgstr "Audio-Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:2 -#, fuzzy msgid "Print this help text" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:3 -#, fuzzy msgid "Print the version number" -msgstr "Zeilennummer ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:4 msgid "Set bits/sample for raw input. Default is 16" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:5 -#, fuzzy msgid "Set number of channels for raw input" -msgstr "Anzahl der Audiokanäle festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:6 msgid "Set samples/sec for raw input" @@ -48604,9 +45087,8 @@ msgid "Enable the bitrate management engine" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:10 -#, fuzzy msgid "Specify a minimum bitrate (in kbps)" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:11 msgid "Specify a maximum bitrate in kbps" @@ -48617,18 +45099,16 @@ msgid "option=value Sets an advanced encoder option to the given value" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:13 -#, fuzzy msgid "Specify quality" -msgstr "Verzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:14 msgid "Resample input data to sampling rate n (Hz)" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:15 -#, fuzzy msgid "Specify a serial number for the stream" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:16 msgid "" @@ -48645,9 +45125,8 @@ msgid "Produce filenames as this string" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:19 -#, fuzzy msgid "Remove the specified characters from parameters" -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:20 msgid "Replace characters removed by --name-remove" @@ -48658,57 +45137,49 @@ msgid "Add the given string as an extra comment" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:22 -#, fuzzy msgid "Date for track" -msgstr "Format festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:23 -#, fuzzy msgid "Track number" -msgstr "Versionsnummer" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:24 msgid "Title of track" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:25 -#, fuzzy msgid "Name of album" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:26 -#, fuzzy msgid "Name of artist" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:27 msgid "Genre of track" msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:1 -#, fuzzy msgid "Display the manual for an OPAM command." -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:2 #: /tmp/fish/implicit/share/completions/opam.fish:58 -#, fuzzy msgid "Show version information." -msgstr "apropos-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:4 msgid "Compatibility mode with OPAM 1.0" msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:5 -#, fuzzy msgid "Print debug message on stdout." -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:6 -#, fuzzy msgid "Print the git version if it exists and exit." -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:7 msgid "Do not use the external aspcud solver, even if available." @@ -48719,9 +45190,8 @@ msgid "Do not install base packages (useful for testing purposes)." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:9 -#, fuzzy msgid "Be quiet when installing a new compiler." -msgstr "Ein neues Paket erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:10 msgid "Use ROOT as the current root path." @@ -48738,9 +45208,8 @@ msgid "Use SWITCH as the current compiler switch." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:13 -#, fuzzy msgid "Be more verbose." -msgstr "Nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:14 msgid "" @@ -48749,23 +45218,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:15 -#, fuzzy msgid "Display configuration options for packages." -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:16 -#, fuzzy msgid "Enable all the global and user configuration options." -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:17 msgid "Use csh-compatible mode for configuring OPAM." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:18 -#, fuzzy msgid "Name of the configuration file to update instead of ~/." -msgstr "Liste der rpm-Konfigurationsdateien" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:19 msgid "Backward-compatible option, equivalent to opam config env." @@ -48776,14 +45242,12 @@ msgid "Use fish-compatible mode for configuring OPAM." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:21 -#, fuzzy msgid "Enable all the global configuration options." -msgstr "Globale Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:22 -#, fuzzy msgid "List the current configuration." -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:23 msgid "Do not load the auto-completion scripts in the environment." @@ -48798,23 +45262,20 @@ msgid "Modify ~/. profile (or ~/." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:27 -#, fuzzy msgid "Recursive query." -msgstr "Rekursive Kopie" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:28 -#, fuzzy msgid "Display environment variables as an s-expression." -msgstr "TERM Umgebungsvariable nicht gesetzt" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:29 msgid "Use sh-compatible mode for configuring OPAM." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:30 -#, fuzzy msgid "Enable all the user configuration options." -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:31 msgid "Use zsh-compatible mode for configuring OPAM. DOMAINS." @@ -48865,81 +45326,68 @@ msgid "returns assembly compile options." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:41 -#, fuzzy msgid "returns bytecode linking options." -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:42 msgid "Prints a summary of your setup, useful for bug-reports." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:43 -#, fuzzy msgid "Display help about OPAM and OPAM commands." -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:44 msgid "Initialize OPAM state." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:45 -#, fuzzy msgid "Install a list of packages." -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:46 -#, fuzzy msgid "Display the list of available packages." -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:47 -#, fuzzy msgid "Pin a given package to a specific version." -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:48 -#, fuzzy msgid "Reinstall a list of packages." -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:49 -#, fuzzy msgid "Remove a list of packages." -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:50 -#, fuzzy msgid "Manage OPAM repositories." -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:51 -#, fuzzy msgid "Search into the package list." -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:52 -#, fuzzy msgid "Display information about specific packages." -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:53 msgid "Manage multiple installation of compilers." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:54 -#, fuzzy msgid "Update the list of available packages." -msgstr "Liste der Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:55 -#, fuzzy msgid "Upgrade the installed package to latest version." -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:56 -#, fuzzy msgid "Administration tool for local repositories." -msgstr "Einträge in .cvspass für entferntes Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:57 msgid "Show this help in format FMT (pager, plain or groff)." @@ -48950,32 +45398,28 @@ msgid "Check a local repo for errors." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:60 -#, fuzzy msgid "Add external dependencies." -msgstr "Nach zusätzlichen Abhängigkeiten fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:61 msgid "Initialize a repo for serving files." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:62 -#, fuzzy msgid "Compute statistics." -msgstr "Zwischenspeicherstatistik anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:5 -#, fuzzy msgid "Prints the list of all defined branches on the server" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:6 msgid "Lists perforce users suitable for list of completions" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:7 -#, fuzzy msgid "Lists current user's workspaces" -msgstr "Fehler aus Paketen auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:8 msgid "Lists all changelists for current user" @@ -48988,23 +45432,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:10 -#, fuzzy msgid "Lists all changelists with *shelved* files" -msgstr "Ein (deinstalliertes) Paket in der angegebenen Datei abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:11 -#, fuzzy msgid "Lists p4 commands" -msgstr "Nach Spalten auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:12 msgid "Lists environment variables that can be consumed by perforce" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:13 -#, fuzzy msgid "Lists all of available file modes" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:17 msgid "Values for --parallel option in various commands" @@ -49105,14 +45546,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:43 -#, fuzzy msgid "Displays the version of the p4 application and exits." -msgstr "Version und unterstützte Algorithmen anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:44 -#, fuzzy msgid "Displays basic usage information and exits." -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:3 #: /tmp/fish/implicit/share/completions/yaourt.fish:3 @@ -49127,87 +45566,74 @@ msgid "Query the files database" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:13 -#, fuzzy msgid "(AUR) Search for packages" -msgstr "Vollständigen Paketnamen suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:14 -#, fuzzy msgid "(AUR) Show info for packages" -msgstr "Quellpaket anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:15 msgid "(AUR) Clone the packages' build files and build them" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:16 -#, fuzzy msgid "(AUR) Clone build files, build and install packages" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:17 -#, fuzzy msgid "(AUR) Check foreign packages for updates" -msgstr "Angegebenes Paket von Aktualisierung ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:18 -#, fuzzy msgid "(AUR) Update foreign packages" -msgstr "Liste der Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:19 msgid "(AUR) Clone the packages' build files" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:20 -#, fuzzy msgid "Download dependencies recursively" -msgstr "Dep und rdep rekursiv" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:29 #: /tmp/fish/implicit/share/completions/pacman.fish:20 #: /tmp/fish/implicit/share/completions/yaourt.fish:26 -#, fuzzy msgid "Hook file directory" -msgstr "Datei ist ein Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:32 msgid "Apply only for AUR targets" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:33 -#, fuzzy msgid "Apply only for specified repo" -msgstr "Für angegebene Benutzerkennung verschlüsseln" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:34 -#, fuzzy msgid "Edit build files" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:35 -#, fuzzy msgid "Do not edit build files" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:36 -#, fuzzy msgid "Always rebuild packages" -msgstr "Erstellte Pakete löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:37 -#, fuzzy msgid "Redirect output to the log in the clone directory" -msgstr "Ausgabe auf Datei umleiten" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:38 msgid "Point at a domain other than the default aur.archlinux.org" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:39 -#, fuzzy msgid "Use devel packages" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:40 msgid "Ignore all results marked as out of date" @@ -49226,16 +45652,14 @@ msgid "Sort descending by key" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:44 -#, fuzzy msgid "Search by field" -msgstr "Felder auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:81 #: /tmp/fish/implicit/share/completions/pacman.fish:59 #: /tmp/fish/implicit/share/completions/yaourt.fish:80 -#, fuzzy msgid "Also downgrade packages" -msgstr "Fehler bei Downgrade-Paketen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:86 #: /tmp/fish/implicit/share/completions/pacman.fish:64 @@ -49252,9 +45676,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:94 #: /tmp/fish/implicit/share/completions/yaourt.fish:95 #: /tmp/fish/implicit/share/completions/yaourt.fish:99 -#, fuzzy msgid "List files owned by given packages" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:89 #: /tmp/fish/implicit/share/completions/pacaur.fish:90 @@ -49265,9 +45688,8 @@ msgstr "Dateien im Paket auflisten" #: /tmp/fish/implicit/share/completions/yaourt.fish:96 #: /tmp/fish/implicit/share/completions/yaourt.fish:97 #: /tmp/fish/implicit/share/completions/yaourt.fish:100 -#, fuzzy msgid "Search packages for matching files" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:91 #: /tmp/fish/implicit/share/completions/pacman.fish:69 @@ -49278,48 +45700,41 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:94 #: /tmp/fish/implicit/share/completions/pacman.fish:72 #: /tmp/fish/implicit/share/completions/yaourt.fish:101 -#, fuzzy msgid "Search for packages that include the given files" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:96 #: /tmp/fish/implicit/share/completions/yaourt.fish:103 -#, fuzzy msgid "Show in machine readable format" -msgstr "Nur zutreffenden Teil anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman.fish:74 msgid "Show in machine readable format: repo\\0pkgname\\0pkgver\\0path\\n" msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:1 -#, fuzzy msgid "Add or update keys from " -msgstr "Cookies aus Datei laden" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:2 -#, fuzzy msgid "Use an alternate config " -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:3 -#, fuzzy msgid "Remove the from the keyring" -msgstr "Entferne Schlüssel vom öffentlichen Schlüsselring" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:4 -#, fuzzy msgid "Export to stdout" -msgstr "Auf stdout extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:5 msgid "Present a menu on specified " msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:6 -#, fuzzy msgid "List a fingerprint for each specified " -msgstr "Zeigt alle Dateien in jedem gewählten Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:7 msgid "Alternate home for GnuPG" @@ -49342,19 +45757,16 @@ msgid "Initialize the keyring" msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:12 -#, fuzzy msgid "Use the specified " -msgstr "Angegebenen Schlüsselserver verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:13 -#, fuzzy msgid "Lists all or specified from the keyring" -msgstr "Alle oder angegebene Schlüssel aus allen Schlüsselringen exportieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:14 -#, fuzzy msgid "Same as --list-keys, but with signatures" -msgstr "Entspricht --list-keys, aber auch die Signaturen werden angezeigt" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:15 msgid "Locally sign the given " @@ -49381,9 +45793,8 @@ msgid "Verify the given file" msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:21 -#, fuzzy msgid "Displays the program version" -msgstr "Paketsatz anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pacmd.fish:1 msgid "Resume" @@ -49398,76 +45809,64 @@ msgid "Show statistics about memory usage" msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:2 -#, fuzzy msgid "Show info about the daemon" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:3 -#, fuzzy msgid "Show all loaded things of the specified type" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:4 -#, fuzzy msgid "Show shorter output" -msgstr "Stopp durch Terminalausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:5 msgid "Ask the daemon to exit" msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:6 -#, fuzzy msgid "Upload a file to the sample cache" -msgstr "Datei zum Speichern des Quellenzwischenspeichers auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:7 -#, fuzzy msgid "Play a sample from the cache" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:8 -#, fuzzy msgid "Remove a sample from the cache" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:10 -#, fuzzy msgid "Print help text and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:1 msgid "Set an alternate database location" msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:2 -#, fuzzy msgid "Colorize output" -msgstr "breite Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:3 msgid "Limit the depth of recursion" msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:4 -#, fuzzy msgid "Generate output for graphviz's dot" -msgstr "Punktierte Ausgabe für Pakete erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:5 -#, fuzzy msgid "Display this help message" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:6 -#, fuzzy msgid "Enable linear output" -msgstr "dired-Ausgabe erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:7 -#, fuzzy msgid "Show reverse dependencies" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:8 msgid "Search sync DBs instead of local" @@ -49478,9 +45877,8 @@ msgid "Show dependencies with no duplicates (implies -l)" msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:10 -#, fuzzy msgid "Set an alternate configuration file" -msgstr "Globale Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:1 msgid "" @@ -49501,9 +45899,8 @@ msgid "Prefix pref to a file name when generating its simple backup file name" msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:5 -#, fuzzy msgid "Read and write all files in binary mode" -msgstr "Standardmodus" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:6 msgid "Interpret the patch file as a ordinary context diff" @@ -49548,9 +45945,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:16 -#, fuzzy msgid "Read the patch from patchfile" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:17 msgid "" @@ -49584,9 +45980,8 @@ msgid "Use style word to quote output names" msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:24 -#, fuzzy msgid "Put rejects into rejectfile instead of the default .rej file" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:25 msgid "Assume that this patch was created with the old and new files swapped" @@ -49607,18 +46002,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:29 -#, fuzzy msgid "Interpret the patch file as a unified context diff" -msgstr "3 Zeilen des vereinheitlichten Kontextes ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:31 msgid "Use method to determine backup file names" msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:32 -#, fuzzy msgid "Output extra information about the work being done" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:33 msgid "Set internal debugging flags of interest only to patch patchers" @@ -49641,14 +46034,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:1 -#, fuzzy msgid "Use the ABS tree" -msgstr "Keinen unberührten Baum verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:2 -#, fuzzy msgid "Set the desired package architecture" -msgstr "Datei zum Speichern des Paketzwischenspeichers auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:3 msgid "Search the AUR" @@ -49659,19 +46050,16 @@ msgid "Only search the AUR" msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:5 -#, fuzzy msgid "Set the output directory" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:6 -#, fuzzy msgid "Display this message" -msgstr "Alle Übereinstimmungen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:7 -#, fuzzy msgid "Search for upgradable packages" -msgstr "Nur aktualisierbare Pakete ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:8 msgid "Search the ABS testing branches" @@ -49718,9 +46106,8 @@ msgid "Keep text in content stream order" msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:11 -#, fuzzy msgid "Generate simple HTML file" -msgstr "Masterdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:12 msgid "Generate XHTML bounding boxes" @@ -49731,9 +46118,8 @@ msgid "Sets encoding for the output [UTF-8]" msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:14 -#, fuzzy msgid "Lists the available encodings" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:15 msgid "Sets the end-of-line convention" @@ -49744,31 +46130,26 @@ msgid "Don't insert page breaks" msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:17 -#, fuzzy msgid "Specify owner password for the PDF" -msgstr "Proxy-Passwort angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:18 -#, fuzzy msgid "Specify user password for the PDF" -msgstr "Proxy-Passwort angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:19 #: /tmp/fish/implicit/share/completions/xpdf.fish:28 -#, fuzzy msgid "Don't print any messages or errors" -msgstr "Keine Fortsetzung bei Fehlern" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:20 -#, fuzzy msgid "Print copyright and version" -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:21 #: /tmp/fish/implicit/share/completions/xpdf.fish:31 -#, fuzzy msgid "Print usage information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:1 #: /tmp/fish/implicit/share/completions/ruby.fish:1 @@ -49844,18 +46225,16 @@ msgstr "Debug-Option" #: /tmp/fish/implicit/share/completions/perl.fish:18 #: /tmp/fish/implicit/share/completions/ruby.fish:6 -#, fuzzy msgid "Execute command" -msgstr "Keine Befehle ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:19 msgid "Execute command, enable optional features" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:20 -#, fuzzy msgid "Disable sitecustomize.pl" -msgstr "Cookie-Benutzung deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:21 #: /tmp/fish/implicit/share/completions/ruby.fish:8 @@ -49878,14 +46257,12 @@ msgid "Automatic line ending processing" msgstr "Automatische Zeilenende-Verarbeitung" #: /tmp/fish/implicit/share/completions/perl.fish:26 -#, fuzzy msgid "Require module" -msgstr "Datei erfordern" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:27 -#, fuzzy msgid "Use module" -msgstr "Unsicherer Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:28 #: /tmp/fish/implicit/share/completions/ruby.fish:12 @@ -49915,49 +46292,41 @@ msgid "Unsafe mode" msgstr "Unsicherer Modus" #: /tmp/fish/implicit/share/completions/perl.fish:37 -#, fuzzy msgid "Display configuration and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:38 -#, fuzzy msgid "Show warnings" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:39 -#, fuzzy msgid "Force warnings" -msgstr "Warnungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:40 -#, fuzzy msgid "Disable warnings" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:41 #: /tmp/fish/implicit/share/completions/ruby.fish:21 -#, fuzzy msgid "Extract script" -msgstr "Datei auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:1 msgid "Show a filter parameter by modifier" msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:2 -#, fuzzy msgid "Flush filter params specified by mod" -msgstr "Nur angegebene Anzahl Zeichen vergleichen" +msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:3 -#, fuzzy msgid "Table command" -msgstr "Ende des Befehls" +msgstr "" #: /tmp/fish/implicit/share/completions/pgrep.fish:1 -#, fuzzy msgid "Output delimiter" -msgstr "Ausgabebegrenzer festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/pgrep.fish:2 msgid "List the process name as well as the process ID" @@ -49972,9 +46341,8 @@ msgid "Open file" msgstr "Datei öffnen" #: /tmp/fish/implicit/share/completions/pine.fish:4 -#, fuzzy msgid "Start in folder index" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/pine.fish:5 msgid "Initial set of keystrokes" @@ -50001,14 +46369,12 @@ msgid "Set global configuration file" msgstr "Globale Konfigurationsdatei festlegen" #: /tmp/fish/implicit/share/completions/pine.fish:12 -#, fuzzy msgid "Restricted mode" -msgstr "Beschränkter Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/pine.fish:13 -#, fuzzy msgid "Enable suspension support" -msgstr "Unterstützung für Suspension aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pine.fish:14 msgid "Produce a sample global configuration file" @@ -50099,9 +46465,8 @@ msgstr "" "angeschlossenen Schnittstelle senden" #: /tmp/fish/implicit/share/completions/ping.fish:19 -#, fuzzy msgid "Specifies the number of data bytes to be sent" -msgstr "Gibt die Anzahl zu sendender Bytes an" +msgstr "" #: /tmp/fish/implicit/share/completions/ping.fish:20 msgid "Set socket buffer size" @@ -50136,9 +46501,8 @@ msgid "Time to wait for a response, in seconds" msgstr "Zeit zum Warten auf eine Antwort, in Sekunden" #: /tmp/fish/implicit/share/completions/pinky.fish:1 -#, fuzzy msgid "produce long format output for the specified USERs" -msgstr "Protokollausgabe auf angegebenen Dateideskriptor schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/pinky.fish:2 msgid "omit the user's home directory and shell in long format" @@ -50173,58 +46537,49 @@ msgid "omit the user's full name, remote host and idle time in short format" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:1 -#, fuzzy msgid "failsafe to overwrite" -msgstr "Protokoll in Datei, überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:2 #: /tmp/fish/implicit/share/completions/pkg_delete.fish:3 -#, fuzzy msgid "Turn on stats" -msgstr "Steuerung für Warnungen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:3 -#, fuzzy msgid "Automated package installation" -msgstr "Paket-Installationsreihenfolge nicht ändern" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:5 -#, fuzzy msgid "Update packages" -msgstr "Pakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:6 msgid "Fuzzy match" msgstr "" #: /tmp/fish/implicit/share/completions/pkgadd.fish:1 -#, fuzzy msgid "Upgrade" -msgstr "Pakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgadd.fish:2 msgid "Force installation, overwriting" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:1 -#, fuzzy msgid "Print versions of the specified libraries" -msgstr "Alle möglichen Definitionen des angegebenen Namens ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:2 -#, fuzzy msgid "Display the version of pkg-config and quit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:3 -#, fuzzy msgid "Displays a help message and quit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:4 -#, fuzzy msgid "Print message when errors occur" -msgstr "Nachrichten über den Programmablauf ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:5 msgid "Stay quiet when errors occur" @@ -50243,9 +46598,8 @@ msgid "This prints the -I part of \"--cflags\"." msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:10 -#, fuzzy msgid "Print link flags" -msgstr "Überschrift ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:11 msgid "This prints the -L/-R part of \"--libs\"." @@ -50268,14 +46622,12 @@ msgid "Returns a list of all variables defined in the package" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:16 -#, fuzzy msgid "Return success if any -uninstalled packages are used" -msgstr "Ein (deinstalliertes) Paket in der angegebenen Datei abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:17 -#, fuzzy msgid "Test if a package has at most the specified version" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:18 msgid "Test if a package has at least this version" @@ -50286,9 +46638,8 @@ msgid "Test if a package has exactly this version" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:20 -#, fuzzy msgid "Test if a package exists" -msgstr "Paketintegrität verifizieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:21 msgid "Output libraries suitable for static linking" @@ -50299,23 +46650,20 @@ msgid "List all modules found in the pkg-config path" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:23 -#, fuzzy msgid "List all modules the given packages provides" -msgstr "Eigenschaften auflisten, die dieses Paket bereitstellt" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:24 -#, fuzzy msgid "List all modules the given packages requires" -msgstr "Eigenschaften auflisten, die dieses Paket bereitstellt" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:25 msgid "List all modules the given packages requires for static linking" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_delete.fish:2 -#, fuzzy msgid "Delete unsed deps" -msgstr "Auswahl löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:3 msgid "only show files in a {s}bin/ directory. Works with -s, -l" @@ -50326,39 +46674,32 @@ msgid "make searches case sensitive" msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:5 -#, fuzzy msgid "allow the use of * and ? as wildcards" -msgstr "Erweitern Sie das Muster nicht" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:6 -#, fuzzy msgid "allow the use of regex in searches" msgstr "" -"Niemals die Benutzung des angegebenen Verschlüsselungsalgorithmus zulassen" #: /tmp/fish/implicit/share/completions/pkgfile.fish:7 -#, fuzzy msgid "search only in the specified repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:8 -#, fuzzy msgid "enable verbose output" -msgstr "dired-Ausgabe erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:9 -#, fuzzy msgid "provides information about the package owning a file" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:10 msgid "list files of a given package; similar to \"pacman -Ql\"" msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:11 -#, fuzzy msgid "search which package owns a file" -msgstr "Vollständigen Paketnamen suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:12 msgid "" @@ -50367,19 +46708,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:2 -#, fuzzy msgid "Show debug information" -msgstr "whatis-Information anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:3 -#, fuzzy msgid "List subcommands" -msgstr "Nach Spalten auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:4 -#, fuzzy msgid "Set configuration option" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:5 msgid "Run sanity test" @@ -50394,14 +46732,12 @@ msgid "Run package manager within chroot" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:8 -#, fuzzy msgid "Install packages in specified root" -msgstr "Ein (deinstalliertes) Paket in der angegebenen Datei abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:9 -#, fuzzy msgid "Use configuration file" -msgstr "Konfigurationsdatei" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:10 msgid "Set repository configuration directory" @@ -50416,81 +46752,67 @@ msgid "Use IPv6" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:13 -#, fuzzy msgid "Display help for command" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:14 -#, fuzzy msgid "Install package file" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:15 -#, fuzzy msgid "Modify annotations on packages" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:16 -#, fuzzy msgid "Audit installed packages" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:17 -#, fuzzy msgid "Delete unneeded packages" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:18 msgid "Dump package database" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:19 -#, fuzzy msgid "Check installed packages" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:20 -#, fuzzy msgid "Clean local cache" -msgstr "Lokalen Zwischenspeicher und Pakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:21 -#, fuzzy msgid "Convert package from pkg_add format" -msgstr "Paket aus Quelle generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:22 -#, fuzzy msgid "Create a package" -msgstr "Paket löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:23 #: /tmp/fish/implicit/share/completions/pkg.fish:31 -#, fuzzy msgid "Remove a package" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:24 -#, fuzzy msgid "Download a remote package" -msgstr "Eine Quelle herunterladen und extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:26 #: /tmp/fish/implicit/share/completions/zypper.fish:3 #: /tmp/fish/implicit/share/completions/zypper.fish:18 -#, fuzzy msgid "Install packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:27 -#, fuzzy msgid "Prevent package modification" -msgstr "Paketname/Distribution ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:28 -#, fuzzy msgid "List package manager plugins" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:29 #: /tmp/fish/implicit/share/completions/rpm.fish:95 @@ -50498,29 +46820,24 @@ msgid "Query installed packages" msgstr "Installierte Pakete abfragen" #: /tmp/fish/implicit/share/completions/pkg.fish:30 -#, fuzzy msgid "Register a package in a database" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:32 -#, fuzzy msgid "Create package repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:33 -#, fuzzy msgid "Query information for remote repositories" -msgstr "Einträge in .cvspass für entferntes Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:34 -#, fuzzy msgid "Find packages" -msgstr "Pakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:35 -#, fuzzy msgid "Modify package information in database" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:36 msgid "Open a SQLite shell" @@ -50531,36 +46848,32 @@ msgid "Display packages linking to shared library" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:38 -#, fuzzy msgid "Display package statistics" -msgstr "Paketsatz anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:39 msgid "Stop preventing package modification" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:40 -#, fuzzy msgid "Update remote repositories" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:41 msgid "Display UPDATING entries" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:43 -#, fuzzy msgid "Show package versions" -msgstr "Version des Quellenbaumes" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:44 msgid "Check which package provides a file" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:45 -#, fuzzy msgid "Mark packages as automatic" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:46 msgid "Force installation even when installed" @@ -50568,206 +46881,171 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:47 #: /tmp/fish/implicit/share/completions/pkg.fish:61 -#, fuzzy msgid "Disable installation scripts" -msgstr "Pseudo-tty-Zuordnung deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:48 #: /tmp/fish/implicit/share/completions/pkg.fish:62 -#, fuzzy msgid "Force installation with missing dependencies" -msgstr "Keine Abhängigkeiten prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:49 -#, fuzzy msgid "Force quiet output" -msgstr "Erzwungene Beendigung" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:50 -#, fuzzy msgid "Do not make changes" -msgstr "Änderungen nicht zusammenfassen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:51 -#, fuzzy msgid "Assume yes when asked for confirmation" -msgstr "Nach Bestätigung fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:52 -#, fuzzy msgid "Delete all cached packages" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:53 -#, fuzzy msgid "Delete all installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:54 -#, fuzzy msgid "Case sensitive packages" -msgstr "Erstellte Pakete löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:55 -#, fuzzy msgid "Disable deinstallation scripts" -msgstr "Pseudo-tty-Zuordnung deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:56 -#, fuzzy msgid "Force package removal" -msgstr "Gehaltene Pakete ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:57 msgid "Treat the package name as shell glob" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:58 -#, fuzzy msgid "Case insensitive packages" -msgstr "Groß-/Klein-Schreibung nicht unterscheiden" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:59 -#, fuzzy msgid "Remove recursively" -msgstr "Rekursiv arbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:60 msgid "Treat the package name as regular expression" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:63 -#, fuzzy msgid "Do not perform actual installation" -msgstr "Vor der Installation nicht auf ausreichenden Plattenplatz prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:64 -#, fuzzy msgid "Reinstall packages required by this package" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:65 -#, fuzzy msgid "Use only a given repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:66 -#, fuzzy msgid "Do not automatically update database" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:67 msgid "Force a full download of a repository" msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:2 -#, fuzzy msgid "Package whose files to list" -msgstr "Dateien vor dem Löschen umpacken" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:3 -#, fuzzy msgid "Print the package owning file matching pattern" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:4 -#, fuzzy msgid "Print footprint for file" -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:5 -#, fuzzy msgid "Specify alternative installation root" -msgstr "installroot-Verzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:6 -#, fuzzy msgid "Print version of pkgutils" -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:1 -#, fuzzy msgid "Install with pkgadd after build" -msgstr "Nach Erstellung installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:2 msgid "Upgrade with pkgadd after build" msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:3 -#, fuzzy msgid "Search and build packages recursively" -msgstr "Vollständigen Paketnamen suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:4 -#, fuzzy msgid "Download the sources" -msgstr "Quelle nicht herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:5 -#, fuzzy msgid "Only download the sources" -msgstr "Quelle nicht herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:6 -#, fuzzy msgid "Check if the package is uptodate" -msgstr "Angegebenes Paket von Aktualisierung ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:7 #: /tmp/fish/implicit/share/completions/prt-get.fish:39 #: /tmp/fish/implicit/share/completions/prt-get.fish:98 -#, fuzzy msgid "Update footprint" -msgstr "Spiegelliste aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:8 #: /tmp/fish/implicit/share/completions/prt-get.fish:40 #: /tmp/fish/implicit/share/completions/prt-get.fish:99 -#, fuzzy msgid "Ignore footprint" -msgstr "Fehler ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:9 #: /tmp/fish/implicit/share/completions/prt-get.fish:37 #: /tmp/fish/implicit/share/completions/prt-get.fish:96 -#, fuzzy msgid "Update md5sum" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:10 #: /tmp/fish/implicit/share/completions/prt-get.fish:38 #: /tmp/fish/implicit/share/completions/prt-get.fish:97 -#, fuzzy msgid "Ignore md5sum" -msgstr "Gross-/Kleinschreibung ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:11 -#, fuzzy msgid "Do not strip executables" -msgstr "Skripte ausführbar machen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:12 #: /tmp/fish/implicit/share/completions/prt-get.fish:36 #: /tmp/fish/implicit/share/completions/prt-get.fish:95 -#, fuzzy msgid "Force rebuild" -msgstr "Index-Neuerstellung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:13 -#, fuzzy msgid "Remove package and sources" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:14 -#, fuzzy msgid "Keep working dir" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:15 -#, fuzzy msgid "Use another config" -msgstr "Muster aus Datei nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgrm.fish:1 msgid "Package to remove" @@ -50797,14 +47075,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/poff.fish:6 -#, fuzzy msgid "Displays help information" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/poff.fish:7 -#, fuzzy msgid "Prints the version and exits" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:1 msgid "run 'make config' for all ports (overrides -G)." @@ -50847,9 +47123,8 @@ msgid "recurse dependencies thoroughly, using all-depends-list." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:11 -#, fuzzy msgid "verbose output." -msgstr "Ausführlicher Prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:12 msgid "save old shared libraries before deinstall [-R]… [See Man Page]" @@ -50860,9 +47135,8 @@ msgid "interactive update mode -- ask whether to rebuild ports." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:14 -#, fuzzy msgid "no cleaning of distfiles." -msgstr "Sparse-Dateien bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:15 msgid "always clean distfiles." @@ -50897,9 +47171,8 @@ msgid "use the INDEX for status, but double-check with the port." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:23 -#, fuzzy msgid "do not try to use /usr/ports." -msgstr "Nicht versuchen, den GnuPG-Agenten zu nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:24 msgid "delete ports that are build-only dependencies a… [See Man Page]" @@ -50918,18 +47191,16 @@ msgid "fail if no package is available." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:28 -#, fuzzy msgid "use packages for all build dependencies." -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:29 msgid "use package if newer than installed even if the… [See Man Page]" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:30 -#, fuzzy msgid "fetch package even if it already exists locally." -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:31 msgid "where local packages can be found, will fall ba… [See Man Page]" @@ -50976,33 +47247,28 @@ msgid "answer yes to all user prompts for the features… [See Man Page]" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:42 -#, fuzzy msgid "display help message." -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:43 msgid "display the version number El ENVIRONMENT The d… [See Man Page]" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:44 -#, fuzzy msgid "Ports Directory" -msgstr "Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:45 -#, fuzzy msgid "Installed Package" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ports.fish:1 -#, fuzzy msgid "Update ports" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ports.fish:2 -#, fuzzy msgid "List ports" -msgstr "Zu importierendes Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/ports.fish:3 msgid "List version diffs between local and installed ports" @@ -51029,14 +47295,12 @@ msgid "Just write wtmp record" msgstr "" #: /tmp/fish/implicit/share/completions/poweroff.fish:7 -#, fuzzy msgid "Don't write wtmp record" -msgstr "keine mtab schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/poweroff.fish:8 -#, fuzzy msgid "Don't send wall message" -msgstr "Keinen Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:2 #: /tmp/fish/implicit/share/completions/prt-get.fish:62 @@ -51048,15 +47312,13 @@ msgstr "Port" #: /tmp/fish/implicit/share/completions/prt-get.fish:3 #: /tmp/fish/implicit/share/completions/prt-get.fish:64 -#, fuzzy msgid "Install listed ports" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:4 #: /tmp/fish/implicit/share/completions/prt-get.fish:65 -#, fuzzy msgid "Install listed ports and their deps" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:5 #: /tmp/fish/implicit/share/completions/prt-get.fish:66 @@ -51065,33 +47327,28 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:6 #: /tmp/fish/implicit/share/completions/prt-get.fish:67 -#, fuzzy msgid "Update listed packages" -msgstr "Paketliste aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:7 #: /tmp/fish/implicit/share/completions/prt-get.fish:68 -#, fuzzy msgid "Remove listed packages" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:8 #: /tmp/fish/implicit/share/completions/prt-get.fish:69 -#, fuzzy msgid "Update all outdated installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:9 #: /tmp/fish/implicit/share/completions/prt-get.fish:70 -#, fuzzy msgid "Do not update this in sysup" -msgstr "Zeiten für passende Symbole nicht propagieren" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:10 #: /tmp/fish/implicit/share/completions/prt-get.fish:71 -#, fuzzy msgid "Remove this from lock" -msgstr "Quellpakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:11 #: /tmp/fish/implicit/share/completions/prt-get.fish:72 @@ -51100,9 +47357,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:12 #: /tmp/fish/implicit/share/completions/prt-get.fish:73 -#, fuzzy msgid "Search for an expr in port names" -msgstr "Nach Ablaufzeit fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:13 #: /tmp/fish/implicit/share/completions/prt-get.fish:74 @@ -51111,21 +47367,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:14 #: /tmp/fish/implicit/share/completions/prt-get.fish:75 -#, fuzzy msgid "Print info on a port" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:15 #: /tmp/fish/implicit/share/completions/prt-get.fish:76 -#, fuzzy msgid "Search for a pattern in the footprints in the ports tree" -msgstr "Nach einem String in einer Liste suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:16 #: /tmp/fish/implicit/share/completions/prt-get.fish:77 -#, fuzzy msgid "Print the path of a port" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:17 #: /tmp/fish/implicit/share/completions/prt-get.fish:78 @@ -51134,15 +47387,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:18 #: /tmp/fish/implicit/share/completions/prt-get.fish:79 -#, fuzzy msgid "Print a list of deps for the listed ports" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:19 #: /tmp/fish/implicit/share/completions/prt-get.fish:80 -#, fuzzy msgid "Print a simple list of deps for the listed ports" -msgstr "Unterdrückungen für entdeckte Fehler ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:20 #: /tmp/fish/implicit/share/completions/prt-get.fish:81 @@ -51150,56 +47401,47 @@ msgid "Print a deptree for the port" msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:21 -#, fuzzy msgid "List ports in multiple directories" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:22 #: /tmp/fish/implicit/share/completions/prt-get.fish:82 -#, fuzzy msgid "List all the ports" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:23 #: /tmp/fish/implicit/share/completions/prt-get.fish:83 -#, fuzzy msgid "Print formatted list of ports" -msgstr "Befehlstyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:25 #: /tmp/fish/implicit/share/completions/prt-get.fish:85 -#, fuzzy msgid "List installed packages which have no dependent packages" -msgstr "Pakete auflisten, von denen dieses Paket abhängt" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:26 -#, fuzzy msgid "Check if a port is installed" -msgstr "Installierte Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:27 #: /tmp/fish/implicit/share/completions/prt-get.fish:86 -#, fuzzy msgid "Print the version of an installed package" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:28 #: /tmp/fish/implicit/share/completions/prt-get.fish:87 -#, fuzzy msgid "Print the listing of the directory of a port" -msgstr "Arbeitsverzeichnis ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:29 #: /tmp/fish/implicit/share/completions/prt-get.fish:88 -#, fuzzy msgid "Print a file in a port to stdout" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:30 #: /tmp/fish/implicit/share/completions/prt-get.fish:89 -#, fuzzy msgid "Edit a file in a port" -msgstr "Original-Dateien editieren" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:31 #: /tmp/fish/implicit/share/completions/prt-get.fish:90 @@ -51208,44 +47450,37 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:32 #: /tmp/fish/implicit/share/completions/prt-get.fish:91 -#, fuzzy msgid "Print the configuration of prt-get" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:33 #: /tmp/fish/implicit/share/completions/prt-get.fish:92 -#, fuzzy msgid "Show the current version of prt-get" -msgstr "Volle Versionen der Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:34 #: /tmp/fish/implicit/share/completions/prt-get.fish:93 -#, fuzzy msgid "Create a cache for prt-get" -msgstr "Nach Fertigstellung Logdatei löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:41 #: /tmp/fish/implicit/share/completions/prt-get.fish:100 -#, fuzzy msgid "No stripping" -msgstr "Prompt-Anzeige" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:42 #: /tmp/fish/implicit/share/completions/prt-get.fish:101 -#, fuzzy msgid "Keep work directory" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:43 #: /tmp/fish/implicit/share/completions/prt-get.fish:102 -#, fuzzy msgid "Ignore the listed ports" -msgstr "Erste Zeile der Eingabe ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:44 -#, fuzzy msgid "Use cache" -msgstr "Verzeichnis für Zwischenspeicher festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:46 #: /tmp/fish/implicit/share/completions/prt-get.fish:104 @@ -51264,21 +47499,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:49 #: /tmp/fish/implicit/share/completions/prt-get.fish:107 -#, fuzzy msgid "Ignore default config file" -msgstr "Angegebene Datei ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:50 #: /tmp/fish/implicit/share/completions/prt-get.fish:108 -#, fuzzy msgid "Prepend string to config file" -msgstr "Zeichenkette vor relative Links stellen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:51 #: /tmp/fish/implicit/share/completions/prt-get.fish:109 -#, fuzzy msgid "Append string to config file" -msgstr "apt-Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:52 #: /tmp/fish/implicit/share/completions/prt-get.fish:110 @@ -51302,21 +47534,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:57 #: /tmp/fish/implicit/share/completions/prt-get.fish:115 -#, fuzzy msgid "Prefer higher version" -msgstr "Version des Quellenbaumes" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:58 #: /tmp/fish/implicit/share/completions/prt-get.fish:116 -#, fuzzy msgid "Override prefer-higher" -msgstr "Frame-Rate überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:59 #: /tmp/fish/implicit/share/completions/prt-get.fish:117 -#, fuzzy msgid "Use alternative config file" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:60 #: /tmp/fish/implicit/share/completions/prt-get.fish:118 @@ -51325,9 +47554,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:61 #: /tmp/fish/implicit/share/completions/prt-get.fish:119 -#, fuzzy msgid "Write output to log file" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:1 #: /tmp/fish/implicit/share/completions/ps.fish:5 @@ -51399,9 +47627,8 @@ msgid "Add column for security data" msgstr "Spalte für Sicherheitsdaten hinzufügen" #: /tmp/fish/implicit/share/completions/ps.fish:19 -#, fuzzy msgid "Show different scheduler information for the -l option" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:20 msgid "Full format" @@ -51428,9 +47655,8 @@ msgid "Wide output" msgstr "breite Ausgabe" #: /tmp/fish/implicit/share/completions/ps.fish:29 -#, fuzzy msgid "Set screen width" -msgstr "Angenommene Bildschirmbreite" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:30 msgid "Include dead child process data" @@ -51441,34 +47667,28 @@ msgid "Repead header lines, one per page" msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:32 -#, fuzzy msgid "Print no headers" -msgstr "Überschrift ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:33 -#, fuzzy msgid "Set screen height" -msgstr "Schwere festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:34 -#, fuzzy msgid "Spericy sorting order" -msgstr "Mail-Sortierordnung festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:35 -#, fuzzy msgid "Show threads. With LWP/NLWP" -msgstr "Threads anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:36 -#, fuzzy msgid "Show threads. With SPID" -msgstr "Threads anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:37 -#, fuzzy msgid "Show threads after processes" -msgstr "Nach Präprozessordurchlauf anhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:1 msgid "database name to connect to" @@ -51479,51 +47699,44 @@ msgid "run only single command (SQL or internal) and exit" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:3 -#, fuzzy msgid "execute commands from file, then exit" -msgstr "Befehl ausführen, als ob es Teil von .wgetrc wäre" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:4 -#, fuzzy msgid "list available databases, then exit" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:5 msgid "do not read startup file (~/.psqlrc)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:6 -#, fuzzy msgid "execute command file as a single transaction" -msgstr "Befehl ausführen, als ob es Teil von .wgetrc wäre" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:7 -#, fuzzy msgid "show this help, then exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:8 -#, fuzzy msgid "output version information, then exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:9 msgid "echo all input from script" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:10 -#, fuzzy msgid "echo commands sent to server" -msgstr "Befehle auf Standardfehlerausgabe ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:11 msgid "display queries that internal commands generate" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:12 -#, fuzzy msgid "send session log to file" -msgstr "Session-Cookies speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:13 msgid "disable enhanced command line editing (readline)" @@ -51558,18 +47771,16 @@ msgid "set printing option VAR to ARG (see \\pset command)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:21 -#, fuzzy msgid "print rows only" -msgstr "Ausführliche Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:22 msgid "set HTML table tag attributes (e.g., width, border)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:23 -#, fuzzy msgid "turn on expanded table output" -msgstr "Debug-Ausgabe aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:24 msgid "set field separator (default: '|')" @@ -51588,14 +47799,12 @@ msgid "database server port" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:28 -#, fuzzy msgid "database user name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:29 -#, fuzzy msgid "never prompt for password" -msgstr "Vor Löschung niemals fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:30 msgid "force password prompt (should happen automatically)" @@ -51610,47 +47819,40 @@ msgid "Turn progress bar on" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:2 -#, fuzzy msgid "Show timer" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:3 -#, fuzzy msgid "Show estimated time left" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:4 msgid "Show estimated time of arrival" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:5 -#, fuzzy msgid "Show rate counter" -msgstr "Arp-Einträge anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:6 -#, fuzzy msgid "Show average rate" -msgstr "Pakete im Zwischenspeicher anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:7 -#, fuzzy msgid "Show total byte counter" -msgstr "Arp-Einträge anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:8 msgid "Show transfer buffer percentage" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:9 -#, fuzzy msgid "Show the last NUM bytes written" -msgstr "Gesamtzahl geschriebener Bytes ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:10 -#, fuzzy msgid "Set output format" -msgstr "Ausgabeformat für Profilierung" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:13 msgid "Wait for first byte before showing progress" @@ -51661,43 +47863,36 @@ msgid "Wait given time (in secs) before showing progress" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:15 -#, fuzzy msgid "Set total number of bytes to be transfered" -msgstr "Anzahl der Versuche auf Anzahl festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:16 msgid "Count lines instead of bytes" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:17 -#, fuzzy msgid "Count null-terminated lines" -msgstr "-T enthält null-terminierte Namen" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:18 -#, fuzzy msgid "Wait given time (in secs) between updates" -msgstr "Wartezeiten zwischen Abrufversuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:19 -#, fuzzy msgid "Set terminal width" -msgstr "Stopp durch Terminaleingabe" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:20 -#, fuzzy msgid "Set terminal height" -msgstr "Stopp durch Terminaleingabe" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:21 -#, fuzzy msgid "Prefix output with given name" -msgstr "Ausgabedateiname angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:22 -#, fuzzy msgid "Force output" -msgstr "breite Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:23 msgid "Use cursor positioning escape sequence instead of \\r" @@ -51712,14 +47907,12 @@ msgid "Use transfer buffer size (in bytes)" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:26 -#, fuzzy msgid "Don't use slice" -msgstr "Stapelverarbeitungsmodus nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:27 -#, fuzzy msgid "Ignore read errors" -msgstr "Fehler ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:28 msgid "Stop transfer after given number of bytes" @@ -51742,20 +47935,17 @@ msgid "Report colourised filesystem disk space usage" msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:2 -#, fuzzy msgid "show this help message" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:3 #: /tmp/fish/implicit/share/completions/quilt.fish:2 -#, fuzzy msgid "show version" -msgstr "Version des Quellenbaumes" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:4 -#, fuzzy msgid "include filesystems having 0 blocks" -msgstr "Dateisysteme ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:5 msgid "print sizes in human readable format (e.g., 1K 234M 2G)" @@ -51770,14 +47960,12 @@ msgid "use BLOCKSIZE-byte blocks" msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:8 -#, fuzzy msgid "limit listing to local filesystems" -msgstr "Nur lokale Dateisysteme auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:9 -#, fuzzy msgid "like --block-size=1024" -msgstr "Blockgröße festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:10 msgid "like --block-size=1048576" @@ -51792,9 +47980,8 @@ msgid "use filesystem native block size" msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:13 -#, fuzzy msgid "do not use colours" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:14 msgid "" @@ -51813,48 +48000,40 @@ msgid "show inode instead of block usage" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:1 -#, fuzzy msgid "Set output file" -msgstr "Kennzeichnungsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:2 -#, fuzzy msgid "Read one line at a time" -msgstr "Zeige Name, Zeile und Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:3 -#, fuzzy msgid "Set lexer" -msgstr "Schwere festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:4 msgid "Guess lexer" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:5 -#, fuzzy msgid "Set formater" -msgstr "Formatdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:6 -#, fuzzy msgid "Set coma-seperated options" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:7 -#, fuzzy msgid "Set one option" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:8 -#, fuzzy msgid "Set filter" -msgstr "Kennzeichnungsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:9 -#, fuzzy msgid "Print style definition for given style" -msgstr "Alle möglichen Definitionen des angegebenen Namens ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:10 msgid "List lexers, formaters, styles or filters" @@ -51865,18 +48044,16 @@ msgid "Guess and print lexer name based on given file" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:12 -#, fuzzy msgid "Print detailed help" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:13 msgid "Print detailed traceback on unhandled exceptions" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:15 -#, fuzzy msgid "Print package version" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:1 #: /tmp/fish/implicit/share/completions/python3.fish:1 @@ -51953,9 +48130,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:16 #: /tmp/fish/implicit/share/completions/python3.fish:16 #: /tmp/fish/implicit/share/completions/python.fish:17 -#, fuzzy msgid "Read program from stdin" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:17 #: /tmp/fish/implicit/share/completions/python.fish:18 @@ -51980,15 +48156,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:17 #: /tmp/fish/implicit/share/completions/python.fish:21 -#, fuzzy msgid "Don't print version and copyright messages on interactive startup" -msgstr "Magische Versionsinformation ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:18 #: /tmp/fish/implicit/share/completions/python.fish:22 -#, fuzzy msgid "Set implementation-specific option" -msgstr "Befehlsspezifische Erweiterungen bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:19 #: /tmp/fish/implicit/share/completions/python.fish:23 @@ -51999,38 +48173,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:20 #: /tmp/fish/implicit/share/completions/python.fish:24 -#, fuzzy msgid "Issue errors" -msgstr "Fehler ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:3 -#, fuzzy msgid "specify the file to Run Control file to use" -msgstr "Zeitablauf für Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:4 msgid "Runs the command in bash trace mode (-x). For internal debugging" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:5 -#, fuzzy msgid "Add one or more files to the topmost or named patch" -msgstr "Ein/mehrere neue Datei/en oder Verzeichnis/se hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:6 -#, fuzzy msgid "Print an annotated listing of the specified file" -msgstr "Alle möglichen Definitionen des angegebenen Namens ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:7 -#, fuzzy msgid "Print a list of applied patches" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:8 -#, fuzzy msgid "Remove the specified or topmost patch from the series file" -msgstr "Die auf der Befehlszeile angegebene Datei verschieben" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:9 msgid "" @@ -52038,16 +48206,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:10 -#, fuzzy msgid "Edit the specified file(s) in /usr/bin/vim" -msgstr "Angegebene Datei zur aktuellen Schlüsselringliste hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:11 -#, fuzzy msgid "Print the list of files that the topmost or specified patch changes" msgstr "" -"Die Liste der Standardeinstellungen gemäß der angegebenen Zeichenkette " -"festlegen" #: /tmp/fish/implicit/share/completions/quilt.fish:12 msgid "" @@ -52097,11 +48261,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:21 -#, fuzzy msgid "Print the list of patches that modify the specified file" msgstr "" -"Die Liste der Standardeinstellungen gemäß der angegebenen Zeichenkette " -"festlegen" #: /tmp/fish/implicit/share/completions/quilt.fish:22 msgid "" @@ -52110,27 +48271,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:23 -#, fuzzy msgid "Apply patch(es) from the series file" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:24 msgid "Refreshes the specified patch, or the topmost patch by default" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:25 -#, fuzzy msgid "Remove one or more files from the topmost or named patch" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:26 msgid "Rename the topmost or named patch" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:27 -#, fuzzy msgid "Print the names of all patches in the series file" -msgstr "Prozesskennung jedes Prozesses im Job anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:28 msgid " Initializes a source tree from an rpm spec file or a quilt series file" @@ -52158,24 +48316,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:1 -#, fuzzy msgid "Activate debug mode" -msgstr "Debug-Grad festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:2 -#, fuzzy msgid "Activate clean mode" -msgstr "Ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:3 -#, fuzzy msgid "Change configuration directory" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:4 -#, fuzzy msgid "Create copies of the default configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:5 msgid "Pick file with ranger" @@ -52186,9 +48340,8 @@ msgid "Pick multiple files with ranger" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:7 -#, fuzzy msgid "Pick directory" -msgstr "Verzeichnisse rekursiv durchlaufen" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:8 msgid "Open ranger with given file selected" @@ -52207,24 +48360,20 @@ msgid "Print statistics of CPU usage on exit" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:12 -#, fuzzy msgid "Execute command after configuration file read" -msgstr "Liste der rpm-Konfigurationsdateien" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:1 -#, fuzzy msgid "List all rbenv commands" -msgstr "Diesen Befehl deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:2 -#, fuzzy msgid "Set or show the global Ruby version" -msgstr "Sortierung nach Version" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:3 -#, fuzzy msgid "Install a ruby version" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:4 msgid "Set or show the local directory-specific Ruby version" @@ -52239,73 +48388,48 @@ msgid "Rehash rbenv shims (run this after installing binaries)" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:7 -#, fuzzy msgid "rbenv root folder" -msgstr "Ordner öffnen" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:8 msgid "Set or show the shell-specific Ruby version" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:9 -#, fuzzy msgid "Show the current Ruby version" -msgstr "Sortierung nach Version" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:10 msgid "List all Ruby versions known by rbenv" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:11 -#, fuzzy msgid "List all Ruby versions with the given command" -msgstr "fish mit diesem Befehl ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:12 msgid "Show the full path for the given Ruby command" msgstr "" -#: /tmp/fish/implicit/share/completions/rc.d.fish:1 -#, fuzzy -msgid "Filter started daemons" -msgstr "Alle Namen ausgeben" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:2 -msgid "Filter stopped daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:3 -msgid "Filter auto started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:4 -#, fuzzy -msgid "Filter manually started daemons" -msgstr "Alle installierten Pakete abfragen" - #: /tmp/fish/implicit/share/completions/rc-service.fish:1 msgid "Tests if the service exists or not" msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:2 -#, fuzzy msgid "List all available services" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:3 -#, fuzzy msgid "Display the help output" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:5 -#, fuzzy msgid "Display software version" -msgstr "Paketsatz anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:6 -#, fuzzy msgid "Run verbosely" -msgstr "Nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:7 msgid "Run quietly (Does not affect errors)" @@ -52358,18 +48482,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:11 -#, fuzzy msgid "Read the specified number of characters" -msgstr "Nur angegebene Anzahl Zeichen vergleichen" +msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:12 msgid "Store the results as an array" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:13 -#, fuzzy msgid "Set right-hand prompt command" -msgstr "Prompt-Befehl festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/readlink.fish:1 msgid "Canonicalize, follow symlinks, last can be missing" @@ -52388,18 +48510,16 @@ msgid "Do not output the trailing newline" msgstr "" #: /tmp/fish/implicit/share/completions/readlink.fish:6 -#, fuzzy msgid "Report error messages" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:1 msgid "all components of the path must exist" msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:2 -#, fuzzy msgid "no components of the path need exist" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:3 msgid "resolve '..' components before symlinks" @@ -52410,9 +48530,8 @@ msgid "resolve symlinks as encountered (default)" msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:5 -#, fuzzy msgid "suppress most error messages" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:6 msgid "print the resolved path relative to FILE" @@ -52423,9 +48542,8 @@ msgid "print absolute paths unless paths below FILE" msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:8 -#, fuzzy msgid "don't expand symlinks" -msgstr "Symbolischen Links nicht folgen" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:9 msgid "separate output with NUL rather than newline" @@ -52472,23 +48590,20 @@ msgid "Remove each component of path" msgstr "Jede Komponente des Pfades entfernen" #: /tmp/fish/implicit/share/completions/rmmod.fish:1 -#, fuzzy msgid "Prints the help text." -msgstr "Befehlstyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:2 msgid "Send errors to syslog instead of standard error." msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:3 -#, fuzzy msgid "Print messages about what the program is doing." -msgstr "Nachrichten über den Programmablauf ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:4 -#, fuzzy msgid "Show version of program and exit" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:5 msgid "" @@ -52497,37 +48612,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:2 -#, fuzzy msgid "Do not execute logon and logoff macros" -msgstr "Keine Befehle ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:3 msgid "Exit after processing commandline macro files" msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:4 -#, fuzzy msgid "Do not show splashscreen" -msgstr "Keine Flags anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:5 -#, fuzzy msgid "Exit on exception" -msgstr "Ende bei zweitem EOF" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:7 -#, fuzzy msgid "Print ./configure options" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:8 msgid "Run with memory usage monitoring" msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:5 -#, fuzzy msgid "List of rpm configuration files" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:6 msgid "Pipe output through specified command" @@ -52538,9 +48648,8 @@ msgid "Specify directory for rpm database" msgstr "Verzeichnis für rpm-Datenbank angeben" #: /tmp/fish/implicit/share/completions/rpm.fish:8 -#, fuzzy msgid "Specify root directory for rpm operations" -msgstr "Verzeichnis für rpm-Datenbank angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:9 msgid "Add suggested packages to the transaction set when needed" @@ -52937,18 +49046,16 @@ msgid "Upgrade package if already installed" msgstr "Paket aktualisieren, wenn es bereits installiert ist" #: /tmp/fish/implicit/share/completions/rpm.fish:96 -#, fuzzy msgid "Verify package integrity" -msgstr "Paketintegrität verifizieren" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:97 msgid "Erase package" msgstr "Paket löschen" #: /tmp/fish/implicit/share/completions/rsync.fish:2 -#, fuzzy msgid "Suppress non-error messages" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:3 msgid "Skip based on checksum, not mod-time & size" @@ -52963,9 +49070,8 @@ msgid "Turn off an implied OPTION (e.g. --no-D)" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:6 -#, fuzzy msgid "Recurse into directories" -msgstr "include-Verzeichnisse ersetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:7 msgid "Use relative path names" @@ -52992,28 +49098,24 @@ msgid "Skip files that are newer on the receiver" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:13 -#, fuzzy msgid "Update destination files in-place" -msgstr "Original-Dateien editieren" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:14 -#, fuzzy msgid "Append data onto shorter files" -msgstr "Neue Dateien anfügen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:15 msgid "Transfer directories without recursing" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:16 -#, fuzzy msgid "Copy symlinks as symlinks" -msgstr "Symbolische Links als Links speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:17 -#, fuzzy msgid "Transform symlink into referent file/dir" -msgstr "Symlinks folgen und die Dateien abrufen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:18 msgid "Only \"unsafe\" symlinks are transformed" @@ -53032,14 +49134,12 @@ msgid "Treat symlinked dir on receiver as dir" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:22 -#, fuzzy msgid "Preserve hard links" -msgstr "Alle symbolischen Links dereferenzieren" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:23 -#, fuzzy msgid "Preserve permissions" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:24 msgid "Preserve executability" @@ -53054,41 +49154,36 @@ msgid "Preserve extended attrs (implies -p) [n.s.]" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:27 -#, fuzzy msgid "Change destination permissions" -msgstr "Ziel-E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:28 msgid "Preserve owner (super-user only)" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:29 -#, fuzzy msgid "Preserve group" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:30 msgid "Preserve device files (super-user only)" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:31 -#, fuzzy msgid "Preserve special files" -msgstr "Dateieigentümer erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:32 msgid "Same as --devices --specials" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:33 -#, fuzzy msgid "Preserve times" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:34 -#, fuzzy msgid "Omit directories when preserving times" -msgstr "Verzeichnisse, aber nicht deren Inhalt auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:35 msgid "Receiver attempts super-user activities" @@ -53115,14 +49210,12 @@ msgid "Force a fixed checksum block-size" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:41 -#, fuzzy msgid "Specify the remote shell to use" -msgstr "Zeitablauf für Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:42 -#, fuzzy msgid "Specify the rsync to run on remote machine" -msgstr "root-Verzeichnis für rpm-Operationen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:43 msgid "Ignore non-existing files on receiving side" @@ -53169,9 +49262,8 @@ msgid "Force deletion of dirs even if not empty" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:54 -#, fuzzy msgid "Don’t delete more than NUM files" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:55 msgid "Don’t transfer any file larger than SIZE" @@ -53210,18 +49302,16 @@ msgid "Don’t skip files that match size and time" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:64 -#, fuzzy msgid "Skip files that match in size" -msgstr "Rekursiv, dem MUSTER entsprechende Dateien überspringen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:65 msgid "Compare mod-times with reduced accuracy" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:66 -#, fuzzy msgid "Create temporary files in directory DIR" -msgstr "Temporäres Verzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:67 msgid "Find similar file for basis if no dest file" @@ -53246,9 +49336,8 @@ msgid "Compress file data during the transfer" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:72 -#, fuzzy msgid "Explicitly set compression level" -msgstr "Komprimierungsgrad" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:73 msgid "Auto-ignore files in the same way CVS does" @@ -53265,24 +49354,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:76 -#, fuzzy msgid "Exclude files matching PATTERN" -msgstr "Rekursiv, dem MUSTER entsprechende Dateien überspringen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:78 -#, fuzzy msgid "Don’t exclude files matching PATTERN" -msgstr "Rekursiv, Dateien gemäß MUSTER suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:79 -#, fuzzy msgid "Read include patterns from FILE" -msgstr "Dateinamen über Pipe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:80 -#, fuzzy msgid "Read list of source-file names from FILE" -msgstr "Dateinamen über Pipe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:81 msgid "All *from/filter files are delimited by 0s" @@ -53297,14 +49382,12 @@ msgid "Specify double-colon alternate port number" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:84 -#, fuzzy msgid "Specify custom TCP options" -msgstr "Optionen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:85 -#, fuzzy msgid "Use blocking I/O for the remote shell" -msgstr "Zeitablauf für Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:86 msgid "Give some file-transfer stats" @@ -53319,9 +49402,8 @@ msgid "Output numbers in a human-readable format" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:89 -#, fuzzy msgid "Show progress during transfer" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:90 msgid "Same as --partial --progress" @@ -53332,18 +49414,16 @@ msgid "Output a change-summary for all updates" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:92 -#, fuzzy msgid "Output filenames using the specified format" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:93 msgid "Read password from FILE" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:94 -#, fuzzy msgid "List the files instead of copying them" -msgstr "Dateien im Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:95 msgid "Limit I/O bandwidth; KBytes per second" @@ -53378,28 +49458,24 @@ msgid "Prefer IPv6" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:105 -#, fuzzy msgid "Remote path" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:1 -#, fuzzy msgid "Definition" -msgstr "Funktion" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:2 -#, fuzzy msgid "Do not remove source tree after installation" -msgstr "Vor der Installation nicht auf ausreichenden Plattenplatz prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:3 msgid "Verbose mode: print compilation status to stdout" msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:4 -#, fuzzy msgid "List all built-in definitions" -msgstr "Einige eingebaute Funktionen deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby.fish:4 msgid "Kanji code-set" @@ -53418,48 +49494,40 @@ msgid "Compiler debug mode" msgstr "Compiler-Debug-Modus" #: /tmp/fish/implicit/share/completions/s3cmd.fish:1 -#, fuzzy msgid "Make bucket" -msgstr "Unpassende Klammern" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:2 -#, fuzzy msgid "Remove bucket" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:3 -#, fuzzy msgid "List objects or buckets" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:4 -#, fuzzy msgid "List all object in all buckets" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:5 -#, fuzzy msgid "Put file into bucket" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:6 -#, fuzzy msgid "Get file from bucket" -msgstr "Datei aus Datei extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:7 -#, fuzzy msgid "Delete file from bucket" -msgstr "Aus Archiv löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:8 msgid "Delete file from bucket (alias for del)" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:9 -#, fuzzy msgid "Restore file from Glacier storage" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:10 msgid "Synchronize a directory tree to S3" @@ -53470,9 +49538,8 @@ msgid "Disk usage by buckets" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:12 -#, fuzzy msgid "Get various information about Buckets or Files" -msgstr "Informative Nachrichten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:13 msgid "Copy object" @@ -53483,9 +49550,8 @@ msgid "Modify object metadata" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:15 -#, fuzzy msgid "Move object" -msgstr "Veraltete Dateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:16 msgid "Modify Access control list for Bucket or Files" @@ -53512,28 +49578,24 @@ msgid "Modify Bucket Requester Pays policy" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:22 -#, fuzzy msgid "Show multipart uploads" -msgstr "Threads anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:23 msgid "Abort a multipart upload" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:24 -#, fuzzy msgid "List parts of a multipart upload" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:25 -#, fuzzy msgid "Enable/disable bucket access logging" -msgstr "Ausdruck auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:26 -#, fuzzy msgid "Sign arbitrary string using the secret key" -msgstr "Einen öffentlichen Schlüssel mit Ihrem geheimen Schlüssel signieren" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:27 msgid "Sign an S3 URL to provide limited public access with expiry" @@ -53548,9 +49610,8 @@ msgid "Create Website from bucket" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:30 -#, fuzzy msgid "Delete Website" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:31 msgid "Info about Website" @@ -53565,52 +49626,44 @@ msgid "Upload a lifecycle policy for the bucket" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:34 -#, fuzzy msgid "Remove a lifecycle policy for the bucket" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:35 -#, fuzzy msgid "List CloudFront distribution points" -msgstr "Distributions-tarball erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:36 msgid "Display CloudFront distribution point parameters" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:37 -#, fuzzy msgid "Create CloudFront distribution point" -msgstr "Distributions-tarball erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:38 -#, fuzzy msgid "Delete CloudFront distribution point" -msgstr "Distributions-tarball erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:39 -#, fuzzy msgid "Change CloudFront distribution point parameters" -msgstr "Distributions-tarball erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:40 msgid "Display CloudFront invalidation request(s) status" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:42 -#, fuzzy msgid "Run interactive (re)configuration tool" -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:44 -#, fuzzy msgid "Dump current configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:45 -#, fuzzy msgid "AWS Access Key" -msgstr "Zugriffszeit anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:46 msgid "AWS Secret Key" @@ -53625,58 +49678,48 @@ msgid "Dry run, test only" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:49 -#, fuzzy msgid "Use HTTPS (default)" -msgstr "(Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:50 -#, fuzzy msgid "Don't use HTTPS" -msgstr "Stapelverarbeitungsmodus nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:51 -#, fuzzy msgid "Encrypt files before uploading" -msgstr "Dateien vor dem Löschen umpacken" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:52 -#, fuzzy msgid "Don't encrypt files" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:53 -#, fuzzy msgid "Force overwrite" -msgstr "Nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:54 -#, fuzzy msgid "Resume partially downloaded file" -msgstr "Herunterladen einer teilweise übertragenen Datei fortsetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:55 -#, fuzzy msgid "Resume partially uploaded files" -msgstr "Herunterladen einer teilweise übertragenen Datei fortsetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:56 msgid "Resume multipart upload by UploadId" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:57 -#, fuzzy msgid "Skip existing files at destination" -msgstr "Sicherung jeder existierenden Zieldatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:58 -#, fuzzy msgid "Upload/download/delete recursively" -msgstr "Dep und rdep rekursiv" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:59 -#, fuzzy msgid "Check MD5 sums (default)" -msgstr "(Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:60 msgid "Skip MD5 sum check" @@ -53699,33 +49742,28 @@ msgid "Revoke permission to named user" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:65 -#, fuzzy msgid "Days to keep restored file" -msgstr "Dateiname nciht (zurück)sichern" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:66 -#, fuzzy msgid "S3 glacier restore priority" -msgstr "Zugriffsverlauf des Paketdepots anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:67 msgid "Delete objects not found locally" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:68 -#, fuzzy msgid "Don't delete dest objects" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:69 -#, fuzzy msgid "Delete after upload" -msgstr "Datei ist ein Block-Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:70 -#, fuzzy msgid "Delete no more than NUM files" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:71 msgid "Max objects per response" @@ -53736,66 +49774,56 @@ msgid "Additional parallel upload" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:73 -#, fuzzy msgid "Delete remotely after fetch" -msgstr "Aus Archiv löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:74 -#, fuzzy msgid "Preserve FS attributes" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:75 -#, fuzzy msgid "Don't store FS attributes" -msgstr "md5-Attribute nicht prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:76 -#, fuzzy msgid "Exclude GLOB matches" -msgstr "Dateisysteme ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:77 -#, fuzzy msgid "--exclude GLOBs from FILE" -msgstr "Dateinamen über Pipe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:78 msgid "Exclude REGEXP matches" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:79 -#, fuzzy msgid "Read --rexclude REGEXPs from FILE" -msgstr "Dateinamen über Pipe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:80 msgid "Include GLOB matches even if previously excluded" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:81 -#, fuzzy msgid "Read --include GLOBs from FILE" -msgstr "Dateinamen über Pipe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:82 msgid "Include REGEXP matches even if preiously excluded" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:83 -#, fuzzy msgid "Read --rinclude REGEXPs from FILE" -msgstr "Dateinamen über Pipe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:84 -#, fuzzy msgid "Read source-file names from FILE" -msgstr "Dateinamen über Pipe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:85 -#, fuzzy msgid "Create bucket in region" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:86 msgid "S3 endpoint (default: s3.amazonaws.com)" @@ -53822,9 +49850,8 @@ msgid "Prefix for access logs" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:92 -#, fuzzy msgid "Disable access logging" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:93 msgid "Default MIME-type for objects" @@ -53839,23 +49866,20 @@ msgid "Don't guess MIME-type, use default" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:96 -#, fuzzy msgid "Don't use mime magic when guessing" -msgstr "Keinen Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:97 -#, fuzzy msgid "Force MIME-type" -msgstr "Ja erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:98 msgid "Add HTTP header" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:99 -#, fuzzy msgid "Remove HTTP header" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:100 msgid "Use server-side encryption for upload" @@ -53866,18 +49890,16 @@ msgid "Encrypt with specified AWS KMS-managed key" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:102 -#, fuzzy msgid "Use specified encoding" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:103 msgid "Add encoding to CSV extension list" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:104 -#, fuzzy msgid "Use S3 name as-is" -msgstr "Eine Platte umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:105 msgid "No multipart on files larger than --multipart-chunk-size-mb" @@ -53892,19 +49914,16 @@ msgid "Include MD5 sums in bucket listings" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:108 -#, fuzzy msgid "Print sizes in human-readable form" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:109 -#, fuzzy msgid "Name of index-document" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:110 -#, fuzzy msgid "Name of error-document" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:111 msgid "When expiration rule takes effect" @@ -53919,42 +49938,36 @@ msgid "Apply expiry to objects matching prefix" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:114 -#, fuzzy msgid "Show progress (default on TTY)" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:115 msgid "Don't show progress meter (default if non-TTY)" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:116 -#, fuzzy msgid "Show file transfer stats" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:117 -#, fuzzy msgid "Enable CloudFront distribution" -msgstr "Debian-Distribution" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:118 -#, fuzzy msgid "Disable CloudFront distribution" -msgstr "Debian-Distribution" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:119 -#, fuzzy msgid "Invalidate CloudFront file" -msgstr "Datei ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:120 msgid "Invalidate default index" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:121 -#, fuzzy msgid "Don't invalidate default index" -msgstr "Keine Erklärungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:122 msgid "Add CNAME to CloudFront distribution" @@ -53977,29 +49990,24 @@ msgid "Cache FILE containing MD5 values" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:131 -#, fuzzy msgid "Silence stdout output" -msgstr "dired-Ausgabe erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:132 -#, fuzzy msgid "Path to SSL CA certificate FILE" -msgstr "Zertifikatsregeln festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:133 -#, fuzzy msgid "Validate SSL certificate" -msgstr "Zertifikatsregeln festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:134 -#, fuzzy msgid "Don't validate SSL certificate" -msgstr "Zertifikatsregeln festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:135 -#, fuzzy msgid "Validate SSL hostname" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:136 msgid "Don't validate SSL hostname" @@ -54010,23 +50018,20 @@ msgid "Use AWS Signature version 2" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:138 -#, fuzzy msgid "Limit upload or download speed (bytes/sec)" -msgstr "Herunterladegeschwindigkeit begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:139 msgid "Set REQUESTER PAYS for operations" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:140 -#, fuzzy msgid "Produce long listing" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:141 -#, fuzzy msgid "Stop on error in transfer" -msgstr "Bei zu vielen Fehlern Anzeige beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:142 msgid "Provide Content-Disposition for signed URLs" @@ -54055,23 +50060,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:4 -#, fuzzy msgid "Convert all the files in a directory. Requires --from and --to." -msgstr "Ein oder mehrere Dateien/Verzeichnisse aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:5 #: /tmp/fish/implicit/share/completions/sass.fish:5 #: /tmp/fish/implicit/share/completions/scss.fish:5 -#, fuzzy msgid "Show help message." -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:6 #: /tmp/fish/implicit/share/completions/sass.fish:6 #: /tmp/fish/implicit/share/completions/scss.fish:6 -#, fuzzy msgid "Print the Sass version." -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:7 msgid "Convert underscores to dashes." @@ -54098,9 +50100,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:11 #: /tmp/fish/implicit/share/completions/sass.fish:14 #: /tmp/fish/implicit/share/completions/scss.fish:15 -#, fuzzy msgid "Specify the default encoding for input files." -msgstr "apt-Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:12 #: /tmp/fish/implicit/share/completions/sass.fish:15 @@ -54115,9 +50116,8 @@ msgid "The path to save parsed Sass files. Defaults to .sass-cache." msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:14 -#, fuzzy msgid "Don't cache to sassc files." -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:15 #: /tmp/fish/implicit/share/completions/sass.fish:23 @@ -54127,9 +50127,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:1 #: /tmp/fish/implicit/share/completions/scss.fish:1 -#, fuzzy msgid "Specify a Sass import path." -msgstr "Man-Pfad angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:2 #: /tmp/fish/implicit/share/completions/scss.fish:2 @@ -54204,9 +50203,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:18 #: /tmp/fish/implicit/share/completions/scss.fish:19 -#, fuzzy msgid "Run an interactive SassScript shell." -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:19 #: /tmp/fish/implicit/share/completions/scss.fish:20 @@ -54222,9 +50220,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:22 #: /tmp/fish/implicit/share/completions/scss.fish:23 -#, fuzzy msgid "Don't cache parsed Sass files." -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:24 #: /tmp/fish/implicit/share/completions/scss.fish:25 @@ -54232,93 +50229,80 @@ msgid "Silence warnings and status messages during compilation." msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:1 -#, fuzzy msgid "Create a new sbt project from the given template" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:2 msgid "Connect to a server with an interactive sbt prompt" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:3 -#, fuzzy msgid "Print options help message" -msgstr "Informative Nachrichten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:4 -#, fuzzy msgid "Print more details" -msgstr "Wichtige Abhängigkeiten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:5 -#, fuzzy msgid "Set log level to debug" -msgstr "Fehler-Grad festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:6 -#, fuzzy msgid "Disable ANSI color codes" -msgstr "Keine ausführliche Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:7 msgid "Launch even if there's no sbt project" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:8 -#, fuzzy msgid "Use all local caches" -msgstr "Lokalen Zwischenspeicher und Pakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:9 msgid "Use global caches, but not global ~/.sbt directory" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:10 -#, fuzzy msgid "Disable interactive mode" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:11 msgid "Specify path to global settings/plugins" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:12 -#, fuzzy msgid "Specify path to shared boot directory" -msgstr "Verzeichnis angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:13 -#, fuzzy msgid "Specify path to local Ivy repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:14 -#, fuzzy msgid "Set memory options" -msgstr "Konfigurationsoptionen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:15 msgid "Turn on JVM debugging, open at the given port" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:16 -#, fuzzy msgid "Use specified version of sbt" -msgstr "Benutze angegebenen Kompressionsalgorithmus" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:17 -#, fuzzy msgid "Use specified jar as the sbt launcher" -msgstr "Angegebenen Schlüssel als Schlüssel zum Signieren verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:18 msgid "Use an RC version of sbt" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:19 -#, fuzzy msgid "Use a snapshot version of sbt" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:20 msgid "Alternate JAVA_HOME" @@ -54382,19 +50366,16 @@ msgid "Gamma-correction table [0..255, …]" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:12 -#, fuzzy msgid "Scan mode" -msgstr "Ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:13 -#, fuzzy msgid "Device name to use" -msgstr "Geräte-Sektion" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:14 -#, fuzzy msgid "List devices" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:15 msgid "Print formatted device list [%d, %v, %m, %t, %i, %n]" @@ -54409,9 +50390,8 @@ msgid "The filename of the image to be loaded" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:18 -#, fuzzy msgid "Output image format" -msgstr "Ausgabe im ISO 8601-Format" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:19 msgid "Include this ICC profile into TIFF file" @@ -54432,9 +50412,8 @@ msgid "How many pages to scan in batch mode" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:23 -#, fuzzy msgid "Increase page number in filename by #" -msgstr "Groß-/Kleinschreibung beim Dateinamenvergleich ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:24 msgid "Increment page number by two" @@ -54449,9 +50428,8 @@ msgid "Only accept authorization requests using md5" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:27 -#, fuzzy msgid "Print progress messages" -msgstr "Informative Nachrichten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:28 msgid "Only set options, don't actually scan" @@ -54462,14 +50440,12 @@ msgid "Test backend thoroughly" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:30 -#, fuzzy msgid "List all available backend options" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:31 -#, fuzzy msgid "Display this help message and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:32 msgid "Give even more status messages" @@ -54530,9 +50506,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:9 -#, fuzzy msgid "Debug the build process" -msgstr "Kindprozess" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:10 msgid "" @@ -54542,9 +50517,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:11 -#, fuzzy msgid "Use file as the initial SConscript file" -msgstr "Datei als Terminal benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:12 msgid "" @@ -54558,37 +50532,32 @@ msgid "Print the standard help message about command-line options and exit" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:14 -#, fuzzy msgid "Ignore all errors from commands executed to rebuild files" -msgstr "Fehler aus nicht leeren Verzeichnissen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:15 msgid "Specifies a directory to search for imported Python modules" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:16 -#, fuzzy msgid "Cache implicit dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:17 msgid "Force SCons to ignore the cached implicit dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:18 -#, fuzzy msgid "Force SCons to ignore changes in the implicit dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:19 -#, fuzzy msgid "Specifies the number of jobs (commands) to run simultaneously" -msgstr "Gibt die Anzahl zu sendender Bytes an" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:20 -#, fuzzy msgid "Continue as much as possible after an error" -msgstr "Fortsetzung nach Fehler" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:21 msgid "" @@ -54602,9 +50571,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:23 -#, fuzzy msgid "No execute" -msgstr "Programm" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:24 msgid "" @@ -54613,9 +50581,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:25 -#, fuzzy msgid "Do not run any commands, or print anything" -msgstr "Nichts schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:26 msgid "" @@ -54624,14 +50591,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:27 -#, fuzzy msgid "Build dependencies in a random order" -msgstr "Modulabhängigkeiten auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:28 -#, fuzzy msgid "Silent" -msgstr "Ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:29 msgid "" @@ -54658,9 +50623,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:34 -#, fuzzy msgid "Enable or disable warnings" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:35 msgid "Turn off -w, even if it was turned on implicitly" @@ -54673,14 +50637,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scp.fish:1 -#, fuzzy msgid "Local Path" -msgstr "Logisches Und" +msgstr "" #: /tmp/fish/implicit/share/completions/scp.fish:2 -#, fuzzy msgid "Remote Path" -msgstr "Schlüssel entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/scp.fish:4 msgid "Bandwidth limit" @@ -54696,9 +50658,8 @@ msgid "Recursively copy" msgstr "Rekursive Kopie" #: /tmp/fish/implicit/share/completions/scp.fish:9 -#, fuzzy msgid "Encryption program" -msgstr "Verschlüsselungsprogramm" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:1 msgid "Detect which folder screen uses" @@ -54709,37 +50670,32 @@ msgid "Get the socket list on mac" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:3 -#, fuzzy msgid "Get the socket list" -msgstr "Verbindungszeitüberschreitung festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:4 -#, fuzzy msgid "Print a list of detached screen sessions" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:5 -#, fuzzy msgid "Print a list of attached screen sessions" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:6 msgid "Print a list of running screen sessions" msgstr "Liste laufender screen-Sitzungen ausgeben" #: /tmp/fish/implicit/share/completions/screen.fish:7 -#, fuzzy msgid "Include all capabilitys" -msgstr "Include-Pfad" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:8 msgid "Adapt window size" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:9 -#, fuzzy msgid "Specify init file" -msgstr "Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:10 #: /tmp/fish/implicit/share/completions/screen.fish:11 @@ -54747,9 +50703,8 @@ msgid "Detach screen" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:12 -#, fuzzy msgid "Reattach session" -msgstr "Ausdruck negieren" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:13 msgid "Reattach/create session" @@ -54765,9 +50720,8 @@ msgid "Escape character" msgstr "Escape-Zeichen" #: /tmp/fish/implicit/share/completions/screen.fish:16 -#, fuzzy msgid "Flow control on" -msgstr "Einhängepunkt" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:17 msgid "Flow control off" @@ -54786,72 +50740,61 @@ msgid "Interrupt display on C-c" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:21 -#, fuzzy msgid "Login on" -msgstr "Logisches Oder" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:22 -#, fuzzy msgid "Login off" -msgstr "Logisches Oder" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:23 #: /tmp/fish/implicit/share/completions/screen.fish:24 -#, fuzzy msgid "List sessions" -msgstr "Ausdruck auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:25 msgid "Log on" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:27 -#, fuzzy msgid "Optimal output" -msgstr "breite Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:28 -#, fuzzy msgid "Preselect window" -msgstr "Root-Fenster auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:30 -#, fuzzy msgid "Set shell" -msgstr "System festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:31 -#, fuzzy msgid "Session name" -msgstr "Versionsnummer" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:32 -#, fuzzy msgid "Session title" -msgstr "Session-Cookies speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:33 msgid "UTF-8 mode" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:35 -#, fuzzy msgid "Wipe dead sessions" -msgstr "Ausdruck auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:36 msgid "Multi attach" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:37 -#, fuzzy msgid "Send command" -msgstr "Ende des Befehls" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:2 -#, fuzzy msgid "Display version information and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:3 msgid "When selecting a window, grab wm border too" @@ -54862,9 +50805,8 @@ msgid "Display a countdown when used with delay" msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:5 -#, fuzzy msgid "Wait NUMBER of seconds before taking a shot" -msgstr "Anzahl Sekunden, bevor eine http-Zeitüberschreitung vermutet wird" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:6 msgid "Execute APPLICATION on the saved image" @@ -54875,14 +50817,12 @@ msgid "Image quality [1-100]" msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:8 -#, fuzzy msgid "Grab shot from multiple heads" -msgstr "Eine Befehlsfolge mehrmals ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:9 -#, fuzzy msgid "Select a window or rectangle with the mouse" -msgstr "Fenster durch Klicken auf den Rahmen auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:10 msgid "Generate thumbnail PERCENT of original" @@ -54909,9 +50849,8 @@ msgid "How to link generated output to the source files." msgstr "" #: /tmp/fish/implicit/share/completions/service.fish:1 -#, fuzzy msgid "Service name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:1 msgid "Color" @@ -54936,18 +50875,16 @@ msgid "Dim text" msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:6 -#, fuzzy msgid "Reverse color text" -msgstr "Sortierreihenfolge umkehren" +msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:7 msgid "Underline text" msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:9 -#, fuzzy msgid "Print a list of all accepted color names" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/setfacl.fish:1 msgid "Remove all extended ACL entries" @@ -54978,9 +50915,8 @@ msgid "Test if We are specifying a locale value for the prompt" msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:3 -#, fuzzy msgid "Erase variable" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:8 msgid "Share variable persistently across sessions" @@ -54995,14 +50931,12 @@ msgid "List the names of the variables, but not their value" msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:14 -#, fuzzy msgid "Locale variable" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:15 -#, fuzzy msgid "Do not truncate long lines" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/setsid.fish:2 msgid "Set controlling terminal to current one" @@ -55013,33 +50947,28 @@ msgid "Wait until program ends and return its exit value" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:1 -#, fuzzy msgid "Print this message" -msgstr "Informative Nachrichten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:2 msgid "Specifies compatibility map component name" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:3 -#, fuzzy msgid "Specifies configuration file to use" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:4 -#, fuzzy msgid "Specifies the device ID to use" -msgstr "Zeitablauf für Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:5 -#, fuzzy msgid "Specifies display to use" -msgstr "Befehl an die Shell übergeben" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:6 -#, fuzzy msgid "Specifies geometry component name" -msgstr "Angegebene Anzahl von Verzeichniskomponenten ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:7 msgid "Add to list of directories to be used" @@ -55050,9 +50979,8 @@ msgid "Specifies keycodes component name" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:9 -#, fuzzy msgid "Specifies name of keymap to load" -msgstr "Liste zu installierender Pakete" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:10 msgid "Specifies layout used to choose component names" @@ -55071,14 +50999,12 @@ msgid "Print a complete xkb_keymap description and exit" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:14 -#, fuzzy msgid "Print the current layout settings and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:15 -#, fuzzy msgid "Name of rules file to use" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:16 msgid "Specifies symbols component name" @@ -55089,9 +51015,8 @@ msgid "Synchronize request w/X server" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:18 -#, fuzzy msgid "Specifies types component name" -msgstr "Proxy-Benutzername angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:19 msgid "Sets verbosity (1..10). Higher values yield more messages" @@ -55106,77 +51031,61 @@ msgid "Verify a signed checksum list" msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:3 -#, fuzzy msgid "Sign specified message" -msgstr "Angegebene Datei ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:4 -#, fuzzy msgid "Verify a signed message and sig" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:1 -#, fuzzy msgid "Test if snap has yet to be given the subcommand" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:3 -#, fuzzy msgid "Test if snap command should have packages as potential completion" msgstr "" -"Testen, ob der apt-Befehl Pakete zur möglichen Fertigstellung haben sollte" #: /tmp/fish/implicit/share/completions/snap.fish:4 -#, fuzzy msgid "Test if snap command should have files as potential completion" msgstr "" -"Testen, ob der apt-Befehl Pakete zur möglichen Fertigstellung haben sollte" #: /tmp/fish/implicit/share/completions/snap.fish:5 #: /tmp/fish/implicit/share/completions/snap.fish:6 -#, fuzzy msgid "List disabled snaps" -msgstr "Auf Installierte begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:7 -#, fuzzy msgid "List installed snaps" -msgstr "Auf Installierte begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:8 -#, fuzzy msgid "List of interfaces" -msgstr "Schnittstelle stoppen" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:9 -#, fuzzy msgid "List change IDs" -msgstr "Keine Änderungen" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:10 -#, fuzzy msgid "List aliases" -msgstr "Alle Namen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:11 -#, fuzzy msgid "Check that no assertion type is used yet" msgstr "" -"Überprüfen sie das dieser Terminaltyp auf diesem System unterstützt wird" #: /tmp/fish/implicit/share/completions/snap.fish:12 msgid "Check if certain assertion type is used" msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:13 -#, fuzzy msgid "List assertion filters" -msgstr "Beschreibung des mime-Typs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:14 -#, fuzzy msgid "Show this help message" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:16 msgid "Snap" @@ -55231,9 +51140,8 @@ msgid "Define key" msgstr "Schlüssel definieren" #: /tmp/fish/implicit/share/completions/sort.fish:14 -#, fuzzy msgid "Merge sorted files" -msgstr "Veraltete Dateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:16 msgid "Stabilize sort" @@ -55260,9 +51168,8 @@ msgid "Lines end with 0 byte" msgstr "Zeilen enden mit Null-Byte" #: /tmp/fish/implicit/share/completions/ssh.fish:2 -#, fuzzy msgid "Disables forwarding of the authentication agent" -msgstr "Aktiviert Weiterleitung des Authentifizierungs-Agenten" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:3 msgid "Enables forwarding of the authentication agent" @@ -55273,9 +51180,8 @@ msgid "Interface to transmit from" msgstr "Schnittstelle zur Übertragung" #: /tmp/fish/implicit/share/completions/ssh.fish:6 -#, fuzzy msgid "Go to background" -msgstr "Job in Hintergrund schicken" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:7 msgid "Allow remote host to connect to local forwarded ports" @@ -55287,9 +51193,8 @@ msgid "Smartcard device" msgstr "Smartcard-Gerät" #: /tmp/fish/implicit/share/completions/ssh.fish:9 -#, fuzzy msgid "Disable forwarding of Kerberos tickets" -msgstr "Weiterleitung von Kerberos-Tickets deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:10 msgid "User" @@ -55300,9 +51205,8 @@ msgid "MAC algorithm" msgstr "MAC-Algorithmus" #: /tmp/fish/implicit/share/completions/ssh.fish:12 -#, fuzzy msgid "Prevent reading from stdin" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:13 msgid "Do not execute remote command" @@ -55313,9 +51217,8 @@ msgid "Subsystem" msgstr "Subsystem" #: /tmp/fish/implicit/share/completions/ssh.fish:17 -#, fuzzy msgid "Force pseudo-tty allocation" -msgstr "Pseudo-tty-Zuordnung deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:18 msgid "Disable pseudo-tty allocation" @@ -55342,33 +51245,28 @@ msgid "Dynamic port forwarding" msgstr "Dynamische Port-Weiterleitung" #: /tmp/fish/implicit/share/completions/sshfs.fish:3 -#, fuzzy msgid "Compression" -msgstr "Komprimierungsgrad" +msgstr "" #: /tmp/fish/implicit/share/completions/sshfs.fish:5 msgid "Enable debug" msgstr "" #: /tmp/fish/implicit/share/completions/sshfs.fish:6 -#, fuzzy msgid "Foreground operation" -msgstr "Löschung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/sshfs.fish:7 -#, fuzzy msgid "Disable multi-threaded operation" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:1 -#, fuzzy msgid "Show this help text" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:2 -#, fuzzy msgid "Show only version number" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:3 msgid "Run 'stack --docker-help' for details" @@ -55427,9 +51325,8 @@ msgid "Specialized GHC variant, e.g. integersimple (implies --no-system-ghc)" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:15 -#, fuzzy msgid "Number of concurrent jobs to run" -msgstr "Anzahl gleichzeitiger Jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:16 msgid "Extra directories to check for C header files" @@ -55472,9 +51369,8 @@ msgid "Override resolver in project file" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:26 -#, fuzzy msgid "Use the specified compiler" -msgstr "Angegebene Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:27 msgid "" @@ -55499,19 +51395,16 @@ msgid "Build the package(s) in this directory/configuration" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:31 -#, fuzzy msgid "Shortcut for 'build --copy-bins'" -msgstr "Abkürzung für '--options /dev/null'" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:32 -#, fuzzy msgid "Shortcut for 'build --test'" -msgstr "Abkürzung für '--options /dev/null'" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:33 -#, fuzzy msgid "Shortcut for 'build --bench'" -msgstr "Abkürzung für '--options /dev/null'" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:34 msgid "Shortcut for 'build --haddock'" @@ -55540,42 +51433,36 @@ msgid "Get the appropriate GHC for your project" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:40 -#, fuzzy msgid "Print out handy path information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:41 -#, fuzzy msgid "Unpack one or more packages locally" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:42 -#, fuzzy msgid "Update the package index" -msgstr "Paketliste aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:43 msgid "Upgrade to the latest stack (experimental)" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:44 -#, fuzzy msgid "Upload a package to Hackage" -msgstr "Ein Paket neu erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:45 -#, fuzzy msgid "Create source distribution tarballs" -msgstr "Distributions-tarball erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:46 msgid "Visualize your project's dependency graph using Graphviz dot" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:47 -#, fuzzy msgid "Execute a command" -msgstr "Argument als Befehl ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:48 msgid "Run ghc" @@ -55603,14 +51490,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:54 -#, fuzzy msgid "Clean the local packages" -msgstr "Lokalen Zwischenspeicher und Pakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:55 -#, fuzzy msgid "List the dependencies" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:56 msgid "Query general build information (experimental)" @@ -55641,14 +51526,12 @@ msgid "Subcommands specific to package signatures (experimental)" msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:2 -#, fuzzy msgid "Test if this is a login shell" -msgstr "Dies ist eine Login-Shell" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:3 -#, fuzzy msgid "Test if this is an interactive shell" -msgstr "Willkommen zu fish, der freundlichen interaktiven Shell" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:4 msgid "Test if a command substitution is currently evaluated" @@ -55675,14 +51558,12 @@ msgid "Test if all new jobs are put under job control" msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:10 -#, fuzzy msgid "Print the filename of the currently running script" -msgstr "Derzeit laufende Jobs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:11 -#, fuzzy msgid "Print the line number of the currently running script" -msgstr "Derzeit laufende Jobs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:12 msgid "" @@ -55690,43 +51571,36 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:13 -#, fuzzy msgid "Set which jobs are under job control" -msgstr "Stoppanforderung über Jobsteuerung (^Z)" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:14 -#, fuzzy msgid "Set all jobs under job control" -msgstr "Job unter Curser selektieren" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:15 -#, fuzzy msgid "Set only interactive jobs under job control" -msgstr "Job unter Curser selektieren" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:16 -#, fuzzy msgid "Set no jobs under job control" -msgstr "Job unter Curser selektieren" +msgstr "" #: /tmp/fish/implicit/share/completions/stream.fish:13 -#, fuzzy msgid "Components one or more pixel components" -msgstr "Ein oder mehrere Paket(e) entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/stream.fish:23 msgid "Pixel storage type [type]" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:1 -#, fuzzy msgid "Do not print output" -msgstr "Aktualisierung nicht durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:2 -#, fuzzy msgid "Specify maximum number of splits" -msgstr "Maximale Zahl offener Datei-Deskriptoren" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:3 msgid "Split right-to-left" @@ -55737,9 +51611,8 @@ msgid "Trim only leading characters" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:5 -#, fuzzy msgid "Trim only trailing characters" -msgstr "Alle nicht druckbaren Zeichen maskieren" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:6 msgid "Specify the chars to trim (default: whitespace)" @@ -55750,14 +51623,12 @@ msgid "Escape with \\ instead of quoting" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:8 -#, fuzzy msgid "Report index and length of the matches" -msgstr "Byte-Offset von Treffern ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:9 -#, fuzzy msgid "Report only non-matching input" -msgstr "Nur zutreffenden Teil anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:10 msgid "Report all matches per line/string" @@ -55776,43 +51647,36 @@ msgid "Repetition count" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:14 -#, fuzzy msgid "Maximum number of printed char" -msgstr "Maximalanzahl geschachtelter Blöcke erreicht." +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:15 -#, fuzzy msgid "Remove newline" -msgstr "Kein Neue-Zeile-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:1 -#, fuzzy msgid "Load the given project" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:2 -#, fuzzy msgid "Run the given command" -msgstr "Argument als Befehl ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:3 -#, fuzzy msgid "Open a new window" -msgstr "Root-Fenster auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:4 -#, fuzzy msgid "Add folders to the current window" -msgstr "Dateien an Archiv anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:5 msgid "Wait for the files to be closed before returning" msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:6 -#, fuzzy msgid "Don't activate the application" -msgstr "Aktion nicht tatsächlich ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:7 msgid "Keep the application activated after closing the file" @@ -55829,44 +51693,36 @@ msgid "Preserve environment" msgstr "Umgebung erhalten" #: /tmp/fish/implicit/share/completions/sudo.fish:4 -#, fuzzy msgid "Set home" -msgstr "Zeit festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:5 -#, fuzzy msgid "Remove the credential timestamp entirely" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:6 -#, fuzzy msgid "Preserve group vector" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:7 -#, fuzzy msgid "Read password from stdin" -msgstr "Namen über Standardeingabe lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:8 -#, fuzzy msgid "Run command in the background" -msgstr "Job im Hintergrund ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:9 -#, fuzzy msgid "Edit" -msgstr "Kennzeichnung bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:10 -#, fuzzy msgid "Run command as group" -msgstr "Befehle aus dem Cache starten" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:12 -#, fuzzy msgid "Run a login shell" -msgstr "Dies ist eine Login-Shell" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:13 msgid "Reset or ignore the credential timestamp" @@ -55879,32 +51735,28 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:15 -#, fuzzy msgid "Do not prompt for a password - if one is needed, fail" -msgstr "Nicht nach einer Ablaufzeit fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:16 -#, fuzzy msgid "Specify a custom password prompt" -msgstr "http-Passwort angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:17 msgid "Run the given command in a shell" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:18 -#, fuzzy msgid "Run command as user" -msgstr "Befehle aus dem Cache starten" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:19 msgid "Validate the credentials, extending timeout" msgstr "" #: /tmp/fish/implicit/share/completions/su.fish:1 -#, fuzzy msgid "Make login shell" -msgstr "Dies ist eine Login-Shell" +msgstr "" #: /tmp/fish/implicit/share/completions/su.fish:2 msgid "Pass command to shell" @@ -55926,21 +51778,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:3 #: /tmp/fish/implicit/share/completions/svn.fish:5 -#, fuzzy msgid "" "Output the content of specified files or URLs with revision and author " "information in-line." -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:4 -#, fuzzy msgid "Output the content of specified files or URLs." -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:6 -#, fuzzy msgid "Check out a working copy from a repository." -msgstr "Eine lokale Kopie eines weiteren Paketdepots erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:7 msgid "" @@ -55949,19 +51798,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:8 -#, fuzzy msgid "Send changes from your working copy to the repository." -msgstr "Änderungen der Arbeitskopie als Patch zum Paketdepot sichern" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:9 -#, fuzzy msgid "Duplicate something in working copy or repository, remembering history." -msgstr "Änderungen der Arbeitskopie als Patch zum Paketdepot sichern" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:10 -#, fuzzy msgid "Display the differences between two revisions or paths." -msgstr "Unterschiede zwischen Revisionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:11 msgid "Create an unversioned copy of a tree." @@ -55972,19 +51818,16 @@ msgid "Describe the usage of this program or its subcommands." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:13 -#, fuzzy msgid "Commit an unversioned file or tree into the repository." -msgstr "Neue/s Datei/Verzeichnis zum Paketdepot hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:14 -#, fuzzy msgid "Display information about a local or remote item." -msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:15 -#, fuzzy msgid "List directory entries in the repository." -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:16 msgid "" @@ -55997,29 +51840,24 @@ msgid "Show the log messages for a set of revision(s) and/or file(s)." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:18 -#, fuzzy msgid "Apply the differences between two sources to a working copy path." -msgstr "Unterschiede zwischen Revisionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:19 -#, fuzzy msgid "Display information related to merges" -msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:20 -#, fuzzy msgid "Create a new directory under version control." -msgstr "Ein oder mehrere Dateien/Verzeichnisse aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:21 -#, fuzzy msgid "Move and/or rename something in working copy or repository." -msgstr "Änderungen der Arbeitskopie als Patch zum Paketdepot sichern" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:22 -#, fuzzy msgid "Apply a unidiff patch to the working copy" -msgstr "Nicht aufgezeichnete Änderungen in der Arbeitskopie anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:23 msgid "Remove a property from files, dirs, or revisions." @@ -56046,29 +51884,24 @@ msgid "Rewrite working copy url metadata" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:29 -#, fuzzy msgid "Remove files and directories from version control." -msgstr "Ein oder mehrere Dateien/Verzeichnisse aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:30 -#, fuzzy msgid "Remove conflicts on working copy files or directories." -msgstr "Eine/mehrere Datei/en oder Verzeichnis/se verschieben/umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:31 -#, fuzzy msgid "Remove 'conflicted' state on working copy files or directories." -msgstr "Eine/mehrere Datei/en oder Verzeichnis/se verschieben/umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:32 -#, fuzzy msgid "Restore pristine working copy file (undo most local edits)." -msgstr "Eine/mehrere Datei/en oder Verzeichnis/se verschieben/umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:33 -#, fuzzy msgid "Print the status of working copy files and directories." -msgstr "Eine/mehrere Datei/en oder Verzeichnis/se verschieben/umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:34 msgid "Update the working copy to a different URL." @@ -56079,33 +51912,28 @@ msgid "Unlock working copy paths or URLs." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:36 -#, fuzzy msgid "Bring changes from the repository into the working copy." -msgstr "Patches von einem anderen Paketdepot auf dieses kopieren und anwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:37 msgid "Upgrade the metadata storage format for a working copy." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:38 -#, fuzzy msgid "Specify a username ARG" -msgstr "http-Benutzername angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:39 -#, fuzzy msgid "Specify a password ARG" -msgstr "http-Passwort angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:40 -#, fuzzy msgid "Do not cache authentication tokens" -msgstr "Überprüfungsstatus von Schlüsselsignaturen nicht zwischenspeichern" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:41 -#, fuzzy msgid "Do no interactive prompting" -msgstr "Ausführung im interaktiven Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:42 msgid "" @@ -56114,9 +51942,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:43 -#, fuzzy msgid "Read user configuration files from directory ARG" -msgstr "Liste der rpm-Konfigurationsdateien" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:44 msgid "" @@ -56136,9 +51963,8 @@ msgid "Open composition window with attached files" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:7 -#, fuzzy msgid "Receive new messages" -msgstr "E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:8 msgid "Receive new messages of all accounts" @@ -56157,9 +51983,8 @@ msgid "Show the total number of messages for each folder" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:12 -#, fuzzy msgid "Specify directory with configuration files" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:1 msgid "The total number of worker threads to create (default: 1)" @@ -56240,23 +52065,20 @@ msgid "Total size of data to transfer (default: 100G)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:20 -#, fuzzy msgid "Type of memory operations" -msgstr "Optionen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:21 -#, fuzzy msgid "Number of files to create (default: 128)" -msgstr "Ausgecheckte Dateien beschreibbar machen (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:22 msgid "Block size to use in all I/O operations (default: 16K)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:23 -#, fuzzy msgid "Total size of files (default: 2G)" -msgstr "Dokumentationsdateien installieren (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:24 msgid "Type of workload to produce" @@ -56319,11 +52141,8 @@ msgid "Number of point select queries in a single transaction (default: 10)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:38 -#, fuzzy msgid "Number of simple range queries in a single transaction (default: 1)" msgstr "" -"Anzahl der vollständig vertrauenswürdigen Benutzer, um einen neuen " -"Schlüsselunterzeichner einzuführen (Standard ist 1)" #: /tmp/fish/implicit/share/completions/sysbench.fish:39 msgid "Number of SUM range queries in a single transaction (default: 1)" @@ -56414,9 +52233,8 @@ msgid "MySQL database name (default: sbtest)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:60 -#, fuzzy msgid "Type of the test table to use" -msgstr "Zeitablauf für Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:61 msgid "Use SSL connections. (default: no)" @@ -56433,33 +52251,28 @@ msgid "Additional options passed to CREATE TABLE." msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:1 -#, fuzzy msgid "Start one or more units" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:2 -#, fuzzy msgid "Stop one or more units" -msgstr "Ein oder mehrere Paket(e) entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:3 -#, fuzzy msgid "Restart one or more units" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:4 msgid "Runtime status about one or more units" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:5 -#, fuzzy msgid "Enable one or more units" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:6 -#, fuzzy msgid "Disable one or more units" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:7 msgid "Start a unit and dependencies and disable all others" @@ -56470,49 +52283,40 @@ msgid "Set the default target to boot into" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:9 -#, fuzzy msgid "List of unit types" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:10 -#, fuzzy msgid "List of unit states" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:11 -#, fuzzy msgid "Show all units or properties" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:12 -#, fuzzy msgid "Show also units of local containers" -msgstr "Arp-Einträge anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:13 -#, fuzzy msgid "Show reverse dependencies between units" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:14 -#, fuzzy msgid "Show units ordered before specified unit" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:15 -#, fuzzy msgid "Show units ordered after specified unit" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:16 -#, fuzzy msgid "Do not ellipsize anything" -msgstr "Nichts schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:17 -#, fuzzy msgid "Show the type of the socket" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:18 msgid "How to deal with queued jobs" @@ -56523,9 +52327,8 @@ msgid "Ignore inhibitor locks on shutdown or sleep" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:20 -#, fuzzy msgid "Suppress output to STDOUT" -msgstr "Normale Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:21 msgid "Do not wait for the requested operation to finish" @@ -56550,14 +52353,12 @@ msgid "Do not send wall message before halt" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:27 -#, fuzzy msgid "Do not reload daemon configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:28 -#, fuzzy msgid "Disable asking for password" -msgstr "Operater-Schlüsselworte deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:29 msgid "Send signal to which process" @@ -56580,18 +52381,16 @@ msgid "Make changes only temporarily" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:34 -#, fuzzy msgid "Number of journal lines to show" -msgstr "Nicht-leere Zeilen nummerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:35 msgid "Control journal formatting" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:36 -#, fuzzy msgid "list-dependencies flat, not as tree" -msgstr "Abhängigkeiten für dieses Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:42 msgid "Reboot to EFI setup" @@ -56622,28 +52421,24 @@ msgid "Disk image to mount the root directory for the container from" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:5 -#, fuzzy msgid "Invoke init in the container" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:6 -#, fuzzy msgid "Change to user in the container" -msgstr "Zeige Zeit" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:7 msgid "Sets the machine name for this container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:8 -#, fuzzy msgid "Set the specified UUID for the container." -msgstr "Angegebene Zeichenkette als Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:9 -#, fuzzy msgid "Make the container part of the specified slice" -msgstr "Dateisysteme des angegebenen Typs anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:10 msgid "Set a unit property on the scope unit" @@ -56674,21 +52469,16 @@ msgid "Create a virtual Ethernet link (\"veth\") between host and container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:17 -#, fuzzy msgid "Adds the host side of the Ethernet link created to the specified bridge" msgstr "" -"Die Liste der Standardeinstellungen gemäß der angegebenen Zeichenkette " -"festlegen" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:18 -#, fuzzy msgid "Map an ip port from the host to the container" -msgstr "Patches von einem anderen Paketdepot auf dieses kopieren und anwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:19 -#, fuzzy msgid "Sets the SELinux security context" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:20 msgid "Sets the SELinux security context for files in the API filesystems" @@ -56723,19 +52513,16 @@ msgid "Bind mount a file or directory from the host in the container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:28 -#, fuzzy msgid "Mount a tmpfs file system into the container" -msgstr "Dateisystems aus fstab einhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:29 -#, fuzzy msgid "Mount directories as overlayfs in the container" -msgstr "Verzeichnisse, aber nicht deren Inhalt auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:30 -#, fuzzy msgid "Pass environment variables to init in the container" -msgstr "TERM Umgebungsvariable nicht gesetzt" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:31 msgid "Share the system with the host [See Man Page]" @@ -56879,9 +52666,8 @@ msgid "Reblock while reading" msgstr "Während des Lesens umblocken" #: /tmp/fish/implicit/share/completions/tar.fish:16 -#, fuzzy msgid "Print directory names" -msgstr "Verzeichnisnamen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:17 msgid "Archive file" @@ -56904,9 +52690,8 @@ msgid "Use new incremental GNU format" msgstr "Neues inkrementelles GNU-Format benutzen" #: /tmp/fish/implicit/share/completions/tar.fish:22 -#, fuzzy msgid "Dereference symlinks" -msgstr "Symbolische Links dereferenzieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:23 msgid "Ignore zero block in archive" @@ -56961,9 +52746,8 @@ msgstr "Auf stdout extrahieren" #: /tmp/fish/implicit/share/completions/tar.fish:38 #: /tmp/fish/implicit/share/completions/tar.fish:39 -#, fuzzy msgid "Extract all permissions" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:40 msgid "Don't strip leading /" @@ -56978,24 +52762,21 @@ msgid "Show record number" msgstr "Satznummer anzeigen" #: /tmp/fish/implicit/share/completions/tar.fish:43 -#, fuzzy msgid "Remove files after adding to archive" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:44 #: /tmp/fish/implicit/share/completions/tar.fish:45 -#, fuzzy msgid "Do not sort file arguments" -msgstr "Keine Flags anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:46 msgid "Preserve file ownership" msgstr "Dateieigentümer erhalten" #: /tmp/fish/implicit/share/completions/tar.fish:47 -#, fuzzy msgid "Handle sparse files" -msgstr "Sparse-Dateien bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:48 msgid "Extract file from file" @@ -57019,9 +52800,8 @@ msgid "Ask for confirmation" msgstr "Nach Bestätigung fragen" #: /tmp/fish/implicit/share/completions/tar.fish:56 -#, fuzzy msgid "Verify archive" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:57 msgid "Exclude file" @@ -57046,9 +52826,8 @@ msgid "Filter through specified program" msgstr "durch angegebenes Programm filtern" #: /tmp/fish/implicit/share/completions/tar.fish:64 -#, fuzzy msgid "Filter through xz" -msgstr "durch gzip filtern" +msgstr "" #: /tmp/fish/implicit/share/completions/tee.fish:1 msgid "append to the given FILEs, do not overwrite" @@ -57059,9 +52838,8 @@ msgid "ignore interrupt signals" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:1 -#, fuzzy msgid "Display help message" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:3 msgid "Tell termite start instead of the shell" @@ -57072,9 +52850,8 @@ msgid "The role to set the termite window to report itself with" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:5 -#, fuzzy msgid "Set the termite window's title" -msgstr "Setzen der Terminalfarbe" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:6 msgid "Tell termite to change to when launching" @@ -57093,9 +52870,8 @@ msgid "Launch on X display" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:10 -#, fuzzy msgid "Config file to use" -msgstr "Wechsel zu Benutzer" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:11 msgid "Set the windows name part of WM_CLASS property" @@ -57115,9 +52891,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:101 #: /tmp/fish/implicit/share/completions/terraform.fish:116 #: /tmp/fish/implicit/share/completions/terraform.fish:125 -#, fuzzy msgid "Path to backup the existing state file" -msgstr "Sicherung jeder existierenden Zieldatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:5 #: /tmp/fish/implicit/share/completions/terraform.fish:23 @@ -57138,9 +52913,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:104 #: /tmp/fish/implicit/share/completions/terraform.fish:118 #: /tmp/fish/implicit/share/completions/terraform.fish:127 -#, fuzzy msgid "Duration to retry a state lock" -msgstr "Verzeichnisnamen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:7 #: /tmp/fish/implicit/share/completions/terraform.fish:52 @@ -57169,9 +52943,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:9 #: /tmp/fish/implicit/share/completions/terraform.fish:26 #: /tmp/fish/implicit/share/completions/terraform.fish:84 -#, fuzzy msgid "Limit the number of concurrent operations" -msgstr "Anzahl gleichzeitiger Jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:10 #: /tmp/fish/implicit/share/completions/terraform.fish:27 @@ -57196,17 +52969,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:107 #: /tmp/fish/implicit/share/completions/terraform.fish:122 #: /tmp/fish/implicit/share/completions/terraform.fish:131 -#, fuzzy msgid "Path to write state" -msgstr "keine mtab schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:13 #: /tmp/fish/implicit/share/completions/terraform.fish:30 #: /tmp/fish/implicit/share/completions/terraform.fish:87 #: /tmp/fish/implicit/share/completions/terraform.fish:108 -#, fuzzy msgid "Resource to target" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:14 #: /tmp/fish/implicit/share/completions/terraform.fish:18 @@ -57215,9 +52986,8 @@ msgstr "Dienstname" #: /tmp/fish/implicit/share/completions/terraform.fish:88 #: /tmp/fish/implicit/share/completions/terraform.fish:96 #: /tmp/fish/implicit/share/completions/terraform.fish:109 -#, fuzzy msgid "Set a variable in the Terraform configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:15 #: /tmp/fish/implicit/share/completions/terraform.fish:19 @@ -57226,9 +52996,8 @@ msgstr "Dienstkonfiguration neu laden" #: /tmp/fish/implicit/share/completions/terraform.fish:89 #: /tmp/fish/implicit/share/completions/terraform.fish:97 #: /tmp/fish/implicit/share/completions/terraform.fish:110 -#, fuzzy msgid "Set variables from a file" -msgstr "Formatdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:16 msgid "Interactive console for Terraform interpolations" @@ -57239,34 +53008,28 @@ msgid "Destroy Terraform-managed infrastructure" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:22 -#, fuzzy msgid "Don't ask for input for destroy confirmation" -msgstr "Keine Gruppeninformation ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:33 -#, fuzzy msgid "Environment management" -msgstr "Umgebung vor makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:34 -#, fuzzy msgid "List environments" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:35 -#, fuzzy msgid "Select an environment" -msgstr "Eine Aktion auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:36 -#, fuzzy msgid "Create a new environment" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:37 -#, fuzzy msgid "Delete an existing environment" -msgstr "Freistehende Umgebung bestätigen" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:38 msgid "Rewrite config files to canonical format" @@ -57277,23 +53040,20 @@ msgid "List files whose formatting differs" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:40 -#, fuzzy msgid "Write result to source file" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:41 -#, fuzzy msgid "Display diffs of formatting changes" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:42 msgid "Download and install modules for the configuration" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:43 -#, fuzzy msgid "Check modules for updates" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:45 msgid "Create a visual graph of Terraform resources" @@ -57312,9 +53072,8 @@ msgid "Import existing infrastructure into Terraform" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:51 -#, fuzzy msgid "Path to a directory of configuration files" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:56 msgid "Specific provider to use for import" @@ -57329,14 +53088,12 @@ msgid "Configure the backend for this environment" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:63 -#, fuzzy msgid "Backend configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:64 -#, fuzzy msgid "Download modules for this configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:65 msgid "Ask for input if necessary" @@ -57347,32 +53104,28 @@ msgid "Suppress prompts about copying state data" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:70 -#, fuzzy msgid "Read an output from a state file" -msgstr "Job aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:71 msgid "Path to the state file to read" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:73 -#, fuzzy msgid "Return the outputs for a specific module" -msgstr "Schreibe Ausgabe in die angegebene Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:74 -#, fuzzy msgid "Print output in JSON format" -msgstr "Ausgabeformat für Profilierung" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:75 msgid "Generate and show an execution plan" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:76 -#, fuzzy msgid "Generate a plan to destroy all resources" -msgstr "Paket aus Quelle generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:77 msgid "Return detailed exit codes" @@ -57384,9 +53137,8 @@ msgid "Depth of modules to show in the output" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:83 -#, fuzzy msgid "Write a plan file to the given path" -msgstr "Datei der Eingabe voranstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:90 msgid "Upload this Terraform module to Atlas to run" @@ -57401,9 +53153,8 @@ msgid "Lock modules and upload completely" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:93 -#, fuzzy msgid "Name of the configuration in Atlas" -msgstr "Eine Konfigurationsdatei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:94 msgid "Access token to use to upload" @@ -57448,23 +53199,20 @@ msgid "Validate the Terraform files" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:134 -#, fuzzy msgid "Print the Terraform version" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:2 msgid "Negate expression" msgstr "Ausdruck negieren" #: /tmp/fish/implicit/share/completions/test.fish:3 -#, fuzzy msgid "Logical AND" -msgstr "Logisches Oder" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:4 -#, fuzzy msgid "Logical OR" -msgstr "Logisches Oder" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:5 msgid "String length is non-zero" @@ -57531,24 +53279,20 @@ msgid "File is set-group-ID" msgstr "Datei ist set-group-ID" #: /tmp/fish/implicit/share/completions/test.fish:21 -#, fuzzy msgid "File owned by our effective group ID" -msgstr "Datei gehört effektiver Gruppenkennung" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:22 -#, fuzzy msgid "File is a symlink" -msgstr "Datei ist symbolischer Link" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:23 -#, fuzzy msgid "File owned by our effective user ID" -msgstr "Datei gehört zu effektiver Benutzerkennung" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:24 -#, fuzzy msgid "File is a named pipe" -msgstr "Datei ist eine benannte Pipe" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:25 msgid "File is readable" @@ -57559,14 +53303,12 @@ msgid "File size is non-zero" msgstr "Dateigröße ist nicht 0" #: /tmp/fish/implicit/share/completions/test.fish:27 -#, fuzzy msgid "File is a socket" -msgstr "Datei ist Socket" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:28 -#, fuzzy msgid "FD is a terminal" -msgstr "FD ist ein Terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:29 msgid "File set-user-ID bit is set" @@ -57592,9 +53334,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tex.fish:7 #: /tmp/fish/implicit/share/completions/tex.fish:8 #: /tmp/fish/implicit/share/completions/tex.fish:9 -#, fuzzy msgid "Set interaction mode" -msgstr "Schnittstelle auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/tex.fish:11 msgid "Enable \\write18{SHELL COMMAND}" @@ -57605,9 +53346,8 @@ msgid "Disable \\write18{SHELL COMMAND}" msgstr "" #: /tmp/fish/implicit/share/completions/tex.fish:13 -#, fuzzy msgid "Insert source specials into the DVI file" -msgstr "Quellindexdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/timedatectl.fish:1 msgid "Maintain RTC in local time" @@ -57626,21 +53366,16 @@ msgid "Execute operation on a local container" msgstr "" #: /tmp/fish/implicit/share/completions/time.fish:2 -#, fuzzy msgid "Specify output format" -msgstr "Ausgabedateiname angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/time.fish:3 -#, fuzzy msgid "Use the portable output format" -msgstr "Ausgabeformat für Profilierung" +msgstr "" #: /tmp/fish/implicit/share/completions/time.fish:4 -#, fuzzy msgid "Do not send the results to stderr, but overwrite the specified file" msgstr "" -"Nicht den öffentlichen Schlüssel, sondern den angegebenen Sitzungsschlüssel " -"benutzen" #: /tmp/fish/implicit/share/completions/time.fish:5 msgid "(Used together with -o) Do not overwrite but append" @@ -57655,9 +53390,8 @@ msgid "Send a KILL signal after DURATION" msgstr "" #: /tmp/fish/implicit/share/completions/timeout.fish:3 -#, fuzzy msgid "Specify the signal to be sent" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:1 msgid "Add an exclusion not to back up a file" @@ -57670,9 +53404,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:3 #: /tmp/fish/implicit/share/completions/tmutil.fish:37 -#, fuzzy msgid "Path exclusion" -msgstr "PKZIP-Rekursion" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:4 msgid "Bind a snapshot volume directory to the specified local disk" @@ -57687,56 +53420,48 @@ msgid "Perform a backup diff" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:7 -#, fuzzy msgid "Compare all supported metadata" -msgstr "Alle Daten komprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:8 msgid "No metadata comparison" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:9 -#, fuzzy msgid "Compare extended attributes" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:10 -#, fuzzy msgid "Compare creation times" -msgstr "Vergleiche Monatsnamen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:11 -#, fuzzy msgid "Compare file data forks" -msgstr "Profildatenformat" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:12 msgid "Compare ACLs" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:13 -#, fuzzy msgid "Compare file flags" -msgstr "Datei komprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:14 msgid "Compare GIDs" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:15 -#, fuzzy msgid "Compare file modes" -msgstr "Vollständig ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:16 -#, fuzzy msgid "Compare sizes" -msgstr "Datei komprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:17 -#, fuzzy msgid "Compare modification times" -msgstr "Modifikationszeit ändern" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:18 msgid "Compare UIDs" @@ -57747,28 +53472,24 @@ msgid "Limit traversal depth to depth levels from the beginning of iteration" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:20 -#, fuzzy msgid "Dont take exclusions into account" -msgstr "Keine ausführliche Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:21 -#, fuzzy msgid "Ignore path" -msgstr "Gross-/Kleinschreibung ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:22 msgid "Ignore logical volume identity" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:23 -#, fuzzy msgid "Delete one or more snapshots" -msgstr "Ein oder mehrere Paket(e) entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:24 -#, fuzzy msgid "Print information about destinations" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:25 msgid "Turn off automatic backups" @@ -57804,33 +53525,28 @@ msgid "Print paths for all snapshots" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:33 -#, fuzzy msgid "Print the path to the current machine directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:34 -#, fuzzy msgid "Removes a backup destination" -msgstr "Vervollständigung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:35 -#, fuzzy msgid "Remove an exclusion" -msgstr "Schlüssel entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:38 msgid "Restore an item" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:39 -#, fuzzy msgid "Set a backup destination" -msgstr "Vervollständigung entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:40 -#, fuzzy msgid "Add to the list of destinations" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:41 msgid "Enter the password at a non-echoing interactive prompt" @@ -57845,23 +53561,20 @@ msgid "Begin a backup if one is not already running" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:44 -#, fuzzy msgid "Automatic mode" -msgstr "Kumulativer Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:45 msgid "Block until finished" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:46 -#, fuzzy msgid "Automatic rotation" -msgstr "Kumulativer Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:47 -#, fuzzy msgid "Backup destination" -msgstr "Sicherung der Original-Version" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:48 msgid "Cancel a backup currently in progress" @@ -57876,24 +53589,20 @@ msgid "Verify snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:52 -#, fuzzy msgid "Print as XML" -msgstr "Datenbank ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:1 -#, fuzzy msgid "available sessions" -msgstr "Ausdruck auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:2 -#, fuzzy msgid "connected clients" -msgstr "Funktionen auflisten oder entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:3 -#, fuzzy msgid "window panes" -msgstr "Änderung der Fenstergröße" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:4 msgid "Force tmux to assume the terminal supports 256 colours" @@ -57904,62 +53613,52 @@ msgid "Like -2, but indicates that the terminal supports 88 colours" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:6 -#, fuzzy msgid "Behave as a login shell" -msgstr "Dies ist eine Login-Shell" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:7 -#, fuzzy msgid "Set the quiet server option" -msgstr "Zeitüberschreitung für Netzwerk festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:8 msgid "Flag explicitly informs tmux that UTF-8 is supported" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:9 -#, fuzzy msgid "Request verbose logging" -msgstr "Angemeldete Benutzer auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:10 -#, fuzzy msgid "Report the tmux version" -msgstr "Sortierung nach Version" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:11 -#, fuzzy msgid "Execute command using the default shell" -msgstr "Vollständige Befehlszeile selektieren (Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:13 -#, fuzzy msgid "Specify the name of the server socket to use" -msgstr "Zeitablauf für Zwischenspeicher angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:14 msgid "Full path to server socket. If set, -L is ignored." msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:15 -#, fuzzy msgid "attach to existing session" -msgstr "Eine lokale Kopie eines weiteren Paketdepots erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:16 -#, fuzzy msgid "detach other clients" -msgstr "Funktionen auflisten oder entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:17 -#, fuzzy msgid "attach in read-only mode" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:18 -#, fuzzy msgid "detach current client" -msgstr "Festlegen/Anzeigen aller aktuellen Begrenzungen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:19 msgid "SIGHUP parent process of client, likely causing it to exit" @@ -57980,29 +53679,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:23 -#, fuzzy msgid "list all attached clients" -msgstr "Nach Fertigstellung Logdatei löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:24 -#, fuzzy msgid "list syntax for all tmux commands" -msgstr "Diesen Befehl deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:25 -#, fuzzy msgid "list all sessions" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:26 -#, fuzzy msgid "lock client" -msgstr "Blockgrösse" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:27 -#, fuzzy msgid "lock session" -msgstr "Blockgrösse" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:28 msgid "create a new session with name session-name" @@ -58013,47 +53707,40 @@ msgid "don't attach to current window" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:30 -#, fuzzy msgid "window-name" -msgstr "Änderung der Fenstergröße" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:31 -#, fuzzy msgid "session-name" -msgstr "Versionsnummer" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:32 -#, fuzzy msgid "width" -msgstr "Zeilenbreite" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:33 msgid "height" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:34 -#, fuzzy msgid "refresh client" -msgstr "Name des Patch" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:35 -#, fuzzy msgid "update client status bar" -msgstr "Exit-Status des Jobs verneinen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:36 -#, fuzzy msgid "rename session" -msgstr "Standardeingabe umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:37 msgid "save msgs in status bar in per-client msg log" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:38 -#, fuzzy msgid "execute commands from path" -msgstr "Befehl ausführen, als ob es Teil von .wgetrc wäre" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:39 msgid "start tmux server if not running; do not create a session" @@ -58068,24 +53755,20 @@ msgid "Switch the current session for client target-client to target-session" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:42 -#, fuzzy msgid "move client to the last session" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:43 -#, fuzzy msgid "move client to the next session" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:44 -#, fuzzy msgid "move client to the previous session" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:45 -#, fuzzy msgid "toggle if client is read-only" -msgstr "Ordner nur zum Lesen öffnen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:46 #: /tmp/fish/implicit/share/completions/tmux.fish:47 @@ -58098,20 +53781,17 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:49 #: /tmp/fish/implicit/share/completions/tmux.fish:80 #: /tmp/fish/implicit/share/completions/tmux.fish:84 -#, fuzzy msgid "target-client" -msgstr "Zielzeile" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:50 -#, fuzzy msgid "format string" -msgstr "Prompt-Anzeige" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:51 #: /tmp/fish/implicit/share/completions/tmux.fish:74 -#, fuzzy msgid "bind key to command" -msgstr "Ende des Befehls" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:52 msgid "bind for command mode instead of normal mode" @@ -58122,9 +53802,8 @@ msgid "make the binding work without using a prefix key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:54 -#, fuzzy msgid "key may repeat" -msgstr "Man-Pfad angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:55 msgid "choose key table for binding" @@ -58132,15 +53811,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:56 #: /tmp/fish/implicit/share/completions/tmux.fish:58 -#, fuzzy msgid "list all key bindings" -msgstr "Fish-Tastenbelegungen bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:57 #: /tmp/fish/implicit/share/completions/tmux.fish:68 -#, fuzzy msgid "key table" -msgstr "Programm" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:59 msgid "reset terminal state" @@ -58148,85 +53825,73 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:60 #: /tmp/fish/implicit/share/completions/tmux.fish:63 -#, fuzzy msgid "target pane" -msgstr "Zielzeile" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:61 msgid "send the prefix key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:62 -#, fuzzy msgid "use secondary prefix" -msgstr "Verzeichnis-Präfix festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:64 msgid "unbind the command bound to key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:65 -#, fuzzy msgid "remove all key bindings" -msgstr "Konnte Tastenkürzel nicht analysieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:66 -#, fuzzy msgid "binding for command mode" -msgstr "Ende des Befehls" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:67 msgid "command bound to key without a prefix (if any) removed" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:69 -#, fuzzy msgid "Set or unset an environment variable" -msgstr "Hilfe zu Umgebungsvariablen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:70 #: /tmp/fish/implicit/share/completions/tmux.fish:75 -#, fuzzy msgid "global environment" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:71 msgid "remove from environment before starting a new process" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:72 -#, fuzzy msgid "unset variable" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:77 msgid "Open the command prompt in a client" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:78 -#, fuzzy msgid "Comma-separated list of initial text for each prompt" -msgstr "Komma-getrennte Liste anzuzeigender Abhängigkeitstypen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:79 -#, fuzzy msgid "Comma-separated list of prompts" -msgstr "Komma-getrenntes Format" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:81 -#, fuzzy msgid "Display a message" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:82 -#, fuzzy msgid "print to stdout" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:83 -#, fuzzy msgid "target-pane" -msgstr "Zielzeile" +msgstr "" #: /tmp/fish/implicit/share/completions/top.fish:2 msgid "Toggle command line/program name" @@ -58237,9 +53902,8 @@ msgid "Toggle idle processes" msgstr "Anzeige wartender Prozesse umschalten" #: /tmp/fish/implicit/share/completions/top.fish:6 -#, fuzzy msgid "Maximum iterations" -msgstr "Maximale Wiederholungen" +msgstr "" #: /tmp/fish/implicit/share/completions/top.fish:7 msgid "Monitor effective UID" @@ -58270,9 +53934,8 @@ msgid "Output a longer help message then quit" msgstr "" #: /tmp/fish/implicit/share/completions/totem.fish:3 -#, fuzzy msgid "Output version information then quit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/totem.fish:4 msgid "Tell any running totem instance: Toggle between play and pause" @@ -58331,33 +53994,28 @@ msgid "Add torrents to transmission" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:2 -#, fuzzy msgid "Enable debugging mode" -msgstr "Debug-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:3 msgid "Use the alternate Limits" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:4 -#, fuzzy msgid "Don't use the alternate Limits" -msgstr "Das test-Skript nicht ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:5 -#, fuzzy msgid "Limit the alternate download speed" -msgstr "Herunterladegeschwindigkeit begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:6 -#, fuzzy msgid "Limit the alternate upload speed" -msgstr "Herunterladegeschwindigkeit begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:7 -#, fuzzy msgid "Use the scheduled on/off times" -msgstr "Diese Dateizeiten verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:8 msgid "Don't use the scheduled on/off times" @@ -58392,23 +54050,20 @@ msgid "Don't store incomplete torrents in a different directory" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:16 -#, fuzzy msgid "Limit the maximum download speed to limit" -msgstr "Herunterladegeschwindigkeit begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:17 -#, fuzzy msgid "Disable download speed limits" -msgstr "Herunterladen von Paketen deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:18 msgid "Set the session's maximum memory cache size (MiB)" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:19 -#, fuzzy msgid "Encrypt all peer connections" -msgstr "Sämtlichen Netzverkehr verschlüsseln" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:20 msgid "Prefer encrypted peer connections" @@ -58443,47 +54098,40 @@ msgid "All torrents should seed regardless of ratio" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:28 -#, fuzzy msgid "Print command-line option descriptions" -msgstr "Befehle auf Standardfehlerausgabe ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:29 msgid "Show details of the current torrent(s)" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:30 -#, fuzzy msgid "List session information from the server" -msgstr "Komprimierungsinformation auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:31 -#, fuzzy msgid "List statistical information from the server" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:32 -#, fuzzy msgid "List all torrents" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:33 msgid "Enable portmapping via NAT-PMP or UPnP" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:34 -#, fuzzy msgid "Disable portmapping" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:35 -#, fuzzy msgid "Set the username:password for authentication" -msgstr "Abfrage des Passworts für den Authentifizierungsserver" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:37 -#, fuzzy msgid "Set authentication information from a netrc file" -msgstr "Verlaufsinformationen für ein Modul ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:38 msgid "Enable distributed hash table (DHT)" @@ -58510,29 +54158,24 @@ msgid "Give this torrent low bandwidth" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:44 -#, fuzzy msgid "Try to download the specified files first" -msgstr "Protokollausgabe auf angegebenen Dateideskriptor schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:45 -#, fuzzy msgid "Try to download the specified files normally" -msgstr "Angegebene Datei zur aktuellen Schlüsselringliste hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:46 -#, fuzzy msgid "Try to download the specified files last" -msgstr "Protokollausgabe auf angegebenen Dateideskriptor schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:47 -#, fuzzy msgid "Set the maximum number of peers" -msgstr "Maximale Zahl offener Datei-Deskriptoren" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:48 -#, fuzzy msgid "Remove the current torrents" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:49 msgid "Remove the current torrents and delete data" @@ -58567,19 +54210,16 @@ msgid "Add a tracker to a torrent" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:57 -#, fuzzy msgid "Remove a tracker from a torrent" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:58 -#, fuzzy msgid "Start the current torrents" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:59 -#, fuzzy msgid "Stop the current torrents" -msgstr "Derzeit ausgewertete Funktion stoppen" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:60 msgid "Start added torrents paused" @@ -58610,9 +54250,8 @@ msgid "Make the current torrent(s) not honor the session limits" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:67 -#, fuzzy msgid "Limit the maximum upload speed (KiB/s)" -msgstr "Herunterladegeschwindigkeit begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:68 msgid "Disable upload speed limits" @@ -58623,14 +54262,12 @@ msgid "Enable uTP for peer connections" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:70 -#, fuzzy msgid "Disable uTP for peer connections" -msgstr "Automatische Pufferzuordnung deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:71 -#, fuzzy msgid "Verify the current torrents" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:73 msgid "Use directory as default for new downloads" @@ -58657,9 +54294,8 @@ msgid "List the current torrent's connected peers" msgstr "" #: /tmp/fish/implicit/share/completions/trap.fish:1 -#, fuzzy msgid "Display names of all signals" -msgstr "$ am Zeilenende anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/trap.fish:2 msgid "Display all currently defined trap handlers" @@ -58678,9 +54314,8 @@ msgid "Displays the most recent build for each branch" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:3 -#, fuzzy msgid "Lists or deletes repository caches" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:4 msgid "Cancels a job or build" @@ -58691,14 +54326,12 @@ msgid "Interactive shell" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:6 -#, fuzzy msgid "Disables a project" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:7 -#, fuzzy msgid "Enables a project" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:8 msgid "Encrypts values for the .travis.yml" @@ -58709,14 +54342,12 @@ msgid "Encrypts a file and adds decryption steps to .travis.yml" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:10 -#, fuzzy msgid "Displays or changes the API endpoint" -msgstr "$ am Zeilenende anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:11 -#, fuzzy msgid "Show or modify build environment variables" -msgstr "Behandlung von Umgebungsvariablen" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:12 msgid "Helps you out when in dire need of information" @@ -58771,18 +54402,16 @@ msgid "Lists repositories the user has certain permissions on" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:25 -#, fuzzy msgid "Lists recent requests" -msgstr "Bytes per Anforderung" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:26 msgid "Restarts a build or job" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:27 -#, fuzzy msgid "Access repository settings" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:28 msgid "Sets up an addon or deploy target" @@ -58809,18 +54438,16 @@ msgid "Outputs the secret API token" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:34 -#, fuzzy msgid "Outputs the client version" -msgstr "Sicherung der Original-Version" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:35 msgid "Lists most recent builds" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:36 -#, fuzzy msgid "Outputs the current user" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:38 msgid "Be interactive and colorful" @@ -58831,67 +54458,56 @@ msgid "Don't be interactive and colorful" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:40 -#, fuzzy msgid "Don't rescue exceptions" -msgstr "Keine Skrpte ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:41 -#, fuzzy msgid "Rescue exceptions" -msgstr "Geräte-Sektion" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:42 -#, fuzzy msgid "Don't check if travis client is up to date" -msgstr "Vor der Installation nicht auf ausreichenden Plattenplatz prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:43 msgid "Don't check if auto-completion is set up" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:1 -#, fuzzy msgid "All files are listed" -msgstr "Alle Bitfielder sind vorzeichenbehaftet" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:2 -#, fuzzy msgid "List directories only" -msgstr "Unterverzeichnisse rekursiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:3 -#, fuzzy msgid "Follow symbolic links like directories" -msgstr "Symbolischer Link auf Ordner" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:4 -#, fuzzy msgid "Print the full path prefix for each file" -msgstr "Vollständigen Quellpfad ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:5 -#, fuzzy msgid "Stay on current filesystem only" -msgstr "Im lokalen Dateisystem bleiben" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:6 -#, fuzzy msgid "Descend only level directories deep" -msgstr "Unterverzeichnisse rekursiv entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:7 msgid "Rerun tree when max dir level reached" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:8 -#, fuzzy msgid "List only those files that match the pattern given" -msgstr "Den Mustern in der Datei entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:9 -#, fuzzy msgid "Do not list files that match the given pattern" -msgstr "Module einfügen, die den angegebenen Mustern entsprechen" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:10 msgid "Turn off file/directory count at end of tree listing" @@ -58910,43 +54526,36 @@ msgid "Print and format time according to the format " msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:14 -#, fuzzy msgid "Output to file instead of stdout" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:15 -#, fuzzy msgid "Print non-printable characters as '?'" -msgstr "Nicht darstellbare Zeichen durch '?' ersetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:16 -#, fuzzy msgid "Print non-printable characters as is" -msgstr "Alle nicht druckbaren Zeichen maskieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:17 msgid "Quote filenames with double quotes" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:18 -#, fuzzy msgid "Print the protections for each file" -msgstr "Starte Standardakion für jede Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:19 -#, fuzzy msgid "Displays file owner or UID number" -msgstr "Zeilennummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:20 -#, fuzzy msgid "Displays file group owner or GID number" -msgstr "Zeilennummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:21 -#, fuzzy msgid "Print the size in bytes of each file" -msgstr "Größe der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:22 msgid "Print the size in a more human readable way" @@ -58965,14 +54574,12 @@ msgid "Appends '/', '=', '*', '@', '|' or '>' as per ls -F" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:26 -#, fuzzy msgid "Print inode number of each file" -msgstr "Inode-Nummer der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:27 -#, fuzzy msgid "Print device ID number to which each file belongs" -msgstr "Inode-Nummer der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:28 msgid "Sort files alphanumerically by version" @@ -58983,9 +54590,8 @@ msgid "Sort files in reverse alphanumeric order" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:30 -#, fuzzy msgid "Sort files by last modification time" -msgstr "Nach Veränderungsdatum sortieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:31 msgid "Sort files by last status change time" @@ -59000,9 +54606,8 @@ msgid "List directories before files (-U disables)" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:34 -#, fuzzy msgid "Don't print indentation lines" -msgstr "Keine Erklärungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:35 msgid "Print ANSI lines graphic indentation lines" @@ -59037,9 +54642,8 @@ msgid "Turn off hyperlinks in HTML output" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:44 -#, fuzzy msgid "Print usage and this help message and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:1 msgid "use the complement of SET1" @@ -59068,14 +54672,12 @@ msgid "all letters" msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:9 -#, fuzzy msgid "all horizontal whitespace" -msgstr "white space (Worttrenner) ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:10 -#, fuzzy msgid "all control characters" -msgstr "Steuerzeichen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:11 msgid "all digits" @@ -59090,14 +54692,12 @@ msgid "all lower case letters" msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:14 -#, fuzzy msgid "all printable characters, including space" -msgstr "Anzahl Buchstaben ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:15 -#, fuzzy msgid "all punctuation characters" -msgstr "Alle nicht druckbaren Zeichen maskieren" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:16 msgid "all horizontal or vertical whitespace" @@ -59135,122 +54735,100 @@ msgid "Guarantee that any output is unbuffered." msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:24 -#, fuzzy msgid "alphanumeric characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:25 -#, fuzzy msgid "alphabetic characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:26 -#, fuzzy msgid "whitespace characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:27 -#, fuzzy msgid "control characters" -msgstr "Steuerzeichen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:28 -#, fuzzy msgid "numeric characters" -msgstr "Anzahl Buchstaben ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:29 -#, fuzzy msgid "graphic characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:30 -#, fuzzy msgid "ideographic characters" -msgstr "Nicht darstellbare Zeichen durch '?' ersetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:31 -#, fuzzy msgid "lower-case alphabetic characters" -msgstr "Oktaldarstellung für nichtgrafische Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:32 -#, fuzzy msgid "phonographic characters" -msgstr "Oktaldarstellung für nichtgrafische Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:33 -#, fuzzy msgid "printable characters" -msgstr "Anzahl Buchstaben ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:34 -#, fuzzy msgid "punctuation characters" -msgstr "Zeichenbereich ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:35 -#, fuzzy msgid "valid characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:36 -#, fuzzy msgid "space characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:37 -#, fuzzy msgid "special characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:38 -#, fuzzy msgid "upper-case characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:39 -#, fuzzy msgid "hexadecimal characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:2 msgid "Print all possible definitions of the specified name" msgstr "Alle möglichen Definitionen des angegebenen Namens ausgeben" #: /tmp/fish/implicit/share/completions/type.fish:3 -#, fuzzy msgid "Suppress function and builtin lookup" -msgstr "Unterdrücke Nachschlagen von Funktionen und eingebauten Befehlen" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:4 -#, fuzzy msgid "Print command type" -msgstr "Befehle auf Standardfehlerausgabe ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:5 msgid "Print path to command, or nothing if name is not a command" msgstr "Pfad zu Befehl ausgeben oder nichts, wenn es kein Befehl ist" #: /tmp/fish/implicit/share/completions/type.fish:6 -#, fuzzy msgid "Print path to command" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:7 -#, fuzzy msgid "Suppress output" -msgstr "Normale Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:3 -#, fuzzy msgid "Shows information about an object" -msgstr "Informationelle Ausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:4 -#, fuzzy msgid "Shows information about all objects" -msgstr "Statusinformationen zu ausgecheckten Dateien anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:5 msgid "Shows high-level status" @@ -59262,15 +54840,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:7 #: /tmp/fish/implicit/share/completions/zfs.fish:17 -#, fuzzy msgid "Mount a filesystem" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:8 #: /tmp/fish/implicit/share/completions/zfs.fish:18 -#, fuzzy msgid "Unmount a filesystem" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:9 msgid "Unlock an encrypted device" @@ -59281,62 +54857,52 @@ msgid "Lock an encrypted device" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:11 -#, fuzzy msgid "Set-up a loop device" -msgstr "Dienst anhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:12 -#, fuzzy msgid "Delete a loop device" -msgstr "Datei ist ein Block-Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:13 msgid "Safely power off a drive" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:14 -#, fuzzy msgid "Set SMART data for a drive" -msgstr "Datum in Zukunft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:15 -#, fuzzy msgid "Object to get information about" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:16 -#, fuzzy msgid "Block device to get information about" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:17 -#, fuzzy msgid "Drive to get information about" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:18 -#, fuzzy msgid "Filesystem type to use" -msgstr "Dateisystemtyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:20 msgid "Force/layzy unmount" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:22 -#, fuzzy msgid "Mounted block device" -msgstr "Datei ist ein Block-Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:23 -#, fuzzy msgid "File to set-up a loop device for" -msgstr "Datei ist ein Block-Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:24 -#, fuzzy msgid "Setup read-only device" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:25 msgid "Start at bytes into file" @@ -59359,37 +54925,32 @@ msgid "File with libatasmart blob" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:30 -#, fuzzy msgid "Do not authenticate the user if needed" -msgstr "Überprüfungsstatus von Schlüsselsignaturen nicht zwischenspeichern" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:31 msgid "Object to " msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:32 -#, fuzzy msgid "Block device to " -msgstr "Blockorientiertes Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:33 msgid "Object path for ATA device" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:34 -#, fuzzy msgid "Block device for ATA device" -msgstr "Blockorientiertes Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:1 -#, fuzzy msgid "Set or get soft limit" -msgstr "Festlegen/Anzeigen aller aktuellen Begrenzungen" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:2 -#, fuzzy msgid "Set or get hard limit" -msgstr "Festlegen/Anzeigen aller aktuellen Begrenzungen" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:3 msgid "Set or get all current limits" @@ -59437,9 +54998,8 @@ msgid "Maximum amount of virtual memory available to the shell" msgstr "Maximaler virtueller Speicher, der der Shell zur Verfügung steht" #: /tmp/fish/implicit/share/completions/ulimit.fish:15 -#, fuzzy msgid "New resource limit" -msgstr "Rekursionsgrenze" +msgstr "" #: /tmp/fish/implicit/share/completions/umount.fish:5 msgid "Unmount without writing in /etc/mtab" @@ -59497,38 +55057,32 @@ msgid "Behave as though all of the options mnrsv were specified." msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:2 -#, fuzzy msgid "print the machine hardware name." -msgstr "Maschinenname ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:3 -#, fuzzy msgid "print the nodename" -msgstr "Kernel-Name ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:4 msgid "print the machine processor architecture name." msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:5 -#, fuzzy msgid "print the operating system release." -msgstr "Betriebssystem ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:6 -#, fuzzy msgid "print the operating system name." -msgstr "Betriebssystem ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:7 -#, fuzzy msgid "print the operating system version." -msgstr "Betriebssystem ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:8 -#, fuzzy msgid "Print all information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:9 msgid "Print kernel name" @@ -59543,28 +55097,24 @@ msgid "Print kernel release" msgstr "Kernel-Release ausgeben" #: /tmp/fish/implicit/share/completions/uname.fish:12 -#, fuzzy msgid "Print kernel version" -msgstr "Kernel-Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:13 msgid "Print machine name" msgstr "Maschinenname ausgeben" #: /tmp/fish/implicit/share/completions/uname.fish:14 -#, fuzzy msgid "Print processor" -msgstr "Anmeldeprozess ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:15 -#, fuzzy msgid "Print hardware platform" -msgstr "Hardware-Plattform ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:16 -#, fuzzy msgid "Print operating system" -msgstr "Betriebssystem ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/unexpand.fish:1 msgid "convert all blanks, instead of just initial blanks" @@ -59583,59 +55133,48 @@ msgid "use comma separated LIST of tab positions (enables -a)" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:1 -#, fuzzy msgid "Extract files to current directory" -msgstr "Dateien unter jedem Verzeichnis lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:3 -#, fuzzy msgid "List archive (technical)" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:4 -#, fuzzy msgid "List archive (bare)" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:5 -#, fuzzy msgid "Print file to stdout" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:6 -#, fuzzy msgid "Test archive files" -msgstr "Archiv-Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:7 -#, fuzzy msgid "Verbosely list archive" -msgstr "Archiv prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:8 -#, fuzzy msgid "Verbosely list archive (technical)" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:9 -#, fuzzy msgid "Verbosely list archive (bare)" -msgstr "Archiv prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:10 -#, fuzzy msgid "Extract files with full path" -msgstr "Datei aus Datei extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:1 -#, fuzzy msgid "Show a short help screen" -msgstr "Nach ctime sortieren und anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:2 -#, fuzzy msgid "Show version string" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:3 msgid "Show eixrc-variables" @@ -59646,14 +55185,12 @@ msgid "Show default eixrc-variables" msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:5 -#, fuzzy msgid "Produce no output" -msgstr "Audio-Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:6 -#, fuzzy msgid "Output to the given file" -msgstr "Ausgabe nach /dev/null" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:7 msgid "Exclude the given overlay from the update-process" @@ -59668,9 +55205,8 @@ msgid "Override cache method for a specified overlay" msgstr "" #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:2 -#, fuzzy msgid "Be verbose (default)" -msgstr "(Standard)" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:3 msgid "Call wget as the given USER" @@ -59685,14 +55221,12 @@ msgid "A comment about this user" msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:2 -#, fuzzy msgid "Home directory for the new user" -msgstr "Datei-Deskriptor für Eingabe" +msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:3 -#, fuzzy msgid "Supplementary groups" -msgstr "Auswahl per Gruppe" +msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:5 msgid "The user's home directory will be created if it does not exist" @@ -59748,9 +55282,8 @@ msgid "Change user's password file comment" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:3 -#, fuzzy msgid "Change user's login directory" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:4 msgid "Date on which the user account will be disabled" @@ -59769,9 +55302,8 @@ msgid "List of groups which the user is also a member of" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:8 -#, fuzzy msgid "Change user's name" -msgstr "Wechsel zu Benutzer" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:9 msgid "Lock user's password" @@ -59786,9 +55318,8 @@ msgid "Allow non-unique UID" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:13 -#, fuzzy msgid "Apply changes in this directory" -msgstr "Arbeitsverzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:14 msgid "The name of the user's new login shell" @@ -59823,48 +55354,40 @@ msgid "The new SELinux user for the user's login" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:1 -#, fuzzy msgid "Test if vagrant has yet to be given the main command" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:2 -#, fuzzy msgid "Lists all available Vagrant boxes" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:4 -#, fuzzy msgid "Print the help and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:5 -#, fuzzy msgid "Manages boxes" -msgstr "Handbuch-Sektionen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:6 msgid "Adds a box" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:7 -#, fuzzy msgid "Lists all the installed boxes" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:8 -#, fuzzy msgid "Removes a box from Vagrant" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:9 -#, fuzzy msgid "Repackages the given box for redistribution" -msgstr "Dateien vor dem Löschen umpacken" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:10 -#, fuzzy msgid "Verifies the box with the given provider" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:11 msgid "Connect to a remotely shared Vagrant environment" @@ -59879,19 +55402,16 @@ msgid "Manually override static IP chosen" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:14 -#, fuzzy msgid "SSH into the remote machine" -msgstr "root-Verzeichnis für rpm-Operationen angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:15 -#, fuzzy msgid "Destroys the running machine" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:16 -#, fuzzy msgid "Destroy without confirmation" -msgstr "Nach Bestätigung fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:17 msgid "Global status of Vagrant environments" @@ -59906,14 +55426,12 @@ msgid "Install Vagrant plugins through ruby gems" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:20 -#, fuzzy msgid "Shuts down the running machine" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:21 -#, fuzzy msgid "Force shut down" -msgstr "Erzwungener Stopp" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:22 msgid "Initializes the Vagrant environment" @@ -59924,14 +55442,12 @@ msgid "Log in to Vagrant Cloud" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:24 -#, fuzzy msgid "Only checks if you're logged in" -msgstr "Nur auf Sortierung testen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:25 -#, fuzzy msgid "Logs you out if you're logged in" -msgstr "Angemeldete Benutzer auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:26 msgid "Packages a running machine into a reusable box" @@ -59942,9 +55458,8 @@ msgid "Name or UUID of the virtual machine" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:28 -#, fuzzy msgid "Output file name" -msgstr "Ausgabedateiname angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:29 msgid "Additional files to package with the box" @@ -59959,18 +55474,16 @@ msgid "Manages plugins" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:32 -#, fuzzy msgid "Installs a plugin" -msgstr "Nach Erstellung installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:33 msgid "Installs a license for a proprietary Vagrant plugin" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:34 -#, fuzzy msgid "Lists installed plugins" -msgstr "Auf Installierte begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:35 msgid "Uninstall the given plugin" @@ -59990,9 +55503,8 @@ msgid "Connects to machine via RDP" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:39 -#, fuzzy msgid "Restarts the running machine" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:40 msgid "Provisioners will not run" @@ -60035,62 +55547,52 @@ msgid "Key won't be encrypted with --ssh" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:51 -#, fuzzy msgid "Specific port for SSH when using --ssh" -msgstr "Port für Weboberfläche angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:52 msgid "Allow 'vagrant connect --ssh' only one time" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:53 -#, fuzzy msgid "SSH into a running machine" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:54 -#, fuzzy msgid "Executes a single SSH command" -msgstr "Argument als Befehl ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:55 -#, fuzzy msgid "Does not authenticate" -msgstr "Überprüfungsstatus von Schlüsselsignaturen nicht zwischenspeichern" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:56 -#, fuzzy msgid "Outputs configuration for an SSH config file" -msgstr "Konfigurationsdatei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:57 -#, fuzzy msgid "Name of the host for the outputted configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:58 msgid "Status of the machines Vagrant is managing" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:59 -#, fuzzy msgid "Suspends the running machine" -msgstr "Versteckte Funktionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:60 -#, fuzzy msgid "Creates and configures guest machines" -msgstr "Konfigurationsdatei festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:61 -#, fuzzy msgid "Enable provision" -msgstr "Optimierungen aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:62 -#, fuzzy msgid "Disable provision" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:63 msgid "Enable only certain provisioners, by type" @@ -60101,27 +55603,24 @@ msgid "Skin" msgstr "Oberfläche" #: /tmp/fish/implicit/share/completions/valgrind.fish:3 -#, fuzzy msgid "Display help and debug options" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:7 msgid "Valgrind-ise children" msgstr "Kinder Valgrind-isieren" #: /tmp/fish/implicit/share/completions/valgrind.fish:8 -#, fuzzy msgid "Track file descriptors" -msgstr "Auf Dateideskriptor umleiten" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:9 msgid "Log to file descriptor" msgstr "Log auf Datei-Deskriptor ausgeben" #: /tmp/fish/implicit/share/completions/valgrind.fish:10 -#, fuzzy msgid "Log to file" -msgstr "Log in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:11 msgid "Log to socket" @@ -60156,15 +55655,13 @@ msgid "Debugger command" msgstr "Debugger-Befehl" #: /tmp/fish/implicit/share/completions/valgrind.fish:19 -#, fuzzy msgid "File descriptor for input" -msgstr "Datei-Deskriptor für Eingabe" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:20 #: /tmp/fish/implicit/share/completions/valgrind.fish:26 -#, fuzzy msgid "Check for memory leaks" -msgstr "Test auf Speicher-Lecks" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:21 #: /tmp/fish/implicit/share/completions/valgrind.fish:27 @@ -60219,9 +55716,8 @@ msgid "Specify a function that allocates memory" msgstr "Eine Funktion angeben, die Speicher zuordnet" #: /tmp/fish/implicit/share/completions/valgrind.fish:36 -#, fuzzy msgid "Profile heap usage" -msgstr "Profilstackauslastung" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:37 msgid "The number of bytes of heap overhead per allocation" @@ -60240,40 +55736,34 @@ msgid "Profiling output format" msgstr "Ausgabeformat für Profilierung" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:1 -#, fuzzy msgid "Start given VM" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:2 msgid "Enable or disamble VRDE server or don't change setting" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:3 -#, fuzzy msgid "Set VRDE property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:4 #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:22 -#, fuzzy msgid "Specify settings password" -msgstr "http-Passwort angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:5 #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:23 -#, fuzzy msgid "Specify file containing setting password" -msgstr "http-Passwort angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:6 -#, fuzzy msgid "Start VM in paused state" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:7 -#, fuzzy msgid "Record VM screen ouput to file" -msgstr "Ausgabe auf Datei umleiten" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:8 msgid "Frame width when recording" @@ -60300,39 +55790,32 @@ msgid "Run separate VM process or attach to a running VM" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:3 -#, fuzzy msgid "Set temporary first hard disk" -msgstr "Temporäres Verzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:4 -#, fuzzy msgid "Set temporary first floppy disk" -msgstr "Temporäres Verzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:5 -#, fuzzy msgid "Set temporary CDROM/DVD" -msgstr "Temporäres Verzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:6 -#, fuzzy msgid "Set temporary boot device" -msgstr "Temporäres Verzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:7 -#, fuzzy msgid "Set temporary memory size in MB" -msgstr "Temporäres Verzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:8 -#, fuzzy msgid "Set temporary video memory size in MB" -msgstr "Temporäres Verzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:9 -#, fuzzy msgid "Start VM in fullscreen mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:10 msgid "Resize guest on fullscreen" @@ -60351,14 +55834,12 @@ msgid "Make SDL frame non resizable" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:14 -#, fuzzy msgid "Disable all hoskey combinations" -msgstr "Nicht auf die Veränderungszeiten der Dateien vertrauen" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:15 -#, fuzzy msgid "Disable specific hostkey combinations" -msgstr "Deaktiviert Weiterleitung des Authentifizierungs-Agenten" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:16 msgid "Disable mouse/keyboard grabbing on mouse click w/o additions" @@ -60386,14 +55867,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:24 -#, fuzzy msgid "Enable raw ring 3" -msgstr "X11-Weiterleitung aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:25 -#, fuzzy msgid "Enable raw ring 0" -msgstr "X11-Weiterleitung aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:26 msgid "Enable PATM" @@ -60408,14 +55887,12 @@ msgid "Permit usage of VT-x/AMD-V" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:29 -#, fuzzy msgid "Disable raw ring 3" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:30 -#, fuzzy msgid "Disable raw ring 0" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:31 msgid "Disable PATM" @@ -60447,37 +55924,32 @@ msgid "List saved file names after crash" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:5 -#, fuzzy msgid "Read-only mode" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:6 msgid "Use linear search for tags if tag file not sorted" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:7 -#, fuzzy msgid "Start in display editing state" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:10 -#, fuzzy msgid "Recover file after crash" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:11 -#, fuzzy msgid "Edit the file containing a tag" -msgstr "Die im Paket enthaltenen Auslöser-Skripte anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:12 msgid "Begin editing by executing the specified editor command" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:1 -#, fuzzy msgid "Test if vim-addons has yet to be given the subcommand" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:2 msgid "list the names of the addons available in the system" @@ -60488,14 +55960,12 @@ msgid "show the status of the addons available in the system" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:4 -#, fuzzy msgid "install one or more addons under ~/.vim" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:5 -#, fuzzy msgid "remove one or more addons from ~/.vim" -msgstr "Ein oder mehrere Paket(e) entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:6 msgid "disable one or more addons to be used by the current user" @@ -60510,255 +55980,215 @@ msgid "list, one per line, the files composing the specified addons" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:9 -#, fuzzy msgid "displays detailed information about the specified addons" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:10 -#, fuzzy msgid "show this usage message and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:11 msgid "be quiet and make the output more parseable" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:12 -#, fuzzy msgid "set the registry directory" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:13 -#, fuzzy msgid "set the addons source directory" -msgstr "Quellverzeichnis eintragen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:14 -#, fuzzy msgid "set the addons target directory" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:15 msgid "increase verbosity" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:16 -#, fuzzy msgid "set the system-wide target directory" -msgstr "Das test-Verzeichnis entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:17 msgid "set target directory to the system-wide one" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:1 -#, fuzzy msgid "Execute Ex command after the first file has been read" -msgstr "Befehl ausführen, als ob es Teil von .wgetrc wäre" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:2 msgid "Source file after the first file has been read" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:3 -#, fuzzy msgid "Execute Ex command before loading any vimrc" -msgstr "Befehl ausführen, wenn vorheriger Befehl fehlerhaft war" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:4 -#, fuzzy msgid "Use device as terminal (Amiga only)" -msgstr "Datei als Terminal benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:5 msgid "Set the viminfo file location" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:6 -#, fuzzy msgid "Open stacked windows for each file" -msgstr "Starte Standardakion für jede Datei" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:7 msgid "Open side by side windows for each file" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:8 -#, fuzzy msgid "Open tab pages for each file" -msgstr "Für jede Zeile der Datei Datum anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:9 -#, fuzzy msgid "Start in quickFix mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:10 msgid "Use swap files for recovery" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:11 -#, fuzzy msgid "Source and execute script file" -msgstr "Skripte nicht ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:12 -#, fuzzy msgid "Set the cursor to tag" -msgstr "Verbindungszeitüberschreitung festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:13 -#, fuzzy msgid "Terminal name" -msgstr "Alle Namen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:14 msgid "Use alternative vimrc" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:15 -#, fuzzy msgid "Use alternative vimrc in GUI mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:16 -#, fuzzy msgid "Record all typed characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:17 msgid "Record all typed characters (overwrite file)" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:18 -#, fuzzy msgid "Start in Arabic mode" -msgstr "Schnittstelle starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:19 -#, fuzzy msgid "Start in binary mode" -msgstr "Standardmodus" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:20 msgid "Behave mostly like vi" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:21 -#, fuzzy msgid "Start in diff mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:22 -#, fuzzy msgid "Debugging mode" -msgstr "Debug-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:23 -#, fuzzy msgid "Start in Ex mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:24 -#, fuzzy msgid "Start in improved Ex mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:25 #: /tmp/fish/implicit/share/completions/vim.fish:46 -#, fuzzy msgid "Start in foreground mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:26 -#, fuzzy msgid "Start in Farsi mode" -msgstr "Standardmodus" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:27 -#, fuzzy msgid "Start in GUI mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:28 #: /tmp/fish/implicit/share/completions/vim.fish:48 -#, fuzzy msgid "Print help message and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:29 -#, fuzzy msgid "Start in Hebrew mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:30 #: /tmp/fish/implicit/share/completions/vim.fish:37 -#, fuzzy msgid "List swap files" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:31 -#, fuzzy msgid "Start in lisp mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:32 -#, fuzzy msgid "Disable file modification" -msgstr "Nicht auf die Veränderungszeiten der Dateien vertrauen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:33 -#, fuzzy msgid "Disallow file modification" -msgstr "Änderungsdatum anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:34 msgid "Reset compatibility mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:35 -#, fuzzy msgid "Don't use swap files" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:36 -#, fuzzy msgid "Read only mode" -msgstr "Nur lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:38 -#, fuzzy msgid "Start in silent mode" -msgstr "Standardmodus" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:39 -#, fuzzy msgid "Start in verbose mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:40 -#, fuzzy msgid "Start in vi mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:41 msgid "Use encryption when writing files" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:42 -#, fuzzy msgid "Don't connect to X server" -msgstr "Keine Fortsetzung bei Fehlern" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:43 -#, fuzzy msgid "Start in easy mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:44 -#, fuzzy msgid "Start in restricted mode" -msgstr "Beschränkter Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:45 msgid "Become an editor server for NetBeans" @@ -60769,9 +56199,8 @@ msgid "Echo the Window ID on stdout (GTK GUI only)" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:49 -#, fuzzy msgid "Do not expand wildcards" -msgstr "Erweitern Sie das Muster nicht" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:50 msgid "Skip loading plugins" @@ -60781,48 +56210,40 @@ msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:54 #: /tmp/fish/implicit/share/completions/vim.fish:55 #: /tmp/fish/implicit/share/completions/vim.fish:56 -#, fuzzy msgid "Edit files on Vim server" -msgstr "Originaldateien editieren" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:52 -#, fuzzy msgid "Evaluate expr on Vim server" -msgstr "Ausdruck auswerten" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:53 -#, fuzzy msgid "Send keys to Vim server" -msgstr "Mail an Benutzer senden" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:57 msgid "List all Vim servers that can be found" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:58 -#, fuzzy msgid "Set server name" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:59 -#, fuzzy msgid "Print version information and exit" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:60 msgid "Run gvim in another window (GTK GUI only)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:1 -#, fuzzy msgid "Test if wajig has yet to be given the subcommand" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:2 -#, fuzzy msgid "Test if wajig command should have packages as potential completion" msgstr "" -"Testen, ob der apt-Befehl Pakete zur möglichen Fertigstellung haben sollte" #: /tmp/fish/implicit/share/completions/wajig.fish:4 msgid "Do system commands everything quietly." @@ -60841,28 +56262,24 @@ msgid "Trace the sequence of commands performed." msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:8 -#, fuzzy msgid "Assume yes for any questions asked." -msgstr "Bei allen Fragen ja annehmen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:9 -#, fuzzy msgid "Add a CD-ROM to the list of available sources of packages" -msgstr "Liste der Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:10 msgid "Mark the alternative to be auto set (using set priorities)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:11 -#, fuzzy msgid "Remove superseded deb files from the download cache" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:12 -#, fuzzy msgid "Do an update followed by a download of all updated packages" -msgstr "Liste der Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:13 msgid "Perform an install without asking questions (non-interactive)" @@ -60877,24 +56294,20 @@ msgid "Check reported bugs in package using the Debian Bug Tracker" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:16 -#, fuzzy msgid "Retrieve/unpack sources and build .deb for the named packages" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:17 -#, fuzzy msgid "Retrieve packages required to build listed packages" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:18 -#, fuzzy msgid "Retrieve latest changelog for the package" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:19 -#, fuzzy msgid "Remove all deb files from the download cache" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:20 #: /tmp/fish/implicit/share/completions/wajig.fish:53 @@ -60902,23 +56315,20 @@ msgid "List all the JIG commands and one line descriptions for each" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:21 -#, fuzzy msgid "Perform an update then a dist-upgrade" -msgstr "Simulation durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:22 -#, fuzzy msgid "List of packages which depend/recommend/suggest the package" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:23 msgid "One line description of packages (-v and -vv for more detail)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:24 -#, fuzzy msgid "One line description of new packages" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:25 msgid "Provide a detailed description of package (describe -vv)" @@ -60929,38 +56339,32 @@ msgid "Provide a detailed description of new packages (describe -vv)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:27 -#, fuzzy msgid "Upgrade to new distribution (installed and new rqd packages)" -msgstr "Neueste Pakete aktualisieren oder installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:28 msgid "Equivalent to help with -verbose=2" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:29 -#, fuzzy msgid "Download package files ready for an install" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:30 -#, fuzzy msgid "Download packages listed in file ready for an install" -msgstr "Fehlende Pakete vom Spiegelserver herunterladen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:31 -#, fuzzy msgid "Install packages listed in a file" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:32 -#, fuzzy msgid "Remove packages listed in a file" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:33 -#, fuzzy msgid "Search for a file within installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:34 #: /tmp/fish/implicit/share/completions/wajig.fish:115 @@ -60976,14 +56380,12 @@ msgid "Perform apt-get -f install (to fix broken dependencies)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:37 -#, fuzzy msgid "Perform apt-get --fix-missing upgrade" -msgstr "Simulation durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:38 -#, fuzzy msgid "Install packages and ignore file overwrites and depends" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:39 msgid "Print documentation (detail depends on --verbose)" @@ -60999,85 +56401,70 @@ msgid "Initialise or reset the JIG archive files" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:42 -#, fuzzy msgid "Install (or upgrade) one or more packages or .deb files" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:43 #: /tmp/fish/implicit/share/completions/wajig.fish:82 -#, fuzzy msgid "Install package and associated recommended packages" msgstr "" -"Installiere diese Pakete, selbst wenn sie Dateien aus anderen, bereits " -"installierten Paketen ersetzen" #: /tmp/fish/implicit/share/completions/wajig.fish:44 -#, fuzzy msgid "Install package and recommended and suggested packages" msgstr "" -"Installiere diese Pakete, selbst wenn sie Dateien aus anderen, bereits " -"installierten Paketen ersetzen" #: /tmp/fish/implicit/share/completions/wajig.fish:45 #: /tmp/fish/implicit/share/completions/wajig.fish:111 -#, fuzzy msgid "Install package and associated suggested packages" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:46 msgid "Check the integrity of installed packages (through checksums)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:47 -#, fuzzy msgid "List size of all large (>10MB) installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:48 msgid "Identify when an update was last performed" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:49 -#, fuzzy msgid "List the status and description of installed packages" -msgstr "Keine Attribute der Paketdateien prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:50 -#, fuzzy msgid "List a one line description of given or all packages" -msgstr "Keine Attribute der Paketdateien prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:51 msgid "List the objects that can have alternatives configured" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:52 -#, fuzzy msgid "List the contents of the download cache" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:54 msgid "List the daemons that JIG can start/stop/restart" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:55 -#, fuzzy msgid "List the files that are supplied by the named package" -msgstr "Zeigt alle Dateien in jedem gewählten Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:56 -#, fuzzy msgid "List those packages on hold" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:57 msgid "List packages (with optional argument substring) installed" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:58 -#, fuzzy msgid "List the contents of the install/remove log file (filtered)" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:59 msgid "List all known packages or those containing supplied string" @@ -61085,24 +56472,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:60 #: /tmp/fish/implicit/share/completions/wajig.fish:74 -#, fuzzy msgid "List libraries not required by any installed package" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:61 -#, fuzzy msgid "List the control scripts of the package of deb file" -msgstr "Die im Paket enthaltenen Auslöser-Skripte anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:62 -#, fuzzy msgid "List packages that belong to a specific section" -msgstr "Alle Pakete abfragen, die die angegebene Eigenschaft bereitstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:63 -#, fuzzy msgid "List the sections that are available" -msgstr "Nur einfache Operationen durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:64 msgid "Same as list but only prints first two columns, not truncated" @@ -61113,57 +56496,49 @@ msgid "Same as list but avoids truncating package names" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:66 -#, fuzzy msgid "Dist-upgrade using packages already downloaded" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:67 msgid "Upgrade using packages already downloaded, but not any others" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:68 -#, fuzzy msgid "Runs the madison command of apt-cache." -msgstr "Befehle aus dem Cache starten" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:69 -#, fuzzy msgid "Move packages in the download cache to a local Debian mirror" -msgstr "Pakete aus Zwischenspeicher auf lokalen Spiegelserver verschieben" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:70 msgid "List packages that became available since last update" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:71 -#, fuzzy msgid "Obtain the latest news about the package" -msgstr "Zeigt alle Dateien in jedem gewählten Paket an" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:72 -#, fuzzy msgid "List packages newly available for upgrading" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:73 -#, fuzzy msgid "List installed packages that do not meet the DFSG" -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:75 #: /tmp/fish/implicit/share/completions/wajig.fish:89 -#, fuzzy msgid "Generate a .deb file for an installed package" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:76 msgid "From preferences file show priorities/policy (available)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:77 -#, fuzzy msgid "Remove one or more packages and configuration files" -msgstr "Ein oder mehrere Paket(e) entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:78 msgid "Purge package and those it depend on and not required by others" @@ -61178,54 +56553,48 @@ msgid "Display the package's README file from /usr/share/doc" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:81 -#, fuzzy msgid "Download package and any packages it depends on" -msgstr "Pakete auflisten, von denen dieses Paket abhängt" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:83 msgid "Reconfigure the named installed packages or run gkdebconf" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:84 -#, fuzzy msgid "Reinstall each of the named packages" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:85 msgid "Reload daemon configs, e.g., gdm, apache (see list-daemons)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:86 -#, fuzzy msgid "Remove one or more packages (see also purge)" -msgstr "Ein oder mehrere Paket(e) entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:87 msgid "Remove package and its dependees not required by others" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:88 -#, fuzzy msgid "Remove orphaned libraries (not required by installed packages)" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:91 msgid "Stop then start a daemon, e.g., gdm, apache (see list-daemons)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:92 -#, fuzzy msgid "Install a RedHat .rpm package" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:93 msgid "Convert a RedHat .rpm file to a Debian .deb file" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:94 -#, fuzzy msgid "Search for packages containing listed words" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:95 msgid "Find local Debian archives suitable for sources.list" @@ -61261,29 +56630,25 @@ msgid "Print out the size (in K) of all, or listed, installed packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:104 -#, fuzzy msgid "Generates list of package=version for all installed packages" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:105 -#, fuzzy msgid "Retrieve and unpack sources for the named packages" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:106 msgid "Start a daemon, e.g., gdm, apache (see list-daemons)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:107 -#, fuzzy msgid "Show the version and available version of packages" -msgstr "Volle Versionen der Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:108 #: /tmp/fish/implicit/share/completions/wajig.fish:109 -#, fuzzy msgid "Show the version and available version of matching packages" -msgstr "Volle Versionen der Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:110 msgid "Stop a daemon, e.g., gdm, apache (see list-daemons)" @@ -61294,18 +56659,16 @@ msgid "Run the Gnome task selector to install groups of packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:113 -#, fuzzy msgid "List packages with newer versions available for upgrading" -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:114 msgid "Remove listed packages from hold so they are again upgraded" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:116 -#, fuzzy msgid "Update the list of down-loadable packages" -msgstr "Liste der Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:117 msgid "Update default alternative for things like x-window-manager" @@ -61320,24 +56683,20 @@ msgid "Updates the local list of USB ids from the internet master list" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:120 -#, fuzzy msgid "Upgrade all of the installed packages or just those listed" -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:121 -#, fuzzy msgid "List version and distribution of (all) packages." -msgstr "Keine Attribute der Paketdateien prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:122 -#, fuzzy msgid "A synonym for describe" -msgstr "Synonym für -i" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:123 -#, fuzzy msgid "Find the package that supplies the given command or file" -msgstr "Prototypen in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:1 msgid "Beep if command has a non-zero exit" @@ -61349,9 +56708,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:3 #: /tmp/fish/implicit/share/completions/watch.fish:4 -#, fuzzy msgid "Highlight changes between updates" -msgstr "Zeit zwischen Bildschirmaktualisierungen" +msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:5 msgid "Exit if command has a non-zero exit" @@ -61362,9 +56720,8 @@ msgid "Exit when output from command changes" msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:7 -#, fuzzy msgid "Seconds to wait between updates" -msgstr "Wartezeit zwischen den Anfragen weiterer Peers" +msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:8 msgid "Attempt run command in precise intervals" @@ -61375,9 +56732,8 @@ msgid "Turn off header" msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:10 -#, fuzzy msgid "Pass command to exec instead of \"sh -c\"" -msgstr "Befehl an die Shell übergeben" +msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:1 msgid "Print byte counts" @@ -61396,9 +56752,8 @@ msgid "Print length of longest line" msgstr "Länge der längsten Zeile ausgeben" #: /tmp/fish/implicit/share/completions/wc.fish:5 -#, fuzzy msgid "Print word counts" -msgstr "Anzahl Bytes ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:1 msgid "Number sets BitsPerPixel value" @@ -61462,18 +56817,16 @@ msgid "Prints the name of the game data directory and exits" msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:14 -#, fuzzy msgid "XxY sets the screen resolution" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:15 msgid "Runs the game in a small test scenario" msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:16 -#, fuzzy msgid "Shows the version number and exits" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:17 msgid "Runs the game in windowed mode" @@ -61529,9 +56882,8 @@ msgid "Dont print header" msgstr "Kopfzeile nicht ausgeben" #: /tmp/fish/implicit/share/completions/w.fish:2 -#, fuzzy msgid "Ignore username for time calculations" -msgstr "Benutzername für Zeitberechnungen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/w.fish:3 msgid "Short format" @@ -61546,9 +56898,8 @@ msgid "Go to background immediately after startup" msgstr "Direkt nach Start im Hintergrund arbeiten" #: /tmp/fish/implicit/share/completions/wget.fish:4 -#, fuzzy msgid "Execute command as if part of .wgetrc" -msgstr "Befehl ausführen, wenn vorheriger Befehl fehlerhaft war" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:5 msgid "Log all messages to logfile" @@ -61709,9 +57060,8 @@ msgid "Disable server-side cache" msgstr "Server-seitigen Cache deaktivieren" #: /tmp/fish/implicit/share/completions/wget.fish:49 -#, fuzzy msgid "Disable the use of cookies" -msgstr "Session-Cookies speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:50 msgid "Load cookies from file" @@ -61767,9 +57117,8 @@ msgid "Turn off keep-alive for http downloads" msgstr "keep-alive-Option für http-Abrufe abschalten" #: /tmp/fish/implicit/share/completions/wget.fish:63 -#, fuzzy msgid "Choose secure protocol" -msgstr "Abzulehnende Protokolle" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:64 msgid "Only follow secure HTTPS links" @@ -61780,29 +57129,24 @@ msgid "Don't validate the server's certificate" msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:66 -#, fuzzy msgid "Client certificate file" -msgstr "Zertifikatsregeln festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:67 -#, fuzzy msgid "Client certificate type" -msgstr "Zertifikatsregeln festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:68 -#, fuzzy msgid "Private key file" -msgstr "In Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:69 -#, fuzzy msgid "Private key type" -msgstr "Dateisystemtyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:70 -#, fuzzy msgid "File with the bundle of CAs" -msgstr "Beschreibung des Patchpaketes editieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:71 msgid "Directory where hash list of CAs is stored" @@ -61825,9 +57169,8 @@ msgid "Disable HSTS" msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:76 -#, fuzzy msgid "Path of HSTS database" -msgstr "Datenbank ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:77 msgid "Don't remove the temporary .listing files generated" @@ -61842,9 +57185,8 @@ msgid "Use the passive FTP retrieval scheme" msgstr "Passiven FTP-Modus benutzen" #: /tmp/fish/implicit/share/completions/wget.fish:80 -#, fuzzy msgid "Traverse symlinks and retrieve pointed-to files" -msgstr "Symlinks folgen und die Dateien abrufen" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:81 msgid "Turn on recursive retrieving" @@ -61937,9 +57279,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:100 #: /tmp/fish/implicit/share/completions/wget.fish:101 -#, fuzzy msgid "Do not ever ascend to the parent directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/which.fish:1 #: /tmp/fish/implicit/share/completions/which.fish:13 @@ -61960,9 +57301,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/which.fish:5 -#, fuzzy msgid "Ignore option '--read-functions'" -msgstr "Ignoriere nicht als Funktionen bekannte Symbole" +msgstr "" #: /tmp/fish/implicit/share/completions/which.fish:6 msgid "Skip directories in PATH that start with a dot" @@ -61997,14 +57337,12 @@ msgid "Same as -b -d --login -p -r -t -T -u" msgstr "Entspricht -b -d --login -p -r -t -T -u" #: /tmp/fish/implicit/share/completions/who.fish:2 -#, fuzzy msgid "Print time of last boot" -msgstr "Zeit des letzten Neustarts anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:3 -#, fuzzy msgid "Print dead processes" -msgstr "Anmeldeprozess ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:4 msgid "Print line of headings" @@ -62068,9 +57406,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wicd-client.fish:3 #: /tmp/fish/implicit/share/completions/wicd-gtk.fish:3 -#, fuzzy msgid "Print this help information." -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-client.fish:4 #: /tmp/fish/implicit/share/completions/wicd-gtk.fish:4 @@ -62083,19 +57420,16 @@ msgid "Don't display anything except notifications." msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:2 -#, fuzzy msgid "Scan for networks" -msgstr "Neuen Schlüssel hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:3 -#, fuzzy msgid "List networks" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:4 -#, fuzzy msgid "Show network details" -msgstr "CVS-Benutzervariable festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:5 msgid "Disconnect" @@ -62106,47 +57440,40 @@ msgid "Connect" msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:7 -#, fuzzy msgid "List encryption types" -msgstr "Beschreibung des mime-Typs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:8 msgid "Perform operation on wireless network" msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:9 -#, fuzzy msgid "Perform operation on wired network" -msgstr "Nur einfache Operationen durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:10 -#, fuzzy msgid "Save profile" -msgstr "Kein flaches Profil" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:11 -#, fuzzy msgid "Load profile" -msgstr "Kein flaches Profil" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:12 msgid "Set name for profile to save/load" msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:13 -#, fuzzy msgid "Get or set network property" -msgstr "Eigenschaft entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:14 -#, fuzzy msgid "Set network property to" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:15 -#, fuzzy msgid "Set the network" -msgstr "Zeitüberschreitung für Netzwerk festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:1 msgid "get current WPA/EAPOL/EAP status" @@ -62161,14 +57488,12 @@ msgid "show this usage help" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:4 -#, fuzzy msgid "show interfaces/select interface" -msgstr "Schnittstelle auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:5 -#, fuzzy msgid "change debug level" -msgstr "Debug-Grad festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:6 msgid "show full wpa_cli license" @@ -62183,106 +57508,88 @@ msgid "IEEE 802.1X EAPOL state machine logon" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:9 -#, fuzzy msgid "set/list variables" -msgstr "Variable löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:10 msgid "show PMKSA cache" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:11 -#, fuzzy msgid "force reassociation" -msgstr "Simulation durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:12 msgid "force wpa_supplicant to re-read its config file" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:13 -#, fuzzy msgid "force preauthentication" -msgstr "Pseudo-tty-Zuordnung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:14 -#, fuzzy msgid "configure identity for an SSID" -msgstr "Konfiguration für das Erstellen auf BUILD" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:15 -#, fuzzy msgid "configure password for an SSID" -msgstr "Konfiguration für das Erstellen auf BUILD" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:16 -#, fuzzy msgid "change password for an SSID" -msgstr "Konfiguration für das Erstellen auf BUILD" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:17 -#, fuzzy msgid "configure pin for an SSID" -msgstr "Konfiguration für das Erstellen auf BUILD" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:18 -#, fuzzy msgid "configure one-time-password for an SSID" -msgstr "Konfiguration für das Erstellen auf BUILD" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:19 -#, fuzzy msgid "configure private key passphrase for an SSID" -msgstr "Konfiguration für das Erstellen auf BUILD" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:20 msgid "set preferred BSSID for an SSID" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:21 -#, fuzzy msgid "list configured networks" -msgstr "Konfigurationsdatei benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:22 -#, fuzzy msgid "select a network (disable others)" -msgstr "CVS-Benutzervariable festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:23 -#, fuzzy msgid "enable a network" -msgstr "Depot aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:24 -#, fuzzy msgid "disable a network" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:25 -#, fuzzy msgid "add a network" -msgstr "Neuen Schlüssel hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:26 -#, fuzzy msgid "remove a network" -msgstr "Schlüssel entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:27 -#, fuzzy msgid "set/list network variables" -msgstr "CVS-Benutzervariable festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:28 -#, fuzzy msgid "get network variables" -msgstr "CVS-Benutzervariable festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:29 -#, fuzzy msgid "save the current configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:30 msgid "disconnect and wait for reassociate command before connecting" @@ -62329,9 +57636,8 @@ msgid "Run wvdial with alternative config file" msgstr "" #: /tmp/fish/implicit/share/completions/wvdial.fish:4 -#, fuzzy msgid "Don't output debug information" -msgstr "Keine Gruppeninformation ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:1 msgid "" @@ -62356,9 +57662,8 @@ msgid "Use at most max-lines nonblank input lines per command line" msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:9 -#, fuzzy msgid "Use at most max-args arguments per command line" -msgstr "Festlegen oder Abrufen der Befehlszeile" +msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:10 msgid "" @@ -62380,23 +57685,20 @@ msgid "Print the command line on the standard error output before executing it" msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:15 -#, fuzzy msgid "Exit if the size is exceeded" -msgstr "Dateigrößenbegrenzung überschritten" +msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:16 msgid "Run up to max-procs processes at a time" msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:1 -#, fuzzy msgid "Query information" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:2 -#, fuzzy msgid "Query default application for type" -msgstr "Standardaktion für mime-Typ ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:3 msgid "Query file's filetype" @@ -62407,35 +57709,29 @@ msgid "Choose application" msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:5 -#, fuzzy msgid "Mimetype" -msgstr "Zeittyp anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:6 -#, fuzzy msgid "Add filetype description" -msgstr "Dateityp-Anzeige anhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:7 #: /tmp/fish/implicit/share/completions/xdg-mime.fish:10 -#, fuzzy msgid "Set mode" -msgstr "Ruhiger Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:8 -#, fuzzy msgid "Disable vendor check" -msgstr "Server-seitigen Cache deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:9 -#, fuzzy msgid "Remove filetype description" -msgstr "Auf Dateideskriptor umleiten" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:12 -#, fuzzy msgid "Diplay long help" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:1 msgid "Get list of input files from FILE" @@ -62469,9 +57765,8 @@ msgid "Encoding of input files (except for Python, Tcl, Glade)" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:9 -#, fuzzy msgid "Join messages with existing file" -msgstr "Alle Nachrichten in Logdatei speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:10 msgid "Entries from FILE" @@ -62518,9 +57813,8 @@ msgid "More detailed formatstring recognition result" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:19 -#, fuzzy msgid "Do not use C escapes in output (default)" -msgstr "Keine ausführliche Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:20 msgid "Use C escapes in output, no extended chars" @@ -62531,14 +57825,12 @@ msgid "Write PO file even if empty" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:22 -#, fuzzy msgid "Write the" -msgstr "In Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:23 -#, fuzzy msgid "Do not write #: filename:line lines" -msgstr "Neuere Dateien nicht überschreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:24 msgid "Generate #: filename:line lines (default)" @@ -62549,18 +57841,16 @@ msgid "Write out strict Uniforum conforming" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:26 -#, fuzzy msgid "Write out a Java" -msgstr "Prompt ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:27 msgid "Write out a NeXTstep/GNUstep" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:28 -#, fuzzy msgid "Set output page width" -msgstr "Ausgabebegrenzer festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:29 msgid "" @@ -62569,23 +57859,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:30 -#, fuzzy msgid "Generate sorted output" -msgstr "dired-Ausgabe erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:31 -#, fuzzy msgid "Sort output by file location" -msgstr "Nach Veränderungsdatum sortieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:32 msgid "Dont write header with msgid \"\" entry" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:33 -#, fuzzy msgid "Set copyright holder in output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:34 msgid "Omit FSF copyright in output for foreign user" @@ -62604,33 +57891,28 @@ msgid "Use STRING or \"\" as suffix for msgstr entries" msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:1 -#, fuzzy msgid "Show summary of options" -msgstr "Hilfe- und Debug-Optionen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:2 -#, fuzzy msgid "Select XMMS session (Default: 0)" -msgstr "Auswahl per Sitzungskennung" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:3 msgid "Skip backwards in playlist" msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:4 -#, fuzzy msgid "Start playing current playlist" -msgstr "Festlegen/Anzeigen aller aktuellen Begrenzungen" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:5 -#, fuzzy msgid "Pause current song" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:6 -#, fuzzy msgid "Stop current song" -msgstr "Quellpaket anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:7 msgid "Pause if playing, play otherwise" @@ -62641,24 +57923,20 @@ msgid "Skip forward in playlist" msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:9 -#, fuzzy msgid "Don't clear the playlist" -msgstr "Abspielliste einrichten" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:10 -#, fuzzy msgid "Show the main window" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:1 -#, fuzzy msgid "Set the initial window geometry" -msgstr "Setzen der Terminalfarbe" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:2 -#, fuzzy msgid "Set the window title" -msgstr "Zeitüberschreitung für Netzwerk festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:3 msgid "Install a private colormap" @@ -62669,9 +57947,8 @@ msgid "Set the size of the largest RGB cube xpdf will try to allocate" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:5 -#, fuzzy msgid "Set reverse video mode" -msgstr "Server-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:6 msgid "Set the background of the page display" @@ -62682,14 +57959,12 @@ msgid "Set the color for background outside the page area" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:8 -#, fuzzy msgid "Set the initial zoom factor" -msgstr "Setzen der Terminalfarbe" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:9 -#, fuzzy msgid "Start in continuous view mode" -msgstr "Im Ordner-Index starten" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:10 msgid "Enable or disable t1lib (Default: yes)" @@ -62708,9 +57983,8 @@ msgid "Set the default file name for PostScript output" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:14 -#, fuzzy msgid "Set the paper size" -msgstr "Speicherpuffergröße festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:15 msgid "Set the paper width, in points" @@ -62721,28 +57995,24 @@ msgid "Set the paper height, in points" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:17 -#, fuzzy msgid "Generate Level 1 PostScript" -msgstr "dired-Ausgabe erzeugen" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:18 -#, fuzzy msgid "Sets the encoding to use for text output" -msgstr "Ausgabe weder ausführlich noch schweigsam" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:19 msgid "Sets the end-of-line convention to use" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:20 -#, fuzzy msgid "Specify the owner password for the PDF file" -msgstr "Proxy-Passwort angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:21 -#, fuzzy msgid "Specify the user password for the PDF file" -msgstr "Proxy-Passwort angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:22 msgid "Open xpdf in full-screen mode" @@ -62761,24 +58031,20 @@ msgid "Raise xpdf remote server window" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:26 -#, fuzzy msgid "Kill xpdf remote server" -msgstr "Datei zum Zugriff auf Server" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:27 -#, fuzzy msgid "Print commands as they're executed" -msgstr "Befehle auf Standardfehlerausgabe ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:29 -#, fuzzy msgid "Specify config file to use instead of ~/.xpdfrc" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:30 -#, fuzzy msgid "Print copyright and version information" -msgstr "Komprimierungsinformation auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/xprop.fish:2 msgid "Display grammar and exit" @@ -62821,9 +58087,8 @@ msgid "Select a window by clicking on its frame" msgstr "Fenster durch Klicken auf den Rahmen auswählen" #: /tmp/fish/implicit/share/completions/xprop.fish:12 -#, fuzzy msgid "Remove property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/xprop.fish:13 msgid "Set property" @@ -62834,37 +58099,32 @@ msgid "Examine property updates forever" msgstr "Eigenschaftsaktualisierungen andauernd überprüfen" #: /tmp/fish/implicit/share/completions/xprop.fish:15 -#, fuzzy msgid "Set format" -msgstr "Kurzes Format" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:2 -#, fuzzy msgid "Make no changes" -msgstr "Keine Änderungen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:3 msgid "Apply modifications without grabbing the screen" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:4 -#, fuzzy msgid "Print out a summary of the usage and exit" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:5 msgid "Print out the RandR version reported by the X server and exit" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:6 -#, fuzzy msgid "Display the current state of the system" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:7 -#, fuzzy msgid "Select X display to use" -msgstr "Wählen Sie aus, wie Schlüsselkennungen angezeigt werden sollen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:8 msgid "Select which screen to manipulate" @@ -62883,16 +58143,12 @@ msgid "Set the screen size (index or width x height)" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:12 -#, fuzzy msgid "Set the refresh rate closest to the specified value" msgstr "" -"Die Liste der Standardeinstellungen gemäß der angegebenen Zeichenkette " -"festlegen" #: /tmp/fish/implicit/share/completions/xrandr.fish:13 -#, fuzzy msgid "Specify the orientation of the screen" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:14 msgid "Reflect across the X axis" @@ -62903,14 +58159,12 @@ msgid "Reflect across the Y axis" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:16 -#, fuzzy msgid "Display the contents of properties for each output" -msgstr "Namen aller Signale anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:17 -#, fuzzy msgid "Set screen size" -msgstr "Socketpuffergröße festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:18 msgid "Set reported physical screen size" @@ -62921,14 +58175,12 @@ msgid "Set dpi to calculate reported physical screen size" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:20 -#, fuzzy msgid "Add new mode" -msgstr "Neuen Schlüssel hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:21 -#, fuzzy msgid "Removes a mode from the server" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:22 msgid "Add a mode to the set of valid modes for an output" @@ -62939,18 +58191,16 @@ msgid "Remove a mode from the set of valid modes for an output" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:24 -#, fuzzy msgid "Selects an output to reconfigure" -msgstr "Optionsprofil auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:25 msgid "Enable connected but disabled outputs" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:26 -#, fuzzy msgid "This selects a mode" -msgstr "Eine Methode auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:27 msgid "" @@ -62963,42 +58213,36 @@ msgid "Set output position within the secreen in pixels" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:29 -#, fuzzy msgid "Set refresh rate" -msgstr "Referer-URL festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:30 -#, fuzzy msgid "Set reflection" -msgstr "Selektion umkehren" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:31 -#, fuzzy msgid "Set rotation" -msgstr "Eine Aktion auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:32 #: /tmp/fish/implicit/share/completions/xrandr.fish:33 #: /tmp/fish/implicit/share/completions/xrandr.fish:34 #: /tmp/fish/implicit/share/completions/xrandr.fish:35 #: /tmp/fish/implicit/share/completions/xrandr.fish:36 -#, fuzzy msgid "Set position relative to the output" -msgstr "Ausführlichkeitswert auf 0 zurücksetzen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:37 msgid "Set the property value: --set " msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:38 -#, fuzzy msgid "Disables the output" -msgstr "Ausgabe mit Markierung versehen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:39 -#, fuzzy msgid "Set the crtc" -msgstr "Markierungszeichen festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:40 msgid "Set gamma correction [red:green:blue]" @@ -63009,14 +58253,12 @@ msgid "Set brightness. Multiplies gamma galues by brightness value" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:42 -#, fuzzy msgid "Don't define a primary output" -msgstr "Keine ausführliche Ausgabe" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:43 -#, fuzzy msgid "Print current screen configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:44 msgid "" @@ -63031,18 +58273,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:46 -#, fuzzy msgid "Set scren scale" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:47 msgid "Set the output as primary" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:1 -#, fuzzy msgid "display to use" -msgstr "Mail an Benutzer senden" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:2 msgid "do all resources [default]" @@ -63069,34 +58309,28 @@ msgid "preprocessor to use [/usr/bin/mcpp]" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:8 -#, fuzzy msgid "do not use a preprocessor" -msgstr "Integrierten Präprozessor nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:9 -#, fuzzy msgid "query resources" -msgstr "Quellen aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:10 -#, fuzzy msgid "load resources from file [default]" -msgstr "Cookies aus Datei laden" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:11 -#, fuzzy msgid "add in resources from file" -msgstr "Index aus Datei laden" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:12 -#, fuzzy msgid "merge resources from file & sort" -msgstr "Fehler aus Datei unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:13 -#, fuzzy msgid "edit resources into file" -msgstr "sources.list-Datei angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:14 msgid "backup suffix for -edit [.bak]" @@ -63107,18 +58341,16 @@ msgid "show preprocessor symbols" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:16 -#, fuzzy msgid "remove resources" -msgstr "Sätze entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:17 msgid "avoid server reset (avoid using this)" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:18 -#, fuzzy msgid "don't warn about duplicates" -msgstr "Nur doppelte Zeilen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xsel.fish:1 msgid "Append input to selection" @@ -63189,18 +58421,16 @@ msgid "Never highlight the text cursor" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:2 -#, fuzzy msgid "Enable active icon support" -msgstr "Unterstützung für Suspension aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:3 msgid "Disallow auto wraparound" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:4 -#, fuzzy msgid "Turn off cursor blinking" -msgstr "Zugriffsprüfung abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:5 msgid "Enable the display of bold characters" @@ -63227,9 +58457,8 @@ msgid "Don't workaround the bug in more(1)" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:11 -#, fuzzy msgid "Disable dynamic color changing" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:12 msgid "Don't ensure compatibility between normal and bold fonts bounding boxes" @@ -63252,23 +58481,20 @@ msgid "Don't use pseudo-terminal's sense of the stty erase value" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:17 -#, fuzzy msgid "Don't force insert mode" -msgstr "Stapelverarbeitungsmodus nicht verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:18 -#, fuzzy msgid "Don't use jump scrolling" -msgstr "Keinen Kommentar verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:19 msgid "Don't treat C1 control characters as printable" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:20 -#, fuzzy msgid "Turn off logging" -msgstr "FTP-Mustererkennung abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:21 msgid "Turn off support for encodings according the locale setting" @@ -63311,18 +58537,16 @@ msgid "Disable reverse-wraparound" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:31 -#, fuzzy msgid "Turn off asynchronous scrolling" -msgstr "Zugriffsprüfung abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:32 msgid "Send title/icon change requests always" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:33 -#, fuzzy msgid "Don't display scrollbar" -msgstr "Keinen Fortschrittsbalken anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:34 msgid "Don't generate Sun Function Key escape codes for function keys" @@ -63349,9 +58573,8 @@ msgid "VT102 mode" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:40 -#, fuzzy msgid "Don't display toolbar or menubar" -msgstr "Keinen Fortschrittsbalken anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:41 msgid "Don't use UTF-8" @@ -63362,27 +58585,24 @@ msgid "Display characters with underline attribute as color" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:43 -#, fuzzy msgid "Write to the system utmp log file" -msgstr "Top-Server in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:44 msgid "Don't use visual bell insead of audio bell" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:45 -#, fuzzy msgid "Don't use wide characters" -msgstr "Keine per 'backslash (\\)'maskierte Zeichen verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:46 msgid "Don't wait the first time for the window to be mapped" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:47 -#, fuzzy msgid "Print version number to the standard output" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:48 msgid "Print out a verbose message describing the options" @@ -63397,18 +58617,16 @@ msgid "Always highlight the text cursor" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:51 -#, fuzzy msgid "Disable active icon support" -msgstr "Unterstützung für Suspension aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:52 msgid "Allow auto wraparound" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:53 -#, fuzzy msgid "Turn on cursor blinking" -msgstr "Rekursiven Abruf aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:54 msgid "Disable the display of bold characters" @@ -63419,9 +58637,8 @@ msgid "Set the vt100 resource cutToBeginningOfLine to 'false'" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:56 -#, fuzzy msgid "Set character class" -msgstr "Anzahl Buchstaben ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:57 msgid "Set the cjkWidth resource to 'true'" @@ -63464,9 +58681,8 @@ msgid "Use pseudo-terminal's sense of the stty erase value" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:67 -#, fuzzy msgid "Force insert mode" -msgstr "Erzwungener Stopp" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:68 msgid "Treat C1 control characters as printable" @@ -63481,9 +58697,8 @@ msgid "Force scrollbar to the left side" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:71 -#, fuzzy msgid "The shell in xterm's window will be login shell" -msgstr "Dies ist keine Login-Shell" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:72 msgid "Ring bell if the user types near the end of line" @@ -63498,9 +58713,8 @@ msgid "Use builtin version for the wide-character calculation" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:75 -#, fuzzy msgid "Disable underlining" -msgstr "Warnungen über MFC deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:76 msgid "Enable PC style bold colors" @@ -63527,9 +58741,8 @@ msgid "Don't send title/icon change requests always" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:82 -#, fuzzy msgid "Display scrollbar" -msgstr "Steuerzeichen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:83 msgid "Generate Sun Function Key escape codes for function keys" @@ -63552,9 +58765,8 @@ msgid "Assume Sun/PC keyboard" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:88 -#, fuzzy msgid "Display toolbar or menubar" -msgstr "Zeilennummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:89 msgid "Use UTF-8" @@ -63573,9 +58785,8 @@ msgid "Use visual bell insead of audio bell" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:93 -#, fuzzy msgid "Use wide characters" -msgstr "Escape-Zeichen" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:94 msgid "Wait the first time for the window to be mapped" @@ -63622,9 +58833,8 @@ msgid "FreeType double-width font pattern" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:105 -#, fuzzy msgid "Font for active icons" -msgstr "Interaktiven Modus erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:106 msgid "Font size for FreeType font" @@ -63659,9 +58869,8 @@ msgid "File name for the encoding converter" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:114 -#, fuzzy msgid "Log filename" -msgstr "Log in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:115 msgid "Maximum time in milliseconds between multi-click selections" @@ -63676,19 +58885,16 @@ msgid "Distance from the right end for ringing the margin bell" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:118 -#, fuzzy msgid "Number of scrolled off lines" -msgstr "Alle Zeilen nummerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:119 -#, fuzzy msgid "Terminal identification" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:121 -#, fuzzy msgid "zIconBeep percentage" -msgstr "Prompt mit Prozentanzeige" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:122 msgid "Size of the inner border" @@ -63699,70 +58905,60 @@ msgid "Use jump scrolling" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:124 -#, fuzzy msgid "Turn on logging" -msgstr "Entfernung der Zusatzinformationen abschalten" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:125 msgid "Turn on asynchronous scrolling" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:126 -#, fuzzy msgid "Tektronix mode" -msgstr "Fragemodus" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:127 msgid "This window should receive console output" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:1 -#, fuzzy msgid "Compress" -msgstr "Datei komprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:2 -#, fuzzy msgid "Decompress" -msgstr "Auf Standardausgabe dekomprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:3 -#, fuzzy msgid "Test the integrity of compressed files" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:4 -#, fuzzy msgid "Print information about compressed files" -msgstr "Informative Nachrichten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:5 -#, fuzzy msgid "Don't delete the input files" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:6 -#, fuzzy msgid "Write to stdout instead of file" -msgstr "Top-Server in Datei schreiben" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:7 msgid "Decompress only the first .xz stream" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:8 -#, fuzzy msgid "Disable creation of sparse files" -msgstr "Sparse-Dateien bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:9 msgid "Use SUFFIX as the suffix for target file" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:10 -#, fuzzy msgid "Read the filenames to process from file" -msgstr "Paket aus Datei lesen" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:11 msgid "Identical to --files but filenames terminate with \\0" @@ -63773,38 +58969,32 @@ msgid "Specify file format to compress/decompress" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:13 -#, fuzzy msgid "Specify type of integrity check" -msgstr "Port für Weboberfläche angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:14 -#, fuzzy msgid "Don't verify the integrity check" -msgstr "Zeit-Attribute nicht prüfen" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:15 -#, fuzzy msgid "Select compression level" -msgstr "Komprimierungsgrad" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:16 msgid "Use slower variant" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:17 -#, fuzzy msgid "Alias of -0" -msgstr "Alias für atq" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:18 -#, fuzzy msgid "Alias of -9" -msgstr "Alias für atq" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:20 -#, fuzzy msgid "Set block sizes list" -msgstr "Blockgröße festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:21 msgid "Force flush if encoder did not fush after TIMEOUT ms" @@ -63827,9 +59017,8 @@ msgid "Display error and exit if exceed memory usage limit" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:26 -#, fuzzy msgid "Specify the number of worker threads to use" -msgstr "Anzahl der Versuche auf Anzahl festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:27 msgid "Add LZMA1 filter to filter chain" @@ -63848,28 +59037,24 @@ msgid "Add Delta filter to filter chain" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:31 -#, fuzzy msgid "Suppress warnings/notices" -msgstr "Dateinamenausgabe unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:33 -#, fuzzy msgid "Don't set the exit status to 2" -msgstr "Exit-Status des Jobs verneinen" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:34 msgid "Print messages in a machine-parsable format" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:35 -#, fuzzy msgid "Display memory informations (physical, usage limits)" -msgstr "Zeigt Benutzungsinformation für den Befehl" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:37 -#, fuzzy msgid "Display long help" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:13 msgid "Backup or restore alpm local database" @@ -63888,9 +59073,8 @@ msgid "Show some statistics about your packages" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:29 -#, fuzzy msgid "Force color" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:30 msgid "Force installation or updates" @@ -63901,48 +59085,40 @@ msgid "Allow to perform \"insecure\" SSL connections" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:32 -#, fuzzy msgid "Disable color" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:33 -#, fuzzy msgid "Always ask for confirmation" -msgstr "Nach Bestätigung fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:35 msgid "Export built packages and their sources to DIR" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:36 -#, fuzzy msgid "Use DIR as temporary folder" -msgstr "tmpdir für temporäre Dateien benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:54 -#, fuzzy msgid "Show packages that conflict with one of the targets" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:55 -#, fuzzy msgid "Show packages that depend on one of the targets" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:56 -#, fuzzy msgid "Show packages that provide one of the targets" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:57 -#, fuzzy msgid "Show packages that replace one of the targets" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:58 -#, fuzzy msgid "Query the package names only" -msgstr "Nur Paketname suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:70 msgid "Query FILE instead of alpm/aur" @@ -63961,23 +59137,20 @@ msgid "Pass -A or --ignorearch option to makepkg" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:85 -#, fuzzy msgid "Specify a custom AUR url" -msgstr "Autorkennung angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:86 msgid "Build from sources(AUR or ABS)" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:87 -#, fuzzy msgid "Also build all dependencies" -msgstr "Erstellungsabhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:88 -#, fuzzy msgid "Search an update for devel packages" -msgstr "Umgekehrte Abhängigkeiten für das Paket auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:89 msgid "Search packages by maintainer instead of name (AUR only)" @@ -63988,19 +59161,16 @@ msgid "Pass additional options to makepkg" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:106 -#, fuzzy msgid "Clean all these files" -msgstr "Lokalen Zwischenspeicher und Pakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:107 -#, fuzzy msgid "Also install the package" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:1 -#, fuzzy msgid "output usage information" -msgstr "Kann Benutzerinformation nicht abrufen" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:3 msgid "output verbose messages on internal operations" @@ -64017,9 +59187,8 @@ msgid "use network only if dependencies are not available in local cache" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:6 -#, fuzzy msgid "don't run lifecycle scripts" -msgstr "Das test-Skript nicht ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:7 msgid "save HAR output of network traffic" @@ -64034,32 +59203,28 @@ msgid "ignore engines check" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:10 -#, fuzzy msgid "ignore optional dependencies" -msgstr "Zerstörte Abhängigkeiten korrigieren" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:11 -#, fuzzy msgid "ignore all caches" -msgstr "Suche ignoriert Gross-/Kleinschreibung " +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:12 msgid "don't generate bin links when setting up packages" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:13 -#, fuzzy msgid "only allow one version of a package" -msgstr "Ein oder mehrere Paket(e) installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:14 msgid "don't read or generate a lockfile" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:15 -#, fuzzy msgid "don't generate a lockfile" -msgstr "Veröffentlichungsdatei erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:16 msgid "don't generate a lockfile and fail if an update is needed" @@ -64072,37 +59237,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:18 -#, fuzzy msgid "specify a custom folder to store the yarn cache" -msgstr "Datei zum Speichern des Quellenzwischenspeichers auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:19 msgid "use a mutex to ensure only one yarn instance is executing" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:20 -#, fuzzy msgid "disable emoji in output" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:21 -#, fuzzy msgid "disable progress bar" -msgstr "Keinen Fortschrittsbalken anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:22 -#, fuzzy msgid "maximum number of concurrent network requests" -msgstr "Mindestanzahl an Peers, um keine Anfragen zu stellen" +msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:1 msgid "Module" msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:3 -#, fuzzy msgid "List all available modules" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:4 msgid "Use the QT graphical user interface" @@ -64125,63 +59285,52 @@ msgid "No window manager border for main window" msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:9 -#, fuzzy msgid "Use full screen" -msgstr "Vollbildschirm" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:1 -#, fuzzy msgid "Install the latest version of a package" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:2 -#, fuzzy msgid "Update specified packages (defaults to all packages)" -msgstr "Angegebenes Paket von Aktualisierung ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:3 -#, fuzzy msgid "Print list of available updates" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:4 -#, fuzzy msgid "Remove the specified packages and packages that depend on them" -msgstr "Pakete auflisten, von denen dieses Paket abhängt" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:5 -#, fuzzy msgid "List available packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:6 -#, fuzzy msgid "Describe available packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:7 msgid "Find package providing a feature or file" msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:8 -#, fuzzy msgid "find packages matching description regexp" -msgstr "Inhalte eines Paketes auflisten, das dem Muster entspricht" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:9 -#, fuzzy msgid "Clean up cache directory" -msgstr "Quellverzeichnisse bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:10 -#, fuzzy msgid "Generate rss changelog" -msgstr "Ein neues Schlüsselpaar erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:14 -#, fuzzy msgid "Set debug level" -msgstr "Debug-Grad festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:15 msgid "Set error level" @@ -64204,14 +59353,12 @@ msgid "Specify installroot" msgstr "installroot-Verzeichnis angeben" #: /tmp/fish/implicit/share/completions/yum.fish:21 -#, fuzzy msgid "Enable repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:22 -#, fuzzy msgid "Disable repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:23 msgid "Enables obsolets processing logic" @@ -64226,80 +59373,66 @@ msgid "Exclude specified package from updates" msgstr "Angegebenes Paket von Aktualisierung ausschliessen" #: /tmp/fish/implicit/share/completions/yum.fish:26 -#, fuzzy msgid "List all packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:27 msgid "List packages available for installation" msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:28 -#, fuzzy msgid "List packages with updates available" -msgstr "Pakete auflisten, von denen dieses Paket abhängt" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:30 -#, fuzzy msgid "List packages not available in repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:31 -#, fuzzy msgid "List packages that are obsoleted by packages in repositories" msgstr "" -"Pakete auflisten, die als Quelle für mirrorbin oder mirrorsource dienen " -"können" #: /tmp/fish/implicit/share/completions/yum.fish:32 -#, fuzzy msgid "Delete cached package files" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:33 -#, fuzzy msgid "Delete cached header files" -msgstr "Veraltete Paketdateien löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:34 -#, fuzzy msgid "Delete all cache contents" -msgstr "Nach Fertigstellung Logdatei löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:1 -#, fuzzy msgid "" "Internal completion function for appending string to the ZFS commandline" -msgstr "Alle möglichen Definitionen des angegebenen Namens ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:2 #: /tmp/fish/implicit/share/completions/zpool.fish:2 -#, fuzzy msgid "Display a help message" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:3 -#, fuzzy msgid "Create a volume or filesystem" -msgstr "Archiv und Dateisystem vergleichen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:4 msgid "Destroy a dataset" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:5 -#, fuzzy msgid "Create a snapshot" -msgstr "Archiv erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:6 msgid "Roll back a filesystem to a previous snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:7 -#, fuzzy msgid "Create a clone of a snapshot" -msgstr "Ein oder mehrere Paket(e) entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:8 msgid "" @@ -64308,24 +59441,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:9 -#, fuzzy msgid "Rename a dataset" -msgstr "Eine Platte umbenennen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:10 -#, fuzzy msgid "List dataset properties" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:11 -#, fuzzy msgid "Set a dataset property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:12 -#, fuzzy msgid "Get one or several dataset properties" -msgstr "Eigenschaft entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:13 msgid "Set a dataset property to be inherited" @@ -64352,9 +59481,8 @@ msgid "Stop sharing a given filesystem, or all of them" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:21 -#, fuzzy msgid "Create a bookmark for a snapshot" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:22 msgid "Output a stream representation of a dataset" @@ -64380,14 +59508,12 @@ msgid "Put a named hold on a snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:27 -#, fuzzy msgid "List holds on a snapshot" -msgstr "Auf Installierte begrenzen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:28 -#, fuzzy msgid "Remove a named hold from a snapshot" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:29 msgid "" @@ -64402,70 +59528,58 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:31 #: /tmp/fish/implicit/share/completions/zfs.fish:53 #: /tmp/fish/implicit/share/completions/zfs.fish:58 -#, fuzzy msgid "Create all needed non-existing parent datasets" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:32 #: /tmp/fish/implicit/share/completions/zfs.fish:33 -#, fuzzy msgid "Dataset property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:34 -#, fuzzy msgid "Volume size" -msgstr "Datei komprimieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:35 -#, fuzzy msgid "Create a sparse volume" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:36 -#, fuzzy msgid "Blocksize" -msgstr "Blockgrösse" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:37 -#, fuzzy msgid "Recursively destroy children" -msgstr "Rekursive Kopie" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:38 msgid "Recursively destroy all dependents" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:39 -#, fuzzy msgid "Force unmounting" -msgstr "Einhängen vortäuschen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:41 -#, fuzzy msgid "Print machine-parsable verbose information" -msgstr "Ausführliche Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:43 -#, fuzzy msgid "Defer snapshot deletion" -msgstr "Auswahl löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:44 -#, fuzzy msgid "Dataset to destroy" -msgstr "Startmenge der Tastendrücke" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:45 -#, fuzzy msgid "Recursively snapshot children" -msgstr "Sicherer Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:46 #: /tmp/fish/implicit/share/completions/zfs.fish:47 -#, fuzzy msgid "Snapshot property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:48 msgid "Dataset to snapshot" @@ -64480,9 +59594,8 @@ msgid "Recursively destroy later snapshot, bookmarks and clones" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:51 -#, fuzzy msgid "Force unmounting of clones" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:52 msgid "Snapshot to roll back to" @@ -64490,9 +59603,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:54 #: /tmp/fish/implicit/share/completions/zfs.fish:55 -#, fuzzy msgid "Clone property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:56 msgid "Snapshot to clone" @@ -64509,19 +59621,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:60 #: /tmp/fish/implicit/share/completions/zfs.fish:62 #: /tmp/fish/implicit/share/completions/zfs.fish:108 -#, fuzzy msgid "Force unmounting if needed" -msgstr "Index-Neuerstellung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:61 -#, fuzzy msgid "Do not remount filesystems during rename" -msgstr "Im lokalen Dateisystem bleiben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:63 -#, fuzzy msgid "Dataset to rename" -msgstr "Dienstname" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:64 #: /tmp/fish/implicit/share/completions/zfs.fish:77 @@ -64530,31 +59639,27 @@ msgstr "Dienstname" #: /tmp/fish/implicit/share/completions/zpool.fish:59 #: /tmp/fish/implicit/share/completions/zpool.fish:67 #: /tmp/fish/implicit/share/completions/zpool.fish:99 -#, fuzzy msgid "Print output in a machine-parsable format" -msgstr "Ausgabeformat für Profilierung" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:65 #: /tmp/fish/implicit/share/completions/zfs.fish:75 #: /tmp/fish/implicit/share/completions/zfs.fish:84 #: /tmp/fish/implicit/share/completions/zfs.fish:89 -#, fuzzy msgid "Operate recursively on datasets" -msgstr "Rekursiv arbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:67 #: /tmp/fish/implicit/share/completions/zpool.fish:105 -#, fuzzy msgid "Property to list" -msgstr "Niedrigster Port, an dem gelauscht wird" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:68 #: /tmp/fish/implicit/share/completions/zfs.fish:80 #: /tmp/fish/implicit/share/completions/zfs.fish:95 #: /tmp/fish/implicit/share/completions/zpool.fish:66 -#, fuzzy msgid "Print parsable (exact) values for numbers" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:69 #: /tmp/fish/implicit/share/completions/zfs.fish:97 @@ -64572,9 +59677,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:73 #: /tmp/fish/implicit/share/completions/zpool.fish:125 -#, fuzzy msgid "Property to set" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:74 msgid "Dataset which property is to be setted" @@ -64582,68 +59686,57 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:78 #: /tmp/fish/implicit/share/completions/zpool.fish:68 -#, fuzzy msgid "Fields to display" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:79 -#, fuzzy msgid "Property source to display" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:82 -#, fuzzy msgid "Property to get" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:83 msgid "Dataset which properties is to be got" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:85 -#, fuzzy msgid "Revert to the received value if available" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:86 msgid "Dataset which properties is to be inherited" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:88 -#, fuzzy msgid "Upgrade all eligible filesystems" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:90 -#, fuzzy msgid "Upgrade to the specified version" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:91 -#, fuzzy msgid "Filesystem to upgrade" -msgstr "Dateisystemtyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:92 -#, fuzzy msgid "Print UID instead of user name" -msgstr "Überschrift ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:93 -#, fuzzy msgid "Print GID instead of group name" -msgstr "Überschrift ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:96 -#, fuzzy msgid "Field to display" -msgstr "X Server-Anzeige" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:99 #: /tmp/fish/implicit/share/completions/zfs.fish:100 -#, fuzzy msgid "Identity types to display" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:101 msgid "Translate S(amba)ID to POSIX ID" @@ -64658,62 +59751,52 @@ msgid "Temporary mount point property" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:104 -#, fuzzy msgid "Report progress" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:105 -#, fuzzy msgid "Mount all available ZFS filesystems" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:106 msgid "Overlay mount" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:107 -#, fuzzy msgid "Filesystem to mount" -msgstr "Dateisystemtyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:109 -#, fuzzy msgid "Unmount all available ZFS filesystems" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:110 -#, fuzzy msgid "Filesystem to unmount" -msgstr "Dateisystemtyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:111 -#, fuzzy msgid "Share all eligible ZFS filesystems" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:112 -#, fuzzy msgid "Filesystem to share" -msgstr "Dateisystemtyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:113 -#, fuzzy msgid "Unshare all shared ZFS filesystems" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:114 -#, fuzzy msgid "Filesystem to unshare" -msgstr "Dateisystemtyp ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:115 msgid "Snapshot to bookmark" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:116 -#, fuzzy msgid "Generate incremental stream from snapshot" -msgstr "Neues inkrementelles GNU-Format benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:117 msgid "" @@ -64727,9 +59810,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:119 #: /tmp/fish/implicit/share/completions/zfs.fish:128 -#, fuzzy msgid "Generate a deduplicated stream" -msgstr "Paket aus Quelle generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:120 #: /tmp/fish/implicit/share/completions/zfs.fish:129 @@ -64743,52 +59825,43 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:122 #: /tmp/fish/implicit/share/completions/zfs.fish:131 -#, fuzzy msgid "Print verbose information about the stream in a machine-parsable format" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:123 -#, fuzzy msgid "Generate compressed stream" -msgstr "Paket aus Quelle generieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:125 #: /tmp/fish/implicit/share/completions/zfs.fish:133 -#, fuzzy msgid "Include dataset properties" -msgstr "Datei ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:126 #: /tmp/fish/implicit/share/completions/zfs.fish:134 -#, fuzzy msgid "Print verbose information about the stream" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:135 -#, fuzzy msgid "Dataset to send" -msgstr "Mail an Benutzer senden" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:136 -#, fuzzy msgid "" "Print verbose information about the stream and the time spent processing it" -msgstr "Statusinformation über Fish zurückgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:137 -#, fuzzy msgid "Dry run: do not actually receive the stream" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:138 -#, fuzzy msgid "Force rollback to the most recent snapshot" -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:139 -#, fuzzy msgid "Unmount the target filesystem" -msgstr "Alle Dateisysteme anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:140 msgid "Discard the first element of the path of the sent snapshot" @@ -64811,29 +59884,25 @@ msgid "Dataset to receive" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:145 -#, fuzzy msgid "Delegate permissions only on the specified dataset" -msgstr "Alle möglichen Definitionen des angegebenen Namens ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:146 msgid "Delegate permissions only on the descendents dataset" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:147 -#, fuzzy msgid "User to delegate permissions to" -msgstr "Alle Rechte extrahieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:148 -#, fuzzy msgid "Group to delegate permissions to" -msgstr "Ausgabe in zwei Spalten" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:149 #: /tmp/fish/implicit/share/completions/zfs.fish:150 -#, fuzzy msgid "Delegate permission to everyone" -msgstr "Freistehende Umgebung bestätigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:151 msgid "Delegate permissions only to the creator of later descendent datasets" @@ -64848,71 +59917,62 @@ msgid "Dataset on which delegation is to be applied" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:154 -#, fuzzy msgid "Remove permissions only on the specified dataset" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:155 msgid "Remove permissions only on the descendents dataset" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:156 -#, fuzzy msgid "User to remove permissions from" -msgstr "Umgebung erhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:157 -#, fuzzy msgid "Group to remove permissions from" -msgstr "Ausgabe in zwei Spalten" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:158 #: /tmp/fish/implicit/share/completions/zfs.fish:162 #: /tmp/fish/implicit/share/completions/zfs.fish:163 -#, fuzzy msgid "Remove permission from everyone" -msgstr "Alle Einträge aus der --group-Liste entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:159 msgid "Remove permissions only on later created descendent datasets" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:160 -#, fuzzy msgid "Remove a permission set or remove permissions from an existing one" -msgstr "Alle gz-Dateien aus dem Zwischenspeicher entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:161 -#, fuzzy msgid "Remove permissions recursively" -msgstr "Rekursiv arbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:164 msgid "Dataset on which delegation is to be removed" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:165 -#, fuzzy msgid "Apply hold recursively" -msgstr "Rekursiv arbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:166 msgid "Snapshot on which hold is to be applied" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:167 -#, fuzzy msgid "List holds recursively" -msgstr "Rekursiv arbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:168 msgid "Snapshot which holds are to be listed" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:169 -#, fuzzy msgid "Release hold recursively" -msgstr "Rekursiv arbeiten" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:170 msgid "Snapshot from which hold is to be removed" @@ -64923,23 +59983,20 @@ msgid "Display file type (à la ls -F)" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:173 -#, fuzzy msgid "Display inode change time" -msgstr "Zeilennummer anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:174 msgid "Source snapshot for the diff" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:175 -#, fuzzy msgid "Execution timeout" -msgstr "Rekursionsgrenze" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:176 -#, fuzzy msgid "Execution memory limit" -msgstr "Rekursionsgrenze" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:177 msgid "Pool which program will be executed on" @@ -64962,9 +60019,8 @@ msgid "Move into zipfile (delete files)" msgstr "In Zip-Datei verschieben (Dateien löschen)" #: /tmp/fish/implicit/share/completions/zip.fish:6 -#, fuzzy msgid "Do not store directory names" -msgstr "Verzeichnisnamen nicht speichern" +msgstr "" #: /tmp/fish/implicit/share/completions/zip.fish:7 msgid "Do not compress at all" @@ -65068,9 +60124,8 @@ msgid "Clear devices errors in pool" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:6 -#, fuzzy msgid "Create a new storage pool" -msgstr "Neues Projekt erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:7 msgid "Destroy a storage pool" @@ -65081,89 +60136,76 @@ msgid "Detach virtual device from a mirroring pool" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:9 -#, fuzzy msgid "Display pool event log" -msgstr "Alle Änderungsprotokolle anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:10 msgid "Export a pool" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:11 -#, fuzzy msgid "Get one or several pool properties" -msgstr "Eigenschaft entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:12 -#, fuzzy msgid "Display pool command history" -msgstr "Hilfe anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:13 -#, fuzzy msgid "List importable pools, or import some" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:14 -#, fuzzy msgid "Display pool I/O stats" -msgstr "Steuerzeichen anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:15 -#, fuzzy msgid "Remove ZFS label information from the specified device" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:16 msgid "List pools with health status and space usage" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:17 -#, fuzzy msgid "Take the specified devices offline" -msgstr "Angegebenen Schlüsselserver verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:18 -#, fuzzy msgid "Bring the specified devices back online" -msgstr "Angegebenen Schlüsselserver verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:19 msgid "Reset pool GUID" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:20 -#, fuzzy msgid "Remove virtual devices from pool" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:21 -#, fuzzy msgid "Reopen pool devices" -msgstr "Alle Namen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:22 -#, fuzzy msgid "Replace a pool virtual device" -msgstr "Datei ist ein Block-Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:23 msgid "Start or stop scrubbing" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:24 -#, fuzzy msgid "Set a pool property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:25 msgid "Create a pool by splitting an existing mirror one" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:26 -#, fuzzy msgid "Display detailed pool health status" -msgstr "URIs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:27 msgid "List upgradeable pools, or upgrade one" @@ -65173,15 +60215,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:36 #: /tmp/fish/implicit/share/completions/zpool.fish:45 #: /tmp/fish/implicit/share/completions/zpool.fish:117 -#, fuzzy msgid "Force use of virtual device" -msgstr "Inode-Nummer der Dateien ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:29 #: /tmp/fish/implicit/share/completions/zpool.fish:130 -#, fuzzy msgid "Dry run: only display resulting configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:30 #: /tmp/fish/implicit/share/completions/zpool.fish:91 @@ -65196,38 +60236,33 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:101 #: /tmp/fish/implicit/share/completions/zpool.fish:128 #: /tmp/fish/implicit/share/completions/zpool.fish:136 -#, fuzzy msgid "Resolve device path symbolic links" -msgstr "Symbolische Verweise dereferenzieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:32 #: /tmp/fish/implicit/share/completions/zpool.fish:93 #: /tmp/fish/implicit/share/completions/zpool.fish:102 #: /tmp/fish/implicit/share/completions/zpool.fish:129 #: /tmp/fish/implicit/share/completions/zpool.fish:137 -#, fuzzy msgid "Display device full path" -msgstr "Handbuchseite anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:33 #: /tmp/fish/implicit/share/completions/zpool.fish:37 #: /tmp/fish/implicit/share/completions/zpool.fish:48 #: /tmp/fish/implicit/share/completions/zpool.fish:118 #: /tmp/fish/implicit/share/completions/zpool.fish:132 -#, fuzzy msgid "Pool property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:34 -#, fuzzy msgid "Pool to add virtual devices to" -msgstr "Vertraute Schlüssel auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:35 #: /tmp/fish/implicit/share/completions/zpool.fish:53 -#, fuzzy msgid "Virtual device to add" -msgstr "Blockorientiertes Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:38 msgid "Pool to attach virtual device to" @@ -65235,14 +60270,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:39 #: /tmp/fish/implicit/share/completions/zpool.fish:43 -#, fuzzy msgid "Virtual device to operate on" -msgstr "Bereichskontrolle" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:40 -#, fuzzy msgid "Initiate recovery mode" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:41 #: /tmp/fish/implicit/share/completions/zpool.fish:85 @@ -65261,19 +60294,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:46 -#, fuzzy msgid "Dry run, only display resulting configuration" -msgstr "Dienstkonfiguration neu laden" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:47 -#, fuzzy msgid "Do not enable any feature on the new pool" -msgstr "Nicht abbrechen, wenn die Signatur älter als der Schlüssel ist" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:49 -#, fuzzy msgid "Root filesystem property" -msgstr "Eigenschaft festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:50 #: /tmp/fish/implicit/share/completions/zpool.fish:83 @@ -65281,14 +60311,12 @@ msgid "Equivalent to \"-o cachefile=none,altroot=ROOT\"" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:51 -#, fuzzy msgid "Root filesystem mountpoint" -msgstr "Lange Zeilen nicht umbrechen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:52 -#, fuzzy msgid "Set a different in-core pool name" -msgstr "Benutzerschnittstelle auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:54 #: /tmp/fish/implicit/share/completions/zpool.fish:64 @@ -65300,74 +60328,64 @@ msgid "Pool to destroy" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:56 -#, fuzzy msgid "Pool to detach device from" -msgstr "Datei ist ein Block-Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:57 msgid "Physical device to detach" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:58 -#, fuzzy msgid "Print verbose event information" -msgstr "Ausführliche Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:60 msgid "Output appended data as the log grows" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:61 -#, fuzzy msgid "Clear all previous events" -msgstr "Sämtliche Versions-Informationen ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:62 msgid "Pool to read events from" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:63 -#, fuzzy msgid "Export all pools" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:65 -#, fuzzy msgid "Pool to export" -msgstr "Grafikanzeige auswählen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:69 msgid "Properties to get" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:70 -#, fuzzy msgid "Pool to get properties of" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:71 msgid "Also display internal events" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:72 -#, fuzzy msgid "Display log records using long format" -msgstr "Startverzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:73 -#, fuzzy msgid "Pool to get command history of" -msgstr "Keine Befehle ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:74 -#, fuzzy msgid "Read configuration from specified cache file" -msgstr "Konfigurationsdatei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:75 -#, fuzzy msgid "Search for devices or files in specified directory" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:76 msgid "List or import destroyed pools only (requires -f for importation)" @@ -65375,38 +60393,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:77 #: /tmp/fish/implicit/share/completions/zpool.fish:133 -#, fuzzy msgid "Mount properties for contained datasets" -msgstr "Nur zutreffenden Teil anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:78 -#, fuzzy msgid "Properties of the imported pool" -msgstr "Größe des freigegebenen Speicherpools festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:79 -#, fuzzy msgid "Force import" -msgstr "Farben benutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:80 -#, fuzzy msgid "Recovery mode" -msgstr "Server-Modus" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:81 -#, fuzzy msgid "Search for and import all pools found" -msgstr "Nach Ablaufzeit fragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:82 msgid "Ignore missing log device (risk of loss of last changes)" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:84 -#, fuzzy msgid "Do not mount contained filesystems" -msgstr "Im lokalen Dateisystem bleiben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:86 msgid "Roll back to a previous TXG (hazardous)" @@ -65417,32 +60429,27 @@ msgid "TXG to roll back to (implies -FX)" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:88 -#, fuzzy msgid "Specify, as the last argument, a temporary pool name" -msgstr "Geben Sie einen Titel für rss an" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:89 -#, fuzzy msgid "Pool to import" -msgstr "Zu importierendes Verzeichnis" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:90 #: /tmp/fish/implicit/share/completions/zpool.fish:103 #: /tmp/fish/implicit/share/completions/zpool.fish:142 -#, fuzzy msgid "Display a timestamp using specified format" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:94 -#, fuzzy msgid "Omit statistics since boot" -msgstr "Wortzählung ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:95 #: /tmp/fish/implicit/share/completions/zpool.fish:104 -#, fuzzy msgid "Print verbose statistics" -msgstr "Ausführliche Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:96 msgid "Pool to retrieve I/O stats from" @@ -65453,14 +60460,12 @@ msgid "Treat exported or foreign devices as inactive" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:98 -#, fuzzy msgid "Device to clear ZFS label information from" -msgstr "Alle Informationen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:106 -#, fuzzy msgid "Pool to list properties of" -msgstr "Zeichensatzeigenschaften anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:107 msgid "Temporarily offline" @@ -65475,14 +60480,12 @@ msgid "Physical device to offline" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:110 -#, fuzzy msgid "Expand the device to use all available space" -msgstr "Liste der Quellpakete aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:111 -#, fuzzy msgid "Pool to bring device back online on" -msgstr "Blockorientiertes Gerät" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:112 msgid "Physical device to bring back online" @@ -65501,33 +60504,28 @@ msgid "Physical device to remove" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:116 -#, fuzzy msgid "Pool which devices are to be reopened" -msgstr "Dienststatus ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:119 -#, fuzzy msgid "Pool to replace device" -msgstr "Datei ist ein Zeichengerät" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:120 msgid "Pool device to be replaced" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:121 -#, fuzzy msgid "Device to use for replacement" -msgstr "Geräte-Sektion" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:122 -#, fuzzy msgid "Stop scrubbing" -msgstr "Dienst anhalten" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:123 -#, fuzzy msgid "Pause scrubbing" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:124 msgid "Pool to start/stop scrubbing" @@ -65542,15 +60540,13 @@ msgid "Set altroot for newpool and automatically import it" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:134 -#, fuzzy msgid "Pool to split" -msgstr "Niedrigster Port, an dem gelauscht wird" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:138 #: /tmp/fish/implicit/share/completions/zpool.fish:139 -#, fuzzy msgid "Display deduplication histogram" -msgstr "Alle Änderungsprotokolle anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:141 msgid "Only display status for unhealthy or unavailable pools" @@ -65566,14 +60562,12 @@ msgid "Upgrade all eligible pools, enabling all supported features" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:145 -#, fuzzy msgid "Display upgradeable ZFS versions" -msgstr "Paketsatz anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:146 -#, fuzzy msgid "Upgrade to the specified legacy version" -msgstr "Fenster auf der angegebenen Anzeige erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:2 msgid "Repo" @@ -65584,264 +60578,212 @@ msgid "Accept multiple commands at once" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:6 -#, fuzzy msgid "List all defined repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:7 -#, fuzzy msgid "Add a new repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:8 -#, fuzzy msgid "Remove specified repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:9 -#, fuzzy msgid "Rename specified repository" -msgstr "Defektes Paketdepot reparieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:10 -#, fuzzy msgid "Modify specified repository" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:11 -#, fuzzy msgid "Refresh all repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:12 -#, fuzzy msgid "Clean local caches" -msgstr "Lokalen Zwischenspeicher und Pakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:13 -#, fuzzy msgid "List all defined services" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:14 -#, fuzzy msgid "Add a new service" -msgstr "Neuen Schlüssel hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:15 -#, fuzzy msgid "Modify specified service" -msgstr "Angegebenen Schlüsselserver verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:16 -#, fuzzy msgid "Remove specified service" -msgstr "Angegebenen Schlüsselserver verwenden" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:17 -#, fuzzy msgid "Refresh all services" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:20 -#, fuzzy msgid "Verify integrity of package dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:21 -#, fuzzy msgid "Install source packages and their build dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:22 -#, fuzzy msgid "Install newly added packages recommended by installed packages" msgstr "" -"Installiere diese Pakete, selbst wenn sie Dateien aus anderen, bereits " -"installierten Paketen ersetzen" #: /tmp/fish/implicit/share/completions/zypper.fish:23 -#, fuzzy msgid "Update installed packages with newer versions" -msgstr "Alle Quellpakete mit Version ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:24 -#, fuzzy msgid "List available updates" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:25 -#, fuzzy msgid "Install needed patches" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:26 -#, fuzzy msgid "List needed patches" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:27 -#, fuzzy msgid "Perform a distribution upgrade" -msgstr "Simulation durchführen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:28 -#, fuzzy msgid "Check for patches" -msgstr "Komprimierte Patche erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:29 -#, fuzzy msgid "Search for packages matching a pattern" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:30 -#, fuzzy msgid "Show full information for specified packages" -msgstr "Volle Versionen der Pakete anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:31 -#, fuzzy msgid "Show full information for specified patches" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:32 -#, fuzzy msgid "Show full information for specified patterns" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:33 -#, fuzzy msgid "Show full information for specified products" -msgstr "Profilierungsinformation in angegebene Datei ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:34 -#, fuzzy msgid "List all available patches" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:35 -#, fuzzy msgid "List all available packages" -msgstr "Pakete erneut installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:36 -#, fuzzy msgid "List all available patterns" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:37 -#, fuzzy msgid "List all available products" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:38 -#, fuzzy msgid "List packages providing specified capability" -msgstr "Alle Pakete abfragen, die die angegebene Eigenschaft bereitstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:39 -#, fuzzy msgid "Add a package lock" -msgstr "Ein Paket neu erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:40 -#, fuzzy msgid "Remove a package lock" -msgstr "Pakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:41 -#, fuzzy msgid "List current package locks" -msgstr "Fehler aus Paketen auflisten" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:42 -#, fuzzy msgid "Remove unused locks" -msgstr "Quellpakete entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:43 -#, fuzzy msgid "Compare two version strings" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:44 -#, fuzzy msgid "Print the target operating system ID string" -msgstr "Betriebssystem ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:45 msgid "Print report about licenses and EULAs of installed packages" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:46 -#, fuzzy msgid "Download source rpms for all installed packages to a local directory" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:48 -#, fuzzy msgid "Output the version number" -msgstr "Versionsnummer" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:49 -#, fuzzy msgid "Use specified config file instead of the default" -msgstr "Angegebene Datei anstelle der Standardvertrauensdatenbank nutzen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:50 -#, fuzzy msgid "Suppress normal output, print only error messages" -msgstr "Fehlermeldungen unterdrücken" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:52 -#, fuzzy msgid "Do not abbreviate text in tables" -msgstr "Keine Ausgabedateien erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:53 -#, fuzzy msgid "Table style (integer)" -msgstr "Integrität der Zip-Datei testen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:54 -#, fuzzy msgid "Turn on rug compatibility" -msgstr "Debug-Ausgabe aktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:55 msgid "Do not ask anything, use default answers automatically" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:56 -#, fuzzy msgid "Switch to XML output" -msgstr "Ausgabebreite festlegen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:57 -#, fuzzy msgid "Ignore unknown packages" -msgstr "Fehlende Pakete ignorieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:58 -#, fuzzy msgid "Use an additional repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:59 -#, fuzzy msgid "Use alternative repository definition file directory" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:60 -#, fuzzy msgid "Use alternative directory for all caches" -msgstr "Verzeichnis nach makefile durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:61 -#, fuzzy msgid "Operate on a different root directory" -msgstr "Diff zwischen zwei Versionen des Paketdepots erstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:62 msgid "" @@ -65857,29 +60799,24 @@ msgid "Automatically trust and import new repository signing keys" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:65 -#, fuzzy msgid "Do not read meta-data from repositories" -msgstr "Erstellte Dateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:66 -#, fuzzy msgid "Do not refresh the repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:67 -#, fuzzy msgid "Ignore CD/DVD repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:68 -#, fuzzy msgid "Ignore remote repositories" -msgstr "Einträge in .cvspass für entferntes Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:69 -#, fuzzy msgid "Do not read installed packages" -msgstr "Pakete nicht aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:70 msgid "Output a list of zypper user prompts" @@ -65906,26 +60843,22 @@ msgid "Export all defined repositories as a single local .repo file" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:76 -#, fuzzy msgid "Show also repository alias" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:77 -#, fuzzy msgid "Show also repository name" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:78 #: /tmp/fish/implicit/share/completions/zypper.fish:121 -#, fuzzy msgid "Show also base URI of repositories" -msgstr "Einträge in .cvspass für entferntes Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:79 #: /tmp/fish/implicit/share/completions/zypper.fish:122 -#, fuzzy msgid "Show also repository priority" -msgstr "Zugriffsverlauf des Paketdepots anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:80 msgid "Show also the autorefresh flag" @@ -65947,9 +60880,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:84 #: /tmp/fish/implicit/share/completions/zypper.fish:125 -#, fuzzy msgid "Sort the list by repository priority" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:85 msgid "Sort the list by alias" @@ -65969,23 +60901,20 @@ msgid "Type of repository (yast2, rpm-md, plaindir)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:89 -#, fuzzy msgid "Add the repository as disabled" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:90 -#, fuzzy msgid "Probe URI" -msgstr "Eine CD testen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:91 msgid "Don't probe URI, probe later during refresh" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:92 -#, fuzzy msgid "Specify descriptive name for the repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:93 #: /tmp/fish/implicit/share/completions/zypper.fish:106 @@ -65994,26 +60923,22 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:94 #: /tmp/fish/implicit/share/completions/zypper.fish:107 -#, fuzzy msgid "Disable RPM files caching" -msgstr "Nicht auf die Veränderungszeiten der Dateien vertrauen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:95 #: /tmp/fish/implicit/share/completions/zypper.fish:108 -#, fuzzy msgid "Enable GPG check for this repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:96 #: /tmp/fish/implicit/share/completions/zypper.fish:109 -#, fuzzy msgid "Disable GPG check for this repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:97 -#, fuzzy msgid "Enable autorefresh of the repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:98 #: /tmp/fish/implicit/share/completions/zypper.fish:146 @@ -66022,67 +60947,56 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:99 #: /tmp/fish/implicit/share/completions/zypper.fish:147 -#, fuzzy msgid "Ignore query string in the URI" -msgstr "Dateien ignorieren, die mit ~ enden" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:100 msgid "Disable the repository (but don't remove it)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:101 -#, fuzzy msgid "Enable a disabled repository" -msgstr "Defektes Paketdepot reparieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:102 -#, fuzzy msgid "Enable auto-refresh of the repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:103 -#, fuzzy msgid "Disable auto-refresh of the repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:104 -#, fuzzy msgid "Set a descriptive name for the repository" -msgstr "Neue/s Datei/Verzeichnis zum Paketdepot hinzufügen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:105 -#, fuzzy msgid "Set priority of the repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:110 -#, fuzzy msgid "Apply changes to all repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:111 -#, fuzzy msgid "Apply changes to all local repositories" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:112 -#, fuzzy msgid "Apply changes to all remote repositories" -msgstr "Einträge in .cvspass für entferntes Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:113 -#, fuzzy msgid "Apply changes to repositories of specified type" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:114 msgid "Force a complete refresh" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:115 -#, fuzzy msgid "Force rebuild of the database" -msgstr "Index-Neuerstellung erzwingen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:116 msgid "Force download of raw metadata" @@ -66097,9 +61011,8 @@ msgid "Only download raw metadata, don't build the database" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:119 -#, fuzzy msgid "Refresh only specified repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:120 msgid "Refresh also services before refreshing repos" @@ -66110,19 +61023,16 @@ msgid "Show also repositories belonging to the services" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:128 -#, fuzzy msgid "Type of the service (ris)" -msgstr "Anzahl der Top-Server" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:129 -#, fuzzy msgid "Add the service as disabled" -msgstr "Dienststatus ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:130 -#, fuzzy msgid "Specify descriptive name for the service" -msgstr "Ziel-E-Mail-Adresse angeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:131 msgid "Disable the service (but don't remove it)" @@ -66141,39 +61051,32 @@ msgid "Disable auto-refresh of the service" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:135 -#, fuzzy msgid "Set a descriptive name for the service" -msgstr "Beschreibung des mime-Typs ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:136 -#, fuzzy msgid "Add a RIS service repository to enable" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:137 -#, fuzzy msgid "Add a RIS service repository to disable" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:138 -#, fuzzy msgid "Remove a RIS service repository to enable" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:139 -#, fuzzy msgid "Remove a RIS service repository to disable" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:140 -#, fuzzy msgid "Clear the list of RIS repositories to enable" -msgstr "Liste der rpm-Konfigurationsdateien" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:141 -#, fuzzy msgid "Clear the list of RIS repositories to disable" -msgstr "Liste der rpm-Konfigurationsdateien" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:142 msgid "Apply changes to all services" @@ -66184,19 +61087,16 @@ msgid "Apply changes to all local services" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:144 -#, fuzzy msgid "Apply changes to all remote services" -msgstr "Datei zum Zugriff auf Server" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:145 -#, fuzzy msgid "Apply changes to services of specified type" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:148 -#, fuzzy msgid "Refresh also repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:149 #: /tmp/fish/implicit/share/completions/zypper.fish:165 @@ -66204,9 +61104,8 @@ msgstr "Depot deaktivieren" #: /tmp/fish/implicit/share/completions/zypper.fish:190 #: /tmp/fish/implicit/share/completions/zypper.fish:213 #: /tmp/fish/implicit/share/completions/zypper.fish:276 -#, fuzzy msgid "Load only the specified repository" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:150 msgid "" @@ -66221,9 +61120,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:152 #: /tmp/fish/implicit/share/completions/zypper.fish:168 -#, fuzzy msgid "Select packages by capability" -msgstr "Alle Pakete abfragen, die die angegebene Eigenschaft bereitstellen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:153 msgid "" @@ -66255,9 +61153,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:194 #: /tmp/fish/implicit/share/completions/zypper.fish:216 #: /tmp/fish/implicit/share/completions/zypper.fish:278 -#, fuzzy msgid "Only download the packages, do not install" -msgstr "Nie ins übergeordnete Verzeichnis wechseln" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:158 msgid "" @@ -66287,9 +61184,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:201 #: /tmp/fish/implicit/share/completions/zypper.fish:219 #: /tmp/fish/implicit/share/completions/zypper.fish:283 -#, fuzzy msgid "Install also recommended packages in addition to the required" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:162 #: /tmp/fish/implicit/share/completions/zypper.fish:174 @@ -66298,9 +61194,8 @@ msgid "Force the solver to find a solution (even an aggressive one)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:163 -#, fuzzy msgid "Select packages from the specified repository" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:164 #: /tmp/fish/implicit/share/completions/zypper.fish:179 @@ -66320,14 +61215,12 @@ msgid "Type of package (package, patch, pattern, product). Default: package" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:170 -#, fuzzy msgid "Automatically remove unneeded dependencies" -msgstr "Pakete für Abhängigkeiten installieren/entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:171 -#, fuzzy msgid "No automatic removal of unneeded dependencies" -msgstr "Status der Abhängigkeiten anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:172 msgid "Test the removal, do not actually remove" @@ -66338,24 +61231,20 @@ msgid "Test the repair, do not actually do anything to the system" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:181 -#, fuzzy msgid "Install only build dependencies of specified packages" -msgstr "Pakete auflisten, die abhängen von " +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:182 -#, fuzzy msgid "Don't install build dependencies" -msgstr "Nicht automatisch Abhängigkeiten erfüllen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:183 -#, fuzzy msgid "Install packages only from specified repositories" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:184 -#, fuzzy msgid "Load only the specified repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:189 msgid "" @@ -66369,9 +61258,8 @@ msgid "Test the update, do not actually update" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:195 -#, fuzzy msgid "Skip interactive updates" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:198 #: /tmp/fish/implicit/share/completions/zypper.fish:205 @@ -66381,9 +61269,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:203 -#, fuzzy msgid "List only updates from the specified repository" -msgstr "Defektes Paketdepot reparieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:204 msgid "" @@ -66396,42 +61283,36 @@ msgid "List needed patches for Bugzilla issues" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:207 -#, fuzzy msgid "List all patches in this category" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:208 -#, fuzzy msgid "List all patches, not only the needed ones" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:209 -#, fuzzy msgid "List only patches from the specified repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:210 msgid "List patches issued up to the specified date " msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:211 -#, fuzzy msgid "List needed patches for CVE issues" -msgstr "Neues Paket installieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:212 -#, fuzzy msgid "Look for issues matching the specified string" -msgstr "Dem Muster entsprechende Dateien ausschliessen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:215 msgid "Test the upgrade, do not actually upgrade" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:220 -#, fuzzy msgid "Restrict upgrade to specified repository" -msgstr "Jokerzeichen auf angegebenes Verzeichnis beschränken" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:222 msgid "Do not allow installed resolvables to be downgraded" @@ -66466,9 +61347,8 @@ msgid "Allow installed resolvables to switch vendors" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:230 -#, fuzzy msgid "Check for patches only in the specified repository" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:231 msgid "Search also in package summaries and descriptions" @@ -66479,126 +61359,107 @@ msgid "Perform case-sensitive search" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:233 -#, fuzzy msgid "Show only packages that are already installed" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:234 -#, fuzzy msgid "Show only packages that are not currently installed" -msgstr "Paket aktualisieren, wenn es bereits installiert ist" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:235 -#, fuzzy msgid "Search only for packages of the specified type" -msgstr "Pakete mit der angegebenen Gruppe abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:236 -#, fuzzy msgid "Search only in the specified repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:237 msgid "Show each available version in each repository on a separate line" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:238 -#, fuzzy msgid "Sort packages by name (default)" -msgstr "Paketname nach Präfix ausgeben" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:239 -#, fuzzy msgid "Sort packages by repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:240 msgid "Search for a match with all search strings (default)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:241 -#, fuzzy msgid "Search for a match with any of the search strings" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:242 msgid "Search for a match to partial words (default)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:243 -#, fuzzy msgid "Search for a match to whole words only" -msgstr "Paket entsprechend Muster suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:244 -#, fuzzy msgid "Searches for an exact package name" -msgstr "Vollständigen Paketnamen suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:245 -#, fuzzy msgid "Work only with the specified repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:247 msgid "Show also requires and prerequires" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:248 -#, fuzzy msgid "Show also recommends" -msgstr "Arp-Einträge anzeigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:249 #: /tmp/fish/implicit/share/completions/zypper.fish:250 #: /tmp/fish/implicit/share/completions/zypper.fish:255 #: /tmp/fish/implicit/share/completions/zypper.fish:258 -#, fuzzy msgid "Just another means to specify repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:251 -#, fuzzy msgid "Show only installed packages" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:252 -#, fuzzy msgid "Show only packages which are not installed" -msgstr "Installierte Pakete synchronisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:253 -#, fuzzy msgid "Sort the list by package name" -msgstr "Vollständigen Paketnamen suchen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:254 -#, fuzzy msgid "Sort the list by repository" -msgstr "Paketdepot aktualisieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:256 -#, fuzzy msgid "Show only installed patterns" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:257 msgid "Show only patterns which are not installed" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:259 -#, fuzzy msgid "Show only installed products" -msgstr "Alle installierten Pakete abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:260 msgid "Show only products which are not installed" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:261 -#, fuzzy msgid "Restrict the lock to the specified repository" -msgstr "Jokerzeichen auf angegebenes Verzeichnis beschränken" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:262 #: /tmp/fish/implicit/share/completions/zypper.fish:264 @@ -66606,76 +61467,64 @@ msgid "Type of package (package, patch, pattern, product). Default: package" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:263 -#, fuzzy msgid "Remove only locks with specified repository" -msgstr "Einen Eintrag aus dem Paketdepot entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:265 -#, fuzzy msgid "Clean only duplicate locks" -msgstr "Nicht doppelte Zeilen entfernen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:266 msgid "Clean only locks which doesn't lock anything" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:267 -#, fuzzy msgid "Takes missing release number as any release" -msgstr "fehlende Hexzahl in Escapesequenz" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:268 msgid "Show the operating system label" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:269 -#, fuzzy msgid "Clean only specified repositories" -msgstr "Depot deaktivieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:270 -#, fuzzy msgid "Clean metadata cache" -msgstr "Lokalen Zwischenspeicher und Pakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:271 -#, fuzzy msgid "Clean raw metadata cache" -msgstr "Lokalen Zwischenspeicher und Pakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:272 -#, fuzzy msgid "Clean both metadata and package caches" -msgstr "Lokalen Zwischenspeicher und Pakete bereinigen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:274 -#, fuzzy msgid "Install patch fixing the specified bugzilla issue" -msgstr "Partition mit angegebenem Label einhängen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:275 -#, fuzzy msgid "Install all patches in this category" -msgstr "Dateien in das Paketdepot übertragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:279 -#, fuzzy msgid "Install patch fixing the specified CVE issue" -msgstr "Ein (deinstalliertes) Paket in der angegebenen Datei abfragen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:280 msgid "Install patches issued until the specified date " msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:285 -#, fuzzy msgid "Skip interactive patches" -msgstr "Im nicht interaktiven Modus ausführen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:286 -#, fuzzy msgid "Do not skip interactive patches" -msgstr "Patch nicht signieren" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:287 msgid "" @@ -66684,14 +61533,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:288 -#, fuzzy msgid "Delete extraneous source rpms in the local directory" -msgstr "CVS-Paketdepot erstellen, wenn es nicht existiert" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:289 -#, fuzzy msgid "Do not delete extraneous source rpms" -msgstr "Quelldateien nicht löschen" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:290 msgid "" @@ -66703,18 +61550,13 @@ msgstr "" msgid "Manage abbreviations using new fish 3.0 scheme." msgstr "" -#: /tmp/fish/implicit/share/functions/abbr_old.fish:1 -msgid "Manage abbreviations using old fish 2.x scheme." -msgstr "" - #: /tmp/fish/implicit/share/functions/alias.fish:1 msgid "Creates a function wrapping a command" msgstr "" #: /tmp/fish/implicit/share/functions/cdh.fish:1 -#, fuzzy msgid "Menu based cd command" -msgstr "Ende des Befehls" +msgstr "" #: /tmp/fish/implicit/share/functions/contains_seq.fish:1 msgid "Return true if array contains a sequence" @@ -66725,9 +61567,8 @@ msgid "Print the current directory history (the prev and next lists)" msgstr "" #: /tmp/fish/implicit/share/functions/dirs.fish:1 -#, fuzzy msgid "Print directory stack" -msgstr "Verzeichnisnamen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/down-or-search.fish:1 msgid "" @@ -66739,10 +61580,6 @@ msgstr "" msgid "Edit the command buffer in an external editor" msgstr "" -#: /tmp/fish/implicit/share/functions/eval.fish:1 -msgid "Evaluate parameters as a command" -msgstr "Parameter als Befehl auswerten" - #: /tmp/fish/implicit/share/functions/_.fish:1 msgid "Alias for the gettext command" msgstr "" @@ -66759,19 +61596,9 @@ msgstr "" msgid "Return 0 if the current token has an open single-quote" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_abook_formats.fish:1 -#, fuzzy -msgid "Complete abook formats" -msgstr "Vergleiche FILE1 mit allen Operanden" - -#: /tmp/fish/implicit/share/functions/__fish_complete_ant_targets.fish:1 -msgid "Print list of targets from build.xml and imported files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_atool_archive_contents.fish:1 -#, fuzzy msgid "List archive contents" -msgstr "Archiv auflisten" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:1 msgid "Maximum uploads at once" @@ -66905,24 +61732,20 @@ msgid "Complete using all available commands" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_convert_options.fish:1 -#, fuzzy msgid "Complete Convert options" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_directories.fish:1 -#, fuzzy msgid "Complete directory prefixes" -msgstr "Verzeichnis-Präfix festlegen" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:1 -#, fuzzy msgid "Complete ftp, pftp" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:2 -#, fuzzy msgid "Hostname" -msgstr "Benutzername" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:3 msgid "Use only IPv4 to contact any host" @@ -66953,9 +61776,8 @@ msgid "Disable command editing and history support" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:10 -#, fuzzy msgid "Disable file name globbing" -msgstr "Nicht auf die Veränderungszeiten der Dateien vertrauen" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:11 msgid "Do not explicitly bind data and control channels to same interface" @@ -66966,32 +61788,28 @@ msgid "Verbose. Show all server responses and data transfer stats" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:13 -#, fuzzy msgid "Enable debugging" -msgstr "Entfernung der Zusatzinformationen abschalten" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_groups.fish:1 msgid "Print a list of local groups, with group members as the description" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_job_pids.fish:1 -#, fuzzy msgid "Print a list of job PIDs and their commands" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:1 -#, fuzzy msgid "Complete lpr common options" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:2 msgid "Forces encryption when connecting to the server" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:3 -#, fuzzy msgid "Specifies an alternate username" -msgstr "http-Benutzername angeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:4 msgid "Specifies an alternate printer or class name" @@ -67002,27 +61820,24 @@ msgid "Apply command to all printers" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:7 -#, fuzzy msgid "Sets a job option" -msgstr "Konfigurationsoption festlegen" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:8 msgid "Send an email on job completion" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:9 -#, fuzzy msgid "Landscape mode" -msgstr "Unsicherer Modus" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:10 msgid "Media size" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:11 -#, fuzzy msgid "Page ranges" -msgstr "Anzeigeprogramm" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:12 msgid "Choose orientation (4-landscape)" @@ -67045,33 +61860,28 @@ msgid "Scale image files to use up to number percent of the page" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:17 -#, fuzzy msgid "Set the number of characters per inch to use" -msgstr "Anzahl der Versuche auf Anzahl festlegen" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:18 -#, fuzzy msgid "Set the number of lines per inch to use" -msgstr "Anzahl der Versuche auf Anzahl festlegen" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:19 msgid "Set the page margins when printing text files" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr_option.fish:1 -#, fuzzy msgid "Complete lpr option" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_path.fish:1 -#, fuzzy msgid "Complete using path" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:1 -#, fuzzy msgid "Complete pgrep/pkill" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:2 msgid "Match pattern against full command line" @@ -67088,14 +61898,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:5 -#, fuzzy msgid "Select only the newest process" -msgstr "Benutzerschnittstelle auswählen" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:6 -#, fuzzy msgid "Select only the oldest process" -msgstr "Lesen nach NUM Treffern beenden" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:7 msgid "Only match processes whose parent process ID is listed" @@ -67122,9 +61930,8 @@ msgid "Only match processes whose real user ID is listed" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:12 -#, fuzzy msgid "Negates the matching" -msgstr "Bedeutung der Treffer umkehren" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:13 msgid "" @@ -67137,34 +61944,24 @@ msgid "Print a list of process identifiers along with brief descriptions" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ppp_peer.fish:1 -#, fuzzy msgid "Complete isp name for pon/poff" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_proc.fish:1 -#, fuzzy msgid "Complete by list of running processes" -msgstr "Liste laufender screen-Sitzungen ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_complete_setxkbmap.fish:1 -#, fuzzy -msgid "Complete setxkb options" -msgstr "Saloppe Einhäng-Optionen tolerieren" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:1 -#, fuzzy msgid "common completions for ssh commands" -msgstr "Funktionstasten für Befehle nutzen" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:2 -#, fuzzy msgid "Protocol version 1 only" -msgstr "Nur Protokoll-Version 1" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:3 -#, fuzzy msgid "Protocol version 2 only" -msgstr "Nur Protokoll-Version 2" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:4 msgid "IPv4 addresses only" @@ -67191,59 +61988,32 @@ msgid "Options" msgstr "Optionen" #: /tmp/fish/implicit/share/functions/__fish_complete_subcommand.fish:1 -#, fuzzy msgid "Complete subcommand" -msgstr "Vergleiche FILE1 mit allen Operanden" - -#: /tmp/fish/implicit/share/functions/__fish_complete_subcommand_root.fish:1 -msgid "" -"Run the __fish_complete_subcommand function using a PATH containing /sbin " -"and /usr/sbin" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_suffix.fish:1 -#, fuzzy msgid "Complete using files" -msgstr "Saloppe Einhäng-Optionen tolerieren" - -#: /tmp/fish/implicit/share/functions/__fish_complete_svn_diff.fish:1 -#, fuzzy -msgid "Complete \"svn diff\" arguments" -msgstr "Anzahl der Argumente zählen" - -#: /tmp/fish/implicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_complete_unrar.fish:1 -msgid "Peek inside of archives and list all files" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_user_at_hosts.fish:1 -#, fuzzy msgid "Print list host-names with user@" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_users.fish:1 msgid "Print a list of local users, with the real user name as a description" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_wvdial_peers.fish:1 -#, fuzzy -msgid "Complete wvdial peers" -msgstr "Vergleiche FILE1 mit allen Operanden" - #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 -#, fuzzy msgid "Completes with ZFS mountpoint properties" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_pools.fish:1 -#, fuzzy msgid "Completes with available ZFS pools" -msgstr "Vergleiche FILE1 mit allen Operanden" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_ro_properties.fish:1 -#, fuzzy msgid "Completes with ZFS read-only properties" -msgstr "Verzeichnis-Präfix festlegen" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_rw_properties.fish:1 msgid "Completes with ZFS read-write properties" @@ -67280,9 +62050,8 @@ msgid "Stop service" msgstr "Dienst anhalten" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:6 -#, fuzzy msgid "Print service status" -msgstr "Dienststatus ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:7 msgid "Stop and then start service" @@ -67301,15 +62070,12 @@ msgid "Repaint screen when window changes size" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_contains_opt.fish:1 -#, fuzzy msgid "Checks if a specific option has been given in the current commandline" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_crux_packages.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_prt_packages.fish:1 -#, fuzzy msgid "Obtain a list of installed packages" -msgstr "Ein installiertes Paket neu erstellen und installieren" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_cursor_1337.fish:1 msgid "Set cursor using OSC command 1337" @@ -67324,72 +62090,54 @@ msgid "Set cursor (xterm)" msgstr "" #: /tmp/fish/implicit/share/functions/fish_default_key_bindings.fish:1 -#, fuzzy msgid "Default (Emacs-like) key bindings for fish" -msgstr "Datei mit Tastaturbindungen angeben" +msgstr "" #: /tmp/fish/implicit/share/functions/fish_default_mode_prompt.fish:1 -#, fuzzy msgid "Display the default mode for the prompt" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_describe_command.fish:1 -#, fuzzy msgid "Command used to find descriptions for commands" -msgstr "Funktionstasten für Befehle nutzen" +msgstr "" -#: /tmp/fish/implicit/share/functions/fish_fallback_prompt.fish:1 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:1 +msgid "Helper function for fish_git_prompt" +msgstr "" + +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:3 msgid "" -"A simple fallback prompt without too much color or special characters for " -"linux VTs" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_filter_ant_targets.fish:1 -msgid "Display targets within an ant build.xml file" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:1 -msgid "Helper function for __fish_git_prompt" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:2 -#, fuzzy -msgid "Prompt function for Git" -msgstr "Aktuelle Funktionen sind: " - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:3 -msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has staged " +"fish_git_prompt helper, tells whether or not the current branch has staged " "files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:4 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:4 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has " +"fish_git_prompt helper, tells whether or not the current branch has " "tracked, modified files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:5 -msgid "__fish_git_prompt helper, returns the current Git operation and branch" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:5 +msgid "fish_git_prompt helper, returns the current Git operation and branch" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:6 -msgid "__fish_git_prompt helper, checks char variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:6 +msgid "fish_git_prompt helper, checks char variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:7 -msgid "__fish_git_prompt helper, checks color variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:7 +msgid "fish_git_prompt helper, checks color variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:8 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:8 msgid "Event handler, repaints prompt when functionality changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:9 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:9 msgid "Event handler, repaints prompt when any color changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:10 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:10 msgid "Event handler, repaints prompt when any char changes" msgstr "" @@ -67400,9 +62148,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_hg_prompt.fish:1 -#, fuzzy msgid "Write out the hg prompt" -msgstr "Prompt ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/fish_hybrid_key_bindings.fish:1 msgid "Vi-style bindings that inherit emacs-style bindings in all modes" @@ -67413,9 +62160,8 @@ msgid "Test if no non-switch argument has been specified yet" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_is_git_repository.fish:1 -#, fuzzy msgid "Check if the current directory is a git repository" -msgstr "Das ganze Paketdepot prüfen" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_is_token_n.fish:1 msgid "Test if current token is on Nth place" @@ -67438,27 +62184,24 @@ msgid "Make list of kill signals for completion" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_make_completion_signals.fish:2 -#, fuzzy msgid "List names of available signals" -msgstr "Namen der verfügbaren Signale auflisten" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_make_completion_signals.fish:3 msgid "List codes and names of available signals" msgstr "" #: /tmp/fish/implicit/share/functions/fish_mode_prompt.fish:1 -#, fuzzy msgid "Displays the current mode" -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_move_last.fish:1 msgid "Move the last element of a directory history from src to dest" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_no_arguments.fish:1 -#, fuzzy msgid "Internal fish function" -msgstr "Funktion löschen" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_not_contain_opt.fish:1 msgid "Checks that a specific option is not in the current command line" @@ -67468,192 +62211,89 @@ msgstr "" msgid "Paginate the current command using the users default pager" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_ports_dirs.fish:1 -#, fuzzy -msgid "Obtain a list of ports local collections" -msgstr "Liste laufender screen-Sitzungen ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_abook_emails.fish:1 -#, fuzzy -msgid "Print email addresses (abook)" -msgstr "Tote Prozesse ausgeben" - #: /tmp/fish/implicit/share/functions/__fish_print_addresses.fish:1 -#, fuzzy msgid "Print a list of known network addresses" -msgstr "Liste laufender screen-Sitzungen ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_arch_daemons.fish:1 -#, fuzzy -msgid "Print arch daemons" -msgstr "Alle Namen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_commands.fish:1 -#, fuzzy msgid "Print a list of documented fish commands" -msgstr "Liste laufender screen-Sitzungen ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_debian_services.fish:1 -#, fuzzy -msgid "Prints services installed" -msgstr "Dienststatus ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_encodings.fish:1 msgid "Complete using available character encodings" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_filesystems.fish:1 -#, fuzzy msgid "Print a list of all known filesystem types" -msgstr "Liste laufender screen-Sitzungen ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_function_prototypes.fish:1 -msgid "" -"Prints the names of all function prototypes found in the headers in the " -"current directory" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_groups.fish:1 -#, fuzzy msgid "Print a list of local groups" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_help.fish:1 msgid "Print help message for the specified fish function or builtin" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_hostnames.fish:1 -#, fuzzy msgid "Print a list of known hostnames" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_interfaces.fish:1 -#, fuzzy msgid "Print a list of known network interfaces" -msgstr "Liste laufender screen-Sitzungen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_lpr_options.fish:1 -#, fuzzy msgid "Print lpr options" -msgstr "Alle Versionen ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_lpr_printers.fish:1 -#, fuzzy msgid "Print lpr printers" -msgstr "Vollständige Datensätze ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_lsblk_columns.fish:1 -#, fuzzy -msgid "Print available lsblk columns" -msgstr "Verfügbare Liste ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_mounted.fish:1 -#, fuzzy msgid "Print mounted devices" -msgstr "Wichtige Abhängigkeiten ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_pacman_repos.fish:1 msgid "Print the repositories configured for arch's pacman package manager" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_service_names.fish:1 -#, fuzzy msgid "All services known to the system" -msgstr "Nach anderem System suchen" - -#: /tmp/fish/implicit/share/functions/__fish_print_svn_rev.fish:1 -#, fuzzy -msgid "Print svn revisions" -msgstr "PKG-Versionen ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_users.fish:1 -#, fuzzy -msgid "Print a list of local users" -msgstr "Liste laufender screen-Sitzungen ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_applications_directories.fish:1 -#, fuzzy -msgid "Print directories where desktop files are stored" -msgstr "Verzeichnisse, aber nicht deren Inhalt auflisten" - -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_desktop_file_ids.fish:1 -#, fuzzy -msgid "Print all available xdg desktop file IDs" -msgstr "Namen der verfügbaren Signale auflisten" - -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 -#, fuzzy -msgid "Print XDG mime types" -msgstr "Befehlstyp ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_modes.fish:1 -#, fuzzy -msgid "Print xrandr modes" -msgstr "Roheinträge ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_outputs.fish:1 -#, fuzzy -msgid "Print xrandr outputs" -msgstr "Wortzählung ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 -#, fuzzy -msgid "Print X windows" -msgstr "APM-Informationen ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_bookmarks.fish:1 -msgid "Lists ZFS bookmarks, if the feature is enabled" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_filesystems.fish:1 -#, fuzzy -msgid "Lists ZFS filesystems" -msgstr "Alle Dateisysteme anzeigen" +#: /tmp/fish/implicit/share/functions/__fish_print_svn_rev.fish:1 +msgid "Print svn revisions" +msgstr "" + +#: /tmp/fish/implicit/share/functions/__fish_print_users.fish:1 +msgid "Print a list of local users" +msgstr "" + +#: /tmp/fish/implicit/share/functions/__fish_print_xdg_applications_directories.fish:1 +msgid "Print directories where desktop files are stored" +msgstr "" + +#: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 +msgid "Print XDG mime types" +msgstr "" + +#: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 +msgid "Print X windows" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_zfs_snapshots.fish:1 -#, fuzzy msgid "Lists ZFS snapshots" -msgstr "Vertraute Schlüssel auflisten" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_volumes.fish:1 -#, fuzzy -msgid "Lists ZFS volumes" -msgstr "Nach Spalten auflisten" +msgstr "" #: /tmp/fish/implicit/share/functions/fish_prompt.fish:1 msgid "Write out the prompt" msgstr "Prompt ausgeben" -#: /tmp/fish/implicit/share/functions/__fish_prt_no_subcommand.fish:1 -#, fuzzy -msgid "Test if prt-get has yet to be given the command" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" - -#: /tmp/fish/implicit/share/functions/__fish_prt_ports.fish:1 -#, fuzzy -msgid "Obtain a list of ports" -msgstr "Liste laufender screen-Sitzungen ausgeben" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_package.fish:1 -#, fuzzy -msgid "Test if prt-get should have packages as potential completion" -msgstr "" -"Testen, ob der apt-Befehl Pakete zur möglichen Fertigstellung haben sollte" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_port.fish:1 -#, fuzzy -msgid "Test if prt-get should have ports as potential completion" -msgstr "" -"Testen, ob der apt-Befehl Pakete zur möglichen Fertigstellung haben sollte" - #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:1 #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:2 -#, fuzzy msgid "Show current path" -msgstr "Quellpaket anzeigen" - -#: /tmp/fish/implicit/share/functions/__fish_sgrep.fish:1 -msgid "Call grep without honoring GREP_OPTIONS settings" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_shared_key_bindings.fish:1 @@ -67669,17 +62309,11 @@ msgid "helper function that does pretty formatting on svn status" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_svn_prompt.fish:2 -#, fuzzy msgid "Prompt function for svn" -msgstr "Aktuelle Funktionen sind: " +msgstr "" #: /tmp/fish/implicit/share/functions/_fish_systemctl.fish:1 -#, fuzzy msgid "Call systemctl with some options from the current commandline" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" - -#: /tmp/fish/implicit/share/functions/__fish_test_arg.fish:1 -msgid "Test if the token under the cursor matches the specified wildcard" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_toggle_comment_commandline.fish:1 @@ -67687,14 +62321,12 @@ msgid "Comment/uncomment the current command" msgstr "" #: /tmp/fish/implicit/share/functions/fish_update_completions.fish:1 -#, fuzzy msgid "Update man-page based completions" -msgstr "Befehlsspezifische Erweiterungen bearbeiten" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_use_subcommand.fish:1 -#, fuzzy msgid "Test if a non-switch argument has been given in the current commandline" -msgstr "Test, ob an apt noch ein Unterbefehl gegeben werden muss" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_vcs_prompt.fish:1 msgid "Print the prompts for all available vcsen" @@ -67705,14 +62337,12 @@ msgid "Set cursor shape for different vi modes" msgstr "" #: /tmp/fish/implicit/share/functions/fish_vi_key_bindings.fish:1 -#, fuzzy msgid "vi-like key bindings for fish" -msgstr "Datei mit Tastaturbindungen angeben" +msgstr "" #: /tmp/fish/implicit/share/functions/funced.fish:1 -#, fuzzy msgid "Edit function definition" -msgstr "Funktionsdefinitonsblock" +msgstr "" #: /tmp/fish/implicit/share/functions/funcsave.fish:1 msgid "Save the current definition of all specified functions to file" @@ -67731,9 +62361,8 @@ msgid "Show or set the system's host name" msgstr "" #: /tmp/fish/implicit/share/functions/isatty.fish:1 -#, fuzzy msgid "Tests if a file descriptor is a tty" -msgstr "Datei-Deskriptoren beobachten" +msgstr "" #: /tmp/fish/implicit/share/functions/la.fish:1 msgid "" @@ -67742,26 +62371,22 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/ll.fish:1 -#, fuzzy msgid "List contents of directory using long format" -msgstr "Startverzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/functions/ls.fish:1 #: /tmp/fish/implicit/share/functions/ls.fish:2 #: /tmp/fish/implicit/share/functions/ls.fish:3 -#, fuzzy msgid "List contents of directory" -msgstr "Startverzeichnis festlegen" +msgstr "" #: /tmp/fish/implicit/share/functions/man.fish:1 -#, fuzzy msgid "Format and display the on-line manual pages" -msgstr "Zeigt Änderungsinformationen zu dem Paket an" +msgstr "" #: /tmp/fish/implicit/share/functions/nextd.fish:1 -#, fuzzy msgid "Move forward in the directory history" -msgstr "Auch Verzeichnisverlauf ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/N_.fish:1 msgid "No-op" @@ -67776,9 +62401,8 @@ msgid "Pop directory from the stack and cd to it" msgstr "" #: /tmp/fish/implicit/share/functions/prevd.fish:1 -#, fuzzy msgid "Move back in the directory history" -msgstr "Auch Verzeichnisverlauf ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/prompt_pwd.fish:1 msgid "Print the current working directory, shortened to fit the prompt" @@ -67791,29 +62415,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/pushd.fish:1 -#, fuzzy msgid "Push directory to stack" -msgstr "Verzeichnis nach makefile durchsuchen" +msgstr "" #: /tmp/fish/implicit/share/functions/realpath.fish:1 -#, fuzzy msgid "print the resolved path [command realpath]" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/realpath.fish:2 -#, fuzzy msgid "print the resolved path [command grealpath]" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/realpath.fish:3 -#, fuzzy msgid "return an absolute path without symlinks" -msgstr "Pfad zu absolutem Pfad ohne Symlinks konvertieren" +msgstr "" #: /tmp/fish/implicit/share/functions/seq.fish:1 -#, fuzzy msgid "Print sequences of numbers" -msgstr "Name statt Nummer ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/seq.fish:2 msgid "Fallback implementation of the seq command" @@ -67824,28 +62443,24 @@ msgid "Set an env var for csh compatibility." msgstr "" #: /tmp/fish/implicit/share/functions/suspend.fish:1 -#, fuzzy msgid "Suspend the current shell." -msgstr "Version anzeigen und beenden" +msgstr "" #: /tmp/fish/implicit/share/functions/__terlar_git_prompt.fish:1 -#, fuzzy msgid "Write out the git prompt" -msgstr "Prompt ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/trap.fish:1 msgid "Perform an action when the shell receives a signal" msgstr "" #: /tmp/fish/implicit/share/functions/type.fish:1 -#, fuzzy msgid "Print the type of a command" -msgstr "Pfad zu Befehl ausgeben" +msgstr "" #: /tmp/fish/implicit/share/functions/umask.fish:1 -#, fuzzy msgid "Set default file permission mask" -msgstr "Alle Rechte extrahieren" +msgstr "" #: /tmp/fish/implicit/share/functions/up-or-search.fish:1 msgid "" @@ -67854,18 +62469,15 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/vared.fish:1 -#, fuzzy msgid "Edit variable value" -msgstr "Verfügbare Liste ausgeben" +msgstr "" -#, fuzzy #~ msgid "%ls: --array option requires a single variable name.\n" #~ msgstr "%ls: --array option benötigt einen Variablennamen.\n" #~ msgid "Try out the new parser" #~ msgstr "Zum Testen des neuen Parsers" -#, fuzzy #~ msgid "printf: not enough arguments" #~ msgstr "printf: Nicht genug Argumente" @@ -67874,7 +62486,6 @@ msgstr "Verfügbare Liste ausgeben" #~ msgstr "" #~ "%ls: Mehrere Variablennamen in einem Aufruf angegeben (%ls und %.*ls)\n" -#, fuzzy #~ msgid "%ls: Values cannot be specfied with erase\n" #~ msgstr "%ls: Bei erase können keine Werte angegeben werden\n" @@ -67885,18 +62496,15 @@ msgstr "Verfügbare Liste ausgeben" #~ "%ls: Warnung: Universelle Gültigkeit gewählt, aber eine globale Variable " #~ "'%ls' existiert.\n" -#, fuzzy #~ msgid "string: Expected subcommand\n" #~ msgstr "string: Erwartete Unterbefehl\n" -#, fuzzy #~ msgid "string: Unknown subcommand '%ls'\n" #~ msgstr "Unbekannter Befehl '%ls'\n" #~ msgid "getopt_long() unexpectedly returned zero\n" #~ msgstr "getopt_long() gab unerwartet null zurück\n" -#, fuzzy #~ msgid "terminal_give_to_job(): Could not send job %d ('%ls') to foreground" #~ msgstr "Konnte Job %d ('%ls') nicht in den Vordergrund schicken" @@ -67911,15 +62519,12 @@ msgstr "Verfügbare Liste ausgeben" #~ "Es gibt noch aktive jobs (benutzen sie den 'jobs' Befehl um sie zu " #~ "sehen.\n" -#, fuzzy #~ msgid "funced: You must specify one function name" #~ msgstr "funced: Erwartete genau einen Funktionsnamen" -#, fuzzy #~ msgid "%s: Expected function name\\n" #~ msgstr "%s: Erwartete genau einen Funktionsnamen\\n" -#, fuzzy #~ msgid "%ls: Invalid combination of options,\\n%ls\\n" #~ msgstr "%ls: Ungültige Kombination von Optionen,\\n%ls\\n" @@ -67927,11 +62532,9 @@ msgstr "Verfügbare Liste ausgeben" #~ msgstr "" #~ "Anzahl zu überspringender Positionen muss eine positive Ganzzahl sein\\n" -#, fuzzy #~ msgid "Evaluate contents of file (deprecated, see \"source\")" #~ msgstr "Inhalt einer Datei auswerten" -#, fuzzy #~ msgid "Incomplete aspects of fish" #~ msgstr "Saloppe Einhäng-Optionen tolerieren" @@ -67953,30 +62556,23 @@ msgstr "Verfügbare Liste ausgeben" #~ msgid "Help on editor shortcuts" #~ msgstr "Hilfe zu Editor-Tastenkürzeln" -#, fuzzy #~ msgid "ignore chnages in the amount of white space" #~ msgstr "Änderung in der Anzahl von Worttrennern ignorieren" -#, fuzzy #~ msgid "Change to DIR" #~ msgstr "Wechsel zu Benutzer" -#, fuzzy #~ msgid "Show a unit" #~ msgstr "Arp-Einträge anzeigen" -#, fuzzy #~ msgid "Edit a unit" #~ msgstr "Ein Ereignis auslösen" -#, fuzzy #~ msgid "Manage abbreviations" #~ msgstr "Handbuch-Sektionen" -#, fuzzy #~ msgid "Print xdg mime applications" #~ msgstr "Alle Informationen ausgeben" -#, fuzzy #~ msgid "Perform math calculations in bc" #~ msgstr "Simulation durchführen" diff --git a/po/en.po b/po/en.po index f1474f970..ba67ee0a9 100644 --- a/po/en.po +++ b/po/en.po @@ -19,16 +19,16 @@ msgstr "" "X-Generator: Poedit 1.8.11\n" #: src/autoload.cpp:96 -#, fuzzy, c-format +#, c-format msgid "" "Could not autoload item '%ls', it is already being autoloaded. This is a " "circular dependency in the autoloading scripts, please remove it." -msgstr "Could not autoload item “%ls”, it is already being autoloaded. " +msgstr "" #: src/builtin_argparse.cpp:36 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid option spec '%ls' at char '%lc'\n" -msgstr "%ls: Invalid option spec '%ls' at char '%lc'\n" +msgstr "" #: src/builtin_argparse.cpp:129 #, c-format @@ -36,14 +36,14 @@ msgid "%ls: Mutually exclusive flags '%ls' and `%ls` seen\n" msgstr "" #: src/builtin_argparse.cpp:160 -#, fuzzy, c-format +#, c-format msgid "%ls: exclusive flag string '%ls' is not valid\n" -msgstr "%ls: Seed value “%ls” is not a valid number\n" +msgstr "" #: src/builtin_argparse.cpp:176 -#, fuzzy, c-format +#, c-format msgid "%ls: exclusive flag '%ls' is not valid\n" -msgstr "%ls: Seed value “%ls” is not a valid number\n" +msgstr "" #: src/builtin_argparse.cpp:196 #, c-format @@ -82,14 +82,14 @@ msgid "%ls: No option specs were provided\n" msgstr "" #: src/builtin_argparse.cpp:391 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid --min-args value '%ls'\n" -msgstr "%ls: Invalid index starting at “%ls”\n" +msgstr "" #: src/builtin_argparse.cpp:401 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid --max-args value '%ls'\n" -msgstr "%ls: Invalid variable name “%ls”\n" +msgstr "" #: src/builtin_bg.cpp:23 #, c-format @@ -111,14 +111,14 @@ msgid "%ls: There are no suitable jobs\n" msgstr "%ls: There are no suitable jobs\n" #: src/builtin_bg.cpp:80 src/builtin_disown.cpp:82 src/builtin_wait.cpp:147 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is not a valid job specifier\n" -msgstr "%ls: '%ls' is not a valid variable name\n" +msgstr "" #: src/builtin_bg.cpp:95 src/builtin_disown.cpp:89 src/builtin_wait.cpp:163 -#, fuzzy, c-format +#, c-format msgid "%ls: Could not find job '%d'\n" -msgstr "%s: Could not find “%d”\n" +msgstr "" #: src/builtin_bind.cpp:141 #, c-format @@ -196,29 +196,29 @@ msgid "%ls: Could not set PWD variable\n" msgstr "%ls: Could not set PWD variable\n" #: src/builtin_commandline.cpp:344 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown input function '%ls'" -msgstr "%ls: Unknown input function “%ls”" +msgstr "" #: src/builtin_complete.cpp:183 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid token '%ls'\n" -msgstr "%ls: Invalid option -- %lc\n" +msgstr "" #: src/builtin_complete.cpp:203 -#, fuzzy, c-format +#, c-format msgid "%ls: -s requires a non-empty string\n" -msgstr "%ls: Variable name can not be the empty string\n" +msgstr "" #: src/builtin_complete.cpp:211 -#, fuzzy, c-format +#, c-format msgid "%ls: -l requires a non-empty string\n" -msgstr "%ls: Variable name can not be the empty string\n" +msgstr "" #: src/builtin_complete.cpp:219 -#, fuzzy, c-format +#, c-format msgid "%ls: -o requires a non-empty string\n" -msgstr "%ls: Variable name can not be the empty string\n" +msgstr "" #: src/builtin_contains.cpp:75 #, c-format @@ -240,9 +240,9 @@ msgid "%ls: Not inside of loop\n" msgstr "%ls: Not inside of loop\n" #: src/builtin.cpp:372 -#, fuzzy, c-format +#, c-format msgid "%ls: Command not valid at an interactive prompt\n" -msgstr "%ls: Command only available in interactive sessions\n" +msgstr "" #: src/builtin.cpp:410 src/builtin.cpp:460 msgid "Test a condition" @@ -319,9 +319,8 @@ msgid "Count the number of arguments" msgstr "Count the number of arguments" #: src/builtin.cpp:430 -#, fuzzy msgid "Remove job from job list" -msgstr "Read job from file" +msgstr "" #: src/builtin.cpp:431 msgid "Print arguments" @@ -380,9 +379,8 @@ msgid "Print currently running jobs" msgstr "Print currently running jobs" #: src/builtin.cpp:445 -#, fuzzy msgid "Evaluate math expressions" -msgstr "Evaluate expression" +msgstr "" #: src/builtin.cpp:446 msgid "Negate exit status of job" @@ -492,43 +490,41 @@ msgstr "" "control\n" #: src/builtin_function.cpp:68 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown signal '%ls'" -msgstr "%ls: Unknown signal “%ls”" +msgstr "" #: src/builtin_function.cpp:113 -#, fuzzy, c-format +#, c-format msgid "%ls: Cannot find calling job for event handler" -msgstr "%ls: Cannot find calling job for event handler" +msgstr "" #: src/builtin_function.cpp:121 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid process id '%ls'" -msgstr "%ls: Invalid process id %ls" +msgstr "" #: src/builtin_function.cpp:179 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected function name" -msgstr "%ls: Expected function name" +msgstr "" #: src/builtin_function.cpp:185 -#, fuzzy, c-format +#, c-format msgid "%ls: Illegal function name '%ls'" -msgstr "%ls: Illegal function name “%ls”" +msgstr "" #: src/builtin_function.cpp:192 -#, fuzzy, c-format +#, c-format msgid "" "%ls: The name '%ls' is reserved,\n" "and can not be used as a function name" msgstr "" -"%ls: The name “%ls” is reserved,\n" -"and can not be used as a function name" #: src/builtin_function.cpp:239 -#, fuzzy, c-format +#, c-format msgid "%ls: Unexpected positional argument '%ls'" -msgstr "%s: Unexpected argument -- %s\\n" +msgstr "" #: src/builtin_functions.cpp:275 src/builtin.h:38 #, c-format @@ -546,9 +542,9 @@ msgid "%ls: Function '%ls' does not exist\n" msgstr "%ls: Function “%ls” does not exist\n" #: src/builtin_functions.cpp:307 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected exactly one function name for --details\n" -msgstr "%ls: Expected exactly one function name\n" +msgstr "" #: src/builtin_functions.cpp:342 #, c-format @@ -580,9 +576,9 @@ msgid "%ls: you cannot use any options with the %ls command\n" msgstr "" #: src/builtin_history.cpp:163 -#, fuzzy, c-format +#, c-format msgid "%ls: max value '%ls' is not a valid number\n" -msgstr "%ls: Seed value “%ls” is not a valid number\n" +msgstr "" #: src/builtin_history.cpp:261 msgid "builtin history delete only supports --exact\n" @@ -630,9 +626,9 @@ msgid "%ls: There are no jobs\n" msgstr "%ls: There are no jobs\n" #: src/builtin_math.cpp:44 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is not a valid scale value\n" -msgstr "%ls: '%ls' is not a valid variable name\n" +msgstr "" #: src/builtin_math.cpp:148 #, c-format @@ -645,14 +641,13 @@ msgid "More than %d var names in math expression." msgstr "" #: src/builtin_math.cpp:194 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid expression: %ls\n" -msgstr "%ls: Invalid process id %ls\n" +msgstr "" #: src/builtin_printf.cpp:243 -#, fuzzy msgid "Number out of range" -msgstr "Number of top servers" +msgstr "" #: src/builtin_printf.cpp:249 #, c-format @@ -709,9 +704,9 @@ msgid "%ls: You can't specify both -p and -P\n" msgstr "" #: src/builtin_realpath.cpp:44 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid path: %ls\n" -msgstr "%ls: Invalid path: %ls\n" +msgstr "" #: src/builtin_return.cpp:100 #, c-format @@ -749,9 +744,9 @@ msgid "%ls: Erase needs a variable name\n" msgstr "%ls: Erase needs a variable name\n" #: src/builtin_set.cpp:67 -#, fuzzy, c-format +#, c-format msgid "%ls: Array index out of bounds\n" -msgstr "%ls: Array index out of bounds\n" +msgstr "" #: src/builtin_set.cpp:69 #, c-format @@ -781,9 +776,9 @@ msgid "%ls: Invalid index starting at '%ls'\n" msgstr "%ls: Invalid index starting at “%ls”\n" #: src/builtin_set.cpp:537 -#, fuzzy, c-format +#, c-format msgid "$%ls: not set in %ls scope\n" -msgstr "$%ls: not set in %ls scope\n" +msgstr "" #: src/builtin_set.cpp:542 msgid "exported" @@ -804,9 +799,9 @@ msgid "$%ls[%d]: length=%d value=|%ls|\n" msgstr "" #: src/builtin_set.cpp:578 -#, fuzzy, c-format +#, c-format msgid "$%ls: invalid var name\n" -msgstr "$%ls: invalid var name\n" +msgstr "" #: src/builtin_set.cpp:584 #, c-format @@ -829,9 +824,9 @@ msgid "%ls: Error while reading file '%ls'\n" msgstr "%ls: Error while reading file “%ls”\n" #: src/builtin_status.cpp:155 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid level value '%ls'\n" -msgstr "%ls: Invalid variable name “%ls”\n" +msgstr "" #: src/builtin_status.cpp:276 msgid "This is a login shell\n" @@ -863,9 +858,8 @@ msgid "Standard input" msgstr "Standard input" #: src/builtin_status.cpp:320 -#, fuzzy msgid "Not a function" -msgstr "function" +msgstr "" #: src/builtin_string.cpp:39 #, c-format @@ -873,68 +867,68 @@ msgid "%ls: Expected argument\n" msgstr "%ls: Expected argument\n" #: src/builtin_string.cpp:160 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid escape style '%ls'\n" -msgstr "%ls: Invalid variable name “%ls”\n" +msgstr "" #: src/builtin_string.cpp:238 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid length value '%ls'\n" -msgstr "%ls: Invalid variable name “%ls”\n" +msgstr "" #: src/builtin_string.cpp:258 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid max value '%ls'\n" -msgstr "%ls: Invalid variable name “%ls”\n" +msgstr "" #: src/builtin_string.cpp:275 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid count value '%ls'\n" -msgstr "%ls: Invalid variable name “%ls”\n" +msgstr "" #: src/builtin_string.cpp:321 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid start value '%ls'\n" -msgstr "%ls: Invalid index starting at “%ls”\n" +msgstr "" #: src/builtin_string.cpp:743 -#, fuzzy, c-format +#, c-format msgid "%ls: Regular expression compile error: %ls\n" -msgstr "%ls: Regular expression compile error: %ls\n" +msgstr "" #: src/builtin_string.cpp:782 -#, fuzzy, c-format +#, c-format msgid "%ls: Regular expression match error: %ls\n" -msgstr "%ls: Regular expression match error: %ls\n" +msgstr "" #: src/builtin_string.cpp:787 -#, fuzzy, c-format +#, c-format msgid "%ls: Regular expression internal error\n" -msgstr "%ls: Regular expression internal error\n" +msgstr "" #: src/builtin_string.cpp:903 msgid "--entire and --index are mutually exclusive" msgstr "" #: src/builtin_string.cpp:1055 -#, fuzzy, c-format +#, c-format msgid "%ls: Regular expression substitute error: %ls\n" -msgstr "%ls: Regular expression substitute error: %ls\n" +msgstr "" #: src/builtin_test.cpp:608 -#, fuzzy, c-format +#, c-format msgid "invalid integer '%ls'" -msgstr "invalid precision: %ls" +msgstr "" #: src/builtin_ulimit.cpp:285 -#, fuzzy, c-format +#, c-format msgid "%ls: New limit cannot be an empty string\n" -msgstr "%ls: Variable name can not be the empty string\n" +msgstr "" #: src/builtin_ulimit.cpp:297 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid limit '%ls'\n" -msgstr "%ls: Invalid variable name “%ls”\n" +msgstr "" #: src/common.cpp:1551 msgid "Current terminal parameters have rows and/or columns set to zero." @@ -958,9 +952,9 @@ msgid "This is a bug. Break on bugreport to debug." msgstr "This is a bug. Break on bugreport to debug." #: src/common.cpp:1782 -#, fuzzy, c-format +#, c-format msgid "If you can reproduce it, please send a bug report to %s." -msgstr "If this error can be reproduced, please send a bug report to %s." +msgstr "" #: src/common.cpp:1792 msgid "empty" @@ -991,30 +985,26 @@ msgid "Could not set up terminal using the fallback terminal type '%s'." msgstr "" #: src/env.cpp:574 -#, fuzzy msgid "Could not set up terminal." -msgstr "Could not set up terminal" +msgstr "" #: src/env.cpp:576 -#, fuzzy msgid "TERM environment variable not set." -msgstr "Handle environment variables" +msgstr "" #: src/env.cpp:578 -#, fuzzy, c-format +#, c-format msgid "TERM environment variable set to '%ls'." -msgstr "TERM environment variable set to '%ls'." +msgstr "" #: src/env.cpp:579 -#, fuzzy msgid "Check that this terminal type is supported on this system." -msgstr "Check that this terminal type is supported on this system." +msgstr "" #: src/env.cpp:673 -#, fuzzy msgid "" "Could not determine current working directory. Is your locale set correctly?" -msgstr "Print the current working directory, shortened to fit the prompt" +msgstr "" #: src/env_universal_common.cpp:461 #, c-format @@ -1178,9 +1168,9 @@ msgid "Too much data emitted by command substitution so it was discarded\n" msgstr "" #: src/fish.cpp:275 src/fish_indent.cpp:419 -#, fuzzy, c-format +#, c-format msgid "Invalid value '%s' for debug-level flag" -msgstr "Invalid value “%s” for debug level switch" +msgstr "" #: src/fish.cpp:302 #, c-format @@ -1188,9 +1178,9 @@ msgid "%s, version %s\n" msgstr "%s, version %s\n" #: src/fish.cpp:316 src/fish_indent.cpp:434 -#, fuzzy, c-format +#, c-format msgid "Invalid value '%s' for debug-stack-frames flag" -msgstr "Invalid value “%s” for debug level switch" +msgstr "" #: src/fish.cpp:366 msgid "Can not use the no-execute mode when running an interactive session" @@ -1229,14 +1219,14 @@ msgid "signal #%d (%ls) received\n" msgstr "" #: src/fish_key_reader.cpp:313 -#, fuzzy, c-format +#, c-format msgid "Invalid value '%s' for debug-level flag\n" -msgstr "Invalid value “%s” for debug level switch\n" +msgstr "" #: src/fish_key_reader.cpp:327 -#, fuzzy, c-format +#, c-format msgid "Invalid value '%s' for debug-stack-frames flag\n" -msgstr "Invalid value “%s” for debug level switch\n" +msgstr "" #: src/history.cpp:146 #, c-format @@ -1244,10 +1234,10 @@ msgid "Locking the history file took too long (%.3f seconds)." msgstr "" #: src/history.cpp:1850 -#, fuzzy, c-format +#, c-format msgid "" "History session ID '%ls' is not a valid variable name. Falling back to `%ls`." -msgstr "%ls: '%ls' is not a valid variable name" +msgstr "" #: src/io.cpp:57 #, c-format @@ -1566,25 +1556,18 @@ msgid "Pop null reader block" msgstr "Pop null reader block" #: src/reader.cpp:2160 -#, fuzzy msgid "There are still jobs active:\n" -msgstr "There are stopped jobs\n" +msgstr "" #: src/reader.cpp:2161 -#, fuzzy msgid "" "\n" " PID Command\n" msgstr "" -"\n" -" Command\n" #: src/reader.cpp:2170 -#, fuzzy msgid "A second attempt to exit will terminate them.\n" msgstr "" -"There are stopped jobs. A second attempt to exit will enforce their " -"termination.\n" #: src/reader.cpp:2171 msgid "" @@ -1783,9 +1766,8 @@ msgid "Unexpected end of string, square brackets do not match" msgstr "Unexpected end of string, square brackets do not match" #: src/tokenizer.cpp:35 -#, fuzzy msgid "Unexpected end of string, incomplete escape sequence" -msgstr "Unexpected end of string, quotes are not balanced" +msgstr "" #: src/tokenizer.cpp:38 msgid "Invalid input/output redirection" @@ -1972,9 +1954,9 @@ msgid "%ls: Expected a subcommand to follow the command\n" msgstr "" #: src/builtin.h:73 -#, fuzzy, c-format +#, c-format msgid "%ls: Subcommand '%ls' is not valid\n" -msgstr "%ls: “%ls” is not a file\n" +msgstr "" #: src/builtin.h:76 #, c-format @@ -2033,19 +2015,16 @@ msgid "No matches for wildcard '%ls'. See `help expand`." msgstr "No matches for wildcard “%ls”. See `help expand`." #: src/parse_constants.h:251 -#, fuzzy msgid "'break' while not inside of loop" -msgstr "break command while not inside of loop" +msgstr "" #: src/parse_constants.h:254 -#, fuzzy msgid "'continue' while not inside of loop" -msgstr "continue command while not inside of loop" +msgstr "" #: src/parse_constants.h:257 -#, fuzzy msgid "'return' outside of function definition" -msgstr "“return” builtin command outside of function definition" +msgstr "" #: src/parse_constants.h:262 #, c-format @@ -2308,14 +2287,12 @@ msgid "Enables an existing service" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:4 -#, fuzzy msgid "Disables an existing service" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:5 -#, fuzzy msgid "Removes the specified service name from the service cache" -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:6 msgid "Forces an existing service to start" @@ -2342,14 +2319,12 @@ msgid "Prints a description of a domain or service" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:12 -#, fuzzy msgid "Prints information about the service cache" -msgstr "Print information about the environment Bundler is running under" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:13 -#, fuzzy msgid "Prints which services are disabled" -msgstr "Prints services installed" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:14 msgid "" @@ -2358,14 +2333,12 @@ msgid "" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:15 -#, fuzzy msgid "Prints port information about a process" -msgstr "Give more information during processing" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:16 -#, fuzzy msgid "Prints port information about the host" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:17 msgid "Resolves a port name from a process to an endpoint in launchd" @@ -2376,9 +2349,8 @@ msgid "Reads or modifies launchd's resource limits" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:19 -#, fuzzy msgid "Prints performance statistics for a service" -msgstr "Write package statistics to a file" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:20 msgid "" @@ -2390,18 +2362,16 @@ msgid "Modifies persistent configuration parameters for launchd domains" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:22 -#, fuzzy msgid "Dumps launchd state to stdout" -msgstr "Decompress to stdout" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:23 msgid "Dumps the jetsam properties category for all services" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:24 -#, fuzzy msgid "Initiates a system reboot of the specified type" -msgstr "Show file systems of specified type" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:25 msgid "Brings the system up from single-user mode with a console shell" @@ -2416,24 +2386,20 @@ msgid "Unloads a service or directory of services" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:28 -#, fuzzy msgid "Unloads the specified service name" -msgstr "Remove specified service" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:29 -#, fuzzy msgid "Lists information about services" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:30 -#, fuzzy msgid "Starts the specified service" -msgstr "Remove specified service" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:31 -#, fuzzy msgid "Stops the specified service if it is running" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:32 msgid "" @@ -2454,14 +2420,12 @@ msgid "Execute a program in another process' bootstrap context" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:36 -#, fuzzy msgid "Execute a program in the bootstrap context of a given user" -msgstr "Execute a script in the context of the current bundle" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:37 -#, fuzzy msgid "Submit a basic job from the command line" -msgstr "Set or get the commandline" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:38 msgid "Prints the PID of the launchd controlling the session" @@ -2472,28 +2436,24 @@ msgid "Prints the UID of the current launchd session" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:40 -#, fuzzy msgid "Prints the name of the current launchd session" -msgstr "Execute a script in the context of the current bundle" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:41 -#, fuzzy msgid "Prints a description of an error" -msgstr "Print a list of local users" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:42 msgid "Prints the launchd variant" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:43 -#, fuzzy msgid "Prints the launchd version" -msgstr "Print node's version" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:44 -#, fuzzy msgid "Prints the usage for a given subcommand" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:1 #: /tmp/fish/explicit/share/completions/mdadm.fish:2 @@ -3319,14 +3279,12 @@ msgid "All properties" msgstr "All properties" #: /tmp/fish/explicit/share/functions/abbr.fish:1 -#, fuzzy msgid "%s: Could not figure out what to do!\\n" -msgstr "%s: Could not create configuration directory\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:2 -#, fuzzy msgid "%s %s: Requires at least two arguments\\n" -msgstr "%ls: Expected at least two arguments, got %d\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:3 #: /tmp/fish/explicit/share/functions/abbr.fish:5 @@ -3357,41 +3315,6 @@ msgstr "%s %s: Abbreviation %s already exists, cannot rename %s\\n" msgid "%s %s: Unexpected argument -- '%s'\\n" msgstr "%s %s: Unexpected argument -- '%s'\\n" -#: /tmp/fish/explicit/share/functions/abbr_old.fish:1 -msgid "%s: invalid option -- %s\\n" -msgstr "%s: invalid option -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:2 -msgid "%s: %s cannot be specified along with %s\\n" -msgstr "%s: %s cannot be specified along with %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:3 -msgid "%s: option requires an argument -- %s\\n" -msgstr "%s: option requires an argument -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:4 -msgid "%s: Unexpected argument -- %s\\n" -msgstr "%s: Unexpected argument -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:5 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:8 -#, fuzzy -msgid "%s: abbreviation cannot have spaces in the key\\n" -msgstr "%s: abbreviation must have a non-empty key\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:6 -msgid "%s: abbreviation must have a value\\n" -msgstr "%s: abbreviation must have a value\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:7 -msgid "%s: abbreviation '%s' already exists, cannot rename\\n" -msgstr "%s: abbreviation '%s' already exists, cannot rename\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:9 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:10 -msgid "%s: no such abbreviation '%s'\\n" -msgstr "%s: no such abbreviation “%s”\\n" - #: /tmp/fish/explicit/share/functions/alias.fish:1 msgid "%s: Name cannot be empty\\n" msgstr "%s: Name cannot be empty\\n" @@ -3438,17 +3361,8 @@ msgid "Ignoring the output of your editor since its exit status was non-zero" msgstr "" #: /tmp/fish/explicit/share/functions/edit_command_buffer.fish:4 -#, fuzzy msgid "or the file was empty" -msgstr "Treat absent files as empty" - -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:2 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:3 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:4 -#: /tmp/fish/explicit/share/functions/__fish_complete_unrar.fish:1 -msgid "%s\\tArchived file\\n" -msgstr "%s\\tArchived file\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:3 msgid "Achieved compression ratio" @@ -3613,9 +3527,8 @@ msgid "Package" msgstr "Package" #: /tmp/fish/explicit/share/functions/fish_update_completions.fish:1 -#, fuzzy msgid "python executable not found" -msgstr "Do not execute remote command" +msgstr "" #: /tmp/fish/explicit/share/functions/funced.fish:2 msgid "Editing failed or was cancelled" @@ -3671,18 +3584,16 @@ msgid "" msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:5 -#, fuzzy msgid "Command history cleared!" -msgstr "Command to run" +msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:6 msgid "You did not say 'yes' so I will not clear your command history\\n" msgstr "" #: /tmp/fish/explicit/share/functions/isatty.fish:1 -#, fuzzy msgid "%s: Too many arguments" -msgstr "%s: Too many arguments" +msgstr "" #: /tmp/fish/explicit/share/functions/nextd.fish:1 #: /tmp/fish/explicit/share/functions/prevd.fish:1 @@ -3694,9 +3605,8 @@ msgid "No open utility found. Try installing \"xdg-open\" or \"xdg-utils\"." msgstr "" #: /tmp/fish/explicit/share/functions/popd.fish:1 -#, fuzzy msgid "%s: Directory stack is empty…\\n" -msgstr "%s: Directory stack is empty...\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/psub.fish:1 msgid "%s: Not inside of command substitution" @@ -3802,9 +3712,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/a2enconf.fish:1 #: /tmp/fish/implicit/share/completions/a2enmod.fish:1 #: /tmp/fish/implicit/share/completions/a2ensite.fish:1 -#, fuzzy msgid "Don't show informative messages" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/a2disconf.fish:2 #: /tmp/fish/implicit/share/completions/a2dismod.fish:2 @@ -3813,24 +3722,20 @@ msgid "Purge all traces of module" msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:1 -#, fuzzy msgid "Add abbreviation" -msgstr "Manage abbreviations" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:2 -#, fuzzy msgid "Erase abbreviation" -msgstr "Manage abbreviations" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:3 -#, fuzzy msgid "Print all abbreviations" -msgstr "Manage abbreviations" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:4 -#, fuzzy msgid "Print all abbreviation names" -msgstr "Print all names" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:5 #: /tmp/fish/implicit/share/completions/help.fish:11 @@ -3841,24 +3746,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:1 #: /tmp/fish/implicit/share/completions/grub-install.fish:32 -#, fuzzy msgid "Show usage" -msgstr "Show source package" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:2 -#, fuzzy msgid "Use an alternative configuration file" -msgstr "Creates a configuration profile" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:3 -#, fuzzy msgid "Use an alternative addressbook file" -msgstr "Use pattern from file" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:4 -#, fuzzy msgid "Make a query for mutt" -msgstr "Base directory for output" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:5 msgid "Read email message from stdin and add the sender" @@ -3873,42 +3774,35 @@ msgid "Convert address book files" msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:8 -#, fuzzy msgid "Input file format" -msgstr "Extra full format" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:9 -#, fuzzy msgid "Output file format" -msgstr "Output file" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:10 -#, fuzzy msgid "Input file (default: stdin)" -msgstr "Open file in default application" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:11 -#, fuzzy msgid "Output file (default: stdout)" -msgstr "Print file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:12 -#, fuzzy msgid "Print available formats" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/acat.fish:1 #: /tmp/fish/implicit/share/completions/als.fish:1 #: /tmp/fish/implicit/share/completions/aunpack.fish:1 -#, fuzzy msgid "Archive content" -msgstr "List archive contents" +msgstr "" #: /tmp/fish/implicit/share/completions/accept.fish:1 #: /tmp/fish/implicit/share/completions/cupsaccept.fish:1 -#, fuzzy msgid "Accept reason" -msgstr "Accept protocols" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:1 #: /tmp/fish/implicit/share/completions/grep.fish:23 @@ -3917,93 +3811,76 @@ msgid "Ignore case" msgstr "Ignore case" #: /tmp/fish/implicit/share/completions/ack.fish:2 -#, fuzzy msgid "Ignore case when pattern contains no uppercase" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:3 -#, fuzzy msgid "Don't ignore case" -msgstr "Don't recurse" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:4 -#, fuzzy msgid "Invert match" -msgstr "Invert the sense of matching" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:5 -#, fuzzy msgid "Match only whole words" -msgstr "Only whole matching words" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:6 -#, fuzzy msgid "Quote all metacharacters" -msgstr "Use backslash escaped characters" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:7 -#, fuzzy msgid "Only print line(s) NUM of each file" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:8 -#, fuzzy msgid "Only print filenames containing matches" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:9 -#, fuzzy msgid "Only print filenames with no matches" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:10 msgid "Output the evaluation of Perl expression for each line" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:11 -#, fuzzy msgid "Output the part of line matching pattern" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:12 -#, fuzzy msgid "Print all lines" -msgstr "Print all names" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:13 -#, fuzzy msgid "Specify pattern explicitly" -msgstr "Specify gem trust policy" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:14 -#, fuzzy msgid "Stop searching in each file after NUM matches" -msgstr "Stop reading after NUM matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:15 -#, fuzzy msgid "Stop searching after first match" -msgstr "Stop reading after NUM matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:16 -#, fuzzy msgid "Print the filename for each match" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:17 -#, fuzzy msgid "Suppress the prefixing filename on output" -msgstr "Suppress printing filename" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:18 -#, fuzzy msgid "Show number of lines matching per file" -msgstr "See who is watching a file" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:19 -#, fuzzy msgid "Show column number of first match" -msgstr "Show commandname of each job" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:20 msgid "Don't show column number of first match" @@ -4029,19 +3906,16 @@ msgid "Print null byte as separator between filenames" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:25 -#, fuzzy msgid "Suppress error messages about file errors" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:26 -#, fuzzy msgid "Pipes all ack output through command" -msgstr "Pipe output through specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:27 -#, fuzzy msgid "Do not send output through a pager" -msgstr "Pass the output through “pr”" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:28 msgid "Prints a filename heading above file's results" @@ -4052,9 +3926,8 @@ msgid "Don't print a filename heading above file's results" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:30 -#, fuzzy msgid "Print a break between results" -msgstr "Wait time between retries" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:31 msgid "Don't print a break between results" @@ -4069,23 +3942,20 @@ msgid "No filename heading and no line breaks between results" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:34 -#, fuzzy msgid "Highlight the matching text" -msgstr "Hilight one search target" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:35 msgid "Don't highlight the matching text" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:36 -#, fuzzy msgid "Set the color for filenames" -msgstr "Print only rcs filename" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:37 -#, fuzzy msgid "Set the color for matches" -msgstr "Check for patches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:38 msgid "Set the color for line numbers" @@ -4096,14 +3966,12 @@ msgid "Flush output immediately" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:40 -#, fuzzy msgid "Only print the files selected" -msgstr "Only print unique lines" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:41 -#, fuzzy msgid "Only select files matching pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:42 msgid "Sort the found files lexically" @@ -4114,38 +3982,32 @@ msgid "Show which types each file has" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:44 -#, fuzzy msgid "Read the list of files to search from file" -msgstr "Read the log message from file." +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:45 msgid "Read the list of files to search from STDIN" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:46 -#, fuzzy msgid "Ignore directory" -msgstr "Include directory" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:47 -#, fuzzy msgid "Don't ignore directory" -msgstr "Change directory" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:48 -#, fuzzy msgid "Add filter for ignoring files" -msgstr "Name directory for working files" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:49 -#, fuzzy msgid "Recurse into subdirectories" -msgstr "Recurse into subdir" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:50 -#, fuzzy msgid "No descending into subdirectories" -msgstr "Add contents of subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:51 #: /tmp/fish/implicit/share/completions/file.fish:7 @@ -4164,84 +4026,70 @@ msgid "Don't follow symlinks" msgstr "Don't follow symlinks" #: /tmp/fish/implicit/share/completions/ack.fish:53 -#, fuzzy msgid "Include only recognized files" -msgstr "Include only the following names" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:54 -#, fuzzy msgid "Include only X files" -msgstr "Include only the following names" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:55 msgid "Replaces definition of type" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:56 -#, fuzzy msgid "Specify definition of type" -msgstr "Specify destination email" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:57 -#, fuzzy msgid "Removes all filters associated with type" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:58 -#, fuzzy msgid "Ignores environment variables and ackrc files" -msgstr "Ignore environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:59 -#, fuzzy msgid "Specifies location of ackrc file" -msgstr "Specifiy config file" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:60 -#, fuzzy msgid "Ignore default definitions ack includes" -msgstr "Ignore externals definitions" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:61 -#, fuzzy msgid "Outputs default ackrc" -msgstr "Output default action for mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:62 #: /tmp/fish/implicit/share/completions/udisksctl.fish:1 #: /tmp/fish/implicit/share/completions/udisksctl.fish:2 -#, fuzzy msgid "Shows help" -msgstr "Show hidden" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:63 -#, fuzzy msgid "Shows all known types" -msgstr "Show all containers" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:64 -#, fuzzy msgid "Dump information on which options are loaded" -msgstr "Show information which is stored by darcs" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:65 -#, fuzzy msgid "Forces ack to treat input as a pipe" -msgstr "Expect to receive input from a pipe" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:66 msgid "Forces ack to treat input as tty" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:67 -#, fuzzy msgid "Shows man page" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:68 -#, fuzzy msgid "Displays version and copyright" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:69 msgid "Bill the Cat" @@ -4252,34 +4100,28 @@ msgid "The warning admiral" msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:1 -#, fuzzy msgid "Show battery information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:2 -#, fuzzy msgid "Suppress battery information" -msgstr "Suppress informational output" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:3 -#, fuzzy msgid "Show thermal information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:4 -#, fuzzy msgid "Suppress thermal information" -msgstr "Suppress informational output" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:5 -#, fuzzy msgid "Show ac adapter information" -msgstr "Show apropos information" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:6 -#, fuzzy msgid "Suppress ac-adapter information" -msgstr "Suppress informational output" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:7 msgid "Show every device, overrides above options" @@ -4448,9 +4290,8 @@ msgstr "Display help and exit" #: /tmp/fish/implicit/share/completions/timeout.fish:5 #: /tmp/fish/implicit/share/completions/watch.fish:12 #: /tmp/fish/implicit/share/completions/xgettext.fish:39 -#, fuzzy msgid "Output version information and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:1 msgid "Test if adb has yet to be given the subcommand" @@ -4477,29 +4318,24 @@ msgid "Communicate with emulator" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:7 -#, fuzzy msgid "Connect to device" -msgstr "Action for devices" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:8 -#, fuzzy msgid "Disconnect from device" -msgstr "Action for devices" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:9 -#, fuzzy msgid "List all connected devices" -msgstr "Print mounted devices" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:10 -#, fuzzy msgid "Copy file to device" -msgstr "Copy module file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:11 -#, fuzzy msgid "Copy file from device" -msgstr "Extract file from file" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:12 msgid "Copy host->device only if changed" @@ -4518,52 +4354,44 @@ msgid "View device log" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:16 -#, fuzzy msgid "Install package" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:17 -#, fuzzy msgid "Uninstall package" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:18 msgid "List PIDs of processes hosting a JDWP transport" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:19 -#, fuzzy msgid "Port forwarding" -msgstr "Dynamic port forwarding" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:20 -#, fuzzy msgid "Return bugreport information" -msgstr "Don't print group information" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:21 -#, fuzzy msgid "Perform device backup" -msgstr "Perform delinking" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:22 -#, fuzzy msgid "Restore device from backup" -msgstr "Force full backup" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:23 -#, fuzzy msgid "Show adb version" -msgstr "Sort by version" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:24 msgid "Show adb help" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:25 -#, fuzzy msgid "Block until device is online" -msgstr "Block device" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:26 msgid "Ensure that there is a server running" @@ -4582,24 +4410,20 @@ msgid "Reboots the device, optionally into the bootloader or recovery program" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:30 -#, fuzzy msgid "Prints state of the device" -msgstr "Print mounted devices" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:31 -#, fuzzy msgid "Prints serial number of the device" -msgstr "Print inode number of files" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:32 -#, fuzzy msgid "Prints device path" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:33 -#, fuzzy msgid "Continuously print the device status" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:34 msgid "Restart the adbd daemon with root permissions" @@ -4618,9 +4442,8 @@ msgid "Run PPP over USB" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:38 -#, fuzzy msgid "Sideloads the given package" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:39 msgid "Kick current connection from host side and make it reconnect." @@ -4631,18 +4454,16 @@ msgid "Forward-lock the app" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:41 -#, fuzzy msgid "Reinstall the app keeping its data" -msgstr "Reinstall the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:42 msgid "Install on SD card instead of internal storage" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:43 -#, fuzzy msgid "Algorithm name" -msgstr "MAC algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:44 msgid "Hex-encoded key" @@ -4653,23 +4474,20 @@ msgid "Hex-encoded iv" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:46 -#, fuzzy msgid "Keep the data and cache directories" -msgstr "Do not create a hierarchy of directories" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:47 msgid "Also list device qualifiers" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:48 -#, fuzzy msgid "Device to disconnect" -msgstr "Device section" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:49 -#, fuzzy msgid "File to write backup data to" -msgstr "Edit the patch bundle description" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:50 msgid "Enable backup of the .apks themselves" @@ -4697,14 +4515,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:56 -#, fuzzy msgid "Back up all installed applications" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:57 -#, fuzzy msgid "Include system applications in -all (default)" -msgstr "Install documentation files (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:58 msgid "Exclude system applications in -all" @@ -4715,9 +4531,8 @@ msgid "Package(s) to backup" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:60 -#, fuzzy msgid "List all forward socket connections" -msgstr "List or remove functions" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:61 msgid "Fails the forward if local is already forwarded" @@ -4728,9 +4543,8 @@ msgid "Remove a specific forward socket connection" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:63 -#, fuzzy msgid "Remove all forward socket connections" -msgstr "Remotely forwarded ports" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:64 msgid "Kick current connection from device side and make it reconnect." @@ -4761,9 +4575,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:5 -#, fuzzy msgid "Set the gecos field for the new entry generated" -msgstr "Set the pre-gap size for the next track" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:6 msgid "" @@ -4778,14 +4591,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:8 -#, fuzzy msgid "Display brief instructions" -msgstr "Display compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:9 -#, fuzzy msgid "Use specified directory as the user's home directory" -msgstr "Use specified key as the key to sign with" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:10 msgid "" @@ -4800,9 +4611,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:12 -#, fuzzy msgid "Do not create the home directory, even if it doesni't exist" -msgstr "Do not create a hierarchy of directories" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:13 msgid "Suppress informational messages, only show warnings and errors" @@ -4817,9 +4627,8 @@ msgid "Create a system user or group" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:16 -#, fuzzy msgid "Force the new userid to be the given number" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:17 msgid "" @@ -4838,9 +4647,8 @@ msgid "Add new user to extra groups defined in the configuration file" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:20 -#, fuzzy msgid "Display version and copyright information" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:1 msgid "Save current driver state" @@ -4859,18 +4667,16 @@ msgid "Try to restore control elements as much as possible" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:5 -#, fuzzy msgid "Ignore missing soundcards" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:6 msgid "Do not restore mismatching control elements" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:7 -#, fuzzy msgid "Do not init if restore fails" -msgstr "Do not print differences for deleted files" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:8 msgid "Initialize all devices to a default state" @@ -4889,44 +4695,36 @@ msgid "Notify daemon to do an operation" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:12 -#, fuzzy msgid "Monitor events" -msgstr "Monitor user" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:13 -#, fuzzy msgid "Show available flags and commands" -msgstr "Print available lsblk columns" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:14 -#, fuzzy msgid "Make output a bit more verbose" -msgstr "Make output a valid ed script" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:15 -#, fuzzy msgid "Print alsactl version number" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:16 -#, fuzzy msgid "Select the configuration file to use" -msgstr "Clear list of configuration files to read" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:17 -#, fuzzy msgid "Use a lock file" -msgstr "Use 1B block size" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:18 -#, fuzzy msgid "Do not use a lock file" -msgstr "Do not check files" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:19 -#, fuzzy msgid "Select the state lock file path" -msgstr "Select a range of patches" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:20 msgid "Save restore and init state to this file" @@ -4937,33 +4735,28 @@ msgid "Remove runstate file at first" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:22 -#, fuzzy msgid "Set environment variable" -msgstr "Handle environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:23 -#, fuzzy msgid "The configuration file for init" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:24 msgid "The store period in seconds for the daemon command" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:25 -#, fuzzy msgid "The PID file to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:26 -#, fuzzy msgid "Run the task in background" -msgstr "Run job in background" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:27 -#, fuzzy msgid "Use syslog for messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:28 msgid "Set the process priority (see 'man nice')" @@ -4989,86 +4782,72 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:2 #: /tmp/fish/implicit/share/completions/mocha.fish:1 #: /tmp/fish/implicit/share/completions/modinfo.fish:11 -#: /tmp/fish/implicit/share/completions/netcat.fish:7 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:1 #: /tmp/fish/implicit/share/completions/poweroff.fish:1 #: /tmp/fish/implicit/share/completions/terraform.fish:2 #: /tmp/fish/implicit/share/completions/yast2.fish:2 -#, fuzzy msgid "Show help" -msgstr "Show hidden" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:2 -#, fuzzy msgid "Soundcard number or id to use" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:3 -#, fuzzy msgid "Mixer device to control" -msgstr "Division control" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:4 -#, fuzzy msgid "Starting view mode" -msgstr "Start in Hebrew mode" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:5 -#, fuzzy msgid "Toggle the using of colors" -msgstr "Toggle printing of remote hostname" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:6 msgid "Mixer abstraction level" msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:1 -#, fuzzy msgid "this help" -msgstr "Print help" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:2 -#, fuzzy msgid "select the card" -msgstr "Select by command" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:3 msgid "select the device, default 'default'" msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:4 -#, fuzzy msgid "debug mode" -msgstr "Debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:5 msgid "do not perform range checking" msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:6 -#, fuzzy msgid "print version of this program" -msgstr "Specify version of gem to rdoc" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:7 -#, fuzzy msgid "be quiet" -msgstr "Run quietly" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:8 -#, fuzzy msgid "show also inactive controls" -msgstr "Font for active icons" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:9 -#, fuzzy msgid "select abstraction level" -msgstr "Select an action" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:10 -#, fuzzy msgid "Read and execute commands from stdin sequentially" -msgstr "execute commands from file, then exit" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:1 #: /tmp/fish/implicit/share/completions/compare.fish:1 @@ -5252,9 +5031,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:21 #: /tmp/fish/implicit/share/completions/display.fish:23 -#, fuzzy msgid "Displayed image cannot be modified" -msgstr "Display $ at end of line" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:22 #: /tmp/fish/implicit/share/completions/compare.fish:18 @@ -5313,9 +5091,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:50 #: /tmp/fish/implicit/share/completions/montage.fish:40 #: /tmp/fish/implicit/share/completions/stream.fish:14 -#, fuzzy msgid "Monitor progress " -msgstr "Monitor user" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:28 msgid "Seconds to pause before reanimating" @@ -5350,9 +5127,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:60 #: /tmp/fish/implicit/share/completions/montage.fish:47 #: /tmp/fish/implicit/share/completions/stream.fish:16 -#, fuzzy msgid "Suppress all warning messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:32 #: /tmp/fish/implicit/share/completions/compare.fish:28 @@ -5464,9 +5240,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:80 #: /tmp/fish/implicit/share/completions/montage.fish:68 #: /tmp/fish/implicit/share/completions/stream.fish:27 -#, fuzzy msgid "Print detailed information about the image" -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:42 #: /tmp/fish/implicit/share/completions/display.fish:49 @@ -5514,9 +5289,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:8 #: /tmp/fish/implicit/share/completions/montage.fish:23 #: /tmp/fish/implicit/share/completions/stream.fish:8 -#, fuzzy msgid "Extract area from image [geometry]" -msgstr "Extract file from file" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:48 #: /tmp/fish/implicit/share/completions/composite.fish:60 @@ -5581,17 +5355,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:56 #: /tmp/fish/implicit/share/completions/display.fish:88 #: /tmp/fish/implicit/share/completions/montage.fish:92 -#, fuzzy msgid "Merge a sequence of images" -msgstr "Print sequences of numbers" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:57 #: /tmp/fish/implicit/share/completions/display.fish:89 #: /tmp/fish/implicit/share/completions/mogrify.fish:33 #: /tmp/fish/implicit/share/completions/montage.fish:77 -#, fuzzy msgid "Flatten a sequence of images" -msgstr "Print sequences of numbers" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:58 #: /tmp/fish/implicit/share/completions/compare.fish:40 @@ -5602,9 +5374,8 @@ msgstr "Print sequences of numbers" #: /tmp/fish/implicit/share/completions/import.fish:65 #: /tmp/fish/implicit/share/completions/montage.fish:100 #: /tmp/fish/implicit/share/completions/stream.fish:29 -#, fuzzy msgid "Display copious debugging information [events]" -msgstr "Display detailed information of gem(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:59 #: /tmp/fish/implicit/share/completions/compare.fish:41 @@ -5615,9 +5386,8 @@ msgstr "Display detailed information of gem(s)" #: /tmp/fish/implicit/share/completions/import.fish:53 #: /tmp/fish/implicit/share/completions/montage.fish:101 #: /tmp/fish/implicit/share/completions/stream.fish:30 -#, fuzzy msgid "Print program options" -msgstr "Print lpr options" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:60 #: /tmp/fish/implicit/share/completions/compare.fish:42 @@ -5693,9 +5463,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:11 #: /tmp/fish/implicit/share/completions/xz.fish:36 #: /tmp/fish/implicit/share/completions/yaourt.fish:12 -#, fuzzy msgid "Display help" -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:4 #: /tmp/fish/implicit/share/completions/base64.fish:5 @@ -5703,50 +5472,41 @@ msgstr "Display a help page" #: /tmp/fish/implicit/share/completions/lscpu.fish:9 #: /tmp/fish/implicit/share/completions/netctl.fish:2 #: /tmp/fish/implicit/share/completions/xz.fish:38 -#, fuzzy msgid "Display version" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:5 -#, fuzzy msgid "Enable colored output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:6 #: /tmp/fish/implicit/share/completions/magento.fish:25 -#, fuzzy msgid "Disable colored output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:7 -#, fuzzy msgid "Modify or list configuration items" -msgstr "Specify directory with configuration files" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:8 -#, fuzzy msgid "Set config item" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:9 -#, fuzzy msgid "Get config item" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:10 -#, fuzzy msgid "Delete config item" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:11 -#, fuzzy msgid "List config items" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:12 -#, fuzzy msgid "Edit config items" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:13 msgid "Reduce duplication in node_modules in current directory" @@ -5775,9 +5535,8 @@ msgid "Open a package's homepage in the default browser" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:19 -#, fuzzy msgid "Print URL instead of opening" -msgstr "Link files instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:20 msgid "Output featured packages as JSON array" @@ -5786,37 +5545,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:21 #: /tmp/fish/implicit/share/completions/apm.fish:45 #: /tmp/fish/implicit/share/completions/apm.fish:73 -#, fuzzy msgid "Only list themes" -msgstr "Lists the keys" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:22 msgid "Only list packages/themes compatible with specified Atom version" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:23 -#, fuzzy msgid "Generates code scaffolding for theme or package" -msgstr "Generate a .deb file for an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:24 msgid "Path to the package or theme template" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:25 -#, fuzzy msgid "Generates a basic package" -msgstr "Generate man page" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:26 -#, fuzzy msgid "Generates a basic theme" -msgstr "Generate a simple Gemfile" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:27 -#, fuzzy msgid "Generates a basic language package" -msgstr "Generate a .deb file for an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:28 msgid "Convert TextMate bundle/theme" @@ -5832,25 +5586,21 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:31 #: /tmp/fish/implicit/share/completions/apm.fish:52 -#, fuzzy msgid "Show verbose debug information" -msgstr "Show apropos information" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:32 -#, fuzzy msgid "Specify text file containing packages to install" -msgstr "Specify version of gem to install" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:33 -#, fuzzy msgid "Do not install dev dependencies" -msgstr "Do not install any required dependent gems" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:34 #: /tmp/fish/implicit/share/completions/apm.fish:51 -#, fuzzy msgid "Only install packages/themes compatible with specified Atom version" -msgstr "list all packages with specified useflag" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:35 msgid "Set npm log level to silent" @@ -5869,51 +5619,44 @@ msgid "Link to ~/.atom/dev/packages" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:39 -#, fuzzy msgid "List all installed and bundled packages" -msgstr "List all available packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:40 msgid "Print packages one per line with no formatting" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:41 -#, fuzzy msgid "Include dev packages" -msgstr "Installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:42 -#, fuzzy msgid "Only list installed packages/themes" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:43 msgid "Output all packages as a JSON object" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:44 -#, fuzzy msgid "Include linked packages" -msgstr "Installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:46 -#, fuzzy msgid "Only list packages" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:47 msgid "Save Atom API token to keychain" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:48 -#, fuzzy msgid "Specify API token" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:49 -#, fuzzy msgid "Upgrade out of date packages" -msgstr "Upgrade source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:50 msgid "Output outdated packages as JSON array" @@ -5924,56 +5667,48 @@ msgid "Confirm before installing updates" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:54 -#, fuzzy msgid "List but don't install the outdated packages" -msgstr "List installed source package\\(s\\)" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:55 -#, fuzzy msgid "Publish new version of package in current working directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:56 msgid "Semantic version category for new version" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:57 -#, fuzzy msgid "Specify a tag to publish" -msgstr "Specify man path" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:58 -#, fuzzy msgid "Specify a new name for the package" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:59 msgid "Rebuild modules installed in node_modules in current working directory" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:60 -#, fuzzy msgid "Rebuild module cache for installed packages" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:61 -#, fuzzy msgid "Search for Atom packages/themes in the atom.io registry" -msgstr "Search for packages matching a pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:62 msgid "Output matching packages as JSON array" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:63 -#, fuzzy msgid "Search only non-theme packages" -msgstr "Search in all man pages" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:64 -#, fuzzy msgid "Search only themes" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:65 msgid "View information about package/theme in the atom.io registry" @@ -5984,46 +5719,40 @@ msgid "Output as JSON array" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:67 -#, fuzzy msgid "Show latest version compatible with specified Atom version" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:68 msgid "Star the given packages on https://atom.io" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:69 -#, fuzzy msgid "Star all packages in ~/.atom/packages" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:70 -#, fuzzy msgid "List or install starred Atom packages and themes" -msgstr "List installed source package\\(s\\)" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:71 msgid "Output packages as JSON array" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:72 -#, fuzzy msgid "Install the starred packages" -msgstr "Install the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:74 msgid "GitHub username to show starred packages for" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:75 -#, fuzzy msgid "Runs the package's tests contained within the spec directory" -msgstr "Download the packages to the current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:76 -#, fuzzy msgid "Path to atom command" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:77 msgid "Delete the symlink in ~/.atom/packages for the package" @@ -6038,9 +5767,8 @@ msgid "Remove published package or version from the atom.io registry" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:82 -#, fuzzy msgid "Do not prompt for confirmation" -msgstr "Do not prompt for an expiration time" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:83 msgid "Unstar given packages on https://atom.io" @@ -6327,9 +6055,8 @@ msgstr "Assume yes to all questions" #: /tmp/fish/implicit/share/completions/apt-build.fish:24 #: /tmp/fish/implicit/share/completions/apt-get.fish:35 -#, fuzzy msgid "Use purge instead of remove" -msgstr "Use label instead of filename in output" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:25 msgid "Do not run update" @@ -6575,15 +6302,13 @@ msgstr "Test if apt has yet to be given the subcommand" #: /tmp/fish/implicit/share/completions/apt.fish:3 #: /tmp/fish/implicit/share/completions/snap.fish:2 -#, fuzzy msgid "Test if given subcommand is used" -msgstr "Test if bundle has been given no subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/apt.fish:7 #: /tmp/fish/implicit/share/completions/git.fish:4 -#, fuzzy msgid "Set a configuration option" -msgstr "Set a config option" +msgstr "" #: /tmp/fish/implicit/share/completions/apt.fish:8 #: /tmp/fish/implicit/share/completions/hugo.fish:1 @@ -6595,9 +6320,8 @@ msgid "Configuration file" msgstr "Configuration file" #: /tmp/fish/implicit/share/completions/apt.fish:9 -#, fuzzy msgid "Target release" -msgstr "Target line" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:2 msgid "Generate package from source" @@ -6674,9 +6398,8 @@ msgid "Install one or more packages" msgstr "Install one or more packages" #: /tmp/fish/implicit/share/completions/apt-get.fish:10 -#, fuzzy msgid "Display changelog of one or more packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:11 msgid "Remove and purge one or more packages" @@ -6711,9 +6434,8 @@ msgid "Remove automatically installed packages" msgstr "Remove automatically installed packages" #: /tmp/fish/implicit/share/completions/apt-get.fish:19 -#, fuzzy msgid "Do not install recommended packages" -msgstr "Reinstall each of the named packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:20 #: /tmp/fish/implicit/share/completions/aptitude.fish:28 @@ -6734,32 +6456,28 @@ msgid "Disable downloading packages" msgstr "Disable downloading packages" #: /tmp/fish/implicit/share/completions/apt-get.fish:25 -#, fuzzy msgid "Perform a simulation" -msgstr "Perform a distribution upgrade" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:26 msgid "Automatic yes to prompts" msgstr "Automatic yes to prompts" #: /tmp/fish/implicit/share/completions/apt-get.fish:27 -#, fuzzy msgid "Show upgraded packages" -msgstr "Do not upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:28 -#, fuzzy msgid "Show full versions for packages" -msgstr "Show full information for specified packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:29 msgid "Compile source packages" msgstr "Compile source packages" #: /tmp/fish/implicit/share/completions/apt-get.fish:30 -#, fuzzy msgid "Install recommended packages" -msgstr "Install source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:31 msgid "Ignore package Holds" @@ -6774,14 +6492,12 @@ msgid "Force yes" msgstr "Force yes" #: /tmp/fish/implicit/share/completions/apt-get.fish:34 -#, fuzzy msgid "Print the URIs" -msgstr "Print help" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:36 -#, fuzzy msgid "Reinstall packages" -msgstr "Reinstall the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:37 msgid "Erase obsolete files" @@ -6850,9 +6566,8 @@ msgid "Remove all downloaded .deb files from the package cache directory" msgstr "Remove all downloaded .deb files from the package cache directory" #: /tmp/fish/implicit/share/completions/aptitude.fish:7 -#, fuzzy msgid "Forget all internal information about what packages are 'new'" -msgstr "Forget all internal information about what packages are \\new" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:8 msgid "Cancel all scheduled actions on all packages" @@ -6931,28 +6646,24 @@ msgid "Display brief summary of the available commands and options" msgstr "Display brief summary of the available commands and options" #: /tmp/fish/implicit/share/completions/aptitude.fish:27 -#, fuzzy msgid "Show explanations of automatic installations and removals" -msgstr "Hold a package, prevent automatic installation or removal" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:30 -#, fuzzy msgid "Purge packages that are not required by any installed package" -msgstr "Query packages that are triggered by the specified packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:31 msgid "Always display a prompt" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:32 -#, fuzzy msgid "Do not treat recommendations as dependencies" -msgstr "Don't ask for extra dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:33 -#, fuzzy msgid "Treat recommendations as dependencies" -msgstr "Correct broken dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:34 msgid "Don't perform the actions. Just show them" @@ -6967,51 +6678,44 @@ msgid "Suppress incremental progress indicators" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:37 -#, fuzzy msgid "Show which versions of packages will be installed" -msgstr "Specify version of gem to install" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:38 -#, fuzzy msgid "Display extra information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:39 -#, fuzzy msgid "Display the version of aptitude and compile information" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:40 msgid "Start up the visual interface and display its preview screen" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:41 -#, fuzzy msgid "Assume the answer yes for all question prompts" -msgstr "Assume yes to all questions" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:42 msgid "Show how much disk space will be used or freed" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:43 -#, fuzzy msgid "Specify the format to be used by the search command" -msgstr "Specify command to run before this darcs command" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:44 msgid "Set the release from which packages should be installed" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:45 -#, fuzzy msgid "Specify the order for the output from the search command" -msgstr "Specify command to run after this darcs command" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:46 -#, fuzzy msgid "Set a configuration file option directly" -msgstr "Read user config files from named directory" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:47 msgid "Specify the display width for the output from the search command" @@ -7111,9 +6815,8 @@ msgid "Assume no to all questions" msgstr "Assume no to all questions" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:22 -#, fuzzy msgid "List bugs from packages" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:23 msgid "List bugs in rss format" @@ -7145,9 +6848,8 @@ msgid "Avoid changelogs from db in named file" msgstr "Avoid changelogs from db in named file" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:9 -#, fuzzy msgid "Select display" -msgstr "X server display" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:10 msgid "Insert header" @@ -7195,9 +6897,8 @@ msgid "Write package statistics to a file" msgstr "Write package statistics to a file" #: /tmp/fish/implicit/share/completions/apt-move.fish:1 -#, fuzzy msgid "Generate master file" -msgstr "Generate release file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:2 msgid "Alias for 'get'" @@ -7240,9 +6941,8 @@ msgid "Sync packages installed" msgstr "Sync packages installed" #: /tmp/fish/implicit/share/completions/apt-move.fish:13 -#, fuzzy msgid "Move file specified on commandline" -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:14 msgid "List packages that may serve as input to mirrorbin or mirrorsource" @@ -7313,14 +7013,12 @@ msgid "List packages depending on" msgstr "List packages depending on" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:6 -#, fuzzy msgid "Comma-separated list of dependency types to follow recursively" -msgstr "Comma-separated list of dependancy types to follow recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:7 -#, fuzzy msgid "Comma-separated list of dependency types to show" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:8 msgid "" @@ -7341,9 +7039,8 @@ msgid "Probe a CD" msgstr "Probe a CD" #: /tmp/fish/implicit/share/completions/apt-setup.fish:2 -#, fuzzy msgid "Run in non-interactive mode" -msgstr "Run in noninteractive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-source.fish:2 #: /tmp/fish/implicit/share/completions/apt-show-source.fish:3 @@ -7412,18 +7109,16 @@ msgid "Servers in the areas" msgstr "Servers in the areas" #: /tmp/fish/implicit/share/completions/apt-spy.fish:4 -#, fuzzy msgid "Conf file" -msgstr "Configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:5 msgid "Finish after number of servers" msgstr "Finish after number of servers" #: /tmp/fish/implicit/share/completions/apt-spy.fish:6 -#, fuzzy msgid "File to grab servers" -msgstr "File for server response" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:7 msgid "File as input" @@ -7434,9 +7129,8 @@ msgid "Mirror-list file" msgstr "Mirror-list file" #: /tmp/fish/implicit/share/completions/apt-spy.fish:9 -#, fuzzy msgid "Output sources.list file" -msgstr "Set sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:10 msgid "Use proxy server" @@ -7567,9 +7261,8 @@ msgstr "Select an action" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:5 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:5 -#, fuzzy msgid "List of packages to install" -msgstr "Sync packages installed" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:6 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:6 @@ -7594,79 +7287,65 @@ msgid "Reject protocols" msgstr "Reject protocols" #: /tmp/fish/implicit/share/completions/arc.fish:1 -#, fuzzy msgid "Debugging command" -msgstr "Debugger command" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:2 #: /tmp/fish/implicit/share/completions/arc.fish:4 -#, fuzzy msgid "Don't use color or style for output" -msgstr "Don't use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:3 -#, fuzzy msgid "Always use fromatting" -msgstr "Always reformat" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:5 -#, fuzzy msgid "Specify which libraies to load" -msgstr "Specify which mailbox to load" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:6 -#, fuzzy msgid "Specify the Conduit URI" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:7 -#, fuzzy msgid "Specify the Conduit token" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:8 -#, fuzzy msgid "Force a version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:9 -#, fuzzy msgid "Sets the timeout" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:10 -#, fuzzy msgid "Sets a config" -msgstr "Set a config option" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:11 -#, fuzzy msgid "Skip the working copy configuration file" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:12 -#, fuzzy msgid "Use provided file instead of ~/.arcrc" -msgstr "Use this config file instead of default" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:13 -#, fuzzy msgid "Implements shell completion" -msgstr "Do not use file completion" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:14 msgid "Current term in the argument list being completed" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:15 -#, fuzzy msgid "Reads an arc configuration option" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:16 -#, fuzzy msgid "Show detailed information about options" -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:17 msgid "Download a file to local disk" @@ -7677,9 +7356,8 @@ msgid "Save the file with a specific name rather than the default" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:19 -#, fuzzy msgid "Write file to stdout instead of to disk" -msgstr "Link files instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:20 msgid "List your open Differential revisions" @@ -7694,14 +7372,12 @@ msgid "Override configured lint engine for this project" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:23 -#, fuzzy msgid "Apply patches suggested by lint to the working copy" -msgstr "Apply a unidiff patch to the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:24 -#, fuzzy msgid "Set minimum message severity" -msgstr "Set severity" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:25 #: /tmp/fish/implicit/share/completions/arc.fish:176 @@ -7709,14 +7385,12 @@ msgid "Never apply patches suggested by lint" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:26 -#, fuzzy msgid "Lint changes since a specific revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:27 -#, fuzzy msgid "Output the linter results to a file" -msgstr "Output rss-data to file" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:28 msgid "Show all lint warnings, not just those on changed lines" @@ -7728,9 +7402,8 @@ msgid "When linting git repositories, amend HEAD with all patches" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:30 -#, fuzzy msgid "Lint all files in the project" -msgstr "Treat all files as text" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:31 msgid "Specify how results will be displayed" @@ -7754,9 +7427,8 @@ msgid "In the first form, list objects you've flagged" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:36 -#, fuzzy msgid "Edit the flag on an object" -msgstr "Edit the long comment by default" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:37 msgid "Set the color of a flag" @@ -7767,14 +7439,12 @@ msgid "Delete the flag on an object" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:39 -#, fuzzy msgid "Set the note on a flag" -msgstr "Set the terminal color" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:40 -#, fuzzy msgid "Export the local changeset to a file" -msgstr "Write package statistics to a file" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:41 msgid "Export change as a unified patch" @@ -7798,9 +7468,8 @@ msgid "Export from Differential diff" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:46 -#, fuzzy msgid "Export from a Differential revision" -msgstr "Export tagged revisions." +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:47 msgid "Open a file or object in your web browser" @@ -7831,14 +7500,12 @@ msgid "After creating the task, open it in a web browser" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:54 -#, fuzzy msgid "what they do and which versions are installed" -msgstr "display the path where gems are installed" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:55 -#, fuzzy msgid "Search for linters" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:56 msgid "Show detailed information, including options" @@ -7853,24 +7520,20 @@ msgid "Stop tracking work in Phrequent" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:59 -#, fuzzy msgid "A note to attach to the tracked time" -msgstr "IP to report to the tracker" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:60 -#, fuzzy msgid "Create an alias" -msgstr "Create archive" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:61 -#, fuzzy msgid "Sets an arc configuration option" -msgstr "Set a config option" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:62 -#, fuzzy msgid "Set a local config value instead of a user one" -msgstr "Use this config file instead of default" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:63 msgid "Start tracking work in Phrequent" @@ -7885,9 +7548,8 @@ msgid "Provide a comment with your status change" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:66 -#, fuzzy msgid "Show available status options and exit" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:67 msgid "Publish an accepted revision after review" @@ -7910,9 +7572,8 @@ msgid "When updating the feature branch, use rebase instead of merge" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:72 -#, fuzzy msgid "Use squash strategy" -msgstr "Use fast setting" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:73 msgid "Keep the feature branch" @@ -7936,18 +7597,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:78 #: /tmp/fish/implicit/share/completions/arc.fish:86 -#, fuzzy msgid "Use the message from a specific revision" -msgstr "Update the working copy to a different URL" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:79 msgid "Show which commits will be selected" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:80 -#, fuzzy msgid "Print base commit only and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:81 #: /tmp/fish/implicit/share/completions/arc.fish:173 @@ -7955,9 +7614,8 @@ msgid "Additional rules for determining base revision" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:82 -#, fuzzy msgid "Specify the end of the commit range to select" -msgstr "Set the end of file string to eof-str" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:83 msgid "Show committed and abandoned revisions" @@ -7965,109 +7623,92 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:84 #: /tmp/fish/implicit/share/completions/arc.fish:114 -#, fuzzy msgid "Alias for arc feature" -msgstr "Alias for atrm" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:85 -#, fuzzy msgid "Amend the working copy" -msgstr "Print the working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:87 -#, fuzzy msgid "Show the amended commit message" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:88 -#, fuzzy msgid "Upgrade arcanist and libphutil to the latest versions" -msgstr "Update dependencies to their latest versions" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:89 -#, fuzzy msgid "Shows the help" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:90 -#, fuzzy msgid "Print detailed information about each command" -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:91 msgid "Share and grab text using the Paste application" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:92 -#, fuzzy msgid "Language for syntax highlighting" -msgstr "No search highlighting" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:93 -#, fuzzy msgid "Output in JSON format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:94 -#, fuzzy msgid "Title for the paste" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:95 msgid "Commit a revision which has been accepted by a reviewer" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:96 -#, fuzzy msgid "Commit a specific revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:97 msgid "Show the command which would be issued" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:98 -#, fuzzy msgid "Apply changes to the working copy" -msgstr "Apply a unidiff patch to the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:99 -#, fuzzy msgid "Do not run any sanity checks" -msgstr "Do not run update" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:101 -#, fuzzy msgid "Do not commit the changes" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:102 -#, fuzzy msgid "Update the local working copy before applying the patch" -msgstr "Update the working copy to a different URL." +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:103 msgid "Apply changes from a git patch file or unified patch file" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:104 -#, fuzzy msgid "Apply changes from an arc bundlej" -msgstr "Apply patches (from an email bundle) to the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:105 -#, fuzzy msgid "Do not apply dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:106 msgid "Apply changes from a Differential diff" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:107 -#, fuzzy msgid "Do not create a branch" -msgstr "Do not write mtab" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:108 msgid "Apply changes from a Differential revision" @@ -8090,28 +7731,24 @@ msgid "Output upload information in JSON format" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:113 -#, fuzzy msgid "Mark the file as temporary" -msgstr "Use file as terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:115 msgid "There's only one way to find out" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:116 -#, fuzzy msgid "Show blame for the lines you changed" -msgstr "Show help for the fish shell" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:117 -#, fuzzy msgid "Cover changes since a specific revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:118 -#, fuzzy msgid "Close a revision" -msgstr "Unlock a revision" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:119 msgid "Do not print a success message" @@ -8151,9 +7788,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:128 #: /tmp/fish/implicit/share/completions/arc.fish:140 -#, fuzzy msgid "Specify the output format" -msgstr "Specify output format" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:129 msgid "Include closed and abandoned revisions" @@ -8164,9 +7800,8 @@ msgid "Sort branches by status instead of time" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:131 -#, fuzzy msgid "Run unit tests that cover specified paths" -msgstr "Run unit tests for gem" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:132 msgid "Override configured unit engine for this project" @@ -8177,43 +7812,37 @@ msgid "Show a detailed coverage report on the CLI" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:134 -#, fuzzy msgid "Record a copy of the test results on the specified build target" -msgstr "Cache test results in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:135 -#, fuzzy msgid "Use uglier formatting" -msgstr "Use unified format" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:136 msgid "Run unit tests covering changes since a specific revision" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:137 -#, fuzzy msgid "Run every test" -msgstr "Reverse results" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:138 msgid "Report results in JSON format" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:139 -#, fuzzy msgid "Always enable coverage information" -msgstr "Always reformat" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:141 #: /tmp/fish/implicit/share/completions/arc.fish:184 -#, fuzzy msgid "Always disable coverage information" -msgstr "Only display Ruby directive information" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:142 -#, fuzzy msgid "Backouts on a previous commit" -msgstr "Execute command if previous command failed" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:143 msgid "Make a raw Conduit method call" @@ -8224,9 +7853,8 @@ msgid "Generate a Differential diff or revision from local changes" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:145 -#, fuzzy msgid "Generate diff by executing a specified command" -msgstr "Interactive mode after executing commands" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:146 msgid "Attempt to convert non UTF-8 hunks into specified encoding" @@ -8241,33 +7869,28 @@ msgid "When creating a revision, add reviewers" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:149 -#, fuzzy msgid "Do not copy changes to the staging area" -msgstr "Do not actually change anything" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:150 -#, fuzzy msgid "Read diff from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:151 -#, fuzzy msgid "Suppress warning about uncommitted changes" -msgstr "Suppress the warning about “using insecure memory”" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:152 msgid "Read revision information from file" msgstr "Read revision information from file" #: /tmp/fish/implicit/share/completions/arc.fish:153 -#, fuzzy msgid "Do not run lint" -msgstr "Do not run update" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:154 -#, fuzzy msgid "Use the specified message when updating a revision" -msgstr "Use specified message digest algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:155 msgid "Create or update a revision without requesting a code review" @@ -8278,14 +7901,12 @@ msgid "After creating a diff or revision, open it in a web browser" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:157 -#, fuzzy msgid "Always create a new revision" -msgstr "Force new revision" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:158 -#, fuzzy msgid "Disable lint cache" -msgstr "Disable server-side cache" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:159 msgid "Read revision information from a specific commit" @@ -8296,9 +7917,8 @@ msgid "Only generate a diff, without running lint, unit tests, or other" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:161 -#, fuzzy msgid "Do not upload binaries" -msgstr "Do not load init files" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:162 msgid "only create a diff" @@ -8309,19 +7929,16 @@ msgid "Apply patches suggested by lint" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:165 -#, fuzzy msgid "Specify the end of the commit range" -msgstr "Specify the subject of the message" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:166 -#, fuzzy msgid "When creating a revision, try to use the working copy commit" -msgstr "Bring changes from the repository into the working copy." +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:167 -#, fuzzy msgid "Create a diff with a few lines of context." -msgstr "Print NUM lines of context" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:168 msgid "Require excuse for lint advice in addition to lint warnings and errors" @@ -8332,9 +7949,8 @@ msgid "Emit machine-readable JSON" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:170 -#, fuzzy msgid "Always update a specific revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:171 msgid "Ignore unsound test failures without prompting" @@ -8345,43 +7961,36 @@ msgid "Provide a prepared in advance excuse for any lints/tests" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:174 -#, fuzzy msgid "Never amend commits in the working copy with lint patches" -msgstr "Save changes in the working copy to the repository as a patch" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:175 msgid "Automatically add all unstaged and uncommitted" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:177 -#, fuzzy msgid "Edit revision information" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:178 -#, fuzzy msgid "Do not run unit tests" -msgstr "Do not run update" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:179 -#, fuzzy msgid "Raise all lint warnings" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:181 -#, fuzzy msgid "Only run lint and unit tests" -msgstr "Only print duplicates" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:182 -#, fuzzy msgid "Skip checks for untracked files in the working copy" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:183 -#, fuzzy msgid "Display only new lint messages" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:185 msgid "Create or update a libphutil library" @@ -8408,14 +8017,12 @@ msgid "Force the library map to be updated" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:191 -#, fuzzy msgid "Set the library name" -msgstr "Set server name" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:192 -#, fuzzy msgid "Shows the current version of arcanist" -msgstr "Show the log messages for a set of revision(s) and/or file(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/arp.fish:2 msgid "Numerical address" @@ -8450,42 +8057,36 @@ msgid "Take addr from filename, default /etc/ethers" msgstr "Take addr from filename, default /etc/ethers" #: /tmp/fish/implicit/share/completions/as.fish:1 -#, fuzzy msgid "Omit false conditionals" -msgstr "Test a condition" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:2 -#, fuzzy msgid "Omit debugging directives" -msgstr "Omit debian version" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:3 -#, fuzzy msgid "Include general information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:4 msgid "Include high-level source" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:5 -#, fuzzy msgid "Include assembly" -msgstr "Include path" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:6 msgid "Include macro expansions" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:7 -#, fuzzy msgid "Omit forms processing" -msgstr "Alter default keyword processing" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:8 -#, fuzzy msgid "Include symbols" -msgstr "Include empty filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:9 msgid "Initially turn on alternate macro syntax" @@ -8504,14 +8105,12 @@ msgid "Produce assembler debugging messages" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:13 -#, fuzzy msgid "Remap debug information" -msgstr "List inode information" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:14 -#, fuzzy msgid "Redefine symbols" -msgstr "Redefine variable" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:15 msgid "Require executable stack for this object" @@ -8538,14 +8137,12 @@ msgid "Skip whitespace and comment preprocessing" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:21 -#, fuzzy msgid "Generate debugging information" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:22 -#, fuzzy msgid "Generate STABS debugging information" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:23 msgid "Generate STABS debug info with GNU extensions" @@ -8564,19 +8161,16 @@ msgid "Set the hash table size close" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:27 -#, fuzzy msgid "Show help message and exit" -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:28 -#, fuzzy msgid "Show target specific options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:29 -#, fuzzy msgid "Add DIR to search list for .include directives" -msgstr "Replace include directories" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:30 msgid "Don't warn about signed overflow" @@ -8595,33 +8189,28 @@ msgid "Assemble in MRI compatibility mode" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:34 -#, fuzzy msgid "Write dependency information in given file" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:35 -#, fuzzy msgid "Do not pad the end of sections to alignment boundaries" -msgstr "Do not add the default keyrings to the list of keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:36 -#, fuzzy msgid "Set object-file output file name" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:37 -#, fuzzy msgid "Fold data section into text section" -msgstr "Floating point exception" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:38 msgid "Prefer smaller memory use" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:39 -#, fuzzy msgid "Print various measured statistics from execution" -msgstr "Print out the previously obtained statistics from the file systems" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:40 msgid "Strip local absolute symbols" @@ -8632,73 +8221,62 @@ msgid "Use same format as native assembler when possible" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:42 -#, fuzzy msgid "Print assembler version number and exit" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:43 #: /tmp/fish/implicit/share/completions/gunzip.fish:8 #: /tmp/fish/implicit/share/completions/gzip.fish:8 -#, fuzzy msgid "Suppress warnings" -msgstr "Force warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:44 -#, fuzzy msgid "Don't suppress warnings" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:45 -#, fuzzy msgid "Treat warnings as errors" -msgstr "Only output warnings and errors" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:46 msgid "Generate object file even after errors" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:47 -#, fuzzy msgid "Read option from given file" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:48 -#, fuzzy msgid "Print assembler version number" -msgstr "Print line number" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:49 msgid "Don't optimize code alignment" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:50 -#, fuzzy msgid "Quieten some warnings" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:51 -#, fuzzy msgid "Generate 32 bits code" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:52 -#, fuzzy msgid "Generate 64 bits code" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:53 -#, fuzzy msgid "Generate x32 code" -msgstr "Generate man page" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:54 msgid "Encode SSE instructions with VEX prefix" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:55 -#, fuzzy msgid "Check SSE instructions" -msgstr "Check all generations" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:56 msgid "Check operand combinations for validity" @@ -8721,14 +8299,12 @@ msgid "Encode EVEX instructions with specific EVEX.RC" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:61 -#, fuzzy msgid "Use specfied mnemonic" -msgstr "Use specified queue" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:62 -#, fuzzy msgid "Use specfied syntax" -msgstr "Use specified queue" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:63 msgid "Support pseudo index registers" @@ -8751,14 +8327,12 @@ msgid "Disable branch optimization for shared code" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:68 -#, fuzzy msgid "Strip all lock prefixes" -msgstr "Small block size" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:70 -#, fuzzy msgid "Generate relax relocations" -msgstr "Generate release file" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:71 msgid "Accept only AMD64 ISA" @@ -8773,18 +8347,16 @@ msgid "Optimize for given CPU" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:1 -#, fuzzy msgid "Checkout package" -msgstr "Check for patches" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:2 msgid "Show the full history of the target, with file diffs" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:3 -#, fuzzy msgid "Put the source files in current directory" -msgstr "Extract files to current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:4 msgid "Collect garbage" @@ -8795,46 +8367,40 @@ msgid "Report approximate disk usage" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:7 -#, fuzzy msgid "List all known packages" -msgstr "Install new package" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:8 msgid "List the architectures the targets are available for" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:9 -#, fuzzy msgid "List locally tracked packages" -msgstr "List all available packages" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:10 msgid "List repos the targets exist in" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:11 -#, fuzzy msgid "Show revision history of the target" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:12 -#, fuzzy msgid "Show condensed revision history" -msgstr "Show differences between revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:13 msgid "Show the target's PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:14 -#, fuzzy msgid "Update given targets" -msgstr "Update interval" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:15 -#, fuzzy msgid "Remove target from local repository" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/atd.fish:1 msgid "Limiting load factor" @@ -8885,23 +8451,20 @@ msgid "Print the jobs listed" msgstr "Print the jobs listed" #: /tmp/fish/implicit/share/completions/atom.fish:1 -#, fuzzy msgid "Run in development mode." -msgstr "Run in login mode" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:2 msgid "Keep the browser process in the foreground." msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:3 -#, fuzzy msgid "Print usage message." -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:4 -#, fuzzy msgid "Log all output to file." -msgstr "Log input to file" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:5 msgid "Open a new window." @@ -8930,9 +8493,8 @@ msgid "Run the specified specs and exit with error code on failures." msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:11 -#, fuzzy msgid "Print the version." -msgstr "Print node's version" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:12 msgid "Wait for window to be closed before returning." @@ -8943,34 +8505,28 @@ msgid "Manage file archives of various types" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:2 -#, fuzzy msgid "list files in archive (als)" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:3 -#, fuzzy msgid "extract files from archive (aunpack)" -msgstr "Extract from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:4 -#, fuzzy msgid "extract archive to specified directory" -msgstr "Restrict wildcards to specified directory" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:5 -#, fuzzy msgid "create archive (apack)" -msgstr "Create archive" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:6 -#, fuzzy msgid "extract file to standard out (acat)" -msgstr "Print file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:7 -#, fuzzy msgid "generate a diff between two archives (adiff)" -msgstr "Create a diff between two versions of the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:8 msgid "repack archives to a different format (arepack)" @@ -8985,9 +8541,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tee.fish:3 #: /tmp/fish/implicit/share/completions/tr.fish:5 #: /tmp/fish/implicit/share/completions/unexpand.fish:5 -#, fuzzy msgid "display this help and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:10 #: /tmp/fish/implicit/share/completions/dd.fish:2 @@ -9002,14 +8557,12 @@ msgstr "Display help and exit" #: /tmp/fish/implicit/share/completions/tee.fish:4 #: /tmp/fish/implicit/share/completions/tr.fish:6 #: /tmp/fish/implicit/share/completions/unexpand.fish:6 -#, fuzzy msgid "output version information and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:11 -#, fuzzy msgid "execute command above for each file specified" -msgstr "execute commands from file, then exit" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:12 msgid "override archive format (see below)" @@ -9024,66 +8577,56 @@ msgid "always create subdirectory when extracting" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:15 -#, fuzzy msgid "allow overwriting of local files" -msgstr "Build new local files" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:16 -#, fuzzy msgid "decrease verbosity level by one" -msgstr "Output verbosity level" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:17 -#, fuzzy msgid "increase verbosity level by one" -msgstr "Increment the misc debug level by one" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:18 msgid "specify verbosity (0, 1 or 2)" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:19 -#, fuzzy msgid "send output through pager" -msgstr "Pass the output through “pr”" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:20 msgid "filenames from standard in are null-byte separated" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:21 -#, fuzzy msgid "explain what is being done by atool" -msgstr "Explain what is done" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:22 msgid "simulation mode - no filesystem changes are made" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:23 -#, fuzzy msgid "override a configuration option (KEY=VALUE)" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:24 -#, fuzzy msgid "load configuration defaults from file" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:1 -#, fuzzy msgid "Synchronize AUR packages" -msgstr "Show held packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:2 -#, fuzzy msgid "Save and restore package state" -msgstr "Clean source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:3 -#, fuzzy msgid "Package cache actions" -msgstr "Manage abbreviations" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:4 #: /tmp/fish/implicit/share/completions/pacaur.fish:1 @@ -9092,23 +8635,20 @@ msgstr "Manage abbreviations" #: /tmp/fish/implicit/share/completions/pacman.fish:3 #: /tmp/fish/implicit/share/completions/yaourt.fish:1 #: /tmp/fish/implicit/share/completions/yaourt.fish:4 -#, fuzzy msgid "Modify the package database" -msgstr "display the package version" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:5 msgid "Pacman log actions" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:6 -#, fuzzy msgid "Build packages from ABS" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:7 -#, fuzzy msgid "Operate on orphan packages" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:8 #: /tmp/fish/implicit/share/completions/pacaur.fish:2 @@ -9117,55 +8657,48 @@ msgstr "Update list of packages" #: /tmp/fish/implicit/share/completions/pacman.fish:4 #: /tmp/fish/implicit/share/completions/yaourt.fish:2 #: /tmp/fish/implicit/share/completions/yaourt.fish:5 -#, fuzzy msgid "Query the package database" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:9 #: /tmp/fish/implicit/share/completions/pacaur.fish:6 #: /tmp/fish/implicit/share/completions/pacman.fish:5 #: /tmp/fish/implicit/share/completions/yaourt.fish:6 -#, fuzzy msgid "Remove packages from the system" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:10 #: /tmp/fish/implicit/share/completions/pacaur.fish:7 #: /tmp/fish/implicit/share/completions/pacman.fish:6 #: /tmp/fish/implicit/share/completions/yaourt.fish:7 -#, fuzzy msgid "Synchronize packages" -msgstr "Show held packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:11 #: /tmp/fish/implicit/share/completions/pacaur.fish:8 #: /tmp/fish/implicit/share/completions/pacman.fish:7 #: /tmp/fish/implicit/share/completions/yaourt.fish:8 -#, fuzzy msgid "Check dependencies" -msgstr "Correct broken dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:12 #: /tmp/fish/implicit/share/completions/pacaur.fish:9 #: /tmp/fish/implicit/share/completions/pacman.fish:8 #: /tmp/fish/implicit/share/completions/yaourt.fish:9 -#, fuzzy msgid "Upgrade or add a local package" -msgstr "Upgrade source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:13 msgid "Show settings while running" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:14 -#, fuzzy msgid "Do not use powerpill" -msgstr "Do not use gcc wrapper" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:15 -#, fuzzy msgid "Show available languages" -msgstr "List available updates" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:16 msgid "View pacman.conf" @@ -9191,58 +8724,51 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:23 #: /tmp/fish/implicit/share/completions/pacman.fish:14 #: /tmp/fish/implicit/share/completions/yaourt.fish:20 -#, fuzzy msgid "Output more status messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:22 #: /tmp/fish/implicit/share/completions/pacaur.fish:24 #: /tmp/fish/implicit/share/completions/pacman.fish:15 #: /tmp/fish/implicit/share/completions/yaourt.fish:21 -#, fuzzy msgid "Alternate architecture" -msgstr "Create archive" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:23 #: /tmp/fish/implicit/share/completions/pacaur.fish:25 #: /tmp/fish/implicit/share/completions/pacman.fish:16 #: /tmp/fish/implicit/share/completions/yaourt.fish:22 -#, fuzzy msgid "Alternative package cache location" -msgstr "Auto-gen package cache" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:24 #: /tmp/fish/implicit/share/completions/pacaur.fish:26 #: /tmp/fish/implicit/share/completions/pacman.fish:17 #: /tmp/fish/implicit/share/completions/tmux.fish:12 #: /tmp/fish/implicit/share/completions/yaourt.fish:23 -#, fuzzy msgid "Alternate config file" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:25 #: /tmp/fish/implicit/share/completions/pacaur.fish:27 #: /tmp/fish/implicit/share/completions/pacman.fish:18 #: /tmp/fish/implicit/share/completions/yaourt.fish:24 -#, fuzzy msgid "Display debug messages" -msgstr "Display debug info" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:26 #: /tmp/fish/implicit/share/completions/pacaur.fish:28 #: /tmp/fish/implicit/share/completions/pacman.fish:19 #: /tmp/fish/implicit/share/completions/yaourt.fish:25 -#, fuzzy msgid "GPG directory to verify signatures" -msgstr "Options for verifying signatures" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:27 #: /tmp/fish/implicit/share/completions/pacaur.fish:30 #: /tmp/fish/implicit/share/completions/pacman.fish:21 #: /tmp/fish/implicit/share/completions/yaourt.fish:27 -#, fuzzy msgid "Specify alternative log file" -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:28 #: /tmp/fish/implicit/share/completions/pacaur.fish:31 @@ -9255,9 +8781,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:45 #: /tmp/fish/implicit/share/completions/pacman.fish:23 #: /tmp/fish/implicit/share/completions/yaourt.fish:37 -#, fuzzy msgid "Skip [all] dependency checks" -msgstr "Don't do a dependency check" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:30 #: /tmp/fish/implicit/share/completions/pacaur.fish:46 @@ -9270,9 +8795,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:48 #: /tmp/fish/implicit/share/completions/pacman.fish:26 #: /tmp/fish/implicit/share/completions/yaourt.fish:40 -#, fuzzy msgid "Do not execute install script" -msgstr "Don't execute post scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:33 #: /tmp/fish/implicit/share/completions/pacaur.fish:49 @@ -9285,9 +8809,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:50 #: /tmp/fish/implicit/share/completions/pacman.fish:28 #: /tmp/fish/implicit/share/completions/yaourt.fish:42 -#, fuzzy msgid "Specify printf-like format" -msgstr "Specify output format" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:35 #: /tmp/fish/implicit/share/completions/pacaur.fish:51 @@ -9306,9 +8829,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacman.fish:63 #: /tmp/fish/implicit/share/completions/yaourt.fish:44 #: /tmp/fish/implicit/share/completions/yaourt.fish:92 -#, fuzzy msgid "Mark PACKAGE as explicitly installed" -msgstr "Mark packages as manually installed" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:37 #: /tmp/fish/implicit/share/completions/pacaur.fish:53 @@ -9335,9 +8857,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:56 #: /tmp/fish/implicit/share/completions/pacman.fish:34 #: /tmp/fish/implicit/share/completions/yaourt.fish:48 -#, fuzzy msgid "Do not reinstall up-to-date targets" -msgstr "Do not run update" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:41 #: /tmp/fish/implicit/share/completions/pacaur.fish:57 @@ -9350,17 +8871,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:58 #: /tmp/fish/implicit/share/completions/pacman.fish:36 #: /tmp/fish/implicit/share/completions/yaourt.fish:50 -#, fuzzy msgid "Display all packages in GROUP" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:43 #: /tmp/fish/implicit/share/completions/pacaur.fish:59 #: /tmp/fish/implicit/share/completions/pacman.fish:37 #: /tmp/fish/implicit/share/completions/yaourt.fish:51 -#, fuzzy msgid "Display information on PACKAGE" -msgstr "Display information related to merges" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:44 #: /tmp/fish/implicit/share/completions/aura.fish:53 @@ -9370,31 +8889,27 @@ msgstr "Display information related to merges" #: /tmp/fish/implicit/share/completions/pacman.fish:73 #: /tmp/fish/implicit/share/completions/yaourt.fish:52 #: /tmp/fish/implicit/share/completions/yaourt.fish:102 -#, fuzzy msgid "Show less information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:45 #: /tmp/fish/implicit/share/completions/pacaur.fish:61 #: /tmp/fish/implicit/share/completions/pacman.fish:39 #: /tmp/fish/implicit/share/completions/yaourt.fish:53 -#, fuzzy msgid "Search packages for regexp" -msgstr "Search packagename only" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:46 msgid "Remove packages only needed during installation" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:47 -#, fuzzy msgid "View package dependencies" -msgstr "Verify integrity of package dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:48 -#, fuzzy msgid "View package information" -msgstr "Show package info" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:49 msgid "Show PKGBUILD diffs" @@ -9405,63 +8920,52 @@ msgid "View the packages's PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:51 -#, fuzzy msgid "Show makepkg output" -msgstr "Show help about options" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:52 -#, fuzzy msgid "Build dependencies from ABS" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:54 -#, fuzzy msgid "Search AUR by string matching" -msgstr "Search only files matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:55 -#, fuzzy msgid "Upgrade all installed AUR packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:56 -#, fuzzy msgid "Download the source tarball" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:57 -#, fuzzy msgid "Ignore given comma-separated packages" -msgstr "Ignore non-authenticated packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:58 -#, fuzzy msgid "Specify a build location" -msgstr "Specify debugging options" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:59 -#, fuzzy msgid "User to build as" -msgstr "Use to build" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:60 msgid "Run customizepkg before build" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:61 -#, fuzzy msgid "Include -git/-svn/etc packages" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:62 -#, fuzzy msgid "Prompt for PKGBUILD editing" -msgstr "Prompt for an expiration time" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:63 -#, fuzzy msgid "Ignore architecture checking" -msgstr "Ignore chunks when checking integrity" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:64 msgid "Sort alphabetically" @@ -9484,25 +8988,21 @@ msgid "Restores a record kept with -B" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:69 -#, fuzzy msgid "Backup to directory" -msgstr "Target directory" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:70 -#, fuzzy msgid "Save this many versions" -msgstr "Sort by version" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:71 #: /tmp/fish/implicit/share/completions/aura.fish:73 -#, fuzzy msgid "Search via regex" -msgstr "Pattern is a regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:72 -#, fuzzy msgid "Show package history" -msgstr "Show package info" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:74 msgid "Search ABS by regex" @@ -9522,14 +9022,12 @@ msgid "Download fresh copy of the package list" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:77 -#, fuzzy msgid "Sync the given to local ABS tree" -msgstr "Move packages to local tree" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:79 -#, fuzzy msgid "Uninstall orphan packages" -msgstr "Reinstall the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:80 #: /tmp/fish/implicit/share/completions/pacaur.fish:62 @@ -9542,17 +9040,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:63 #: /tmp/fish/implicit/share/completions/pacman.fish:41 #: /tmp/fish/implicit/share/completions/yaourt.fish:60 -#, fuzzy msgid "List only non-explicit packages (dependencies)" -msgstr "Verify integrity of package dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:82 #: /tmp/fish/implicit/share/completions/pacaur.fish:64 #: /tmp/fish/implicit/share/completions/pacman.fish:42 #: /tmp/fish/implicit/share/completions/yaourt.fish:61 -#, fuzzy msgid "List only explicitly installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:83 #: /tmp/fish/implicit/share/completions/pacaur.fish:65 @@ -9565,25 +9061,22 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:66 #: /tmp/fish/implicit/share/completions/pacman.fish:44 #: /tmp/fish/implicit/share/completions/yaourt.fish:63 -#, fuzzy msgid "List all files owned by PACKAGE" -msgstr "list files owned by package" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:85 #: /tmp/fish/implicit/share/completions/pacaur.fish:67 #: /tmp/fish/implicit/share/completions/pacman.fish:45 #: /tmp/fish/implicit/share/completions/yaourt.fish:64 -#, fuzzy msgid "List all packages not in the database" -msgstr "list all packages matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:86 #: /tmp/fish/implicit/share/completions/pacaur.fish:68 #: /tmp/fish/implicit/share/completions/pacman.fish:46 #: /tmp/fish/implicit/share/completions/yaourt.fish:65 -#, fuzzy msgid "Search for the package that owns FILE" -msgstr "Search for packages matching a pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:87 #: /tmp/fish/implicit/share/completions/pacaur.fish:69 @@ -9596,33 +9089,29 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:70 #: /tmp/fish/implicit/share/completions/pacman.fish:48 #: /tmp/fish/implicit/share/completions/yaourt.fish:67 -#, fuzzy msgid "List only unrequired packages" -msgstr "Print only upgradeable packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:89 #: /tmp/fish/implicit/share/completions/pacaur.fish:71 #: /tmp/fish/implicit/share/completions/pacman.fish:49 #: /tmp/fish/implicit/share/completions/yaourt.fish:68 -#, fuzzy msgid "List only out-of-date packages" -msgstr "Print only upgradeable packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:91 #: /tmp/fish/implicit/share/completions/pacaur.fish:73 #: /tmp/fish/implicit/share/completions/pacman.fish:51 #: /tmp/fish/implicit/share/completions/yaourt.fish:72 -#, fuzzy msgid "Also remove packages depending on PACKAGE" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:92 #: /tmp/fish/implicit/share/completions/pacaur.fish:74 #: /tmp/fish/implicit/share/completions/pacman.fish:52 #: /tmp/fish/implicit/share/completions/yaourt.fish:73 -#, fuzzy msgid "Ignore file backup designations" -msgstr "Ignore externals definitions" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:93 #: /tmp/fish/implicit/share/completions/pacaur.fish:75 @@ -9642,33 +9131,29 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:78 #: /tmp/fish/implicit/share/completions/pacman.fish:56 #: /tmp/fish/implicit/share/completions/yaourt.fish:77 -#, fuzzy msgid "Remove [all] packages from cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:97 #: /tmp/fish/implicit/share/completions/pacaur.fish:79 #: /tmp/fish/implicit/share/completions/pacman.fish:57 #: /tmp/fish/implicit/share/completions/yaourt.fish:78 -#, fuzzy msgid "List all packages in REPOSITORY" -msgstr "list all packages owning file(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:98 #: /tmp/fish/implicit/share/completions/pacaur.fish:80 #: /tmp/fish/implicit/share/completions/pacman.fish:58 #: /tmp/fish/implicit/share/completions/yaourt.fish:79 -#, fuzzy msgid "Upgrade all packages that are out of date" -msgstr "Upgrade installed packages to their most recent version" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:99 #: /tmp/fish/implicit/share/completions/pacaur.fish:82 #: /tmp/fish/implicit/share/completions/pacman.fish:60 #: /tmp/fish/implicit/share/completions/yaourt.fish:81 -#, fuzzy msgid "Only download the target packages" -msgstr "Disable downloading packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:101 #: /tmp/fish/implicit/share/completions/aura.fish:102 @@ -9678,9 +9163,8 @@ msgstr "Disable downloading packages" #: /tmp/fish/implicit/share/completions/pacman.fish:76 #: /tmp/fish/implicit/share/completions/yaourt.fish:104 #: /tmp/fish/implicit/share/completions/yaourt.fish:105 -#, fuzzy msgid "Package file" -msgstr "Package" +msgstr "" #: /tmp/fish/implicit/share/completions/awk.fish:1 msgid "" @@ -9719,9 +9203,8 @@ msgid "Input_file Read a list of already existing known bad blocks" msgstr "" #: /tmp/fish/implicit/share/completions/badblocks.fish:5 -#, fuzzy msgid "Output_file Write the list of bad blocks to the specified file" -msgstr "Set the list of default preferences to the specified string" +msgstr "" #: /tmp/fish/implicit/share/completions/badblocks.fish:6 msgid "" @@ -9765,9 +9248,8 @@ msgid "Wrap encoded line after given number of caracters (default 76)" msgstr "" #: /tmp/fish/implicit/share/completions/bc.fish:1 -#, fuzzy msgid "Force interactive mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/bc.fish:2 msgid "Define math library" @@ -9794,33 +9276,28 @@ msgid "Seems mode: goes back to the first directory containing string" msgstr "" #: /tmp/fish/implicit/share/completions/bd.fish:3 -#, fuzzy msgid "Case insensitive move (implies seems mode)" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:1 msgid "Show unavailable key bindings/erase all bindings" msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:2 -#, fuzzy msgid "Erase mode" -msgstr "Verbose mode" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:3 -#, fuzzy msgid "Print names of available functions" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:5 -#, fuzzy msgid "Specify key name, not sequence" -msgstr "Specify date range for query" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:6 -#, fuzzy msgid "Print names of available keys" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:7 msgid "Add to named bind mode" @@ -9831,15 +9308,13 @@ msgid "Change current bind mode to named mode" msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:9 -#, fuzzy msgid "Key name" -msgstr "name" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:10 #: /tmp/fish/implicit/share/completions/commandline.fish:17 -#, fuzzy msgid "Function name" -msgstr "Function" +msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:1 msgid "Specify a prefix to use for all bison output file names" @@ -9879,9 +9354,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:9 -#, fuzzy msgid "Specify the name outfile for the parser file" -msgstr "Specify the number of jobs to run in parallel" +msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:10 msgid "" @@ -9902,9 +9376,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:13 -#, fuzzy msgid "Print the version number of bison and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:14 msgid "Print a summary of the options to bison and exit" @@ -9927,28 +9400,24 @@ msgid "Create a global (manually erased) event block" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:1 -#, fuzzy msgid "Check formula" -msgstr "Check for patches" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:2 -#, fuzzy msgid "Create a binary package" -msgstr "Cancel a hold on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:3 -#, fuzzy msgid "Output developer debug information" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:4 msgid "Do not bump the bottle revision number" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:5 -#, fuzzy msgid "Write bottle block to a Ruby source file" -msgstr "Write output to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:6 msgid "Write bottle block to formula file" @@ -9959,14 +9428,12 @@ msgid "Merge multiple bottle outputs" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:8 -#, fuzzy msgid "Display formula" -msgstr "Display summary" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:9 -#, fuzzy msgid "Remove old installed versions" -msgstr "Remove automatically installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:10 msgid "Remove out-of-date keg-only brews as well" @@ -9978,9 +9445,8 @@ msgid "Show what files would be removed" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:13 -#, fuzzy msgid "Scrub the cache" -msgstr "Build apt cache" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:14 msgid "Create new formula from URL" @@ -9995,14 +9461,12 @@ msgid "Use template for Autotools-style build" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:17 -#, fuzzy msgid "Don't download URL" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:18 -#, fuzzy msgid "Override name autodetection" -msgstr "Override framerate" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:19 msgid "Override version autodetection" @@ -10013,24 +9477,20 @@ msgid "Summarize specified formulae in one line" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:21 -#, fuzzy msgid "Search names and descriptions" -msgstr "Set function description" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:22 -#, fuzzy msgid "Search only names" -msgstr "Search in all man pages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:23 -#, fuzzy msgid "Search only descriptions" -msgstr "Set function description" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:24 -#, fuzzy msgid "Show a formula's dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:25 msgid "Show only 1 level down" @@ -10041,33 +9501,28 @@ msgid "Show in topological order" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:27 -#, fuzzy msgid "Show dependencies as tree" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:28 -#, fuzzy msgid "Show dependencies for all formulae" -msgstr "Show the dependencies of an installed gem" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:29 -#, fuzzy msgid "Show dependencies for installed formulae" -msgstr "Show the dependencies of an installed gem" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:30 msgid "Determine installation prefix for non-brew software" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:31 -#, fuzzy msgid "Set name of package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:32 -#, fuzzy msgid "Set version of package" -msgstr "Version of source package" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:33 msgid "Check your system for problems" @@ -10078,9 +9533,8 @@ msgid "Open brew/formula for editing" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:35 -#, fuzzy msgid "Download source for formula" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:36 msgid "Remove a previously cached version and re-fetch" @@ -10091,48 +9545,42 @@ msgid "Download the HEAD version from a VCS" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:38 -#, fuzzy msgid "Also download dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:39 msgid "Make HEAD checkout verbose" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:40 -#, fuzzy msgid "Fetch source package instead of bottle" -msgstr "Fetch source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:42 msgid "Open brew/formula's homepage" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:43 -#, fuzzy msgid "Display information about formula" -msgstr "Display information related to merges" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:44 -#, fuzzy msgid "Display info for all formulae" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:45 msgid "Open the GitHub History page for formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:46 -#, fuzzy msgid "Install formula" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:47 #: /tmp/fish/implicit/share/completions/prt-get.fish:35 #: /tmp/fish/implicit/share/completions/prt-get.fish:94 -#, fuzzy msgid "Force install" -msgstr "Force warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:48 msgid "If install fails, open shell in temp directory" @@ -10143,9 +9591,8 @@ msgid "skip installing any dependencies of any kind" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:50 -#, fuzzy msgid "Attempt to compile using the specified compiler" -msgstr "Output filenames using the specified format" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:51 msgid "Compile from source even if a bottle is provided" @@ -10164,18 +9611,16 @@ msgid "Download and patch formula, then open a shell" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:55 -#, fuzzy msgid "Force the specified build environment" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:56 msgid "Optimize for a generic CPU architecture" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:57 -#, fuzzy msgid "Optimize for the specified CPU architecture" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:58 msgid "Symlink installed formula" @@ -10183,9 +9628,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:59 #: /tmp/fish/implicit/share/completions/brew.fish:60 -#, fuzzy msgid "Overwrite existing files" -msgstr "Overwrite existing binstubs if they exist" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:61 #: /tmp/fish/implicit/share/completions/brew.fish:62 @@ -10206,9 +9650,8 @@ msgid "Link .app bundles into ~/Applications instead" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:67 -#, fuzzy msgid "List all installed formula" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:68 #: /tmp/fish/implicit/share/completions/brew.fish:71 @@ -10217,20 +9660,17 @@ msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:69 #: /tmp/fish/implicit/share/completions/brew.fish:72 -#, fuzzy msgid "Show the version number" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:70 #: /tmp/fish/implicit/share/completions/brew.fish:73 -#, fuzzy msgid "Show the versions of pinned formulae" -msgstr "Show the version of each required dependency" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:74 -#, fuzzy msgid "Show log for formula" -msgstr "Short format" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:75 #: /tmp/fish/implicit/share/completions/brew.fish:77 @@ -10242,9 +9682,8 @@ msgid "formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:76 -#, fuzzy msgid "Check formula for missing dependencies" -msgstr "Ask for extra dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:78 msgid "Display install options for formula" @@ -10259,33 +9698,28 @@ msgid "Show options for all formulae" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:81 -#, fuzzy msgid "Show options for all installed formulae" -msgstr "Show automatically installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:83 msgid "Show formula that have updated versions" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:84 -#, fuzzy msgid "Display only names" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:85 -#, fuzzy msgid "Pin the specified formulae to their current versions" -msgstr "Add specified file to the current list of keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:87 -#, fuzzy msgid "Remove dead symlinks" -msgstr "Remove unused locks" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:88 -#, fuzzy msgid "Search for formula by name" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:89 #: /tmp/fish/implicit/share/completions/brew.fish:91 @@ -10314,14 +9748,12 @@ msgid "Gracefully restart a service" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:97 -#, fuzzy msgid "Start a service" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:98 -#, fuzzy msgid "Stop a service" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:100 msgid "All Services" @@ -10332,9 +9764,8 @@ msgid "Instantiate a Homebrew build enviornment" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:102 -#, fuzzy msgid "Use stdenv instead of superenv" -msgstr "Use /dev/urandom instead of /dev/random" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:103 msgid "Tap a new formula repository on GitHub" @@ -10345,21 +9776,18 @@ msgid "Create and prune tap symlinks as appropriate" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:105 -#, fuzzy msgid "Run tests for formula" -msgstr "Run unit tests for gem" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:107 -#, fuzzy msgid "Uninstall formula" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:108 #: /tmp/fish/implicit/share/completions/brew.fish:109 #: /tmp/fish/implicit/share/completions/brew.fish:110 -#, fuzzy msgid "Delete all installed versions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:111 msgid "Unlink formula" @@ -10374,19 +9802,16 @@ msgid "Remove links from ~/Applications created by brew linkapps" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:114 -#, fuzzy msgid "Extract source code" -msgstr "Extract by record type" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:115 -#, fuzzy msgid "Unpin specified formulae" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:116 -#, fuzzy msgid "Remove a tapped repository" -msgstr "Remove specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:117 msgid "Fetch newest version of Homebrew and formulas" @@ -10397,28 +9822,24 @@ msgid "Use git pull --rebase" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:119 -#, fuzzy msgid "Upgrade outdated brews" -msgstr "Upgrade source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:120 msgid "Show formulas that depend on specified formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:121 -#, fuzzy msgid "List only installed formulae" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:122 -#, fuzzy msgid "Resolve more than one level of dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:123 -#, fuzzy msgid "Print version number of brew" -msgstr "Print inode number of files" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:124 msgid "Show Homebrew a summary of the build environment" @@ -10429,42 +9850,36 @@ msgid "Display where Homebrew's .git directory is located" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:126 -#, fuzzy msgid "Show Homebrew and system configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:127 -#, fuzzy msgid "Display Homebrew's install path" -msgstr "Display compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:128 -#, fuzzy msgid "Display formula's install path" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:129 -#, fuzzy msgid "Display Homebrew's download cache" -msgstr "Disable downloading packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:130 msgid "Display the file or directory used to cache formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:131 -#, fuzzy msgid "Display Homebrew's Cellar path" -msgstr "Display compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:132 msgid "Display formula's install path in Cellar" msgstr "" #: /tmp/fish/implicit/share/completions/builtin.fish:2 -#, fuzzy msgid "Print names of all existing builtins" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:1 msgid "Test if bundle has been given no subcommand" @@ -10479,9 +9894,8 @@ msgid "Specify the number of times you wish to attempt network commands" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:4 -#, fuzzy msgid "Disable colorization in output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:5 msgid "Enable verbose output mode" @@ -10492,9 +9906,8 @@ msgid "Display a help page" msgstr "Display a help page" #: /tmp/fish/implicit/share/completions/bundle.fish:7 -#, fuzzy msgid "Prints version information" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:8 #: /tmp/fish/implicit/share/completions/bundle.fish:40 @@ -10747,9 +10160,8 @@ msgid "Show the version of each required dependency" msgstr "Show the version of each required dependency" #: /tmp/fish/implicit/share/completions/bundle.fish:75 -#, fuzzy msgid "Output a specific format (png, jpg, svg, dot, …)" -msgstr "Output a specific format (png, jpg, svg, dot, ...)" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:76 msgid "Generate a simple Gemfile, placed in the current directory" @@ -10817,9 +10229,8 @@ msgstr "Overwrite" #: /tmp/fish/implicit/share/completions/bunzip2.fish:3 #: /tmp/fish/implicit/share/completions/bzip2.fish:5 -#, fuzzy msgid "Do not overwrite" -msgstr "Don't overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/bunzip2.fish:4 #: /tmp/fish/implicit/share/completions/bzcat.fish:1 @@ -10841,9 +10252,8 @@ msgid "Print license" msgstr "Print license" #: /tmp/fish/implicit/share/completions/busctl.fish:1 -#, fuzzy msgid "Suppress message payload display" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:2 msgid "Show a flat list instead of a tree" @@ -10854,9 +10264,8 @@ msgid "Activate the peer if necessary" msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:4 -#, fuzzy msgid "Only show unique (:X.Y) names" -msgstr "Only print unique lines" +msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:5 msgid "Only show well-known names" @@ -10873,9 +10282,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bzip2.fish:1 #: /tmp/fish/implicit/share/completions/gunzip.fish:1 #: /tmp/fish/implicit/share/completions/gzip.fish:1 -#, fuzzy msgid "Compress to stdout" -msgstr "Decompress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/bzip2.fish:2 msgid "Compress file" @@ -10900,28 +10308,24 @@ msgid "Large block size" msgstr "Large block size" #: /tmp/fish/implicit/share/completions/bzr.fish:2 -#, fuzzy msgid "List all help topics" -msgstr "Reinstall the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:3 -#, fuzzy msgid "List all commands" -msgstr "list all “gem” commands" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:4 -#, fuzzy msgid "Help about supported formats" -msgstr "Comma separated format" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:5 msgid "Help about current supported formats" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:6 -#, fuzzy msgid "How to specify revisions in bzr" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:7 msgid "Show bug tracker settings in bzr" @@ -10944,14 +10348,12 @@ msgid "Never change revnos or the existing log. Append revisions to it only" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:12 -#, fuzzy msgid "Make a copy of another branch" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:13 -#, fuzzy msgid "Proceed even if directory exits" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:14 msgid "Create a stacked branch referring to the source branch" @@ -10966,9 +10368,8 @@ msgid "Switch the checkout in the current directory to the new branch" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:17 -#, fuzzy msgid "Hard-link working tree files where possible" -msgstr "Bring work tree in sync with repository" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:18 msgid "Bind new branch to from location" @@ -10979,33 +10380,28 @@ msgid "Create a branch without a working-tree" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:20 -#, fuzzy msgid "Make files or directories versioned" -msgstr "Remove files and directories from version control." +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:21 -#, fuzzy msgid "Don't recursively add the contents of directories" -msgstr "Don't add contents of subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:22 -#, fuzzy msgid "Ignore a file or pattern" -msgstr "Ignore all white space" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:23 msgid "Display the default ignore rules that bzr uses" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:24 -#, fuzzy msgid "Move or rename a versioned file" -msgstr "Move or rename files" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:25 -#, fuzzy msgid "Automatically guess renames" -msgstr "Automatic yes to prompts" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:26 msgid "" @@ -11014,41 +10410,36 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:27 -#, fuzzy msgid "Summarize changes in working copy" -msgstr "Recursively clean up the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:28 msgid "Use short status indicators" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:29 -#, fuzzy msgid "Only show versioned files" -msgstr "Only store newer files" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:30 -#, fuzzy msgid "Don't show pending merges" -msgstr "Don't strip leading /" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:31 msgid "Do not mark object type using indicator" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:32 -#, fuzzy msgid "Show internal object ids" -msgstr "Show all options" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:33 msgid "Show detailed diffs" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:34 -#, fuzzy msgid "Pull in changes from another branch" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:35 msgid "" @@ -11057,9 +10448,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:36 -#, fuzzy msgid "Remember the specified location as a default" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:37 msgid "Merge even if the destination tree has uncommitted changes" @@ -11075,35 +10465,30 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:40 -#, fuzzy msgid "Show base revision text in conflicts" -msgstr "Show last revision where each line was modified" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:41 msgid "Instead of merging, show a diff of the merge" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:42 -#, fuzzy msgid "Select changes interactively" -msgstr "Select interface" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:43 -#, fuzzy msgid "" "Branch to merge into, rather than the one containing the working directory" -msgstr "Record an inverse patch without changing the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:44 #: /tmp/fish/implicit/share/completions/bzr.fish:45 -#, fuzzy msgid "Select changes introduced by the specified revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:46 -#, fuzzy msgid "Save some or all changes" -msgstr "Make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:47 msgid "" @@ -11112,18 +10497,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:48 -#, fuzzy msgid "Take commit message from this file" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:49 msgid "Do not consider changes made to a given path" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:50 -#, fuzzy msgid "Description of the new revision" -msgstr "Description of this completions" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:51 msgid "Set the author's name, if it's different from the commiter" @@ -11142,9 +10525,8 @@ msgid "Mark a bug as being fixed by this revision" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:55 -#, fuzzy msgid "Refuse to commit if there are unknown files in the working tree" -msgstr "List unrecorded changes in the working tree" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:56 msgid "" @@ -11175,14 +10557,12 @@ msgid "Mail the request to this address" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:62 -#, fuzzy msgid "Use the specified output format" -msgstr "Use the portable output format" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:63 -#, fuzzy msgid "Do not include a bundle in the merge directive" -msgstr "Do not include subdirectory size" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:64 msgid "" @@ -11195,50 +10575,41 @@ msgid "Do not include a preview patch in the merge directive" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:66 -#, fuzzy msgid "Show history of changes" -msgstr "Show source package" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:67 -#, fuzzy msgid "Validate storage" -msgstr "Validate" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:68 -#, fuzzy msgid "Check the working tree related to the current directory" -msgstr "Unpack an installed gem to the current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:69 -#, fuzzy msgid "Check the repository related to the current directory" -msgstr "Unpack an installed gem to the current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:70 -#, fuzzy msgid "Check the branch related to the current directory" -msgstr "Download the packages to the current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:71 -#, fuzzy msgid "Show usage message and options" -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:72 #: /tmp/fish/implicit/share/completions/git.fish:382 -#, fuzzy msgid "Show help message" -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:73 -#, fuzzy msgid "Only displays errors and warnings" -msgstr "Downgrade some errors to warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:74 -#, fuzzy msgid "Display more information" -msgstr "List inode information" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:75 msgid "Show what would be done" @@ -11297,18 +10668,16 @@ msgid "Default port to use for HTTPS" msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:14 -#, fuzzy msgid "Process log file" -msgstr "Process list pointer" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:15 msgid "Path to write pid file" msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:16 -#, fuzzy msgid "List installed plugins" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:17 msgid "Default port" @@ -11327,14 +10696,12 @@ msgid "Hostname for which to revoke the certificate" msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:21 -#, fuzzy msgid "Root path of default site" -msgstr "Don't set default repository" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:22 -#, fuzzy msgid "Type of server to run" -msgstr "Write top servers to file" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:23 msgid "Parse the Caddyfile but do not start the server" @@ -11349,9 +10716,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:10 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:2 #: /tmp/fish/implicit/share/completions/s3cmd.fish:128 -#, fuzzy msgid "Show version" -msgstr "Sort by version" +msgstr "" #: /tmp/fish/implicit/share/completions/caffeinate.fish:1 msgid "Create an assertion to prevent the display from sleeping" @@ -11374,9 +10740,8 @@ msgid "Create an assertion to declare that user is active" msgstr "" #: /tmp/fish/implicit/share/completions/caffeinate.fish:6 -#, fuzzy msgid "Specifies the timeout value in seconds" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/caffeinate.fish:7 msgid "Waits for the process with the specified PID to exit" @@ -11387,29 +10752,24 @@ msgid "Cancel jobs owned by username" msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:1 -#, fuzzy msgid "Show Help" -msgstr "Show time type" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:3 -#, fuzzy msgid "Update before running" -msgstr "Update source and rebuild" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:4 -#, fuzzy msgid "List feeds" -msgstr "Lists the keys" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:5 -#, fuzzy msgid "Show number of new items" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:6 -#, fuzzy msgid "Show number of new items for feed" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:7 msgid "Feed" @@ -11428,68 +10788,56 @@ msgid "Add feed" msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:11 -#, fuzzy msgid "Set configuration directory" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:12 #: /tmp/fish/implicit/share/completions/pine.fish:10 -#, fuzzy msgid "Set configuration file" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:13 -#, fuzzy msgid "Set client log file" -msgstr "Set tag file" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:14 -#, fuzzy msgid "Set feed directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:15 -#, fuzzy msgid "Set script directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:1 #: /tmp/fish/implicit/share/completions/light.fish:2 #: /tmp/fish/implicit/share/completions/rustc.fish:1 -#, fuzzy msgid "Print version info and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:2 -#, fuzzy msgid "List installed commands" -msgstr "list all “gem” commands" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:3 #: /tmp/fish/implicit/share/completions/rustc.fish:2 -#, fuzzy msgid "Use verbose output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:4 -#, fuzzy msgid "No output printed to stdout" -msgstr "Copy module file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:5 -#, fuzzy msgid "Don't build documentation for dependencies" -msgstr "Don't pull in build time dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:6 -#, fuzzy msgid "Specify a vcs to use" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:7 -#, fuzzy msgid "Opens the docs in a browser after the operation" -msgstr "Use the given HTTP proxy for remote operations" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:8 msgid "Login of a user to add as an owner" @@ -11500,9 +10848,8 @@ msgid "Login of a user to remove as an owner" msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:10 -#, fuzzy msgid "Don't verify the contents by building them" -msgstr "Don't verify time attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:11 msgid "Ignore warnings about a lack of human-usable metadata" @@ -11517,9 +10864,8 @@ msgid "Update a single dependency to exactly PRECISE" msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:14 -#, fuzzy msgid "The version to yank or un-yank" -msgstr "Specify version of gem to unpack" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:15 msgid "Undo a yank, putting a version back into the index" @@ -11542,29 +10888,25 @@ msgid "Path or URL to SRT or VTT file" msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:5 -#, fuzzy msgid "Set subtitles font scale" -msgstr "Subtitle file" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:6 msgid "Set subtitles font RGBA color" msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:7 -#, fuzzy msgid "Specify port to be used for serving subtitles" -msgstr "Specify the register to be used for PIC addressing" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:8 -#, fuzzy msgid "Set local IP" -msgstr "Set block size" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:9 #: /tmp/fish/implicit/share/completions/pv.fish:12 -#, fuzzy msgid "No output" -msgstr "Video output" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:10 msgid "Explicitly set the mime-type" @@ -11588,39 +10930,32 @@ msgid "Play in random order" msgstr "Play in random order" #: /tmp/fish/implicit/share/completions/castnow.fish:15 -#, fuzzy msgid "List all files in directories recursively" -msgstr "List subdirectory recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:16 -#, fuzzy msgid "Set at which the volume changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:17 -#, fuzzy msgid "Specify port to be used for serving local file" -msgstr "Specify the register to be used for PIC addressing" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:18 -#, fuzzy msgid "Specify port to be used for serving transcoded file" -msgstr "Specify port for web interface" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:19 -#, fuzzy msgid "Specify port to be used for serving torrented file" -msgstr "Specify the register to be used for PIC addressing" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:20 -#, fuzzy msgid "Specify port to be used for serving file read from stdin" -msgstr "Specify the register to be used for PIC addressing" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:21 -#, fuzzy msgid "Execute key command(s)" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:22 msgid "Exit when playback begins or --command completes" @@ -11682,9 +11017,8 @@ msgid "Set TAO (Track At Once) writing mode" msgstr "Set TAO (Track At Once) writing mode" #: /tmp/fish/implicit/share/completions/cdrecord.fish:14 -#, fuzzy msgid "Set RAW writing mode" -msgstr "Set TAO (Track At Once) writing mode" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:15 msgid "Select Set RAW writing, the preferred raw writing mode" @@ -11737,9 +11071,8 @@ msgstr "" "the SCSI driver" #: /tmp/fish/implicit/share/completions/cdrecord.fish:25 -#, fuzzy msgid "Load the media and exit" -msgstr "Load the media, lock the door and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:26 msgid "Load the media, lock the door and exit" @@ -11786,9 +11119,8 @@ msgid "Allows the user to manually select a driver for the device" msgstr "Allows the user to manually select a driver for the device" #: /tmp/fish/implicit/share/completions/cdrecord.fish:37 -#, fuzzy msgid "Set driver specific options" -msgstr "Edit command specific completions" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:38 msgid "" @@ -12017,9 +11349,8 @@ msgstr "Output diagnostic for changed files" #: /tmp/fish/implicit/share/completions/chgrp.fish:2 #: /tmp/fish/implicit/share/completions/chown.fish:2 -#, fuzzy msgid "Dereference symbolic links" -msgstr "Dereferense symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/chgrp.fish:3 #: /tmp/fish/implicit/share/completions/chown.fish:3 @@ -12033,9 +11364,8 @@ msgstr "Change from owner/group" #: /tmp/fish/implicit/share/completions/chgrp.fish:5 #: /tmp/fish/implicit/share/completions/chown.fish:5 -#, fuzzy msgid "Suppress errors" -msgstr "Supress errors" +msgstr "" #: /tmp/fish/implicit/share/completions/chgrp.fish:6 #: /tmp/fish/implicit/share/completions/chown.fish:6 @@ -12062,29 +11392,25 @@ msgid "Do not treat / specially (the default)" msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:3 -#, fuzzy msgid "Fail to operate recursively on /" -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:4 #: /tmp/fish/implicit/share/completions/readlink.fish:5 -#, fuzzy msgid "Suppress most error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:5 -#, fuzzy msgid "Output a diagnostic for every file processed" -msgstr "Output diagnostic for every file" +msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:6 msgid "Use RFILEs mode instead of MODE values" msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:7 -#, fuzzy msgid "Change files and directories recursively" -msgstr "Read files under each directory, recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/chown.fish:11 #: /tmp/fish/implicit/share/completions/chown.fish:12 @@ -12093,34 +11419,28 @@ msgid "Username" msgstr "Username" #: /tmp/fish/implicit/share/completions/chsh.fish:1 -#, fuzzy msgid "Specify your login shell" -msgstr "Specify log message" +msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:2 -#, fuzzy msgid "Display help and exit\t" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:4 -#, fuzzy msgid "List available shells and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:2 -#, fuzzy msgid "Update your climate install" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:3 -#, fuzzy msgid "uninstall climate" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:4 -#, fuzzy msgid "Show climate version" -msgstr "Show each gem version" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:5 msgid "Get the weather" @@ -12128,23 +11448,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:6 #: /tmp/fish/implicit/share/completions/climate.fish:7 -#, fuzzy msgid "Display remaining battery" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:8 msgid "Lock computer" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:9 -#, fuzzy msgid "Shutdown the computer" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:10 -#, fuzzy msgid "Restart the computer" -msgstr "Set start chapter" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:12 msgid "Put a console clock in the top right corner" @@ -12159,68 +11476,56 @@ msgid "A stopwatch" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:15 -#, fuzzy msgid "Pipe output to ix.io" -msgstr "Append output to file" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:16 -#, fuzzy msgid "Find the biggest files recursively" -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:17 -#, fuzzy msgid "Find the biggest directories" -msgstr "Prune empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:18 -#, fuzzy msgid "Find directory size" -msgstr "Do not include subdirectory size" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:19 -#, fuzzy msgid "Remove empty directories" -msgstr "Prune empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:20 -#, fuzzy msgid "Extract any given archive" -msgstr "Extract from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:21 -#, fuzzy msgid "Report duplicate files in a directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:22 -#, fuzzy msgid "Count the number of occurences" -msgstr "Print number of occurences" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:23 -#, fuzzy msgid "Monitor file for changes" -msgstr "Make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:24 -#, fuzzy msgid "Search for the given pattern recursively" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:25 -#, fuzzy msgid "Replace all occurences" -msgstr "Replace include directories" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:26 msgid "Create a ramfs of size (in MB) at path" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:27 -#, fuzzy msgid "Test your network speed" -msgstr "Tags you want to see" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:28 msgid "Retrieve your local ip address" @@ -12235,52 +11540,44 @@ msgid "Retrieve your public ip address" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:31 -#, fuzzy msgid "List open ports" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:32 -#, fuzzy msgid "Edit the hosts file" -msgstr "Write to file" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:33 -#, fuzzy msgid "http-server serving the current directory" -msgstr "Extract files to current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:34 msgid "Determine if server is up" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:35 -#, fuzzy msgid "Download file from server" -msgstr "Edit files on Vim server" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:36 -#, fuzzy msgid "Download dir from server" -msgstr "Download and extract a source" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:37 -#, fuzzy msgid "Upload to server" -msgstr "Use proxy server" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:38 -#, fuzzy msgid "Mount a remote path" -msgstr "Do not sign the patch" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:39 msgid "Unmount a ssh mount" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:40 -#, fuzzy msgid "Undo the latest commit" -msgstr "Run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:41 msgid "Reset local repo to match remote" @@ -12291,28 +11588,24 @@ msgid "Seset local repo to match remote" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:43 -#, fuzzy msgid "List all branches" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:44 -#, fuzzy msgid "Calculate the repo size" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:45 msgid "Calculate total contribution for a user" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:46 -#, fuzzy msgid "Display a performance overview" -msgstr "Display font properties" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:47 -#, fuzzy msgid "Find memory used" -msgstr "Reduce memory usage" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:48 msgid "Find disk used" @@ -12327,18 +11620,16 @@ msgid "Find the trash size" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:51 -#, fuzzy msgid "Empty the trash" -msgstr "Exit the shell" +msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:1 msgid "Combine sets of lines from two files using boolean operations" msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:2 -#, fuzzy msgid "Output lines that are in both files" -msgstr "Output rss-data to file" +msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:3 msgid "Output lines that are inf file1 but not in file2" @@ -12353,9 +11644,8 @@ msgid "Output lines that are in either file1 or file2, but not in both files" msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:6 -#, fuzzy msgid "Read file from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/command.fish:2 msgid "Print the file that would be executed" @@ -12406,33 +11696,28 @@ msgid "Inject readline functions to reader" msgstr "Inject readline functions to reader" #: /tmp/fish/implicit/share/completions/commandline.fish:11 -#, fuzzy msgid "Print each token on a separate line" -msgstr "Print length of longest line" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:12 -#, fuzzy msgid "Specify command to operate on" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:13 msgid "Set/get cursor position, not buffer contents" msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:14 -#, fuzzy msgid "Print the line that the cursor is on" -msgstr "Print messages about what the program is doing" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:15 -#, fuzzy msgid "Return true if performing a history search" -msgstr "Return true if array contains a sequence" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:16 -#, fuzzy msgid "Return true if showing pager content" -msgstr "Return true if array contains a sequence" +msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:5 #: /tmp/fish/implicit/share/completions/convert.fish:17 @@ -12483,9 +11768,8 @@ msgid "Measure differences between images with this metric [type]" msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:23 -#, fuzzy msgid "Get the passphrase from this file [filename]" -msgstr "Read passphrase from specified file descriptor" +msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:24 #: /tmp/fish/implicit/share/completions/display.fish:32 @@ -12504,9 +11788,8 @@ msgid "JPEG/MIFF/PNG compression level [value]" msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:34 -#, fuzzy msgid "Search for subimage" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:36 #: /tmp/fish/implicit/share/completions/composite.fish:74 @@ -12524,9 +11807,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:34 #: /tmp/fish/implicit/share/completions/stream.fish:33 #: /tmp/fish/implicit/share/completions/terraform.fish:1 -#, fuzzy msgid "Print version information" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:44 #: /tmp/fish/implicit/share/completions/composite.fish:39 @@ -12545,14 +11827,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:73 #: /tmp/fish/implicit/share/completions/montage.fish:59 #: /tmp/fish/implicit/share/completions/stream.fish:25 -#, fuzzy msgid "Declare the image as modified" -msgstr "Pretend file is modified" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:1 -#, fuzzy msgid "Command to add completion to" -msgstr "Path to add completion to" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:2 msgid "Path to add completion to" @@ -12595,14 +11875,12 @@ msgid "Option list is not complete" msgstr "Option list is not complete" #: /tmp/fish/implicit/share/completions/complete.fish:12 -#, fuzzy msgid "Remove completion" -msgstr "Remove property" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:14 -#, fuzzy msgid "Print all completions for the specified commandline" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:15 msgid "" @@ -12613,24 +11891,20 @@ msgstr "" "status" #: /tmp/fish/implicit/share/completions/complete.fish:16 -#, fuzzy msgid "Inherit completions from the specified command" -msgstr "Pipe output through specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:1 -#, fuzzy msgid "User script" -msgstr "Loop script" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:2 -#, fuzzy msgid "Short information about Composer" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:3 -#, fuzzy msgid "Create an archive of this composer package" -msgstr "Reinstall each of the named packages" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:4 #: /tmp/fish/implicit/share/completions/composer.fish:15 @@ -12643,14 +11917,12 @@ msgid "Clears composer's internal package cache." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:8 -#, fuzzy msgid "Create new project from a package into given directory." -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:9 -#, fuzzy msgid "Shows which packages depend on the given package" -msgstr "list all packages depending on specified package" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:10 msgid "Diagnoses the system to identify common errors." @@ -12658,9 +11930,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:11 #: /tmp/fish/implicit/share/completions/composer.fish:12 -#, fuzzy msgid "Dumps the autoloader" -msgstr "Dumps the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:13 #, sh-format @@ -12668,14 +11939,12 @@ msgid "Allows running commands in the global composer dir ($COMPOSER_HOME)." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:14 -#, fuzzy msgid "Displays help for a command" -msgstr "Display help about darcs and darcs commands" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:16 -#, fuzzy msgid "Creates a basic composer.json file in current directory." -msgstr "Generate a simple Gemfile, placed in the current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:17 msgid "" @@ -12684,19 +11953,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:18 -#, fuzzy msgid "Show information about licenses of dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:19 -#, fuzzy msgid "Lists commands" -msgstr "Process command" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:20 -#, fuzzy msgid "Removes a package from the require or require-dev" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:21 msgid "Adds required packages to your composer.json and installs them" @@ -12708,25 +11974,21 @@ msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:23 #: /tmp/fish/implicit/share/completions/npm.fish:34 -#, fuzzy msgid "Search for packages" -msgstr "Fetch source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:24 #: /tmp/fish/implicit/share/completions/composer.fish:25 -#, fuzzy msgid "Updates composer.phar to the latest version." -msgstr "Update dependencies to their latest versions" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:26 -#, fuzzy msgid "Show information about packages" -msgstr "Show full information for specified packages" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:27 -#, fuzzy msgid "Show a list of locally modified packages" -msgstr "Show automatically installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:28 msgid "" @@ -12751,9 +12013,8 @@ msgid "Displays composer's help." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:33 -#, fuzzy msgid "Do not output any message." -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:34 msgid "" @@ -12762,9 +12023,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:35 -#, fuzzy msgid "Display composer's application version." -msgstr "Display compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:36 msgid "Force ANSI output." @@ -12775,14 +12035,12 @@ msgid "Disable ANSI output." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:38 -#, fuzzy msgid "Do not ask any interactive question." -msgstr "Do no interactive prompting" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:39 -#, fuzzy msgid "Display timing and memory usage information." -msgstr "Display RubyGems environmental information" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:40 msgid "If specified, use the given directory as working directory." @@ -12808,15 +12066,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:5 #: /tmp/fish/implicit/share/completions/mogrify.fish:15 #: /tmp/fish/implicit/share/completions/montage.fish:11 -#, fuzzy msgid "Annotate image with comment [string]" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:8 #: /tmp/fish/implicit/share/completions/montage.fish:12 -#, fuzzy msgid "Composite operator [operator]" -msgstr "Complete Convert options" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:13 #: /tmp/fish/implicit/share/completions/convert.fish:24 @@ -12873,9 +12129,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:30 #: /tmp/fish/implicit/share/completions/mogrify.fish:57 #: /tmp/fish/implicit/share/completions/montage.fish:43 -#, fuzzy msgid "Font point size [value]" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:32 #: /tmp/fish/implicit/share/completions/convert.fish:57 @@ -12888,9 +12143,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:62 #: /tmp/fish/implicit/share/completions/import.fish:36 #: /tmp/fish/implicit/share/completions/mogrify.fish:64 -#, fuzzy msgid "Image scene number [value]" -msgstr "Compare general numeric value" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:43 msgid "Repeat composite operation across and down image" @@ -13005,9 +12259,8 @@ msgid "Do not create output files" msgstr "Do not create output files" #: /tmp/fish/implicit/share/completions/configure.fish:7 -#, fuzzy msgid "Set source directory" -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:8 msgid "Architecture-independent install directory" @@ -13018,9 +12271,8 @@ msgid "Architecture-dependent install directory" msgstr "Architecture-dependent install directory" #: /tmp/fish/implicit/share/completions/configure.fish:10 -#, fuzzy msgid "Configure for building on BUILD" -msgstr "Configure for building compilers for TARGET" +msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:11 msgid "Cross-compile to build programs to run on HOST" @@ -13035,9 +12287,8 @@ msgid "Shows if the system is online or offline" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:2 -#, fuzzy msgid "Display technologies" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:3 msgid "Get System Clock Properties" @@ -13048,57 +12299,48 @@ msgid "Enables given technology or offline mode" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:5 -#, fuzzy msgid "Disables given technology or offline mode" -msgstr "Disable import of site module" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:6 msgid "Enable, disable tethering, set SSID and passphrase for wifi" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:7 -#, fuzzy msgid "Display services" -msgstr "Display security context" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:8 -#, fuzzy msgid "Display peers" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:9 msgid "Scans for new services for given technology" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:10 -#, fuzzy msgid "Connect a given service or peer" -msgstr "Connect to the given user's DCOP server" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:11 -#, fuzzy msgid "Disconnect a given service or peer" -msgstr "Connect to the given user's DCOP server" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:12 -#, fuzzy msgid "Set service configuration options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:13 -#, fuzzy msgid "Monitor signals from interfaces" -msgstr "Do not use X interface" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:14 -#, fuzzy msgid "Display VPN connections" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:15 -#, fuzzy msgid "Enable or disable a session" -msgstr "available sessions" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:16 msgid "(Un)Register a Peer Service" @@ -13128,9 +12370,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:7 #: /tmp/fish/implicit/share/completions/mogrify.fish:5 -#, fuzzy msgid "Background color [color]" -msgstr "Change background color" +msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:8 #: /tmp/fish/implicit/share/completions/mogrify.fish:6 @@ -13212,14 +12453,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:51 #: /tmp/fish/implicit/share/completions/identify.fish:18 #: /tmp/fish/implicit/share/completions/mogrify.fish:56 -#, fuzzy msgid "Efficiently determine image attributes" -msgstr "Exclude extra file attributes" +msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:53 -#, fuzzy msgid "Maximum number of significant digits to print [value]" -msgstr "Maximum number of connections to allow" +msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:54 #: /tmp/fish/implicit/share/completions/mogrify.fish:58 @@ -13385,135 +12624,35 @@ msgstr "" msgid "Enhance or reduce the image contrast" msgstr "" -#: /tmp/fish/implicit/share/completions/cower.fish:1 -#, fuzzy -msgid "Show output in a more script friendly format" -msgstr "Output filenames using the specified format" - -#: /tmp/fish/implicit/share/completions/cower.fish:2 -#, fuzzy -msgid "Download [twice to fetch dependencies]" -msgstr "Show state of dependencies" - -#: /tmp/fish/implicit/share/completions/cower.fish:3 -msgid "Show info for target [twice for more details]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:4 -#, fuzzy -msgid "Search for packages by maintainer" -msgstr "Search for packages matching a pattern" - -#: /tmp/fish/implicit/share/completions/cower.fish:5 -#, fuzzy -msgid "Search for packages by name" -msgstr "Search full package name" - -#: /tmp/fish/implicit/share/completions/cower.fish:6 -#, fuzzy -msgid "Check AUR packages for updates" -msgstr "Check for patches" - -#: /tmp/fish/implicit/share/completions/cower.fish:7 -#, fuzzy -msgid "Use colored output" -msgstr "Use colors in output" - -#: /tmp/fish/implicit/share/completions/cower.fish:8 -#, fuzzy -msgid "Show debug output" -msgstr "Turn on debug output" - -#: /tmp/fish/implicit/share/completions/cower.fish:9 -#, fuzzy -msgid "Overwrite existing files when downloading" -msgstr "Overwrite existing binstubs if they exist" - -#: /tmp/fish/implicit/share/completions/cower.fish:10 -#, fuzzy -msgid "Print formatted" -msgstr "Prints formatted text" - -#: /tmp/fish/implicit/share/completions/cower.fish:11 -#, fuzzy -msgid "Display help and quit" -msgstr "Display help and exit" - -#: /tmp/fish/implicit/share/completions/cower.fish:12 -#, fuzzy -msgid "Ignore a package upgrade" -msgstr "Ignore package Holds" - -#: /tmp/fish/implicit/share/completions/cower.fish:13 -#, fuzzy -msgid "Ignore a binary repo when checking for updates" -msgstr "Ignore ancestry when calculating merges" - -#: /tmp/fish/implicit/share/completions/cower.fish:14 -#, fuzzy -msgid "Specify a delimiter for list formatters" -msgstr "Specify directory for rpm database" - -#: /tmp/fish/implicit/share/completions/cower.fish:15 -#, fuzzy -msgid "Output less" -msgstr "Output file" - -#: /tmp/fish/implicit/share/completions/cower.fish:16 -#, fuzzy -msgid "Download targets to DIR" -msgstr "Don't unlock targets" - -#: /tmp/fish/implicit/share/completions/cower.fish:17 -#, fuzzy -msgid "Limit the number of threads created [10]" -msgstr "Only print number of matches" - -#: /tmp/fish/implicit/share/completions/cower.fish:18 -#, fuzzy -msgid "Curl timeout in seconds" -msgstr "Minimum interval in seconds" - -#: /tmp/fish/implicit/share/completions/cower.fish:19 -#, fuzzy -msgid "Output more" -msgstr "Output trace" - #: /tmp/fish/implicit/share/completions/cowsay.fish:1 #: /tmp/fish/implicit/share/completions/cowthink.fish:1 -#, fuzzy msgid "Specify eye string" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:2 #: /tmp/fish/implicit/share/completions/cowthink.fish:2 -#, fuzzy msgid "Specify cow file" -msgstr "Specify conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:4 #: /tmp/fish/implicit/share/completions/cowthink.fish:4 -#, fuzzy msgid "List all cowfiles" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:5 #: /tmp/fish/implicit/share/completions/cowthink.fish:5 -#, fuzzy msgid "No word wrapping" -msgstr "Flood ping" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:6 #: /tmp/fish/implicit/share/completions/cowthink.fish:6 -#, fuzzy msgid "Specify tounge string" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:7 #: /tmp/fish/implicit/share/completions/cowthink.fish:7 -#, fuzzy msgid "Column width" -msgstr "Line width" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:8 #: /tmp/fish/implicit/share/completions/cowthink.fish:8 @@ -13557,9 +12696,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cupsdisable.fish:1 #: /tmp/fish/implicit/share/completions/cupsenable.fish:1 -#, fuzzy msgid "Cancels all jobs on the named destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/cupsdisable.fish:2 #: /tmp/fish/implicit/share/completions/cupsenable.fish:2 @@ -13572,9 +12710,8 @@ msgid "Releases pending jobs for printing" msgstr "" #: /tmp/fish/implicit/share/completions/cupsdisable.fish:4 -#, fuzzy msgid "Disable reason" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/cupsenable.fish:4 msgid "Cancel reason" @@ -13582,9 +12719,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cupsreject.fish:1 #: /tmp/fish/implicit/share/completions/reject.fish:1 -#, fuzzy msgid "Reject reason" -msgstr "Reject protocols" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:1 msgid "Output byte range" @@ -13603,101 +12739,84 @@ msgid "Select fields" msgstr "Select fields" #: /tmp/fish/implicit/share/completions/cut.fish:5 -#, fuzzy msgid "Don't split multi byte characters" -msgstr "Define token to contain these characters" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:6 -#, fuzzy msgid "Do not print lines without delimiter" -msgstr "Do not print differences for deleted files" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:7 msgid "Select output delimiter" msgstr "Select output delimiter" #: /tmp/fish/implicit/share/completions/cvs.fish:1 -#, fuzzy msgid "Displays usage information for command." -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:2 -#, fuzzy msgid "Cause CVS to be really quiet." -msgstr "Cause CVS to be really quiet" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:3 -#, fuzzy msgid "Cause CVS to be somewhat quiet." -msgstr "Cause CVS to be somewhat quiet" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:4 -#, fuzzy msgid "Make checked-out files read-only." -msgstr "Make checked-out files read-only" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:5 -#, fuzzy msgid "Make checked-out files read-write (default)." -msgstr "Make checked-out files read-write (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:6 msgid "Do not execute anything that will change the disk." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:7 -#, fuzzy msgid "Show trace of program execution -- try with -n." -msgstr "Show trace of program execution -- try with -n" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:8 msgid "Assume repository is read-only, such as CDROM" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:9 -#, fuzzy msgid "CVS version and copyright." -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:10 -#, fuzzy msgid "Use 'tmpdir' for temporary files." -msgstr "Use tmpdir for temporary files" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:11 -#, fuzzy msgid "Use 'editor' for editing log information." -msgstr "Use editor for editing log information" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:13 -#, fuzzy msgid "Do not use the ~/.cvsrc file." -msgstr "Do not use the ~/.cvsrc file" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:14 -#, fuzzy msgid "Request compression level '#' for net traffic." -msgstr "Request compression level # for net traffic." +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:15 -#, fuzzy msgid "Encrypt all net traffic." -msgstr "Encrypt all net traffic" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:16 -#, fuzzy msgid "Authenticate all net traffic." -msgstr "Authenticate all net traffic" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:17 -#, fuzzy msgid "Use IPv4 addresses only." -msgstr "IPv4 addresses only" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:18 -#, fuzzy msgid "Use IPv6 addresses only." -msgstr "IPv6 addresses only" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:19 msgid "Set CVS user variable." @@ -13748,32 +12867,28 @@ msgid "Import sources into CVS, using vendor branches" msgstr "Import sources into CVS, using vendor branches" #: /tmp/fish/implicit/share/completions/cvs.fish:31 -#, fuzzy msgid "Create a CVS repository if it doesn't exist" -msgstr "Create a CVS repository if it doesn't exist" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:32 msgid "Kerberos server mode" msgstr "Kerberos server mode" #: /tmp/fish/implicit/share/completions/cvs.fish:33 -#, fuzzy msgid "Print out history information for files" -msgstr "Print out history information for a module" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:34 msgid "Prompt for password for authenticating server" msgstr "Prompt for password for authenticating server" #: /tmp/fish/implicit/share/completions/cvs.fish:35 -#, fuzzy msgid "Removes entry in .cvspass for remote repository" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:36 -#, fuzzy msgid "List files available from CVS" -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:37 msgid "Password server mode" @@ -13784,27 +12899,24 @@ msgid "Show last revision where each line of module was modified" msgstr "Show last revision where each line of module was modified" #: /tmp/fish/implicit/share/completions/cvs.fish:39 -#, fuzzy msgid "Create 'patch' format diffs between releases" -msgstr "Create patch format diffs between releases" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:40 msgid "Indicate that a Module is no longer in use" msgstr "Indicate that a Module is no longer in use" #: /tmp/fish/implicit/share/completions/cvs.fish:41 -#, fuzzy msgid "Remove an entry from the repository" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:42 msgid "Print out history information for a module" msgstr "Print out history information for a module" #: /tmp/fish/implicit/share/completions/cvs.fish:43 -#, fuzzy msgid "List files in a module" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:44 msgid "Add a symbolic tag to a module" @@ -13823,23 +12935,20 @@ msgid "Add a symbolic tag to checked out version of files" msgstr "Add a symbolic tag to checked out version of files" #: /tmp/fish/implicit/share/completions/cvs.fish:48 -#, fuzzy msgid "Undo an edit command" -msgstr "Do not execute commands" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:49 msgid "Bring work tree in sync with repository" msgstr "Bring work tree in sync with repository" #: /tmp/fish/implicit/share/completions/cvs.fish:50 -#, fuzzy msgid "Show current CVS version(s)" -msgstr "Show each gem version" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:51 -#, fuzzy msgid "Set watches" -msgstr "Set arch" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:52 msgid "See who is watching a file" @@ -13858,9 +12967,8 @@ msgid "Append (comma-separated) user names to access list." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:56 -#, fuzzy msgid "Append another file's access list." -msgstr "Append new files" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:57 msgid "[rev] Set default branch (highest branch on trunk if omitted)." @@ -13875,9 +12983,8 @@ msgid "[users] Remove (comma-separated) user names from access list" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:60 -#, fuzzy msgid "Run interactively." -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:61 msgid "Set keyword substitution mode:" @@ -13892,9 +12999,8 @@ msgid "Set strict locking." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:64 -#, fuzzy msgid "Replace revision's log message." -msgstr "Replace revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:65 msgid "Tag branch or revision. If :rev is omitted," @@ -13905,28 +13011,24 @@ msgid "Same as -n except override existing tag." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:67 -#, fuzzy msgid "Delete (outdate) specified range of revisions:" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:68 -#, fuzzy msgid "Run quietly." -msgstr "Run quietly" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:69 msgid "Set revision state (latest revision on branch," msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:70 -#, fuzzy msgid "[file] Get descriptive text from file (stdin if omitted)." -msgstr "Write descriptive text from a file into RCS" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:71 -#, fuzzy msgid "-string Set descriptive text." -msgstr "Write descriptive text into RCS" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:72 msgid "[rev] Unlock the revision (latest revision on branch," @@ -13955,9 +13057,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:259 #: /tmp/fish/implicit/share/completions/cvs.fish:267 #: /tmp/fish/implicit/share/completions/cvs.fish:278 -#, fuzzy msgid "Process directories recursively." -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:76 #: /tmp/fish/implicit/share/completions/cvs.fish:205 @@ -13966,27 +13067,23 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:77 #: /tmp/fish/implicit/share/completions/cvs.fish:206 -#, fuzzy msgid "Annotate binary files." -msgstr "Annotate binary files" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:78 #: /tmp/fish/implicit/share/completions/cvs.fish:207 -#, fuzzy msgid "Annotate file as of specified revision/tag." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:79 #: /tmp/fish/implicit/share/completions/cvs.fish:208 -#, fuzzy msgid "Annotate file as of specified date." -msgstr "Show file systems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:80 #: /tmp/fish/implicit/share/completions/cvs.fish:272 -#, fuzzy msgid "Reset any sticky tags/date/kopts." -msgstr "Reset sticky tags/dates/k-opts" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:81 #: /tmp/fish/implicit/share/completions/cvs.fish:148 @@ -13997,9 +13094,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:198 #: /tmp/fish/implicit/share/completions/cvs.fish:241 #: /tmp/fish/implicit/share/completions/cvs.fish:273 -#, fuzzy msgid "Prune empty directories." -msgstr "Prune empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:84 msgid "\"cat\" the module database." @@ -14018,9 +13114,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:102 #: /tmp/fish/implicit/share/completions/cvs.fish:150 #: /tmp/fish/implicit/share/completions/cvs.fish:211 -#, fuzzy msgid "Local directory only, not recursive" -msgstr "List subdirectory recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:87 #: /tmp/fish/implicit/share/completions/cvs.fish:152 @@ -14062,9 +13157,8 @@ msgid "Check for valid edits before committing." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:97 -#, fuzzy msgid "Local directory only (not recursive)." -msgstr "List subdirectory recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:98 msgid "Force the file to be committed; disables recursion." @@ -14109,46 +13203,38 @@ msgid "--ignore-case Consider upper- and lower-case to be the same." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:110 -#, fuzzy msgid "--ignore-all-space Ignore all white space." -msgstr "Ignore all white space" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:111 -#, fuzzy msgid "--ignore-space-change Ignore changes in the amount of white space." -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:112 -#, fuzzy msgid "--ignore-blank-lines Ignore changes whose lines are all blank." -msgstr "Ignore changes whose lines match the REGEX" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:113 -#, fuzzy msgid "--ignore-matching-lines=RE Ignore changes whose lines all match RE." -msgstr "Ignore changes whose lines match the REGEX" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:114 -#, fuzzy msgid "Binary Read and write data in binary mode." -msgstr "Read and write all files in binary mode" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:115 -#, fuzzy msgid "--text Treat all files as text." -msgstr "Treat all files as text" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:116 -#, fuzzy msgid "" "-C NUM --context[=NUM] Output NUM (default 2) lines of copied context." -msgstr "Output NUM lines of copied context" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:117 -#, fuzzy msgid "" "-U NUM --unified[=NUM] Output NUM (default 2) lines of unified context." -msgstr "Output NUM lines of unified context" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:118 msgid "UM Use NUM context lines." @@ -14159,37 +13245,32 @@ msgid "--label LABEL Use LABEL instead of file name." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:120 -#, fuzzy msgid "--show-c-function Show which C function each change is in." -msgstr "Identify the C function each change is in" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:121 msgid "--show-function-line=RE Show the most recent line matching RE." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:122 -#, fuzzy msgid "Brief Output only whether files differ." -msgstr "Output only whether the files differ" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:123 -#, fuzzy msgid "--ed Output an ed script." -msgstr "Make output a valid ed script" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:124 msgid "--forward-ed Output something like an ed script in forward order." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:125 -#, fuzzy msgid "--rcs Output an RCS format diff." -msgstr "Output a normal diff" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:126 -#, fuzzy msgid "--side-by-side Output in two columns." -msgstr "Output in two columns" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:127 msgid "--width=NUM Output at most NUM (default 130) characters per line." @@ -14218,18 +13299,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:134 -#, fuzzy msgid "--expand-tabs Expand tabs to spaces in output." -msgstr "Expand tabs to spaces" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:135 msgid "--initial-tab Make tabs line up by prepending a tab." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:136 -#, fuzzy msgid "--new-file Treat absent files as empty." -msgstr "Treat absent files as empty" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:137 msgid "--report-identical-files Report when two files are the same." @@ -14240,9 +13319,8 @@ msgid "Horizon-lines=NUM Keep NUM lines of the common prefix and suffix." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:139 -#, fuzzy msgid "--minimal Try hard to find a smaller set of changes." -msgstr "Try to find a smaller set of changes" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:140 msgid "" @@ -14254,18 +13332,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:266 #: /tmp/fish/implicit/share/completions/cvs.fish:270 #: /tmp/fish/implicit/share/completions/cvs.fish:286 -#, fuzzy msgid "Local directory only, not recursive." -msgstr "List subdirectory recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:142 #: /tmp/fish/implicit/share/completions/cvs.fish:147 #: /tmp/fish/implicit/share/completions/cvs.fish:151 #: /tmp/fish/implicit/share/completions/cvs.fish:271 #: /tmp/fish/implicit/share/completions/cvs.fish:287 -#, fuzzy msgid "Process directories recursively (default)." -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:143 msgid "Specify action to register for temporary watch, one of:" @@ -14282,9 +13358,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:146 #: /tmp/fish/implicit/share/completions/cvs.fish:223 #: /tmp/fish/implicit/share/completions/cvs.fish:258 -#, fuzzy msgid "Process this directory only (not recursive)." -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:153 msgid "Export tagged revisions." @@ -14303,18 +13378,16 @@ msgid "Use RCS kopt -k option on checkout." msgstr "Use RCS kopt -k option on checkout." #: /tmp/fish/implicit/share/completions/cvs.fish:157 -#, fuzzy msgid "Produce report on all TAGs" -msgstr "Report on all tags" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:158 msgid "Committed (Modified) files" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:159 -#, fuzzy msgid "Checked out modules" -msgstr "Report on checked-out modules" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:160 msgid "Look for specified module (repeatable)" @@ -14337,9 +13410,8 @@ msgid "Last modified (committed or modified report)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:165 -#, fuzzy msgid "Working directory must match" -msgstr "Print directory stack" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:166 msgid "Since date (Many formats)" @@ -14386,56 +13458,47 @@ msgid "When importing new files, mark their trunk revisions as dead." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:177 -#, fuzzy msgid "Set default RCS keyword substitution mode." -msgstr "Set keyword substitution mode:" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:178 #: /tmp/fish/implicit/share/completions/cvs.fish:284 -#, fuzzy msgid "More files to ignore (! to reset)." -msgstr "Files to ignore during import" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:179 -#, fuzzy msgid "Vendor branch id." -msgstr "Multiple vendor branch" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:181 #: /tmp/fish/implicit/share/completions/cvs.fish:285 -#, fuzzy msgid "Wrappers specification line." -msgstr "Display gem specification (in yaml)" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:183 #: /tmp/fish/implicit/share/completions/cvs.fish:226 -#, fuzzy msgid "Only list revisions on the default branch." -msgstr "Print info about revision on default branch" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:184 #: /tmp/fish/implicit/share/completions/cvs.fish:227 -#, fuzzy msgid "Only print header." -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:185 #: /tmp/fish/implicit/share/completions/cvs.fish:228 -#, fuzzy msgid "Only print name of RCS file." -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:186 #: /tmp/fish/implicit/share/completions/cvs.fish:229 -#, fuzzy msgid "Only print header and descriptive text." -msgstr "Write descriptive text into RCS" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:187 #: /tmp/fish/implicit/share/completions/cvs.fish:230 -#, fuzzy msgid "Do not list tags." -msgstr "Do not write mtab" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:188 #: /tmp/fish/implicit/share/completions/cvs.fish:231 @@ -14449,27 +13512,23 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:190 #: /tmp/fish/implicit/share/completions/cvs.fish:233 -#, fuzzy msgid "This option." -msgstr "Config option" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:191 #: /tmp/fish/implicit/share/completions/cvs.fish:234 -#, fuzzy msgid "[revisions]" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:192 #: /tmp/fish/implicit/share/completions/cvs.fish:235 -#, fuzzy msgid "A semicolon-separated list of dates" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:193 #: /tmp/fish/implicit/share/completions/cvs.fish:236 -#, fuzzy msgid "Only list revisions with specified states." -msgstr "Mount partition with specified label" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:194 #: /tmp/fish/implicit/share/completions/cvs.fish:237 @@ -14478,9 +13537,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:195 #: /tmp/fish/implicit/share/completions/cvs.fish:238 -#, fuzzy msgid "Show dead revisions (with tag when specified)." -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:196 #: /tmp/fish/implicit/share/completions/cvs.fish:239 @@ -14489,21 +13547,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:197 #: /tmp/fish/implicit/share/completions/cvs.fish:240 -#, fuzzy msgid "Display all details." -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:199 #: /tmp/fish/implicit/share/completions/cvs.fish:242 -#, fuzzy msgid "List recursively." -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:200 #: /tmp/fish/implicit/share/completions/cvs.fish:243 -#, fuzzy msgid "Show files with revision or tag." -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:201 #: /tmp/fish/implicit/share/completions/cvs.fish:244 @@ -14520,14 +13575,12 @@ msgid "Date [-r rev2 | -D date2] modules…" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:213 -#, fuzzy msgid "Context diffs (default)" -msgstr "Use context diff format" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:214 -#, fuzzy msgid "Unidiff format." -msgstr "Use unidiff format" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:215 msgid "Short patch - one liner per file." @@ -14538,9 +13591,8 @@ msgid "Top two diffs - last change made to the file." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:217 -#, fuzzy msgid "Use RCS Version vers for keyword expansion." -msgstr "Specify keyword expansion mode." +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:219 msgid "Date." @@ -14551,14 +13603,12 @@ msgid "Revision - symbolic or numeric." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:221 -#, fuzzy msgid "Delete the given directory." -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:222 -#, fuzzy msgid "Delete the file before removing it." -msgstr "Re-package the files before erasing" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:245 msgid "Clear tag from removed files that would not otherwise be tagged." @@ -14585,15 +13635,13 @@ msgid "Move tag if it already exists." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:252 -#, fuzzy msgid "No execution of 'tag program'." -msgstr "Don't run any tag programs" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:254 #: /tmp/fish/implicit/share/completions/cvs.fish:268 -#, fuzzy msgid "Existing revision/tag." -msgstr "Export tagged revisions." +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:255 #: /tmp/fish/implicit/share/completions/cvs.fish:269 @@ -14605,19 +13653,16 @@ msgid "Verbose format; includes tag information for the file" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:262 -#, fuzzy msgid "Check that working files are unmodified." -msgstr "Check out a working copy from a repository." +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:274 -#, fuzzy msgid "Overwrite locally modified files with clean repository copies." -msgstr "Overwrite modified files with clean copies" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:275 -#, fuzzy msgid "Build directories, like checkout does." -msgstr "List directories, not their content" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:279 msgid "Send updates to standard output (avoids stickiness)." @@ -14632,9 +13677,8 @@ msgid "Set date to update from (is sticky)." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:288 -#, fuzzy msgid "Specify what actions, one of: " -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:1 msgid "Build for 32-bit Cygwin" @@ -14645,106 +13689,88 @@ msgid "Build for 64-bit Cygwin" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:3 -#, fuzzy msgid "Enable debugging messages" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:4 -#, fuzzy msgid "Cygport file" -msgstr "Compress file" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:5 -#, fuzzy msgid "Download all sources" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:6 -#, fuzzy msgid "Download missing sources" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:7 -#, fuzzy msgid "Prepare source directory" -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:8 -#, fuzzy msgid "Build software" -msgstr "Build apt cache" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:9 -#, fuzzy msgid "Run test suite" -msgstr "Run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:10 msgid "Install into DESTDIR and run post-installation steps" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:11 -#, fuzzy msgid "Run post-installation steps" -msgstr "Run unit tests prior to installation" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:12 -#, fuzzy msgid "List package files" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:13 -#, fuzzy msgid "List debug package files" -msgstr "List current package locks" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:14 -#, fuzzy msgid "Show dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:15 -#, fuzzy msgid "Show packaging info" -msgstr "Show package info" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:16 msgid "Show project homepage URL" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:17 -#, fuzzy msgid "Create packages, marked as test" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:18 -#, fuzzy msgid "Create packages" -msgstr "Erase package" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:19 -#, fuzzy msgid "Create source patches" -msgstr "Clean source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:20 -#, fuzzy msgid "Upload finished packages" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:21 -#, fuzzy msgid "Upload packages without marking !ready" -msgstr "Add a package lock" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:22 msgid "Send announcement email" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:23 -#, fuzzy msgid "Delete working directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:24 msgid "Same as prep build inst pkg" @@ -14755,9 +13781,8 @@ msgid "Darcs repo" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:2 -#, fuzzy msgid "Set the specified option" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:3 msgid "Display help about darcs and darcs commands" @@ -14812,9 +13837,8 @@ msgid "Name the current repository state for future reference" msgstr "Name the current repository state for future reference" #: /tmp/fish/implicit/share/completions/darcs.fish:16 -#, fuzzy msgid "Set a preference (test, predist, boringfile or binariesfile)" -msgstr "Set a value for a preference (test, predist, ...)" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:17 msgid "Create a diff between two versions of the repository" @@ -14945,9 +13969,8 @@ msgid "Pass -u option to diff" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:418 -#, fuzzy msgid "Output patch in diff's dumb format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:419 #: /tmp/fish/implicit/share/completions/darcs.fish:463 @@ -14975,9 +13998,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:421 #: /tmp/fish/implicit/share/completions/darcs.fish:525 -#, fuzzy msgid "Do patch application on disk [DEFAULT]" -msgstr "Fail on patches that create conflicts [DEFAULT]" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:422 #: /tmp/fish/implicit/share/completions/darcs.fish:466 @@ -14997,9 +14019,8 @@ msgstr "Fail on patches that create conflicts [DEFAULT]" #: /tmp/fish/implicit/share/completions/darcs.fish:972 #: /tmp/fish/implicit/share/completions/darcs.fish:990 #: /tmp/fish/implicit/share/completions/darcs.fish:1010 -#, fuzzy msgid "Disable this command" -msgstr "Help for this command" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:423 #: /tmp/fish/implicit/share/completions/darcs.fish:467 @@ -15041,9 +14062,8 @@ msgstr "Shows brief description of command and its arguments" #: /tmp/fish/implicit/share/completions/darcs.fish:974 #: /tmp/fish/implicit/share/completions/darcs.fish:992 #: /tmp/fish/implicit/share/completions/darcs.fish:1012 -#, fuzzy msgid "Give only debug output" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:425 #: /tmp/fish/implicit/share/completions/darcs.fish:469 @@ -15063,9 +14083,8 @@ msgstr "Turn on debug output" #: /tmp/fish/implicit/share/completions/darcs.fish:975 #: /tmp/fish/implicit/share/completions/darcs.fish:993 #: /tmp/fish/implicit/share/completions/darcs.fish:1013 -#, fuzzy msgid "Give debug and verbose output" -msgstr "Give human readable output" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:426 #: /tmp/fish/implicit/share/completions/darcs.fish:470 @@ -15106,9 +14125,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:977 #: /tmp/fish/implicit/share/completions/darcs.fish:995 #: /tmp/fish/implicit/share/completions/darcs.fish:1015 -#, fuzzy msgid "Give verbose output" -msgstr "Neither verbose nor quiet output" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:428 #: /tmp/fish/implicit/share/completions/darcs.fish:472 @@ -15170,9 +14188,8 @@ msgstr "Neither verbose nor quiet output" #: /tmp/fish/implicit/share/completions/darcs.fish:980 #: /tmp/fish/implicit/share/completions/darcs.fish:998 #: /tmp/fish/implicit/share/completions/darcs.fish:1018 -#, fuzzy msgid "Provide debugging timings information" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:431 #: /tmp/fish/implicit/share/completions/darcs.fish:481 @@ -15213,9 +14230,8 @@ msgstr "Specify command to run after this darcs command" #: /tmp/fish/implicit/share/completions/darcs.fish:982 #: /tmp/fish/implicit/share/completions/darcs.fish:1001 #: /tmp/fish/implicit/share/completions/darcs.fish:1026 -#, fuzzy msgid "Don't run posthook command" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:433 #: /tmp/fish/implicit/share/completions/darcs.fish:483 @@ -15298,9 +14314,8 @@ msgstr "Specify command to run before this darcs command" #: /tmp/fish/implicit/share/completions/darcs.fish:986 #: /tmp/fish/implicit/share/completions/darcs.fish:1005 #: /tmp/fish/implicit/share/completions/darcs.fish:1030 -#, fuzzy msgid "Don't run prehook command" -msgstr "Do not execute remote command" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:437 #: /tmp/fish/implicit/share/completions/darcs.fish:487 @@ -15376,9 +14391,8 @@ msgid "Return only NUMBER results" msgstr "Return only NUMBER results" #: /tmp/fish/implicit/share/completions/darcs.fish:451 -#, fuzzy msgid "Show only changes to specified files" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:452 msgid "Show changes to all files [DEFAULT]" @@ -15404,14 +14418,12 @@ msgid "Give human-readable output" msgstr "Give human-readable output" #: /tmp/fish/implicit/share/completions/darcs.fish:456 -#, fuzzy msgid "Number the changes" -msgstr "Remove the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:457 -#, fuzzy msgid "Output count of changes" -msgstr "Output diagnostic for changed files" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:458 #: /tmp/fish/implicit/share/completions/darcs.fish:489 @@ -15419,9 +14431,8 @@ msgstr "Output diagnostic for changed files" #: /tmp/fish/implicit/share/completions/darcs.fish:632 #: /tmp/fish/implicit/share/completions/darcs.fish:708 #: /tmp/fish/implicit/share/completions/darcs.fish:761 -#, fuzzy msgid "Summarize changes" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:459 #: /tmp/fish/implicit/share/completions/darcs.fish:490 @@ -15433,18 +14444,16 @@ msgid "Don't summarize changes" msgstr "Don't summarize changes" #: /tmp/fish/implicit/share/completions/darcs.fish:460 -#, fuzzy msgid "Show changes in reverse order" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:461 msgid "Show changes in the usual order [DEFAULT]" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:462 -#, fuzzy msgid "Specify the repository URL" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:464 #: /tmp/fish/implicit/share/completions/darcs.fish:566 @@ -15483,9 +14492,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:867 #: /tmp/fish/implicit/share/completions/darcs.fish:902 #: /tmp/fish/implicit/share/completions/darcs.fish:1020 -#, fuzzy msgid "Don't use SSH ControlMaster feature [DEFAULT]" -msgstr "Don't use experimental date appending trick. [DEFAULT]" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:477 #: /tmp/fish/implicit/share/completions/darcs.fish:607 @@ -15504,9 +14512,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:869 #: /tmp/fish/implicit/share/completions/darcs.fish:904 #: /tmp/fish/implicit/share/completions/darcs.fish:1022 -#, fuzzy msgid "Disable HTTP pipelining" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:479 #: /tmp/fish/implicit/share/completions/darcs.fish:609 @@ -15515,9 +14522,8 @@ msgstr "Disable warnings" #: /tmp/fish/implicit/share/completions/darcs.fish:870 #: /tmp/fish/implicit/share/completions/darcs.fish:905 #: /tmp/fish/implicit/share/completions/darcs.fish:1023 -#, fuzzy msgid "Don't use patch caches" -msgstr "Don't use batch mode" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:480 #: /tmp/fish/implicit/share/completions/darcs.fish:610 @@ -15534,9 +14540,8 @@ msgid "Output patch in a darcs-specific format similar to diff -u" msgstr "Output patch in a darcs-specific format similar to diff -u" #: /tmp/fish/implicit/share/completions/darcs.fish:492 -#, fuzzy msgid "Output patch in darcs' usual format" -msgstr "Output patch in a darcs-specific format similar to diff -u" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:497 #: /tmp/fish/implicit/share/completions/darcs.fish:522 @@ -15555,9 +14560,8 @@ msgid "Specify hash of creator patch (see docs)" msgstr "Specify hash of creator patch (see docs)" #: /tmp/fish/implicit/share/completions/darcs.fish:518 -#, fuzzy msgid "Name of version" -msgstr "Name of client" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:553 #: /tmp/fish/implicit/share/completions/darcs.fish:602 @@ -15569,9 +14573,8 @@ msgid "Make scripts executable" msgstr "Make scripts executable" #: /tmp/fish/implicit/share/completions/darcs.fish:568 -#, fuzzy msgid "Mark conflicts [DEFAULT]" -msgstr "Mark conflicts" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:569 #: /tmp/fish/implicit/share/completions/darcs.fish:805 @@ -15580,9 +14583,8 @@ msgstr "Allow conflicts, but don't mark them" #: /tmp/fish/implicit/share/completions/darcs.fish:570 #: /tmp/fish/implicit/share/completions/darcs.fish:807 -#, fuzzy msgid "Filter out any patches that would create conflicts" -msgstr "Fail on patches that create conflicts [DEFAULT]" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:571 #: /tmp/fish/implicit/share/completions/darcs.fish:808 @@ -15615,9 +14617,8 @@ msgstr "Don't actually take the action" #: /tmp/fish/implicit/share/completions/darcs.fish:626 #: /tmp/fish/implicit/share/completions/darcs.fish:698 #: /tmp/fish/implicit/share/completions/darcs.fish:744 -#, fuzzy msgid "Don't automatically fulfill dependencies" -msgstr "Don't pull in build time dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:579 #: /tmp/fish/implicit/share/completions/darcs.fish:627 @@ -15654,19 +14655,16 @@ msgstr "Don't set default repository" #: /tmp/fish/implicit/share/completions/darcs.fish:584 #: /tmp/fish/implicit/share/completions/darcs.fish:713 #: /tmp/fish/implicit/share/completions/darcs.fish:768 -#, fuzzy msgid "Do not check if repositories are unrelated" -msgstr "Do not check directories" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:594 -#, fuzzy msgid "Take intersection of all repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:595 -#, fuzzy msgid "Take union of all repositories [DEFAULT]" -msgstr "Set default repository [DEFAULT]" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:596 msgid "Take complement of repositories (in order listed)" @@ -15677,9 +14675,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:685 #: /tmp/fish/implicit/share/completions/darcs.fish:830 #: /tmp/fish/implicit/share/completions/darcs.fish:952 -#, fuzzy msgid "Create compressed patches" -msgstr "Don't create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:598 #: /tmp/fish/implicit/share/completions/darcs.fish:725 @@ -15691,9 +14688,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:646 #: /tmp/fish/implicit/share/completions/darcs.fish:828 #: /tmp/fish/implicit/share/completions/darcs.fish:970 -#, fuzzy msgid "Don't trust the file modification times" -msgstr "Don't extract modification time" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:600 #: /tmp/fish/implicit/share/completions/darcs.fish:647 @@ -15801,9 +14797,8 @@ msgid "Specify output filename" msgstr "Specify output filename" #: /tmp/fish/implicit/share/completions/darcs.fish:763 -#, fuzzy msgid "Edit the patch bundle description" -msgstr "Edit the patch bundle description" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:767 #: /tmp/fish/implicit/share/completions/darcs.fish:827 @@ -15815,9 +14810,8 @@ msgid "Give patch name and comment in file" msgstr "Give patch name and comment in file" #: /tmp/fish/implicit/share/completions/darcs.fish:779 -#, fuzzy msgid "Delete the logfile when done" -msgstr "Delete all cache contents" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:780 msgid "Keep the logfile when done [DEFAULT]" @@ -15832,9 +14826,8 @@ msgid "Verify that the patch was signed by a key in PUBRING" msgstr "Verify that the patch was signed by a key in PUBRING" #: /tmp/fish/implicit/share/completions/darcs.fish:798 -#, fuzzy msgid "Verify using openSSL with authorized keys from file KEYS" -msgstr "Verify using openSSL with authorized keys from specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:799 msgid "Don't verify patch signature" @@ -15861,9 +14854,8 @@ msgid "Forward unsigned messages without extra header" msgstr "Forward unsigned messages without extra header" #: /tmp/fish/implicit/share/completions/darcs.fish:826 -#, fuzzy msgid "Don't forward unsigned messages without extra header [DEFAULT]" -msgstr "Forward unsigned messages without extra header" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:842 #: /tmp/fish/implicit/share/completions/darcs.fish:1008 @@ -15880,15 +14872,13 @@ msgid "Get patch files only as needed" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:845 -#, fuzzy msgid "Don't save patch files in the repository" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:846 #: /tmp/fish/implicit/share/completions/darcs.fish:963 -#, fuzzy msgid "Get a complete copy of the repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:850 #: /tmp/fish/implicit/share/completions/darcs.fish:883 @@ -15918,14 +14908,12 @@ msgid "Minimal features. What older repos use" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:937 -#, fuzzy msgid "Reorder the patches in the repository" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:938 -#, fuzzy msgid "Specify a sibling directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:939 msgid "Relink random internal data to a sibling" @@ -15944,9 +14932,8 @@ msgid "Optimize hashed pristine layout" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:953 -#, fuzzy msgid "Uncompress patches" -msgstr "Don't create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:1 msgid "Read the value of a key" @@ -15961,54 +14948,46 @@ msgid "Write a new value to a key" msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:4 -#, fuzzy msgid "Delete a key or an entire directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:5 msgid "Compile a binary database from keyfiles" msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:6 -#, fuzzy msgid "Update the system dconf databases" -msgstr "Update the RubyGems system software" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:7 -#, fuzzy msgid "Watch a key or directory for changes" -msgstr "Name directory for working files" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:8 -#, fuzzy msgid "Dump an entire subpath to stdout" -msgstr "Decompress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:9 -#, fuzzy msgid "Populate a subpath from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/dd.fish:1 #: /tmp/fish/implicit/share/completions/emacs.fish:52 #: /tmp/fish/implicit/share/completions/hg.fish:15 -#, fuzzy msgid "display help and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dd.fish:3 msgid "Complete dd operands" msgstr "Complete dd operands" #: /tmp/fish/implicit/share/completions/defaults.fish:1 -#, fuzzy msgid "Restricts preferences operations to the current logged-in host" -msgstr "Restrict operations to the REMOTE domain" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:2 -#, fuzzy msgid "Restricts preferences operations to hostname" -msgstr "Restrict operations to the REMOTE domain" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:3 msgid "Shows defaults entire given domain" @@ -16019,42 +14998,36 @@ msgid "Writes domain or or a key in the domain" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:5 -#, fuzzy msgid "String as the value for the given key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:6 msgid "Raw data bytes for given key" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:7 -#, fuzzy msgid "Integer as the value for the given key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:8 msgid "Floating point number as the value for the given key" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:9 -#, fuzzy msgid "Boolean as the value for the given key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:10 -#, fuzzy msgid "Date as the value for the given key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:11 -#, fuzzy msgid "Array as the value for the given key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:12 -#, fuzzy msgid "Add new elements to the end of an array" -msgstr "Add text to the end of the selected area" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:13 msgid "Add a dictionary to domain" @@ -16065,9 +15038,8 @@ msgid "Add new key/value pairs to a dictionary" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:15 -#, fuzzy msgid "Shows the type for the given domain, key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:16 msgid "Renames old_key to new_key" @@ -16078,43 +15050,36 @@ msgid "Deletes domain or a key in the domain" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:18 -#, fuzzy msgid "Prints the names of all domains in the users defaults system" -msgstr "Prints the license of all gems in the bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:19 msgid "Searches for word in domain names, keys, and values" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:20 -#, fuzzy msgid "Prints a list of possible command formats" -msgstr "Print a list of documented fish commands" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:1 -#, fuzzy msgid "Include empty file systems" -msgstr "Include empty filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:2 -#, fuzzy msgid "Print file system type" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:3 -#, fuzzy msgid "Excluded file system type" -msgstr "Excluded filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:4 -#, fuzzy msgid "Show all file systems" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:1 -#, fuzzy msgid "Background immediately" -msgstr "Go to background immediately after startup" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:2 msgid "Use given script" @@ -16137,28 +15102,24 @@ msgid "Use last acquired lease if cannot obtain one even if expired" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:7 -#, fuzzy msgid "Push given value the environment" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:8 -#, fuzzy msgid "Reapply configuration for each interface" -msgstr "Display configuration and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:9 msgid "Request DHCP server to update DNS using FQDN instead of hostname" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:10 -#, fuzzy msgid "Specify config to load instead of /etc/dhcpcd.conf" -msgstr "Specify an initialization file to read instead of ~/.muttrc" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:11 -#, fuzzy msgid "Send hostname to DHCP server" -msgstr "Send keys to Vim server" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:12 msgid "Send given clientid" @@ -16169,9 +15130,8 @@ msgid "Override DHCPv4 vendorclassid field sent" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:14 -#, fuzzy msgid "Writes to specfied log file instead of syslog" -msgstr "Use this config file instead of default" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:15 msgid "Release lease and de-configure interface" @@ -16182,33 +15142,28 @@ msgid "Request specific lease time in secs" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:17 -#, fuzzy msgid "Start dhcpcd in Master mode" -msgstr "Start in easy mode" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:18 msgid "Set prefered interface based on given rank (lowest wins)" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:19 -#, fuzzy msgid "Reload config and rebind specified interface" -msgstr "Set source address to specified interface address" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:20 -#, fuzzy msgid "Renew existing addresses on specified interface" -msgstr "Set source address to specified interface address" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:21 -#, fuzzy msgid "Request DHCP option" -msgstr "Requests per pipe" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:22 -#, fuzzy msgid "Keep configuration even when dhcpcd exits" -msgstr "Display configuration and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:23 msgid "Request given address in DHCP DISCOVER message" @@ -16219,19 +15174,16 @@ msgid "Request given address in DHCP INFORM message" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:25 -#, fuzzy msgid "Perform DHCPv6 Information Request" -msgstr "Information request" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:26 -#, fuzzy msgid "Configure static DHCP value" -msgstr "Configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:27 -#, fuzzy msgid "Timeout after seconds" -msgstr "Timeout for retrieving selection" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:28 msgid "Tag DHCPv4 message with given userclass" @@ -16246,9 +15198,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:8 #: /tmp/fish/implicit/share/completions/pv.fish:33 #: /tmp/fish/implicit/share/completions/subl.fish:9 -#, fuzzy msgid "Show version and exit" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:31 #: /tmp/fish/implicit/share/completions/dhcpcd.fish:32 @@ -16346,9 +15297,8 @@ msgid "Try to find a smaller set of changes" msgstr "Try to find a smaller set of changes" #: /tmp/fish/implicit/share/completions/diff.fish:21 -#, fuzzy msgid "Compare FILE1 to all operands" -msgstr "Compare FILE2 to all operands" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:22 msgid "Compare FILE2 to all operands" @@ -16375,43 +15325,36 @@ msgid "Bind to source address/port" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:5 -#, fuzzy msgid "Specify batch mode file" -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:6 -#, fuzzy msgid "Specify query class" -msgstr "Specify the proxy password" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:7 -#, fuzzy msgid "Specify TSIG key file" -msgstr "Specify makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:8 msgid "specify named base64 TSIG key" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:9 -#, fuzzy msgid "Specify port number" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:10 -#, fuzzy msgid "Specify query name" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:11 -#, fuzzy msgid "Specify query type" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:12 -#, fuzzy msgid "Reverse lookup" -msgstr "Reverse sort order" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:13 #: /tmp/fish/implicit/share/completions/killall.fish:10 @@ -16419,17 +15362,15 @@ msgstr "Reverse sort order" #: /tmp/fish/implicit/share/completions/lsof.fish:1 #: /tmp/fish/implicit/share/completions/lua.fish:5 #: /tmp/fish/implicit/share/completions/wicd-cli.fish:1 -#, fuzzy msgid "Print help and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:14 #: /tmp/fish/implicit/share/completions/feh.fish:55 #: /tmp/fish/implicit/share/completions/fuser.fish:12 #: /tmp/fish/implicit/share/completions/tree.fish:43 -#, fuzzy msgid "Print version and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:15 msgid "TCP mode" @@ -16452,9 +15393,8 @@ msgid "Deprecated, treated as a synonym for +[no]search" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:20 -#, fuzzy msgid "Recursive mode" -msgstr "Secure mode" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:21 msgid "Dont revert to TCP for TC responses." @@ -16497,9 +15437,8 @@ msgid "Control display of question" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:31 -#, fuzzy msgid "Control display of answer" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:32 msgid "Control display of authority" @@ -16526,14 +15465,12 @@ msgid "Set or clear all display flags" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:38 -#, fuzzy msgid "Print question before sending" -msgstr "Print line of headings" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:39 -#, fuzzy msgid "Search all authoritative nameservers" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:40 msgid "ID responders in short answers" @@ -16544,9 +15481,8 @@ msgid "Trace delegation down from root" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:42 -#, fuzzy msgid "Request DNSSEC records" -msgstr "Remove records" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:43 msgid "Request Name Server ID" @@ -16561,19 +15497,16 @@ msgid "AXFR prints only one soa record" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:46 -#, fuzzy msgid "Set number of UDP attempts" -msgstr "Set number of audio channels" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:47 -#, fuzzy msgid "Set number of UDP retries" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:48 -#, fuzzy msgid "Set query timeout" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:49 msgid "Set EDNS0 Max UDP packet size" @@ -16584,9 +15517,8 @@ msgid "Set NDOTS value" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:51 -#, fuzzy msgid "Set EDNS version" -msgstr "Sort by version" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:1 msgid "List disks" @@ -16595,27 +15527,24 @@ msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:2 #: /tmp/fish/implicit/share/completions/diskutil.fish:4 #: /tmp/fish/implicit/share/completions/diskutil.fish:8 -#, fuzzy msgid "Return a property list" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:3 msgid "Get detailed information about a specific whole disk or partition" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:5 -#, fuzzy msgid "Process all disks" -msgstr "Process all packages" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:6 msgid "Continuously display system-wide disk manipulation activity" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:7 -#, fuzzy msgid "Show the file system personalities available" -msgstr "Show file systems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:9 msgid "Unmount a single volume" @@ -16634,18 +15563,16 @@ msgid "Mount a single volume" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:13 -#, fuzzy msgid "Specify mount point" -msgstr "Specify a non-mountpoint dir" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:14 msgid "Mount an entire disk (all mountable volumes)" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:15 -#, fuzzy msgid "Rename a volume" -msgstr "Rename module" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:16 msgid "Enable journaling on an HFS+ volume" @@ -16664,9 +15591,8 @@ msgid "Enable ownership of a volume" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:20 -#, fuzzy msgid "Disable ownership of a volume" -msgstr "Disable import of site module" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:21 msgid "Verify the file system data structures of a volume" @@ -16685,9 +15611,8 @@ msgid "Repair the partition map layout of a whole disk" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:25 -#, fuzzy msgid "Erase an existing disk" -msgstr "Create any missing directories" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:26 msgid "Write out a new empty file system volume" @@ -16761,15 +15686,13 @@ msgid "Exit program when this window id is destroyed [id]" msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:53 -#, fuzzy msgid "Write image to a file [filename]" -msgstr "Write size for all files" +msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:54 #: /tmp/fish/implicit/share/completions/montage.fish:72 -#, fuzzy msgid "Automagically orient image" -msgstr "Show automatically installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:62 msgid "Straighten an image [threshold]" @@ -16798,9 +15721,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:69 #: /tmp/fish/implicit/share/completions/montage.fish:79 -#, fuzzy msgid "Flop image in the horizontal direction" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:70 #: /tmp/fish/implicit/share/completions/montage.fish:80 @@ -16836,14 +15758,12 @@ msgid "Threshold the image [value]" msgstr "" #: /tmp/fish/implicit/share/completions/dlocate.fish:1 -#, fuzzy msgid "ls -ldF all files in the package" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/dlocate.fish:2 -#, fuzzy msgid "du -sck all files in the package" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:1 msgid "Clear the kernel ring buffer" @@ -16866,14 +15786,12 @@ msgid "Enable printing messages to console" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:6 -#, fuzzy msgid "Use the file instead of the kernel log buffer" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:7 -#, fuzzy msgid "Restrict output to defined facilities" -msgstr "Write output to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:8 #: /tmp/fish/implicit/share/completions/m4.fish:1 @@ -16881,124 +15799,104 @@ msgstr "Write output to specified file" #: /tmp/fish/implicit/share/completions/timeout.fish:4 #: /tmp/fish/implicit/share/completions/watch.fish:11 #: /tmp/fish/implicit/share/completions/xgettext.fish:38 -#, fuzzy msgid "Display this help and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:9 -#, fuzzy msgid "Display kernel messages" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:10 -#, fuzzy msgid "Restrict output to defined levels" -msgstr "Redirect output to file" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:11 msgid "Set level of messages printed to console" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:12 -#, fuzzy msgid "Print the raw message buffer" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:13 msgid "Buffer size to query the kernel ring buffer" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:14 -#, fuzzy msgid "Show human readable timestamp " -msgstr "Human readable sizes" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:15 msgid "Don't print messages timestamp" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:16 -#, fuzzy msgid "Display userspace messages" -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:18 msgid "Decode facility and level to readable string" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:1 -#, fuzzy msgid "Install .deb package" -msgstr "Install new package" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:2 -#, fuzzy msgid "Unpack .deb package" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:3 -#, fuzzy msgid "Configure package" -msgstr "Compile source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:4 -#, fuzzy msgid "Remove package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:5 -#, fuzzy msgid "Purge package" -msgstr "Erase package" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:6 -#, fuzzy msgid "Verify contents of package" -msgstr "Don't verify dependencies of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:7 msgid "Continue on all problems" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:8 -#, fuzzy msgid "Build package from directory" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:9 -#, fuzzy msgid "List contents of .deb" -msgstr "List contents of directory" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:10 -#, fuzzy msgid "Show .deb information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:11 -#, fuzzy msgid "List packages matching pattern" -msgstr "list all packages matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:12 -#, fuzzy msgid "List contents of packages" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:13 -#, fuzzy msgid "Print status of package" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:14 -#, fuzzy msgid "Search for packages containing file" -msgstr "Search for packages containing listed words" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:3 -#, fuzzy msgid "Set configuration frontend" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:4 msgid "Set priority threshold" @@ -17013,24 +15911,20 @@ msgid "Show only unseen question" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:7 -#, fuzzy msgid "Reconfigure also inconsistent packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:8 -#, fuzzy msgid "Prevent reloading templates" -msgstr "Prepend string to relative links" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:1 -#, fuzzy msgid "Get current status of the dropboxd" -msgstr "Negate exit status of job" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:2 -#, fuzzy msgid "Provide help" -msgstr "Print help" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:3 msgid "Return 1 if dropbox is running" @@ -17057,14 +15951,12 @@ msgid "Get current sync status of one or more files" msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:9 -#, fuzzy msgid "List directory contents with current sync status" -msgstr "List directory entries in the repository." +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:10 -#, fuzzy msgid "Ignores/excludes a directory from syncing" -msgstr "Ignore specified number of directory components" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:11 msgid "Enables or disables LAN sync" @@ -17081,24 +15973,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:14 -#, fuzzy msgid "Do not ignore entries starting with ." -msgstr "Ignore files ending with ~" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:15 -#, fuzzy msgid "Prints a list of directories currently excluded from syncing" -msgstr "Print a list of documented fish commands" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:16 -#, fuzzy msgid "Adds one or more directories to the exclusion list" -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:17 -#, fuzzy msgid "Removes one or more directories from the exclusion list" -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:1 msgid "Write size for all files" @@ -17157,9 +16045,8 @@ msgid "Display only a total for each argument" msgstr "Display only a total for each argument" #: /tmp/fish/implicit/share/completions/du.fish:14 -#, fuzzy msgid "Skip other file systems" -msgstr "Skip other filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:15 msgid "Exclude files that match pattern in file" @@ -17199,14 +16086,12 @@ msgid "Backup without executing pre/post scripts" msgstr "Backup without executing pre/post scripts" #: /tmp/fish/implicit/share/completions/duply.fish:6 -#, fuzzy msgid "Execute /pre script" -msgstr "Don't execute pre scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:7 -#, fuzzy msgid "Execute /post script" -msgstr "Don't execute post scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:8 msgid "Force full backup" @@ -17257,9 +16142,8 @@ msgid "Do nothing but print out generated duplicity command lines" msgstr "Do nothing but print out generated duplicity command lines" #: /tmp/fish/implicit/share/completions/duply.fish:20 -#, fuzzy msgid "Calculate what would be done, but don" -msgstr "Calculate what would be done, but dont perform any actions" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:21 #: /tmp/fish/implicit/share/completions/md5sum.fish:5 @@ -17272,68 +16156,56 @@ msgid "Output verbosity level" msgstr "Output verbosity level" #: /tmp/fish/implicit/share/completions/echo.fish:1 -#, fuzzy msgid "Do not output a newline" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:2 -#, fuzzy msgid "Do not separate arguments with spaces" -msgstr "Do not export variable to subprocess" +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:3 -#, fuzzy msgid "Disable backslash escapes" -msgstr "Use backslash escaped characters" +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:4 -#, fuzzy msgid "Enable backslash escapes" -msgstr "Use backslash escaped characters" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:1 -#, fuzzy msgid "Show a help screen and exit" -msgstr "Show help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:3 -#, fuzzy msgid "Dump variables to stdout" -msgstr "Decompress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:4 -#, fuzzy msgid "Dump default values of variables to stdout" -msgstr "Copy module file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:5 -#, fuzzy msgid "Print non-matching entries first" -msgstr "Print first non-matching file" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:6 msgid "Don't read unguessable slots of installed packages (toggle)" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:7 -#, fuzzy msgid "Always read slots of installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:8 -#, fuzzy msgid "(no) output (toggle)" -msgstr "Append output to file" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:9 -#, fuzzy msgid "Don't use ANSI color codes" -msgstr "Don't use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:10 -#, fuzzy msgid "Force colorful output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:11 msgid "Compact search results (toggle)" @@ -17352,9 +16224,8 @@ msgid "Print available versions line-by-line (toggle)" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:15 -#, fuzzy msgid "Format string for normal output" -msgstr "Stop from terminal output" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:16 msgid "Format string for compact output" @@ -17365,24 +16236,20 @@ msgid "Format string for verbose output" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:18 -#, fuzzy msgid "Next expression only matches installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:19 -#, fuzzy msgid "Match packages installed in several versions" -msgstr "Update installed packages with newer versions" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:20 -#, fuzzy msgid "Match duplicated packages" -msgstr "Fetch source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:21 -#, fuzzy msgid "Match packages with duplicated versions" -msgstr "Update installed packages with newer versions" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:22 msgid "Match packages with a nontrivial slot" @@ -17393,19 +16260,16 @@ msgid "Match packages with two different slots" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:24 -#, fuzzy msgid "Match packages without best slotted version" -msgstr "Update installed packages with newer versions" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:25 -#, fuzzy msgid "Match packages from overlays" -msgstr "Fetch package from STDIN" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:26 -#, fuzzy msgid "Match packages with obsolete entries" -msgstr "Move packages to local tree" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:27 msgid "Invert the expression (toggle)" @@ -17416,62 +16280,52 @@ msgid "Use input from pipe of emerge -pv" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:29 -#, fuzzy msgid "Search the description field" -msgstr "Set function description" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:30 -#, fuzzy msgid "Search the category and name fields" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:31 -#, fuzzy msgid "Search the category field" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:32 -#, fuzzy msgid "Search the name field (default)" -msgstr "Select entire command line (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:33 -#, fuzzy msgid "Search the homepage field" -msgstr "Read the log message from file." +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:34 -#, fuzzy msgid "Search the license field" -msgstr "Use source index field" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:35 msgid "Search the provides field" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:36 -#, fuzzy msgid "Pattern is a regexp (default)" -msgstr "Pattern is a regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:37 -#, fuzzy msgid "Pattern is the exact string" -msgstr "Pattern is a fixed string" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:38 -#, fuzzy msgid "Pattern is a wildcards-pattern" -msgstr "Pattern is a fixed string" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:39 msgid "Use fuzzy-search with the given max. levenshtein-distance (default: 2)" msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:1 -#, fuzzy msgid "Ignore all previous options" -msgstr "Ignore externals definitions" +msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:2 msgid "Only show differences to the previously saved database and exit" @@ -17491,9 +16345,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:6 -#, fuzzy msgid "Update database only and show differences" -msgstr "Update cache and check dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:7 msgid "Do not call gensync (and the !commands in /etc/eix-sync.conf)" @@ -17532,26 +16385,22 @@ msgid "Really recreate the dep-cache (rm -rf /var/cache/edb/dep/*) (default)" msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:16 -#, fuzzy msgid "Do not really recreate the dep-cache" -msgstr "Do not remove stale gems from the cache" +msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:17 -#, fuzzy msgid "Show a short help text and exit" -msgstr "Show help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:1 #: /tmp/fish/implicit/share/completions/iex.fish:1 -#, fuzzy msgid "Prints version and exit" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:2 #: /tmp/fish/implicit/share/completions/iex.fish:2 -#, fuzzy msgid "Evaluates the given command" -msgstr "Evaluate parameters as a command" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:3 #: /tmp/fish/implicit/share/completions/iex.fish:3 @@ -17560,9 +16409,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:4 #: /tmp/fish/implicit/share/completions/iex.fish:4 -#, fuzzy msgid "Finds and executes the given script" -msgstr "Don't execute preun scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:5 #: /tmp/fish/implicit/share/completions/iex.fish:5 @@ -17581,9 +16429,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:8 #: /tmp/fish/implicit/share/completions/iex.fish:8 -#, fuzzy msgid "Start the given app and its dependencies" -msgstr "Print important dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:9 #: /tmp/fish/implicit/share/completions/iex.fish:9 @@ -17620,14 +16467,12 @@ msgid "Does not halt the Erlang VM after execution" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:1 -#, fuzzy msgid "do not do interactive display; implies -q" -msgstr "Do no interactive prompting" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:2 -#, fuzzy msgid "change to directory DIR" -msgstr "Change directory" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:3 msgid "start a server in the background" @@ -17654,9 +16499,8 @@ msgid "do not load loadup.el into bare Emacs" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:9 -#, fuzzy msgid "do not load site-start.el" -msgstr "Do not load init files" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:10 msgid "do not add site-lisp directories to load-path" @@ -17692,9 +16536,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:18 #: /tmp/fish/implicit/share/completions/emacs.fish:19 -#, fuzzy msgid "evaluate Emacs Lisp expression EXPR" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:20 #: /tmp/fish/implicit/share/completions/emacs.fish:21 @@ -17707,14 +16550,12 @@ msgid "call Emacs Lisp function FUNC with no arguments" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:23 -#, fuzzy msgid "insert contents of FILE into current buffer" -msgstr "List contents of directory" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:24 -#, fuzzy msgid "exit without asking for confirmation" -msgstr "Ask for confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:25 msgid "load Emacs Lisp FILE using the load function" @@ -17725,23 +16566,20 @@ msgid "override color mode for character terminals" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:28 -#, fuzzy msgid "window background color" -msgstr "Change background color" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:29 msgid "disable many display features; used for debugging Emacs" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:30 -#, fuzzy msgid "main border color" -msgstr "Change background color" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:31 -#, fuzzy msgid "width of main border" -msgstr "Size of the inner border" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:32 msgid "color of the Emacs cursor indicating point" @@ -17752,9 +16590,8 @@ msgid "default font; must be fixed-width" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:34 -#, fuzzy msgid "window foreground color" -msgstr "Start in foreground mode" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:35 msgid "make the first frame high as the screen" @@ -17802,9 +16639,8 @@ msgid "title for initial Emacs frame" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:46 -#, fuzzy msgid "disable blinking cursor" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:47 msgid "switch foreground and background" @@ -17815,14 +16651,12 @@ msgid "enable vertical scroll bars" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:50 -#, fuzzy msgid "set additional X resources" -msgstr "An additional command is required" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:51 -#, fuzzy msgid "set parent window" -msgstr "Select root window" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:1 #: /tmp/fish/implicit/share/completions/equery.fish:1 @@ -17847,12 +16681,10 @@ msgstr "" "completion" #: /tmp/fish/implicit/share/completions/emerge.fish:4 -#, fuzzy msgid "" "Print completions for all packages including the version compare if that is " "already typed" msgstr "" -"Prints completions for installed packages on the system from /var/db/pkg" #: /tmp/fish/implicit/share/completions/emerge.fish:5 msgid "Synchronize the portage tree" @@ -17863,14 +16695,12 @@ msgid "Get informations to include in bug reports" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:7 -#, fuzzy msgid "Displays the version number of emerge" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:8 -#, fuzzy msgid "Displays help information for emerge" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:9 msgid "Remove packages that will not affect the functionality of the system" @@ -17886,45 +16716,36 @@ msgid "WARNING: Delete all packages that are neither deps nor in world" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:12 -#, fuzzy msgid "Process all meta-cache files" -msgstr "Process all packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:13 -#, fuzzy msgid "WARNING: Remove all but the latest version of package" msgstr "" -"Removes all but the most recently installed version of a package from your " -"system" #: /tmp/fish/implicit/share/completions/emerge.fish:14 msgid "Check and update the dependency cache" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:15 -#, fuzzy msgid "Resume the last merge operation" -msgstr "Check only the last generation" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:16 -#, fuzzy msgid "Search for matches in the portage tree" msgstr "" -"Searches for matches of the supplied string in the current local portage tree" #: /tmp/fish/implicit/share/completions/emerge.fish:17 msgid "Search for matches in package names and descriptions" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:18 -#, fuzzy msgid "WARNING: Remove the given package" -msgstr "Remove the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:19 -#, fuzzy msgid "Update the given package" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:20 msgid "Sort flag lists alphabetically" @@ -17939,41 +16760,36 @@ msgid "Build a binary package additionally" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:23 -#, fuzzy msgid "Only build a binary package" -msgstr "Rebuild a package" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:24 msgid "Show changelog of package. Use with --pretend" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:25 -#, fuzzy msgid "Toggle colorized output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:26 msgid "Align output. Use with --pretend" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:27 -#, fuzzy msgid "Run in debug mode" -msgstr "Run in dummy mode" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:28 msgid "Consider the whole dependency tree" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:29 -#, fuzzy msgid "Reinstall all world packages" -msgstr "Reinstall the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:30 -#, fuzzy msgid "Only download the packages but don't install them" -msgstr "Orders the package listing by install time" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:31 msgid "Same as --fetchonly and grab all potential files" @@ -17992,118 +16808,100 @@ msgid "Ignore EMERGE_DEFAULT_OPTS" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:35 -#, fuzzy msgid "Include installed packages with changed USE flags" -msgstr "list all packages with specified useflag" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:36 -#, fuzzy msgid "Disregard merge records" -msgstr "Disregard ignores" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:37 -#, fuzzy msgid "Don't merge dependencies" -msgstr "Don't ask for extra dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:38 -#, fuzzy msgid "Skip already installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:39 -#, fuzzy msgid "Disable the spinner" -msgstr "disable a network" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:40 -#, fuzzy msgid "Don't add packages to world" -msgstr "All packages in world" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:41 -#, fuzzy msgid "Only merge dependencies" -msgstr "Pull in build time dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:42 msgid "Display what would be done without doing it" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:43 -#, fuzzy msgid "Use a condensed output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:44 msgid "Remove the first package in the resume list. Use with --resume" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:45 -#, fuzzy msgid "Show the dependency tree" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:46 -#, fuzzy msgid "Use binary package if available" -msgstr "Use openssh if available" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:47 -#, fuzzy msgid "Only use binary packages" -msgstr "Only accept source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:48 -#, fuzzy msgid "Run in verbose mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:49 -#, fuzzy msgid "Toggle build time dependencies" -msgstr "Pull in build time dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:1 msgid "Unmount when idle for specified MINUTES" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:2 -#, fuzzy msgid "Run in the foreground" -msgstr "Send job to foreground" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:3 msgid "Verbose messages when run foreground" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:4 -#, fuzzy msgid "Run in single threaded mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:5 msgid "Enables debugging within the FUSE library" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:6 -#, fuzzy msgid "Return data even from corrupted files" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:7 msgid "Make files public to all other users" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:8 -#, fuzzy msgid "Mount the filesystem on-demand" -msgstr "Mount filesystems in fstab" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:9 -#, fuzzy msgid "Produce encrypted view of plain files" -msgstr "Produce sample configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:10 msgid "Use standard options when creating filesystem" @@ -18114,23 +16912,20 @@ msgid "Pass on options to FUSE" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:12 -#, fuzzy msgid "Don't use the default FUSE flags" -msgstr "Don't set default repository" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:13 msgid "Get password from an external program" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:14 -#, fuzzy msgid "Read password from standard input" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:15 -#, fuzzy msgid "Turn off key validation checking" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/entr.fish:1 msgid "" @@ -18143,9 +16938,8 @@ msgid "Clears the screen before running the utility" msgstr "" #: /tmp/fish/implicit/share/completions/entr.fish:4 -#, fuzzy msgid "Output version information" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:1 msgid "Redefine variable" @@ -18158,14 +16952,12 @@ msgid "Command" msgstr "Command" #: /tmp/fish/implicit/share/completions/env.fish:3 -#, fuzzy msgid "Start with an empty environment" -msgstr "Tried to pop empty environment stack." +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:4 -#, fuzzy msgid "Remove variable from the environment" -msgstr "Removes a client from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:3 msgid "" @@ -18184,14 +16976,12 @@ msgid "turns off colours" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:6 -#, fuzzy msgid "displays a help summary" -msgstr "Display summary" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:7 -#, fuzzy msgid "displays the equery version" -msgstr "display the package version" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:8 msgid "turns off pipe detection" @@ -18210,42 +17000,36 @@ msgid "stop when first match found" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:12 -#, fuzzy msgid "search in all available packages (slow)" -msgstr "List all available packages" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:13 -#, fuzzy msgid "search direct dependencies only (default)" -msgstr "List dependencies of module" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:14 msgid "search indirect dependencies (very slow)" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:15 -#, fuzzy msgid "do not show USE flags" -msgstr "Do not show flags" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:16 -#, fuzzy msgid "do not use fancy formatting" -msgstr "Could not get user information" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:17 -#, fuzzy msgid "output the timestamp of each file" -msgstr "Output the content of specified files or URLs." +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:18 msgid "output the md5sum of each file" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:19 -#, fuzzy msgid "output the type of each file" -msgstr "Output the content of specified files or URLs." +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:20 msgid "filter output based on files type or path (comma separated list)" @@ -18253,15 +17037,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:21 #: /tmp/fish/implicit/share/completions/equery.fish:25 -#, fuzzy msgid "search installed packages (default)" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:22 #: /tmp/fish/implicit/share/completions/equery.fish:26 -#, fuzzy msgid "do not search installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:23 #: /tmp/fish/implicit/share/completions/equery.fish:27 @@ -18282,89 +17064,75 @@ msgid "list only those packages that exactly match" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:31 -#, fuzzy msgid "only list installed duplicate packages" -msgstr "List installed source package\\(s\\)" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:32 -#, fuzzy msgid "report size in bytes" -msgstr "Show sizes in gigabytes" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:33 -#, fuzzy msgid "include non-installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:1 msgid "The page of the document to display" msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:2 -#, fuzzy msgid "Run evince in fullscreen mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:3 -#, fuzzy msgid "Run evince in presentation mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:4 msgid "Run evince as a previewer" msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:5 -#, fuzzy msgid "X display to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:1 -#, fuzzy msgid "Test if exercism has yet to be given the subcommand" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:3 -#, fuzzy msgid "turn on verbose logging" -msgstr "List users logged in" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:4 #: /tmp/fish/implicit/share/completions/exercism.fish:19 #: /tmp/fish/implicit/share/completions/ninja.fish:8 #: /tmp/fish/implicit/share/completions/quilt.fish:1 -#, fuzzy msgid "show help" -msgstr "Show hidden" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:5 -#, fuzzy msgid "print the version" -msgstr "Print node's version" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:6 -#, fuzzy msgid "Writes config values to a JSON file." -msgstr "Write top servers to file" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:7 -#, fuzzy msgid "Outputs useful debug information." -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:8 -#, fuzzy msgid "Downloads a solution given the ID of the latest iteration." -msgstr "Update dependencies to their latest versions" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:9 msgid "Fetches the next unsubmitted problem in each track." msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:10 -#, fuzzy msgid "Lists the available problems for a language track, given its ID." -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:11 msgid "" @@ -18391,18 +17159,16 @@ msgid "Submits a new iteration to a problem on exercism.io." msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:16 -#, fuzzy msgid "Lists the available language tracks." -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:17 msgid "REMOVED" msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:18 -#, fuzzy msgid "Upgrades the CLI to the latest released version." -msgstr "Update dependencies to their latest versions" +msgstr "" #: /tmp/fish/implicit/share/completions/exit.fish:2 msgid "Quit with normal exit status" @@ -18421,9 +17187,8 @@ msgid "have tabs NUMBER characters apart, not 8" msgstr "" #: /tmp/fish/implicit/share/completions/expand.fish:3 -#, fuzzy msgid "use comma separated list of explicit tab positions" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:1 msgid "create a backup of one or several jails" @@ -18442,9 +17207,8 @@ msgid "jail" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:3 -#, fuzzy msgid "manage specific jails" -msgstr "Use specific conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:5 msgid "attach your console to a running jail" @@ -18467,9 +17231,8 @@ msgid "create the basejail from binary packages" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:13 -#, fuzzy msgid "list all jails" -msgstr "Print all names" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:14 msgid "restart a running jail" @@ -18496,20 +17259,17 @@ msgid "check for reasons for the jails to fail" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:24 -#, fuzzy msgid "create or update the basejail from source" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:1 #: /tmp/fish/implicit/share/completions/pkgfile.fish:2 -#, fuzzy msgid "show this help message and exit" -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:2 -#, fuzzy msgid "print detailed info about command NAME" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:3 msgid "formats --list, choices: short, normal, nested" @@ -18524,9 +17284,8 @@ msgid "Force sudo password prompt up-front" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:6 -#, fuzzy msgid "print list of possible commands and exit" -msgstr "A list of possible arguments" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:7 msgid "comma separated KEY=VALUE pairs to set Fab env vars" @@ -18538,9 +17297,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:9 #: /tmp/fish/implicit/share/completions/pkgfile.fish:1 -#, fuzzy msgid "show program's version number and exit" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:10 msgid "don't user the running SSH agent" @@ -18555,19 +17313,16 @@ msgid "abort instead of prompting (for password, host, etc)" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:13 -#, fuzzy msgid "specify location of config file to use" -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:14 -#, fuzzy msgid "Color error output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:15 -#, fuzzy msgid "do not load user known_hosts file" -msgstr "Do not load init files" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:16 msgid "disconnect from hosts as soon as possible" @@ -18582,9 +17337,8 @@ msgid "gateway host to connect through" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:19 -#, fuzzy msgid "Use GSS-API authentication" -msgstr "force preauthentication" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:20 msgid "Delegate GSS-API client credentials or not" @@ -18595,14 +17349,12 @@ msgid "Perform GSS-API Key Exchange and user authentication" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:22 -#, fuzzy msgid "comma-separated list of output levels to hide" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:23 -#, fuzzy msgid "comma-separated list of hosts to operate on" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:24 msgid "path to SSH private key file. May be repeated." @@ -18629,9 +17381,8 @@ msgid "do not use pseudo-terminal in run/sudo" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:30 -#, fuzzy msgid "password for use with authentication and/or sudo" -msgstr "Prompt for password for authenticating server" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:31 msgid "default to parallel execution method" @@ -18654,18 +17405,16 @@ msgid "load system known_hosts file before reading user known_hosts" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:36 -#, fuzzy msgid "comma-separated list of roles to operate on" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:37 msgid "specify a new shell, defaults to '/bin/bash -l -c'" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:38 -#, fuzzy msgid "comma-separated list of output levels to show" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:39 msgid "skip over hosts that can't be reached" @@ -18676,19 +17425,16 @@ msgid "skip over unknown tasks" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:41 -#, fuzzy msgid "Path to SSH config file" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:42 -#, fuzzy msgid "set connection timeout to N seconds" -msgstr "Set the connect timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:43 -#, fuzzy msgid "set remote command timeout to N seconds" -msgstr "Set the default SCSI command timeout value to # seconds" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:44 msgid "username to use when connecting to remote hosts" @@ -18699,18 +17445,16 @@ msgid "warn, instead of abort, when commands fail" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:46 -#, fuzzy msgid "comma-separated list of hosts to exclude" -msgstr "Specify a comma-separated list of directories you wish to exclude" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:47 msgid "number of concurrent processes to use in parallel mode" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:1 -#, fuzzy msgid "Specify a shell command as action to perform on the image" -msgstr "Specify root directory for rpm operations" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:2 msgid "Zoom pictures to screen size" @@ -18737,33 +17481,28 @@ msgid "Exit feh after one loop through the slideshow" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:8 -#, fuzzy msgid "Draw the defined actions" -msgstr "Show the exited containers" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:9 -#, fuzzy msgid "Display some EXIF information" -msgstr "Display RubyGems environmental information" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:10 -#, fuzzy msgid "Draw filename" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:11 msgid "Show overlay texts on semi-transparent background" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:12 -#, fuzzy msgid "Set global font" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:13 -#, fuzzy msgid "Add given path as directory to search fonts" -msgstr "display path used to search for gems" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:14 msgid "Disable antialiasing for zooming, bg settings, etc." @@ -18778,32 +17517,28 @@ msgid "Limit window size. Format: [w x h] [+ x + y]" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:17 -#, fuzzy msgid "Hide pointer" -msgstr "Job list pointer" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:18 msgid "Use style as background for transparent image parts" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:19 -#, fuzzy msgid "Enable index mode" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:20 -#, fuzzy msgid "Show image information based on given format" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:21 msgid "Execute given command line and display its output" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:22 -#, fuzzy msgid "Keep files fetched using HTTP" -msgstr "Skip files matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:23 msgid "Disable strict hostname and peer checking with HTTPS" @@ -18838,14 +17573,12 @@ msgid "Only show image which are larger then given size" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:31 -#, fuzzy msgid "Enable montage mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:32 -#, fuzzy msgid "Disable slideshow mode" -msgstr "Disable sitecustomize.pl" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:33 msgid "Don't jump to first image after resorting filelist" @@ -18860,37 +17593,32 @@ msgid "Don't limit window to screen size" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:36 -#, fuzzy msgid "Disable Xinerama support" -msgstr "Disable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:37 -#, fuzzy msgid "Save files to given directory" -msgstr "Extract files to current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:38 msgid "Preload images" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:39 -#, fuzzy msgid "Don't report non-fatal errors" -msgstr "Don't continue after an error" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:40 msgid "Randomize file list before displaying" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:41 -#, fuzzy msgid "Recursivly expand any directory" -msgstr "Recursively compare subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:42 -#, fuzzy msgid "Don't recursively expand any directory (default)" -msgstr "Binstub destination directory (default bin)" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:43 msgid "Reload filelist after given time in second" @@ -18919,23 +17647,20 @@ msgid "Sort file list with given parameter" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:49 -#, fuzzy msgid "Start the filelist at given filename" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:50 -#, fuzzy msgid "Load options from given config file" -msgstr "Load cookies from file" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:51 msgid "Set given title for window opended from thumbnail mode" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:52 -#, fuzzy msgid "Set window title" -msgstr "Select window by id" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:53 msgid "Just print names of images that can't be loaded by imlib2" @@ -18962,9 +17687,8 @@ msgid "Limit montage's height" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:61 -#, fuzzy msgid "Limit montage's width" -msgstr "Line width" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:62 msgid "Save created montage to given file" @@ -18995,9 +17719,8 @@ msgid "Set font to print title on index" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:69 -#, fuzzy msgid "Center file on background" -msgstr "Send job to background" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:70 msgid "Fit file into background by zooming until image fits" @@ -19018,47 +17741,40 @@ msgid "Tile image if too small for screen" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:74 -#, fuzzy msgid "Do not write a ~/.fehbg file" -msgstr "Do not overwrite newer files" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:1 -#, fuzzy msgid "Select font" -msgstr "Select one patch" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:2 -#, fuzzy msgid "Change font directory" -msgstr "Change directory" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:3 -#, fuzzy msgid "Center output horizontally" -msgstr "Numeric output only" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:4 msgid "Make output flush-left" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:5 -#, fuzzy msgid "Make output flush-right" -msgstr "Make output a valid ed script" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:6 msgid "Set justification according to text direction" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:7 -#, fuzzy msgid "Set output to terminal width" -msgstr "Never write output to terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:8 -#, fuzzy msgid "Set output width" -msgstr "Select output delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:10 msgid "Put FIGlet back to normal" @@ -19069,9 +17785,8 @@ msgid "Switch to German (ISO 646-DE) character set" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:12 -#, fuzzy msgid "Turns off German character set processing" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:13 msgid "Add given control file" @@ -19090,33 +17805,28 @@ msgid "Specify layout mode between 1 and 63" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:21 -#, fuzzy msgid "Print version and copyright" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:22 -#, fuzzy msgid "Print information given infocode" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:23 -#, fuzzy msgid "Print left-to-right" -msgstr "Print file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:24 msgid "Print right-to-left" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:25 -#, fuzzy msgid "Print with default text direction" -msgstr "Print the working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:1 -#, fuzzy msgid "Do not prepend filenames to output lines" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:2 msgid "Print the parsed form of the magic file" @@ -19127,18 +17837,16 @@ msgid "Write an output file containing a pre-parsed version of file" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:4 -#, fuzzy msgid "Do not follow symlinks" -msgstr "Don't follow symlinks" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:5 msgid "Output mime type strings instead human readable strings" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:6 -#, fuzzy msgid "Don't stop at the first match" -msgstr "Do not sign the patch" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:8 msgid "Flush stdout after checking each file" @@ -19161,9 +17869,8 @@ msgid "Read block and character device files too" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:13 -#, fuzzy msgid "Print the version of the program and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:14 msgid "Try to look inside compressed files" @@ -19171,9 +17878,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:15 #: /tmp/fish/implicit/share/completions/gv.fish:33 -#, fuzzy msgid "Print a help message and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:16 msgid "Read the names of the files to be examined from a file" @@ -19184,14 +17890,12 @@ msgid "Use other string as result field separator instead of :" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:18 -#, fuzzy msgid "Alternate list of files containing magic numbers" -msgstr "print size of files contained in package" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:1 -#, fuzzy msgid "Never follow symlinks" -msgstr "Never follow symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:3 msgid "" @@ -19204,9 +17908,8 @@ msgid "Measure from the beginning of today rather than from 24 hours ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:5 -#, fuzzy msgid "Process subdirectories before the directory itself" -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:7 msgid "" @@ -19238,28 +17941,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:13 -#, fuzzy msgid "Specify regular expression type" -msgstr "Specify keyword expansion mode." +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:15 -#, fuzzy msgid "Turn warnings on" -msgstr "Force warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:16 -#, fuzzy msgid "Turn warnings off" -msgstr "Force warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:17 msgid "File last accessed specified number of minutes ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:18 -#, fuzzy msgid "File last accessed more recently than file was modified" -msgstr "Show last revision where each line was modified" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:19 msgid "File last accessed specified number of days ago" @@ -19283,44 +17982,36 @@ msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:24 #: /tmp/fish/implicit/share/completions/test.fish:31 -#, fuzzy msgid "File is executable" -msgstr "File is writable" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:25 -#, fuzzy msgid "Always false" -msgstr "Always reformat" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:26 -#, fuzzy msgid "File is on filesystem of specified type" -msgstr "Show file systems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:27 -#, fuzzy msgid "Numeric group id of file" -msgstr "Numeric output only" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:28 -#, fuzzy msgid "Group name of file" -msgstr "Print inode number of files" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:29 -#, fuzzy msgid "File is symlink matching specified case insensitive pattern" -msgstr "Do not list implied entries matching specified shell pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:30 -#, fuzzy msgid "File name matches case insensitive pattern" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:31 -#, fuzzy msgid "File has specified inode number" -msgstr "Filter through specified program" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:32 msgid "File path matches case insensitive pattern" @@ -19331,32 +18022,28 @@ msgid "File name matches case insensetive regex" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:34 -#, fuzzy msgid "File has specified number of links" -msgstr "Compare only specified number of characters" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:35 -#, fuzzy msgid "File is symlink matching specified pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:36 msgid "File last modified specified number of minutes ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:37 -#, fuzzy msgid "File last modified more recently than file was modified" -msgstr "Show last revision where each line was modified" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:38 msgid "File last modified specified number of days ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:39 -#, fuzzy msgid "File name matches pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:40 msgid "No user corresponds to file's numeric user ID" @@ -19367,44 +18054,36 @@ msgid "No group corresponds to file's numeric group ID" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:42 -#, fuzzy msgid "File path matches pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:43 -#, fuzzy msgid "Files has specified permissions set" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:44 -#, fuzzy msgid "File name matches regex" -msgstr "Ignore changes matching regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:45 -#, fuzzy msgid "File refers to the same inode as specified file" -msgstr "Exclude files listed in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:46 -#, fuzzy msgid "File uses specified units of space" -msgstr "Show file systems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:47 -#, fuzzy msgid "Always true" -msgstr "Always" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:48 -#, fuzzy msgid "File is of specified type" -msgstr "Show file systems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:49 -#, fuzzy msgid "File's owner has specified numeric user ID" -msgstr "File owned by effective user ID" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:50 msgid "" @@ -19413,9 +18092,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:51 -#, fuzzy msgid "File's owner" -msgstr "File is socket" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:52 msgid "" @@ -19424,51 +18102,44 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:53 -#, fuzzy msgid "File's security context matches specified pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:54 -#, fuzzy msgid "Delete selected files" -msgstr "Delete selection" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:55 -#, fuzzy msgid "Execute specified command for each located file" -msgstr "Execute command if previous command failed" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:56 msgid "Execute specified command for each located file, in the files directory" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:57 -#, fuzzy msgid "List file in ls -dils format, write to specified file" -msgstr "Write output to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:58 -#, fuzzy msgid "Print full file names into specified file" -msgstr "Output filenames using the specified format" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:59 msgid "Print null separated full file names into specified file" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:60 -#, fuzzy msgid "Print formated data into specified file" -msgstr "Write output to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:61 msgid "Execute specified command for each located file after asking user" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:62 -#, fuzzy msgid "Print full file names" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:63 msgid "" @@ -19477,33 +18148,28 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:64 -#, fuzzy msgid "Print null separated full file names" -msgstr "Print only rcs filename" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:65 -#, fuzzy msgid "Print formated data" -msgstr "Prints formatted text" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:66 msgid "Do not recurse unless -depth is specified" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:67 -#, fuzzy msgid "Exit at once" -msgstr "Exit the shell" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:68 -#, fuzzy msgid "List file in ls -dils format" -msgstr "List bugs in rss format" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:69 -#, fuzzy msgid "Negate result of action" -msgstr "Negate exit status of job" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:70 msgid "Result is only true if both previous and next action are true" @@ -19534,9 +18200,8 @@ msgid "Output profiling information to specified file" msgstr "Output profiling information to specified file" #: /tmp/fish/implicit/share/completions/fish.fish:8 -#, fuzzy msgid "Run with the specified verbosity level" -msgstr "Output verbosity level" +msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:3 msgid "Do not indent output, only reformat into one job per line" @@ -19547,9 +18212,8 @@ msgid "Colorize the output using ANSI escape sequences" msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:5 -#, fuzzy msgid "Output in HTML format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:6 #: /tmp/fish/implicit/share/completions/sort.fish:15 @@ -19557,28 +18221,24 @@ msgid "Write to file" msgstr "Write to file" #: /tmp/fish/implicit/share/completions/fish_indent.fish:7 -#, fuzzy msgid "Enable debug at specified verbosity level" -msgstr "Output verbosity level" +msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:8 msgid "Specify how many stack frames to display in debug messages" msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:9 -#, fuzzy msgid "Dump information about parsed statements to stderr" -msgstr "Display information about a local or remote item." +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:1 -#, fuzzy msgid "Show the flac version number" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:2 -#, fuzzy msgid "Show this screen" -msgstr "Show hidden" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:3 msgid "Show detailed explanation of usage and options" @@ -19597,28 +18257,24 @@ msgid "Same as -d except an analysis file is written" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:7 -#, fuzzy msgid "Write output to stdout" -msgstr "Write output to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:8 msgid "Do not write runtime encode/decode statistics" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:9 -#, fuzzy msgid "Do not print anything including errors" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:10 -#, fuzzy msgid "Force overwriting of output files" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:11 -#, fuzzy msgid "Force the output file name" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:12 msgid "Prepend STRING to output names" @@ -19645,18 +18301,16 @@ msgid "Serial number to use for the FLAC stream" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:18 -#, fuzzy msgid "Include residual signal in text output" -msgstr "Include reverse dependencies in the output" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:19 msgid "Generate gnuplot files of residual distribution" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:20 -#, fuzzy msgid "Continue decoding through stream errors" -msgstr "Continue after an error" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:21 msgid "Set the beginning and ending cuepoints to decode [#.#][-[#.#]]" @@ -19687,9 +18341,8 @@ msgid "Add a Vorbis comment FIELD=VALUE; may appear multiple times" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:28 -#, fuzzy msgid "Read tags from file" -msgstr "Read URLs from file" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:29 msgid "Add seek point(s) {#|X|#x|#s}" @@ -19738,9 +18391,8 @@ msgid "Synonymous with -l 12 -b 4608 -m -e -r 6" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:42 -#, fuzzy msgid "Specify blocksize in samples" -msgstr "Specify sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:43 msgid "Try mid-side coding for each frame" @@ -19763,9 +18415,8 @@ msgid "Exhaustively search LP coeff quantization" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:48 -#, fuzzy msgid "Specify precision in bits" -msgstr "Specify revision states" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:49 msgid "Set [min,]max residual partition order" @@ -19777,14 +18428,12 @@ msgid "Set byte order for samples" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:52 -#, fuzzy msgid "Number of channels" -msgstr "Set number of audio channels" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:53 -#, fuzzy msgid "Number of bits per sample" -msgstr "Number of top servers" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:54 msgid "Sample rate in Hz" @@ -19796,9 +18445,8 @@ msgid "Sign of samples" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:57 -#, fuzzy msgid "Size of the raw input in bytes" -msgstr "Size of the inner border" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:58 msgid "Force decoding to AIFF format" @@ -19813,9 +18461,8 @@ msgid "No adaptive mid-side coding for all frames" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:61 -#, fuzzy msgid "Don't continue decoding through stream errors" -msgstr "Don't continue after an error" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:62 msgid "Don't delete after a successful encode/decode" @@ -19826,9 +18473,8 @@ msgid "No exhaustive model search" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:64 -#, fuzzy msgid "Don't allow encoder to generate non-Subset files" -msgstr "Don't include RDoc generated documents" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:65 msgid "Don't try mid-side coding for each frame" @@ -19855,9 +18501,8 @@ msgid "Don't generate gnuplot files of residual distribution" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:71 -#, fuzzy msgid "Don't include residual signal in text output" -msgstr "Don't include reverse dependencies in the output" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:72 msgid "Don't align multiple files on sector boundaries" @@ -19868,14 +18513,12 @@ msgid "Write runtime encode/decode statistics" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:74 -#, fuzzy msgid "Don't force overwriting of output files" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:75 -#, fuzzy msgid "Don't verify a correct encoding" -msgstr "Don't verify package or header digests when reading" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:1 msgid "Install an application or runtime from a remote" @@ -19886,33 +18529,28 @@ msgid "Update an installed application or runtime" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:3 -#, fuzzy msgid "Uninstall an installed application or runtime" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:4 -#, fuzzy msgid "List installed apps and/or runtimes" -msgstr "List installed source package\\(s\\)" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:5 msgid "Show info for installed app or runtime" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:6 -#, fuzzy msgid "Run an application" -msgstr "Print xdg mime applications" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:7 -#, fuzzy msgid "Override permissions for an application" -msgstr "Open file in default application" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:8 -#, fuzzy msgid "Specify default version to run" -msgstr "Specify version of gem to unpack" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:9 msgid "Enter the namespace of a running application" @@ -19923,67 +18561,56 @@ msgid "Grant an application access to a specific file" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:11 -#, fuzzy msgid "Revoke access to a specific file" -msgstr "Check against a specific source" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:12 -#, fuzzy msgid "Show information about a specific file" -msgstr "Show full information for specified packages" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:13 -#, fuzzy msgid "List exported files" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:14 -#, fuzzy msgid "Add a new remote repository (by URL)" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:15 msgid "Modify properties of a configured remote" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:16 -#, fuzzy msgid "Delete a configured remote" -msgstr "Creates a configuration profile" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:17 -#, fuzzy msgid "List all configured remotes" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:18 -#, fuzzy msgid "List contents of a configured remote" -msgstr "List contents of directory" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:19 -#, fuzzy msgid "Initialize a directory for building" -msgstr "Base directory for output" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:20 -#, fuzzy msgid "Run a build command inside the build dir" -msgstr "Run a builtin command instead of a function" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:21 msgid "Finish a build dir for export" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:22 -#, fuzzy msgid "Export a build dir to a repository" -msgstr "Add a new file/directory to the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:23 -#, fuzzy msgid "Create a bundle file from a build directory" -msgstr "Cleans up unused gems in your bundler directory" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:24 msgid "Import a bundle file" @@ -19994,14 +18621,12 @@ msgid "Sign an application or runtime" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:26 -#, fuzzy msgid "Update the summary file in a repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:1 -#, fuzzy msgid "Add files to checkout" -msgstr "Append files to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:2 #: /tmp/fish/implicit/share/completions/fossil.fish:8 @@ -20013,17 +18638,15 @@ msgstr "Append files to archive" #: /tmp/fish/implicit/share/completions/fossil.fish:202 #: /tmp/fish/implicit/share/completions/fossil.fish:211 #: /tmp/fish/implicit/share/completions/fossil.fish:300 -#, fuzzy msgid "Case insensitive file matching" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:3 #: /tmp/fish/implicit/share/completions/fossil.fish:9 #: /tmp/fish/implicit/share/completions/fossil.fish:78 #: /tmp/fish/implicit/share/completions/fossil.fish:130 -#, fuzzy msgid "Include dotfiles" -msgstr "Exclude file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:4 #: /tmp/fish/implicit/share/completions/fossil.fish:5 @@ -20031,14 +18654,12 @@ msgstr "Exclude file" #: /tmp/fish/implicit/share/completions/fossil.fish:11 #: /tmp/fish/implicit/share/completions/fossil.fish:79 #: /tmp/fish/implicit/share/completions/fossil.fish:131 -#, fuzzy msgid "Files to ignore" -msgstr "Specify files to ignore" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:7 -#, fuzzy msgid "Remove and add files to checkout" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:12 #: /tmp/fish/implicit/share/completions/fossil.fish:82 @@ -20050,80 +18671,66 @@ msgid "Display actions without running" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:13 -#, fuzzy msgid "Check all repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:14 -#, fuzzy msgid "List changes" -msgstr "No changes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:15 #: /tmp/fish/implicit/share/completions/fossil.fish:16 -#, fuzzy msgid "Ignore repository" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:17 -#, fuzzy msgid "Display locations" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:18 -#, fuzzy msgid "Pull repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:19 -#, fuzzy msgid "Push repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:20 -#, fuzzy msgid "Rebuild repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:21 -#, fuzzy msgid "Sync repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:22 -#, fuzzy msgid "Shows file modifications" -msgstr "Disallow file modification" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:23 -#, fuzzy msgid "Show file versions" -msgstr "Show each gem version" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:24 -#, fuzzy msgid "List all analyzed versions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:25 #: /tmp/fish/implicit/share/completions/fossil.fish:137 -#, fuzzy msgid "Limit analyzed versions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:26 msgid "Find regressions" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:27 -#, fuzzy msgid "Identify version as not working" -msgstr "Identify as agent-string" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:28 -#, fuzzy msgid "Identify version as working" -msgstr "Identify as agent-string" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:29 #: /tmp/fish/implicit/share/completions/fossil.fish:39 @@ -20136,14 +18743,12 @@ msgid "Show log of bisects in check-in order" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:31 -#, fuzzy msgid "Skip version" -msgstr "Sort by version" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:32 -#, fuzzy msgid "Show bisect options" -msgstr "Show all options" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:33 #: /tmp/fish/implicit/share/completions/fossil.fish:36 @@ -20165,9 +18770,8 @@ msgid "List versions between bad and good" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:41 -#, fuzzy msgid "Don't show anything" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:42 msgid "Reinitialize bisect" @@ -20176,69 +18780,57 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:44 #: /tmp/fish/implicit/share/completions/fossil.fish:45 #: /tmp/fish/implicit/share/completions/fossil.fish:46 -#, fuzzy msgid "Show all versions" -msgstr "Show all options" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:47 -#, fuzzy msgid "Undo latest bad/good command." -msgstr "End a block of commands" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:48 #: /tmp/fish/implicit/share/completions/git.fish:88 -#, fuzzy msgid "Create a new branch" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:49 -#, fuzzy msgid "Create new branch" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:50 -#, fuzzy msgid "Make branch local" -msgstr "Make variable scope local" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:51 -#, fuzzy msgid "Set background color" -msgstr "Change background color" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:52 #: /tmp/fish/implicit/share/completions/fossil.fish:106 -#, fuzzy msgid "Don't sign the branch with GPG" -msgstr "Do not sign the patch" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:53 #: /tmp/fish/implicit/share/completions/fossil.fish:155 -#, fuzzy msgid "Override date" -msgstr "Override framerate" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:54 -#, fuzzy msgid "Override user" -msgstr "Override framerate" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:55 -#, fuzzy msgid "List branches" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:56 #: /tmp/fish/implicit/share/completions/fossil.fish:57 -#, fuzzy msgid "Show all branches" -msgstr "Show all containers" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:58 #: /tmp/fish/implicit/share/completions/fossil.fish:59 -#, fuzzy msgid "Show closed branches" -msgstr "Show held packages" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:60 #: /tmp/fish/implicit/share/completions/fossil.fish:62 @@ -20248,39 +18840,33 @@ msgstr "Show held packages" #: /tmp/fish/implicit/share/completions/fossil.fish:177 #: /tmp/fish/implicit/share/completions/fossil.fish:180 #: /tmp/fish/implicit/share/completions/fossil.fish:267 -#, fuzzy msgid "Run command on repository" -msgstr "Run command in current process" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:61 -#, fuzzy msgid "Print a file" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:63 #: /tmp/fish/implicit/share/completions/fossil.fish:140 -#, fuzzy msgid "Print specific revision" -msgstr "Print svn revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:64 -#, fuzzy msgid "List local changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:65 #: /tmp/fish/implicit/share/completions/fossil.fish:128 #: /tmp/fish/implicit/share/completions/fossil.fish:263 -#, fuzzy msgid "Display absolute paths" -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:66 #: /tmp/fish/implicit/share/completions/fossil.fish:132 #: /tmp/fish/implicit/share/completions/fossil.fish:264 -#, fuzzy msgid "Display relative paths" -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:67 #: /tmp/fish/implicit/share/completions/fossil.fish:265 @@ -20288,34 +18874,28 @@ msgid "Verify file status using SHA1" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:68 -#, fuzzy msgid "Identify the repository if there are changes" -msgstr "Identify the C function each change is in" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:69 -#, fuzzy msgid "Say (none) if there are no changes" -msgstr "Try operation but make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:70 -#, fuzzy msgid "Checkout version" -msgstr "Sort by version" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:71 -#, fuzzy msgid "Version to check out" -msgstr "Version of source package" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:72 -#, fuzzy msgid "Ignore edited files" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:73 -#, fuzzy msgid "Ignore missing content" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:74 msgid "Only update the manifest" @@ -20323,14 +18903,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:75 #: /tmp/fish/implicit/share/completions/fossil.fish:302 -#, fuzzy msgid "Update to latest version" -msgstr "Update dependencies to their latest versions" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:76 -#, fuzzy msgid "Delete all extra files" -msgstr "Delete cached header files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:80 #: /tmp/fish/implicit/share/completions/fossil.fish:212 @@ -20338,24 +18916,20 @@ msgid "Files to clean without prompting" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:81 -#, fuzzy msgid "Remove without prompting" -msgstr "Remove property" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:83 -#, fuzzy msgid "Only remove Fossil temporary files" -msgstr "Use tmpdir for temporary files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:84 -#, fuzzy msgid "Show removed files" -msgstr "Move or rename files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:85 -#, fuzzy msgid "Clone repository" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:86 #: /tmp/fish/implicit/share/completions/fossil.fish:154 @@ -20371,9 +18945,8 @@ msgid "Use SSL identity" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:89 -#, fuzzy msgid "Create new revision" -msgstr "Force new revision" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:91 msgid "Allow unresolved merge conflicts" @@ -20416,38 +18989,32 @@ msgid "Use a delta manifest" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:101 -#, fuzzy msgid "Commit comment" -msgstr "Comment" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:102 -#, fuzzy msgid "Read commit comment from a file" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:103 -#, fuzzy msgid "Mimetype of commit comment" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:105 -#, fuzzy msgid "Omit all warnings" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:107 -#, fuzzy msgid "Don't sync the changes" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:108 msgid "Assign a tag to the checkin" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:109 -#, fuzzy msgid "Show differences" -msgstr "Ignore case differences" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:110 #: /tmp/fish/implicit/share/completions/fossil.fish:165 @@ -20456,38 +19023,32 @@ msgid "Binary files glob pattern" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:111 -#, fuzzy msgid "Show diff of branch" -msgstr "Show hierarchy" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:112 -#, fuzzy msgid "Show file names only" -msgstr "Log filename" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:113 -#, fuzzy msgid "Context lines" -msgstr "Set context size" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:114 -#, fuzzy msgid "Include binary files" -msgstr "Annotate binary files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:115 msgid "Select revision to compare with" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:116 -#, fuzzy msgid "Use internal diff logic" -msgstr "Use external diff command" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:117 -#, fuzzy msgid "Side-by-side diff" -msgstr "Use side-by-side format" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:118 msgid "Launch GUI" @@ -20498,76 +19059,64 @@ msgid "Select revision to compare to" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:120 -#, fuzzy msgid "Unified diff" -msgstr "Use unified format" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:121 -#, fuzzy msgid "Output complete text" -msgstr "Output mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:122 -#, fuzzy msgid "Line width in side-by-side diff" -msgstr "Set column width for side-by-side format" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:123 -#, fuzzy msgid "Export repository to git" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:124 msgid "Export rids of exported data to file" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:125 -#, fuzzy msgid "Read rids of data to ignore from file" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:127 msgid "Show files that aren't part of checkout" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:133 -#, fuzzy msgid "Print complete file history" -msgstr "Print only file info" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:134 -#, fuzzy msgid "Display one-line summary" -msgstr "Display summary" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:136 -#, fuzzy msgid "Select log mode (default)" -msgstr "Select entire command line (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:138 -#, fuzzy msgid "Skip changes" -msgstr "No changes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:139 -#, fuzzy msgid "Select print mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:141 -#, fuzzy msgid "Select status mode" -msgstr "Select a method" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:143 msgid "Show main and auxiliary commands" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:144 -#, fuzzy msgid "Show test commands only" -msgstr "Do not execute commands" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:145 msgid "Show auxilary commands only" @@ -20578,44 +19127,37 @@ msgid "Show list of web UI pages" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:147 -#, fuzzy msgid "Import repository from git" -msgstr "Compress repository with" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:148 -#, fuzzy msgid "Allow importing into existing repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:149 -#, fuzzy msgid "Provide information about object" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:151 #: /tmp/fish/implicit/share/completions/fossil.fish:170 -#, fuzzy msgid "Show extra information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:152 -#, fuzzy msgid "Create a repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:153 -#, fuzzy msgid "Copy settings from repository" -msgstr "Restore files from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:156 msgid "Make JSON request" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:158 -#, fuzzy msgid "List files" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:159 #: /tmp/fish/implicit/share/completions/fossil.fish:163 @@ -20631,24 +19173,20 @@ msgid "Tag" msgstr "Tag" #: /tmp/fish/implicit/share/completions/fossil.fish:160 -#, fuzzy msgid "Show commit time" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:161 -#, fuzzy msgid "Provide extra information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:162 -#, fuzzy msgid "Merge commits" -msgstr "Merge sorted files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:164 -#, fuzzy msgid "Use baseline" -msgstr "Use fast setting" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:167 msgid "Allow empty merge" @@ -20659,14 +19197,12 @@ msgid "Close merged branch" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:171 -#, fuzzy msgid "Move file" -msgstr "Archive file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:173 -#, fuzzy msgid "Open repository" -msgstr "Dumps the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:174 msgid "Only modify manifest" @@ -20677,55 +19213,45 @@ msgid "Allow opening inside an opened repository" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:176 -#, fuzzy msgid "Pull from a repository" -msgstr "Dumps the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:178 #: /tmp/fish/implicit/share/completions/fossil.fish:181 -#, fuzzy msgid "Pull private branches" -msgstr "Multiple vendor branch" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:179 -#, fuzzy msgid "Push into a repository" -msgstr "Dumps the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:182 -#, fuzzy msgid "Rebuild a repository" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:183 -#, fuzzy msgid "Compute clusters" -msgstr "Compress faster" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:184 -#, fuzzy msgid "Compress database" -msgstr "Compress all data" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:185 -#, fuzzy msgid "Force rebuild even with errors" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:186 -#, fuzzy msgid "Skip BLOB table verification" -msgstr "Skip the signature verification step" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:187 -#, fuzzy msgid "Set the database pagesize" -msgstr "Set the native character set" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:188 -#, fuzzy msgid "Scan in random order" -msgstr "Play in random order" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:189 msgid "Run VACUUM" @@ -20744,34 +19270,28 @@ msgid "Set Write-Ahead-Log journalling" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:193 -#, fuzzy msgid "Show statistics" -msgstr "Show cache statistics" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:194 -#, fuzzy msgid "Default server URL" -msgstr "Set referer URL" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:195 -#, fuzzy msgid "Revert a commit" -msgstr "Report on each commit" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:197 -#, fuzzy msgid "Revert back to given revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:198 -#, fuzzy msgid "Remove a file from repository" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:199 -#, fuzzy msgid "Remove files from this checkout" -msgstr "Remove files from version control" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:200 msgid "Skip removing files from this checkout" @@ -20782,19 +19302,16 @@ msgid "Display actions without runing" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:203 -#, fuzzy msgid "Manage settings" -msgstr "Manage abbreviations" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:204 -#, fuzzy msgid "Log accesses" -msgstr "Log message." +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:205 -#, fuzzy msgid "Allow symbolic links" -msgstr "Always follow symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:206 msgid "Allow automatically filling CAPTCHA" @@ -20809,9 +19326,8 @@ msgid "Pull list of shunned references from server" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:209 -#, fuzzy msgid "Automatically sync the repository" -msgstr "Dumps the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:213 msgid "Sign commits using GPG" @@ -20830,23 +19346,20 @@ msgid "Allow binary files to be diffed" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:217 -#, fuzzy msgid "External diff command" -msgstr "Use external diff command" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:218 -#, fuzzy msgid "Disallow pushing to the repository" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:219 msgid "Text editor for writing check-in comments" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:220 -#, fuzzy msgid "List of empty directories" -msgstr "Prune empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:221 msgid "Non-UTF-8 files glob pattern" @@ -20869,9 +19382,8 @@ msgid "Send login credentials using HTTPS" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:226 -#, fuzzy msgid "Files to ignore glob pattern" -msgstr "Files to ignore during import" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:227 msgid "Files to keep when cleaning" @@ -20894,14 +19406,12 @@ msgid "HTTP request size limit" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:232 -#, fuzzy msgid "Use modification times" -msgstr "Change modification time" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:233 -#, fuzzy msgid "PGP command" -msgstr "Job command" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:234 msgid "HTTP proxy URL" @@ -20912,9 +19422,8 @@ msgid "Report relative paths" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:236 -#, fuzzy msgid "Compute checksums over all files" -msgstr "Write size for all files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:237 msgid "Allow users to register themselves" @@ -20929,14 +19438,12 @@ msgid "Location of SSL CA root certificates" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:240 -#, fuzzy msgid "SSL private certificate path" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:241 -#, fuzzy msgid "Allow Tcl scripting" -msgstr "Tcl section" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:242 msgid "Tcl initialization script" @@ -20947,49 +19454,42 @@ msgid "TH1 initialization script" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:244 -#, fuzzy msgid "Web browser name" -msgstr "Set server name" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:245 msgid "Set globally" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:246 -#, fuzzy msgid "Run SQL commands" -msgstr "End of command" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:247 msgid "Manage stashes" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:248 -#, fuzzy msgid "Save current changes" -msgstr "Make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:249 #: /tmp/fish/implicit/share/completions/fossil.fish:250 -#, fuzzy msgid "Stash comment" -msgstr "Set comment leader." +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:251 -#, fuzzy msgid "List all stashes" -msgstr "Print all names" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:252 #: /tmp/fish/implicit/share/completions/fossil.fish:253 -#, fuzzy msgid "Show information about files" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:254 -#, fuzzy msgid "Show stash contents" -msgstr "Show all containers" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:255 msgid "Pop last stash" @@ -21013,19 +19513,16 @@ msgid "Forget ALL stashes" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:261 -#, fuzzy msgid "Compare stash" -msgstr "Compare month names" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:262 -#, fuzzy msgid "Show status" -msgstr "Show threads" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:266 -#, fuzzy msgid "Sync with a repository" -msgstr "Dumps the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:268 msgid "Sync private branches" @@ -21036,9 +19533,8 @@ msgid "Manage tags" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:270 -#, fuzzy msgid "Add tag to check-in" -msgstr "Taint checking" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:271 msgid "Add raw tag" @@ -21049,19 +19545,16 @@ msgid "Propagate tag" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:273 -#, fuzzy msgid "Remove tag from check-in" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:275 -#, fuzzy msgid "Remove raw tag" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:276 -#, fuzzy msgid "Find tag" -msgstr "Edit tag" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:277 msgid "Find raw tag" @@ -21072,70 +19565,57 @@ msgid "Find tag type" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:279 -#, fuzzy msgid "Limit number of tags" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:281 #: /tmp/fish/implicit/share/completions/git.fish:293 -#, fuzzy msgid "List tags" -msgstr "Edit tag" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:282 -#, fuzzy msgid "List raw tags" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:283 -#, fuzzy msgid "Show timeline" -msgstr "Show time type" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:284 -#, fuzzy msgid "Limit timeline entries" -msgstr "Wait time between retries" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:285 -#, fuzzy msgid "Output only event type" -msgstr "Output mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:286 -#, fuzzy msgid "Output list of files changed" -msgstr "Output 3 lines of unified context" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:287 -#, fuzzy msgid "Open web UI" -msgstr "Open file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:288 -#, fuzzy msgid "Start web server" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:289 -#, fuzzy msgid "Enable automatic login for localhost" -msgstr "Enable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:290 -#, fuzzy msgid "Only listen on localhost" -msgstr "Only print locations" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:291 -#, fuzzy msgid "Port to listen on" -msgstr "Minimum port to listen to" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:292 -#, fuzzy msgid "Trace TH1 execution" -msgstr "Force deletion" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:293 msgid "Use base URL" @@ -21154,34 +19634,28 @@ msgid "Use SCGI rather than HTTP" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:297 -#, fuzzy msgid "Undo the changes" -msgstr "Window size change" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:299 -#, fuzzy msgid "Update version" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:301 -#, fuzzy msgid "Print debug information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:304 -#, fuzzy msgid "Print information about all files" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:305 -#, fuzzy msgid "Print fossil version" -msgstr "Print node's version" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:306 -#, fuzzy msgid "Print version of optional features" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:307 #: /tmp/fish/implicit/share/completions/gpasswd.fish:3 @@ -21204,19 +19678,16 @@ msgstr "Print help" #: /tmp/fish/implicit/share/completions/funced.fish:1 #: /tmp/fish/implicit/share/completions/funcsave.fish:1 -#, fuzzy msgid "Save function" -msgstr "Erase function" +msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:2 -#, fuzzy msgid "Open function in external editor" -msgstr "Specify external editor" +msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:3 -#, fuzzy msgid "Edit in interactive mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:1 #: /tmp/fish/implicit/share/completions/functions.fish:5 @@ -21251,32 +19722,28 @@ msgid "Make the function a variable update event handler" msgstr "Make the function a variable update event handler" #: /tmp/fish/implicit/share/completions/function.fish:8 -#, fuzzy msgid "Make the function a generic event handler" -msgstr "Make the function a signal event handler" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:9 -#, fuzzy msgid "Specify named arguments" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:10 msgid "Do not shadow variable scope of calling function" msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:11 -#, fuzzy msgid "Inherit completions from the given command" -msgstr "Restrict operations to the REMOTE domain" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:1 msgid "Erase function" msgstr "Erase function" #: /tmp/fish/implicit/share/completions/functions.fish:3 -#, fuzzy msgid "Show hidden functions" -msgstr "Show hidden" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:6 msgid "Test if function is defined" @@ -21287,24 +19754,20 @@ msgid "List the names of the functions, but not their definition" msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:8 -#, fuzzy msgid "Copy the specified function to the specified new name" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:9 -#, fuzzy msgid "Display information about the function" -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:10 -#, fuzzy msgid "Print more output" -msgstr "Print xrandr outputs" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:1 -#, fuzzy msgid "Show all files specified on the command line" -msgstr "Add specified file to the current list of keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:2 msgid "Kill processes, accessing the file" @@ -21331,14 +19794,12 @@ msgid "Kill only processes which have write access" msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:8 -#, fuzzy msgid "Slect a different namespace" -msgstr "Select frontend interface" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:9 -#, fuzzy msgid "Silent operation" -msgstr "Foreground operation" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:10 msgid "Append the user name of the process owner to each PID" @@ -21373,14 +19834,12 @@ msgid "Lazy unmount" msgstr "Lazy unmount" #: /tmp/fish/implicit/share/completions/gcc.fish:1 -#, fuzzy msgid "Standard mode" -msgstr "Start in Farsi mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:2 -#, fuzzy msgid "Place output in file" -msgstr "Append output to file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:3 msgid "" @@ -21390,9 +19849,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:4 -#, fuzzy msgid "Use specified version of the C++ ABI" -msgstr "Use specified compression algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:5 #: /tmp/fish/implicit/share/completions/gcc.fish:481 @@ -21468,20 +19926,18 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:18 -#, fuzzy msgid "Display the version number and copyrights of the invoked GCC" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:19 msgid "In C mode, support all ISO C90 programs" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:20 -#, fuzzy msgid "" "Do not recognize \"asm\", \"inline\" or \"typeof\" as a keyword, so that " "code can use these words as identifiers" -msgstr "Do not recognize asm, inline or typeof keywords" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:21 #: /tmp/fish/implicit/share/completions/gcc.fish:22 @@ -21495,9 +19951,8 @@ msgid "Assert that compilation takes place in a hosted environment" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:24 -#, fuzzy msgid "Assert that compilation takes place in a freestanding environment" -msgstr "Assert freestanding environment" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:25 msgid "Accept some non-standard constructs used in Microsoft header files" @@ -21542,9 +19997,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:37 -#, fuzzy msgid "Turn off all access checking" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:38 msgid "" @@ -21599,9 +20053,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:48 -#, fuzzy msgid "Don’t emit code for implicit instantiations of inline templates, either" -msgstr "Do not emit code for implicit inline templates" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:49 msgid "" @@ -21633,10 +20086,9 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:54 -#, fuzzy msgid "" "Downgrade some diagnostics about nonconformant code from errors to warnings" -msgstr "Downgrade some errors to warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:55 msgid "Enable automatic template instantiation at link time" @@ -21655,11 +20107,10 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:58 -#, fuzzy msgid "" "Do not emit the extra code to use the routines specified in the C++ ABI for " "thread-safe initialization of local statics" -msgstr "Do not emit code for thread-safe initialization of local statics" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:59 msgid "" @@ -21675,9 +20126,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:61 -#, fuzzy msgid "Do not use weak symbol support, even if it is provided by the linker" -msgstr "Do not use weak symbol support" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:62 msgid "" @@ -21845,9 +20295,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:92 -#, fuzzy msgid "Warn if a \"@selector(" -msgstr "Write selection" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:93 msgid "" @@ -22318,9 +20767,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:186 -#, fuzzy msgid "Make all warnings into errors" -msgstr "Only output warnings and errors" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:187 msgid "This option is only active when -fstack-protector is active" @@ -22567,24 +21015,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:239 -#, fuzzy msgid "Optimize even more" -msgstr "Optimize the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:240 -#, fuzzy msgid "Optimize yet more" -msgstr "Optimize the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:241 -#, fuzzy msgid "Do not optimize" -msgstr "Do not sort" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:242 -#, fuzzy msgid "Optimize for size" -msgstr "Optimize the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:243 msgid "" @@ -22624,9 +21068,8 @@ msgid "Don’t pay attention to the \"inline\" keyword" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:250 -#, fuzzy msgid "Integrate all simple functions into their callers" -msgstr "Inject readline functions to reader" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:251 msgid "" @@ -22787,9 +21230,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:280 -#, fuzzy msgid "Perform cross-jumping transformation" -msgstr "Perform contents generation" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:281 msgid "Attempt to transform conditional jumps into branch-less equivalents" @@ -23268,9 +21710,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:380 -#, fuzzy msgid "Pass option as an option to the preprocessor" -msgstr "Do not use integrated preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:381 msgid "Predefine name as a macro, with definition 1" @@ -23293,17 +21734,14 @@ msgid "Do not predefine any system-specific or GCC-specific macros" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:385 -#, fuzzy msgid "" "Add the directory dir to the list of directories to be searched for header " "files" msgstr "" -"Sets a list of directories to search for photo viewers and keyserver helpers" #: /tmp/fish/implicit/share/completions/gcc.fish:386 -#, fuzzy msgid "Write output to file" -msgstr "Write output to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:387 msgid "Turns on all optional warnings which are desirable for normal code" @@ -23347,9 +21785,8 @@ msgid "Warn whenever an #else or an #endif are followed by text" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:396 -#, fuzzy msgid "Make all warnings into hard errors" -msgstr "Only output warnings and errors" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:397 msgid "Issue warnings for code in system headers" @@ -23441,9 +21878,8 @@ msgid "Specify the standard to which the code should conform" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:419 -#, fuzzy msgid "Split the include path" -msgstr "Include path" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:420 msgid "Do not search the standard system directories for header files" @@ -23503,9 +21939,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:432 -#, fuzzy msgid "Accept universal character names in identifiers" -msgstr "Accept $ in identifiers" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:433 msgid "" @@ -23564,9 +21999,8 @@ msgid "Inhibit generation of linemarkers in the output from the preprocessor" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:445 -#, fuzzy msgid "Do not discard comments" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:446 msgid "Do not discard comments, including during macro expansion" @@ -23579,9 +22013,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:448 -#, fuzzy msgid "Process trigraph sequences" -msgstr "Process at queue only once" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:449 msgid "" @@ -23738,9 +22171,8 @@ msgid "Compile code for little endian mode" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:486 -#, fuzzy msgid "Compile code for big endian mode" -msgstr "Compiler debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:487 msgid "Prepend the name of the cpu to all public symbol names" @@ -23760,9 +22192,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:493 -#, fuzzy msgid "Generate code for the specified ABI" -msgstr "Create window on the specified display" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:494 msgid "" @@ -23965,9 +22396,8 @@ msgid "Change only the low 8 bits of the stack pointer" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:532 -#, fuzzy msgid "Assume int to be 8 bit integer" -msgstr "Left integer not equal to right integer" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:533 #: /tmp/fish/implicit/share/completions/gcc.fish:818 @@ -24003,9 +22433,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:539 -#, fuzzy msgid "Assume that the program is arbitrarily large" -msgstr "Assume data type for binary files" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:540 #: /tmp/fish/implicit/share/completions/gcc.fish:909 @@ -24014,12 +22443,9 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:541 #: /tmp/fish/implicit/share/completions/gcc.fish:910 -#, fuzzy msgid "" "Generate code that doesn’t assume ID based shared libraries are being used" msgstr "" -"Specified the identification number of the ID based shared library being " -"compiled" #: /tmp/fish/implicit/share/completions/gcc.fish:542 msgid "" @@ -24034,9 +22460,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:547 #: /tmp/fish/implicit/share/completions/gcc.fish:743 #: /tmp/fish/implicit/share/completions/gcc.fish:744 -#, fuzzy msgid "Generate code for the specified architecture" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:548 #: /tmp/fish/implicit/share/completions/gcc.fish:549 @@ -24210,9 +22635,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:591 -#, fuzzy msgid "Produce a Mach-o bundle format file" -msgstr "Produce sample configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:592 msgid "" @@ -24449,38 +22873,32 @@ msgid "Change ABI to use double word insns" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:698 -#, fuzzy msgid "Do not use double word instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:699 -#, fuzzy msgid "Use floating point double instructions" -msgstr "Floating point exception" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:700 -#, fuzzy msgid "Do not use floating point double instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:701 -#, fuzzy msgid "Use media instructions" -msgstr "Illegal instruction" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:702 -#, fuzzy msgid "Do not use media instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:703 msgid "Use multiply and add/subtract instructions" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:704 -#, fuzzy msgid "Do not use multiply and add/subtract instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:705 msgid "" @@ -24543,48 +22961,40 @@ msgid "Use all eight media accumulator registers" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:717 -#, fuzzy msgid "Pack VLIW instructions" -msgstr "Illegal instruction" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:718 -#, fuzzy msgid "Do not pack VLIW instructions" -msgstr "Do not check any generations" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:719 msgid "Do not mark ABI switches in e_flags" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:720 -#, fuzzy msgid "Enable the use of conditional-move instructions (default)" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:721 -#, fuzzy msgid "Disable the use of conditional-move instructions" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:722 -#, fuzzy msgid "Enable the use of conditional set instructions (default)" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:723 -#, fuzzy msgid "Disable the use of conditional set instructions" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:724 -#, fuzzy msgid "Enable the use of conditional execution (default)" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:725 -#, fuzzy msgid "Disable the use of conditional execution" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:726 msgid "Run a pass to pack branches into VLIW instructions (default)" @@ -24608,9 +23018,8 @@ msgid "Enable nested conditional execution optimizations (default)" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:731 -#, fuzzy msgid "Disable nested conditional execution optimizations" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:732 msgid "" @@ -24644,9 +23053,8 @@ msgid "Generate code for the H8/300H" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:738 -#, fuzzy msgid "Generate code for the H8S" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:739 msgid "Generate code for the H8S and H8/300H in the normal mode" @@ -24734,14 +23142,12 @@ msgid "Generate the predefine, \"_SIO\", for server IO" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:764 -#, fuzzy msgid "Use GNU ld specific options" -msgstr "Edit command specific completions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:765 -#, fuzzy msgid "Use HP ld specific options" -msgstr "Edit command specific completions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:766 msgid "Generate code that uses long call sequences" @@ -24783,9 +23189,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:776 #: /tmp/fish/implicit/share/completions/gcc.fish:777 -#, fuzzy msgid "A deprecated synonym for -mtune" -msgstr "Obsolete synonym for -i" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:778 #: /tmp/fish/implicit/share/completions/gcc.fish:779 @@ -24957,16 +23362,14 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:828 -#, fuzzy msgid "Generate code for a big endian target" -msgstr "Generate a .deb file for an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:829 #: /tmp/fish/implicit/share/completions/gcc.fish:939 #: /tmp/fish/implicit/share/completions/gcc.fish:940 -#, fuzzy msgid "Generate code for a little endian target" -msgstr "Generate a .deb file for an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:830 #: /tmp/fish/implicit/share/completions/gcc.fish:831 @@ -25005,9 +23408,8 @@ msgid "Generate code that uses a single constant global pointer value" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:842 -#, fuzzy msgid "Generate code that is self-relocatable" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:843 msgid "" @@ -25090,19 +23492,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:866 -#, fuzzy msgid "Generate code for the M32R/2" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:867 -#, fuzzy msgid "Generate code for the M32R/X" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:868 -#, fuzzy msgid "Generate code for the M32R" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:869 msgid "" @@ -25190,39 +23589,33 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:885 #: /tmp/fish/implicit/share/completions/gcc.fish:886 -#, fuzzy msgid "Generate output for a 68000" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:887 #: /tmp/fish/implicit/share/completions/gcc.fish:888 -#, fuzzy msgid "Generate output for a 68020" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:889 msgid "Generate output containing 68881 instructions for floating point" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:890 -#, fuzzy msgid "Generate output for a 68030" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:891 -#, fuzzy msgid "Generate output for a 68040" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:892 -#, fuzzy msgid "Generate output for a 68060" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:893 -#, fuzzy msgid "Generate output for a CPU32" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:894 msgid "Generate output for a 520X \"coldfire\" family cpu" @@ -25242,14 +23635,12 @@ msgid "Consider type \"int\" to be 16 bits wide, like \"short int\"" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:899 -#, fuzzy msgid "Do not use the bit-field instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:900 -#, fuzzy msgid "Do use the bit-field instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:901 msgid "" @@ -25291,31 +23682,25 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:911 -#, fuzzy msgid "" "=n Specified the identification number of the ID based shared library being " "compiled" msgstr "" -"Specified the identification number of the ID based shared library being " -"compiled" #: /tmp/fish/implicit/share/completions/gcc.fish:912 #: /tmp/fish/implicit/share/completions/gcc.fish:913 -#, fuzzy msgid "Generate output for a 68HC11" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:914 #: /tmp/fish/implicit/share/completions/gcc.fish:915 -#, fuzzy msgid "Generate output for a 68HC12" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:916 #: /tmp/fish/implicit/share/completions/gcc.fish:917 -#, fuzzy msgid "Generate output for a 68HCS12" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:918 msgid "" @@ -25360,9 +23745,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:931 #: /tmp/fish/implicit/share/completions/gcc.fish:932 -#, fuzzy msgid "Always treat bit-fields as int-sized" -msgstr "All bitfields are unsigned" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:933 #: /tmp/fish/implicit/share/completions/gcc.fish:934 @@ -25371,9 +23755,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:935 #: /tmp/fish/implicit/share/completions/gcc.fish:936 -#, fuzzy msgid "Emit callgraph information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:937 #: /tmp/fish/implicit/share/completions/gcc.fish:938 @@ -25386,9 +23769,8 @@ msgid "Generate code for the 210 processor" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:943 -#, fuzzy msgid "Generate big-endian code" -msgstr "Generate man page" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:944 msgid "Generate little-endian code" @@ -25478,9 +23860,8 @@ msgid "Use floating-point coprocessor instructions" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:970 -#, fuzzy msgid "Do not use floating-point coprocessor instructions" -msgstr "Do not emit out-of-line code for inline functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:971 msgid "" @@ -25576,9 +23957,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:998 #: /tmp/fish/implicit/share/completions/gcc.fish:999 -#, fuzzy msgid "Disable (do not disable) use of the \"jal\" instruction" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1000 #: /tmp/fish/implicit/share/completions/gcc.fish:1001 @@ -25782,9 +24162,8 @@ msgid "Use hardware FPP floating point" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1055 -#, fuzzy msgid "Do not use hardware floating point" -msgstr "Do not use file completion" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1056 msgid "Return floating-point results in ac0 (fr0 in Unix assembler syntax)" @@ -25839,9 +24218,8 @@ msgid "Use \"abshi2\" pattern" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1072 -#, fuzzy msgid "Do not use \"abshi2\" pattern" -msgstr "Do not expand pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1073 msgid "Pretend that branches are expensive" @@ -25856,9 +24234,8 @@ msgid "Generate code for a system with split I&D" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1076 -#, fuzzy msgid "Generate code for a system without split I&D" -msgstr "Generate XML formatted output" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1077 msgid "Use Unix assembler syntax" @@ -26067,9 +24444,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1191 #: /tmp/fish/implicit/share/completions/gcc.fish:1195 #: /tmp/fish/implicit/share/completions/gcc.fish:1196 -#, fuzzy msgid "On System V" -msgstr "Subsystem" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1146 #: /tmp/fish/implicit/share/completions/gcc.fish:1147 @@ -26283,29 +24659,24 @@ msgid "These arguments always have to be used in conjunction" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1231 -#, fuzzy msgid "Generate code for the SH1" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1232 -#, fuzzy msgid "Generate code for the SH2" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1233 -#, fuzzy msgid "Generate code for the SH2e" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1234 -#, fuzzy msgid "Generate code for the SH3" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1235 -#, fuzzy msgid "Generate code for the SH3e" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1236 msgid "Generate code for the SH4 without a floating-point unit" @@ -26324,9 +24695,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1239 -#, fuzzy msgid "Generate code for the SH4" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1240 msgid "" @@ -26347,9 +24717,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1243 -#, fuzzy msgid "Generate code for the SH4a" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1244 msgid "" @@ -26373,9 +24742,8 @@ msgid "Use 32-bit offsets in \"switch\" tables" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1250 -#, fuzzy msgid "Enable the use of the instruction \"fmovd\"" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1251 #: /tmp/fish/implicit/share/completions/gcc.fish:1252 @@ -26563,18 +24931,16 @@ msgid "This is a synonym for -pthreads" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1300 -#, fuzzy msgid "Create a shared object" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1301 msgid "Identify the versions of each tool used by the compiler, in a \"" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1302 -#, fuzzy msgid "Refrain from adding \"" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1304 #: /tmp/fish/implicit/share/completions/gcc.fish:1305 @@ -26629,10 +24995,9 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1320 #: /tmp/fish/implicit/share/completions/gcc.fish:1321 -#, fuzzy msgid "" "Enable (disable) the use of the single instruction repeat instruction RPTS" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1322 #: /tmp/fish/implicit/share/completions/gcc.fish:1323 @@ -26765,9 +25130,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1356 #: /tmp/fish/implicit/share/completions/gcc.fish:1357 -#, fuzzy msgid "Control the treatment of literal pools" -msgstr "Control creation of sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1358 #: /tmp/fish/implicit/share/completions/gcc.fish:1359 @@ -26855,9 +25219,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1376 -#, fuzzy msgid "Ignore the #ident directive" -msgstr "Ignore zero block in archive" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1377 msgid "Don’t output a \"" @@ -26919,9 +25282,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1388 -#, fuzzy msgid "Generate instrumentation calls for entry and exit to functions" -msgstr "Generate RI documentation for the gem on install" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1389 msgid "" @@ -26951,9 +25313,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1397 -#, fuzzy msgid "=model Alter the thread-local storage model to be used" -msgstr "Specify the access model for the thread local storage pointer" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1398 msgid "" @@ -26963,14 +25324,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:1 -#, fuzzy msgid "List all options, with brief explanations" -msgstr "List all properties on files, dirs, or revisions." +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:2 -#, fuzzy msgid "Read symbol table from file file" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:3 msgid "Enable writing into executable and core files" @@ -26991,24 +25350,21 @@ msgid "Use file file as a core dump to examine" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:7 -#, fuzzy msgid "Execute GDB commands from file file" -msgstr "execute commands from file, then exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:8 msgid "Add directory to the path to search for source files" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:9 -#, fuzzy msgid "Do not execute commands from any .gdbinit files" -msgstr "Do not execute commands" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:11 #: /tmp/fish/implicit/share/completions/root.fish:1 -#, fuzzy msgid "Run in batch mode" -msgstr "Run in dummy mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:12 msgid "" @@ -27039,14 +25395,12 @@ msgid "Run GDB using a text (console) user interface" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:1 -#, fuzzy msgid "Print usage informations and quit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:2 -#, fuzzy msgid "Print the version and quit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:3 msgid "Use URL as the remote source for gems" @@ -27340,9 +25694,8 @@ msgid "Update the RubyGems system software" msgstr "Update the RubyGems system software" #: /tmp/fish/implicit/share/completions/git.fish:1 -#, fuzzy msgid "Display the manual of a git command" -msgstr "Display help about darcs and darcs commands" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:3 msgid "Run as if git was started in this directory" @@ -27357,19 +25710,16 @@ msgid "Print the path to the html documentation" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:7 -#, fuzzy msgid "Print the path to the man documentation" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:8 -#, fuzzy msgid "Print the path to the info documentation" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:9 -#, fuzzy msgid "Pipe output into a pager" -msgstr "Append output to file" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:10 #: /tmp/fish/implicit/share/completions/journalctl.fish:6 @@ -27378,29 +25728,24 @@ msgstr "Append output to file" #: /tmp/fish/implicit/share/completions/systemctl.fish:41 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:5 #: /tmp/fish/implicit/share/completions/timedatectl.fish:9 -#, fuzzy msgid "Do not pipe output into a pager" -msgstr "Could not open tty for pager" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:11 -#, fuzzy msgid "Set the path to the repository" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:12 -#, fuzzy msgid "Set the path to the working tree" -msgstr "Set the speed factor of the writing process to #" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:13 -#, fuzzy msgid "Set the namespace" -msgstr "Set volume name" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:14 -#, fuzzy msgid "Treat the repository as bare" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:15 msgid "Do not use replacement refs to replace git objects" @@ -27419,14 +25764,12 @@ msgid "Don't treat pathspecs as globs" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:19 -#, fuzzy msgid "Match pathspecs case-insensitively" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:20 -#, fuzzy msgid "Download objects and refs from another repository" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:21 msgid "Remote" @@ -27457,9 +25800,8 @@ msgstr "Branch" #: /tmp/fish/implicit/share/completions/git.fish:276 #: /tmp/fish/implicit/share/completions/mdadm.fish:12 #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:1 -#, fuzzy msgid "Be quiet" -msgstr "Run quietly" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:24 #: /tmp/fish/implicit/share/completions/git.fish:41 @@ -27471,9 +25813,8 @@ msgstr "Run quietly" #: /tmp/fish/implicit/share/completions/prt-get.fish:53 #: /tmp/fish/implicit/share/completions/prt-get.fish:111 #: /tmp/fish/implicit/share/completions/xz.fish:32 -#, fuzzy msgid "Be verbose" -msgstr "Do not be verbose" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:25 #: /tmp/fish/implicit/share/completions/git.fish:215 @@ -27532,10 +25873,9 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:38 -#, fuzzy msgid "" "Use this option to set the path to the temporary directory used for rewriting" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:39 msgid "" @@ -27544,44 +25884,36 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:40 -#, fuzzy msgid "Manage set of tracked repositories" -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:42 -#, fuzzy msgid "Adds a new remote" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:43 -#, fuzzy msgid "Removes a remote" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:44 -#, fuzzy msgid "Shows a remote" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:45 -#, fuzzy msgid "Deletes all stale tracking branches" -msgstr "Delete all cache contents" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:46 -#, fuzzy msgid "Fetches updates" -msgstr "Fetch source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:47 -#, fuzzy msgid "Renames a remote" -msgstr "Rename module" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:48 -#, fuzzy msgid "Sets the default branch for a remote" -msgstr "Output default action for mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:49 msgid "Changes URLs for a remote" @@ -27647,23 +25979,20 @@ msgid "Generate a diffstat, showing the number of changed lines of each file" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:66 -#, fuzzy msgid "Shows the commits on branches" -msgstr "Show the exited containers" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:67 msgid "Rev" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:68 -#, fuzzy msgid "Add file contents to the index" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:69 -#, fuzzy msgid "Don't actually add the file(s)" -msgstr "Don't actually take the action" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:71 msgid "Allow adding otherwise ignored files" @@ -27671,23 +26000,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:72 #: /tmp/fish/implicit/share/completions/git.fish:259 -#, fuzzy msgid "Interactive mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:73 msgid "Interactively choose hunks to stage" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:74 -#, fuzzy msgid "Manually create a patch" -msgstr "Manually create ARP address" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:75 -#, fuzzy msgid "Only match tracked files" -msgstr "Delete cached package files" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:76 msgid "Match files both in working tree and index" @@ -27716,14 +26042,12 @@ msgid "Checkout and switch to a branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:82 -#, fuzzy msgid "Local Branch" -msgstr "Logical and" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:83 -#, fuzzy msgid "Remote Branch" -msgstr "Branch" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:84 #: /tmp/fish/implicit/share/completions/git.fish:245 @@ -27739,9 +26063,8 @@ msgid "Keep staged changes" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:91 -#, fuzzy msgid "Keep unmerged changes" -msgstr "Discard unrecorded changes" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:92 msgid "Apply a patch on a git index file and a working tree" @@ -27756,43 +26079,36 @@ msgid "Find the change that introduced a bug by binary search" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:95 -#, fuzzy msgid "List, create, or delete branches" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:97 -#, fuzzy msgid "Delete branch" -msgstr "Delete from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:98 -#, fuzzy msgid "Force deletion of branch" -msgstr "Force deletion" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:99 -#, fuzzy msgid "Rename branch" -msgstr "Rename a disc" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:100 -#, fuzzy msgid "Force renaming branch" -msgstr "Force warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:101 -#, fuzzy msgid "Lists both local and remote branches" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:102 msgid "Track remote branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:103 -#, fuzzy msgid "Do not track remote branch" -msgstr "Do not execute remote command" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:104 msgid "Set remote branch to track" @@ -27832,66 +26148,56 @@ msgid "Fast-forward if possible" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:115 -#, fuzzy msgid "Clone a repository into a new directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:116 -#, fuzzy msgid "Copy files instead of using hardlinks" -msgstr "Link files instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:117 msgid "Operate quietly and do not report progress" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:118 -#, fuzzy msgid "Provide more information on what is going on" -msgstr "Give more information during processing" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:119 msgid "No checkout of HEAD is performed after the clone is complete" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:120 -#, fuzzy msgid "Make a bare Git repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:121 -#, fuzzy msgid "Set up a mirror of the source repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:122 -#, fuzzy msgid "Use a specific name of the remote instead of the default" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:123 msgid "Use a specific branch instead of the one used by the cloned repository" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:124 -#, fuzzy msgid "Truncate the history to a specified number of revisions" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:125 -#, fuzzy msgid "Initialize all submodules within the cloned repository" -msgstr "Install a gem into the local repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:126 -#, fuzzy msgid "Record changes to the repository" -msgstr "Restore files from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:127 -#, fuzzy msgid "Amend the log message of the last commit" -msgstr "Read the log message from file." +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:128 msgid "Fixup commit to be used with rebase --autosquash" @@ -27902,14 +26208,12 @@ msgid "Show changes between commits, commit and working tree, etc" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:131 -#, fuzzy msgid "Show diff of changes in the index" -msgstr "Show all of the gems in the current bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:132 -#, fuzzy msgid "Compare two paths on the filesystem" -msgstr "Compare archive and filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:134 msgid "Open diffs in a visual tool" @@ -27920,9 +26224,8 @@ msgid "Visually show diff of changes in the index" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:138 -#, fuzzy msgid "Print lines matching a pattern" -msgstr "list all packages matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:139 msgid "Create an empty git repository or reinitialize an existing one" @@ -27941,14 +26244,12 @@ msgid "Continue listing file history beyond renames" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:144 -#, fuzzy msgid "Don't print ref names" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:145 -#, fuzzy msgid "Print out ref names" -msgstr "Print kernel name" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:146 msgid "Print ref name by which each commit was reached" @@ -27959,9 +26260,8 @@ msgid "Limit the number of commits before starting to show the commit output" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:148 -#, fuzzy msgid "Skip given number of commits" -msgstr "Print inode number of files" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:149 #: /tmp/fish/implicit/share/completions/git.fish:150 @@ -27970,9 +26270,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:151 #: /tmp/fish/implicit/share/completions/git.fish:152 -#, fuzzy msgid "Show commits older than specified date" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:153 msgid "Limit commits from given author" @@ -27987,9 +26286,8 @@ msgid "Limit commits to ones with reflog entries matching given pattern" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:156 -#, fuzzy msgid "Limit commits with message that match given pattern" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:157 msgid "Limit commits to ones that match all given --grep" @@ -28000,23 +26298,20 @@ msgid "Limit commits to ones with message that don't match --grep" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:159 -#, fuzzy msgid "Case insensitive match" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:160 msgid "Patterns are basic regular expressions (default)" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:161 -#, fuzzy msgid "Patterns are extended regular expressions" -msgstr "Pattern is extended regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:162 -#, fuzzy msgid "Patterns are fixed strings" -msgstr "Pattern is a fixed string" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:163 msgid "Patterns are Perl-compatible regular expressions" @@ -28027,9 +26322,8 @@ msgid "Stop when given path disappears from tree" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:165 -#, fuzzy msgid "Print only merge commits" -msgstr "Print only left column" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:166 msgid "Don't print commits with more than one parent" @@ -28089,9 +26383,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:178 -#, fuzzy msgid "Do not include refs matching given glob pattern" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:179 msgid "" @@ -28100,14 +26393,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:180 -#, fuzzy msgid "Ignore invalid object names" -msgstr "Ignore environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:181 -#, fuzzy msgid "Read commits from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:182 msgid "Mark equivalent commits with = and inequivalent with +" @@ -28126,9 +26417,8 @@ msgid "Autocommit the merge" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:188 -#, fuzzy msgid "Don't autocommit the merge" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:189 msgid "Edit auto-generated merge message" @@ -28159,23 +26449,20 @@ msgid "Don't populate the log message with one-line descriptions" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:196 -#, fuzzy msgid "Show diffstat of the merge" -msgstr "Show modification time" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:197 msgid "Don't show diffstat of the merge" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:198 -#, fuzzy msgid "Squash changes from other branch as a single commit" -msgstr "Bring changes from the repository into the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:199 -#, fuzzy msgid "Don't squash changes" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:202 #: /tmp/fish/implicit/share/completions/git.fish:219 @@ -28188,23 +26475,20 @@ msgid "Force no progress status" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:204 -#, fuzzy msgid "Set the commit message" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:205 -#, fuzzy msgid "Abort the current conflict resolution process" -msgstr "Write out the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:206 msgid "Run merge conflict resolution tools to resolve merge conflicts" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:207 -#, fuzzy msgid "Use specific merge resolution program" -msgstr "Use specified message digest algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:209 msgid "Move or rename a file, a directory, or a symlink" @@ -28219,26 +26503,22 @@ msgid "Fetch from and merge with another repository or a local branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:214 -#, fuzzy msgid "Fetch all remotes" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:217 -#, fuzzy msgid "Keep downloaded pack" -msgstr "Disable downloading packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:218 -#, fuzzy msgid "Disable automatic tag following" -msgstr "Disable automtic buffer allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:220 #: /tmp/fish/implicit/share/completions/git.fish:223 #: /tmp/fish/implicit/share/completions/git.fish:243 -#, fuzzy msgid "Remote alias" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:222 msgid "Update remote refs along with associated objects" @@ -28269,9 +26549,8 @@ msgid "Push all refs under refs/" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:231 -#, fuzzy msgid "Delete all listed refs from the remote repository" -msgstr "Delete selected patches from the repository. (UNSAFE!)" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:232 msgid "Push all refs under refs/tags" @@ -28286,9 +26565,8 @@ msgid "Do everything except actually send the updates" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:235 -#, fuzzy msgid "Produce machine-readable output" -msgstr "Give human-readable output" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:236 msgid "Force update of remote refs" @@ -28308,14 +26586,12 @@ msgid "Forward-port local commits to the updated upstream head" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:247 -#, fuzzy msgid "Restart the rebasing process" -msgstr "Automatic line ending processing" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:248 -#, fuzzy msgid "Abort the rebase operation" -msgstr "force reassociation" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:249 msgid "Keep the commits that don't cahnge anything" @@ -28330,9 +26606,8 @@ msgid "Use merging strategies to rebase" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:254 -#, fuzzy msgid "Show diffstat of the rebase" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:255 msgid "Don't show diffstat of the rebase" @@ -28347,18 +26622,16 @@ msgid "Don't allow the pre-rebase hook to run" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:258 -#, fuzzy msgid "Force the rebase" -msgstr "Force new revision" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:260 msgid "Try to recreate merges" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:261 -#, fuzzy msgid "Rebase all reachable commits" -msgstr "Report on each commit" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:262 msgid "Automatic squashing" @@ -28369,38 +26642,32 @@ msgid "No automatic squashing" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:264 -#, fuzzy msgid "No fast-forward" -msgstr "Set date forward" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:265 -#, fuzzy msgid "Reset current HEAD to the specified state" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:266 -#, fuzzy msgid "Reset files in working directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:270 msgid "Reflog" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:271 -#, fuzzy msgid "Revert an existing commit" -msgstr "Report on each commit" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:272 -#, fuzzy msgid "Remove files from the working tree and from the index" -msgstr "Remove files after adding to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:273 -#, fuzzy msgid "Keep local copies" -msgstr "Clean local caches" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:274 msgid "Exit with a zero status even if no files matched" @@ -28424,14 +26691,12 @@ msgid "Dry run" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:279 -#, fuzzy msgid "Show the working tree status" -msgstr "Show the running containers" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:280 -#, fuzzy msgid "Give the output in the short-format" -msgstr "Give output suitable for get --context" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:281 msgid "Show the branch and tracking info even in short-format" @@ -28450,9 +26715,8 @@ msgid "The untracked files handling mode" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:285 -#, fuzzy msgid "Ignore changes to submodules" -msgstr "Ignore changes in case" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:286 msgid "Create, list, delete or verify a tag object signed with GPG" @@ -28463,14 +26727,12 @@ msgid "Make an unsigned, annotated tag object" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:289 -#, fuzzy msgid "Make a GPG-signed tag" -msgstr "Make a signature" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:290 -#, fuzzy msgid "Remove a tag" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:291 msgid "Verify signature of a tag" @@ -28485,19 +26747,16 @@ msgid "List tags that contain a commit" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:297 -#, fuzzy msgid "Stash away changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:298 -#, fuzzy msgid "List stashes" -msgstr "Lists the keys" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:299 -#, fuzzy msgid "Show the changes recorded in the stash" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:300 msgid "Apply and remove a single stashed state" @@ -28508,47 +26767,40 @@ msgid "Apply a single stashed state" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:302 -#, fuzzy msgid "Remove all stashed states" -msgstr "Remove the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:303 -#, fuzzy msgid "Remove a single stashed state from the stash list" -msgstr "Remove a given entry from the --group list" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:304 -#, fuzzy msgid "Create a stash" -msgstr "Create archive" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:305 msgid "Save a new stash" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:306 -#, fuzzy msgid "Create a new branch from a stash" -msgstr "Create a patch from unrecorded changes" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:307 -#, fuzzy msgid "Set and read git configuration variables" -msgstr "Query a configuration variables value" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:308 -#, fuzzy msgid "Generate patch series to send upstream" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:310 msgid "Generate plain patches without diffstat" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:311 -#, fuzzy msgid "Suppress diff output" -msgstr "Suppress informational output" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:312 msgid "Spend more time to create smaller diffs" @@ -28571,18 +26823,16 @@ msgid "Show number of added/deleted lines in decimal notation" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:317 -#, fuzzy msgid "Output only last line of the stat" -msgstr "Output only first of equal lines" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:318 msgid "Output a condensed summary of extended header information" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:319 -#, fuzzy msgid "Disable rename detection" -msgstr "Disable file modification" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:320 msgid "Show full blob object names" @@ -28597,24 +26847,20 @@ msgid "Also inspect unmodified files as source for a copy" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:324 -#, fuzzy msgid "Ignore changes in whitespace at EOL" -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:325 -#, fuzzy msgid "Ignore changes in amount of whitespace" -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:326 -#, fuzzy msgid "Ignore whitespace when comparing lines" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:328 -#, fuzzy msgid "Show whole surrounding functions of changes" -msgstr "Show the running containers" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:329 msgid "Allow an external diff helper to be executed" @@ -28651,9 +26897,8 @@ msgid "Initialize, update or inspect submodules" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:337 -#, fuzzy msgid "Add a submodule" -msgstr "Add a symbolic tag to a module" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:338 msgid "Show submodule status" @@ -28665,28 +26910,24 @@ msgid "Initialize all submodules" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:340 -#, fuzzy msgid "Update all submodules" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:341 -#, fuzzy msgid "Show commit summary" -msgstr "Print summary" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:342 -#, fuzzy msgid "Run command on each submodule" -msgstr "Run commands from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:343 msgid "Sync submodules' URL with .gitmodules" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:344 -#, fuzzy msgid "Only print error messages" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:346 msgid "Checkout the superproject's commit on a detached HEAD in the submodule" @@ -28722,9 +26963,8 @@ msgid "Also add ignored submodule path" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:353 -#, fuzzy msgid "Remove even with local changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:354 msgid "Use the commit stored in the index" @@ -28735,23 +26975,20 @@ msgid "Compare the commit in the index with submodule HEAD" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:356 -#, fuzzy msgid "Traverse submodules recursively" -msgstr "Descend recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:357 msgid "Show logs with difference each commit introduces" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:358 -#, fuzzy msgid "Remove untracked files from the working tree" -msgstr "Remove files from version control" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:359 -#, fuzzy msgid "Force run" -msgstr "Forced quit" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:360 msgid "Show what would be done and clean files interactively" @@ -28774,46 +27011,40 @@ msgid "Remove ignored files, as well" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:365 -#, fuzzy msgid "Remove only ignored files" -msgstr "Freshen: only changed files" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:366 -#, fuzzy msgid "Show what revision and author last modified each line of a file" -msgstr "Show last revision where each line was modified" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:367 msgid "Show blank SHA-1 for boundary commits" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:368 -#, fuzzy msgid "Do not treat root commits as boundaries" -msgstr "Do not execute remote command" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:369 msgid "Include additional statistics" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:370 -#, fuzzy msgid "Annotate only the given line range" -msgstr "Annotate every line" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:371 msgid "Show long rev" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:372 -#, fuzzy msgid "Show raw timestamp" -msgstr "Show time type" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:373 -#, fuzzy msgid "Use revisions from named file instead of calling rev-list" -msgstr "Use this config file instead of default" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:374 msgid "Walk history forward instead of backward" @@ -28824,23 +27055,20 @@ msgid "Show in a format designed for machine consumption" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:376 -#, fuzzy msgid "Show the porcelain format" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:377 -#, fuzzy msgid "Show the result incrementally" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:378 msgid "Instead of working tree, use the contents of the named file" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:379 -#, fuzzy msgid "Specifies the format used to output dates" -msgstr "Specify the remote shell to use" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:380 msgid "Detect moved or copied lines within a file" @@ -28853,63 +27081,52 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:383 -#, fuzzy msgid "Use the same output mode as git-annotate" -msgstr "Use the portable output format" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:384 -#, fuzzy msgid "Show the filename in the original commit" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:385 msgid "Show the line number in the original commit" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:386 -#, fuzzy msgid "Suppress the author name and timestamp from the output" -msgstr "Allow subkeys that have a timestamp from the future" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:387 -#, fuzzy msgid "Show the author email instead of author name" -msgstr "Check out into dir instead of module name." +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:388 -#, fuzzy msgid "Ignore whitespace changes" -msgstr "Ignore whitespace" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:389 -#, fuzzy msgid "Custom command" -msgstr "Job command" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:1 -#, fuzzy msgid "Comma-separated list of analyses to perform" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:2 -#, fuzzy msgid "Show examples in command line mode" -msgstr "Select entire command line (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:3 -#, fuzzy msgid "Go root directory" -msgstr "Ports Directory" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:4 -#, fuzzy msgid "Print HTML in command-line mode" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:5 -#, fuzzy msgid "HTTP service address" -msgstr "Numerical address" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:6 msgid "httptest.NewServer serves on this address and blocks" @@ -28932,14 +27149,12 @@ msgid "Index throttle value" msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:11 -#, fuzzy msgid "Link identifiers to their declarations" -msgstr "Lists the identifier for every generation" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:12 -#, fuzzy msgid "Maximum number of full text search results shown" -msgstr "Maximum number of log entries" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:13 msgid "Regular expression matching note markers to show" @@ -28962,9 +27177,8 @@ msgid "Print (exported) source in command-line mode" msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:18 -#, fuzzy msgid "Tab width" -msgstr "Line width" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:19 msgid "Directory containing alternate template files" @@ -28979,52 +27193,44 @@ msgid "Print HTML for named URL" msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:23 -#, fuzzy msgid "Write index to a file" -msgstr "Write to file" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:24 msgid "Zip file providing the file system to serve" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:1 -#, fuzzy msgid "Complete go build commands" -msgstr "Complete dd operands" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:2 -#, fuzzy msgid "force rebuild" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:3 -#, fuzzy msgid "print the commands but do not run them" -msgstr "Print quoted commands to stderr, do not run" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:4 msgid "number parallel builds (default=#cpus)" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:5 -#, fuzzy msgid "enable data race detection" -msgstr "Delete selection" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:6 -#, fuzzy msgid "print packages being built" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:7 -#, fuzzy msgid "print and preserve work directory" -msgstr "Print the working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:8 -#, fuzzy msgid "print the commands" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:9 msgid "c compiler flags" @@ -29055,19 +27261,16 @@ msgid "build tags" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:16 -#, fuzzy msgid "Complete go" -msgstr "Complete lpr option" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:17 -#, fuzzy msgid "compile packages and dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:18 -#, fuzzy msgid "remove object files" -msgstr "Erase obsolete files" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:19 msgid "" @@ -29076,9 +27279,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:20 -#, fuzzy msgid "print the remove commands it would execute, but not run them" -msgstr "Print quoted commands to stderr, do not run" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:21 msgid "" @@ -29096,100 +27298,83 @@ msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:24 #: /tmp/fish/implicit/share/completions/go.fish:29 -#, fuzzy msgid "prints commands that would be executed" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:25 #: /tmp/fish/implicit/share/completions/go.fish:30 #: /tmp/fish/implicit/share/completions/go.fish:53 -#, fuzzy msgid "prints commands as they are executed" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:26 -#, fuzzy msgid "print Go environment information" -msgstr "Display RubyGems environmental information" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:27 -#, fuzzy msgid "run go tool fix on packages" -msgstr "Cancel a hold on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:28 -#, fuzzy msgid "run gofmt on package sources" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:31 -#, fuzzy msgid "download and install packages and dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:32 -#, fuzzy msgid "stop after downloading the packages; don't install" -msgstr "Disable downloading packages" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:33 msgid "run fix tool on packages before resolving dependencies or building" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:34 -#, fuzzy msgid "update remote packages" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:35 -#, fuzzy msgid "get help on topic" -msgstr "Get help on this command" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:36 #: /tmp/fish/implicit/share/completions/go.fish:48 -#, fuzzy msgid "target tool" -msgstr "Target line" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:37 -#, fuzzy msgid "compile and install packages and dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:38 -#, fuzzy msgid "list packages" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:39 -#, fuzzy msgid "tolerate erroneous packages" -msgstr "Clean source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:40 -#, fuzzy msgid "pass in template for formatting" -msgstr "Specifies line formatting" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:41 -#, fuzzy msgid "print in JSON format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:42 -#, fuzzy msgid "list of build tags" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:43 msgid "compile and run Go program" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:44 -#, fuzzy msgid "test packages" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:45 msgid "compile the test binary to pkg.test but do not run it" @@ -29200,41 +27385,34 @@ msgid "install dependent packages, but don't run tests" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:47 -#, fuzzy msgid "run specified go tool" -msgstr "Rename specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:49 -#, fuzzy msgid "print the command that would be executed but not execute it" msgstr "" -"Print the command line on the standard error output before executing it" #: /tmp/fish/implicit/share/completions/go.fish:50 -#, fuzzy msgid "print Go version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:51 -#, fuzzy msgid "vet packages" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:52 msgid "print the command that would be executed" msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:1 -#, fuzzy msgid "Write cpu profile to this file" -msgstr "Write top servers to file" +msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:2 #: /tmp/fish/implicit/share/completions/goimports.fish:1 #: /tmp/fish/implicit/share/completions/gorename.fish:1 -#, fuzzy msgid "Display diffs instead of rewriting files" -msgstr "Display date for each line in file" +msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:3 msgid "Report all errors (not just the first 10 on different lines)" @@ -29249,9 +27427,8 @@ msgid "Rewrite rule (e.g., 'a[b:len(a)] -> a[b:]')" msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:6 -#, fuzzy msgid "Simplify code" -msgstr "Specify conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:7 #: /tmp/fish/implicit/share/completions/goimports.fish:5 @@ -29259,9 +27436,8 @@ msgid "Write result to (source) file instead of stdout" msgstr "" #: /tmp/fish/implicit/share/completions/goimports.fish:2 -#, fuzzy msgid "Report all errors" -msgstr "Report on all tags" +msgstr "" #: /tmp/fish/implicit/share/completions/goimports.fish:3 msgid "List files whose formatting differs from goimport's" @@ -29292,43 +27468,36 @@ msgid "Identifier to be renamed" msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:5 -#, fuzzy msgid "Show usage message" -msgstr "Log message." +msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:6 msgid "File and byte offset of identifier to be renamed" msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:7 -#, fuzzy msgid "Build tag" -msgstr "Build apt cache" +msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:8 -#, fuzzy msgid "New name for identifier" -msgstr "Accept $ in identifiers" +msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:9 -#, fuzzy msgid "Print verbose information" -msgstr "Print verbose info" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:1 -#, fuzzy msgid "Add user to group" -msgstr "Add label to output" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:2 -#, fuzzy msgid "Remove user from group" -msgstr "Remove all entries from the --group list" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:4 -#, fuzzy msgid "Remove the GROUP's password" -msgstr "Remove the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:5 msgid "Restrict access to GROUP to its members" @@ -29343,14 +27512,12 @@ msgid "set the list of administrators for GROUP" msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:1 -#, fuzzy msgid "Complete using gpg user ids" -msgstr "Complete using path" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:2 -#, fuzzy msgid "Complete using gpg key ids" -msgstr "Complete using path" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:3 msgid "" @@ -29383,9 +27550,8 @@ msgid "Store only (make a simple RFC1991 packet)" msgstr "Store only (make a simple RFC1991 packet)" #: /tmp/fish/implicit/share/completions/gpg.fish:10 -#, fuzzy msgid "Decrypt specified file or stdin" -msgstr "Encrypt for specified user id" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:11 msgid "Assume specified file or stdin is sigfile and verify it" @@ -29438,9 +27604,8 @@ msgstr "List all keys with their fingerprints" #: /tmp/fish/implicit/share/completions/gpg.fish:22 #: /tmp/fish/implicit/share/completions/signify.fish:2 -#, fuzzy msgid "Generate a new key pair" -msgstr "Generate man page" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:23 msgid "Present a menu which enables you to do all key related tasks" @@ -29694,9 +27859,8 @@ msgstr "" "keys" #: /tmp/fish/implicit/share/completions/gpg.fish:81 -#, fuzzy msgid "Specify trust model" -msgstr "Specify gem trust policy" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:82 msgid "Select how to display key IDs" @@ -30067,9 +28231,8 @@ msgstr "" "Do not create an internal pool file for quicker generation of random numbers" #: /tmp/fish/implicit/share/completions/gpg.fish:165 -#, fuzzy msgid "Reset verbose level to 0" -msgstr "Set the verbose level of output" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:166 msgid "Suppress the initial copyright message" @@ -30150,9 +28313,8 @@ msgstr "" "Changes the behaviour of some commands. This is like --dry-run but different" #: /tmp/fish/implicit/share/completions/gpg.fish:181 -#, fuzzy msgid "Display the session key used for one message" -msgstr "display path used to search for gems" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:182 msgid "Don't use the public key but the specified session key" @@ -30223,62 +28385,52 @@ msgid "Set the list of default preferences to the specified string" msgstr "Set the list of default preferences to the specified string" #: /tmp/fish/implicit/share/completions/gphoto2.fish:1 -#, fuzzy msgid "Print complete help message on program usage" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:2 -#, fuzzy msgid "Print short message on program usage" -msgstr "Print messages about what the program is doing" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:3 -#, fuzzy msgid "Turn on debugging" -msgstr "Turn on Ruby debugging" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:4 -#, fuzzy msgid "Name of file to write debug info to" -msgstr "Use *.inf files to overwrite audio options" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:5 -#, fuzzy msgid "Quiet output (default=verbose)" -msgstr "Select output delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:6 msgid "Hook script to call after downloads, captures, etc." msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:7 -#, fuzzy msgid "Send file to stdout" -msgstr "Print file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:8 -#, fuzzy msgid "Print filesize before data" -msgstr "Print file size, not disk usage" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:9 msgid "List auto-detected cameras" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:10 -#, fuzzy msgid "Show EXIF information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:11 -#, fuzzy msgid "Show info" -msgstr "Show hidden" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:12 -#, fuzzy msgid "Show summary" -msgstr "Print summary" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:13 msgid "Show camera driver manual" @@ -30289,76 +28441,64 @@ msgid "About the camera driver manual" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:15 -#, fuzzy msgid "Show storage information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:16 -#, fuzzy msgid "gPhoto shell" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:18 -#, fuzzy msgid "List supported camera models" -msgstr "List trusted certificates" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:19 -#, fuzzy msgid "List supported port devices" -msgstr "Print mounted devices" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:20 msgid "Display camera/driver abilities" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:21 -#, fuzzy msgid "Specify device port" -msgstr "Specify a dir" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:22 -#, fuzzy msgid "Specify serial transfer speed" -msgstr "Specify sendmail command" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:23 -#, fuzzy msgid "Specify camera model" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:24 msgid "(expert only) Override USB IDs" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:25 -#, fuzzy msgid "List configuration tree" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:26 -#, fuzzy msgid "Dump full configuration tree" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:27 -#, fuzzy msgid "Get configuration value" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:28 msgid "Set configuration value or index in choices" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:29 -#, fuzzy msgid "Set configuration value index in choices" -msgstr "Display configuration and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:30 -#, fuzzy msgid "Set configuration value" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:31 msgid "Wait for event(s) from camera" @@ -30373,18 +28513,16 @@ msgid "Capture a quick preview" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:34 -#, fuzzy msgid "Set bulb exposure time in seconds" -msgstr "Maximum amount of cpu time in seconds" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:35 msgid "Set number of frames to capture (default=infinite)" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:36 -#, fuzzy msgid "Set capture interval in seconds" -msgstr "Minimum interval in seconds" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:37 msgid "Reset capture interval on signal (default=no)" @@ -30399,9 +28537,8 @@ msgid "Capture an image and download it" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:40 -#, fuzzy msgid "Capture a movie" -msgstr "TV capture mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:41 msgid "Capture an audio clip" @@ -30412,39 +28549,32 @@ msgid "Wait for shutter release on the camera and download" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:43 -#, fuzzy msgid "List folders in folder" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:44 -#, fuzzy msgid "List files in folder" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:45 -#, fuzzy msgid "Create a directory" -msgstr "Change directory" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:46 -#, fuzzy msgid "Remove a directory" -msgstr "Remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:47 -#, fuzzy msgid "Display number of files" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:48 -#, fuzzy msgid "Get files given in range" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:49 -#, fuzzy msgid "Get all files from folder" -msgstr "Extract file from file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:50 msgid "Get thumbnails given in range" @@ -30463,9 +28593,8 @@ msgid "Get all metadata from folder" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:54 -#, fuzzy msgid "Upload metadata for file" -msgstr "Do not dump metadata about files" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:55 msgid "Get raw data given in range" @@ -30480,14 +28609,12 @@ msgid "Get audio data given in range" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:58 -#, fuzzy msgid "Get all audio data from folder" -msgstr "Play audio from file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:59 -#, fuzzy msgid "Delete files given in range" -msgstr "Create file with name as given in data" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:60 msgid "Delete all files in folder (--no-recurse by default)" @@ -30498,9 +28625,8 @@ msgid "Upload a file to camera" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:62 -#, fuzzy msgid "Specify a filename or filename pattern" -msgstr "Specify filenames to be filtered" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:63 msgid "Specify camera folder (default=\"/\")" @@ -30515,14 +28641,12 @@ msgid "No recursion (default for deletion)" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:66 -#, fuzzy msgid "Process new files only" -msgstr "Process binary file as text" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:67 -#, fuzzy msgid "Overwrite files without asking" -msgstr "Never overwrite files with same name" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:1 msgid "Print annotated source" @@ -30541,23 +28665,20 @@ msgid "Display summary" msgstr "Display summary" #: /tmp/fish/implicit/share/completions/gprof.fish:5 -#, fuzzy msgid "Search directories for source" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:6 msgid "No annotated source" msgstr "No annotated source" #: /tmp/fish/implicit/share/completions/gprof.fish:7 -#, fuzzy msgid "Print full path of source" -msgstr "print full path to ebuild for package" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:8 -#, fuzzy msgid "Print flat profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:9 msgid "No flat profile" @@ -30604,9 +28725,8 @@ msgid "Set demangling style" msgstr "Set demangling style" #: /tmp/fish/implicit/share/completions/gprof.fish:20 -#, fuzzy msgid "Turn of demangling" -msgstr "Turn off FTP globbing" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:21 msgid "Supress static functions" @@ -30653,28 +28773,24 @@ msgid "Print summary" msgstr "Print summary" #: /tmp/fish/implicit/share/completions/gradle.fish:2 -#, fuzzy msgid "Don't rebuild dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:3 -#, fuzzy msgid "Specify build file" -msgstr "Specify build-dir" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:4 -#, fuzzy msgid "Specify settings file" -msgstr "Specify config file" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:5 msgid "Only relevent project are configured" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:6 -#, fuzzy msgid "Specify console output type" -msgstr "Specify output format" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:7 msgid "Continue task execution after failure" @@ -30685,9 +28801,8 @@ msgid "Set system property of the JVM" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:9 -#, fuzzy msgid "Log in debug mode" -msgstr "Compiler debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:10 msgid "Uses Gradle Daemon to run build" @@ -30698,56 +28813,48 @@ msgid "Uses Gradle Daemon in foreground" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:12 -#, fuzzy msgid "Specify gradle user home directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:13 msgid "Launch Gradle GUI" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:14 -#, fuzzy msgid "Specify an initialization script" -msgstr "Specify an initialization file to read instead of ~/.muttrc" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:15 -#, fuzzy msgid "Set log level to info" -msgstr "Set error level" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:16 -#, fuzzy msgid "Include specified build in composite" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:17 msgid "Runs build with all task actions disabled" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:18 -#, fuzzy msgid "Configure number of concurrent workers" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:19 -#, fuzzy msgid "Don't use deamon" -msgstr "Don't use batch mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:20 -#, fuzzy msgid "Don't use network resources" -msgstr "Do not use integrated preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:21 msgid "Set project property for build script" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:22 -#, fuzzy msgid "Specify start directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:23 msgid "Build project in parallel" @@ -30758,9 +28865,8 @@ msgid "Profile build execution time" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:25 -#, fuzzy msgid "Specify project cache directory" -msgstr "Specify local cache dir" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:26 msgid "Only log erros" @@ -30771,14 +28877,12 @@ msgid "Force build script recompiling" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:28 -#, fuzzy msgid "Refresh state of dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:29 -#, fuzzy msgid "Ignore previously cached dependencies" -msgstr "Correct broken dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:30 msgid "Print out full stacktrace for all exceptions" @@ -30812,14 +28916,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/rfkill.fish:2 #: /tmp/fish/implicit/share/completions/tmutil.fish:51 #: /tmp/fish/implicit/share/completions/xdg-mime.fish:13 -#, fuzzy msgid "Print version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:36 -#, fuzzy msgid "Specify task to be excluded from execution" -msgstr "Specify umask to use when writing" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:2 msgid "Process binary file as text" @@ -30834,15 +28936,13 @@ msgid "Assume data type for binary files" msgstr "Assume data type for binary files" #: /tmp/fish/implicit/share/completions/grep.fish:7 -#, fuzzy msgid "Colour output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:8 #: /tmp/fish/implicit/share/completions/jq.fish:10 -#, fuzzy msgid "Color output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:9 msgid "Only print number of matches" @@ -30877,9 +28977,8 @@ msgid "Pattern is a fixed string" msgstr "Pattern is a fixed string" #: /tmp/fish/implicit/share/completions/grep.fish:17 -#, fuzzy msgid "Use patterns from a file" -msgstr "Use pattern from file" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:18 msgid "Pattern is basic regex" @@ -30980,9 +29079,8 @@ msgid "Only whole matching lines" msgstr "Only whole matching lines" #: /tmp/fish/implicit/share/completions/grep.fish:47 -#, fuzzy msgid "Ignore case (deprecated: use -i instead)" -msgstr "Ignore case differences" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:48 msgid "Treat input as a set of zero-terminated lines" @@ -31002,9 +29100,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/groupadd.fish:3 #: /tmp/fish/implicit/share/completions/useradd.fish:4 -#, fuzzy msgid "Display help message and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/groupadd.fish:4 #: /tmp/fish/implicit/share/completions/useradd.fish:7 @@ -31137,53 +29234,44 @@ msgid "Check if given file is BIOS bootsector" msgstr "" #: /tmp/fish/implicit/share/completions/grub-file.fish:32 -#, fuzzy msgid "Display usage and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:1 -#, fuzzy msgid "Compress GRUB files" -msgstr "Compress file" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:2 -#, fuzzy msgid "Use image and modules under given directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:3 -#, fuzzy msgid "Install given fonts" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:4 -#, fuzzy msgid "Install only given modules and their dependencies" -msgstr "Install source packages and their build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:5 msgid "Embed given file as public key for signature checking" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:6 -#, fuzzy msgid "Use translations under given directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:7 -#, fuzzy msgid "Install only given locales" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:8 -#, fuzzy msgid "Preload specfied modules" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:9 -#, fuzzy msgid "Install given theme" -msgstr "Install needed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:11 msgid "Make drive also bootable as floppy" @@ -31194,18 +29282,16 @@ msgid "Install GRUB images under DIR/grub" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:13 -#, fuzzy msgid "Set bootloader ID" -msgstr "Set comment leader." +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:14 msgid "Choose compression to use for core image" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:15 -#, fuzzy msgid "Set disk module to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:16 msgid "Use given directory as the EFI System Partition root" @@ -31228,9 +29314,8 @@ msgid "Use given color for label" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:21 -#, fuzzy msgid "Use given file for label" -msgstr "Use unified format" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:22 msgid "Use given directory for PPC Mac install" @@ -31249,9 +29334,8 @@ msgid "Don't apply any reed-solomon codes when embedding core.img" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:26 -#, fuzzy msgid "Set product version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:27 msgid "Delete device map if it already exists" @@ -31262,9 +29346,8 @@ msgid "The installation is removable" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:29 -#, fuzzy msgid "Do not probe for filesystems" -msgstr "Skip other filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:30 msgid "Install GRUB for given platform" @@ -31275,37 +29358,32 @@ msgid "Print the grunt version. Combine with --verbose for more info" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:1 -#, fuzzy msgid "Print the version information" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:2 -#, fuzzy msgid "Specify a custom schemas directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:3 msgid "Get the value of a key" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:4 -#, fuzzy msgid "Determine if a key is writable" -msgstr "File is writable" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:5 msgid "Determine the valid value range of a key" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:6 -#, fuzzy msgid "Print the description of a key" -msgstr "Output description of mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:7 -#, fuzzy msgid "Set the value of a key" -msgstr "Set the misc debug value to #" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:8 msgid "Reset a key to its default value" @@ -31320,24 +29398,20 @@ msgid "List all installed, non-relocatable schemas" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:11 -#, fuzzy msgid "List all installed, relocatable schemas" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:12 -#, fuzzy msgid "List all keys in a schema" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:13 -#, fuzzy msgid "List all children of a schema" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:14 -#, fuzzy msgid "List keys and values, recursively" -msgstr "List subdirectory recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/gunzip.fish:4 #: /tmp/fish/implicit/share/completions/gzip.fish:4 @@ -31356,9 +29430,8 @@ msgstr "Save/restore filename" #: /tmp/fish/implicit/share/completions/gunzip.fish:9 #: /tmp/fish/implicit/share/completions/gzip.fish:9 -#, fuzzy msgid "Recurse directories" -msgstr "Check directories" +msgstr "" #: /tmp/fish/implicit/share/completions/gunzip.fish:10 #: /tmp/fish/implicit/share/completions/gzip.fish:10 @@ -31375,19 +29448,16 @@ msgid "Display document using only black and white" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:2 -#, fuzzy msgid "Display document without colors" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:3 -#, fuzzy msgid "Display document as usual" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:4 -#, fuzzy msgid "Start ghostscript in safe mode" -msgstr "Start in binary mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:5 msgid "Do not start ghostscript in safe mode" @@ -31439,23 +29509,20 @@ msgid "The page should not be centered automatically" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:17 -#, fuzzy msgid "Selects the paper size to be used" -msgstr "Selects how passphrases are mangled" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:18 -#, fuzzy msgid "Sets the orientation of the page" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:19 msgid "Selects the scale N, or arbitrary scale f.f" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:20 -#, fuzzy msgid "Selects the scale base N" -msgstr "Select time style" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:21 msgid "Interchange the meaning of the orientations landscape and seascape" @@ -31467,14 +29534,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:23 -#, fuzzy msgid "Use antialiasing" -msgstr "Use fast setting" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:24 -#, fuzzy msgid "Do not use antialiasing" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:25 msgid "Dsc comments are respected" @@ -31497,9 +29562,8 @@ msgid "Use backing pixmap" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:30 -#, fuzzy msgid "Do not use backing pixmap" -msgstr "Do not use gcc wrapper" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:31 msgid "Watch the document file for changes" @@ -31510,9 +29574,8 @@ msgid "Do not watch the document file for changes" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:34 -#, fuzzy msgid "Print a usage message and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:35 msgid "Fit the size of the window to the size of the page" @@ -31523,9 +29586,8 @@ msgid "Do not fit the size of the window to the size of the page" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:37 -#, fuzzy msgid "Set geometry" -msgstr "Set severity" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:38 msgid "Read and use additional resources from FILE (higher priority)" @@ -31552,14 +29614,12 @@ msgid "Start in fullscreen mode (needs support from WM)" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:44 -#, fuzzy msgid "Presentation mode " -msgstr "Question mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:45 -#, fuzzy msgid "Show gv version and exit" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gzip.fish:14 msgid "Use fast setting" @@ -31570,27 +29630,24 @@ msgid "Use high compression setting" msgstr "Use high compression setting" #: /tmp/fish/implicit/share/completions/helm.fish:1 -#, fuzzy msgid "Enable verbose output" -msgstr "Generate dired output" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:2 msgid "Location of your Helm config" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:3 -#, fuzzy msgid "Address of tiller" -msgstr "Address boundary error" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:4 msgid "Name of the kubeconfig context to use" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:5 -#, fuzzy msgid "More information about a command" -msgstr "Display information about a local or remote item." +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:6 msgid "The named Helm starter scaffold" @@ -31614,9 +29671,8 @@ msgid "Prevent hooks from running during deletion" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:10 -#, fuzzy msgid "Remove the release from the store" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:11 #: /tmp/fish/implicit/share/completions/helm.fish:13 @@ -31629,9 +29685,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:12 #: /tmp/fish/implicit/share/completions/helm.fish:14 -#, fuzzy msgid "Verify the packages against signatures" -msgstr "Verify package integrity" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:15 #: /tmp/fish/implicit/share/completions/helm.fish:32 @@ -31657,52 +29712,45 @@ msgid "Directory into which the chart is expanded" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:21 -#, fuzzy msgid "Verify the package against its signature" -msgstr "Verify gem file against its internal checksum" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:22 #: /tmp/fish/implicit/share/completions/helm.fish:35 #: /tmp/fish/implicit/share/completions/helm.fish:47 #: /tmp/fish/implicit/share/completions/helm.fish:87 -#, fuzzy msgid "Chart version" -msgstr "Sort by version" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:24 #: /tmp/fish/implicit/share/completions/helm.fish:68 #: /tmp/fish/implicit/share/completions/helm.fish:76 -#, fuzzy msgid "Revision" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:25 msgid "Dump all (computed) values" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:27 -#, fuzzy msgid "Maximum number of revision to include in history" -msgstr "Maximum number of open file descriptors" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:28 msgid "Use the canary tiller image" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:29 -#, fuzzy msgid "Do not install tiller" -msgstr "Do not load init files" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:30 -#, fuzzy msgid "Do not install local or remote" -msgstr "Display information about a local or remote item." +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:31 -#, fuzzy msgid "Override tiller image" -msgstr "Override framerate" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:33 #: /tmp/fish/implicit/share/completions/helm.fish:38 @@ -31714,25 +29762,21 @@ msgid "Verify the provenance data for this chart" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:37 -#, fuzzy msgid "Simulate an install" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:39 -#, fuzzy msgid "Release name" -msgstr "Resource name" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:40 -#, fuzzy msgid "Specify template used to name the release" -msgstr "Specify the subject of the message" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:41 #: /tmp/fish/implicit/share/completions/helm.fish:82 -#, fuzzy msgid "Namespace" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:42 msgid "Prevent hooks from running during install" @@ -31744,84 +29788,69 @@ msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:44 #: /tmp/fish/implicit/share/completions/helm.fish:84 -#, fuzzy msgid "Set values on the command line" -msgstr "Set or get the commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:45 #: /tmp/fish/implicit/share/completions/helm.fish:85 -#, fuzzy msgid "Specify values in a YAML file" -msgstr "Specify a config file" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:46 -#, fuzzy msgid "Verify the package before installing it" -msgstr "Verify package integrity" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:48 -#, fuzzy msgid "Fail on lint warnings" -msgstr "Force warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:49 -#, fuzzy msgid "Show all releases" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:50 -#, fuzzy msgid "Sort by release date" -msgstr "Sort by size" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:51 -#, fuzzy msgid "Show deleted releases" -msgstr "Show held packages" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:52 -#, fuzzy msgid "Show releases that are currently being deleted" -msgstr "Show all of the gems in the current bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:53 -#, fuzzy msgid "Show deployed releases" -msgstr "Show held packages" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:54 -#, fuzzy msgid "Show failed releases" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:55 -#, fuzzy msgid "Maximum number of releases to fetch" -msgstr "Maximum number of nested blocks reached." +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:56 msgid "Next release name in the list" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:57 -#, fuzzy msgid "Reverse the sort order" -msgstr "Reverse sort order" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:58 -#, fuzzy msgid "Output short listing format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:59 -#, fuzzy msgid "Name of the key to use when signing" -msgstr "Specify umask to use when writing" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:61 -#, fuzzy msgid "Save packaged chart to local chart repository" -msgstr "Move packages to local tree" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:62 msgid "Use a PGP private key to sign this package" @@ -31832,19 +29861,16 @@ msgid "Raise error if repo is already registered" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:64 -#, fuzzy msgid "Merge the generated index into the given index" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:65 -#, fuzzy msgid "URL of chart repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:66 -#, fuzzy msgid "Repository" -msgstr "Dumps the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:69 msgid "Simulate a rollback" @@ -31855,28 +29881,24 @@ msgid "Prevent hooks from running during rollback" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:71 -#, fuzzy msgid "Use regular expressions for searching" -msgstr "Use high compression setting" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:72 -#, fuzzy msgid "Show the long listing" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:73 -#, fuzzy msgid "Address to listen on" -msgstr "Process list pointer" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:74 msgid "Path from which to serve charts" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:79 -#, fuzzy msgid "Simulate an upgrade" -msgstr "Distro upgrade" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:80 msgid "Run an install if the release don't exists" @@ -31891,14 +29913,12 @@ msgid "Verify the provenance of the chart before upgrading" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:89 -#, fuzzy msgid "Show the client version" -msgstr "Show each gem version" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:90 -#, fuzzy msgid "Show the server version" -msgstr "Show each gem version" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:1 #: /tmp/fish/implicit/share/completions/help.fish:68 @@ -31906,112 +29926,93 @@ msgid "Autosuggestions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:2 -#, fuzzy msgid "Builtin commands" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:3 msgid "Cartesian Products" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:4 -#, fuzzy msgid "Setting syntax highlighting colors" -msgstr "Help on setting syntax highlighting colors" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:5 msgid "Combining different expansions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:6 -#, fuzzy msgid "How tab-completion works" -msgstr "Help on how tab-completion works" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:7 -#, fuzzy msgid "Useful functions for writing completions" -msgstr "Use function keys for commands" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:8 -#, fuzzy msgid "Writing your own completions" -msgstr "Description of this completions" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:9 -#, fuzzy msgid "Where to put completions" -msgstr "Description of this completions" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:10 msgid "Debugging fish scripts" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:12 -#, fuzzy msgid "Command line editor" -msgstr "Command to run" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:13 -#, fuzzy msgid "Emacs mode commands" -msgstr "End a block of commands" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:14 -#, fuzzy msgid "Escaping characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:15 -#, fuzzy msgid "Event handlers" -msgstr "event handler block" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:16 #: /tmp/fish/implicit/share/completions/help.fish:25 -#, fuzzy msgid "Parameter expansion (Globbing)" -msgstr "Help on parameter expansion (Globbing)" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:17 -#, fuzzy msgid "Brace expansion {a,b,c}" -msgstr "Help on brace expansion {a,b,c}" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:18 -#, fuzzy msgid "Command substitution" -msgstr "in command substitution" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:19 -#, fuzzy msgid "Command substitution (SUBCOMMAND)" -msgstr "Help on command substitution (SUBCOMMAND)" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:20 -#, fuzzy msgid "Home directory expansion ~USER" -msgstr "Help on home directory expansion ~USER" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:21 -#, fuzzy msgid "Index range expansion" -msgstr "Ignore changes due to tab expansion" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:22 -#, fuzzy msgid "Process expansion %JOB" -msgstr "Help on process expansion %JOB" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:24 -#, fuzzy msgid "Wildcard expansion *.*" -msgstr "Help on wildcard expansion *.*" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:26 -#, fuzzy msgid "Configurable greeting" -msgstr "Configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:27 msgid "Help on how to reuse previously entered commands" @@ -32022,19 +30023,16 @@ msgid "Searchable history" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:29 -#, fuzzy msgid "Shell variable and function names" -msgstr "Allow dash (-) in function name" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:30 -#, fuzzy msgid "Initialization files" -msgstr "Configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:31 -#, fuzzy msgid "Introduction" -msgstr "Illegal instruction" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:32 msgid "Common issues with fish" @@ -32065,48 +30063,41 @@ msgid "Piping" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:39 -#, fuzzy msgid "Programmable prompt" -msgstr "Verbose prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:40 msgid "Quotes" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:41 -#, fuzzy msgid "Input/Output (IO) redirection" -msgstr "Invalid input/output redirection" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:42 -#, fuzzy msgid "Shared bindings" -msgstr "Show warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:43 msgid "Introduction to the fish syntax" msgstr "Introduction to the fish syntax" #: /tmp/fish/implicit/share/completions/help.fish:44 -#, fuzzy msgid "Background jobs" -msgstr "Last background job" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:45 -#, fuzzy msgid "Conditional execution of code and flow control" -msgstr "Conditionally execute a block of commands" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:46 #: /tmp/fish/implicit/share/completions/help.fish:74 -#, fuzzy msgid "Functions" -msgstr "Function" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:47 -#, fuzzy msgid "Autoloading functions" -msgstr "Supress static functions" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:48 msgid "Defining aliases" @@ -32121,77 +30112,64 @@ msgid "Some common words" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:51 -#, fuzzy msgid "Programmable title" -msgstr "Program section" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:52 -#, fuzzy msgid "Shell variables" -msgstr "set/list variables" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:53 msgid "Arrays" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:54 -#, fuzzy msgid "Variables for changing highlighting colors" -msgstr "Help on setting syntax highlighting colors" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:55 -#, fuzzy msgid "Exporting variables" -msgstr "Export variable to subprocess" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:56 -#, fuzzy msgid "Variable scope for functions" -msgstr "Disable some built-in functions" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:57 -#, fuzzy msgid "Locale variables" -msgstr "set/list variables" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:58 msgid "Variable scope" msgstr "Variable scope" #: /tmp/fish/implicit/share/completions/help.fish:59 -#, fuzzy msgid "Special variables" -msgstr "set/list variables" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:60 -#, fuzzy msgid "The status variable" -msgstr "set/list variables" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:61 -#, fuzzy msgid "More on universal variables" -msgstr "Help on environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:62 -#, fuzzy msgid "Vi mode commands" -msgstr "End of command" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:63 -#, fuzzy msgid "Command mode" -msgstr "Command" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:64 -#, fuzzy msgid "Insert mode" -msgstr "Insert header" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:65 -#, fuzzy msgid "Visual mode" -msgstr "Unsafe mode" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:66 msgid "Tutorial" @@ -32206,9 +30184,8 @@ msgid "Combiners (And, Or, Not)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:70 -#, fuzzy msgid "Command Substitutions" -msgstr "in command substitution" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:71 msgid "Conditionals (If, Else, Switch)" @@ -32235,29 +30212,24 @@ msgid "Lists" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:78 -#, fuzzy msgid "Loops" -msgstr "Loop script" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:79 -#, fuzzy msgid "Ready for more?" -msgstr "Read-only mode" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:81 -#, fuzzy msgid "Pipes and Redirections" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:82 -#, fuzzy msgid "Prompt" -msgstr "Prompt string" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:83 -#, fuzzy msgid "Running Commands" -msgstr "Command" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:84 msgid "Separating Commands (Semicolon)" @@ -32268,37 +30240,32 @@ msgid "Startup (Where's .bashrc?)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:86 -#, fuzzy msgid "Syntax Highlighting" -msgstr "No search highlighting" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:87 -#, fuzzy msgid "Tab Completions" -msgstr "Compression" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:88 -#, fuzzy msgid "Universal Variables" -msgstr "Handle environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:89 msgid "Variables" msgstr "Variables" #: /tmp/fish/implicit/share/completions/help.fish:90 -#, fuzzy msgid "Why fish?" -msgstr "fish" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:91 msgid "Wildcards" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:1 -#, fuzzy msgid "list installed addons" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:2 msgid "manage apps (create, destroy)" @@ -32317,9 +30284,8 @@ msgid "manage custom domains" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:6 -#, fuzzy msgid "display logs for an app" -msgstr "display USE flags for package" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:7 msgid "manage dynos (dynos, workers)" @@ -32359,9 +30325,8 @@ msgid "list commands and display help" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:16 -#, fuzzy msgid "manage authentication keys" -msgstr "Do not cache authentication tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:18 msgid "manage maintenance mode for an app" @@ -32384,9 +30349,8 @@ msgid "manage plugins to the heroku gem" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:23 -#, fuzzy msgid "list available regions" -msgstr "available sessions" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:24 msgid "manage the stack for an app" @@ -32397,14 +30361,12 @@ msgid "check status of heroku platform" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:26 -#, fuzzy msgid "update the heroku client" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:27 -#, fuzzy msgid "display version" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:28 msgid "" @@ -32425,28 +30387,24 @@ msgid "open an addon's documentation in your browser" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:32 -#, fuzzy msgid "downgrade an existing addon" -msgstr "Upgrade existing package" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:33 -#, fuzzy msgid "list all available addons" -msgstr "List all available patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:34 msgid "open an addon's dashboard in your browser" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:35 -#, fuzzy msgid "uninstall one or more addons" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:36 -#, fuzzy msgid "upgrade an existing addon" -msgstr "Upgrade existing package" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:37 msgid "the org to list the apps for" @@ -32469,9 +30427,8 @@ msgid " permanently destroy an app (--app APP)" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:42 -#, fuzzy msgid "show detailed app information" -msgstr "Show apropos information" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:43 msgid " add yourself to an organization app (--app APP)" @@ -32502,18 +30459,16 @@ msgid "log in with your heroku credentials" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:50 -#, fuzzy msgid "clear local authentication credentials" -msgstr "Do not cache authentication tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:51 msgid "display your api token" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:52 -#, fuzzy msgid "display your heroku email address" -msgstr "display the remote gem servers" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:53 msgid "output config vars in shell format" @@ -32521,9 +30476,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:54 #: /tmp/fish/implicit/share/completions/heroku.fish:55 -#, fuzzy msgid "display a config value for an app" -msgstr "Display configuration and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:56 #: /tmp/fish/implicit/share/completions/heroku.fish:57 @@ -32532,9 +30486,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:58 #: /tmp/fish/implicit/share/completions/heroku.fish:59 -#, fuzzy msgid "unset one or more config vars" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:60 msgid "add a custom domain to an app" @@ -32550,18 +30503,16 @@ msgid "remove a custom domain from an app" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:64 -#, fuzzy msgid "the number of lines to display" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:65 msgid "only display logs from the given process" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:66 -#, fuzzy msgid "only display logs from the given source" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:67 msgid "continually stream logs" @@ -32580,18 +30531,16 @@ msgid "capture a new backup" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:71 -#, fuzzy msgid "delete a backup" -msgstr "Set date back" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:72 msgid "downloads database backup" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:73 -#, fuzzy msgid "get information about a specific backup" -msgstr "Show full information for specified packages" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:74 msgid "restore a backup (default latest) to a database" @@ -32639,9 +30588,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:88 #: /tmp/fish/implicit/share/completions/heroku.fish:89 -#, fuzzy msgid "view detailed information for a release" -msgstr "Display detailed information of gem(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:90 #: /tmp/fish/implicit/share/completions/heroku.fish:91 @@ -32649,9 +30597,8 @@ msgid "roll back to an older release" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:92 -#, fuzzy msgid "specify dyno size" -msgstr "Specify config file" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:93 msgid "open a remote console session (with optional COMMAND)" @@ -32682,43 +30629,36 @@ msgid "repository root directory or name of overlay bundle file" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:2 -#, fuzzy msgid "change working directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:3 msgid "do not prompt, automatically pick the first choice for all prompts" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:4 -#, fuzzy msgid "suppress output" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:5 -#, fuzzy msgid "enable additional output" -msgstr "Generate dired output" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:6 -#, fuzzy msgid "set/override config option" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:7 -#, fuzzy msgid "enable debugging output" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:8 -#, fuzzy msgid "start debugger" -msgstr "Start debugger on error" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:9 -#, fuzzy msgid "set the charset encoding" -msgstr "xterm encoding" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:10 msgid "set the charset encoding mode" @@ -32729,14 +30669,12 @@ msgid "always print a traceback on exception" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:12 -#, fuzzy msgid "time how long the command takes" -msgstr "Set or get the commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:13 -#, fuzzy msgid "print command execution profile" -msgstr "Select an option profile" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:16 msgid "consider hidden changesets" @@ -32773,9 +30711,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:453 #: /tmp/fish/implicit/share/completions/hg.fish:460 #: /tmp/fish/implicit/share/completions/hg.fish:495 -#, fuzzy msgid "include names matching the given patterns" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:20 #: /tmp/fish/implicit/share/completions/hg.fish:26 @@ -32800,9 +30737,8 @@ msgstr "Insert modules matching the given wildcard" #: /tmp/fish/implicit/share/completions/hg.fish:454 #: /tmp/fish/implicit/share/completions/hg.fish:461 #: /tmp/fish/implicit/share/completions/hg.fish:496 -#, fuzzy msgid "exclude names matching the given patterns" -msgstr "List all modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:21 #: /tmp/fish/implicit/share/completions/hg.fish:48 @@ -32812,9 +30748,8 @@ msgstr "List all modules matching the given wildcard" #: /tmp/fish/implicit/share/completions/hg.fish:287 #: /tmp/fish/implicit/share/completions/hg.fish:430 #: /tmp/fish/implicit/share/completions/hg.fish:497 -#, fuzzy msgid "recurse into subrepositories" -msgstr "Recurse into subdir" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:22 #: /tmp/fish/implicit/share/completions/hg.fish:27 @@ -32876,9 +30811,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:518 #: /tmp/fish/implicit/share/completions/hg.fish:523 #: /tmp/fish/implicit/share/completions/hg.fish:524 -#, fuzzy msgid "operate on patch repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:24 #: /tmp/fish/implicit/share/completions/hg.fish:213 @@ -32886,23 +30820,20 @@ msgid "guess renamed files by similarity (0<=s<=100)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:29 -#, fuzzy msgid "annotate the specified revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:30 -#, fuzzy msgid "don't follow copies and renames" -msgstr "Include only the following names" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:31 #: /tmp/fish/implicit/share/completions/hg.fish:128 #: /tmp/fish/implicit/share/completions/hg.fish:145 #: /tmp/fish/implicit/share/completions/hg.fish:165 #: /tmp/fish/implicit/share/completions/hg.fish:328 -#, fuzzy msgid "treat all files as text" -msgstr "Treat all files as text" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:32 #: /tmp/fish/implicit/share/completions/hg.fish:171 @@ -32910,9 +30841,8 @@ msgid "list the author (long with -v)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:33 -#, fuzzy msgid "list the filename" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:34 #: /tmp/fish/implicit/share/completions/hg.fish:172 @@ -32920,14 +30850,12 @@ msgid "list the date (short with -q)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:35 -#, fuzzy msgid "list the revision number (default)" -msgstr "Edit the long comment by default" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:36 -#, fuzzy msgid "list the changeset" -msgstr "Reinstall the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:37 msgid "show line number at the first appearance" @@ -32938,60 +30866,52 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:333 #: /tmp/fish/implicit/share/completions/hg.fish:396 #: /tmp/fish/implicit/share/completions/hg.fish:431 -#, fuzzy msgid "ignore white space when comparing lines" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:39 #: /tmp/fish/implicit/share/completions/hg.fish:134 -#, fuzzy msgid "changes in the amount of white space" -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:40 #: /tmp/fish/implicit/share/completions/hg.fish:135 #: /tmp/fish/implicit/share/completions/hg.fish:335 #: /tmp/fish/implicit/share/completions/hg.fish:398 #: /tmp/fish/implicit/share/completions/hg.fish:433 -#, fuzzy msgid "ignore changes whose lines are all blank" -msgstr "Ignore changes whose lines are all blank" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:44 msgid "do not pass files through decoders" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:45 -#, fuzzy msgid "directory prefix for files in archive" -msgstr "Starting file in archive" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:46 -#, fuzzy msgid "revision to distribute" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:47 -#, fuzzy msgid "type of distribution to create" -msgstr "Type of L1 instruction cache" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:52 msgid "merge with old dirstate parent after backout" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:53 -#, fuzzy msgid "revision to backout" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:54 #: /tmp/fish/implicit/share/completions/hg.fish:160 #: /tmp/fish/implicit/share/completions/hg.fish:269 #: /tmp/fish/implicit/share/completions/hg.fish:452 -#, fuzzy msgid "specify merge tool" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:57 #: /tmp/fish/implicit/share/completions/hg.fish:112 @@ -33001,9 +30921,8 @@ msgstr "Specify trust model" #: /tmp/fish/implicit/share/completions/hg.fish:394 #: /tmp/fish/implicit/share/completions/hg.fish:408 #: /tmp/fish/implicit/share/completions/hg.fish:426 -#, fuzzy msgid "use text as commit message" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:58 #: /tmp/fish/implicit/share/completions/hg.fish:113 @@ -33013,9 +30932,8 @@ msgstr "Read commit message from file" #: /tmp/fish/implicit/share/completions/hg.fish:395 #: /tmp/fish/implicit/share/completions/hg.fish:409 #: /tmp/fish/implicit/share/completions/hg.fish:427 -#, fuzzy msgid "read commit message from file" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:59 #: /tmp/fish/implicit/share/completions/hg.fish:114 @@ -33023,9 +30941,8 @@ msgstr "Read commit message from file" #: /tmp/fish/implicit/share/completions/hg.fish:211 #: /tmp/fish/implicit/share/completions/hg.fish:428 #: /tmp/fish/implicit/share/completions/hg.fish:513 -#, fuzzy msgid "record the specified date as commit date" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:60 #: /tmp/fish/implicit/share/completions/hg.fish:115 @@ -33033,9 +30950,8 @@ msgstr "Help for the specified command" #: /tmp/fish/implicit/share/completions/hg.fish:212 #: /tmp/fish/implicit/share/completions/hg.fish:429 #: /tmp/fish/implicit/share/completions/hg.fish:514 -#, fuzzy msgid "record the specified user as committer" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:62 msgid "reset bisect state" @@ -33046,9 +30962,8 @@ msgid "mark changeset good" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:64 -#, fuzzy msgid "mark changeset bad" -msgstr "Make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:65 msgid "skip testing changeset" @@ -33063,9 +30978,8 @@ msgid "use command to check changeset state" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:68 -#, fuzzy msgid "do not update to target" -msgstr "Do not upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:70 #: /tmp/fish/implicit/share/completions/ifdown.fish:2 @@ -33076,9 +30990,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:71 #: /tmp/fish/implicit/share/completions/hg.fish:126 #: /tmp/fish/implicit/share/completions/hg.fish:522 -#, fuzzy msgid "revision" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:72 msgid "delete a given bookmark" @@ -33110,23 +31023,20 @@ msgid "run even when the destination is unrelated" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:82 -#, fuzzy msgid "a changeset intended to be added to the destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:83 msgid "a specific branch you would like to bundle" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:84 -#, fuzzy msgid "a base changeset assumed to be available at the destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:85 -#, fuzzy msgid "bundle all changesets in the repository" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:86 msgid "bundle compression type to use (default: bzip2)" @@ -33141,9 +31051,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:305 #: /tmp/fish/implicit/share/completions/hg.fish:314 #: /tmp/fish/implicit/share/completions/hg.fish:324 -#, fuzzy msgid "specify ssh command to use" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:88 #: /tmp/fish/implicit/share/completions/hg.fish:104 @@ -33154,9 +31063,8 @@ msgstr "Pass command to shell" #: /tmp/fish/implicit/share/completions/hg.fish:306 #: /tmp/fish/implicit/share/completions/hg.fish:315 #: /tmp/fish/implicit/share/completions/hg.fish:325 -#, fuzzy msgid "specify hg command to run on the remote side" -msgstr "Specify root directory for rpm operations" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:89 msgid "do not verify server certificate (ignoring web.cacerts" @@ -33164,37 +31072,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:91 #: /tmp/fish/implicit/share/completions/hg.fish:142 -#, fuzzy msgid "print output to file with formatted name" -msgstr "Redirect output to file if file does not exist" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:92 -#, fuzzy msgid "print the given revision" -msgstr "Print svn revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:93 msgid "apply any matching decode filter" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:97 -#, fuzzy msgid "the clone will include an empty working copy (only a repository)" -msgstr "Check out a working copy from a repository." +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:98 msgid "revision, tag or branch to check out" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:99 -#, fuzzy msgid "include the specified changeset" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:100 -#, fuzzy msgid "clone only the specified branch" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:101 #: /tmp/fish/implicit/share/completions/hg.fish:320 @@ -33228,20 +31131,17 @@ msgid "mark a branch as closed, hiding it from the branch list" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:108 -#, fuzzy msgid "amend the parent of the working directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:109 #: /tmp/fish/implicit/share/completions/hg.fish:423 -#, fuzzy msgid "use the secret phase for committing" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:118 -#, fuzzy msgid "untrusted configuration options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:120 msgid "record a copy that has already occurred" @@ -33253,9 +31153,8 @@ msgid "forcibly copy over an existing managed file" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:127 -#, fuzzy msgid "change made by revision" -msgstr "Manage abbreviations" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:129 #: /tmp/fish/implicit/share/completions/hg.fish:146 @@ -33267,9 +31166,8 @@ msgstr "Manage abbreviations" #: /tmp/fish/implicit/share/completions/hg.fish:357 #: /tmp/fish/implicit/share/completions/hg.fish:387 #: /tmp/fish/implicit/share/completions/hg.fish:400 -#, fuzzy msgid "use git extended diff format" -msgstr "Use context diff format" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:130 #: /tmp/fish/implicit/share/completions/hg.fish:147 @@ -33279,9 +31177,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:131 #: /tmp/fish/implicit/share/completions/hg.fish:331 -#, fuzzy msgid "show which function each change is in" -msgstr "Identify the C function each change is in" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:132 #: /tmp/fish/implicit/share/completions/hg.fish:332 @@ -33290,9 +31187,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:136 #: /tmp/fish/implicit/share/completions/hg.fish:336 -#, fuzzy msgid "number of lines of context to show" -msgstr "Print NUM lines of context" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:137 #: /tmp/fish/implicit/share/completions/hg.fish:225 @@ -33307,14 +31203,12 @@ msgid "against the second parent" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:144 -#, fuzzy msgid "revisions to export" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:152 -#, fuzzy msgid "revisions to graft" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:153 msgid "resume interrupted graft" @@ -33322,33 +31216,28 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:154 #: /tmp/fish/implicit/share/completions/hg.fish:204 -#, fuzzy msgid "invoke editor on commit messages" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:155 -#, fuzzy msgid "append graft info to log message" -msgstr "Specify log message" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:156 -#, fuzzy msgid "the current date as commit date" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:157 -#, fuzzy msgid "the current user as committer" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:163 msgid "end fields with NUL" msgstr "end fields with NUL" #: /tmp/fish/implicit/share/completions/hg.fish:164 -#, fuzzy msgid "print all revisions that match" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:166 #: /tmp/fish/implicit/share/completions/hg.fish:244 @@ -33356,18 +31245,16 @@ msgid "follow changeset history, or file history across copies and renames" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:167 -#, fuzzy msgid "ignore case when matching" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:168 msgid "print only filenames and revisions that match" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:169 -#, fuzzy msgid "print matching line numbers" -msgstr "Print line number" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:170 msgid "only search files changed within revision range" @@ -33390,38 +31277,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:259 #: /tmp/fish/implicit/share/completions/hg.fish:282 #: /tmp/fish/implicit/share/completions/hg.fish:290 -#, fuzzy msgid "display using template map file" -msgstr "Display all matches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:180 #: /tmp/fish/implicit/share/completions/hg.fish:228 #: /tmp/fish/implicit/share/completions/hg.fish:260 #: /tmp/fish/implicit/share/completions/hg.fish:283 #: /tmp/fish/implicit/share/completions/hg.fish:291 -#, fuzzy msgid "display with template" -msgstr "Display all matches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:182 -#, fuzzy msgid "only help for extensions" -msgstr "Disable all GNU extensions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:183 -#, fuzzy msgid "show only help for commands" -msgstr "Use function keys for commands" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:184 -#, fuzzy msgid "show topics matching keyword" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:185 -#, fuzzy msgid "read history edits from the specified file" -msgstr "Read user input from specified file descriptor" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:186 msgid "continue an edit already in progress" @@ -33436,63 +31317,52 @@ msgid "abort an edit in progress" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:189 -#, fuzzy msgid "changesets not found in destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:190 -#, fuzzy msgid "force outgoing even for unrelated repositories" -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:191 -#, fuzzy msgid "first revision to be edited" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:193 -#, fuzzy msgid "identify the specified revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:194 -#, fuzzy msgid "show local revision number" -msgstr "Show record number" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:195 -#, fuzzy msgid "show global revision id" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:196 -#, fuzzy msgid "show branch" -msgstr "Show hierarchy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:197 -#, fuzzy msgid "show tags" -msgstr "Show threads" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:198 msgid "show bookmarks" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:203 -#, fuzzy msgid "directory strip option for patch" -msgstr "Prefix to strip on patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:205 -#, fuzzy msgid "don't commit, just update the working directory" -msgstr "Print the working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:206 -#, fuzzy msgid "apply patch without touching the working directory" -msgstr "Record an inverse patch without changing the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:207 msgid "apply patch to the nodes from which it was generated" @@ -33512,9 +31382,8 @@ msgid "show newest record first" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:217 -#, fuzzy msgid "file to store the bundles into" -msgstr "Edit the patch bundle description" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:218 msgid "a remote changeset intended to be added" @@ -33533,35 +31402,30 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:221 #: /tmp/fish/implicit/share/completions/hg.fish:253 #: /tmp/fish/implicit/share/completions/hg.fish:276 -#, fuzzy msgid "show patch" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:223 #: /tmp/fish/implicit/share/completions/hg.fish:255 #: /tmp/fish/implicit/share/completions/hg.fish:278 -#, fuzzy msgid "limit number of changes displayed" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:224 #: /tmp/fish/implicit/share/completions/hg.fish:256 #: /tmp/fish/implicit/share/completions/hg.fish:279 -#, fuzzy msgid "do not show merges" -msgstr "Do not show flags" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:226 #: /tmp/fish/implicit/share/completions/hg.fish:258 #: /tmp/fish/implicit/share/completions/hg.fish:281 -#, fuzzy msgid "show the revision DAG" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:238 -#, fuzzy msgid "search the repository as it is in REV" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:239 #: /tmp/fish/implicit/share/completions/hg.fish:492 @@ -33569,61 +31433,52 @@ msgid "end filenames with NUL, for use with xargs" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:240 -#, fuzzy msgid "print complete paths from the filesystem root" -msgstr "Update only the database, not the filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:245 -#, fuzzy msgid "show revisions matching date spec" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:246 -#, fuzzy msgid "show copied files" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:247 msgid "do case-insensitive search for a given text" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:248 -#, fuzzy msgid "show the specified revision or range" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:249 msgid "include revisions where files were removed" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:250 -#, fuzzy msgid "revisions committed by user" -msgstr "History of commands executed by user" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:251 -#, fuzzy msgid "show changesets within the given named branch" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:252 msgid "do not display revision or any of its ancestors" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:264 -#, fuzzy msgid "revision to display" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:265 -#, fuzzy msgid "list files from all revisions" -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:267 -#, fuzzy msgid "revision to merge" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:268 msgid "review revisions to merge (no merge is performed)" @@ -33631,9 +31486,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:272 #: /tmp/fish/implicit/share/completions/hg.fish:310 -#, fuzzy msgid "a changeset intended to be included in the destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:275 #: /tmp/fish/implicit/share/completions/hg.fish:312 @@ -33641,9 +31495,8 @@ msgid "a specific branch you would like to push" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:289 -#, fuzzy msgid "show parents of the specified revision" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:294 msgid "set changeset phase to public" @@ -33662,9 +31515,8 @@ msgid "allow to move boundary backward" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:298 -#, fuzzy msgid "target revision" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:300 msgid "update to new branch head if changesets were pulled" @@ -33683,9 +31535,8 @@ msgid "bookmark to pull" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:309 -#, fuzzy msgid "force push" -msgstr "Force yes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:311 msgid "bookmark to push" @@ -33697,9 +31548,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:318 #: /tmp/fish/implicit/share/completions/hg.fish:418 -#, fuzzy msgid "show only the preceding applied patch" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:319 #: /tmp/fish/implicit/share/completions/hg.fish:367 @@ -33707,45 +31557,38 @@ msgstr "Show only matching part" #: /tmp/fish/implicit/share/completions/hg.fish:416 #: /tmp/fish/implicit/share/completions/hg.fish:417 #: /tmp/fish/implicit/share/completions/hg.fish:419 -#, fuzzy msgid "print first line of patch header" -msgstr "Print line of headings" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:321 -#, fuzzy msgid "do not update the new working directories" -msgstr "Print the working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:323 -#, fuzzy msgid "location of source patch repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:327 -#, fuzzy msgid "keep patch file" -msgstr "Test archive files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:334 #: /tmp/fish/implicit/share/completions/hg.fish:397 #: /tmp/fish/implicit/share/completions/hg.fish:432 -#, fuzzy msgid "ignore changes in the amount of white space" -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:340 msgid "finish all applied changesets" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:341 -#, fuzzy msgid "edit patch header" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:342 -#, fuzzy msgid "keep folded patch files" -msgstr "List needed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:345 #: /tmp/fish/implicit/share/completions/hg.fish:369 @@ -33754,58 +31597,50 @@ msgid "tolerate non-conflicting local changes" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:346 -#, fuzzy msgid "overwrite any local changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:347 #: /tmp/fish/implicit/share/completions/hg.fish:371 #: /tmp/fish/implicit/share/completions/hg.fish:379 #: /tmp/fish/implicit/share/completions/hg.fish:459 -#, fuzzy msgid "do not save backup copies of files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:348 -#, fuzzy msgid "all patches and guards" -msgstr "All packages in world" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:349 msgid "drop all guards" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:350 -#, fuzzy msgid "import file in patch directory" -msgstr "Symbolic link to directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:351 -#, fuzzy msgid "name of patch file" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:352 -#, fuzzy msgid "overwrite existing files" -msgstr "Do not overwrite newer files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:353 msgid "place existing revisions under mq control" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:355 -#, fuzzy msgid "qpush after importing" -msgstr "Options for importing keys" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:356 #: /tmp/fish/implicit/share/completions/hg.fish:386 #: /tmp/fish/implicit/share/completions/hg.fish:399 #: /tmp/fish/implicit/share/completions/hg.fish:511 -#, fuzzy msgid "edit commit message" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:358 #: /tmp/fish/implicit/share/completions/hg.fish:388 @@ -33832,53 +31667,44 @@ msgid "interactively record a new patch" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:368 -#, fuzzy msgid "pop all patches" -msgstr "Answer yes to all patches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:370 -#, fuzzy msgid "forget any local changes to patched files" -msgstr "Get ready to edit a watched file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:374 -#, fuzzy msgid "apply on top of local changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:375 -#, fuzzy msgid "apply the target patch to its recorded parent" -msgstr "Create a patch from unrecorded changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:376 -#, fuzzy msgid "list patch name in commit text" -msgstr "Give patch name and comment in file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:377 -#, fuzzy msgid "apply all patches" -msgstr "Apply patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:378 msgid "reorder patch series and apply only the patch" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:380 -#, fuzzy msgid "list all available queues" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:381 -#, fuzzy msgid "print name of active queue" -msgstr "Print number of occurences" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:382 -#, fuzzy msgid "create new queue" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:383 msgid "rename active queue" @@ -33917,14 +31743,12 @@ msgid "interactively select changes to refresh" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:411 -#, fuzzy msgid "disable all guards" -msgstr "disable a network" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:412 -#, fuzzy msgid "list all guards in series file" -msgstr "list all packages owning file(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:413 msgid "pop to before first guarded applied patch" @@ -33935,19 +31759,16 @@ msgid "pop, then reapply patches" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:415 -#, fuzzy msgid "print patches not in series" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:422 -#, fuzzy msgid "amend the parent of the working dir" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:436 -#, fuzzy msgid "record delete for missing files" -msgstr "Name directory for working files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:437 msgid "remove (and delete) file even if added or modified" @@ -33962,9 +31783,8 @@ msgid "select all unresolved files" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:448 -#, fuzzy msgid "list state of files needing merge" -msgstr "print size of files contained in package" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:449 msgid "mark files as resolved" @@ -33985,23 +31805,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:457 #: /tmp/fish/implicit/share/completions/hg.fish:521 -#, fuzzy msgid "tipmost revision matching date" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:458 -#, fuzzy msgid "revert to the specified revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:465 msgid "name of access log file to write to" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:466 -#, fuzzy msgid "run server in background" -msgstr "Run job in background" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:467 msgid "used internally by daemon mode" @@ -34024,9 +31841,8 @@ msgid "prefix path to serve from (default: server root)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:472 -#, fuzzy msgid "name to show in web pages (default: working directory)" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:473 msgid "name of the hgweb config file (see \"hg help hgweb\")" @@ -34038,9 +31854,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:475 #: /tmp/fish/implicit/share/completions/hg.fish:476 -#, fuzzy msgid "for remote clients" -msgstr "List or remove functions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:477 msgid "web templates to use" @@ -34055,34 +31870,28 @@ msgid "use IPv6 in addition to IPv4" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:480 -#, fuzzy msgid "SSL certificate file" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:482 -#, fuzzy msgid "show status of all files" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:483 -#, fuzzy msgid "show only modified files" -msgstr "Download only diff file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:484 -#, fuzzy msgid "show only added files" -msgstr "Freshen: only changed files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:485 -#, fuzzy msgid "show only removed files" -msgstr "Move or rename files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:486 -#, fuzzy msgid "show only deleted (but tracked) files" -msgstr "Do not del source files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:487 msgid "show only files without changes" @@ -34093,29 +31902,24 @@ msgid "show only unknown (not tracked) files" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:489 -#, fuzzy msgid "show only ignored files" -msgstr "Freshen: only changed files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:491 -#, fuzzy msgid "show source of copied files" -msgstr "Use source index field" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:493 -#, fuzzy msgid "show difference from revision" -msgstr "Show differences between revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:494 -#, fuzzy msgid "list the changed files of a revision" -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:499 -#, fuzzy msgid "strip specified revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:500 msgid "force removal of changesets, discard uncommitted changes" @@ -34138,74 +31942,62 @@ msgid "check for push and pull" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:507 -#, fuzzy msgid "force tag" -msgstr "Force warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:508 msgid "make the tag local" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:509 -#, fuzzy msgid "revision to tag" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:510 -#, fuzzy msgid "remove a tag" -msgstr "remove a network" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:512 -#, fuzzy msgid "use as commit message" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:517 msgid "update to new branch head if changesets were unbundled" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:519 -#, fuzzy msgid "discard uncommitted changes (no backup)" -msgstr "Discard unrecorded changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:520 -#, fuzzy msgid "update across branches if no uncommitted changes" -msgstr "Create a patch from unrecorded changes" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:1 -#, fuzzy msgid "Output file in given format" -msgstr "Output filenames using the specified format" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:2 -#, fuzzy msgid "Specify tab length" -msgstr "Specify line-length" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:3 -#, fuzzy msgid "Name of the input file" -msgstr "Name of the source package" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:4 -#, fuzzy msgid "Name of the output file" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:5 #: /tmp/fish/implicit/share/completions/hugo.fish:57 #: /tmp/fish/implicit/share/completions/tex.fish:10 -#, fuzzy msgid "Output directory" -msgstr "Output mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:6 -#, fuzzy msgid "Set type of the source code" -msgstr "Name of the source package" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:7 msgid "Highlight style" @@ -34218,9 +32010,8 @@ msgstr "Update interval" #: /tmp/fish/implicit/share/completions/htop.fish:2 #: /tmp/fish/implicit/share/completions/htop.fish:3 -#, fuzzy msgid "Start htop in monochrome mode" -msgstr "Start in improved Ex mode" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:4 #: /tmp/fish/implicit/share/completions/mkdosfs.fish:22 @@ -34232,112 +32023,92 @@ msgid "Show help and exit" msgstr "Show help and exit" #: /tmp/fish/implicit/share/completions/htop.fish:5 -#, fuzzy msgid "Show only given PIDs" -msgstr "Show additional user IDs" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:6 -#, fuzzy msgid "Monitor given user" -msgstr "Monitor user" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:7 -#, fuzzy msgid "Sort column" -msgstr "List by columns" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:2 #: /tmp/fish/implicit/share/completions/s3cmd.fish:127 -#, fuzzy msgid "Debug output" -msgstr "Debug option" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:3 -#, fuzzy msgid "Enable logging" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:4 -#, fuzzy msgid "Log file" -msgstr "Log to tracefile" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:6 #: /tmp/fish/implicit/share/completions/iptables.fish:25 #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:18 #: /tmp/fish/implicit/share/completions/s3cmd.fish:126 -#, fuzzy msgid "Verbose output" -msgstr "Verbose prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:7 -#, fuzzy msgid "Verbose logging" -msgstr "List users logged in" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:8 -#, fuzzy msgid "Hostname and path to the root" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:9 -#, fuzzy msgid "Include content marked as draft" -msgstr "Include directories tagged as cache" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:10 -#, fuzzy msgid "Include expired content" -msgstr "Include directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:11 -#, fuzzy msgid "Include content with publishdate in the future" -msgstr "Include reverse dependencies in the output" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:12 -#, fuzzy msgid "Cache directory" -msgstr "Change directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:13 msgid "Canonicalize all relative URLs using baseurl" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:14 -#, fuzzy msgid "Remove files from destination not found in static directories" -msgstr "Remove files from version control" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:15 -#, fuzzy msgid "Content directory" -msgstr "Change directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:16 -#, fuzzy msgid "Destination directory" -msgstr "Create any missing directories" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:17 -#, fuzzy msgid "Do not build 404 page" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:18 -#, fuzzy msgid "Disable different kinds of pages" -msgstr "Control creation of sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:19 -#, fuzzy msgid "Do not build RSS files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:20 -#, fuzzy msgid "Do not build sitemap files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:21 msgid "Add Git revision, date and author info to the pages" @@ -34352,29 +32123,24 @@ msgid "Help for hugo" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:24 -#, fuzzy msgid "Print missing translations" -msgstr "Print compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:25 -#, fuzzy msgid "Ignore the cache directory" -msgstr "Include directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:26 -#, fuzzy msgid "Layout directory" -msgstr "Output mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:27 -#, fuzzy msgid "Do not sync permission mode of files" -msgstr "Do not check files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:28 -#, fuzzy msgid "Do not sync modification time of files" -msgstr "Sort by modification time" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:29 msgid "Pluralize titles in lists using inflect" @@ -34386,29 +32152,25 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:31 #: /tmp/fish/implicit/share/completions/hugo.fish:45 -#, fuzzy msgid "Render to memory" -msgstr "Reduce memory usage" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:32 #: /tmp/fish/implicit/share/completions/hugo.fish:58 #: /tmp/fish/implicit/share/completions/hugo.fish:92 #: /tmp/fish/implicit/share/completions/hugo.fish:103 -#, fuzzy msgid "Source directory" -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:33 #: /tmp/fish/implicit/share/completions/hugo.fish:46 -#, fuzzy msgid "Display memory and timing of different steps of the program" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:34 #: /tmp/fish/implicit/share/completions/hugo.fish:47 -#, fuzzy msgid "Display metrics about template executions" -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:35 #: /tmp/fish/implicit/share/completions/hugo.fish:48 @@ -34416,19 +32178,16 @@ msgid "Calculate some improvement hints when combined with --templateMetrics" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:36 -#, fuzzy msgid "Theme to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:37 -#, fuzzy msgid "Themes directory" -msgstr "Remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:38 -#, fuzzy msgid "Use /filename.html instead of /filename/" -msgstr "Use /dev/urandom instead of /dev/random" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:39 msgid "Watch filesystem for changes and recreate as needed" @@ -34439,28 +32198,24 @@ msgid "Benchmark Hugo by building the site a number of times" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:41 -#, fuzzy msgid "Number of times to build the site" -msgstr "Name of the darcs executable on the remote server" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:42 -#, fuzzy msgid "CPU profile file" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:43 msgid "Help for benchmark" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:44 -#, fuzzy msgid "Memory profile file" -msgstr "Move or rename files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:49 -#, fuzzy msgid "Perform some verification checks" -msgstr "Perform contents generation" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:50 msgid "Help for check" @@ -34471,34 +32226,28 @@ msgid "Check system ulimit settings" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:52 -#, fuzzy msgid "Help for ulimit" -msgstr "Recursion limit" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:53 -#, fuzzy msgid "Print the site configuration" -msgstr "Write out the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:54 -#, fuzzy msgid "Help for config" -msgstr "Help on subject config" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:55 -#, fuzzy msgid "Convert the content to different formats" -msgstr "Don't add contents of subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:56 -#, fuzzy msgid "Help for convert" -msgstr "Alias for “get”" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:59 -#, fuzzy msgid "Enable less safe operations" -msgstr "Disable multi-threaded operation" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:60 msgid "Convert front matter to JSON" @@ -34525,14 +32274,12 @@ msgid "Help for toYAML" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:66 -#, fuzzy msgid "Print Hugo version and environment info" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:67 -#, fuzzy msgid "Help for env" -msgstr "Alias for “get”" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:68 msgid "Collection of several useful generators" @@ -34547,18 +32294,16 @@ msgid "Generate shell autocompletion script for Hugo" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:71 -#, fuzzy msgid "Autocompletion file" -msgstr "Complete using path" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:72 msgid "Help for autocomplete" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:73 -#, fuzzy msgid "Autocompletion type" -msgstr "Path to add completion to" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:74 msgid "Generate CSS stylesheet for the Chroma code highlighter" @@ -34569,199 +32314,168 @@ msgid "Help for chromastyles" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:76 -#, fuzzy msgid "Style used for highlighting lines" -msgstr "No search highlighting" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:77 -#, fuzzy msgid "Style used for line numbers" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:78 msgid "Highlighter style" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:79 -#, fuzzy msgid "Generate Markdown documentation for the Hugo CLI" -msgstr "Generate RDoc documentation for the gem on install" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:80 -#, fuzzy msgid "Doc directory" -msgstr "Directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:81 msgid "Help for doc" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:82 -#, fuzzy msgid "Generate man pages for the Hugo CLI" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:83 -#, fuzzy msgid "Man pages directory" -msgstr "Change directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:84 -#, fuzzy msgid "Help for man" -msgstr "Short format" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:85 -#, fuzzy msgid "Import your site from others" -msgstr "Compress repository with" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:86 -#, fuzzy msgid "Help for import" -msgstr "Dir to import" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:87 msgid "Import from Jekyll" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:88 -#, fuzzy msgid "Allow import into non-empty target directory" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:89 msgid "Help for jekyll" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:90 -#, fuzzy msgid "List various types of content" -msgstr "List archive contents" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:91 -#, fuzzy msgid "Help for list" -msgstr "Home for %ls" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:93 -#, fuzzy msgid "List all drafts" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:94 msgid "Help for drafts" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:95 -#, fuzzy msgid "List all expired posts" -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:96 -#, fuzzy msgid "Help for expired" -msgstr "Timer expired" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:97 -#, fuzzy msgid "List all posts dated in the future" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:98 -#, fuzzy msgid "Help for future" -msgstr "Alias for atrm" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:99 -#, fuzzy msgid "Create new content" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:100 -#, fuzzy msgid "Editor to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:101 msgid "Help for new" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:102 -#, fuzzy msgid "Content type to create" -msgstr "Concatenate output to file" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:104 -#, fuzzy msgid "Create a new site" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:105 -#, fuzzy msgid "Create site inside non-empty directory" -msgstr "Create any missing directories" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:106 msgid "Config and front matter format" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:107 -#, fuzzy msgid "Help for site" -msgstr "Home for %ls" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:108 -#, fuzzy msgid "Create a new theme" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:109 -#, fuzzy msgid "Help for theme" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:110 -#, fuzzy msgid "Start high performance web server" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:111 -#, fuzzy msgid "Append port to baseurl" -msgstr "Append input to selection" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:112 msgid "Interface to which the server will bind" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:113 -#, fuzzy msgid "Enable full re-renders on changes" -msgstr "Make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:114 msgid "Watch without enabling live browser reload on rebuild" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:115 -#, fuzzy msgid "Help for server" -msgstr "Use proxy server" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:116 -#, fuzzy msgid "Port for live reloading" -msgstr "Dynamic port forwarding" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:117 msgid "Interval to poll memory usage" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:118 -#, fuzzy msgid "Memory usage log file" -msgstr "Erase obsolete files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:119 msgid "Navigate to changed content file on live browser reload" @@ -34776,9 +32490,8 @@ msgid "Port on which the server will listen" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:122 -#, fuzzy msgid "Render to destination directory" -msgstr "Create any missing directories" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:123 msgid "Reset the content draft status" @@ -34789,58 +32502,48 @@ msgid "Help for undraft" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:125 -#, fuzzy msgid "Print the version number of Hugo" -msgstr "Print line number" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:126 -#, fuzzy msgid "Help for version" -msgstr "Name of client" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:1 -#, fuzzy msgid "Only send ipc message and suppress output" -msgstr "Run adb devices and parse output" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:2 -#, fuzzy msgid "Display version number and exit" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:4 -#, fuzzy msgid "Set socket" -msgstr "Socket" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:5 -#, fuzzy msgid "Specify ipc message type" -msgstr "Specify log message" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:1 -#, fuzzy msgid "Convert from specified encoding" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:2 -#, fuzzy msgid "Convert to specified encoding" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:3 -#, fuzzy msgid "List known coded character sets" -msgstr "Set the native character set" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:4 msgid "Output file" msgstr "Output file" #: /tmp/fish/implicit/share/completions/iconv.fish:5 -#, fuzzy msgid "Print progress information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:2 #: /tmp/fish/implicit/share/completions/mogrify.fish:4 @@ -34861,9 +32564,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:26 -#, fuzzy msgid "Display the number of unique colors in the image" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:30 msgid "Replace each pixel with its complementary color" @@ -34878,9 +32580,8 @@ msgid "Print all group ids" msgstr "Print all group ids" #: /tmp/fish/implicit/share/completions/id.fish:3 -#, fuzzy msgid "Print name, not number" -msgstr "Print line number" +msgstr "" #: /tmp/fish/implicit/share/completions/id.fish:4 msgid "Print real ID, not effective" @@ -34919,131 +32620,108 @@ msgid "Reports interface existence via return code" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:2 -#, fuzzy msgid "Print out the whole config of iface" -msgstr "Write out the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:3 msgid "Print out yes or no according to existence" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:4 -#, fuzzy msgid "Print out the address" -msgstr "Print mounted devices" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:5 -#, fuzzy msgid "Print netmask" -msgstr "Print tally" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:6 -#, fuzzy msgid "Print network address" -msgstr "Print network node hostname" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:7 -#, fuzzy msgid "Print broadcast" -msgstr "Print processor" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:8 -#, fuzzy msgid "Print mtu" -msgstr "Print tally" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:9 -#, fuzzy msgid "Print out the hardware address" -msgstr "Use hardware address" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:10 -#, fuzzy msgid "Print flags" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:11 -#, fuzzy msgid "Print all statistics on input" -msgstr "Write package statistics to a file" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:12 -#, fuzzy msgid "Print # of in packets" -msgstr "Print login process" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:13 -#, fuzzy msgid "Print # of in bytes" -msgstr "Print size of files" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:14 -#, fuzzy msgid "Print # of in errors" -msgstr "Print size of files" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:15 -#, fuzzy msgid "Print # of in drops" -msgstr "Print X windows" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:16 -#, fuzzy msgid "Print # of in fifo overruns" -msgstr "Print size of files" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:17 -#, fuzzy msgid "Print # of in compress" -msgstr "Print login process" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:18 -#, fuzzy msgid "Print # of in multicast" -msgstr "Print size of files" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:19 -#, fuzzy msgid "Print all statistics on output" -msgstr "Print xrandr outputs" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:20 -#, fuzzy msgid "Print # of out packets" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:21 -#, fuzzy msgid "Print # of out bytes" -msgstr "Print time of last boot" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:22 -#, fuzzy msgid "Print # of out errors" -msgstr "Print full records" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:23 -#, fuzzy msgid "Print # of out drops" -msgstr "Print full records" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:24 msgid "Print # of out fifo overruns" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:25 -#, fuzzy msgid "Print # of out collisions" -msgstr "Print lpr options" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:26 msgid "Print # of out carrier loss" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:27 -#, fuzzy msgid "Print # of out multicast" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:28 msgid "Print # of incoming bytes per second" @@ -35054,9 +32732,8 @@ msgid "Print # of outgoing bytes per second" msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:2 -#, fuzzy msgid "Include window border in the output image" -msgstr "Include reverse dependencies in the output" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:10 msgid "Obtain image by descending window hierarchy" @@ -35088,27 +32765,24 @@ msgid "Seconds delay between snapshots [value]" msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:37 -#, fuzzy msgid "Select image from root window" -msgstr "Select root window" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:40 msgid "Operate silently, i.e. don't ring any bells " msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:41 -#, fuzzy msgid "Number of screen snapshots [value]" -msgstr "Number of scrolled off lines" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:47 msgid "Constant, Edge, Mirror, or Tile [method]" msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:48 -#, fuzzy msgid "Select window with this id or name [id]" -msgstr "Select window by name" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:52 msgid "Preferred size or location of the image [geometry]" @@ -35120,78 +32794,64 @@ msgid "Make this color transparent within the image [color]" msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:1 -#, fuzzy msgid "Start the service" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:2 -#, fuzzy msgid "Stop the service" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:3 -#, fuzzy msgid "Restart the service" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:4 -#, fuzzy msgid "Reload Configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:5 -#, fuzzy msgid "Force reloading configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:6 -#, fuzzy msgid "Print the status of the service" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:1 -#, fuzzy msgid "Read commands from file or stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:2 -#, fuzzy msgid "Don't terminate on errors in batch mode" -msgstr "Be tolerant of errors in commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:3 -#, fuzzy msgid "Print the version" -msgstr "Print node's version" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:4 -#, fuzzy msgid "Output more information" -msgstr "List inode information" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:5 -#, fuzzy msgid "Output more detailed information" -msgstr "List inode information" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:6 -#, fuzzy msgid "Specify maximum number of loops for 'ip addr flush'" -msgstr "Specify the number of jobs to run in parallel" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:7 msgid "The protocol family to use" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:8 -#, fuzzy msgid "Short for --family inet" -msgstr "Short format" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:9 -#, fuzzy msgid "Short for --family inet6" -msgstr "Short format" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:10 msgid "Short for --family bridge" @@ -35210,23 +32870,20 @@ msgid "Short for --family link" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:14 -#, fuzzy msgid "Output on one line" -msgstr "Output only first of equal lines" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:15 msgid "Resolve names and print them instead of addresses" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:16 -#, fuzzy msgid "Use specified network namespace" -msgstr "Use specified keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:17 -#, fuzzy msgid "Execute command for all objects" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:1 msgid "Create a set identified with SETNAME" @@ -35237,9 +32894,8 @@ msgid "Add a given entry to a SET" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:3 -#, fuzzy msgid "Delete an entry from a SET" -msgstr "Deletes an item from history" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:4 msgid "Test whether an entry is in a set" @@ -35247,87 +32903,73 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:5 #: /tmp/fish/implicit/share/completions/ipset.fish:6 -#, fuzzy msgid "Destroy the specified set or all sets" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:7 msgid "a" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:9 -#, fuzzy msgid "Output format to the list command" -msgstr "Help for this command" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:10 -#, fuzzy msgid "Suppress any output" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:11 msgid "Enforce name lookup" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:12 -#, fuzzy msgid "List just the names of the sets" -msgstr "Lists the clients in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:13 -#, fuzzy msgid "List the set names and headers" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:14 -#, fuzzy msgid "Filename instead of stdout" -msgstr "Print file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:1 -#, fuzzy msgid "Append rules to the end of a chain" -msgstr "Append files to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:2 msgid "Check whether a matching rule exists in a chain" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:3 -#, fuzzy msgid "Delete rules from a chain" -msgstr "Delete from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:4 #: /tmp/fish/implicit/share/completions/iptables.fish:20 -#, fuzzy msgid "Specify the target of a rule" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:5 -#, fuzzy msgid "Specify a match to use" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:6 -#, fuzzy msgid "Insert rules in the beginning of a chain" -msgstr "Invert the sense of matching" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:7 -#, fuzzy msgid "Replace a rule in a chain" -msgstr "Replace revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:8 -#, fuzzy msgid "List all rules in a chain" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:9 -#, fuzzy msgid "Print all rules in a chain." -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:10 msgid "Delete ALL rules in a chain" @@ -35338,9 +32980,8 @@ msgid "Zero the packet and byte counters in chains" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:12 -#, fuzzy msgid "Create a new user-defined chain by the given name" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:13 msgid "Delete the optional user-defined chain specified" @@ -35359,9 +33000,8 @@ msgid "The protocol of the rule or of the packet to check" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:18 -#, fuzzy msgid "Source specification" -msgstr "force reassociation" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:19 msgid "Destination specification" @@ -35389,14 +33029,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:27 #: /tmp/fish/implicit/share/completions/pv.fish:11 -#, fuzzy msgid "Numeric output" -msgstr "Numeric output only" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:28 -#, fuzzy msgid "Expand numbers" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:29 msgid "When listing rules, add line numbers" @@ -35407,9 +33045,8 @@ msgid "The table to operate on" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:31 -#, fuzzy msgid "Use this command to load modules" -msgstr "Use to build" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:2 msgid "Automock all files by default" @@ -35428,9 +33065,8 @@ msgid "Whether to use the transform cache" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:6 -#, fuzzy msgid "Disable the cache" -msgstr "Disable server-side cache" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:7 msgid "The directory where Jest should store its dependency information" @@ -35445,9 +33081,8 @@ msgid "Automatically clear mock calls and instances every test" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:10 -#, fuzzy msgid "Alias for --coverage" -msgstr "Alias for “get”" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:11 msgid "" @@ -35463,14 +33098,12 @@ msgid "Forces test results output color highlighting" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:14 -#, fuzzy msgid "Alias for --color" -msgstr "Alias for atrm" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:15 -#, fuzzy msgid "The path to a jest config file" -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:16 msgid "" @@ -35483,9 +33116,8 @@ msgid "The directory where Jest should output its coverage files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:18 -#, fuzzy msgid "Pattern of files to ignore" -msgstr "Specify files to ignore" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:19 msgid "A list of reporter names that Jest uses when writing coverage reports" @@ -35498,18 +33130,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:21 -#, fuzzy msgid "Print debugging info about your jest config" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:22 msgid "The test environment used for all tests" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:23 -#, fuzzy msgid "Use this flag to show full diffs instead of a patch" -msgstr "Use this config file instead of default" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:24 msgid "Find related tests for a list of source files" @@ -35548,9 +33178,8 @@ msgid "Maps code coverage reports against original source code" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:33 -#, fuzzy msgid "Specifies the maximum number of workers" -msgstr "Maximum number of log entries" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:34 msgid "Directory names to be searched recursively up from the requiring module" @@ -35567,9 +33196,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:37 -#, fuzzy msgid "Modules to ignore" -msgstr "HTML tags to ignore" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:38 msgid "An alternative API to setting the NODE_PATH env variable" @@ -35584,9 +33212,8 @@ msgid "Activates notifications for test results" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:41 -#, fuzzy msgid "Run tests based on the changed files" -msgstr "Freshen: only changed files" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:42 msgid "A file where to write test results" @@ -35625,9 +33252,8 @@ msgid "Paths to directories that Jest should use to search for files in" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:51 -#, fuzzy msgid "Run all tests serially in the current process" -msgstr "Run command in current process" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:52 msgid "The paths to modules to configure the testing environment" @@ -35642,18 +33268,16 @@ msgid "Print your jest config and then exits" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:55 -#, fuzzy msgid "Prevent tests from printing messages through the console" -msgstr "Send error messages through syslog" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:56 msgid "Snapshot serializer modules Jest should use for snapshot testing" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:57 -#, fuzzy msgid "Alias for --env" -msgstr "Alias for “get”" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:58 msgid "The glob patterns Jest uses to detect test files" @@ -35711,9 +33335,8 @@ msgid "Use this flag to re-record snapshots" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:71 -#, fuzzy msgid "Divert all output to stderr" -msgstr "Never write output to terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:72 msgid "Display individual test results with the test suite hierarchy" @@ -35722,9 +33345,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:73 #: /tmp/fish/implicit/share/completions/snap.fish:15 #: /tmp/fish/implicit/share/completions/vagrant.fish:3 -#, fuzzy msgid "Print the version and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:74 msgid "Watch files for changes and rerun tests related to changed files" @@ -35743,29 +33365,24 @@ msgid "Disable using watchman for file crawling" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:1 -#, fuzzy msgid "Enable debugger" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:2 -#, fuzzy msgid "Output usage information" -msgstr "Could not get user information" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:3 -#, fuzzy msgid "Output version number" -msgstr "Version number" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:4 -#, fuzzy msgid "Create a new JHipster application" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:5 -#, fuzzy msgid "Deploy the current application to AWS" -msgstr "Delete cached package files" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:6 msgid "Create pipeline scripts for popular CI tools" @@ -35792,28 +33409,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:11 -#, fuzzy msgid "Create a JDL file from the existing entities" -msgstr "Remove files after adding to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:12 -#, fuzzy msgid "Deploy the current application to Heroku" -msgstr "Delete cached package files" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:13 msgid "Create entities from the JDL file passed in argument" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:14 -#, fuzzy msgid "Display information about your current project and system" -msgstr "Display information about a local or remote item." +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:15 -#, fuzzy msgid "Deploy the current application to Kubernetes" -msgstr "Do not cache authentication tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:16 msgid "" @@ -35822,38 +33435,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:17 -#, fuzzy msgid "Deploy the current application to OpenShift" -msgstr "Display version and supported algorithms, and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:18 -#, fuzzy msgid "Deploy the current application to Rancher" -msgstr "Delete cached package files" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:19 -#, fuzzy msgid "Create a new JHipster server-side application" -msgstr "Create a new directory under version control." +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:20 -#, fuzzy msgid "Create a new Spring service bean" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:21 msgid "Upgrade the JHipster version and the generated application" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:22 -#, fuzzy msgid "Print command completion script" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/jobs.fish:2 -#, fuzzy msgid "Show the process id of each process in the job" -msgstr "Show the source location of a particular gem in the bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/jobs.fish:3 msgid "Show group id of job" @@ -35876,43 +33483,36 @@ msgid "OR" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:4 -#, fuzzy msgid "Prints a short help text and exits" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:5 -#, fuzzy msgid "Prints a short version string and exits" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:7 -#, fuzzy msgid "Show all fields in full" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:8 -#, fuzzy msgid "Show live tail of entries" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:9 -#, fuzzy msgid "Controls the number of journal lines" -msgstr "Count the number of arguments" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:10 msgid "Show all lines, even in follow mode" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:11 -#, fuzzy msgid "Controls the formatting" -msgstr "Could not get user information" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:12 -#, fuzzy msgid "Suppress warning about normal user" -msgstr "Suppress the warning about “using insecure memory”" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:13 msgid "Show entries interleaved from all journals" @@ -35923,9 +33523,8 @@ msgid "Show data only from a certain boot" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:15 -#, fuzzy msgid "Show data only of the specified unit" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:16 msgid "Filter by priority" @@ -35944,28 +33543,24 @@ msgid "Entries on or older than DATE" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:20 -#, fuzzy msgid "Print all possible data values" -msgstr "Print as little as possible" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:21 -#, fuzzy msgid "Specify journal directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:22 msgid "Generate a new 128 bit ID" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:23 -#, fuzzy msgid "Show internal header information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:24 -#, fuzzy msgid "Shows the current disk usage" -msgstr "Show current path" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:25 msgid "Generate Forward Secure Sealing key pair" @@ -35976,41 +33571,36 @@ msgid "Change interval for the sealing" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:27 -#, fuzzy msgid "Check journal for internal consistency" -msgstr "Check the repository for consistency" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:28 msgid "Specifies FSS key for --verify" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:1 -#, fuzzy msgid "Output version and exit" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:2 msgid "Use application/json-seq MIME type scheme" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:3 -#, fuzzy msgid "Parse input in streaming fasion" -msgstr "Print svn revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:4 msgid "Run filter just once in large array" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:5 -#, fuzzy msgid "Don't parse as JSON but as string" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:6 -#, fuzzy msgid "Ignore input and treat it as null" -msgstr "Force input to be treated as HTML" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:7 msgid "Don't pretty-print JSON" @@ -36021,28 +33611,24 @@ msgid "Use a tab for indentation instead of 2 spaces" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:9 -#, fuzzy msgid "Use given number of spaces for indentation" -msgstr "Use Kerberos realm for authentication" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:11 -#, fuzzy msgid "Don't color output" -msgstr "Don't use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:12 -#, fuzzy msgid "Replace UTF-8 characters with escape sequences" -msgstr "Replace non-graphic characters with “?”" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:13 msgid "Flush output after each JSON object is printed" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:14 -#, fuzzy msgid "Sort object keys in output" -msgstr "Don't use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:15 msgid "If output is string ouput its content directly to stdout" @@ -36053,64 +33639,52 @@ msgid "Raw ouput without newlines" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:17 -#, fuzzy msgid "Read filter from file" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:18 -#, fuzzy msgid "Prepend given directory to search modules" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:19 -#, fuzzy msgid "Set exit status" -msgstr "Negate exit status of job" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:20 -#, fuzzy msgid "Set variable" -msgstr "set/list variables" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:21 -#, fuzzy msgid "Set JSON-encoded variable" -msgstr "Set CVS user variable." +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:22 -#, fuzzy msgid "Read JSON in file and bind to given variable" -msgstr "Read a line of input into variables" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:23 -#, fuzzy msgid "Read JSON in file and bind to given variable [see man]" -msgstr "Read a line of input into variables" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:24 -#, fuzzy msgid "Run tests in given file" -msgstr "Run in login mode" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:1 -#, fuzzy msgid "List available modules" -msgstr "List available updates" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:2 -#, fuzzy msgid "Show author information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:3 -#, fuzzy msgid "Show license information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:4 -#, fuzzy msgid "Set a language" -msgstr "Subtitle language" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:5 msgid "Don't show main window" @@ -36125,24 +33699,20 @@ msgid "Icon for the module" msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:8 -#, fuzzy msgid "Title for the window" -msgstr "Select root window" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:9 -#, fuzzy msgid "Show version information and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:10 -#, fuzzy msgid "Show help information and exit" -msgstr "Show help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:1 -#, fuzzy msgid "List all devices" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:2 msgid "List available (paired and reachable) devices" @@ -36167,9 +33737,8 @@ msgid "Find the said device by ringing it." msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:7 -#, fuzzy msgid "Stop pairing to a said device" -msgstr "Stop and then start service" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:8 msgid "Sends a ping to said device" @@ -36184,33 +33753,28 @@ msgid "Share a file to a said device" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:11 -#, fuzzy msgid "Display the notifications on a said device" -msgstr "Display configuration and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:12 -#, fuzzy msgid "Lock the specified device" -msgstr "Remove specified service" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:13 msgid "Sends an SMS. Requires destination" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:14 -#, fuzzy msgid "Phone number to send the message" -msgstr "Specify the subject of the message" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:15 -#, fuzzy msgid "Device ID" -msgstr "Device section" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:16 -#, fuzzy msgid "Device Name" -msgstr "Device section" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:17 msgid "Get encryption info about said device" @@ -36221,29 +33785,24 @@ msgid "Lists remote commands and their ids" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:19 -#, fuzzy msgid "Executes a remote command by id" -msgstr "Do not execute remote command" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:20 -#, fuzzy msgid "Displays this help." -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:21 -#, fuzzy msgid "Displays version information." -msgstr "Display RubyGems environmental information" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:22 -#, fuzzy msgid "Show author information." -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:23 -#, fuzzy msgid "Show license information." -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:24 msgid "The base file name of the desktop entry for this application." @@ -36288,9 +33847,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/killall.fish:11 -#, fuzzy msgid "List names of available signals and exit" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/completions/killall.fish:12 msgid "Case sensitive argument match for processed" @@ -36313,25 +33871,21 @@ msgid "Limit to processes matching specified PROCNAME" msgstr "" #: /tmp/fish/implicit/share/completions/killall.fish:18 -#, fuzzy msgid "Do not skip zombies" -msgstr "Don't skip boring files" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:1 -#, fuzzy msgid "Test if kitchen has yet to be given the main command" -msgstr "Test if vagrant has yet to be given the main command" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:2 #: /tmp/fish/implicit/share/completions/kitchen.fish:3 -#, fuzzy msgid "Describe available commands or one specific command" -msgstr "Describe available tasks or one specific task" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:4 -#, fuzzy msgid "Lists one or more instances" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:5 msgid "List the name of each instance only, one per line" @@ -36343,9 +33897,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:2 #: /tmp/fish/implicit/share/completions/latexmk.fish:32 -#, fuzzy msgid "never use bibtex" -msgstr "Don't verify user attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:3 msgid "use bibtex when needed, but only if the bib files exist" @@ -36360,9 +33913,8 @@ msgid "Set contrast or intensity of banner" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:6 -#, fuzzy msgid "Set scale for banner" -msgstr "Set date forward" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:7 msgid "list commands used by latexmk for processing files" @@ -36389,14 +33941,12 @@ msgid "Do NOT change to directory of source file when processing it" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:13 -#, fuzzy msgid "Show list of dependent files after processing" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:14 -#, fuzzy msgid "Do not show list of dependent files" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:15 msgid "" @@ -36409,9 +33959,8 @@ msgid "Filter to apply to dvi file" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:17 -#, fuzzy msgid "generate dvi" -msgstr "Generate dired output" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:18 msgid "turn off required dvi" @@ -36422,9 +33971,8 @@ msgid "Execute specified Perl code (as part of latexmk start-up code)" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:20 -#, fuzzy msgid "force continued processing past errors" -msgstr "Force to continue on some errors" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:21 msgid "turn off forced continuing processing past errors" @@ -36439,23 +33987,20 @@ msgid "process regardless of file timestamps" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:24 -#, fuzzy msgid "Turn off -g" -msgstr "Turn off FTP globbing" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:25 -#, fuzzy msgid "print help" -msgstr "Print help" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:26 msgid "set basename of output file(s) to STRING" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:27 -#, fuzzy msgid "force landscape mode" -msgstr "Use ansi mode" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:28 msgid "turn off -l" @@ -36482,9 +34027,8 @@ msgid "omit automatic reading of system, user and project rc files" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:35 -#, fuzzy msgid "set name of directory for output files" -msgstr "Base directory for output" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:36 msgid "generate pdf by pdflatex" @@ -36507,14 +34051,12 @@ msgid "turn off pdf" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:41 -#, fuzzy msgid "generate postscript" -msgstr "Don't execute post scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:42 -#, fuzzy msgid "turn off postscript" -msgstr "Run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:43 msgid "Filter to apply to postscript file" @@ -36541,9 +34083,8 @@ msgid "preview document" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:49 -#, fuzzy msgid "turn off preview mode" -msgstr "Turn on autosplit mode" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:50 msgid "preview document and continuously update" @@ -36559,9 +34100,8 @@ msgid "silence progress messages from called programs" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:53 -#, fuzzy msgid "Read custom RC file" -msgstr "Read URLs from file" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:54 msgid "Use -recorder option for (pdf)latex" @@ -36576,14 +34116,12 @@ msgid "Show list of rules after processing" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:57 -#, fuzzy msgid "Do not show list of rules after processing" -msgstr "Do not use integrated preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:59 -#, fuzzy msgid "show CPU time used" -msgstr "Show time type" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:60 msgid "don't show CPU time used" @@ -36599,9 +34137,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:63 #: /tmp/fish/implicit/share/completions/latexmk.fish:65 -#, fuzzy msgid "display program version" -msgstr "display the package version" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:64 msgid "display usual progress messages from called programs" @@ -36636,23 +34173,20 @@ msgid "Write the classpath of the current project to output-file." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:3 -#, fuzzy msgid "Remove all files from project's target-path." -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:4 msgid "Compile Clojure source into .class files." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:5 -#, fuzzy msgid "Build jar and deploy to remote repository." -msgstr "Add a new file/directory to the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:6 -#, fuzzy msgid "Show details about dependencies." -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:7 msgid "Higher-order task to perform other tasks in succession." @@ -36663,18 +34197,16 @@ msgid "Display a list of tasks or help for a given task or subtask." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:9 -#, fuzzy msgid "Install current project to the local repository." -msgstr "Install a gem into the local repository" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:10 msgid "Package up all the project's files into a jar file." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:11 -#, fuzzy msgid "Compile Java source files." -msgstr "Compile source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:12 msgid "Start a Light Table client for this project" @@ -36693,9 +34225,8 @@ msgid "Write a pom.xml file to disk for Maven interoperability." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:16 -#, fuzzy msgid "Start a repl session either with the current project or standalone." -msgstr "Start an IRB session in the context of the current bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:17 msgid "Run only the test namespaces which failed last time around." @@ -36714,9 +34245,8 @@ msgid "List all available profiles or display one if given an argument." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:21 -#, fuzzy msgid "Run the project's tests." -msgstr "Run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:22 msgid "Run a task without nesting the project's JVM inside Leiningen's." @@ -36735,9 +34265,8 @@ msgid "Upgrade Leiningen to specified version or latest stable." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:26 -#, fuzzy msgid "Print version for Leiningen and the current JVM." -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:27 msgid "Apply the given task with the profile(s) specified." @@ -36812,14 +34341,12 @@ msgid "Display status column" msgstr "Display status column" #: /tmp/fish/implicit/share/completions/less.fish:19 -#, fuzzy msgid "Specify key bindings file" -msgstr "Specify a config file" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:21 -#, fuzzy msgid "Prompt with percentage" -msgstr "Prompt string" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:22 msgid "Verbose prompt" @@ -36872,9 +34399,8 @@ msgid "Multiple blank lines sqeezed" msgstr "Multiple blank lines sqeezed" #: /tmp/fish/implicit/share/completions/less.fish:36 -#, fuzzy msgid "Do not fold long lines" -msgstr "Do not follow mount points" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:37 msgid "Edit tag" @@ -36933,14 +34459,12 @@ msgid "Characters to scroll on left/right arrows" msgstr "Characters to scroll on left/right arrows" #: /tmp/fish/implicit/share/completions/light.fish:3 -#, fuzzy msgid "Get value (default)" -msgstr "(default)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:4 -#, fuzzy msgid "Set value" -msgstr "Set date" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:5 msgid "Add value" @@ -36951,9 +34475,8 @@ msgid "Subtract value" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:7 -#, fuzzy msgid "List controllers" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:8 msgid "Restore brightness" @@ -36964,100 +34487,85 @@ msgid "Save brightness" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:10 -#, fuzzy msgid "Brightness (default)" -msgstr "(default)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:11 -#, fuzzy msgid "Maximum brightness" -msgstr "Maximium iterations" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:12 msgid "Minimum cap" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:13 -#, fuzzy msgid "Selects controller automatically (default)" -msgstr "Select entire command line (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:14 -#, fuzzy msgid "Specify controller to use" -msgstr "Specify the remote shell to use" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:15 -#, fuzzy msgid "Interpret & output values in percent" -msgstr "Interpret the patch file as an ed script" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:16 msgid "Interpret & output values in raw mode" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:17 -#, fuzzy msgid "Sets the verbosity level" -msgstr "Output verbosity level" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:1 -#, fuzzy msgid "Make symbolic links instead of hard links" -msgstr "Make symbolic links instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:2 #: /tmp/fish/implicit/share/completions/ln.fish:3 -#, fuzzy msgid "Make a backup of each existing destination file" -msgstr "Make backup of each existing destination file" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:4 msgid "Allow superuser to attempt to hard link directories" msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:5 -#, fuzzy msgid "Remove existing destination files" -msgstr "Make backup of each existing destination file" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:6 -#, fuzzy msgid "Prompt whether to remove destinations" -msgstr "Prompt for whether to edit the long comment" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:7 -#, fuzzy msgid "Dereference TARGETs that are symbolic links" -msgstr "Dereferense symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:8 msgid "Treat symlink to directory as if it were a file" msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:9 -#, fuzzy msgid "Make hard links directly to symbolic links" -msgstr "Never follow symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:10 -#, fuzzy msgid "Override the usual ~ backup suffix" -msgstr "Use suffix as the simple backup suffix" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:11 msgid "Specify the DIRECTORY in which to create the links" msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:12 -#, fuzzy msgid "Treat LINK_NAME as a normal file" -msgstr "Treat DEST as a normal file" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:13 -#, fuzzy msgid "Print name of each linked file" -msgstr "Print name, line, and time" +msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:1 #: /tmp/fish/implicit/share/completions/timedatectl.fish:4 @@ -37079,30 +34587,26 @@ msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:4 #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:37 #: /tmp/fish/implicit/share/completions/timedatectl.fish:7 -#, fuzzy msgid "Print a short help text and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:5 #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:38 #: /tmp/fish/implicit/share/completions/timedatectl.fish:8 -#, fuzzy msgid "Print a short version string and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:1 msgid "Match all non-option arguments" msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:2 -#, fuzzy msgid "Match against the base name of the file" -msgstr "Update only the database, not the filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:3 -#, fuzzy msgid "Print only the number of matches found" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:4 msgid "Use different DATABASE file[s]" @@ -37118,19 +34622,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:7 #: /tmp/fish/implicit/share/completions/locate.fish:8 -#, fuzzy msgid "Treat broken symbolic links as if they were existing" -msgstr "Make symbolic links instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:9 -#, fuzzy msgid "Ignore case distinctions" -msgstr "Ignore case differences" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:10 -#, fuzzy msgid "Limit the number of matches" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:11 msgid "Use ASCII NUL as a separator" @@ -37145,20 +34646,17 @@ msgid "Match against the whole name of the file" msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:14 -#, fuzzy msgid "The pattern is a regular expression" -msgstr "Pattern is a regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:15 -#, fuzzy msgid "Print a summary of the options and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:16 #: /tmp/fish/implicit/share/completions/xmms.fish:11 -#, fuzzy msgid "Print the version number and exit" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/logkeys.fish:1 msgid "Starts the keylogging daemon" @@ -37173,9 +34671,8 @@ msgid "Set ouput LOGFILE" msgstr "" #: /tmp/fish/implicit/share/completions/logkeys.fish:4 -#, fuzzy msgid "Use file as input KEYMAP" -msgstr "File as input" +msgstr "" #: /tmp/fish/implicit/share/completions/logkeys.fish:5 msgid "Use DEVICE as keyboard input" @@ -37218,9 +34715,8 @@ msgid "Sets a standard System V interface script or PPD file " msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:4 -#, fuzzy msgid "Deletes the named option from printer" -msgstr "Deletes an item from history" +msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:5 msgid "" @@ -37241,9 +34737,8 @@ msgid "Enables the destination and accepts jobs" msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:9 -#, fuzzy msgid "Provides a textual location of the destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:10 msgid "Specifies a PostScript Printer Description file to use with the printer" @@ -37298,9 +34793,8 @@ msgid "Sets the destination to shared/published or unshared/unpublished" msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:24 -#, fuzzy msgid "Sets the IPP operation policy associated with the destination" -msgstr "Lists the keys associated with each client" +msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:25 #: /tmp/fish/implicit/share/completions/lpadmin.fish:26 @@ -37312,18 +34806,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:1 -#, fuzzy msgid "Prints files to the named printer" -msgstr "Print file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:2 msgid "Specifies an existing job to modify" msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:3 -#, fuzzy msgid "Sets the number of copies to print from 1 to 100" -msgstr "Specify the number of jobs to run in parallel" +msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:4 msgid "Sets the job priority from 1 (lowest) to 100 (highest)" @@ -37335,18 +34827,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:6 #: /tmp/fish/implicit/share/completions/lpr.fish:2 -#, fuzzy msgid "Sets the job name" -msgstr "Set volume name" +msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:7 msgid "Specifies when the job should be printed" msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:8 -#, fuzzy msgid "Specify the page ranges" -msgstr "Specify the http username" +msgstr "" #: /tmp/fish/implicit/share/completions/lpinfo.fish:1 msgid "Shows a \"long\" listing of devices or drivers" @@ -37359,18 +34849,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpinfo.fish:3 -#, fuzzy msgid "" "Specifies a comma-separated list of device or PPD schemes that " "should be excluded from the results" -msgstr "Specify a comma-separated list of directories you wish to exclude" +msgstr "" #: /tmp/fish/implicit/share/completions/lpinfo.fish:4 -#, fuzzy msgid "" "Specifies a comma-separated list of device or PPD schemes that should be " "included in the results" -msgstr "Specify a comma-separated list of directories you wish to exclude" +msgstr "" #: /tmp/fish/implicit/share/completions/lpinfo.fish:5 msgid "Specifies the language to match when listing drivers with the -m option" @@ -37390,45 +34878,40 @@ msgid "Specifies the timeout when listing devices with the -v option (sec)" msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:1 -#, fuzzy msgid "Sets the user default printer" -msgstr "Use the default key as default recipient" +msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:2 msgid "Lists the printer specific options and their current settings" msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:3 -#, fuzzy msgid "Specifies a new option for the named destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:4 msgid "Sets the destination and instance for any options that follow" msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:5 -#, fuzzy msgid "Removes the specified option for the named destination" -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:6 msgid "Removes the options for the named destination and instance" msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:1 -#, fuzzy msgid "Change CUPS digest password" -msgstr "Change directory" +msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:2 msgid "Add password" msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:3 -#, fuzzy msgid "Remove password" -msgstr "Remove records" +msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:4 msgid "Specify the group other, than default system group" @@ -37440,14 +34923,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:1 #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:6 -#, fuzzy msgid "Specifies an alternate server" -msgstr "Specify X server" +msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:3 -#, fuzzy msgid "Disables banner printing" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:4 msgid "" @@ -37463,9 +34944,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:6 -#, fuzzy msgid "Hold job for printing" -msgstr "Format for printing" +msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:7 msgid "" @@ -37477,14 +34957,12 @@ msgid "Show the server hostname and port" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:2 -#, fuzzy msgid "Shows the ranking of print jobs" -msgstr "Show the running containers" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:3 -#, fuzzy msgid "Specifies which jobs to show" -msgstr "Specify which mailbox to load" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:4 msgid "Shows the accepting state of selected printer queues" @@ -37497,18 +34975,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:6 -#, fuzzy msgid "Shows the current default destination" -msgstr "Stop the currently evaluated function" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:7 msgid "Shows a long listing of printers, classes, or jobs" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:8 -#, fuzzy msgid "Shows the jobs queue on the specified destinations" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:9 msgid "Shows the printers and whether or not they are enabled for printing" @@ -37523,119 +34999,100 @@ msgid "Shows a status summary, including the default destination" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:12 -#, fuzzy msgid "Shows all status information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:13 -#, fuzzy msgid "Shows a list of print jobs queued by the specified users" -msgstr "Set the list of personal digest preferences to the specified string" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:14 msgid "Shows the printers and what device they are attached to" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:1 -#, fuzzy msgid "print all devices" -msgstr "Print all names" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:2 msgid "print SIZE in bytes rather than in human readable format" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:3 -#, fuzzy msgid "don't print slaves or holders" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:4 -#, fuzzy msgid "print discard capabilities" -msgstr "get capabilies" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:5 msgid "exclude devices by major number (default: RAM disks)" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:6 -#, fuzzy msgid "output info about filesystems" -msgstr "Stay in local filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:7 -#, fuzzy msgid "usage information (this)" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:8 msgid "use ascii characters only" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:9 -#, fuzzy msgid "output info about permissions" -msgstr "Extract all permissions" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:10 -#, fuzzy msgid "don't print headings" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:11 -#, fuzzy msgid "output columns" -msgstr "Output in two columns" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:12 -#, fuzzy msgid "use key='value' output format" -msgstr "Use the portable output format" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:13 -#, fuzzy msgid "use raw output format" -msgstr "Use the portable output format" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:14 msgid "output info about topology" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:15 -#, fuzzy msgid "use list format ouput" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:1 -#, fuzzy msgid "Print both online and offline CPUs" -msgstr "Print name, line, and time" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:2 -#, fuzzy msgid "Print online CPUs only" -msgstr "Print newline counts" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:3 -#, fuzzy msgid "Print offline CPUs only" -msgstr "Print newline counts" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:4 -#, fuzzy msgid "Print out an extended readable format" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:5 -#, fuzzy msgid "Print out a parseble format" -msgstr "Profiling output format" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:6 -#, fuzzy msgid "Use specified directory as system root" -msgstr "Use specified key as the key to sign with" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:7 msgid "Print hexadecimal masks rather thans lists of CPUs" @@ -37745,9 +35202,8 @@ msgid "Print size of files" msgstr "Print size of files" #: /tmp/fish/implicit/share/completions/ls.fish:28 -#, fuzzy msgid "Group directories before files" -msgstr "Copy directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:29 msgid "Do not list implied entries matching specified shell pattern" @@ -37788,9 +35244,8 @@ msgid "Generate dired output" msgstr "Generate dired output" #: /tmp/fish/implicit/share/completions/ls.fish:38 -#, fuzzy msgid "List format" -msgstr "Long format" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:39 msgid "Long format, full-iso time" @@ -37801,9 +35256,8 @@ msgid "Don't print group information" msgstr "Don't print group information" #: /tmp/fish/implicit/share/completions/ls.fish:43 -#, fuzzy msgid "Skip entries matching pattern" -msgstr "list all packages matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:44 #: /tmp/fish/implicit/share/completions/ls.fish:67 @@ -37883,9 +35337,8 @@ msgid "Causes list selections to be ANDed" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:3 -#, fuzzy msgid "Use alternative name list file" -msgstr "Set namelist file" +msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:4 msgid "Avoid kernel functions that might block: lstat, readlink, stat" @@ -37912,9 +35365,8 @@ msgid "use of device cache file" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:9 -#, fuzzy msgid "select by group (^ - negates)" -msgstr "Select by group" +msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:10 msgid "Convert UIDs to login names" @@ -37925,18 +35377,16 @@ msgid "Select or exclude processes by pid" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:12 -#, fuzzy msgid "Print PPID" -msgstr "Print help" +msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:13 msgid "Produce terse output (pids only, no header)" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:14 -#, fuzzy msgid "select by user (^ - negates)" -msgstr "Select by user" +msgstr "" #: /tmp/fish/implicit/share/completions/lsusb.fish:1 msgid "Increase verbosity (show descriptors)" @@ -37948,12 +35398,10 @@ msgstr "" "Show only devices with specified device and/or bus numbers (in decimal)" #: /tmp/fish/implicit/share/completions/lsusb.fish:3 -#, fuzzy msgid "" "Show only devices with the specified vendor and product ID numbers (in " "hexadecimal)" msgstr "" -"Show only devices with specified device and/or bus numbers (in decimal)" #: /tmp/fish/implicit/share/completions/lsusb.fish:4 msgid "Selects which device lsusb will examine" @@ -37969,52 +35417,44 @@ msgid "Show version of program" msgstr "" #: /tmp/fish/implicit/share/completions/lsusb.fish:7 -#, fuzzy msgid "Show usage and help" -msgstr "Show help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:1 -#, fuzzy msgid "Execute string" -msgstr "Executable link" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:2 -#, fuzzy msgid "Require library" -msgstr "Require parameter" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:3 -#, fuzzy msgid "Enter interactive mode after executing script" -msgstr "Interactive mode after executing commands" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:6 msgid "Execute stdin and stop handling options" msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:1 -#, fuzzy msgid "Show command executions" -msgstr "Show commandname of each job" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:2 msgid "Installs [file] to ~/Library/LaunchAgents or /Library/LaunchAgents" msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:3 -#, fuzzy msgid "Show the list of installed agents" -msgstr "Show the dependencies of an installed gem" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:4 -#, fuzzy msgid "Start the first matching agent" -msgstr "Print first matching file" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:5 -#, fuzzy msgid "Stop the first matching agent" -msgstr "Print first matching file" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:6 msgid "Stop and start the first matching agent" @@ -38029,29 +35469,25 @@ msgid "Opens the launchctl daemon file in the default editor" msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:9 -#, fuzzy msgid "Service" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:10 #: /tmp/fish/implicit/share/completions/lunchy.fish:12 -#, fuzzy msgid "Persist command" -msgstr "Process command" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:11 msgid "Force start (disabled) agents" msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:1 -#, fuzzy msgid "Test if lxc has yet to be given the command" -msgstr "Test if adb has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:2 -#, fuzzy msgid "Manage configuration." -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:3 msgid "Copy containers within or in between lxd instances." @@ -38062,9 +35498,8 @@ msgid "Delete containers or snapshots." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:5 -#, fuzzy msgid "Execute the specified command in a container." -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:6 msgid "Manage files on a container." @@ -38075,9 +35510,8 @@ msgid "Check if the LXD instance is up." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:8 -#, fuzzy msgid "Print help." -msgstr "Print help" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:9 msgid "Manipulate container images." @@ -38096,14 +35530,12 @@ msgid "Launch a container from a particular image." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:13 -#, fuzzy msgid "Lists the available resources." -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:14 -#, fuzzy msgid "Prints all the subcommands help." -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:15 msgid "Monitor activity on the LXD server." @@ -38114,27 +35546,24 @@ msgid "Move containers within or in between lxd instances." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:17 -#, fuzzy msgid "Manage networks." -msgstr "add a network" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:18 msgid "Changes state of one or more containers to pause." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:19 -#, fuzzy msgid "Manage configuration profiles." -msgstr "Creates a configuration profile" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:20 msgid "Publish containers as images." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:21 -#, fuzzy msgid "Manage remote LXD servers." -msgstr "display the remote gem servers" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:22 msgid "Changes state of one or more containers to restart." @@ -38157,24 +35586,20 @@ msgid "Changes state of one or more containers to stop." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:27 -#, fuzzy msgid "Prints the version number of this client tool." -msgstr "Print inode number of files" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:1 -#, fuzzy msgid "print this help and exit" -msgstr "Show help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:2 -#, fuzzy msgid "print version and exit" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:3 -#, fuzzy msgid "use specified profile" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:4 msgid "set log level 0-5. 0 - none 5 - chatty" @@ -38193,9 +35618,8 @@ msgid "Force a 'm4_' prefix to all builtins" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:6 -#, fuzzy msgid "Suppress some warnings for builtins" -msgstr "Suppress printing filename" +msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:7 msgid "" @@ -38219,9 +35643,8 @@ msgid "Undefine NAME" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:12 -#, fuzzy msgid "Suppress all GNU extensions" -msgstr "Disable all GNU extensions" +msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:13 msgid "Set symbol lookup hash table size [509]" @@ -38236,27 +35659,24 @@ msgid "Produce a frozen state on FILE at end" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:16 -#, fuzzy msgid "Reload a frozen state from FILE at start" -msgstr "Read a batched update from FILE" +msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:17 msgid "Set debug level (no FLAGS implies 'aeq')" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:18 -#, fuzzy msgid "Redirect debug and trace output" -msgstr "Run adb devices and parse output" +msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:19 msgid "Restrict macro tracing size" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:20 -#, fuzzy msgid "Trace NAME when it is defined" -msgstr "Test if function is defined" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:2 #: /tmp/fish/implicit/share/completions/systemctl.fish:38 @@ -38267,46 +35687,40 @@ msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:3 #: /tmp/fish/implicit/share/completions/systemctl.fish:39 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:3 -#, fuzzy msgid "Print a short help and exit" -msgstr "Show help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:4 #: /tmp/fish/implicit/share/completions/pactl.fish:9 #: /tmp/fish/implicit/share/completions/systemctl.fish:40 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:4 -#, fuzzy msgid "Print a short version and exit" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:6 #: /tmp/fish/implicit/share/completions/systemctl.fish:22 -#, fuzzy msgid "Do not print header and footer" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:7 msgid "Don't ask for password for privileged operations" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:8 -#, fuzzy msgid "List running machines" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:9 -#, fuzzy msgid "List startable machine images" -msgstr "List all available packages" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:10 msgid "Also show machines starting with a '.'" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:11 -#, fuzzy msgid "Show information about machine" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:12 msgid "Do not ellipsize process tree entries" @@ -38321,28 +35735,24 @@ msgid "Formatting of journal output" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:15 -#, fuzzy msgid "Show properties of machines" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:16 -#, fuzzy msgid "Limit to certain properties" -msgstr "Disable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:17 msgid "Show all properties, even if not set" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:18 -#, fuzzy msgid "Start machine" -msgstr "Print machine name" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:19 -#, fuzzy msgid "Login to a machine" -msgstr "Log to tracefile" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:20 msgid "Enable machine to start at boot" @@ -38353,9 +35763,8 @@ msgid "Disable machine from starting at boot" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:22 -#, fuzzy msgid "Poweroff machine" -msgstr "Power failure" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:23 msgid "Reboot machine" @@ -38366,52 +35775,44 @@ msgid "Terminate machine (without shutting down)" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:25 -#, fuzzy msgid "Send signal to process in a machine" -msgstr "Bind address on local machine" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:26 msgid "Choose who to send the signal to" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:27 -#, fuzzy msgid "Signal to send" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:28 -#, fuzzy msgid "Bind-mount a directory to a machine" -msgstr "Bind address on local machine" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:29 -#, fuzzy msgid "Create destination directory" -msgstr "Create any missing directories" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:30 -#, fuzzy msgid "Apply read-only mount" -msgstr "Read-only mode" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:31 msgid "Copy file or directory to a machine" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:32 -#, fuzzy msgid "Copy file or directory from a machine" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:33 -#, fuzzy msgid "Open a shell on a machine" -msgstr "Bind address on local machine" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:34 -#, fuzzy msgid "Show a list of locally installed machines" -msgstr "Show automatically installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:35 msgid "Show information about machine images (human-readable)" @@ -38422,43 +35823,36 @@ msgid "Show properties of machine images (machine-readable)" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:37 -#, fuzzy msgid "Clone a machine image" -msgstr "Print machine name" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:38 -#, fuzzy msgid "Rename a machine image" -msgstr "Print machine name" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:39 -#, fuzzy msgid "Mark or unmark machine image as read-only" -msgstr "Make caching db readonly" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:40 -#, fuzzy msgid "Remove machine images" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:41 msgid "Set size limit for machine image" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:42 -#, fuzzy msgid "Download a .tar container image" -msgstr "Download only tar file" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:43 -#, fuzzy msgid "Download a .raw container image" -msgstr "Download only tar file" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:44 -#, fuzzy msgid "Download a .dkr container image" -msgstr "Download only tar file" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:45 msgid "Import a .tar container image" @@ -38477,105 +35871,88 @@ msgid "Export a .raw container image" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:49 -#, fuzzy msgid "Specify compression format" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:50 -#, fuzzy msgid "Show running downloads, imports and exports" -msgstr "Show the running containers" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:51 msgid "Abort running downloads, imports or exports" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:52 -#, fuzzy msgid "Verify image with specified method" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:53 msgid "Verify image (not available for dkr)" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:54 -#, fuzzy msgid "Specify index server" -msgstr "Specify X server" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:55 -#, fuzzy msgid "Overwrite existing machine image" -msgstr "Overwrite existing binstubs if they exist" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:1 -#, fuzzy msgid "Shows all available URL protocols" -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:2 -#, fuzzy msgid "Lists all Magento modules" -msgstr "Lists all available Vagrant boxes" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:3 -#, fuzzy msgid "Lists all indexer modes" -msgstr "Print xrandr modes" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:4 -#, fuzzy msgid "Shows all available packing modes" -msgstr "List all available packages" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:5 msgid "Shows all IDEs supported by magento" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:6 -#, fuzzy msgid "Shows all available magento tests" -msgstr "List all available patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:7 -#, fuzzy msgid "Shows all available magento theme areas" -msgstr "List all available patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:8 msgid "Shows all existing magento languages" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:9 -#, fuzzy msgid "Shows all available source theme file types" -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:10 -#, fuzzy msgid "Shows all available deploy modes" -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:11 -#, fuzzy msgid "Shows all available cache types" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:12 -#, fuzzy msgid "Shows all available verbosity levels" -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:13 -#, fuzzy msgid "Shows all available output formats" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:14 -#, fuzzy msgid "Lists magento commands" -msgstr "list all “gem” commands" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:15 msgid "Checks that prompt is not inside of magento command" @@ -38583,9 +35960,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:16 #: /tmp/fish/implicit/share/completions/p4.fish:23 -#, fuzzy msgid "Checks if prompt is in a specific command" -msgstr "Test if bundle has been given a specific subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:17 #: /tmp/fish/implicit/share/completions/p4.fish:24 @@ -38594,37 +35970,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:18 #: /tmp/fish/implicit/share/completions/p4.fish:25 -#, fuzzy msgid "Adds a specific option for a command" -msgstr "Use function keys for commands" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:19 msgid "Checks if a parameter has been given already" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:20 -#, fuzzy msgid "Show help for a command" -msgstr "Help for this command" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:21 -#, fuzzy msgid "Do not output any message" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:22 msgid "Increase verbosity: 1 for normal, 2 for verbose and 3 for debug" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:24 -#, fuzzy msgid "Force colored output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:26 -#, fuzzy msgid "Don't ask any interactive question" -msgstr "Do no interactive prompting" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:1 msgid "Define" @@ -38733,126 +36104,108 @@ msgid "Touch files, don't run commands" msgstr "Touch files, don't run commands" #: /tmp/fish/implicit/share/completions/make.fish:20 -#, fuzzy msgid "Print working directory" -msgstr "Print the working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:21 msgid "Pretend file is modified" msgstr "Pretend file is modified" #: /tmp/fish/implicit/share/completions/makepkg.fish:1 -#, fuzzy msgid "Ignore missing or incomplete arch field" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:2 msgid "Clean up work files after build" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:3 -#, fuzzy msgid "Use alternate config " -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:4 -#, fuzzy msgid "Do not perform dependency checks" -msgstr "Don't do a dependency check" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:5 -#, fuzzy msgid "Do not extract source files" -msgstr "Do not del source files" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:6 msgid "Only perform integrity checks" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:7 -#, fuzzy msgid "Force rebuild of the package" -msgstr "Rebuild a package" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:8 -#, fuzzy msgid "Generate integrity checks" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:9 -#, fuzzy msgid "Do not perform integrity checks" -msgstr "Do not use integrated preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:10 -#, fuzzy msgid "Do not verify checksums" -msgstr "Do not check files" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:11 -#, fuzzy msgid "Do not verify PGP signatures" -msgstr "Don't verify patch signature" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:12 -#, fuzzy msgid "Display syntax and command line options" -msgstr "Display brief summary of the available commands and options" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:13 msgid "No automatic bump of pkgver" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:14 -#, fuzzy msgid "Install the package after build" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:15 msgid "Enable makepkg build logging" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:16 -#, fuzzy msgid "Disable color in output messages" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:17 -#, fuzzy msgid "Only download and extract files" -msgstr "Download and extract a source" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:18 msgid "Use alternative " msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:19 -#, fuzzy msgid "Remove installed deps after build" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:20 msgid "Repackage without rebuilding" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:21 -#, fuzzy msgid "Install missing dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:22 msgid "Build a source-only tarball for AUR" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:23 -#, fuzzy msgid "Display the version and exit" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:24 -#, fuzzy msgid "Remove the srcdir before building the package" -msgstr "Don't check dependencies before uninstalling the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:25 msgid "Build a source-only GPL tarball for AUR" @@ -38867,28 +36220,24 @@ msgid "Run the check function in the PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:28 -#, fuzzy msgid "Do not create the archive" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:29 msgid "Do not run the check function in the PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:30 -#, fuzzy msgid "Sign the resulting package with gpg" -msgstr "Sign the patch with your gpg key" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:31 -#, fuzzy msgid "Do not create a signature for the package" -msgstr "Do not fail if signature is older than key" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:32 -#, fuzzy msgid "Specify a to use when signing" -msgstr "Specify umask to use when writing" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:33 msgid "Passed to pacman: Do not ask for confirmation" @@ -38903,19 +36252,16 @@ msgid "Passed to pacman: Install as dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:36 -#, fuzzy msgid "Passed to pacman: Do not display a progress bar" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:37 -#, fuzzy msgid "List all packages that would be built" -msgstr "list all packages with specified useflag" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:38 -#, fuzzy msgid "Print SRCINFO to stdout" -msgstr "Print file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:1 msgid "Program section" @@ -38978,14 +36324,12 @@ msgid "Pager" msgstr "Pager" #: /tmp/fish/implicit/share/completions/man.fish:17 -#, fuzzy msgid "Manual sections" -msgstr "Local section" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:18 -#, fuzzy msgid "Display all matches" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:19 msgid "Always reformat" @@ -39045,48 +36389,40 @@ msgid "Force color mode" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:4 -#, fuzzy msgid "Specify a different color set" -msgstr "Specify record separator" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:5 -#, fuzzy msgid "Specify a name of skin" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:6 -#, fuzzy msgid "Disable mouse support" -msgstr "Enable suspension support" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:7 msgid "Start the internal editor with FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:8 -#, fuzzy msgid "Display the compiled-in search paths" -msgstr "Display compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:9 -#, fuzzy msgid "Display extended info about compiled-in paths" -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:10 -#, fuzzy msgid "Display configure options" -msgstr "Display configuration and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:11 -#, fuzzy msgid "Reset softkeys to their default" -msgstr "Restrict operations to the LOCAL domain (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:12 -#, fuzzy msgid "Specify a keymap FILE" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:13 msgid "Use default hardcoded keys" @@ -39097,9 +36433,8 @@ msgid "Save the ftpfs dialog with the server in FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:15 -#, fuzzy msgid "Print the last working directory to FILE" -msgstr "Print the working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:16 msgid "Set alternative mode drawing of frameworks" @@ -39110,23 +36445,20 @@ msgid "Use the TERMCAP variable for terminal info" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:18 -#, fuzzy msgid "Disable use of the concurrent shell" -msgstr "Displays the current mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:19 -#, fuzzy msgid "Enable use of the concurrent shell" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:20 msgid "Start the internal viewer with FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:21 -#, fuzzy msgid "Display the version of the program" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:22 msgid "Force xterm mode" @@ -39141,18 +36473,16 @@ msgid "Compute and check message digest" msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:2 -#, fuzzy msgid "Read in binary mode" -msgstr "Start in binary mode" +msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:3 msgid "Read sums from files and check them" msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:4 -#, fuzzy msgid "Read in text mode" -msgstr "Start in Ex mode" +msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:7 msgid "Warn about improperly formatted checksum lines" @@ -39163,9 +36493,8 @@ msgid "With --check, exit non-zero for any invalid input" msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:9 -#, fuzzy msgid "Display help text" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:1 msgid "Assemble a pre-existing array" @@ -39176,14 +36505,12 @@ msgid "Build a legacy array without superblocks" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:3 -#, fuzzy msgid "Create a new array" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:4 -#, fuzzy msgid "Select monitor mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:5 msgid "Change the size or shape of an active array" @@ -39198,9 +36525,8 @@ msgid "Start all auto-detected arrays" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:9 -#, fuzzy msgid "Display more detailed help" -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:11 #: /tmp/fish/implicit/share/completions/obnam.fish:47 @@ -39209,24 +36535,20 @@ msgid "Be more verbose" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:13 -#, fuzzy msgid "Force operation" -msgstr "Force operation to run" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:14 -#, fuzzy msgid "Specify config file or directory" -msgstr "Specify config file" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:15 -#, fuzzy msgid "Scan for missing information" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:16 -#, fuzzy msgid "Set metadata style to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:17 msgid "Provide home host identity" @@ -39237,72 +36559,60 @@ msgid "Give name format preference" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:19 -#, fuzzy msgid "Give cluster name" -msgstr "Set server name" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:20 -#, fuzzy msgid "Specify the number of active devices" -msgstr "Specify the subject of the message" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:21 -#, fuzzy msgid "Specify the number of spare devices" -msgstr "Specify the number of jobs to run in parallel" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:22 -#, fuzzy msgid "Specify the space to use from each drive" -msgstr "Specify the rsync to run on remote machine" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:23 msgid "Specify the size made available on the array" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:24 -#, fuzzy msgid "Specify the chunk size" -msgstr "Specify the http username" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:25 -#, fuzzy msgid "Specify rounding factor" -msgstr "Specify record separator" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:26 -#, fuzzy msgid "Specify RAID level" -msgstr "Specify X server" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:27 -#, fuzzy msgid "Specify data layout" -msgstr "Specify man path" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:28 -#, fuzzy msgid "Specify file for write-intent bitmap" -msgstr "Specify files to ignore" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:29 -#, fuzzy msgid "Specify chunksize of bitmap" -msgstr "Specify config file" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:30 msgid "Prefer reading from other devices than these" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:31 -#, fuzzy msgid "Enable writes on array or device" -msgstr "File is character device" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:32 -#, fuzzy msgid "Disable writes on array" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:33 msgid "Enable write-behind mode" @@ -39313,41 +36623,36 @@ msgid "Assume the array is clean" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:35 -#, fuzzy msgid "Use this file as a backup" -msgstr "Use this files times" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:36 -#, fuzzy msgid "Specify start of array data" -msgstr "Specify author id" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:37 msgid "Resume frozen --grow command" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:38 -#, fuzzy msgid "Set array name" -msgstr "Set server name" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:39 msgid "Run array despite warnings" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:40 -#, fuzzy msgid "Give instruction for device file" -msgstr "Action for devices" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:41 msgid "Add devices to array" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:42 -#, fuzzy msgid "Specify max nodes in the cluster" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:43 msgid "Specify journal device for RAID-4/5/6 array" @@ -39358,9 +36663,8 @@ msgid "UUID of array to assemble" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:45 -#, fuzzy msgid "Minor number of array device" -msgstr "Print number of occurences" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:46 msgid "Refuse to start without all drives" @@ -39371,23 +36675,20 @@ msgid "Do not ask for backup file, unavailable" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:48 -#, fuzzy msgid "Update superblock properties" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:49 msgid "Freeze --grow command" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:50 -#, fuzzy msgid "Test mode" -msgstr "Quiet mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:51 -#, fuzzy msgid "Hot-add listed devices" -msgstr "Print mounted devices" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:52 msgid "Re-add a previously removed device" @@ -39398,9 +36699,8 @@ msgid "Hot-add listed devices as spare" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:54 -#, fuzzy msgid "Remove listed inactive devices" -msgstr "Remove specified service" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:55 msgid "Mark listed devices as faulty" @@ -39423,9 +36723,8 @@ msgid "Examine device for md use" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:60 -#, fuzzy msgid "Print details on array" -msgstr "Print tally" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:61 msgid "Print details on platform capabilities" @@ -39436,9 +36735,8 @@ msgid "Format data output as key=value pairs" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:63 -#, fuzzy msgid "Print content of device metadata" -msgstr "Print mounted devices" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:64 msgid "Fix examination for buggy SPARC 2.2 kernel RAID" @@ -39449,19 +36747,16 @@ msgid "Print report about bitmap" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:66 -#, fuzzy msgid "List recorded bad blocks" -msgstr "List current package locks" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:67 -#, fuzzy msgid "Dump metadata to directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:68 -#, fuzzy msgid "Restore metadata from directory" -msgstr "Restore files from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:69 msgid "Deactivate array" @@ -39476,23 +36771,20 @@ msgid "Delete subarray" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:72 -#, fuzzy msgid "Update subarray" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:73 -#, fuzzy msgid "Wait for pending operations" -msgstr "Foreground operation" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:74 msgid "Mark array as clean ASAP" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:75 -#, fuzzy msgid "Set sync action for md devices" -msgstr "Action for devices" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:76 msgid "Rebuild /run/mdadm/map" @@ -39535,9 +36827,8 @@ msgid "Check arrays only once" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:86 -#, fuzzy msgid "Do not move spares between arrays" -msgstr "Do not check shared B-trees" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:87 msgid "Be more concise" @@ -39545,14 +36836,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:1 #: /tmp/fish/implicit/share/completions/mdbook.fish:4 -#, fuzzy msgid "Prints help" -msgstr "Print help" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:2 -#, fuzzy msgid "Prints version" -msgstr "Print node's version" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:3 msgid "Build book from markdown files" @@ -39563,9 +36852,8 @@ msgid "Create boilerplate structure and files in directory" msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:6 -#, fuzzy msgid "Skip confirmation prompts" -msgstr "Ask confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:7 msgid "Copy default theme into source folder" @@ -39588,85 +36876,72 @@ msgid "Test that code samples compile" msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:12 -#, fuzzy msgid "Watch file changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:2 -#, fuzzy msgid "Ignore unknown options" -msgstr "Unknown option: " +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:3 -#, fuzzy msgid "Do not reveal the resulting package in the Finder" -msgstr "Do not pad the following tracks - the default" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:4 msgid "Avoid restricted operations such as heap" msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:5 -#, fuzzy msgid "Skip gathering system.log" -msgstr "Skip other filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:6 -#, fuzzy msgid "Prints version of mddiagnose" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:7 msgid "Minimal report" msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:8 -#, fuzzy msgid "Evaluate indexing information for path" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:9 -#, fuzzy msgid "Evaluate permissions information for path" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:10 -#, fuzzy msgid "Write the diagnostic to the specified path" -msgstr "Create window on the specified display" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:1 -#, fuzzy msgid "Fetches the value of the specified attribute" -msgstr "Don't preserve the specified attributes" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:2 msgid "Query only reports matching items count" msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:3 -#, fuzzy msgid "Search only within given directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:4 msgid "Query should stay active" msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:5 -#, fuzzy msgid "Search on file name only" -msgstr "Search packagename only" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:6 -#, fuzzy msgid "Reprint results on live update" -msgstr "Print result of --eval" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:7 -#, fuzzy msgid "Show contents of smart folder" -msgstr "List contents of directory" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:8 msgid "Use NUL (\\0) as a path separator, for use with xargs -0" @@ -39685,71 +36960,61 @@ msgid "Import files using the listed plugin" msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:2 -#, fuzzy msgid "Print timing information for this run" -msgstr "Print out history information for a module" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:3 -#, fuzzy msgid "Print out the list of all of the attributes and exit" -msgstr "Prints the license of all gems in the bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:4 -#, fuzzy msgid "Print out the schema file and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:5 msgid "Ask the server to reimport files for UTIs claimed by the listed plugin" msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:6 -#, fuzzy msgid "Print out performance information gathered during the run" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:7 -#, fuzzy msgid "Print the list of installed importers and exit" -msgstr "Prints the license of all gems in the bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:8 #: /tmp/fish/implicit/share/completions/pkg-config.fish:7 -#, fuzzy msgid "Print debugging information" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:9 msgid "Dont send the imported attributes to the data store" msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:10 -#, fuzzy msgid "Wait for the specified interval between scanning files" -msgstr "Wait specified interval of seconds between sending each packet" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:11 -#, fuzzy msgid "Write the imported attributes to a file" -msgstr "Write package statistics to a file" +msgstr "" #: /tmp/fish/implicit/share/completions/mdls.fish:1 msgid "Print only the matching metadata attribute value" msgstr "" #: /tmp/fish/implicit/share/completions/mdls.fish:2 -#, fuzzy msgid "Print raw attribute data" -msgstr "Print raw entry names" +msgstr "" #: /tmp/fish/implicit/share/completions/mdls.fish:3 msgid "Sets a marker string to be used when a requested attribute is null" msgstr "" #: /tmp/fish/implicit/share/completions/mdls.fish:4 -#, fuzzy msgid "Output attributes in XML format to file" -msgstr "Output rss-data to file" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:1 msgid "Publish metadata" @@ -39764,14 +37029,12 @@ msgid "Disable Spotlight activity for volume" msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:4 -#, fuzzy msgid "Erase and rebuild index" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:5 -#, fuzzy msgid "Print indexing status" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:6 msgid "Resolve files from file id with an optional volume path or device id" @@ -39782,14 +37045,12 @@ msgid "Apply command to all volumes" msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:8 -#, fuzzy msgid "Apply command to all stores on the specified volume" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:9 -#, fuzzy msgid "Display verbose information" -msgstr "Display RubyGems environmental information" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:1 msgid "Log to standard error as well as files" @@ -39800,9 +37061,8 @@ msgid "When logging hits line file:N, emit a stack trace (default :0)" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:3 -#, fuzzy msgid "Write log files in this directory" -msgstr "Verifies files in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:4 msgid "Log to standard error instead of files" @@ -39821,10 +37081,8 @@ msgid "Log level for logs" msgstr "Log level for logs" #: /tmp/fish/implicit/share/completions/minikube.fish:8 -#, fuzzy msgid "Comma-separated list of pattern=N settings for file-filtered logging" msgstr "" -"Comma-separated list of package installation states to follow recursively" #: /tmp/fish/implicit/share/completions/minikube.fish:9 msgid "Disable the addon w/ADDON_NAME within minikube" @@ -39882,9 +37140,8 @@ msgid "Unsets an individual value in a minikube config file" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:24 -#, fuzzy msgid "Display values currently set in the minikube config file" -msgstr "Display all currently defined trap handlers" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:29 msgid "Go template format string for the config view output" @@ -39895,18 +37152,16 @@ msgid "Display the kubernetes dashboard URL instead of opening it" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:31 -#, fuzzy msgid "Add machine IP to NO_PROXY environment variable" -msgstr "Handle environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:32 msgid "Force environment to be configured for a specified shell" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:33 -#, fuzzy msgid "Unset variables" -msgstr "set/list variables" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:35 msgid "List the URLs for the services in local cluster" @@ -39999,9 +37254,8 @@ msgid "The CIDR to be used for the VM" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:56 -#, fuzzy msgid "The KVM network name" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:57 msgid "The hyperv virtual switch name" @@ -40013,15 +37267,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:1 #: /tmp/fish/implicit/share/completions/mix.fish:58 -#, fuzzy msgid "Starts all registered apps" -msgstr "Start in restricted mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:2 #: /tmp/fish/implicit/share/completions/mix.fish:59 -#, fuzzy msgid "Lists all archives" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:3 #: /tmp/fish/implicit/share/completions/mix.fish:60 @@ -40030,69 +37282,58 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:4 #: /tmp/fish/implicit/share/completions/mix.fish:61 -#, fuzzy msgid "Installs an archive locally" -msgstr "Install a gem into the local repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:5 #: /tmp/fish/implicit/share/completions/mix.fish:62 -#, fuzzy msgid "Uninstalls archives" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:6 #: /tmp/fish/implicit/share/completions/mix.fish:63 -#, fuzzy msgid "Deletes generated application files" -msgstr "Delete cached package files" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:7 #: /tmp/fish/implicit/share/completions/mix.fish:64 -#, fuzzy msgid "Executes the given command" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:8 #: /tmp/fish/implicit/share/completions/mix.fish:65 -#, fuzzy msgid "Compiles source files" -msgstr "Compile source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:9 #: /tmp/fish/implicit/share/completions/mix.fish:66 -#, fuzzy msgid "Lists dependencies and their status" -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:10 #: /tmp/fish/implicit/share/completions/mix.fish:67 -#, fuzzy msgid "Deletes the given dependencies' files" -msgstr "Delete cached header files" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:11 #: /tmp/fish/implicit/share/completions/mix.fish:68 -#, fuzzy msgid "Compiles dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:12 #: /tmp/fish/implicit/share/completions/mix.fish:69 -#, fuzzy msgid "Gets all out of date dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:13 #: /tmp/fish/implicit/share/completions/mix.fish:70 -#, fuzzy msgid "Unlocks the given dependencies" -msgstr "Correct broken dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:14 #: /tmp/fish/implicit/share/completions/mix.fish:71 -#, fuzzy msgid "Updates the given dependencies" -msgstr "Update cache and check dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:15 #: /tmp/fish/implicit/share/completions/mix.fish:72 @@ -40106,15 +37347,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:17 #: /tmp/fish/implicit/share/completions/mix.fish:74 -#, fuzzy msgid "Prints help information for tasks" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:18 #: /tmp/fish/implicit/share/completions/mix.fish:75 -#, fuzzy msgid "Loads and persists the given configuration" -msgstr "save the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:19 #: /tmp/fish/implicit/share/completions/mix.fish:76 @@ -40123,9 +37362,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:20 #: /tmp/fish/implicit/share/completions/mix.fish:77 -#, fuzzy msgid "Installs Hex locally" -msgstr "Install new package" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:21 #: /tmp/fish/implicit/share/completions/mix.fish:78 @@ -40139,9 +37377,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:23 #: /tmp/fish/implicit/share/completions/mix.fish:80 -#, fuzzy msgid "Creates a new Elixir project" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:24 #: /tmp/fish/implicit/share/completions/mix.fish:81 @@ -40150,9 +37387,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:25 #: /tmp/fish/implicit/share/completions/mix.fish:82 -#, fuzzy msgid "Runs the given file or expression" -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:26 #: /tmp/fish/implicit/share/completions/mix.fish:83 @@ -40160,24 +37396,20 @@ msgid "Runs a project's tests" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:27 -#, fuzzy msgid "specify input directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:28 -#, fuzzy msgid "specify output file name" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:29 -#, fuzzy msgid "skip compilation" -msgstr "Ask confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:30 -#, fuzzy msgid "Clean everything, including dependencies" -msgstr "Pull in build time dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:31 #: /tmp/fish/implicit/share/completions/mix.fish:48 @@ -40208,9 +37440,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:37 -#, fuzzy msgid "loads the given configuration file" -msgstr "Produce sample configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:38 msgid "evaluates the given code" @@ -40229,14 +37460,12 @@ msgid "does not compile even if files require compilation" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:42 -#, fuzzy msgid "does not check dependencies" -msgstr "Update cache and check dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:43 -#, fuzzy msgid "does not halt the system after running the command" -msgstr "Do not fixate the disk after writing the tracks" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:44 msgid "does not start applications after compilation" @@ -40259,29 +37488,24 @@ msgid "do not start applications after compilation" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:51 -#, fuzzy msgid "disable color in the output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:52 -#, fuzzy msgid "enable color in the output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:53 -#, fuzzy msgid "include tests that match the filter" -msgstr "Exclude files that match pattern in file" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:54 -#, fuzzy msgid "exclude tests that match the filter" -msgstr "Exclude files that match pattern in file" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:55 -#, fuzzy msgid "run only tests that match the filter" -msgstr "Exclude files that match pattern in file" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:56 msgid "seeds the random number generator used to randomize test order" @@ -40292,9 +37516,8 @@ msgid "set the timeout for the tests" msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:1 -#, fuzzy msgid "Output version" -msgstr "Output verbosity level" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:2 #: /tmp/fish/implicit/share/completions/mkdir.fish:6 @@ -40308,9 +37531,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:4 #: /tmp/fish/implicit/share/completions/mkdir.fish:8 -#, fuzzy msgid "Print a message for each created directory" -msgstr "Unpack an installed gem to the current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:9 msgid "" @@ -40318,97 +37540,80 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:1 -#, fuzzy msgid "Disable alignment" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:2 -#, fuzzy msgid "Use Atari variation" -msgstr "Use primary selection" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:3 msgid "Select location of backup sector" msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:4 -#, fuzzy msgid "Check for bad blocks" -msgstr "Check for patches" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:5 -#, fuzzy msgid "Create file given as device" -msgstr "Pretend file is modified" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:6 -#, fuzzy msgid "Specify drive number" -msgstr "Specify a dir" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:7 -#, fuzzy msgid "Specify number of FATs" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:8 -#, fuzzy msgid "Specify FAT size" -msgstr "Specify APT list dir" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:9 -#, fuzzy msgid "Specify number of hidden sectors" -msgstr "Specify version of gem to rdoc" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:10 -#, fuzzy msgid "Specify volume ID" -msgstr "Specify conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:11 msgid "Force to use entire disk" msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:12 -#, fuzzy msgid "Read bad blocks list from given file" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:13 -#, fuzzy msgid "Specify file containing non bootable message" -msgstr "Specify a draft file containing header and body for the message" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:14 -#, fuzzy msgid "Specify media type" -msgstr "Specify man path" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:15 -#, fuzzy msgid "Specify volume name" -msgstr "Set volume name" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:16 -#, fuzzy msgid "Specify number of entries available in root directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:17 -#, fuzzy msgid "Specify number of reserved sectors" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:18 -#, fuzzy msgid "Specify number of sector per cluster" -msgstr "Specify the number of jobs to run in parallel" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:19 -#, fuzzy msgid "Specify number of bytes per logical sector" -msgstr "Specify the number of jobs to run in parallel" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:21 msgid "Use constants for randomly generated data" @@ -40427,9 +37632,8 @@ msgid "Set directory as the location where the initramfs is built" msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:4 -#, fuzzy msgid "Generate a CPIO image as filename" -msgstr "Generate a simple Gemfile" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:5 msgid "Output help for a hook" @@ -40444,9 +37648,8 @@ msgid "Use kernelversion, instead of the current running kernel" msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:8 -#, fuzzy msgid "List all available hooks" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:9 msgid "Display modules found via autodetection" @@ -40454,9 +37657,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:10 #: /tmp/fish/implicit/share/completions/rc-service.fish:4 -#, fuzzy msgid "Disable color output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:11 msgid "Process all presets contained in /etc/mkinitcpio.d" @@ -40467,9 +37669,8 @@ msgid "Build initramfs image(s) according to specified preset" msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:13 -#, fuzzy msgid "Specifies the root directory to find modules in" -msgstr "Specify the repository directory in which to run" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:14 msgid "Skip hooks when generating the image" @@ -40486,37 +37687,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:17 #: /tmp/fish/implicit/share/completions/mvn.fish:34 #: /tmp/fish/implicit/share/completions/termite.fish:2 -#, fuzzy msgid "Display version information" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:19 msgid "Override the compression method with the compress program" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:1 -#, fuzzy msgid "Show version information" -msgstr "Show apropos information" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:3 msgid "Extract tracks to external files" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:4 -#, fuzzy msgid "Extract tags as XML" -msgstr "Extract to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:5 -#, fuzzy msgid "Extract attachments" -msgstr "Extract from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:6 -#, fuzzy msgid "Extract chapters as XML" -msgstr "Extract all permissions" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:7 msgid "Extract chapters and tags as CUE sheet" @@ -40527,14 +37723,12 @@ msgid "Extract timecodes of a track as timecode v2 file" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:9 -#, fuzzy msgid "Extract cue information as text file" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:10 -#, fuzzy msgid "Parse the whole file instead of relying on the index" -msgstr "Prints the license of all gems in the bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:11 #: /tmp/fish/implicit/share/completions/rsync.fish:1 @@ -40543,28 +37737,24 @@ msgid "Increase verbosity" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:12 -#, fuzzy msgid "Suppress status output" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:13 msgid "Force the translations for 'code' to be used" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:14 -#, fuzzy msgid "Charset for strings on the command line" -msgstr "Set or get the commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:15 -#, fuzzy msgid "Outputs messages in specified charset" -msgstr "Output filenames using the specified format" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:16 -#, fuzzy msgid "Redirect all messages into a file" -msgstr "Append all messages to logfile" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:17 msgid "Convert text subtitles to a charset" @@ -40579,9 +37769,8 @@ msgid "Keep only the BlockAdditions up to the specified level" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:20 -#, fuzzy msgid "Extract the data to a raw file" -msgstr "Extract file from file" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:21 msgid "Extract the data to a raw file including the CodecPrivate as header" @@ -40592,15 +37781,13 @@ msgid "Exports the chapter information in a simple format" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:23 -#, fuzzy msgid "Uses the chapter names of the specified language" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:2 #: /tmp/fish/implicit/share/completions/yarn.fish:2 -#, fuzzy msgid "output the version number" -msgstr "Version number" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:3 msgid "force all tests to take a callback (async) or return a promise" @@ -40615,23 +37802,20 @@ msgid "force disabling of colors" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:6 -#, fuzzy msgid "enable growl notification support" -msgstr "Enable suspension support" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:7 msgid " reporter-specific options" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:8 -#, fuzzy msgid "specify the reporter to use" -msgstr "Specify the remote shell to use" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:9 -#, fuzzy msgid "sort test files" -msgstr "Report identical files" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:10 msgid "bail after first test failure" @@ -40642,18 +37826,16 @@ msgid "enable node's debugger, synonym for node --debug" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:12 -#, fuzzy msgid "only run tests matching " -msgstr "list all packages matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:13 msgid "only run tests containing " msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:14 -#, fuzzy msgid "expose gc extension" -msgstr "Sort by extension" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:15 msgid "inverts --grep and --fgrep matches" @@ -40676,18 +37858,16 @@ msgid "specify user-interface (bdd|tdd|qunit|exports)" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:20 -#, fuzzy msgid "watch files for changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:21 msgid "check for global variable leaks" msgstr "check for global variable leaks" #: /tmp/fish/implicit/share/completions/mocha.fish:22 -#, fuzzy msgid "display the full stack trace" -msgstr "display the package version" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:23 msgid "use the given module(s) to compile files" @@ -40716,18 +37896,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:29 -#, fuzzy msgid "include ICU data" -msgstr "Include path" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:30 msgid "display actual/expected differences inline within each string" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:31 -#, fuzzy msgid "display available interfaces" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:32 msgid "silence deprecation warnings" @@ -40743,9 +37921,8 @@ msgid "disables timeouts, given implicitly with --debug" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:35 -#, fuzzy msgid "specify opts path" -msgstr "Specify man path" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:36 msgid "enable perf linux profiler (basic support)" @@ -40760,14 +37937,12 @@ msgid "Time events including external callbacks" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:39 -#, fuzzy msgid "include sub directories" -msgstr "Do not include subdirectory size" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:40 -#, fuzzy msgid "display available reporters" -msgstr "List all available patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:41 msgid "set numbers of time to retry a failed test case" @@ -40778,62 +37953,52 @@ msgid "throw an exception anytime a deprecated function is used" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:43 -#, fuzzy msgid "trace function calls" -msgstr "Erase function" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:44 -#, fuzzy msgid "show stack traces on deprecations" -msgstr "Show stack backtrace on errors" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:45 -#, fuzzy msgid "enforce strict mode" -msgstr "Start in restricted mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:46 msgid "additional extensions to monitor with --watch" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:47 -#, fuzzy msgid "wait for async suite definition" -msgstr "Edit function definition" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:1 -#, fuzzy msgid "Print program version and exit" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:2 -#, fuzzy msgid "Print usage and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:3 -#, fuzzy msgid "Turn on logging to a file" -msgstr "Run in login mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:4 -#, fuzzy msgid "Run only the server" -msgstr "Options for the keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:5 msgid "Run server in foreground, log to stdout" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:6 -#, fuzzy msgid "Use the specified sound driver" -msgstr "Use specified keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:7 -#, fuzzy msgid "Start in MusicDir" -msgstr "Start in Farsi mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:8 msgid "" @@ -40846,9 +38011,8 @@ msgid "Add the files given on command line to the queue" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:10 -#, fuzzy msgid "Clear the playlist and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:11 msgid "Start playing from the first item on the playlist" @@ -40871,9 +38035,8 @@ msgid "Play previous song" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:16 -#, fuzzy msgid "Shutdown the server" -msgstr "Options for the keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:17 msgid "" @@ -40881,18 +38044,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:18 -#, fuzzy msgid "Use the specified config file instead of the default" -msgstr "Use this config file instead of default" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:19 msgid "NAME=VALUE Override configuration option NAME with VALUE" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:20 -#, fuzzy msgid "Use the specified MOC directory instead of the default" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:21 msgid "Pause" @@ -40923,18 +38084,16 @@ msgid "Use ASCII characters to draw lines" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:28 -#, fuzzy msgid "Print the information about the currently played file" -msgstr "Print information about the environment Bundler is running under" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:29 msgid "Print the formatted information about the currently played file" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:30 -#, fuzzy msgid "Alias for -a" -msgstr "Alias for atq" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:31 msgid "Seek by N seconds (can be negative)" @@ -40945,53 +38104,44 @@ msgid "N{%,s} Jump to some position of the current track" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:33 -#, fuzzy msgid "Turn on a control" -msgstr "Warning control" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:34 -#, fuzzy msgid "Turn off a control" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:35 -#, fuzzy msgid "Toggle a control" -msgstr "Test a condition" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:1 -#, fuzzy msgid "Print only 'author'" -msgstr "Print author" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:2 -#, fuzzy msgid "Print only 'description'" -msgstr "Set function description" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:3 -#, fuzzy msgid "Print only 'license'" -msgstr "Print license" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:4 -#, fuzzy msgid "Print only 'parm'" -msgstr "Print only rcs filename" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:5 -#, fuzzy msgid "Print only 'filename'" -msgstr "Print only rcs filename" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:6 msgid "Use \\0 instead of \\n" msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:7 -#, fuzzy msgid "Print only provided FIELD" -msgstr "Print only file info" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:9 msgid "Use DIR as filesystem root for /lib/modules" @@ -41023,28 +38173,24 @@ msgid "Remove modules" msgstr "Remove modules" #: /tmp/fish/implicit/share/completions/modprobe.fish:10 -#, fuzzy msgid "Ignore all version information" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:11 -#, fuzzy msgid "Ignore version magic information" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:12 msgid "Ignore module interface version" msgstr "Ignore module interface version" #: /tmp/fish/implicit/share/completions/modprobe.fish:13 -#, fuzzy msgid "List all modules matching the given wildcard" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:14 -#, fuzzy msgid "Insert modules matching the given wildcard" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:15 msgid "Restrict wildcards to specified directory" @@ -41055,9 +38201,8 @@ msgid "Send error messages through syslog" msgstr "Send error messages through syslog" #: /tmp/fish/implicit/share/completions/modprobe.fish:17 -#, fuzzy msgid "Specify kernel version" -msgstr "Specify X server" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:18 msgid "List dependencies of module" @@ -41097,9 +38242,8 @@ msgid "Adaptively resize image with data dependent triangulation [geometry]" msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:89 -#, fuzzy msgid "Automatically orient image" -msgstr "Show automatically installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/montage.fish:10 msgid "Alternate image colorsapce [type]" @@ -41144,9 +38288,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/montage.fish:76 -#, fuzzy msgid "Set the image size [geometry]" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/montage.fish:82 msgid "Simulate a Polaroid picture [angle]" @@ -41212,9 +38355,8 @@ msgid "Use a particular server-side UDP port or port range" msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:4 -#, fuzzy msgid "Mount file systems in fstab" -msgstr "Mount filesystems in fstab" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:5 msgid "Fork process for each mount" @@ -41233,19 +38375,16 @@ msgid "Do not write mtab" msgstr "Do not write mtab" #: /tmp/fish/implicit/share/completions/mount.fish:9 -#, fuzzy msgid "Tolerate sloppy mount options" -msgstr "Complete Convert options" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:10 -#, fuzzy msgid "Read only" -msgstr "Read-only mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:11 -#, fuzzy msgid "Read/Write mode" -msgstr "Deduplicate mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:12 msgid "Mount partition with specified label" @@ -41297,9 +38436,8 @@ msgid "Full screen" msgstr "Full screen" #: /tmp/fish/implicit/share/completions/mplayer.fish:10 -#, fuzzy msgid "Set playlist" -msgstr "Set system" +msgstr "" #: /tmp/fish/implicit/share/completions/mplayer.fish:11 msgid "Audio language" @@ -41338,9 +38476,8 @@ msgid "Override framerate" msgstr "Override framerate" #: /tmp/fish/implicit/share/completions/mplayer.fish:20 -#, fuzzy msgid "Build index if unavailable" -msgstr "Rebuild index files" +msgstr "" #: /tmp/fish/implicit/share/completions/mplayer.fish:21 msgid "Load index from file" @@ -41355,9 +38492,8 @@ msgid "Rebuild index and save to file" msgstr "Rebuild index and save to file" #: /tmp/fish/implicit/share/completions/mplayer.fish:24 -#, fuzzy msgid "Seek to given time position" -msgstr "Send to the given KDE session" +msgstr "" #: /tmp/fish/implicit/share/completions/mplayer.fish:25 msgid "TV capture mode" @@ -41390,9 +38526,8 @@ msgid "Audio output" msgstr "Audio output" #: /tmp/fish/implicit/share/completions/msgfmt.fish:1 -#, fuzzy msgid "Add specified directory to list for input files search" -msgstr "Specify directory with configuration files" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:2 msgid "Generate a Java ResourceBundle class" @@ -41470,9 +38605,8 @@ msgid "Check presence of keyboard accelerators for menu items" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:21 -#, fuzzy msgid "Use fuzzy entries in output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:22 msgid "Alignment" @@ -41487,9 +38621,8 @@ msgid "Print statistics about translations" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:27 -#, fuzzy msgid "Increase verbosity level" -msgstr "Output verbosity level" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:1 #: /tmp/fish/implicit/share/completions/mutt.fish:16 @@ -41502,24 +38635,20 @@ msgid "Specify a blind-carbon-copy (BCC) recipient" msgstr "Specify a blind-carbon-copy (BCC) recipient" #: /tmp/fish/implicit/share/completions/mutt.fish:3 -#, fuzzy msgid "Print the value of all configuration options to stdout" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:5 -#, fuzzy msgid "Bypass the system configuration file" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:6 -#, fuzzy msgid "Resume a postponed message" -msgstr "Receive new messages" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:7 -#, fuzzy msgid "Open a mailbox in read-only mode" -msgstr "Open folder read-only" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:8 msgid "Display the Mutt version number and compile-time definitions" @@ -41620,9 +38749,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:3 -#, fuzzy msgid "Run in non-interactive (batch) mode" -msgstr "Run in noninteractive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:4 msgid "The id of the build strategy to use." @@ -41644,14 +38772,12 @@ msgid "Ineffective, only kept for backward compatibility" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:8 -#, fuzzy msgid "Define a system property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:9 -#, fuzzy msgid "Produce execution error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:10 msgid "Encrypt master security password" @@ -41684,9 +38810,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:17 #: /tmp/fish/implicit/share/completions/ruby-build.fish:5 -#, fuzzy msgid "Display help information" -msgstr "Display detailed information of gem(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:18 msgid "Log file to where all build output will go." @@ -41699,9 +38824,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:20 -#, fuzzy msgid "Do not recurse into sub-projects" -msgstr "Do not export variable to subprocess" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:23 msgid "Suppress SNAPSHOT updates" @@ -41719,14 +38843,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:26 -#, fuzzy msgid "Quiet output - only show errors" -msgstr "Force to continue on some errors" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:27 -#, fuzzy msgid "Resume reactor from specified project" -msgstr "Restrict wildcards to specified directory" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:28 msgid "Alternate path for the user settings file" @@ -41751,9 +38873,8 @@ msgid "Display version information WITHOUT stopping build" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:35 -#, fuzzy msgid "Produce execution debug output" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:36 msgid "Comma-delimited list of profiles to activate" @@ -41776,9 +38897,8 @@ msgid "Run surefire tests with debugging on port 5005" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:41 -#, fuzzy msgid "Skip Javadoc generation" -msgstr "Check all generations" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:42 msgid "" @@ -41817,14 +38937,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:48 -#, fuzzy msgid "Installs the artifact in the remote repository." -msgstr "Lists the clients in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:49 -#, fuzzy msgid "Deploys an artifact to remote repository." -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:50 msgid "" @@ -41853,9 +38971,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:55 -#, fuzzy msgid "Installs a file in the local repository." -msgstr "Install a gem into the local repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:56 msgid "" @@ -42000,9 +39117,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:79 -#, fuzzy msgid "Build a JAR from the current project." -msgstr "Build a gem from a gemspec" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:80 msgid "Build a JAR of the test classes for the current project." @@ -42062,19 +39178,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:92 -#, fuzzy msgid "Generate a changelog report." -msgstr "Create summary change report" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:93 -#, fuzzy msgid "Generate a file activity report." -msgstr "Generate a dotty graph" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:94 -#, fuzzy msgid "Generate a developer activity report." -msgstr "Generate a dotty graph" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:95 msgid "" @@ -42331,9 +39444,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:139 -#, fuzzy msgid "Creates a PMD report." -msgstr "Create summary change report" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:140 msgid "Generates the Project Continuous Integration System report." @@ -42367,9 +39479,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:147 -#, fuzzy msgid "Generates the project index page." -msgstr "Generate source index file" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:148 msgid "Generates the Project Issue Tracking report." @@ -42432,9 +39543,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:161 -#, fuzzy msgid "Generate Ant build files." -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:162 msgid "Clean all Ant build files." @@ -42506,9 +39616,8 @@ msgid "Build a JAR from the current Archetype project." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:173 -#, fuzzy msgid "Updates the local catalog" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:174 msgid "" @@ -42683,9 +39792,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:194 -#, fuzzy msgid "Displays the list of dependencies for this project." -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:195 msgid "" @@ -42708,9 +39816,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:198 -#, fuzzy msgid "Goal that resolves the project dependencies from the repository." -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:199 msgid "" @@ -42718,14 +39825,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:200 -#, fuzzy msgid "Goal that resolves the project source dependencies from the repository." -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:201 -#, fuzzy msgid "Displays the dependency tree for this project." -msgstr "display a dependency tree for package" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:202 msgid "" @@ -42879,9 +39984,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:228 -#, fuzzy msgid "Apply one or more patches to project sources." -msgstr "Add one or more new files or directories" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:229 msgid "" @@ -42896,9 +40000,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:231 -#, fuzzy msgid "Generates a PDF document for a project." -msgstr "Generate RDoc documentation for the gem on install" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:232 msgid "" @@ -42907,9 +40010,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:233 -#, fuzzy msgid "Generates the Plugin's documentation report." -msgstr "Generate RI documentation for the gem on install" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:234 msgid "Generate Xdoc files for the project mojos or goals." @@ -42930,9 +40032,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:237 -#, fuzzy msgid "Generates a HelpMojo class." -msgstr "Generate a Java ResourceBundle class" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:238 msgid "" @@ -43054,23 +40155,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:254 -#, fuzzy msgid "Display the modification status of the files in the configured scm url." -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:255 -#, fuzzy msgid "Branch the project." -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:256 msgid "Validate scm connection string." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:257 -#, fuzzy msgid "Commit changes to the configured scm url." -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:258 msgid "" @@ -43085,14 +40183,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:260 -#, fuzzy msgid "Add a file set to the project." -msgstr "Add a new file/directory to the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:261 -#, fuzzy msgid "Mark a set of files for deletion." -msgstr "Make list of kill signals for completion" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:262 msgid "Unedit/unlock a set of files." @@ -43109,14 +40205,12 @@ msgid "Get a fresh copy of the latest source from the configured scm url." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:265 -#, fuzzy msgid "Tag the project." -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:266 -#, fuzzy msgid "Edit/lock a set of files." -msgstr "Print size of files" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:267 msgid "This mojo will fail the build if there is any local modifications" @@ -43161,9 +40255,8 @@ msgid "Empty goal, provided only to set loose the lifecycle." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:276 -#, fuzzy msgid "Copies artifacts from one repository to another repository." -msgstr "Copy and apply patches from this repository to another one" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:277 msgid "" @@ -43221,19 +40314,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:285 -#, fuzzy msgid "Generates MyEclipse configuration files" -msgstr "Creates a configuration profile" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:286 -#, fuzzy msgid "Deletes configuration files used by MyEclipse" -msgstr "Creates a configuration profile" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:287 -#, fuzzy msgid "Generates the rad-6 configuration files." -msgstr "Creates a configuration profile" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:288 msgid "" @@ -43242,9 +40332,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:289 -#, fuzzy msgid "Removes the not-available marker files from the repository." -msgstr "Restore files from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:290 msgid "" @@ -43480,9 +40569,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:331 -#, fuzzy msgid "Generates Antlr documentation from grammar files." -msgstr "Generate RI documentation for the gem on install" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:332 msgid "Generates files based on grammar files with Antlr tool." @@ -43497,9 +40585,8 @@ msgid "Weaves all main classes." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:335 -#, fuzzy msgid "Create eclipse configuration of aspectJ" -msgstr "Creates a configuration profile" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:336 msgid "" @@ -43651,10 +40738,9 @@ msgid "Goal which creates Eclipse lauch configurations for GWT modules." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:364 -#, fuzzy msgid "" "'hbm2doc' generates html documentation a'la javadoc for the database schema." -msgstr "Don't generate RI documentation for the gem on install" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:365 msgid "" @@ -43883,24 +40969,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:399 -#, fuzzy msgid "Test goal implementation of the generate html mojo." -msgstr "Fallback implementation of the seq command" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:400 -#, fuzzy msgid "Main goal implementation of the generate html mojo." -msgstr "Fallback implementation of the seq command" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:401 -#, fuzzy msgid "Test goal implementation of the import mojo." -msgstr "Fallback implementation of the seq command" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:402 -#, fuzzy msgid "Main goal implementation of the import mojo." -msgstr "Fallback implementation of the seq command" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:403 msgid "" @@ -44090,9 +41172,8 @@ msgid "Create webstartable binaries for a 'nbm-application'." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:434 -#, fuzzy msgid "Generate a report from the Clirr output." -msgstr "Generate XML formatted output" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:435 msgid "Check for compatibility between two arbitrary artifact sets." @@ -44223,9 +41304,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:459 -#, fuzzy msgid "Create a CodeNarc Report." -msgstr "Create summary change report" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:460 msgid "" @@ -44332,9 +41412,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:477 -#, fuzzy msgid "Prints the configuration settings." -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:478 msgid "Creates the HTML report for a test run based on XSLT." @@ -44481,9 +41560,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:500 -#, fuzzy msgid "Add more resource directories to the POM." -msgstr "Add one or more new files or directories" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:501 msgid "Store the maven core version in a property maven.version." @@ -44494,9 +41572,8 @@ msgid "Attach additional artifacts to be installed and deployed." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:503 -#, fuzzy msgid "Add test source directories to the POM." -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:504 msgid "" @@ -44527,14 +41604,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:508 -#, fuzzy msgid "Add more source directories to the POM." -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:509 -#, fuzzy msgid "Add more test resource directories to the POM." -msgstr "Add one or more new files or directories" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:510 msgid "" @@ -44618,9 +41693,8 @@ msgid "Runs nodetool repair on a Cassandra instance." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:526 -#, fuzzy msgid "Executes cql statements from maven." -msgstr "Execute argument as command" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:528 msgid "Runs nodetool flush on a Cassandra instance." @@ -44844,9 +41918,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:567 -#, fuzzy msgid "Display all available licenses." -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:568 msgid "Displays all the available comment style to box file headers." @@ -44956,9 +42029,8 @@ msgid "Executes SQL against a database." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:585 -#, fuzzy msgid "List all files in the archive." -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:586 msgid "" @@ -44975,9 +42047,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:588 -#, fuzzy msgid "Remove a set of files from an existing archive." -msgstr "Remove files after adding to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:589 msgid "Copy a set of files in and out of an existing archive." @@ -45024,9 +42095,8 @@ msgid "Displays any updates of the project's parent project" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:598 -#, fuzzy msgid "Displays all plugins that have newer versions available." -msgstr "List packages with newer versions available for upgrading" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:599 msgid "" @@ -45091,9 +42161,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:610 -#, fuzzy msgid "Sets the parent version to the latest parent version." -msgstr "Update dependencies to their latest versions" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:611 msgid "Sets properties to the latest versions of specific artifacts." @@ -45117,9 +42186,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:615 #: /tmp/fish/implicit/share/completions/mvn.fish:618 -#, fuzzy msgid "Replaces any version with the latest version." -msgstr "Update dependencies to their latest versions" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:616 msgid "" @@ -45166,9 +42234,8 @@ msgid "Move files from a virtual file system to another" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:626 -#, fuzzy msgid "Remove files from a virtual file system" -msgstr "Remove files from version control" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:627 msgid "" @@ -45197,9 +42264,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:631 #: /tmp/fish/implicit/share/completions/mvn.fish:643 -#, fuzzy msgid "Closes a Nexus staging repository." -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:632 msgid "" @@ -45260,18 +42326,16 @@ msgid "Lists staging profiles accessible by current user available on Nexus." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:644 -#, fuzzy msgid "Delete unused indexes from application." -msgstr "Check bundler requirements for your application" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:645 msgid "Starts the App Engine development server and does not wait." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:646 -#, fuzzy msgid "Start the specified backend." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:647 msgid "Stops the App Engine development server." @@ -45282,9 +42346,8 @@ msgid "Roll back a previously in-progress update." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:649 -#, fuzzy msgid "Start the specified module version." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:650 msgid "Change the default version, but more gently than set_default_version." @@ -45303,9 +42366,8 @@ msgid "Debug the specified VM Runtime instance." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:654 -#, fuzzy msgid "Set the default serving version." -msgstr "Set default file permission mask" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:655 msgid "Runs the datanucleus enhancer." @@ -45323,9 +42385,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:658 -#, fuzzy msgid "Configure the specified backend." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:659 msgid "Update application cron jobs." @@ -45336,9 +42397,8 @@ msgid "Runs the App Engine development server." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:661 -#, fuzzy msgid "Delete the specified backend." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:662 msgid "Update the specified backend or all backends." @@ -45353,9 +42413,8 @@ msgid "Update application task queue definitions." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:665 -#, fuzzy msgid "Stop the specified module version." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:666 msgid "Rollback an in-progress update." @@ -45370,9 +42429,8 @@ msgid "App Engine endpoints get-discovery-doc command." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:669 -#, fuzzy msgid "Stop the specified backend." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:670 msgid "Creates an Android Archive (aar) file. " @@ -45746,9 +42804,8 @@ msgid "Finishes a hotfix" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:728 -#, fuzzy msgid "Finishes a feature branch" -msgstr "Lines after EOF are blank" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:729 msgid "" @@ -45756,9 +42813,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:730 -#, fuzzy msgid "Starts a release" -msgstr "Start in easy mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:731 msgid "Starts a feature branch" @@ -45783,161 +42839,60 @@ msgid "Run an executable archive application." msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:1 -#, fuzzy msgid "displays this help text" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:3 msgid "show mount point directories with a 'D'" msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:4 -#, fuzzy msgid "show the mode bits of each file" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:5 -#, fuzzy msgid "show owner and group name of each file" -msgstr "Show commandname of each job" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:6 msgid "use a long listing format (-m -o -v)" msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:7 -#, fuzzy msgid "don't follow symlinks" -msgstr "Don't follow symlinks" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:8 msgid "vertical align of modes and owners" msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:1 -#, fuzzy msgid "Perform the reverse operation" -msgstr "Perform contents generation" +msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:2 -#, fuzzy msgid "Specifies the name of the character encoding" -msgstr "Set the native character set" +msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:3 msgid "Pass \"option\" to JVM" msgstr "" #: /tmp/fish/implicit/share/completions/ncdu.fish:2 -#, fuzzy msgid "Quiet mode. Refresh interval 2 seconds" -msgstr "Minimum interval in seconds" +msgstr "" #: /tmp/fish/implicit/share/completions/ncdu.fish:4 -#, fuzzy msgid "Same filesystem" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/ncdu.fish:6 -#, fuzzy msgid "Exclude files that match any pattern in file" -msgstr "Exclude files that match pattern in file" - -#: /tmp/fish/implicit/share/completions/netcat.fish:1 -#, fuzzy -msgid "Remote hostname" -msgstr "Remove an entry for hostname" - -#: /tmp/fish/implicit/share/completions/netcat.fish:2 -msgid "Same as -e, but use /bin/sh" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:3 -msgid "Program to execute after connection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:4 -#, fuzzy -msgid "Allow broadcasts" -msgstr "Allow pinging a broadcast address" - -#: /tmp/fish/implicit/share/completions/netcat.fish:5 -msgid "Source-routing hop points" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:6 -msgid "Source-routing pointer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:8 -msgid "Delay interval for lines sent, ports scaned" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:9 -#, fuzzy -msgid "Set keepalive option" -msgstr "Set a config option" - -#: /tmp/fish/implicit/share/completions/netcat.fish:10 -msgid "Listen mode, acts as a server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:11 -#, fuzzy -msgid "Numeric-only IP addresses, no DNS" -msgstr "Numerical address" - -#: /tmp/fish/implicit/share/completions/netcat.fish:12 -msgid "Hex dump of traffic" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:13 -#, fuzzy -msgid "Local port number" -msgstr "Show record number" - -#: /tmp/fish/implicit/share/completions/netcat.fish:14 -msgid "Randomize local and remote ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:15 -msgid "Quit after EOF on stdin and delay of secs" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:16 -#, fuzzy -msgid "Local source address" -msgstr "Root source tree" - -#: /tmp/fish/implicit/share/completions/netcat.fish:17 -msgid "Answer Telnet negotiation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:18 -msgid "UDP Mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:19 -msgid "Verbose, use twice to be more verbose" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:20 -msgid "Timeout for connects and final net reads" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:21 -#, fuzzy -msgid "Set Type of Service" -msgstr "Stop service" - -#: /tmp/fish/implicit/share/completions/netcat.fish:22 -msgid "No I/O - used for scanning" msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:3 -#, fuzzy msgid "List all available profiles for automatic selection" -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:4 msgid "Start automatic profile selection on interface" @@ -45964,57 +42919,48 @@ msgid "Enable all profiles for automatic selection" msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:10 -#, fuzzy msgid "Disable all profiles for automatic selection" -msgstr "Disable automtic buffer allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:11 -#, fuzzy msgid "Check whether specified profile is active" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:12 msgid "Check whether specified profile is enabled" msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:3 -#, fuzzy msgid "List available profiles" -msgstr "List available updates" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:4 msgid "Save which profiles are active" msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:5 -#, fuzzy msgid "Load saved profiles" -msgstr "Load index from file" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:6 -#, fuzzy msgid "Stops all profiles" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:7 -#, fuzzy msgid "Start a profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:8 -#, fuzzy msgid "Stop a profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:9 -#, fuzzy msgid "Restart a profile" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:10 -#, fuzzy msgid "Switch to a profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:11 msgid "Show runtime status of a profile" @@ -46037,9 +42983,8 @@ msgid "Check whether the unit is enabled" msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:16 -#, fuzzy msgid "Open the specified profile in an editor" -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/nextd.fish:1 #: /tmp/fish/implicit/share/completions/prevd.fish:1 @@ -46051,9 +42996,8 @@ msgid "Add specified amount to niceness value" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:1 -#, fuzzy msgid "change to specified directory" -msgstr "Restrict wildcards to specified directory" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:2 msgid "specify build file [default=build.ninja]" @@ -46068,9 +43012,8 @@ msgid "show all command lines while building" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:5 -#, fuzzy msgid "number of jobs to run in parallel [default derived from CPUs]" -msgstr "Specify the number of jobs to run in parallel" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:6 msgid "do not start if load average > N" @@ -46089,9 +43032,8 @@ msgid "adjust warnings, specify flags" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:11 -#, fuzzy msgid "print ninja version" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:1 msgid "use STYLE for numbering body lines" @@ -46110,9 +43052,8 @@ msgid "use STYLE for numbering header lines" msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:5 -#, fuzzy msgid "line number increment at each line" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:6 msgid "group of NUMBER empty lines counted as one" @@ -46143,47 +43084,40 @@ msgid "add STRING after (possible) line number" msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:13 -#, fuzzy msgid "first line number on each logical page" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:14 msgid "use NUMBER columns for line numbers" msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:1 -#, fuzzy msgid "Output is terse" -msgstr "Output trace" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:2 -#, fuzzy msgid "Output is pretty" -msgstr "Output mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:3 msgid "Switch between tabular and multiline mode" msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:4 -#, fuzzy msgid "Whether to use colors in output" -msgstr "Don't use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:5 -#, fuzzy msgid "Specify the output fields" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:6 -#, fuzzy msgid "Whether to escape \":\" and \"\\" -msgstr "Whether to check hashes on disk" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:1 -#, fuzzy msgid "Display debugger-only symbols" -msgstr "Display debug info" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:2 #: /tmp/fish/implicit/share/completions/nm.fish:10 @@ -46191,27 +43125,24 @@ msgid "Print name of the input file before every symbol" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:3 -#, fuzzy msgid "Do not demangle low-level symbol names" -msgstr "Do not mangle From-field of email headers" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:4 msgid "Display dynamic symbols instead of normal symbols" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:5 -#, fuzzy msgid "Display only defined symbols" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:6 msgid "Use the output format FORMAT. The default is \"bsd\"" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:7 -#, fuzzy msgid "Display only external symbols" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:8 msgid "" @@ -46219,47 +43150,40 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:9 -#, fuzzy msgid "Sort symbols numerically by address" -msgstr "Numerical address" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:11 -#, fuzzy msgid "Do not sort the symbols" -msgstr "Do not use weak symbol support" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:12 msgid "Same as --format=posix" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:13 -#, fuzzy msgid "Reverse the sense of the sort" -msgstr "Invert the sense of matching" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:14 -#, fuzzy msgid "Load the specified plugin" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:15 -#, fuzzy msgid "Print size of defined symbols" -msgstr "Print size of files" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:16 msgid "Include index for symbols from archive members" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:17 -#, fuzzy msgid "Sort symbols by size" -msgstr "Sort by size" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:18 -#, fuzzy msgid "Include special symbols in the output" -msgstr "Include reverse dependencies in the output" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:19 msgid "Display synthetic symbols as well" @@ -46274,19 +43198,16 @@ msgid "Specify the target object format as BFDNAME" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:22 -#, fuzzy msgid "Display only undefined symbols" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:23 -#, fuzzy msgid "Display this information" -msgstr "Display detailed information of gem(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:24 -#, fuzzy msgid "Display this program's version number" -msgstr "display the gem format version" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:1 msgid "Print node's version" @@ -46309,18 +43230,16 @@ msgid "Silence deprecation warnings" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:6 -#, fuzzy msgid "Show stack traces on deprecations" -msgstr "Show stack backtrace on errors" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:7 msgid "Throw errors on deprecations" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:8 -#, fuzzy msgid "Print v8 command line options" -msgstr "Print lpr options" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:9 msgid "Set max v8 stack size (bytes)" @@ -47069,18 +43988,16 @@ msgid "Minimal logging (no API, code, GC, suspect, or handles samples)" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:175 -#, fuzzy msgid "Log all events to the log file" -msgstr "Log all messages to logfile" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:176 msgid "Activate runtime system %Log call" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:177 -#, fuzzy msgid "Log API events to the log file" -msgstr "Log all messages to logfile" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:178 msgid "Log code events to the log file without profiling" @@ -47099,9 +44016,8 @@ msgid "log positions of (de)serialized objects in the snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:182 -#, fuzzy msgid "Log suspect operations" -msgstr "Mount options" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:183 msgid "Log statistical profiling information (implies --log-code)" @@ -47131,9 +44047,8 @@ msgid "Update sliding state window counters" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:189 -#, fuzzy msgid "Specify the name of the log file" -msgstr "Specify the subject of the message" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:190 msgid "Enable low-level linux profiler" @@ -47144,76 +44059,63 @@ msgid "Complete the commandline using npm's 'completion' tool" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:2 -#, fuzzy msgid "Manipulates package's cache" -msgstr "Auto-gen package cache" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:3 -#, fuzzy msgid "Add the specified package to the local cache" -msgstr "Add specified file to the current list of keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:4 msgid "Delete data out of the cache folder" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:5 -#, fuzzy msgid "Show the data in the cache" -msgstr "Show packages in cache" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:6 -#, fuzzy msgid "Manage the npm configuration files" -msgstr "Creates a configuration profile" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:7 #: /tmp/fish/implicit/share/completions/npm.fish:14 -#, fuzzy msgid "Sets the config key to the value" -msgstr "Set the connect timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:8 #: /tmp/fish/implicit/share/completions/npm.fish:13 -#, fuzzy msgid "Echo the config value to stdout" -msgstr "Send the ownertrust values to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:9 -#, fuzzy msgid "Deletes the key from all configuration files" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:10 #: /tmp/fish/implicit/share/completions/npm.fish:11 -#, fuzzy msgid "Show all the config settings" -msgstr "Show all containers" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:12 -#, fuzzy msgid "Opens the config file in an editor" -msgstr "Use this config file instead of default" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:15 -#, fuzzy msgid "install a package" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:16 -#, fuzzy msgid "Save to devDependencies in package.json" -msgstr "Don't verify dependencies of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:17 -#, fuzzy msgid "Save to dependencies in package.json" -msgstr "Don't verify dependencies of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:18 -#, fuzzy msgid "Install package globally" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:19 #: /tmp/fish/implicit/share/completions/pkg.fish:25 @@ -47221,9 +44123,8 @@ msgstr "Install packages" #: /tmp/fish/implicit/share/completions/prt-get.fish:24 #: /tmp/fish/implicit/share/completions/prt-get.fish:84 #: /tmp/fish/implicit/share/completions/yum.fish:29 -#, fuzzy msgid "List installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:20 msgid "" @@ -47231,58 +44132,48 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:21 -#, fuzzy msgid "Show information in JSON format" -msgstr "Show information which is stored by darcs" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:22 -#, fuzzy msgid "Show extended information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:23 msgid "Show parseable output instead of tree view" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:24 -#, fuzzy msgid "Max display depth of the dependency tree" -msgstr "display a dependency tree for package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:25 -#, fuzzy msgid "Manage package owners" -msgstr "Ignore package Holds" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:26 -#, fuzzy msgid "List package owners" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:27 -#, fuzzy msgid "Add a new owner to package" -msgstr "Add a new service" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:28 -#, fuzzy msgid "Remove an owner from package" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:29 -#, fuzzy msgid "remove package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:30 -#, fuzzy msgid "remove global package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:31 -#, fuzzy msgid "Package will be removed from your dependencies" -msgstr "Generate a visual representation of your dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:32 msgid "Package will be removed from your devDependencies" @@ -47299,51 +44190,44 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:36 -#, fuzzy msgid "Update package(s)" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:37 -#, fuzzy msgid "Update global package(s)" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:38 msgid "Add a registry user account" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:39 -#, fuzzy msgid "Display npm bin folder" -msgstr "Display debug info" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:40 msgid "Bugs for a package in a web browser maybe" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:41 -#, fuzzy msgid "Reduce duplication" -msgstr "Remove non-duplicate lines" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:42 -#, fuzzy msgid "Deprecate a version of a package" -msgstr "Version of source package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:43 msgid "Docs for a package in a web browser maybe" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:44 -#, fuzzy msgid "Edit an installed package" -msgstr "Installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:45 -#, fuzzy msgid "Browse an installed package" -msgstr "Show manually installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:46 msgid "Frequently Asked Questions" @@ -47358,97 +44242,80 @@ msgid "View registry info" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:50 -#, fuzzy msgid "Symlink a package folder" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:51 -#, fuzzy msgid "Check for outdated packages" -msgstr "Check for patches" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:52 -#, fuzzy msgid "Create a tarball from a package" -msgstr "Cancel a hold on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:53 -#, fuzzy msgid "Display NPM prefix" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:54 -#, fuzzy msgid "Remove extraneous packages" -msgstr "Remove the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:55 -#, fuzzy msgid "Publish a package" -msgstr "Rebuild a package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:57 -#, fuzzy msgid "Display npm root" -msgstr "Display font properties" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:58 msgid "Run arbitrary package scripts" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:59 -#, fuzzy msgid "Lock down dependency versions" -msgstr "Don't do a dependency check" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:60 -#, fuzzy msgid "Mark your favorite packages" -msgstr "Clean source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:61 msgid "View packages marked as favorites" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:62 -#, fuzzy msgid "Start a package" -msgstr "Erase package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:63 -#, fuzzy msgid "Stop a package" -msgstr "Info on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:64 -#, fuzzy msgid "Add a package as a git submodule" -msgstr "Add a symbolic tag to a module" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:65 -#, fuzzy msgid "Test a package" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:66 -#, fuzzy msgid "Remove a package from the registry" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:67 -#, fuzzy msgid "Remove star from a package" -msgstr "Remove the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:68 -#, fuzzy msgid "Bump a package version" -msgstr "display the package version" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:69 -#, fuzzy msgid "Display npm username" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/nvram.fish:1 msgid "Use XML format for reading and writing variables" @@ -47471,121 +44338,100 @@ msgid "Delete all of the firmware variable" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:1 -#, fuzzy msgid "Display archive header information" -msgstr "Display detailed information of gem(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:2 -#, fuzzy msgid "Display contents of the overall file header" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:3 msgid "Display object format specific file header contents" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:4 -#, fuzzy msgid "Display object format specific contents" -msgstr "Display security context" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:5 -#, fuzzy msgid "Display contents of section headers" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:6 -#, fuzzy msgid "Display content of section headers" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:7 -#, fuzzy msgid "Display the contents of all headers" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:8 -#, fuzzy msgid "Display assembler contents of executable sections" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:9 -#, fuzzy msgid "Display assembler contents of all sections" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:10 msgid "Intermix source code with disassembly" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:11 -#, fuzzy msgid "Display full contents of all sections requested" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:12 -#, fuzzy msgid "Display debug information in object file" -msgstr "Display status information on checked out files" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:13 -#, fuzzy msgid "Display debug information using ctags style" -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:14 -#, fuzzy msgid "Display (in raw form) any STABS info in file" -msgstr "Display date for each line in file" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:15 -#, fuzzy msgid "Display DWARF info in file" -msgstr "Display date for each line in file" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:16 -#, fuzzy msgid "Display contents of symbol table(s)" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:17 -#, fuzzy msgid "Display contents of dynamic symbol table" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:18 -#, fuzzy msgid "Display relocation entries in file" -msgstr "Delete entries in zipfile" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:19 -#, fuzzy msgid "Display dynamic relocation entries in file" -msgstr "Display date for each line in file" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:20 -#, fuzzy msgid "Display version number" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:21 msgid "List object formats and architectures supported" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:23 -#, fuzzy msgid "Specify target object format" -msgstr "Specify output format" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:24 -#, fuzzy msgid "Specify target architecture" -msgstr "Specify the http username" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:25 -#, fuzzy msgid "Only display information for given section" -msgstr "Don't display detailed information of gem(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:26 msgid "Pass given options on to disassembler" @@ -47612,9 +44458,8 @@ msgid "Add given directory to search list from source files" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:32 -#, fuzzy msgid "Include line numbers and filenames in output" -msgstr "Use label instead of filename in output" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:33 msgid "Include file offsets when displaying information" @@ -47653,9 +44498,8 @@ msgid "Don't display hex alongside symbolic disassembly" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:42 -#, fuzzy msgid "Display specified number of bytes on single line for -d" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:43 msgid "Add offset to all displayed section address" @@ -47670,73 +44514,60 @@ msgid "Add given prefix to absolute paths for -S" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:46 -#, fuzzy msgid "Strip initial directory names for -S" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:47 -#, fuzzy msgid "Do not display DIEs at given depth or greater" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:48 -#, fuzzy msgid "Display DIEs starting with given number" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:49 msgid "Make additional dwarf internal consistency checks" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:1 -#, fuzzy msgid "Add a key to the repository" -msgstr "Adds an encryption key to the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:2 -#, fuzzy msgid "Backup data to repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:3 -#, fuzzy msgid "List clients and their keys in the repository" -msgstr "Lists the clients in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:4 -#, fuzzy msgid "List clients using the repository" -msgstr "Lists the clients in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:5 -#, fuzzy msgid "Show difference between two generations" -msgstr "Show differences between revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:6 -#, fuzzy msgid "Dump (some) data structures from a repository" -msgstr "Removes a client from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:7 -#, fuzzy msgid "Force a locked repository to be open" -msgstr "Create a CVS repository if it doesn't exist" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:8 -#, fuzzy msgid "Forget (remove) specified backup generations" -msgstr "Removes backup generations" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:9 -#, fuzzy msgid "Verify internal consistency of backup repository" -msgstr "Checks the consistency of the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:10 -#, fuzzy msgid "List backup generations for client" -msgstr "Lists every backup generation" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:11 msgid "List generation ids for client" @@ -47747,57 +44578,48 @@ msgid "Print help, including hidden subcommands" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:14 -#, fuzzy msgid "List contents of a generation in kdirstat cache format" -msgstr "List contents of directory using long format" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:15 -#, fuzzy msgid "List error codes and explanations" -msgstr "Do not print explanations" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:16 -#, fuzzy msgid "List available repository formats" -msgstr "List available updates" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:17 msgid "List keys and repository toplevels they are used in" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:18 -#, fuzzy msgid "List repository toplevel directories and their keys" -msgstr "List directories, not their content" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:19 -#, fuzzy msgid "List contents of a generation" -msgstr "Lists the contents of a given generation" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:20 msgid "Mount a backup repository as a FUSE filesystem" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:21 -#, fuzzy msgid "Check if the most recent generation is recent enough" -msgstr "Locate the most recent version lacking an error" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:22 -#, fuzzy msgid "Remove client and its key from repository" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:23 -#, fuzzy msgid "Remove a key from the repository" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:24 -#, fuzzy msgid "Restore some or all files from a generation" -msgstr "Restore files from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:25 msgid "Verify that live data and backed up data match" @@ -47812,9 +44634,8 @@ msgid "Do not restore setuid/setgid bits in restored files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:28 -#, fuzzy msgid "Use CHECKSUM algorithm" -msgstr "MAC algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:29 msgid "Name of client" @@ -47857,9 +44678,8 @@ msgid "Wait TIMEOUT seconds for an existing lock" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:39 -#, fuzzy msgid "Write output to FILE instead of STDOUT" -msgstr "Write output to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:40 msgid "Do not actually change anything" @@ -47878,14 +44698,12 @@ msgid "Show errors and progress updates" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:44 -#, fuzzy msgid "Name of backup repository" -msgstr "Rename specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:45 -#, fuzzy msgid "Use FORMAT for new repositories" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:46 msgid "Where to restore / mount to" @@ -47930,9 +44748,8 @@ msgstr "Include directories tagged as cache" #: /tmp/fish/implicit/share/completions/obnam.fish:57 #: /tmp/fish/implicit/share/completions/rsync.fish:77 -#, fuzzy msgid "Read exclude patterns from FILE" -msgstr "Read a batched update from FILE" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:58 msgid "REGEXP for pathnames to include, even if matches --exclude" @@ -47955,9 +44772,8 @@ msgid "Follow mount points" msgstr "Follow mount points" #: /tmp/fish/implicit/share/completions/obnam.fish:63 -#, fuzzy msgid "What to backup" -msgstr "Go to background" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:64 msgid "Put small files directly into the B-tree" @@ -47968,9 +44784,8 @@ msgid "No not put small files into the B-tree" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:66 -#, fuzzy msgid "Add FILE to config files" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:67 msgid "Write out the current configuration" @@ -48013,9 +44828,8 @@ msgid "PGP key with which to encrypt" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:77 -#, fuzzy msgid "Home directory for GPG" -msgstr "Base directory for output" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:78 msgid "Show additional user IDs" @@ -48058,9 +44872,8 @@ msgid "Check chunks when checking integrity" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:88 -#, fuzzy msgid "Do not check data for cient NAME" -msgstr "Do not check directories" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:89 msgid "Check only the last generation" @@ -48073,19 +44886,16 @@ msgstr "Check all generations" #: /tmp/fish/implicit/share/completions/obnam.fish:91 #: /tmp/fish/implicit/share/completions/obnam.fish:92 -#, fuzzy msgid "fsck should remove unused chunks" -msgstr "Remove unused locks" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:93 -#, fuzzy msgid "Do not check checksums of files" -msgstr "Do not check files" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:94 -#, fuzzy msgid "Check checksums of files" -msgstr "Check files" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:95 msgid "Do not check directories" @@ -48228,28 +45038,24 @@ msgid "FILENAME of the known_hosts file" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:1 -#, fuzzy msgid "Produce no output to stderr" -msgstr "Produce diff output" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:2 -#, fuzzy msgid "Print this help text" -msgstr "Get usage help text" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:3 -#, fuzzy msgid "Print the version number" -msgstr "Print line number" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:4 msgid "Set bits/sample for raw input. Default is 16" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:5 -#, fuzzy msgid "Set number of channels for raw input" -msgstr "Set number of audio channels" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:6 msgid "Set samples/sec for raw input" @@ -48268,9 +45074,8 @@ msgid "Enable the bitrate management engine" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:10 -#, fuzzy msgid "Specify a minimum bitrate (in kbps)" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:11 msgid "Specify a maximum bitrate in kbps" @@ -48281,18 +45086,16 @@ msgid "option=value Sets an advanced encoder option to the given value" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:13 -#, fuzzy msgid "Specify quality" -msgstr "Specify a dir" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:14 msgid "Resample input data to sampling rate n (Hz)" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:15 -#, fuzzy msgid "Specify a serial number for the stream" -msgstr "Specify date range for query" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:16 msgid "" @@ -48309,9 +45112,8 @@ msgid "Produce filenames as this string" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:19 -#, fuzzy msgid "Remove the specified characters from parameters" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:20 msgid "Replace characters removed by --name-remove" @@ -48322,57 +45124,49 @@ msgid "Add the given string as an extra comment" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:22 -#, fuzzy msgid "Date for track" -msgstr "Set format" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:23 -#, fuzzy msgid "Track number" -msgstr "Version number" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:24 msgid "Title of track" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:25 -#, fuzzy msgid "Name of album" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:26 -#, fuzzy msgid "Name of artist" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:27 msgid "Genre of track" msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:1 -#, fuzzy msgid "Display the manual for an OPAM command." -msgstr "Display help about darcs and darcs commands" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:2 #: /tmp/fish/implicit/share/completions/opam.fish:58 -#, fuzzy msgid "Show version information." -msgstr "Show apropos information" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:4 msgid "Compatibility mode with OPAM 1.0" msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:5 -#, fuzzy msgid "Print debug message on stdout." -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:6 -#, fuzzy msgid "Print the git version if it exists and exit." -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:7 msgid "Do not use the external aspcud solver, even if available." @@ -48383,9 +45177,8 @@ msgid "Do not install base packages (useful for testing purposes)." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:9 -#, fuzzy msgid "Be quiet when installing a new compiler." -msgstr "Build and install a new package" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:10 msgid "Use ROOT as the current root path." @@ -48402,9 +45195,8 @@ msgid "Use SWITCH as the current compiler switch." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:13 -#, fuzzy msgid "Be more verbose." -msgstr "Do not be verbose" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:14 msgid "" @@ -48413,23 +45205,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:15 -#, fuzzy msgid "Display configuration options for packages." -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:16 -#, fuzzy msgid "Enable all the global and user configuration options." -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:17 msgid "Use csh-compatible mode for configuring OPAM." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:18 -#, fuzzy msgid "Name of the configuration file to update instead of ~/." -msgstr "Specify an initialization file to read instead of ~/.muttrc" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:19 msgid "Backward-compatible option, equivalent to opam config env." @@ -48440,14 +45229,12 @@ msgid "Use fish-compatible mode for configuring OPAM." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:21 -#, fuzzy msgid "Enable all the global configuration options." -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:22 -#, fuzzy msgid "List the current configuration." -msgstr "save the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:23 msgid "Do not load the auto-completion scripts in the environment." @@ -48462,9 +45249,8 @@ msgid "Modify ~/. profile (or ~/." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:27 -#, fuzzy msgid "Recursive query." -msgstr "Recursively copy" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:28 msgid "Display environment variables as an s-expression." @@ -48475,9 +45261,8 @@ msgid "Use sh-compatible mode for configuring OPAM." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:30 -#, fuzzy msgid "Enable all the user configuration options." -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:31 msgid "Use zsh-compatible mode for configuring OPAM. DOMAINS." @@ -48528,81 +45313,68 @@ msgid "returns assembly compile options." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:41 -#, fuzzy msgid "returns bytecode linking options." -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:42 msgid "Prints a summary of your setup, useful for bug-reports." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:43 -#, fuzzy msgid "Display help about OPAM and OPAM commands." -msgstr "Display help about darcs and darcs commands" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:44 msgid "Initialize OPAM state." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:45 -#, fuzzy msgid "Install a list of packages." -msgstr "Install the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:46 -#, fuzzy msgid "Display the list of available packages." -msgstr "List all available packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:47 -#, fuzzy msgid "Pin a given package to a specific version." -msgstr "Print all source packages with version" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:48 -#, fuzzy msgid "Reinstall a list of packages." -msgstr "Reinstall the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:49 -#, fuzzy msgid "Remove a list of packages." -msgstr "Remove the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:50 -#, fuzzy msgid "Manage OPAM repositories." -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:51 -#, fuzzy msgid "Search into the package list." -msgstr "Reinstall the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:52 -#, fuzzy msgid "Display information about specific packages." -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:53 msgid "Manage multiple installation of compilers." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:54 -#, fuzzy msgid "Update the list of available packages." -msgstr "Update the list of down-loadable packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:55 -#, fuzzy msgid "Upgrade the installed package to latest version." -msgstr "Upgrade installed packages to their most recent version" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:56 -#, fuzzy msgid "Administration tool for local repositories." -msgstr "Query gem information in local or remote repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:57 msgid "Show this help in format FMT (pager, plain or groff)." @@ -48613,33 +45385,28 @@ msgid "Check a local repo for errors." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:60 -#, fuzzy msgid "Add external dependencies." -msgstr "Ask for extra dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:61 -#, fuzzy msgid "Initialize a repo for serving files." -msgstr "Name directory for working files" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:62 -#, fuzzy msgid "Compute statistics." -msgstr "Show cache statistics" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:5 -#, fuzzy msgid "Prints the list of all defined branches on the server" -msgstr "Prints the license of all gems in the bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:6 msgid "Lists perforce users suitable for list of completions" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:7 -#, fuzzy msgid "Lists current user's workspaces" -msgstr "List current package locks" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:8 msgid "Lists all changelists for current user" @@ -48652,23 +45419,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:10 -#, fuzzy msgid "Lists all changelists with *shelved* files" -msgstr "list all packages with specified useflag" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:11 -#, fuzzy msgid "Lists p4 commands" -msgstr "List by columns" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:12 msgid "Lists environment variables that can be consumed by perforce" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:13 -#, fuzzy msgid "Lists all of available file modes" -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:17 msgid "Values for --parallel option in various commands" @@ -48769,21 +45533,18 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:43 -#, fuzzy msgid "Displays the version of the p4 application and exits." -msgstr "Display version and supported algorithms, and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:44 -#, fuzzy msgid "Displays basic usage information and exits." -msgstr "Display configuration and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:3 #: /tmp/fish/implicit/share/completions/yaourt.fish:3 #: /tmp/fish/implicit/share/completions/yaourt.fish:14 -#, fuzzy msgid "Manage .pac* files" -msgstr "Handle sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:10 #: /tmp/fish/implicit/share/completions/pacman.fish:9 @@ -48792,87 +45553,74 @@ msgid "Query the files database" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:13 -#, fuzzy msgid "(AUR) Search for packages" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:14 -#, fuzzy msgid "(AUR) Show info for packages" -msgstr "Show source package" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:15 msgid "(AUR) Clone the packages' build files and build them" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:16 -#, fuzzy msgid "(AUR) Clone build files, build and install packages" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:17 -#, fuzzy msgid "(AUR) Check foreign packages for updates" -msgstr "Exclude specified package from updates" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:18 -#, fuzzy msgid "(AUR) Update foreign packages" -msgstr "Update list of source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:19 msgid "(AUR) Clone the packages' build files" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:20 -#, fuzzy msgid "Download dependencies recursively" -msgstr "Copy directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:29 #: /tmp/fish/implicit/share/completions/pacman.fish:20 #: /tmp/fish/implicit/share/completions/yaourt.fish:26 -#, fuzzy msgid "Hook file directory" -msgstr "File is directory" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:32 msgid "Apply only for AUR targets" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:33 -#, fuzzy msgid "Apply only for specified repo" -msgstr "Encrypt for specified user id" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:34 -#, fuzzy msgid "Edit build files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:35 -#, fuzzy msgid "Do not edit build files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:36 -#, fuzzy msgid "Always rebuild packages" -msgstr "Erase built packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:37 -#, fuzzy msgid "Redirect output to the log in the clone directory" -msgstr "Redirect output to file if file does not exist" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:38 msgid "Point at a domain other than the default aur.archlinux.org" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:39 -#, fuzzy msgid "Use devel packages" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:40 msgid "Ignore all results marked as out of date" @@ -48891,16 +45639,14 @@ msgid "Sort descending by key" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:44 -#, fuzzy msgid "Search by field" -msgstr "Select fields" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:81 #: /tmp/fish/implicit/share/completions/pacman.fish:59 #: /tmp/fish/implicit/share/completions/yaourt.fish:80 -#, fuzzy msgid "Also downgrade packages" -msgstr "Bugs for downgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:86 #: /tmp/fish/implicit/share/completions/pacman.fish:64 @@ -48917,9 +45663,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:94 #: /tmp/fish/implicit/share/completions/yaourt.fish:95 #: /tmp/fish/implicit/share/completions/yaourt.fish:99 -#, fuzzy msgid "List files owned by given packages" -msgstr "list files owned by package" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:89 #: /tmp/fish/implicit/share/completions/pacaur.fish:90 @@ -48930,9 +45675,8 @@ msgstr "list files owned by package" #: /tmp/fish/implicit/share/completions/yaourt.fish:96 #: /tmp/fish/implicit/share/completions/yaourt.fish:97 #: /tmp/fish/implicit/share/completions/yaourt.fish:100 -#, fuzzy msgid "Search packages for matching files" -msgstr "Search for packages matching a pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:91 #: /tmp/fish/implicit/share/completions/pacman.fish:69 @@ -48943,48 +45687,41 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:94 #: /tmp/fish/implicit/share/completions/pacman.fish:72 #: /tmp/fish/implicit/share/completions/yaourt.fish:101 -#, fuzzy msgid "Search for packages that include the given files" -msgstr "Search for packages matching one of the patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:96 #: /tmp/fish/implicit/share/completions/yaourt.fish:103 -#, fuzzy msgid "Show in machine readable format" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman.fish:74 msgid "Show in machine readable format: repo\\0pkgname\\0pkgver\\0path\\n" msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:1 -#, fuzzy msgid "Add or update keys from " -msgstr "Load cookies from file" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:2 -#, fuzzy msgid "Use an alternate config " -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:3 -#, fuzzy msgid "Remove the from the keyring" -msgstr "Remove key from the public keyring" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:4 -#, fuzzy msgid "Export to stdout" -msgstr "Extract to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:5 msgid "Present a menu on specified " msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:6 -#, fuzzy msgid "List a fingerprint for each specified " -msgstr "List all the files in each selected package" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:7 msgid "Alternate home for GnuPG" @@ -49007,19 +45744,16 @@ msgid "Initialize the keyring" msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:12 -#, fuzzy msgid "Use the specified " -msgstr "Use specified keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:13 -#, fuzzy msgid "Lists all or specified from the keyring" -msgstr "Export all or the given keys from all keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:14 -#, fuzzy msgid "Same as --list-keys, but with signatures" -msgstr "Same as --list-keys, but the signatures are listed too" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:15 msgid "Locally sign the given " @@ -49046,9 +45780,8 @@ msgid "Verify the given file" msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:21 -#, fuzzy msgid "Displays the program version" -msgstr "display the package version" +msgstr "" #: /tmp/fish/implicit/share/completions/pacmd.fish:1 msgid "Resume" @@ -49063,78 +45796,64 @@ msgid "Show statistics about memory usage" msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:2 -#, fuzzy msgid "Show info about the daemon" -msgstr "Show help about options" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:3 -#, fuzzy msgid "Show all loaded things of the specified type" -msgstr "Show file systems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:4 -#, fuzzy msgid "Show shorter output" -msgstr "Stop from terminal output" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:5 msgid "Ask the daemon to exit" msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:6 -#, fuzzy msgid "Upload a file to the sample cache" -msgstr "Select file to store source cache" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:7 -#, fuzzy msgid "Play a sample from the cache" -msgstr "Do not remove stale gems from the cache" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:8 -#, fuzzy msgid "Remove a sample from the cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:10 -#, fuzzy msgid "Print help text and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:1 -#, fuzzy msgid "Set an alternate database location" -msgstr "Set a state attribute for a revision" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:2 -#, fuzzy msgid "Colorize output" -msgstr "Wide output" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:3 -#, fuzzy msgid "Limit the depth of recursion" -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:4 -#, fuzzy msgid "Generate output for graphviz's dot" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:5 -#, fuzzy msgid "Display this help message" -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:6 -#, fuzzy msgid "Enable linear output" -msgstr "Generate dired output" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:7 -#, fuzzy msgid "Show reverse dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:8 msgid "Search sync DBs instead of local" @@ -49145,9 +45864,8 @@ msgid "Show dependencies with no duplicates (implies -l)" msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:10 -#, fuzzy msgid "Set an alternate configuration file" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:1 msgid "" @@ -49182,9 +45900,8 @@ msgid "Change to the directory dir immediately" msgstr "Change to the directory dir immediately" #: /tmp/fish/implicit/share/completions/patch.fish:8 -#, fuzzy msgid "Use the #ifdef…#endif construct to mark changes" -msgstr "Use the #ifdef ... #endif construct to mark changes" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:9 msgid "" @@ -49223,9 +45940,8 @@ msgstr "" "or when a file is under ClearCase control and does not exist" #: /tmp/fish/implicit/share/completions/patch.fish:16 -#, fuzzy msgid "Read the patch from patchfile" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:17 msgid "" @@ -49294,9 +46010,8 @@ msgid "Use method to determine backup file names" msgstr "Use method to determine backup file names" #: /tmp/fish/implicit/share/completions/patch.fish:32 -#, fuzzy msgid "Output extra information about the work being done" -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:33 msgid "Set internal debugging flags of interest only to patch patchers" @@ -49323,14 +46038,12 @@ msgstr "" "given in context diff headers, UTC, GMT" #: /tmp/fish/implicit/share/completions/pbget.fish:1 -#, fuzzy msgid "Use the ABS tree" -msgstr "Use no pristine tree" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:2 -#, fuzzy msgid "Set the desired package architecture" -msgstr "Select file to store package cache" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:3 msgid "Search the AUR" @@ -49341,19 +46054,16 @@ msgid "Only search the AUR" msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:5 -#, fuzzy msgid "Set the output directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:6 -#, fuzzy msgid "Display this message" -msgstr "Display all matches" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:7 -#, fuzzy msgid "Search for upgradable packages" -msgstr "Print only upgradeable packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:8 msgid "Search the ABS testing branches" @@ -49400,9 +46110,8 @@ msgid "Keep text in content stream order" msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:11 -#, fuzzy msgid "Generate simple HTML file" -msgstr "Generate a simple Gemfile" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:12 msgid "Generate XHTML bounding boxes" @@ -49413,9 +46122,8 @@ msgid "Sets encoding for the output [UTF-8]" msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:14 -#, fuzzy msgid "Lists the available encodings" -msgstr "List all available packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:15 msgid "Sets the end-of-line convention" @@ -49426,31 +46134,26 @@ msgid "Don't insert page breaks" msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:17 -#, fuzzy msgid "Specify owner password for the PDF" -msgstr "Specify a password" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:18 -#, fuzzy msgid "Specify user password for the PDF" -msgstr "Specify a password" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:19 #: /tmp/fish/implicit/share/completions/xpdf.fish:28 -#, fuzzy msgid "Don't print any messages or errors" -msgstr "Don't run any tag programs" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:20 -#, fuzzy msgid "Print copyright and version" -msgstr "Print node's version" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:21 #: /tmp/fish/implicit/share/completions/xpdf.fish:31 -#, fuzzy msgid "Print usage information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:1 #: /tmp/fish/implicit/share/completions/ruby.fish:1 @@ -49558,14 +46261,12 @@ msgid "Automatic line ending processing" msgstr "Automatic line ending processing" #: /tmp/fish/implicit/share/completions/perl.fish:26 -#, fuzzy msgid "Require module" -msgstr "Require file" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:27 -#, fuzzy msgid "Use module" -msgstr "Unsafe mode" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:28 #: /tmp/fish/implicit/share/completions/ruby.fish:12 @@ -49612,28 +46313,24 @@ msgstr "Disable warnings" #: /tmp/fish/implicit/share/completions/perl.fish:41 #: /tmp/fish/implicit/share/completions/ruby.fish:21 -#, fuzzy msgid "Extract script" -msgstr "Evaluate script" +msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:1 msgid "Show a filter parameter by modifier" msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:2 -#, fuzzy msgid "Flush filter params specified by mod" -msgstr "Compare only specified number of characters" +msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:3 -#, fuzzy msgid "Table command" -msgstr "Help for this command" +msgstr "" #: /tmp/fish/implicit/share/completions/pgrep.fish:1 -#, fuzzy msgid "Output delimiter" -msgstr "Select output delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/pgrep.fish:2 msgid "List the process name as well as the process ID" @@ -49648,9 +46345,8 @@ msgid "Open file" msgstr "Open file" #: /tmp/fish/implicit/share/completions/pine.fish:4 -#, fuzzy msgid "Start in folder index" -msgstr "Start in foreground mode" +msgstr "" #: /tmp/fish/implicit/share/completions/pine.fish:5 msgid "Initial set of keystrokes" @@ -49677,9 +46373,8 @@ msgid "Set global configuration file" msgstr "Set global configuration file" #: /tmp/fish/implicit/share/completions/pine.fish:12 -#, fuzzy msgid "Restricted mode" -msgstr "Start in restricted mode" +msgstr "" #: /tmp/fish/implicit/share/completions/pine.fish:13 msgid "Enable suspension support" @@ -49774,9 +46469,8 @@ msgstr "" "interface" #: /tmp/fish/implicit/share/completions/ping.fish:19 -#, fuzzy msgid "Specifies the number of data bytes to be sent" -msgstr "Specify the number of jobs to run in parallel" +msgstr "" #: /tmp/fish/implicit/share/completions/ping.fish:20 msgid "Set socket buffer size" @@ -49811,14 +46505,12 @@ msgid "Time to wait for a response, in seconds" msgstr "Time to wait for a response, in seconds" #: /tmp/fish/implicit/share/completions/pinky.fish:1 -#, fuzzy msgid "produce long format output for the specified USERs" -msgstr "Write log output to the specified file descriptor" +msgstr "" #: /tmp/fish/implicit/share/completions/pinky.fish:2 -#, fuzzy msgid "omit the user's home directory and shell in long format" -msgstr "List contents of directory using long format" +msgstr "" #: /tmp/fish/implicit/share/completions/pinky.fish:3 msgid "omit the user's project file in long format" @@ -49849,58 +46541,49 @@ msgid "omit the user's full name, remote host and idle time in short format" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:1 -#, fuzzy msgid "failsafe to overwrite" -msgstr "Log to file, overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:2 #: /tmp/fish/implicit/share/completions/pkg_delete.fish:3 -#, fuzzy msgid "Turn on stats" -msgstr "Warning control" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:3 -#, fuzzy msgid "Automated package installation" -msgstr "Don't change the package installation order" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:5 -#, fuzzy msgid "Update packages" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:6 msgid "Fuzzy match" msgstr "" #: /tmp/fish/implicit/share/completions/pkgadd.fish:1 -#, fuzzy msgid "Upgrade" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgadd.fish:2 msgid "Force installation, overwriting" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:1 -#, fuzzy msgid "Print versions of the specified libraries" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:2 -#, fuzzy msgid "Display the version of pkg-config and quit" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:3 -#, fuzzy msgid "Displays a help message and quit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:4 -#, fuzzy msgid "Print message when errors occur" -msgstr "Work silently, unless an error occurs" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:5 msgid "Stay quiet when errors occur" @@ -49919,9 +46602,8 @@ msgid "This prints the -I part of \"--cflags\"." msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:10 -#, fuzzy msgid "Print link flags" -msgstr "Print line of headings" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:11 msgid "This prints the -L/-R part of \"--libs\"." @@ -49944,14 +46626,12 @@ msgid "Returns a list of all variables defined in the package" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:16 -#, fuzzy msgid "Return success if any -uninstalled packages are used" -msgstr "Query an (uninstalled) package in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:17 -#, fuzzy msgid "Test if a package has at most the specified version" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:18 msgid "Test if a package has at least this version" @@ -49962,9 +46642,8 @@ msgid "Test if a package has exactly this version" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:20 -#, fuzzy msgid "Test if a package exists" -msgstr "Verify package integrity" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:21 msgid "Output libraries suitable for static linking" @@ -49975,23 +46654,20 @@ msgid "List all modules found in the pkg-config path" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:23 -#, fuzzy msgid "List all modules the given packages provides" -msgstr "List capabilities this package provides" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:24 -#, fuzzy msgid "List all modules the given packages requires" -msgstr "List capabilities this package provides" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:25 msgid "List all modules the given packages requires for static linking" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_delete.fish:2 -#, fuzzy msgid "Delete unsed deps" -msgstr "Delete selection" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:3 msgid "only show files in a {s}bin/ directory. Works with -s, -l" @@ -50002,38 +46678,32 @@ msgid "make searches case sensitive" msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:5 -#, fuzzy msgid "allow the use of * and ? as wildcards" -msgstr "Do not expand wildcards" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:6 -#, fuzzy msgid "allow the use of regex in searches" -msgstr "Never allow the use of specified cipher algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:7 -#, fuzzy msgid "search only in the specified repository" -msgstr "Remove specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:8 -#, fuzzy msgid "enable verbose output" -msgstr "Generate dired output" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:9 -#, fuzzy msgid "provides information about the package owning a file" -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:10 msgid "list files of a given package; similar to \"pacman -Ql\"" msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:11 -#, fuzzy msgid "search which package owns a file" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:12 msgid "" @@ -50042,24 +46712,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:2 -#, fuzzy msgid "Show debug information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:3 -#, fuzzy msgid "List subcommands" -msgstr "List by columns" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:4 -#, fuzzy msgid "Set configuration option" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:5 -#, fuzzy msgid "Run sanity test" -msgstr "Run unit tests for gem" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:6 msgid "Run package manager within jail" @@ -50070,14 +46736,12 @@ msgid "Run package manager within chroot" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:8 -#, fuzzy msgid "Install packages in specified root" -msgstr "list all packages with specified useflag" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:9 -#, fuzzy msgid "Use configuration file" -msgstr "Configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:10 msgid "Set repository configuration directory" @@ -50092,64 +46756,53 @@ msgid "Use IPv6" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:13 -#, fuzzy msgid "Display help for command" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:14 -#, fuzzy msgid "Install package file" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:15 -#, fuzzy msgid "Modify annotations on packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:16 -#, fuzzy msgid "Audit installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:17 -#, fuzzy msgid "Delete unneeded packages" -msgstr "Delete cached package files" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:18 msgid "Dump package database" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:19 -#, fuzzy msgid "Check installed packages" -msgstr "Check installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:20 -#, fuzzy msgid "Clean local cache" -msgstr "Clean local caches" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:21 -#, fuzzy msgid "Convert package from pkg_add format" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:22 -#, fuzzy msgid "Create a package" -msgstr "Erase package" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:23 #: /tmp/fish/implicit/share/completions/pkg.fish:31 -#, fuzzy msgid "Remove a package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:24 -#, fuzzy msgid "Download a remote package" -msgstr "Download and extract a source" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:26 #: /tmp/fish/implicit/share/completions/zypper.fish:3 @@ -50158,14 +46811,12 @@ msgid "Install packages" msgstr "Install packages" #: /tmp/fish/implicit/share/completions/pkg.fish:27 -#, fuzzy msgid "Prevent package modification" -msgstr "Print package name/distro" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:28 -#, fuzzy msgid "List package manager plugins" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:29 #: /tmp/fish/implicit/share/completions/rpm.fish:95 @@ -50173,29 +46824,24 @@ msgid "Query installed packages" msgstr "Query installed packages" #: /tmp/fish/implicit/share/completions/pkg.fish:30 -#, fuzzy msgid "Register a package in a database" -msgstr "list all packages matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:32 -#, fuzzy msgid "Create package repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:33 -#, fuzzy msgid "Query information for remote repositories" -msgstr "Query gem information in local or remote repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:34 -#, fuzzy msgid "Find packages" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:35 -#, fuzzy msgid "Modify package information in database" -msgstr "Look up file information via the mimedb database" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:36 msgid "Open a SQLite shell" @@ -50206,36 +46852,32 @@ msgid "Display packages linking to shared library" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:38 -#, fuzzy msgid "Display package statistics" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:39 msgid "Stop preventing package modification" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:40 -#, fuzzy msgid "Update remote repositories" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:41 msgid "Display UPDATING entries" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:43 -#, fuzzy msgid "Show package versions" -msgstr "Show each gem version" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:44 msgid "Check which package provides a file" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:45 -#, fuzzy msgid "Mark packages as automatic" -msgstr "Mark packages as automatically installed" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:46 msgid "Force installation even when installed" @@ -50243,207 +46885,171 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:47 #: /tmp/fish/implicit/share/completions/pkg.fish:61 -#, fuzzy msgid "Disable installation scripts" -msgstr "Disable pseudo-tty allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:48 #: /tmp/fish/implicit/share/completions/pkg.fish:62 -#, fuzzy msgid "Force installation with missing dependencies" -msgstr "Force gem to install, bypassing dependency checks" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:49 -#, fuzzy msgid "Force quiet output" -msgstr "Forced quit" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:50 -#, fuzzy msgid "Do not make changes" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:51 -#, fuzzy msgid "Assume yes when asked for confirmation" -msgstr "Ask for confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:52 -#, fuzzy msgid "Delete all cached packages" -msgstr "Delete cached package files" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:53 -#, fuzzy msgid "Delete all installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:54 -#, fuzzy msgid "Case sensitive packages" -msgstr "All base system packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:55 -#, fuzzy msgid "Disable deinstallation scripts" -msgstr "Disable pseudo-tty allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:56 -#, fuzzy msgid "Force package removal" -msgstr "Ignore package Holds" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:57 msgid "Treat the package name as shell glob" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:58 -#, fuzzy msgid "Case insensitive packages" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:59 -#, fuzzy msgid "Remove recursively" -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:60 msgid "Treat the package name as regular expression" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:63 -#, fuzzy msgid "Do not perform actual installation" -msgstr "Don't run unit tests prior to installation" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:64 -#, fuzzy msgid "Reinstall packages required by this package" -msgstr "list all packages depending on specified package" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:65 -#, fuzzy msgid "Use only a given repository" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:66 -#, fuzzy msgid "Do not automatically update database" -msgstr "Show automatically installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:67 -#, fuzzy msgid "Force a full download of a repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:2 -#, fuzzy msgid "Package whose files to list" -msgstr "Re-package the files before erasing" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:3 -#, fuzzy msgid "Print the package owning file matching pattern" -msgstr "list all packages matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:4 -#, fuzzy msgid "Print footprint for file" -msgstr "Print size of files" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:5 -#, fuzzy msgid "Specify alternative installation root" -msgstr "Specify installroot" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:6 -#, fuzzy msgid "Print version of pkgutils" -msgstr "Print size of files" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:1 -#, fuzzy msgid "Install with pkgadd after build" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:2 msgid "Upgrade with pkgadd after build" msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:3 -#, fuzzy msgid "Search and build packages recursively" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:4 -#, fuzzy msgid "Download the sources" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:5 -#, fuzzy msgid "Only download the sources" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:6 -#, fuzzy msgid "Check if the package is uptodate" -msgstr "Exclude specified package from updates" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:7 #: /tmp/fish/implicit/share/completions/prt-get.fish:39 #: /tmp/fish/implicit/share/completions/prt-get.fish:98 -#, fuzzy msgid "Update footprint" -msgstr "Update mirror list" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:8 #: /tmp/fish/implicit/share/completions/prt-get.fish:40 #: /tmp/fish/implicit/share/completions/prt-get.fish:99 -#, fuzzy msgid "Ignore footprint" -msgstr "Ignore errors" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:9 #: /tmp/fish/implicit/share/completions/prt-get.fish:37 #: /tmp/fish/implicit/share/completions/prt-get.fish:96 -#, fuzzy msgid "Update md5sum" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:10 #: /tmp/fish/implicit/share/completions/prt-get.fish:38 #: /tmp/fish/implicit/share/completions/prt-get.fish:97 -#, fuzzy msgid "Ignore md5sum" -msgstr "Ignore case" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:11 -#, fuzzy msgid "Do not strip executables" -msgstr "Make scripts executable" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:12 #: /tmp/fish/implicit/share/completions/prt-get.fish:36 #: /tmp/fish/implicit/share/completions/prt-get.fish:95 -#, fuzzy msgid "Force rebuild" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:13 -#, fuzzy msgid "Remove package and sources" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:14 -#, fuzzy msgid "Keep working dir" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:15 -#, fuzzy msgid "Use another config" -msgstr "Use pattern from file" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgrm.fish:1 msgid "Package to remove" @@ -50473,14 +47079,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/poff.fish:6 -#, fuzzy msgid "Displays help information" -msgstr "Display detailed information of gem(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/poff.fish:7 -#, fuzzy msgid "Prints the version and exits" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:1 msgid "run 'make config' for all ports (overrides -G)." @@ -50523,9 +47127,8 @@ msgid "recurse dependencies thoroughly, using all-depends-list." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:11 -#, fuzzy msgid "verbose output." -msgstr "Verbose prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:12 msgid "save old shared libraries before deinstall [-R]… [See Man Page]" @@ -50536,9 +47139,8 @@ msgid "interactive update mode -- ask whether to rebuild ports." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:14 -#, fuzzy msgid "no cleaning of distfiles." -msgstr "Control creation of sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:15 msgid "always clean distfiles." @@ -50573,9 +47175,8 @@ msgid "use the INDEX for status, but double-check with the port." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:23 -#, fuzzy msgid "do not try to use /usr/ports." -msgstr "Do not try to use the GnuPG-Agent" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:24 msgid "delete ports that are build-only dependencies a… [See Man Page]" @@ -50594,18 +47195,16 @@ msgid "fail if no package is available." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:28 -#, fuzzy msgid "use packages for all build dependencies." -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:29 msgid "use package if newer than installed even if the… [See Man Page]" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:30 -#, fuzzy msgid "fetch package even if it already exists locally." -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:31 msgid "where local packages can be found, will fall ba… [See Man Page]" @@ -50652,9 +47251,8 @@ msgid "answer yes to all user prompts for the features… [See Man Page]" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:42 -#, fuzzy msgid "display help message." -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:43 msgid "display the version number El ENVIRONMENT The d… [See Man Page]" @@ -50669,14 +47267,12 @@ msgid "Installed Package" msgstr "Installed Package" #: /tmp/fish/implicit/share/completions/ports.fish:1 -#, fuzzy msgid "Update ports" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/ports.fish:2 -#, fuzzy msgid "List ports" -msgstr "Dir to import" +msgstr "" #: /tmp/fish/implicit/share/completions/ports.fish:3 msgid "List version diffs between local and installed ports" @@ -50703,14 +47299,12 @@ msgid "Just write wtmp record" msgstr "" #: /tmp/fish/implicit/share/completions/poweroff.fish:7 -#, fuzzy msgid "Don't write wtmp record" -msgstr "Don't remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/poweroff.fish:8 -#, fuzzy msgid "Don't send wall message" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:2 #: /tmp/fish/implicit/share/completions/prt-get.fish:62 @@ -50722,15 +47316,13 @@ msgstr "Port" #: /tmp/fish/implicit/share/completions/prt-get.fish:3 #: /tmp/fish/implicit/share/completions/prt-get.fish:64 -#, fuzzy msgid "Install listed ports" -msgstr "Install needed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:4 #: /tmp/fish/implicit/share/completions/prt-get.fish:65 -#, fuzzy msgid "Install listed ports and their deps" -msgstr "Install source packages and their build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:5 #: /tmp/fish/implicit/share/completions/prt-get.fish:66 @@ -50739,33 +47331,28 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:6 #: /tmp/fish/implicit/share/completions/prt-get.fish:67 -#, fuzzy msgid "Update listed packages" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:7 #: /tmp/fish/implicit/share/completions/prt-get.fish:68 -#, fuzzy msgid "Remove listed packages" -msgstr "Remove the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:8 #: /tmp/fish/implicit/share/completions/prt-get.fish:69 -#, fuzzy msgid "Update all outdated installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:9 #: /tmp/fish/implicit/share/completions/prt-get.fish:70 -#, fuzzy msgid "Do not update this in sysup" -msgstr "Do not propagate times for matching symbols" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:10 #: /tmp/fish/implicit/share/completions/prt-get.fish:71 -#, fuzzy msgid "Remove this from lock" -msgstr "Remove unused locks" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:11 #: /tmp/fish/implicit/share/completions/prt-get.fish:72 @@ -50774,9 +47361,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:12 #: /tmp/fish/implicit/share/completions/prt-get.fish:73 -#, fuzzy msgid "Search for an expr in port names" -msgstr "Prompt for an expiration time" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:13 #: /tmp/fish/implicit/share/completions/prt-get.fish:74 @@ -50785,22 +47371,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:14 #: /tmp/fish/implicit/share/completions/prt-get.fish:75 -#, fuzzy msgid "Print info on a port" -msgstr "Print time of last boot" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:15 #: /tmp/fish/implicit/share/completions/prt-get.fish:76 -#, fuzzy msgid "Search for a pattern in the footprints in the ports tree" msgstr "" -"Searches for matches of the supplied string in the current local portage tree" #: /tmp/fish/implicit/share/completions/prt-get.fish:16 #: /tmp/fish/implicit/share/completions/prt-get.fish:77 -#, fuzzy msgid "Print the path of a port" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:17 #: /tmp/fish/implicit/share/completions/prt-get.fish:78 @@ -50809,15 +47391,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:18 #: /tmp/fish/implicit/share/completions/prt-get.fish:79 -#, fuzzy msgid "Print a list of deps for the listed ports" -msgstr "Print a list of local users" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:19 #: /tmp/fish/implicit/share/completions/prt-get.fish:80 -#, fuzzy msgid "Print a simple list of deps for the listed ports" -msgstr "Print suppressions for detected errors" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:20 #: /tmp/fish/implicit/share/completions/prt-get.fish:81 @@ -50825,56 +47405,47 @@ msgid "Print a deptree for the port" msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:21 -#, fuzzy msgid "List ports in multiple directories" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:22 #: /tmp/fish/implicit/share/completions/prt-get.fish:82 -#, fuzzy msgid "List all the ports" -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:23 #: /tmp/fish/implicit/share/completions/prt-get.fish:83 -#, fuzzy msgid "Print formatted list of ports" -msgstr "Prints formatted text" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:25 #: /tmp/fish/implicit/share/completions/prt-get.fish:85 -#, fuzzy msgid "List installed packages which have no dependent packages" -msgstr "List packages on which this package depends" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:26 -#, fuzzy msgid "Check if a port is installed" -msgstr "Check installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:27 #: /tmp/fish/implicit/share/completions/prt-get.fish:86 -#, fuzzy msgid "Print the version of an installed package" -msgstr "Generate a .deb file for an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:28 #: /tmp/fish/implicit/share/completions/prt-get.fish:87 -#, fuzzy msgid "Print the listing of the directory of a port" -msgstr "Print the working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:29 #: /tmp/fish/implicit/share/completions/prt-get.fish:88 -#, fuzzy msgid "Print a file in a port to stdout" -msgstr "Print file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:30 #: /tmp/fish/implicit/share/completions/prt-get.fish:89 -#, fuzzy msgid "Edit a file in a port" -msgstr "Edit files in-place" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:31 #: /tmp/fish/implicit/share/completions/prt-get.fish:90 @@ -50883,44 +47454,37 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:32 #: /tmp/fish/implicit/share/completions/prt-get.fish:91 -#, fuzzy msgid "Print the configuration of prt-get" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:33 #: /tmp/fish/implicit/share/completions/prt-get.fish:92 -#, fuzzy msgid "Show the current version of prt-get" -msgstr "Show the log messages for a set of revision(s) and/or file(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:34 #: /tmp/fish/implicit/share/completions/prt-get.fish:93 -#, fuzzy msgid "Create a cache for prt-get" -msgstr "Create summary change report" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:41 #: /tmp/fish/implicit/share/completions/prt-get.fish:100 -#, fuzzy msgid "No stripping" -msgstr "Prompt string" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:42 #: /tmp/fish/implicit/share/completions/prt-get.fish:101 -#, fuzzy msgid "Keep work directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:43 #: /tmp/fish/implicit/share/completions/prt-get.fish:102 -#, fuzzy msgid "Ignore the listed ports" -msgstr "Ignore first line of input" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:44 -#, fuzzy msgid "Use cache" -msgstr "Set cache dir" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:46 #: /tmp/fish/implicit/share/completions/prt-get.fish:104 @@ -50939,27 +47503,23 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:49 #: /tmp/fish/implicit/share/completions/prt-get.fish:107 -#, fuzzy msgid "Ignore default config file" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:50 #: /tmp/fish/implicit/share/completions/prt-get.fish:108 -#, fuzzy msgid "Prepend string to config file" -msgstr "Prepend string to relative links" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:51 #: /tmp/fish/implicit/share/completions/prt-get.fish:109 -#, fuzzy msgid "Append string to config file" -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:52 #: /tmp/fish/implicit/share/completions/prt-get.fish:110 -#, fuzzy msgid "Overrirde config file with string" -msgstr "Overwrite modified files with clean copies" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:54 #: /tmp/fish/implicit/share/completions/prt-get.fish:112 @@ -50978,33 +47538,28 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:57 #: /tmp/fish/implicit/share/completions/prt-get.fish:115 -#, fuzzy msgid "Prefer higher version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:58 #: /tmp/fish/implicit/share/completions/prt-get.fish:116 -#, fuzzy msgid "Override prefer-higher" -msgstr "Override framerate" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:59 #: /tmp/fish/implicit/share/completions/prt-get.fish:117 -#, fuzzy msgid "Use alternative config file" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:60 #: /tmp/fish/implicit/share/completions/prt-get.fish:118 -#, fuzzy msgid "Use this alternative root for installation" -msgstr "Run unit tests prior to installation" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:61 #: /tmp/fish/implicit/share/completions/prt-get.fish:119 -#, fuzzy msgid "Write output to log file" -msgstr "Write output to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:1 #: /tmp/fish/implicit/share/completions/ps.fish:5 @@ -51075,9 +47630,8 @@ msgid "Add column for security data" msgstr "Add column for security data" #: /tmp/fish/implicit/share/completions/ps.fish:19 -#, fuzzy msgid "Show different scheduler information for the -l option" -msgstr "Show full information for specified patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:20 msgid "Full format" @@ -51104,9 +47658,8 @@ msgid "Wide output" msgstr "Wide output" #: /tmp/fish/implicit/share/completions/ps.fish:29 -#, fuzzy msgid "Set screen width" -msgstr "Assume screen width" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:30 msgid "Include dead child process data" @@ -51117,34 +47670,28 @@ msgid "Repead header lines, one per page" msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:32 -#, fuzzy msgid "Print no headers" -msgstr "Print line of headings" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:33 -#, fuzzy msgid "Set screen height" -msgstr "Set severity" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:34 -#, fuzzy msgid "Spericy sorting order" -msgstr "Set mail sort order" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:35 -#, fuzzy msgid "Show threads. With LWP/NLWP" -msgstr "Show threads" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:36 -#, fuzzy msgid "Show threads. With SPID" -msgstr "Show threads" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:37 -#, fuzzy msgid "Show threads after processes" -msgstr "Stop after preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:1 msgid "database name to connect to" @@ -51159,46 +47706,40 @@ msgid "execute commands from file, then exit" msgstr "execute commands from file, then exit" #: /tmp/fish/implicit/share/completions/psql.fish:4 -#, fuzzy msgid "list available databases, then exit" -msgstr "List available updates" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:5 msgid "do not read startup file (~/.psqlrc)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:6 -#, fuzzy msgid "execute command file as a single transaction" -msgstr "execute commands from file, then exit" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:7 -#, fuzzy msgid "show this help, then exit" -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:8 -#, fuzzy msgid "output version information, then exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:9 msgid "echo all input from script" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:10 -#, fuzzy msgid "echo commands sent to server" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:11 msgid "display queries that internal commands generate" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:12 -#, fuzzy msgid "send session log to file" -msgstr "Save session cookies" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:13 msgid "disable enhanced command line editing (readline)" @@ -51221,9 +47762,8 @@ msgid "single-line mode (end of line terminates SQL command)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:18 -#, fuzzy msgid "unaligned table output mode" -msgstr "Give human readable output" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:19 msgid "HTML table output mode" @@ -51234,18 +47774,16 @@ msgid "set printing option VAR to ARG (see \\pset command)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:21 -#, fuzzy msgid "print rows only" -msgstr "Print verbose info" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:22 msgid "set HTML table tag attributes (e.g., width, border)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:23 -#, fuzzy msgid "turn on expanded table output" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:24 msgid "set field separator (default: '|')" @@ -51264,14 +47802,12 @@ msgid "database server port" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:28 -#, fuzzy msgid "database user name" -msgstr "Set server name" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:29 -#, fuzzy msgid "never prompt for password" -msgstr "Never prompt before removal" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:30 msgid "force password prompt (should happen automatically)" @@ -51286,47 +47822,40 @@ msgid "Turn progress bar on" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:2 -#, fuzzy msgid "Show timer" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:3 -#, fuzzy msgid "Show estimated time left" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:4 msgid "Show estimated time of arrival" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:5 -#, fuzzy msgid "Show rate counter" -msgstr "Show all containers" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:6 -#, fuzzy msgid "Show average rate" -msgstr "Show packages in cache" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:7 -#, fuzzy msgid "Show total byte counter" -msgstr "Show all containers" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:8 msgid "Show transfer buffer percentage" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:9 -#, fuzzy msgid "Show the last NUM bytes written" -msgstr "Print total bytes written" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:10 -#, fuzzy msgid "Set output format" -msgstr "Specify output format" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:13 msgid "Wait for first byte before showing progress" @@ -51337,43 +47866,36 @@ msgid "Wait given time (in secs) before showing progress" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:15 -#, fuzzy msgid "Set total number of bytes to be transfered" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:16 msgid "Count lines instead of bytes" msgstr "Count lines instead of bytes" #: /tmp/fish/implicit/share/completions/pv.fish:17 -#, fuzzy msgid "Count null-terminated lines" -msgstr "-T has null-terminated names" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:18 -#, fuzzy msgid "Wait given time (in secs) between updates" -msgstr "Wait time between retries" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:19 -#, fuzzy msgid "Set terminal width" -msgstr "Stop from terminal input" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:20 -#, fuzzy msgid "Set terminal height" -msgstr "Stop from terminal input" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:21 -#, fuzzy msgid "Prefix output with given name" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:22 -#, fuzzy msgid "Force output" -msgstr "Wide output" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:23 msgid "Use cursor positioning escape sequence instead of \\r" @@ -51388,14 +47910,12 @@ msgid "Use transfer buffer size (in bytes)" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:26 -#, fuzzy msgid "Don't use slice" -msgstr "Don't use batch mode" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:27 -#, fuzzy msgid "Ignore read errors" -msgstr "Ignore errors" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:28 msgid "Stop transfer after given number of bytes" @@ -51418,20 +47938,17 @@ msgid "Report colourised filesystem disk space usage" msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:2 -#, fuzzy msgid "show this help message" -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:3 #: /tmp/fish/implicit/share/completions/quilt.fish:2 -#, fuzzy msgid "show version" -msgstr "Show each gem version" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:4 -#, fuzzy msgid "include filesystems having 0 blocks" -msgstr "Exclude file systems" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:5 msgid "print sizes in human readable format (e.g., 1K 234M 2G)" @@ -51446,14 +47963,12 @@ msgid "use BLOCKSIZE-byte blocks" msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:8 -#, fuzzy msgid "limit listing to local filesystems" -msgstr "List only local filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:9 -#, fuzzy msgid "like --block-size=1024" -msgstr "Set block size" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:10 msgid "like --block-size=1048576" @@ -51468,9 +47983,8 @@ msgid "use filesystem native block size" msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:13 -#, fuzzy msgid "do not use colours" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:14 msgid "" @@ -51485,53 +47999,44 @@ msgid "show 'mount --bind' mounts" msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:16 -#, fuzzy msgid "show inode instead of block usage" -msgstr "show some examples of usage" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:1 -#, fuzzy msgid "Set output file" -msgstr "Output file" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:2 -#, fuzzy msgid "Read one line at a time" -msgstr "Print name, line, and time" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:3 -#, fuzzy msgid "Set lexer" -msgstr "Set severity" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:4 msgid "Guess lexer" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:5 -#, fuzzy msgid "Set formater" -msgstr "Set format file" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:6 -#, fuzzy msgid "Set coma-seperated options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:7 -#, fuzzy msgid "Set one option" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:8 -#, fuzzy msgid "Set filter" -msgstr "Set tag file" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:9 -#, fuzzy msgid "Print style definition for given style" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:10 msgid "List lexers, formaters, styles or filters" @@ -51542,18 +48047,16 @@ msgid "Guess and print lexer name based on given file" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:12 -#, fuzzy msgid "Print detailed help" -msgstr "Print help" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:13 msgid "Print detailed traceback on unhandled exceptions" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:15 -#, fuzzy msgid "Print package version" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:1 #: /tmp/fish/implicit/share/completions/python3.fish:1 @@ -51630,9 +48133,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:16 #: /tmp/fish/implicit/share/completions/python3.fish:16 #: /tmp/fish/implicit/share/completions/python.fish:17 -#, fuzzy msgid "Read program from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:17 #: /tmp/fish/implicit/share/completions/python.fish:18 @@ -51657,15 +48159,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:17 #: /tmp/fish/implicit/share/completions/python.fish:21 -#, fuzzy msgid "Don't print version and copyright messages on interactive startup" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:18 #: /tmp/fish/implicit/share/completions/python.fish:22 -#, fuzzy msgid "Set implementation-specific option" -msgstr "Edit command specific completions" +msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:19 #: /tmp/fish/implicit/share/completions/python.fish:23 @@ -51676,38 +48176,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:20 #: /tmp/fish/implicit/share/completions/python.fish:24 -#, fuzzy msgid "Issue errors" -msgstr "Ignore errors" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:3 -#, fuzzy msgid "specify the file to Run Control file to use" -msgstr "Specify the remote shell to use" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:4 msgid "Runs the command in bash trace mode (-x). For internal debugging" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:5 -#, fuzzy msgid "Add one or more files to the topmost or named patch" -msgstr "Add one or more new files or directories" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:6 -#, fuzzy msgid "Print an annotated listing of the specified file" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:7 -#, fuzzy msgid "Print a list of applied patches" -msgstr "Print a list of local users" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:8 -#, fuzzy msgid "Remove the specified or topmost patch from the series file" -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:9 msgid "" @@ -51715,14 +48209,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:10 -#, fuzzy msgid "Edit the specified file(s) in /usr/bin/vim" -msgstr "Add specified file to the current list of keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:11 -#, fuzzy msgid "Print the list of files that the topmost or specified patch changes" -msgstr "Set the list of default preferences to the specified string" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:12 msgid "" @@ -51772,9 +48264,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:21 -#, fuzzy msgid "Print the list of patches that modify the specified file" -msgstr "Set the list of default preferences to the specified string" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:22 msgid "" @@ -51783,36 +48274,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:23 -#, fuzzy msgid "Apply patch(es) from the series file" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:24 msgid "Refreshes the specified patch, or the topmost patch by default" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:25 -#, fuzzy msgid "Remove one or more files from the topmost or named patch" -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:26 msgid "Rename the topmost or named patch" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:27 -#, fuzzy msgid "Print the names of all patches in the series file" -msgstr "Prints the license of all gems in the bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:28 msgid " Initializes a source tree from an rpm spec file or a quilt series file" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:29 -#, fuzzy msgid " Take a snapshot of the current working state" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:30 msgid "" @@ -51832,24 +48319,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:1 -#, fuzzy msgid "Activate debug mode" -msgstr "Sets debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:2 -#, fuzzy msgid "Activate clean mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:3 -#, fuzzy msgid "Change configuration directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:4 -#, fuzzy msgid "Create copies of the default configuration" -msgstr "Write out the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:5 msgid "Pick file with ranger" @@ -51860,9 +48343,8 @@ msgid "Pick multiple files with ranger" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:7 -#, fuzzy msgid "Pick directory" -msgstr "Check directories" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:8 msgid "Open ranger with given file selected" @@ -51881,24 +48363,20 @@ msgid "Print statistics of CPU usage on exit" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:12 -#, fuzzy msgid "Execute command after configuration file read" -msgstr "Clear list of configuration files to read" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:1 -#, fuzzy msgid "List all rbenv commands" -msgstr "list all “gem” commands" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:2 -#, fuzzy msgid "Set or show the global Ruby version" -msgstr "Sort by version" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:3 -#, fuzzy msgid "Install a ruby version" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:4 msgid "Set or show the local directory-specific Ruby version" @@ -51913,82 +48391,56 @@ msgid "Rehash rbenv shims (run this after installing binaries)" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:7 -#, fuzzy msgid "rbenv root folder" -msgstr "Open folder" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:8 msgid "Set or show the shell-specific Ruby version" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:9 -#, fuzzy msgid "Show the current Ruby version" -msgstr "Sort by version" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:10 msgid "List all Ruby versions known by rbenv" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:11 -#, fuzzy msgid "List all Ruby versions with the given command" -msgstr "Run fish with this command" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:12 msgid "Show the full path for the given Ruby command" msgstr "" -#: /tmp/fish/implicit/share/completions/rc.d.fish:1 -#, fuzzy -msgid "Filter started daemons" -msgstr "Print arch daemons" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:2 -msgid "Filter stopped daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:3 -msgid "Filter auto started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:4 -#, fuzzy -msgid "Filter manually started daemons" -msgstr "Show manually installed packages" - #: /tmp/fish/implicit/share/completions/rc-service.fish:1 msgid "Tests if the service exists or not" msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:2 -#, fuzzy msgid "List all available services" -msgstr "List all available patches" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:3 -#, fuzzy msgid "Display the help output" -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:5 -#, fuzzy msgid "Display software version" -msgstr "display the package version" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:6 -#, fuzzy msgid "Run verbosely" -msgstr "Do not be verbose" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:7 msgid "Run quietly (Does not affect errors)" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:2 -#, fuzzy msgid "Set prompt command" -msgstr "Select by command" +msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:3 #: /tmp/fish/implicit/share/completions/set.fish:4 @@ -52033,18 +48485,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:11 -#, fuzzy msgid "Read the specified number of characters" -msgstr "Compare only specified number of characters" +msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:12 msgid "Store the results as an array" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:13 -#, fuzzy msgid "Set right-hand prompt command" -msgstr "Set or get the commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/readlink.fish:1 msgid "Canonicalize, follow symlinks, last can be missing" @@ -52063,18 +48513,16 @@ msgid "Do not output the trailing newline" msgstr "" #: /tmp/fish/implicit/share/completions/readlink.fish:6 -#, fuzzy msgid "Report error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:1 msgid "all components of the path must exist" msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:2 -#, fuzzy msgid "no components of the path need exist" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:3 msgid "resolve '..' components before symlinks" @@ -52085,9 +48533,8 @@ msgid "resolve symlinks as encountered (default)" msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:5 -#, fuzzy msgid "suppress most error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:6 msgid "print the resolved path relative to FILE" @@ -52098,9 +48545,8 @@ msgid "print absolute paths unless paths below FILE" msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:8 -#, fuzzy msgid "don't expand symlinks" -msgstr "Don't follow symlinks" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:9 msgid "separate output with NUL rather than newline" @@ -52143,23 +48589,20 @@ msgid "Remove each component of path" msgstr "Remove each component of path" #: /tmp/fish/implicit/share/completions/rmmod.fish:1 -#, fuzzy msgid "Prints the help text." -msgstr "Prints formatted text" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:2 msgid "Send errors to syslog instead of standard error." msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:3 -#, fuzzy msgid "Print messages about what the program is doing." -msgstr "Print messages about what the program is doing" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:4 -#, fuzzy msgid "Show version of program and exit" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:5 msgid "" @@ -52168,38 +48611,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:2 -#, fuzzy msgid "Do not execute logon and logoff macros" -msgstr "Do not execute commands" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:3 -#, fuzzy msgid "Exit after processing commandline macro files" -msgstr "Run command after processing of initialization files" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:4 -#, fuzzy msgid "Do not show splashscreen" -msgstr "Do not show flags" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:5 -#, fuzzy msgid "Exit on exception" -msgstr "Exit on second EOF" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:7 -#, fuzzy msgid "Print ./configure options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:8 msgid "Run with memory usage monitoring" msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:5 -#, fuzzy msgid "List of rpm configuration files" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:6 msgid "Pipe output through specified command" @@ -52210,9 +48647,8 @@ msgid "Specify directory for rpm database" msgstr "Specify directory for rpm database" #: /tmp/fish/implicit/share/completions/rpm.fish:8 -#, fuzzy msgid "Specify root directory for rpm operations" -msgstr "Specify directory for rpm database" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:9 msgid "Add suggested packages to the transaction set when needed" @@ -52606,9 +49042,8 @@ msgid "Erase package" msgstr "Erase package" #: /tmp/fish/implicit/share/completions/rsync.fish:2 -#, fuzzy msgid "Suppress non-error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:3 msgid "Skip based on checksum, not mod-time & size" @@ -52623,9 +49058,8 @@ msgid "Turn off an implied OPTION (e.g. --no-D)" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:6 -#, fuzzy msgid "Recurse into directories" -msgstr "Replace include directories" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:7 msgid "Use relative path names" @@ -52652,24 +49086,20 @@ msgid "Skip files that are newer on the receiver" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:13 -#, fuzzy msgid "Update destination files in-place" -msgstr "Edit files in-place" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:14 -#, fuzzy msgid "Append data onto shorter files" -msgstr "Append new files" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:15 -#, fuzzy msgid "Transfer directories without recursing" -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:16 -#, fuzzy msgid "Copy symlinks as symlinks" -msgstr "Store symbolic links as links" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:17 msgid "Transform symlink into referent file/dir" @@ -52692,14 +49122,12 @@ msgid "Treat symlinked dir on receiver as dir" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:22 -#, fuzzy msgid "Preserve hard links" -msgstr "Dereference all symlinks" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:23 -#, fuzzy msgid "Preserve permissions" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:24 msgid "Preserve executability" @@ -52714,50 +49142,44 @@ msgid "Preserve extended attrs (implies -p) [n.s.]" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:27 -#, fuzzy msgid "Change destination permissions" -msgstr "Specify destination email" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:28 msgid "Preserve owner (super-user only)" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:29 -#, fuzzy msgid "Preserve group" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:30 msgid "Preserve device files (super-user only)" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:31 -#, fuzzy msgid "Preserve special files" -msgstr "Preserve file ownership" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:32 msgid "Same as --devices --specials" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:33 -#, fuzzy msgid "Preserve times" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:34 -#, fuzzy msgid "Omit directories when preserving times" -msgstr "List directories, not their content" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:35 msgid "Receiver attempts super-user activities" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:36 -#, fuzzy msgid "Handle sparse files efficiently" -msgstr "Handle sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:37 msgid "Show what would have been transferred" @@ -52824,14 +49246,12 @@ msgid "Delete even if there are I/O errors" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:53 -#, fuzzy msgid "Force deletion of dirs even if not empty" -msgstr "Forces clean even if --path is not set" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:54 -#, fuzzy msgid "Don’t delete more than NUM files" -msgstr "Do not del source files" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:55 msgid "Don’t transfer any file larger than SIZE" @@ -52854,9 +49274,8 @@ msgid "Put all updated files into place at end" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:60 -#, fuzzy msgid "Prune empty directory chains from file-list" -msgstr "Prune empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:61 msgid "Don’t map uid/gid values by user/group name" @@ -52871,18 +49290,16 @@ msgid "Don’t skip files that match size and time" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:64 -#, fuzzy msgid "Skip files that match in size" -msgstr "Skip files matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:65 msgid "Compare mod-times with reduced accuracy" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:66 -#, fuzzy msgid "Create temporary files in directory DIR" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:67 msgid "Find similar file for basis if no dest file" @@ -52907,9 +49324,8 @@ msgid "Compress file data during the transfer" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:72 -#, fuzzy msgid "Explicitly set compression level" -msgstr "Compression level" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:73 msgid "Auto-ignore files in the same way CVS does" @@ -52926,24 +49342,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:76 -#, fuzzy msgid "Exclude files matching PATTERN" -msgstr "Skip files matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:78 -#, fuzzy msgid "Don’t exclude files matching PATTERN" -msgstr "Search only files matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:79 -#, fuzzy msgid "Read include patterns from FILE" -msgstr "Read a batched update from FILE" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:80 -#, fuzzy msgid "Read list of source-file names from FILE" -msgstr "Read filenames from pipe" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:81 msgid "All *from/filter files are delimited by 0s" @@ -52954,19 +49366,16 @@ msgid "Bind address for outgoing socket to daemon" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:83 -#, fuzzy msgid "Specify double-colon alternate port number" -msgstr "Specify date range for query" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:84 -#, fuzzy msgid "Specify custom TCP options" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:85 -#, fuzzy msgid "Use blocking I/O for the remote shell" -msgstr "Specify the remote shell to use" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:86 msgid "Give some file-transfer stats" @@ -52981,9 +49390,8 @@ msgid "Output numbers in a human-readable format" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:89 -#, fuzzy msgid "Show progress during transfer" -msgstr "Show the running containers" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:90 msgid "Same as --partial --progress" @@ -53002,9 +49410,8 @@ msgid "Read password from FILE" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:94 -#, fuzzy msgid "List the files instead of copying them" -msgstr "Link files instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:95 msgid "Limit I/O bandwidth; KBytes per second" @@ -53039,28 +49446,24 @@ msgid "Prefer IPv6" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:105 -#, fuzzy msgid "Remote path" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:1 -#, fuzzy msgid "Definition" -msgstr "function" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:2 -#, fuzzy msgid "Do not remove source tree after installation" -msgstr "Don't run unit tests prior to installation" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:3 msgid "Verbose mode: print compilation status to stdout" msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:4 -#, fuzzy msgid "List all built-in definitions" -msgstr "Disable some built-in functions" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby.fish:4 msgid "Kanji code-set" @@ -53079,14 +49482,12 @@ msgid "Compiler debug mode" msgstr "Compiler debug mode" #: /tmp/fish/implicit/share/completions/s3cmd.fish:1 -#, fuzzy msgid "Make bucket" -msgstr "Mismatched brackets" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:2 -#, fuzzy msgid "Remove bucket" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:3 msgid "List objects or buckets" @@ -53097,28 +49498,24 @@ msgid "List all object in all buckets" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:5 -#, fuzzy msgid "Put file into bucket" -msgstr "Print file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:6 -#, fuzzy msgid "Get file from bucket" -msgstr "Extract file from file" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:7 -#, fuzzy msgid "Delete file from bucket" -msgstr "Delete from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:8 msgid "Delete file from bucket (alias for del)" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:9 -#, fuzzy msgid "Restore file from Glacier storage" -msgstr "Restore files from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:10 msgid "Synchronize a directory tree to S3" @@ -53129,9 +49526,8 @@ msgid "Disk usage by buckets" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:12 -#, fuzzy msgid "Get various information about Buckets or Files" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:13 msgid "Copy object" @@ -53182,14 +49578,12 @@ msgid "List parts of a multipart upload" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:25 -#, fuzzy msgid "Enable/disable bucket access logging" -msgstr "Enables obsolets processing logic" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:26 -#, fuzzy msgid "Sign arbitrary string using the secret key" -msgstr "Sign a public key with your secret key" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:27 msgid "Sign an S3 URL to provide limited public access with expiry" @@ -53204,9 +49598,8 @@ msgid "Create Website from bucket" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:30 -#, fuzzy msgid "Delete Website" -msgstr "Delete selection" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:31 msgid "Info about Website" @@ -53221,9 +49614,8 @@ msgid "Upload a lifecycle policy for the bucket" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:34 -#, fuzzy msgid "Remove a lifecycle policy for the bucket" -msgstr "Removes a lock file for a client" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:35 msgid "List CloudFront distribution points" @@ -53234,9 +49626,8 @@ msgid "Display CloudFront distribution point parameters" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:37 -#, fuzzy msgid "Create CloudFront distribution point" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:38 msgid "Delete CloudFront distribution point" @@ -53251,19 +49642,16 @@ msgid "Display CloudFront invalidation request(s) status" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:42 -#, fuzzy msgid "Run interactive (re)configuration tool" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:44 -#, fuzzy msgid "Dump current configuration" -msgstr "save the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:45 -#, fuzzy msgid "AWS Access Key" -msgstr "Show access time" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:46 msgid "AWS Secret Key" @@ -53278,39 +49666,32 @@ msgid "Dry run, test only" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:49 -#, fuzzy msgid "Use HTTPS (default)" -msgstr "(default)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:50 -#, fuzzy msgid "Don't use HTTPS" -msgstr "Don't recurse" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:51 -#, fuzzy msgid "Encrypt files before uploading" -msgstr "Re-package the files before erasing" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:52 -#, fuzzy msgid "Don't encrypt files" -msgstr "Do not check files" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:53 -#, fuzzy msgid "Force overwrite" -msgstr "Don't overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:54 -#, fuzzy msgid "Resume partially downloaded file" -msgstr "Continue getting a partially-downloaded file" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:55 -#, fuzzy msgid "Resume partially uploaded files" -msgstr "Continue getting a partially-downloaded file" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:56 msgid "Resume multipart upload by UploadId" @@ -53321,9 +49702,8 @@ msgid "Skip existing files at destination" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:58 -#, fuzzy msgid "Upload/download/delete recursively" -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:59 msgid "Check MD5 sums (default)" @@ -53350,9 +49730,8 @@ msgid "Revoke permission to named user" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:65 -#, fuzzy msgid "Days to keep restored file" -msgstr "Do not save/restore filename" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:66 msgid "S3 glacier restore priority" @@ -53363,18 +49742,16 @@ msgid "Delete objects not found locally" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:68 -#, fuzzy msgid "Don't delete dest objects" -msgstr "Don't execute post scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:69 msgid "Delete after upload" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:70 -#, fuzzy msgid "Delete no more than NUM files" -msgstr "Delete entries in zipfile" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:71 msgid "Max objects per response" @@ -53385,24 +49762,20 @@ msgid "Additional parallel upload" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:73 -#, fuzzy msgid "Delete remotely after fetch" -msgstr "Delete from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:74 -#, fuzzy msgid "Preserve FS attributes" -msgstr "Don't preserve the specified attributes" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:75 -#, fuzzy msgid "Don't store FS attributes" -msgstr "Don't verify md5 attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:76 -#, fuzzy msgid "Exclude GLOB matches" -msgstr "Exclude file systems" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:77 msgid "--exclude GLOBs from FILE" @@ -53421,9 +49794,8 @@ msgid "Include GLOB matches even if previously excluded" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:81 -#, fuzzy msgid "Read --include GLOBs from FILE" -msgstr "Read a batched update from FILE" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:82 msgid "Include REGEXP matches even if preiously excluded" @@ -53434,9 +49806,8 @@ msgid "Read --rinclude REGEXPs from FILE" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:84 -#, fuzzy msgid "Read source-file names from FILE" -msgstr "Read filenames from pipe" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:85 msgid "Create bucket in region" @@ -53467,9 +49838,8 @@ msgid "Prefix for access logs" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:92 -#, fuzzy msgid "Disable access logging" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:93 msgid "Default MIME-type for objects" @@ -53484,23 +49854,20 @@ msgid "Don't guess MIME-type, use default" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:96 -#, fuzzy msgid "Don't use mime magic when guessing" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:97 -#, fuzzy msgid "Force MIME-type" -msgstr "Force yes" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:98 msgid "Add HTTP header" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:99 -#, fuzzy msgid "Remove HTTP header" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:100 msgid "Use server-side encryption for upload" @@ -53511,18 +49878,16 @@ msgid "Encrypt with specified AWS KMS-managed key" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:102 -#, fuzzy msgid "Use specified encoding" -msgstr "Use specified queue" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:103 msgid "Add encoding to CSV extension list" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:104 -#, fuzzy msgid "Use S3 name as-is" -msgstr "Rename a disc" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:105 msgid "No multipart on files larger than --multipart-chunk-size-mb" @@ -53537,19 +49902,16 @@ msgid "Include MD5 sums in bucket listings" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:108 -#, fuzzy msgid "Print sizes in human-readable form" -msgstr "Give human-readable output" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:109 -#, fuzzy msgid "Name of index-document" -msgstr "Name of client" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:110 -#, fuzzy msgid "Name of error-document" -msgstr "Name of client" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:111 msgid "When expiration rule takes effect" @@ -53572,19 +49934,16 @@ msgid "Don't show progress meter (default if non-TTY)" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:116 -#, fuzzy msgid "Show file transfer stats" -msgstr "Show all containers" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:117 -#, fuzzy msgid "Enable CloudFront distribution" -msgstr "Debian distribution" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:118 -#, fuzzy msgid "Disable CloudFront distribution" -msgstr "Debian distribution" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:119 msgid "Invalidate CloudFront file" @@ -53619,24 +49978,20 @@ msgid "Cache FILE containing MD5 values" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:131 -#, fuzzy msgid "Silence stdout output" -msgstr "Video output" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:132 -#, fuzzy msgid "Path to SSL CA certificate FILE" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:133 -#, fuzzy msgid "Validate SSL certificate" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:134 -#, fuzzy msgid "Don't validate SSL certificate" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:135 msgid "Validate SSL hostname" @@ -53651,23 +50006,20 @@ msgid "Use AWS Signature version 2" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:138 -#, fuzzy msgid "Limit upload or download speed (bytes/sec)" -msgstr "Limit the download speed" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:139 msgid "Set REQUESTER PAYS for operations" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:140 -#, fuzzy msgid "Produce long listing" -msgstr "Process list pointer" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:141 -#, fuzzy msgid "Stop on error in transfer" -msgstr "Stop showing errors if too many" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:142 msgid "Provide Content-Disposition for signed URLs" @@ -53696,23 +50048,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:4 -#, fuzzy msgid "Convert all the files in a directory. Requires --from and --to." -msgstr "Remove files and directories from version control." +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:5 #: /tmp/fish/implicit/share/completions/sass.fish:5 #: /tmp/fish/implicit/share/completions/scss.fish:5 -#, fuzzy msgid "Show help message." -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:6 #: /tmp/fish/implicit/share/completions/sass.fish:6 #: /tmp/fish/implicit/share/completions/scss.fish:6 -#, fuzzy msgid "Print the Sass version." -msgstr "Print node's version" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:7 msgid "Convert underscores to dashes." @@ -53739,9 +50088,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:11 #: /tmp/fish/implicit/share/completions/sass.fish:14 #: /tmp/fish/implicit/share/completions/scss.fish:15 -#, fuzzy msgid "Specify the default encoding for input files." -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:12 #: /tmp/fish/implicit/share/completions/sass.fish:15 @@ -53756,22 +50104,19 @@ msgid "The path to save parsed Sass files. Defaults to .sass-cache." msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:14 -#, fuzzy msgid "Don't cache to sassc files." -msgstr "Do not check files" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:15 #: /tmp/fish/implicit/share/completions/sass.fish:23 #: /tmp/fish/implicit/share/completions/scss.fish:24 -#, fuzzy msgid "Show a full Ruby stack trace on error." -msgstr "Show stack backtrace on errors" +msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:1 #: /tmp/fish/implicit/share/completions/scss.fish:1 -#, fuzzy msgid "Specify a Sass import path." -msgstr "Specify a password" +msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:2 #: /tmp/fish/implicit/share/completions/scss.fish:2 @@ -53846,9 +50191,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:18 #: /tmp/fish/implicit/share/completions/scss.fish:19 -#, fuzzy msgid "Run an interactive SassScript shell." -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:19 #: /tmp/fish/implicit/share/completions/scss.fish:20 @@ -53864,9 +50208,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:22 #: /tmp/fish/implicit/share/completions/scss.fish:23 -#, fuzzy msgid "Don't cache parsed Sass files." -msgstr "Delete cached package files" +msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:24 #: /tmp/fish/implicit/share/completions/scss.fish:25 @@ -53874,83 +50217,72 @@ msgid "Silence warnings and status messages during compilation." msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:1 -#, fuzzy msgid "Create a new sbt project from the given template" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:2 msgid "Connect to a server with an interactive sbt prompt" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:3 -#, fuzzy msgid "Print options help message" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:4 -#, fuzzy msgid "Print more details" -msgstr "Print mounted devices" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:5 msgid "Set log level to debug" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:6 -#, fuzzy msgid "Disable ANSI color codes" -msgstr "Disable operator keywords" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:7 msgid "Launch even if there's no sbt project" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:8 -#, fuzzy msgid "Use all local caches" -msgstr "Clean local caches" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:9 msgid "Use global caches, but not global ~/.sbt directory" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:10 -#, fuzzy msgid "Disable interactive mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:11 msgid "Specify path to global settings/plugins" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:12 -#, fuzzy msgid "Specify path to shared boot directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:13 -#, fuzzy msgid "Specify path to local Ivy repository" -msgstr "Remove an entry from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:14 -#, fuzzy msgid "Set memory options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:15 msgid "Turn on JVM debugging, open at the given port" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:16 -#, fuzzy msgid "Use specified version of sbt" -msgstr "Use specified compression algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:17 -#, fuzzy msgid "Use specified jar as the sbt launcher" -msgstr "Use specified key as the key to sign with" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:18 msgid "Use an RC version of sbt" @@ -54022,19 +50354,16 @@ msgid "Gamma-correction table [0..255, …]" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:12 -#, fuzzy msgid "Scan mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:13 -#, fuzzy msgid "Device name to use" -msgstr "Device section" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:14 -#, fuzzy msgid "List devices" -msgstr "List needed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:15 msgid "Print formatted device list [%d, %v, %m, %t, %i, %n]" @@ -54049,9 +50378,8 @@ msgid "The filename of the image to be loaded" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:18 -#, fuzzy msgid "Output image format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:19 msgid "Include this ICC profile into TIFF file" @@ -54072,14 +50400,12 @@ msgid "How many pages to scan in batch mode" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:23 -#, fuzzy msgid "Increase page number in filename by #" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:24 -#, fuzzy msgid "Increment page number by two" -msgstr "Increment the misc debug level by one" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:25 msgid "Ask for pressing a key before scanning a page" @@ -54090,33 +50416,28 @@ msgid "Only accept authorization requests using md5" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:27 -#, fuzzy msgid "Print progress messages" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:28 -#, fuzzy msgid "Only set options, don't actually scan" -msgstr "Only print out changes, do not actually clean gems" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:29 msgid "Test backend thoroughly" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:30 -#, fuzzy msgid "List all available backend options" -msgstr "List all available packages" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:31 -#, fuzzy msgid "Display this help message and exit" -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:32 -#, fuzzy msgid "Give even more status messages" -msgstr "Receive new messages" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:33 msgid "Change input buffer size (in kB, default 32)" @@ -54173,9 +50494,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:9 -#, fuzzy msgid "Debug the build process" -msgstr "Child process" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:10 msgid "" @@ -54185,9 +50505,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:11 -#, fuzzy msgid "Use file as the initial SConscript file" -msgstr "Use file as terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:12 msgid "" @@ -54201,37 +50520,32 @@ msgid "Print the standard help message about command-line options and exit" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:14 -#, fuzzy msgid "Ignore all errors from commands executed to rebuild files" -msgstr "Ignore errors from non-empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:15 msgid "Specifies a directory to search for imported Python modules" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:16 -#, fuzzy msgid "Cache implicit dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:17 msgid "Force SCons to ignore the cached implicit dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:18 -#, fuzzy msgid "Force SCons to ignore changes in the implicit dependencies" -msgstr "Install source packages and their build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:19 -#, fuzzy msgid "Specifies the number of jobs (commands) to run simultaneously" -msgstr "Specify the number of jobs to run in parallel" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:20 -#, fuzzy msgid "Continue as much as possible after an error" -msgstr "Continue after an error" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:21 msgid "" @@ -54245,9 +50559,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:23 -#, fuzzy msgid "No execute" -msgstr "Executable" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:24 msgid "" @@ -54256,9 +50569,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:25 -#, fuzzy msgid "Do not run any commands, or print anything" -msgstr "Do not actually change anything" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:26 msgid "" @@ -54267,14 +50579,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:27 -#, fuzzy msgid "Build dependencies in a random order" -msgstr "List dependencies of module" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:28 -#, fuzzy msgid "Silent" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:29 msgid "" @@ -54295,16 +50605,14 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:33 -#, fuzzy msgid "" "Print a message containing the working directory before and after other " "processing" -msgstr "Print the current working directory, shortened to fit the prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:34 -#, fuzzy msgid "Enable or disable warnings" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:35 msgid "Turn off -w, even if it was turned on implicitly" @@ -54317,14 +50625,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scp.fish:1 -#, fuzzy msgid "Local Path" -msgstr "Logical and" +msgstr "" #: /tmp/fish/implicit/share/completions/scp.fish:2 -#, fuzzy msgid "Remote Path" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/scp.fish:4 msgid "Bandwidth limit" @@ -54341,51 +50647,44 @@ msgid "Recursively copy" msgstr "Recursively copy" #: /tmp/fish/implicit/share/completions/scp.fish:9 -#, fuzzy msgid "Encryption program" -msgstr "Encyption program" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:1 msgid "Detect which folder screen uses" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:2 -#, fuzzy msgid "Get the socket list on mac" -msgstr "Get help on this command" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:3 -#, fuzzy msgid "Get the socket list" -msgstr "Set the connect timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:4 -#, fuzzy msgid "Print a list of detached screen sessions" -msgstr "Print a list of running screen sessions" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:5 -#, fuzzy msgid "Print a list of attached screen sessions" -msgstr "Print a list of running screen sessions" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:6 msgid "Print a list of running screen sessions" msgstr "Print a list of running screen sessions" #: /tmp/fish/implicit/share/completions/screen.fish:7 -#, fuzzy msgid "Include all capabilitys" -msgstr "Include path" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:8 msgid "Adapt window size" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:9 -#, fuzzy msgid "Specify init file" -msgstr "Specify config file" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:10 #: /tmp/fish/implicit/share/completions/screen.fish:11 @@ -54410,9 +50709,8 @@ msgid "Escape character" msgstr "Escape character" #: /tmp/fish/implicit/share/completions/screen.fish:16 -#, fuzzy msgid "Flow control on" -msgstr "Follow mount points" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:17 msgid "Flow control off" @@ -54431,72 +50729,61 @@ msgid "Interrupt display on C-c" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:21 -#, fuzzy msgid "Login on" -msgstr "Logical or" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:22 -#, fuzzy msgid "Login off" -msgstr "Logical or" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:23 #: /tmp/fish/implicit/share/completions/screen.fish:24 -#, fuzzy msgid "List sessions" -msgstr "available sessions" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:25 msgid "Log on" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:27 -#, fuzzy msgid "Optimal output" -msgstr "Wide output" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:28 -#, fuzzy msgid "Preselect window" -msgstr "Select root window" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:30 -#, fuzzy msgid "Set shell" -msgstr "Set system" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:31 -#, fuzzy msgid "Session name" -msgstr "Version number" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:32 -#, fuzzy msgid "Session title" -msgstr "Save session cookies" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:33 msgid "UTF-8 mode" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:35 -#, fuzzy msgid "Wipe dead sessions" -msgstr "available sessions" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:36 msgid "Multi attach" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:37 -#, fuzzy msgid "Send command" -msgstr "End of command" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:2 -#, fuzzy msgid "Display version information and exit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:3 msgid "When selecting a window, grab wm border too" @@ -54507,9 +50794,8 @@ msgid "Display a countdown when used with delay" msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:5 -#, fuzzy msgid "Wait NUMBER of seconds before taking a shot" -msgstr "Number of seconds before assuming http timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:6 msgid "Execute APPLICATION on the saved image" @@ -54520,14 +50806,12 @@ msgid "Image quality [1-100]" msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:8 -#, fuzzy msgid "Grab shot from multiple heads" -msgstr "Perform a set of commands multiple times" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:9 -#, fuzzy msgid "Select a window or rectangle with the mouse" -msgstr "Select a window by clicking on its frame" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:10 msgid "Generate thumbnail PERCENT of original" @@ -54554,9 +50838,8 @@ msgid "How to link generated output to the source files." msgstr "" #: /tmp/fish/implicit/share/completions/service.fish:1 -#, fuzzy msgid "Service name" -msgstr "Set server name" +msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:1 msgid "Color" @@ -54581,18 +50864,16 @@ msgid "Dim text" msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:6 -#, fuzzy msgid "Reverse color text" -msgstr "Reverse sort order" +msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:7 msgid "Underline text" msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:9 -#, fuzzy msgid "Print a list of all accepted color names" -msgstr "Print a list of local users" +msgstr "" #: /tmp/fish/implicit/share/completions/setfacl.fish:1 msgid "Remove all extended ACL entries" @@ -54623,9 +50904,8 @@ msgid "Test if We are specifying a locale value for the prompt" msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:3 -#, fuzzy msgid "Erase variable" -msgstr "set/list variables" +msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:8 msgid "Share variable persistently across sessions" @@ -54640,14 +50920,12 @@ msgid "List the names of the variables, but not their value" msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:14 -#, fuzzy msgid "Locale variable" -msgstr "Redefine variable" +msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:15 -#, fuzzy msgid "Do not truncate long lines" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/setsid.fish:2 msgid "Set controlling terminal to current one" @@ -54658,33 +50936,28 @@ msgid "Wait until program ends and return its exit value" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:1 -#, fuzzy msgid "Print this message" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:2 msgid "Specifies compatibility map component name" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:3 -#, fuzzy msgid "Specifies configuration file to use" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:4 -#, fuzzy msgid "Specifies the device ID to use" -msgstr "Specify the remote shell to use" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:5 -#, fuzzy msgid "Specifies display to use" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:6 -#, fuzzy msgid "Specifies geometry component name" -msgstr "Ignore specified number of directory components" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:7 msgid "Add to list of directories to be used" @@ -54695,9 +50968,8 @@ msgid "Specifies keycodes component name" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:9 -#, fuzzy msgid "Specifies name of keymap to load" -msgstr "Specify version of gem to rdoc" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:10 msgid "Specifies layout used to choose component names" @@ -54716,14 +50988,12 @@ msgid "Print a complete xkb_keymap description and exit" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:14 -#, fuzzy msgid "Print the current layout settings and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:15 -#, fuzzy msgid "Name of rules file to use" -msgstr "Name of client" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:16 msgid "Specifies symbols component name" @@ -54734,9 +51004,8 @@ msgid "Synchronize request w/X server" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:18 -#, fuzzy msgid "Specifies types component name" -msgstr "Specify the proxy username" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:19 msgid "Sets verbosity (1..10). Higher values yield more messages" @@ -54751,55 +51020,45 @@ msgid "Verify a signed checksum list" msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:3 -#, fuzzy msgid "Sign specified message" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:4 -#, fuzzy msgid "Verify a signed message and sig" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:1 -#, fuzzy msgid "Test if snap has yet to be given the subcommand" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:3 -#, fuzzy msgid "Test if snap command should have packages as potential completion" -msgstr "Test if apt command should have packages as potential completion" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:4 -#, fuzzy msgid "Test if snap command should have files as potential completion" -msgstr "Test if apt command should have packages as potential completion" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:5 #: /tmp/fish/implicit/share/completions/snap.fish:6 -#, fuzzy msgid "List disabled snaps" -msgstr "List available updates" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:7 -#, fuzzy msgid "List installed snaps" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:8 -#, fuzzy msgid "List of interfaces" -msgstr "Stop interface" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:9 -#, fuzzy msgid "List change IDs" -msgstr "No changes" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:10 -#, fuzzy msgid "List aliases" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:11 msgid "Check that no assertion type is used yet" @@ -54810,14 +51069,12 @@ msgid "Check if certain assertion type is used" msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:13 -#, fuzzy msgid "List assertion filters" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:14 -#, fuzzy msgid "Show this help message" -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:16 msgid "Snap" @@ -54872,9 +51129,8 @@ msgid "Define key" msgstr "Define key" #: /tmp/fish/implicit/share/completions/sort.fish:14 -#, fuzzy msgid "Merge sorted files" -msgstr "Erase obsolete files" +msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:16 msgid "Stabilize sort" @@ -54937,9 +51193,8 @@ msgid "MAC algorithm" msgstr "MAC algorithm" #: /tmp/fish/implicit/share/completions/ssh.fish:12 -#, fuzzy msgid "Prevent reading from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:13 msgid "Do not execute remote command" @@ -54950,9 +51205,8 @@ msgid "Subsystem" msgstr "Subsystem" #: /tmp/fish/implicit/share/completions/ssh.fish:17 -#, fuzzy msgid "Force pseudo-tty allocation" -msgstr "Disable pseudo-tty allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:18 msgid "Disable pseudo-tty allocation" @@ -54995,14 +51249,12 @@ msgid "Disable multi-threaded operation" msgstr "Disable multi-threaded operation" #: /tmp/fish/implicit/share/completions/stack.fish:1 -#, fuzzy msgid "Show this help text" -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:2 -#, fuzzy msgid "Show only version number" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:3 msgid "Run 'stack --docker-help' for details" @@ -55061,9 +51313,8 @@ msgid "Specialized GHC variant, e.g. integersimple (implies --no-system-ghc)" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:15 -#, fuzzy msgid "Number of concurrent jobs to run" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:16 msgid "Extra directories to check for C header files" @@ -55106,9 +51357,8 @@ msgid "Override resolver in project file" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:26 -#, fuzzy msgid "Use the specified compiler" -msgstr "Use specific conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:27 msgid "" @@ -55133,19 +51383,16 @@ msgid "Build the package(s) in this directory/configuration" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:31 -#, fuzzy msgid "Shortcut for 'build --copy-bins'" -msgstr "Shortcut for '--options /dev/null'" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:32 -#, fuzzy msgid "Shortcut for 'build --test'" -msgstr "Shortcut for '--options /dev/null'" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:33 -#, fuzzy msgid "Shortcut for 'build --bench'" -msgstr "Shortcut for '--options /dev/null'" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:34 msgid "Shortcut for 'build --haddock'" @@ -55174,42 +51421,36 @@ msgid "Get the appropriate GHC for your project" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:40 -#, fuzzy msgid "Print out handy path information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:41 -#, fuzzy msgid "Unpack one or more packages locally" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:42 -#, fuzzy msgid "Update the package index" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:43 msgid "Upgrade to the latest stack (experimental)" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:44 -#, fuzzy msgid "Upload a package to Hackage" -msgstr "Add a package lock" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:45 -#, fuzzy msgid "Create source distribution tarballs" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:46 msgid "Visualize your project's dependency graph using Graphviz dot" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:47 -#, fuzzy msgid "Execute a command" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:48 msgid "Run ghc" @@ -55237,23 +51478,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:54 -#, fuzzy msgid "Clean the local packages" -msgstr "Clean local caches" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:55 -#, fuzzy msgid "List the dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:56 msgid "Query general build information (experimental)" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:57 -#, fuzzy msgid "IDE-specific commands" -msgstr "Specify sendmail command" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:58 msgid "Subcommands specific to Docker use" @@ -55292,9 +51530,8 @@ msgid "Test if a code block is currently evaluated" msgstr "Test if a code block is currently evaluated" #: /tmp/fish/implicit/share/completions/status.fish:6 -#, fuzzy msgid "Test if a breakpoint is currently in effect" -msgstr "Test if a code block is currently evaluated" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:7 msgid "Test if new jobs are never put under job control" @@ -55309,14 +51546,12 @@ msgid "Test if all new jobs are put under job control" msgstr "Test if all new jobs are put under job control" #: /tmp/fish/implicit/share/completions/status.fish:10 -#, fuzzy msgid "Print the filename of the currently running script" -msgstr "Print currently running jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:11 -#, fuzzy msgid "Print the line number of the currently running script" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:12 msgid "" @@ -55325,43 +51560,36 @@ msgstr "" "Print a list of all function calls leading up to running the current command" #: /tmp/fish/implicit/share/completions/status.fish:13 -#, fuzzy msgid "Set which jobs are under job control" -msgstr "Set which jobs are out under job control" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:14 -#, fuzzy msgid "Set all jobs under job control" -msgstr "Set which jobs are out under job control" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:15 -#, fuzzy msgid "Set only interactive jobs under job control" -msgstr "Test if only interactive new jobs are put under job control" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:16 -#, fuzzy msgid "Set no jobs under job control" -msgstr "Set which jobs are out under job control" +msgstr "" #: /tmp/fish/implicit/share/completions/stream.fish:13 -#, fuzzy msgid "Components one or more pixel components" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/stream.fish:23 msgid "Pixel storage type [type]" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:1 -#, fuzzy msgid "Do not print output" -msgstr "Do not run update" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:2 -#, fuzzy msgid "Specify maximum number of splits" -msgstr "Maximum number of log entries" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:3 msgid "Split right-to-left" @@ -55372,28 +51600,24 @@ msgid "Trim only leading characters" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:5 -#, fuzzy msgid "Trim only trailing characters" -msgstr "Escape all non-printing characters" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:6 msgid "Specify the chars to trim (default: whitespace)" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:7 -#, fuzzy msgid "Escape with \\ instead of quoting" -msgstr "Make symbolic links instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:8 -#, fuzzy msgid "Report index and length of the matches" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:9 -#, fuzzy msgid "Report only non-matching input" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:10 msgid "Report all matches per line/string" @@ -55412,42 +51636,36 @@ msgid "Repetition count" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:14 -#, fuzzy msgid "Maximum number of printed char" -msgstr "Maximum number of nested blocks reached." +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:15 -#, fuzzy msgid "Remove newline" -msgstr "No newline" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:1 -#, fuzzy msgid "Load the given project" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:2 -#, fuzzy msgid "Run the given command" -msgstr "Run fish with this command" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:3 msgid "Open a new window" msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:4 -#, fuzzy msgid "Add folders to the current window" -msgstr "Add specified file to the current list of keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:5 msgid "Wait for the files to be closed before returning" msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:6 -#, fuzzy msgid "Don't activate the application" -msgstr "Don't actually take the action" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:7 msgid "Keep the application activated after closing the file" @@ -55464,44 +51682,36 @@ msgid "Preserve environment" msgstr "Preserve environment" #: /tmp/fish/implicit/share/completions/sudo.fish:4 -#, fuzzy msgid "Set home" -msgstr "Set time" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:5 -#, fuzzy msgid "Remove the credential timestamp entirely" -msgstr "Remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:6 -#, fuzzy msgid "Preserve group vector" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:7 -#, fuzzy msgid "Read password from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:8 -#, fuzzy msgid "Run command in the background" -msgstr "Run job in background" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:9 -#, fuzzy msgid "Edit" -msgstr "Edit tag" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:10 -#, fuzzy msgid "Run command as group" -msgstr "Run commands from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:12 -#, fuzzy msgid "Run a login shell" -msgstr "Make login shell" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:13 msgid "Reset or ignore the credential timestamp" @@ -55514,23 +51724,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:15 -#, fuzzy msgid "Do not prompt for a password - if one is needed, fail" -msgstr "Do not prompt for an expiration time" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:16 -#, fuzzy msgid "Specify a custom password prompt" -msgstr "Specify a password" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:17 msgid "Run the given command in a shell" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:18 -#, fuzzy msgid "Run command as user" -msgstr "Run commands from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:19 msgid "Validate the credentials, extending timeout" @@ -55549,9 +51756,8 @@ msgid "Pass -f to the shell" msgstr "Pass -f to the shell" #: /tmp/fish/implicit/share/completions/svn.fish:1 -#, fuzzy msgid "Make a completion for a subcommand" -msgstr "Fallback implementation of the seq command" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:2 msgid "" @@ -55680,9 +51886,8 @@ msgid "Remove conflicts on working copy files or directories." msgstr "Remove conflicts on working copy files or directories." #: /tmp/fish/implicit/share/completions/svn.fish:31 -#, fuzzy msgid "Remove 'conflicted' state on working copy files or directories." -msgstr "Remove conflicted state on working copy files or directories." +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:32 msgid "Restore pristine working copy file (undo most local edits)." @@ -55709,14 +51914,12 @@ msgid "Upgrade the metadata storage format for a working copy." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:38 -#, fuzzy msgid "Specify a username ARG" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:39 -#, fuzzy msgid "Specify a password ARG" -msgstr "Specify a password" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:40 msgid "Do not cache authentication tokens" @@ -55733,9 +51936,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:43 -#, fuzzy msgid "Read user configuration files from directory ARG" -msgstr "Read user config files from named directory" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:44 msgid "" @@ -55857,23 +52059,20 @@ msgid "Total size of data to transfer (default: 100G)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:20 -#, fuzzy msgid "Type of memory operations" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:21 -#, fuzzy msgid "Number of files to create (default: 128)" -msgstr "Make checked-out files read-write (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:22 msgid "Block size to use in all I/O operations (default: 16K)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:23 -#, fuzzy msgid "Total size of files (default: 2G)" -msgstr "Install documentation files (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:24 msgid "Type of workload to produce" @@ -55936,11 +52135,8 @@ msgid "Number of point select queries in a single transaction (default: 10)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:38 -#, fuzzy msgid "Number of simple range queries in a single transaction (default: 1)" msgstr "" -"Number of completely trusted users to introduce a new key signer (defaults " -"to 1)" #: /tmp/fish/implicit/share/completions/sysbench.fish:39 msgid "Number of SUM range queries in a single transaction (default: 1)" @@ -56031,9 +52227,8 @@ msgid "MySQL database name (default: sbtest)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:60 -#, fuzzy msgid "Type of the test table to use" -msgstr "Specify the remote shell to use" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:61 msgid "Use SSL connections. (default: no)" @@ -56050,33 +52245,28 @@ msgid "Additional options passed to CREATE TABLE." msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:1 -#, fuzzy msgid "Start one or more units" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:2 -#, fuzzy msgid "Stop one or more units" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:3 -#, fuzzy msgid "Restart one or more units" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:4 msgid "Runtime status about one or more units" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:5 -#, fuzzy msgid "Enable one or more units" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:6 -#, fuzzy msgid "Disable one or more units" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:7 msgid "Start a unit and dependencies and disable all others" @@ -56087,49 +52277,40 @@ msgid "Set the default target to boot into" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:9 -#, fuzzy msgid "List of unit types" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:10 -#, fuzzy msgid "List of unit states" -msgstr "List config files" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:11 -#, fuzzy msgid "Show all units or properties" -msgstr "Show all options" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:12 -#, fuzzy msgid "Show also units of local containers" -msgstr "Show all containers" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:13 -#, fuzzy msgid "Show reverse dependencies between units" -msgstr "Include reverse dependencies in the output" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:14 -#, fuzzy msgid "Show units ordered before specified unit" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:15 -#, fuzzy msgid "Show units ordered after specified unit" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:16 -#, fuzzy msgid "Do not ellipsize anything" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:17 -#, fuzzy msgid "Show the type of the socket" -msgstr "Show help for the fish shell" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:18 msgid "How to deal with queued jobs" @@ -56140,9 +52321,8 @@ msgid "Ignore inhibitor locks on shutdown or sleep" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:20 -#, fuzzy msgid "Suppress output to STDOUT" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:21 msgid "Do not wait for the requested operation to finish" @@ -56167,14 +52347,12 @@ msgid "Do not send wall message before halt" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:27 -#, fuzzy msgid "Do not reload daemon configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:28 -#, fuzzy msgid "Disable asking for password" -msgstr "Disable operator keywords" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:29 msgid "Send signal to which process" @@ -56185,9 +52363,8 @@ msgid "Which signal to send" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:31 -#, fuzzy msgid "Overwrite conflicting existing symlinks" -msgstr "Overwrite existing binstubs if they exist" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:32 msgid "Use alternative root path" @@ -56198,18 +52375,16 @@ msgid "Make changes only temporarily" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:34 -#, fuzzy msgid "Number of journal lines to show" -msgstr "Number nonblank lines" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:35 msgid "Control journal formatting" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:36 -#, fuzzy msgid "list-dependencies flat, not as tree" -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:42 msgid "Reboot to EFI setup" @@ -56240,28 +52415,24 @@ msgid "Disk image to mount the root directory for the container from" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:5 -#, fuzzy msgid "Invoke init in the container" -msgstr "Show the exited containers" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:6 -#, fuzzy msgid "Change to user in the container" -msgstr "Show the exited containers" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:7 msgid "Sets the machine name for this container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:8 -#, fuzzy msgid "Set the specified UUID for the container." -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:9 -#, fuzzy msgid "Make the container part of the specified slice" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:10 msgid "Set a unit property on the scope unit" @@ -56292,19 +52463,16 @@ msgid "Create a virtual Ethernet link (\"veth\") between host and container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:17 -#, fuzzy msgid "Adds the host side of the Ethernet link created to the specified bridge" -msgstr "Set the list of default preferences to the specified string" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:18 -#, fuzzy msgid "Map an ip port from the host to the container" -msgstr "Copy and apply patches from another repository to this one" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:19 -#, fuzzy msgid "Sets the SELinux security context" -msgstr "Display security context" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:20 msgid "Sets the SELinux security context for files in the API filesystems" @@ -56335,28 +52503,24 @@ msgid "Mount the root file system read-only for the container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:27 -#, fuzzy msgid "Bind mount a file or directory from the host in the container" -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:28 -#, fuzzy msgid "Mount a tmpfs file system into the container" -msgstr "Mount filesystems in fstab" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:29 -#, fuzzy msgid "Mount directories as overlayfs in the container" -msgstr "List directories, not their content" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:30 msgid "Pass environment variables to init in the container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:31 -#, fuzzy msgid "Share the system with the host [See Man Page]" -msgstr "Show or set the system's host name\r" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:32 msgid "Register container with systemd-machined" @@ -56597,9 +52761,8 @@ msgstr "Remove files after adding to archive" #: /tmp/fish/implicit/share/completions/tar.fish:44 #: /tmp/fish/implicit/share/completions/tar.fish:45 -#, fuzzy msgid "Do not sort file arguments" -msgstr "Do not show flags" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:46 msgid "Preserve file ownership" @@ -56631,9 +52794,8 @@ msgid "Ask for confirmation" msgstr "Ask for confirmation" #: /tmp/fish/implicit/share/completions/tar.fish:56 -#, fuzzy msgid "Verify archive" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:57 msgid "Exclude file" @@ -56658,9 +52820,8 @@ msgid "Filter through specified program" msgstr "Filter through specified program" #: /tmp/fish/implicit/share/completions/tar.fish:64 -#, fuzzy msgid "Filter through xz" -msgstr "Filter through gzip" +msgstr "" #: /tmp/fish/implicit/share/completions/tee.fish:1 msgid "append to the given FILEs, do not overwrite" @@ -56671,9 +52832,8 @@ msgid "ignore interrupt signals" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:1 -#, fuzzy msgid "Display help message" -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:3 msgid "Tell termite start instead of the shell" @@ -56684,9 +52844,8 @@ msgid "The role to set the termite window to report itself with" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:5 -#, fuzzy msgid "Set the termite window's title" -msgstr "Set the terminal color" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:6 msgid "Tell termite to change to when launching" @@ -56705,9 +52864,8 @@ msgid "Launch on X display" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:10 -#, fuzzy msgid "Config file to use" -msgstr "Change to user" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:11 msgid "Set the windows name part of WM_CLASS property" @@ -56727,9 +52885,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:101 #: /tmp/fish/implicit/share/completions/terraform.fish:116 #: /tmp/fish/implicit/share/completions/terraform.fish:125 -#, fuzzy msgid "Path to backup the existing state file" -msgstr "Make backup of each existing destination file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:5 #: /tmp/fish/implicit/share/completions/terraform.fish:23 @@ -56750,9 +52907,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:104 #: /tmp/fish/implicit/share/completions/terraform.fish:118 #: /tmp/fish/implicit/share/completions/terraform.fish:127 -#, fuzzy msgid "Duration to retry a state lock" -msgstr "Print directory stack" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:7 #: /tmp/fish/implicit/share/completions/terraform.fish:52 @@ -56781,16 +52937,14 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:9 #: /tmp/fish/implicit/share/completions/terraform.fish:26 #: /tmp/fish/implicit/share/completions/terraform.fish:84 -#, fuzzy msgid "Limit the number of concurrent operations" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:10 #: /tmp/fish/implicit/share/completions/terraform.fish:27 #: /tmp/fish/implicit/share/completions/terraform.fish:85 -#, fuzzy msgid "Update state prior to checking for differences" -msgstr "Update the working copy to a different URL." +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:11 #: /tmp/fish/implicit/share/completions/terraform.fish:17 @@ -56809,17 +52963,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:107 #: /tmp/fish/implicit/share/completions/terraform.fish:122 #: /tmp/fish/implicit/share/completions/terraform.fish:131 -#, fuzzy msgid "Path to write state" -msgstr "Do not write mtab" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:13 #: /tmp/fish/implicit/share/completions/terraform.fish:30 #: /tmp/fish/implicit/share/completions/terraform.fish:87 #: /tmp/fish/implicit/share/completions/terraform.fish:108 -#, fuzzy msgid "Resource to target" -msgstr "Resource name" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:14 #: /tmp/fish/implicit/share/completions/terraform.fish:18 @@ -56828,9 +52980,8 @@ msgstr "Resource name" #: /tmp/fish/implicit/share/completions/terraform.fish:88 #: /tmp/fish/implicit/share/completions/terraform.fish:96 #: /tmp/fish/implicit/share/completions/terraform.fish:109 -#, fuzzy msgid "Set a variable in the Terraform configuration" -msgstr "save the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:15 #: /tmp/fish/implicit/share/completions/terraform.fish:19 @@ -56839,9 +52990,8 @@ msgstr "save the current configuration" #: /tmp/fish/implicit/share/completions/terraform.fish:89 #: /tmp/fish/implicit/share/completions/terraform.fish:97 #: /tmp/fish/implicit/share/completions/terraform.fish:110 -#, fuzzy msgid "Set variables from a file" -msgstr "Set format file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:16 msgid "Interactive console for Terraform interpolations" @@ -56852,67 +53002,56 @@ msgid "Destroy Terraform-managed infrastructure" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:22 -#, fuzzy msgid "Don't ask for input for destroy confirmation" -msgstr "Don't print group information" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:33 -#, fuzzy msgid "Environment management" -msgstr "Handle environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:34 -#, fuzzy msgid "List environments" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:35 -#, fuzzy msgid "Select an environment" -msgstr "Select an action" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:36 -#, fuzzy msgid "Create a new environment" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:37 -#, fuzzy msgid "Delete an existing environment" -msgstr "Assert freestanding environment" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:38 msgid "Rewrite config files to canonical format" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:39 -#, fuzzy msgid "List files whose formatting differs" -msgstr "Specifies line formatting" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:40 -#, fuzzy msgid "Write result to source file" -msgstr "Write output to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:41 -#, fuzzy msgid "Display diffs of formatting changes" -msgstr "Display detailed information of gem(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:42 msgid "Download and install modules for the configuration" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:43 -#, fuzzy msgid "Check modules for updates" -msgstr "Check for patches" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:45 -#, fuzzy msgid "Create a visual graph of Terraform resources" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:46 msgid "Highlight any cycles in the graph" @@ -56927,9 +53066,8 @@ msgid "Import existing infrastructure into Terraform" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:51 -#, fuzzy msgid "Path to a directory of configuration files" -msgstr "Specify directory with configuration files" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:56 msgid "Specific provider to use for import" @@ -56944,14 +53082,12 @@ msgid "Configure the backend for this environment" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:63 -#, fuzzy msgid "Backend configuration" -msgstr "save the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:64 -#, fuzzy msgid "Download modules for this configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:65 msgid "Ask for input if necessary" @@ -56962,32 +53098,28 @@ msgid "Suppress prompts about copying state data" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:70 -#, fuzzy msgid "Read an output from a state file" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:71 msgid "Path to the state file to read" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:73 -#, fuzzy msgid "Return the outputs for a specific module" -msgstr "Write output to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:74 -#, fuzzy msgid "Print output in JSON format" -msgstr "Profiling output format" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:75 msgid "Generate and show an execution plan" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:76 -#, fuzzy msgid "Generate a plan to destroy all resources" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:77 msgid "Return detailed exit codes" @@ -56999,9 +53131,8 @@ msgid "Depth of modules to show in the output" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:83 -#, fuzzy msgid "Write a plan file to the given path" -msgstr "Prepend file to input" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:90 msgid "Upload this Terraform module to Atlas to run" @@ -57016,9 +53147,8 @@ msgid "Lock modules and upload completely" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:93 -#, fuzzy msgid "Name of the configuration in Atlas" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:94 msgid "Access token to use to upload" @@ -57063,24 +53193,20 @@ msgid "Validate the Terraform files" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:134 -#, fuzzy msgid "Print the Terraform version" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:2 -#, fuzzy msgid "Negate expression" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:3 -#, fuzzy msgid "Logical AND" -msgstr "Logical or" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:4 -#, fuzzy msgid "Logical OR" -msgstr "Logical or" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:5 msgid "String length is non-zero" @@ -57147,24 +53273,20 @@ msgid "File is set-group-ID" msgstr "File is set-group-ID" #: /tmp/fish/implicit/share/completions/test.fish:21 -#, fuzzy msgid "File owned by our effective group ID" -msgstr "File owned by effective group ID" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:22 -#, fuzzy msgid "File is a symlink" -msgstr "File is symlink" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:23 -#, fuzzy msgid "File owned by our effective user ID" -msgstr "File owned by effective user ID" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:24 -#, fuzzy msgid "File is a named pipe" -msgstr "File is named pipe" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:25 msgid "File is readable" @@ -57175,14 +53297,12 @@ msgid "File size is non-zero" msgstr "File size is non-zero" #: /tmp/fish/implicit/share/completions/test.fish:27 -#, fuzzy msgid "File is a socket" -msgstr "File is socket" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:28 -#, fuzzy msgid "FD is a terminal" -msgstr "FD is terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:29 msgid "File set-user-ID bit is set" @@ -57208,9 +53328,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tex.fish:7 #: /tmp/fish/implicit/share/completions/tex.fish:8 #: /tmp/fish/implicit/share/completions/tex.fish:9 -#, fuzzy msgid "Set interaction mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/tex.fish:11 msgid "Enable \\write18{SHELL COMMAND}" @@ -57221,9 +53340,8 @@ msgid "Disable \\write18{SHELL COMMAND}" msgstr "" #: /tmp/fish/implicit/share/completions/tex.fish:13 -#, fuzzy msgid "Insert source specials into the DVI file" -msgstr "Generate source index file" +msgstr "" #: /tmp/fish/implicit/share/completions/timedatectl.fish:1 msgid "Maintain RTC in local time" @@ -57266,9 +53384,8 @@ msgid "Send a KILL signal after DURATION" msgstr "" #: /tmp/fish/implicit/share/completions/timeout.fish:3 -#, fuzzy msgid "Specify the signal to be sent" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:1 msgid "Add an exclusion not to back up a file" @@ -57281,9 +53398,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:3 #: /tmp/fish/implicit/share/completions/tmutil.fish:37 -#, fuzzy msgid "Path exclusion" -msgstr "PKZIP recursion" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:4 msgid "Bind a snapshot volume directory to the specified local disk" @@ -57298,91 +53414,76 @@ msgid "Perform a backup diff" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:7 -#, fuzzy msgid "Compare all supported metadata" -msgstr "Compress all data" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:8 msgid "No metadata comparison" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:9 -#, fuzzy msgid "Compare extended attributes" -msgstr "Compares two generations" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:10 -#, fuzzy msgid "Compare creation times" -msgstr "Compare month names" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:11 -#, fuzzy msgid "Compare file data forks" -msgstr "Profile data format" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:12 -#, fuzzy msgid "Compare ACLs" -msgstr "Compression" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:13 -#, fuzzy msgid "Compare file flags" -msgstr "Compress file" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:14 -#, fuzzy msgid "Compare GIDs" -msgstr "Compression" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:15 -#, fuzzy msgid "Compare file modes" -msgstr "Completly silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:16 -#, fuzzy msgid "Compare sizes" -msgstr "Compress file" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:17 -#, fuzzy msgid "Compare modification times" -msgstr "Change modification time" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:18 -#, fuzzy msgid "Compare UIDs" -msgstr "Compression" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:19 msgid "Limit traversal depth to depth levels from the beginning of iteration" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:20 -#, fuzzy msgid "Dont take exclusions into account" -msgstr "Don't use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:21 -#, fuzzy msgid "Ignore path" -msgstr "Ignore case" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:22 msgid "Ignore logical volume identity" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:23 -#, fuzzy msgid "Delete one or more snapshots" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:24 -#, fuzzy msgid "Print information about destinations" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:25 msgid "Turn off automatic backups" @@ -57410,43 +53511,36 @@ msgid "Determine if a file, directory, or volume are excluded from backups" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:31 -#, fuzzy msgid "Print the path to the latest snapshot" -msgstr "Print time of last boot" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:32 -#, fuzzy msgid "Print paths for all snapshots" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:33 -#, fuzzy msgid "Print the path to the current machine directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:34 -#, fuzzy msgid "Removes a backup destination" -msgstr "Removes backup generations" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:35 -#, fuzzy msgid "Remove an exclusion" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:38 msgid "Restore an item" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:39 -#, fuzzy msgid "Set a backup destination" -msgstr "Lists every backup generation" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:40 -#, fuzzy msgid "Add to the list of destinations" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:41 msgid "Enter the password at a non-echoing interactive prompt" @@ -57461,23 +53555,20 @@ msgid "Begin a backup if one is not already running" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:44 -#, fuzzy msgid "Automatic mode" -msgstr "Cumulative mode" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:45 msgid "Block until finished" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:46 -#, fuzzy msgid "Automatic rotation" -msgstr "Attempt automatic login" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:47 -#, fuzzy msgid "Backup destination" -msgstr "Back up the original version" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:48 msgid "Cancel a backup currently in progress" @@ -57492,9 +53583,8 @@ msgid "Verify snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:52 -#, fuzzy msgid "Print as XML" -msgstr "Print database" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:1 msgid "available sessions" @@ -57517,62 +53607,52 @@ msgid "Like -2, but indicates that the terminal supports 88 colours" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:6 -#, fuzzy msgid "Behave as a login shell" -msgstr "This is a login shell" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:7 -#, fuzzy msgid "Set the quiet server option" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:8 msgid "Flag explicitly informs tmux that UTF-8 is supported" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:9 -#, fuzzy msgid "Request verbose logging" -msgstr "List users logged in" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:10 -#, fuzzy msgid "Report the tmux version" -msgstr "Sort by version" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:11 -#, fuzzy msgid "Execute command using the default shell" -msgstr "Select entire command line (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:13 -#, fuzzy msgid "Specify the name of the server socket to use" -msgstr "Specify the remote shell to use" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:14 msgid "Full path to server socket. If set, -L is ignored." msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:15 -#, fuzzy msgid "attach to existing session" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:16 -#, fuzzy msgid "detach other clients" -msgstr "List or remove functions" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:17 -#, fuzzy msgid "attach in read-only mode" -msgstr "Read-only mode" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:18 -#, fuzzy msgid "detach current client" -msgstr "Set or get all current limits" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:19 msgid "SIGHUP parent process of client, likely causing it to exit" @@ -57593,29 +53673,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:23 -#, fuzzy msgid "list all attached clients" -msgstr "Delete all cache contents" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:24 -#, fuzzy msgid "list syntax for all tmux commands" -msgstr "list all “gem” commands" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:25 -#, fuzzy msgid "list all sessions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:26 -#, fuzzy msgid "lock client" -msgstr "Block size" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:27 -#, fuzzy msgid "lock session" -msgstr "Unlock a revision" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:28 msgid "create a new session with name session-name" @@ -57626,47 +53701,40 @@ msgid "don't attach to current window" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:30 -#, fuzzy msgid "window-name" -msgstr "window panes" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:31 -#, fuzzy msgid "session-name" -msgstr "Version number" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:32 -#, fuzzy msgid "width" -msgstr "Line width" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:33 msgid "height" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:34 -#, fuzzy msgid "refresh client" -msgstr "Name of client" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:35 -#, fuzzy msgid "update client status bar" -msgstr "Negate exit status of job" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:36 -#, fuzzy msgid "rename session" -msgstr "Rename stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:37 msgid "save msgs in status bar in per-client msg log" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:38 -#, fuzzy msgid "execute commands from path" -msgstr "execute commands from file, then exit" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:39 msgid "start tmux server if not running; do not create a session" @@ -57681,51 +53749,43 @@ msgid "Switch the current session for client target-client to target-session" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:42 -#, fuzzy msgid "move client to the last session" -msgstr "Removes a client from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:43 -#, fuzzy msgid "move client to the next session" -msgstr "Removes a client from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:44 -#, fuzzy msgid "move client to the previous session" -msgstr "Removes a client from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:45 -#, fuzzy msgid "toggle if client is read-only" -msgstr "Open folder read-only" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:46 #: /tmp/fish/implicit/share/completions/tmux.fish:47 #: /tmp/fish/implicit/share/completions/tmux.fish:73 #: /tmp/fish/implicit/share/completions/tmux.fish:76 -#, fuzzy msgid "target-session" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:48 #: /tmp/fish/implicit/share/completions/tmux.fish:49 #: /tmp/fish/implicit/share/completions/tmux.fish:80 #: /tmp/fish/implicit/share/completions/tmux.fish:84 -#, fuzzy msgid "target-client" -msgstr "Target line" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:50 -#, fuzzy msgid "format string" -msgstr "Prompt string" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:51 #: /tmp/fish/implicit/share/completions/tmux.fish:74 -#, fuzzy msgid "bind key to command" -msgstr "End of command" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:52 msgid "bind for command mode instead of normal mode" @@ -57736,9 +53796,8 @@ msgid "make the binding work without using a prefix key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:54 -#, fuzzy msgid "key may repeat" -msgstr "Specify man path" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:55 msgid "choose key table for binding" @@ -57746,15 +53805,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:56 #: /tmp/fish/implicit/share/completions/tmux.fish:58 -#, fuzzy msgid "list all key bindings" -msgstr "Handle fish key bindings" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:57 #: /tmp/fish/implicit/share/completions/tmux.fish:68 -#, fuzzy msgid "key table" -msgstr "Executable" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:59 msgid "reset terminal state" @@ -57762,85 +53819,73 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:60 #: /tmp/fish/implicit/share/completions/tmux.fish:63 -#, fuzzy msgid "target pane" -msgstr "Target line" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:61 msgid "send the prefix key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:62 -#, fuzzy msgid "use secondary prefix" -msgstr "Set directory prefix" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:64 msgid "unbind the command bound to key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:65 -#, fuzzy msgid "remove all key bindings" -msgstr "Unable to parse key binding" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:66 -#, fuzzy msgid "binding for command mode" -msgstr "End of command" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:67 msgid "command bound to key without a prefix (if any) removed" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:69 -#, fuzzy msgid "Set or unset an environment variable" -msgstr "Help on environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:70 #: /tmp/fish/implicit/share/completions/tmux.fish:75 -#, fuzzy msgid "global environment" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:71 msgid "remove from environment before starting a new process" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:72 -#, fuzzy msgid "unset variable" -msgstr "set/list variables" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:77 msgid "Open the command prompt in a client" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:78 -#, fuzzy msgid "Comma-separated list of initial text for each prompt" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:79 -#, fuzzy msgid "Comma-separated list of prompts" -msgstr "Comma separated format" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:81 -#, fuzzy msgid "Display a message" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:82 -#, fuzzy msgid "print to stdout" -msgstr "Print file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:83 -#, fuzzy msgid "target-pane" -msgstr "Target line" +msgstr "" #: /tmp/fish/implicit/share/completions/top.fish:2 msgid "Toggle command line/program name" @@ -57851,9 +53896,8 @@ msgid "Toggle idle processes" msgstr "Toggle idle processes" #: /tmp/fish/implicit/share/completions/top.fish:6 -#, fuzzy msgid "Maximum iterations" -msgstr "Maximium iterations" +msgstr "" #: /tmp/fish/implicit/share/completions/top.fish:7 msgid "Monitor effective UID" @@ -57884,9 +53928,8 @@ msgid "Output a longer help message then quit" msgstr "" #: /tmp/fish/implicit/share/completions/totem.fish:3 -#, fuzzy msgid "Output version information then quit" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/totem.fish:4 msgid "Tell any running totem instance: Toggle between play and pause" @@ -57945,33 +53988,28 @@ msgid "Add torrents to transmission" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:2 -#, fuzzy msgid "Enable debugging mode" -msgstr "Debugging mode" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:3 msgid "Use the alternate Limits" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:4 -#, fuzzy msgid "Don't use the alternate Limits" -msgstr "Don't run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:5 -#, fuzzy msgid "Limit the alternate download speed" -msgstr "Limit the download speed" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:6 -#, fuzzy msgid "Limit the alternate upload speed" -msgstr "Limit the download speed" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:7 -#, fuzzy msgid "Use the scheduled on/off times" -msgstr "Use this files times" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:8 msgid "Don't use the scheduled on/off times" @@ -57986,9 +54024,8 @@ msgid "Time to stop using the alt speed limits (hhmm)" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:11 -#, fuzzy msgid "Number of days to enable the speed scheduler" -msgstr "Name of the darcs executable on the remote server" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:12 msgid "Script to run each time a torrent finishes" @@ -58003,28 +54040,24 @@ msgid "Directory for incomplete downloads" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:15 -#, fuzzy msgid "Don't store incomplete torrents in a different directory" -msgstr "Don't remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:16 -#, fuzzy msgid "Limit the maximum download speed to limit" -msgstr "Limit the download speed" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:17 -#, fuzzy msgid "Disable download speed limits" -msgstr "Disable downloading packages" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:18 msgid "Set the session's maximum memory cache size (MiB)" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:19 -#, fuzzy msgid "Encrypt all peer connections" -msgstr "Encrypt all net traffic" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:20 msgid "Prefer encrypted peer connections" @@ -58039,9 +54072,8 @@ msgid "Tell the Transmission to initiate a shutdown" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:23 -#, fuzzy msgid "Get a file list for the current torrent(s)" -msgstr "Sets an index list for the next track" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:24 msgid "Mark file(s) for download" @@ -58060,48 +54092,40 @@ msgid "All torrents should seed regardless of ratio" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:28 -#, fuzzy msgid "Print command-line option descriptions" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:29 -#, fuzzy msgid "Show details of the current torrent(s)" -msgstr "Show all of the gems in the current bundle" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:30 -#, fuzzy msgid "List session information from the server" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:31 -#, fuzzy msgid "List statistical information from the server" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:32 -#, fuzzy msgid "List all torrents" -msgstr "List archive contents" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:33 msgid "Enable portmapping via NAT-PMP or UPnP" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:34 -#, fuzzy msgid "Disable portmapping" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:35 -#, fuzzy msgid "Set the username:password for authentication" -msgstr "Prompt for password for authenticating server" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:37 -#, fuzzy msgid "Set authentication information from a netrc file" -msgstr "Print out history information for a module" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:38 msgid "Enable distributed hash table (DHT)" @@ -58112,9 +54136,8 @@ msgid "Disable distribued hash table (DHT)" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:40 -#, fuzzy msgid "Set the port to use when listening" -msgstr "Specify umask to use when writing" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:41 msgid "Give this torrent high bandwidth" @@ -58129,29 +54152,24 @@ msgid "Give this torrent low bandwidth" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:44 -#, fuzzy msgid "Try to download the specified files first" -msgstr "Write log output to the specified file descriptor" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:45 -#, fuzzy msgid "Try to download the specified files normally" -msgstr "Create window on the specified display" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:46 -#, fuzzy msgid "Try to download the specified files last" -msgstr "Create window on the specified display" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:47 -#, fuzzy msgid "Set the maximum number of peers" -msgstr "Set the maximum fuzz factor" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:48 -#, fuzzy msgid "Remove the current torrents" -msgstr "Remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:49 msgid "Remove the current torrents and delete data" @@ -58186,19 +54204,16 @@ msgid "Add a tracker to a torrent" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:57 -#, fuzzy msgid "Remove a tracker from a torrent" -msgstr "Removes a lock file for a client" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:58 -#, fuzzy msgid "Start the current torrents" -msgstr "Displays the current mode" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:59 -#, fuzzy msgid "Stop the current torrents" -msgstr "Stop the currently evaluated function" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:60 msgid "Start added torrents paused" @@ -58229,9 +54244,8 @@ msgid "Make the current torrent(s) not honor the session limits" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:67 -#, fuzzy msgid "Limit the maximum upload speed (KiB/s)" -msgstr "Limit the download speed" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:68 msgid "Disable upload speed limits" @@ -58242,14 +54256,12 @@ msgid "Enable uTP for peer connections" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:70 -#, fuzzy msgid "Disable uTP for peer connections" -msgstr "Disable automtic buffer allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:71 -#, fuzzy msgid "Verify the current torrents" -msgstr "Displays the current mode" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:73 msgid "Use directory as default for new downloads" @@ -58272,9 +54284,8 @@ msgid "Disable local peer discovery (LPD)" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:78 -#, fuzzy msgid "List the current torrent's connected peers" -msgstr "Test if current token is on Nth place" +msgstr "" #: /tmp/fish/implicit/share/completions/trap.fish:1 msgid "Display names of all signals" @@ -58297,28 +54308,24 @@ msgid "Displays the most recent build for each branch" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:3 -#, fuzzy msgid "Lists or deletes repository caches" -msgstr "Lists the clients in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:4 msgid "Cancels a job or build" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:5 -#, fuzzy msgid "Interactive shell" -msgstr "Test if this is an interactive shell" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:6 -#, fuzzy msgid "Disables a project" -msgstr "Disable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:7 -#, fuzzy msgid "Enables a project" -msgstr "Enable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:8 msgid "Encrypts values for the .travis.yml" @@ -58329,14 +54336,12 @@ msgid "Encrypts a file and adds decryption steps to .travis.yml" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:10 -#, fuzzy msgid "Displays or changes the API endpoint" -msgstr "Display $ at end of line" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:11 -#, fuzzy msgid "Show or modify build environment variables" -msgstr "Handle environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:12 msgid "Helps you out when in dire need of information" @@ -58391,18 +54396,16 @@ msgid "Lists repositories the user has certain permissions on" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:25 -#, fuzzy msgid "Lists recent requests" -msgstr "Bytes per request" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:26 msgid "Restarts a build or job" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:27 -#, fuzzy msgid "Access repository settings" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:28 msgid "Sets up an addon or deploy target" @@ -58429,18 +54432,16 @@ msgid "Outputs the secret API token" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:34 -#, fuzzy msgid "Outputs the client version" -msgstr "Back up the original version" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:35 msgid "Lists most recent builds" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:36 -#, fuzzy msgid "Outputs the current user" -msgstr "Displays the current mode" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:38 msgid "Be interactive and colorful" @@ -58451,67 +54452,56 @@ msgid "Don't be interactive and colorful" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:40 -#, fuzzy msgid "Don't rescue exceptions" -msgstr "Don't execute scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:41 -#, fuzzy msgid "Rescue exceptions" -msgstr "Device section" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:42 -#, fuzzy msgid "Don't check if travis client is up to date" -msgstr "Don't check for sufficient disk space before installation" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:43 msgid "Don't check if auto-completion is set up" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:1 -#, fuzzy msgid "All files are listed" -msgstr "All bitfields are signed" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:2 -#, fuzzy msgid "List directories only" -msgstr "List subdirectory recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:3 -#, fuzzy msgid "Follow symbolic links like directories" -msgstr "Symbolic link to directory" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:4 -#, fuzzy msgid "Print the full path prefix for each file" -msgstr "print full path to ebuild for package" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:5 -#, fuzzy msgid "Stay on current filesystem only" -msgstr "Stay on this file system" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:6 -#, fuzzy msgid "Descend only level directories deep" -msgstr "Recursively remove subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:7 msgid "Rerun tree when max dir level reached" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:8 -#, fuzzy msgid "List only those files that match the pattern given" -msgstr "Exclude files that match pattern in file" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:9 -#, fuzzy msgid "Do not list files that match the given pattern" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:10 msgid "Turn off file/directory count at end of tree listing" @@ -58530,43 +54520,36 @@ msgid "Print and format time according to the format " msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:14 -#, fuzzy msgid "Output to file instead of stdout" -msgstr "Use this config file instead of default" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:15 -#, fuzzy msgid "Print non-printable characters as '?'" -msgstr "Replace non-graphic characters with “?”" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:16 -#, fuzzy msgid "Print non-printable characters as is" -msgstr "Escape all non-printing characters" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:17 msgid "Quote filenames with double quotes" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:18 -#, fuzzy msgid "Print the protections for each file" -msgstr "Launch default action for each file" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:19 -#, fuzzy msgid "Displays file owner or UID number" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:20 -#, fuzzy msgid "Displays file group owner or GID number" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:21 -#, fuzzy msgid "Print the size in bytes of each file" -msgstr "Print size of files" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:22 msgid "Print the size in a more human readable way" @@ -58585,14 +54568,12 @@ msgid "Appends '/', '=', '*', '@', '|' or '>' as per ls -F" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:26 -#, fuzzy msgid "Print inode number of each file" -msgstr "Print inode number of files" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:27 -#, fuzzy msgid "Print device ID number to which each file belongs" -msgstr "Print inode number of files" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:28 msgid "Sort files alphanumerically by version" @@ -58603,9 +54584,8 @@ msgid "Sort files in reverse alphanumeric order" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:30 -#, fuzzy msgid "Sort files by last modification time" -msgstr "Sort by modification time" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:31 msgid "Sort files by last status change time" @@ -58620,9 +54600,8 @@ msgid "List directories before files (-U disables)" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:34 -#, fuzzy msgid "Don't print indentation lines" -msgstr "Do not print explanations" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:35 msgid "Print ANSI lines graphic indentation lines" @@ -58657,9 +54636,8 @@ msgid "Turn off hyperlinks in HTML output" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:44 -#, fuzzy msgid "Print usage and this help message and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:1 msgid "use the complement of SET1" @@ -58688,14 +54666,12 @@ msgid "all letters" msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:9 -#, fuzzy msgid "all horizontal whitespace" -msgstr "Ignore all white space" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:10 -#, fuzzy msgid "all control characters" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:11 msgid "all digits" @@ -58710,14 +54686,12 @@ msgid "all lower case letters" msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:14 -#, fuzzy msgid "all printable characters, including space" -msgstr "Print character counts" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:15 -#, fuzzy msgid "all punctuation characters" -msgstr "Escape all non-printing characters" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:16 msgid "all horizontal or vertical whitespace" @@ -58755,98 +54729,80 @@ msgid "Guarantee that any output is unbuffered." msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:24 -#, fuzzy msgid "alphanumeric characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:25 -#, fuzzy msgid "alphabetic characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:26 -#, fuzzy msgid "whitespace characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:27 -#, fuzzy msgid "control characters" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:28 -#, fuzzy msgid "numeric characters" -msgstr "Print character counts" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:29 -#, fuzzy msgid "graphic characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:30 -#, fuzzy msgid "ideographic characters" -msgstr "Replace non-graphic characters with “?”" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:31 -#, fuzzy msgid "lower-case alphabetic characters" -msgstr "Octal escapes for non graphic characters" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:32 -#, fuzzy msgid "phonographic characters" -msgstr "Octal escapes for non graphic characters" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:33 -#, fuzzy msgid "printable characters" -msgstr "Print character counts" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:34 -#, fuzzy msgid "punctuation characters" -msgstr "Output character range" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:35 -#, fuzzy msgid "valid characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:36 -#, fuzzy msgid "space characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:37 -#, fuzzy msgid "special characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:38 -#, fuzzy msgid "upper-case characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:39 -#, fuzzy msgid "hexadecimal characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:2 msgid "Print all possible definitions of the specified name" msgstr "Print all possible definitions of the specified name" #: /tmp/fish/implicit/share/completions/type.fish:3 -#, fuzzy msgid "Suppress function and builtin lookup" -msgstr "Supress function and builtin lookup" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:4 -#, fuzzy msgid "Print command type" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:5 msgid "Print path to command, or nothing if name is not a command" @@ -58857,108 +54813,90 @@ msgid "Print path to command" msgstr "Print path to command" #: /tmp/fish/implicit/share/completions/type.fish:7 -#, fuzzy msgid "Suppress output" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:3 -#, fuzzy msgid "Shows information about an object" -msgstr "Suppress informational output" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:4 -#, fuzzy msgid "Shows information about all objects" -msgstr "Display information about a local or remote item." +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:5 msgid "Shows high-level status" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:6 -#, fuzzy msgid "Monitor changes to objects" -msgstr "Ignore changes in case" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:7 #: /tmp/fish/implicit/share/completions/zfs.fish:17 -#, fuzzy msgid "Mount a filesystem" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:8 #: /tmp/fish/implicit/share/completions/zfs.fish:18 -#, fuzzy msgid "Unmount a filesystem" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:9 -#, fuzzy msgid "Unlock an encrypted device" -msgstr "Unlock a revision" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:10 msgid "Lock an encrypted device" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:11 -#, fuzzy msgid "Set-up a loop device" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:12 -#, fuzzy msgid "Delete a loop device" -msgstr "File is block device" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:13 msgid "Safely power off a drive" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:14 -#, fuzzy msgid "Set SMART data for a drive" -msgstr "Set date forward" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:15 -#, fuzzy msgid "Object to get information about" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:16 -#, fuzzy msgid "Block device to get information about" -msgstr "Return status information about fish" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:17 -#, fuzzy msgid "Drive to get information about" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:18 -#, fuzzy msgid "Filesystem type to use" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:20 -#, fuzzy msgid "Force/layzy unmount" -msgstr "Lazy unmount" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:22 -#, fuzzy msgid "Mounted block device" -msgstr "File is block device" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:23 -#, fuzzy msgid "File to set-up a loop device for" -msgstr "File is block device" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:24 -#, fuzzy msgid "Setup read-only device" -msgstr "Read-only mode" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:25 msgid "Start at bytes into file" @@ -58981,37 +54919,32 @@ msgid "File with libatasmart blob" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:30 -#, fuzzy msgid "Do not authenticate the user if needed" -msgstr "Do not cache authentication tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:31 msgid "Object to " msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:32 -#, fuzzy msgid "Block device to " -msgstr "Block device" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:33 msgid "Object path for ATA device" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:34 -#, fuzzy msgid "Block device for ATA device" -msgstr "Block device" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:1 -#, fuzzy msgid "Set or get soft limit" -msgstr "Set or get all current limits" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:2 -#, fuzzy msgid "Set or get hard limit" -msgstr "Set or get all current limits" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:3 msgid "Set or get all current limits" @@ -59058,9 +54991,8 @@ msgid "Maximum amount of virtual memory available to the shell" msgstr "Maximum amount of virtual memory available to the shell" #: /tmp/fish/implicit/share/completions/ulimit.fish:15 -#, fuzzy msgid "New resource limit" -msgstr "Recursion limit" +msgstr "" #: /tmp/fish/implicit/share/completions/umount.fish:5 msgid "Unmount without writing in /etc/mtab" @@ -59113,38 +55045,32 @@ msgid "Behave as though all of the options mnrsv were specified." msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:2 -#, fuzzy msgid "print the machine hardware name." -msgstr "Print machine name" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:3 -#, fuzzy msgid "print the nodename" -msgstr "Print kernel name" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:4 msgid "print the machine processor architecture name." msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:5 -#, fuzzy msgid "print the operating system release." -msgstr "Print the target operating system ID string" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:6 -#, fuzzy msgid "print the operating system name." -msgstr "Print the target operating system ID string" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:7 -#, fuzzy msgid "print the operating system version." -msgstr "Print the target operating system ID string" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:8 -#, fuzzy msgid "Print all information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:9 msgid "Print kernel name" @@ -59159,9 +55085,8 @@ msgid "Print kernel release" msgstr "Print kernel release" #: /tmp/fish/implicit/share/completions/uname.fish:12 -#, fuzzy msgid "Print kernel version" -msgstr "Print node's version" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:13 msgid "Print machine name" @@ -59176,9 +55101,8 @@ msgid "Print hardware platform" msgstr "Print hardware platform" #: /tmp/fish/implicit/share/completions/uname.fish:16 -#, fuzzy msgid "Print operating system" -msgstr "Print the target operating system ID string" +msgstr "" #: /tmp/fish/implicit/share/completions/unexpand.fish:1 msgid "convert all blanks, instead of just initial blanks" @@ -59233,14 +55157,12 @@ msgid "Extract files with full path" msgstr "Extract files with full path" #: /tmp/fish/implicit/share/completions/update-eix.fish:1 -#, fuzzy msgid "Show a short help screen" -msgstr "Show and sort by ctime" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:2 -#, fuzzy msgid "Show version string" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:3 msgid "Show eixrc-variables" @@ -59251,14 +55173,12 @@ msgid "Show default eixrc-variables" msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:5 -#, fuzzy msgid "Produce no output" -msgstr "Produce diff output" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:6 -#, fuzzy msgid "Output to the given file" -msgstr "Output to /dev/null" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:7 msgid "Exclude the given overlay from the update-process" @@ -59273,9 +55193,8 @@ msgid "Override cache method for a specified overlay" msgstr "" #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:2 -#, fuzzy msgid "Be verbose (default)" -msgstr "(default)" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:3 msgid "Call wget as the given USER" @@ -59290,14 +55209,12 @@ msgid "A comment about this user" msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:2 -#, fuzzy msgid "Home directory for the new user" -msgstr "Base directory for output" +msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:3 -#, fuzzy msgid "Supplementary groups" -msgstr "Select by group" +msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:5 msgid "The user's home directory will be created if it does not exist" @@ -59341,9 +55258,8 @@ msgid "The group name or ID for a new user's initial group" msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:15 -#, fuzzy msgid "Name of the new user's login shell" -msgstr "Test if this is a login shell" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:1 msgid "Append groups (use with -G)" @@ -59354,9 +55270,8 @@ msgid "Change user's password file comment" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:3 -#, fuzzy msgid "Change user's login directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:4 msgid "Date on which the user account will be disabled" @@ -59375,9 +55290,8 @@ msgid "List of groups which the user is also a member of" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:8 -#, fuzzy msgid "Change user's name" -msgstr "Change to user" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:9 msgid "Lock user's password" @@ -59392,23 +55306,20 @@ msgid "Allow non-unique UID" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:13 -#, fuzzy msgid "Apply changes in this directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:14 -#, fuzzy msgid "The name of the user's new login shell" -msgstr "Test if this is a login shell" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:15 msgid "The new numerical value of the user's ID" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:16 -#, fuzzy msgid "Unlock a users password" -msgstr "Unlock a revision" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:17 msgid "Add a range of subordinate uids to the user's account" @@ -59439,38 +55350,32 @@ msgid "Lists all available Vagrant boxes" msgstr "Lists all available Vagrant boxes" #: /tmp/fish/implicit/share/completions/vagrant.fish:4 -#, fuzzy msgid "Print the help and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:5 -#, fuzzy msgid "Manages boxes" -msgstr "Manage abbreviations" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:6 msgid "Adds a box" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:7 -#, fuzzy msgid "Lists all the installed boxes" -msgstr "Lists all available Vagrant boxes" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:8 -#, fuzzy msgid "Removes a box from Vagrant" -msgstr "Removes a lock file for a client" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:9 -#, fuzzy msgid "Repackages the given box for redistribution" -msgstr "Re-package the files before erasing" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:10 -#, fuzzy msgid "Verifies the box with the given provider" -msgstr "Verifies files in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:11 msgid "Connect to a remotely shared Vagrant environment" @@ -59485,19 +55390,16 @@ msgid "Manually override static IP chosen" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:14 -#, fuzzy msgid "SSH into the remote machine" -msgstr "Specify the rsync to run on remote machine" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:15 -#, fuzzy msgid "Destroys the running machine" -msgstr "Show the running containers" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:16 -#, fuzzy msgid "Destroy without confirmation" -msgstr "Ask for confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:17 msgid "Global status of Vagrant environments" @@ -59512,14 +55414,12 @@ msgid "Install Vagrant plugins through ruby gems" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:20 -#, fuzzy msgid "Shuts down the running machine" -msgstr "Show the running containers" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:21 -#, fuzzy msgid "Force shut down" -msgstr "Forced stop" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:22 msgid "Initializes the Vagrant environment" @@ -59530,14 +55430,12 @@ msgid "Log in to Vagrant Cloud" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:24 -#, fuzzy msgid "Only checks if you're logged in" -msgstr "Only check if sorted" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:25 -#, fuzzy msgid "Logs you out if you're logged in" -msgstr "List users logged in" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:26 msgid "Packages a running machine into a reusable box" @@ -59548,9 +55446,8 @@ msgid "Name or UUID of the virtual machine" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:28 -#, fuzzy msgid "Output file name" -msgstr "Output file" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:29 msgid "Additional files to package with the box" @@ -59565,18 +55462,16 @@ msgid "Manages plugins" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:32 -#, fuzzy msgid "Installs a plugin" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:33 msgid "Installs a license for a proprietary Vagrant plugin" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:34 -#, fuzzy msgid "Lists installed plugins" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:35 msgid "Uninstall the given plugin" @@ -59588,18 +55483,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:37 #: /tmp/fish/implicit/share/completions/vagrant.fish:41 -#, fuzzy msgid "Run only the given provisioners" -msgstr "Send to the given KDE session" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:38 msgid "Connects to machine via RDP" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:39 -#, fuzzy msgid "Restarts the running machine" -msgstr "Show the running containers" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:40 msgid "Provisioners will not run" @@ -59630,9 +55523,8 @@ msgid "Local HTTPS port to forward to" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:48 -#, fuzzy msgid "Specific name for the share" -msgstr "Specify filenames to be filtered" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:49 msgid "Allow 'vagrant connect --ssh' access" @@ -59643,62 +55535,52 @@ msgid "Key won't be encrypted with --ssh" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:51 -#, fuzzy msgid "Specific port for SSH when using --ssh" -msgstr "Specify port for web interface" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:52 msgid "Allow 'vagrant connect --ssh' only one time" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:53 -#, fuzzy msgid "SSH into a running machine" -msgstr "Show the running containers" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:54 -#, fuzzy msgid "Executes a single SSH command" -msgstr "Execute argument as command" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:55 -#, fuzzy msgid "Does not authenticate" -msgstr "Do not cache authentication tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:56 -#, fuzzy msgid "Outputs configuration for an SSH config file" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:57 -#, fuzzy msgid "Name of the host for the outputted configuration" -msgstr "Write out the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:58 msgid "Status of the machines Vagrant is managing" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:59 -#, fuzzy msgid "Suspends the running machine" -msgstr "Show the running containers" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:60 -#, fuzzy msgid "Creates and configures guest machines" -msgstr "Creates a configuration profile" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:61 -#, fuzzy msgid "Enable provision" -msgstr "Enable optimizations" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:62 -#, fuzzy msgid "Disable provision" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:63 msgid "Enable only certain provisioners, by type" @@ -59709,27 +55591,24 @@ msgid "Skin" msgstr "Skin" #: /tmp/fish/implicit/share/completions/valgrind.fish:3 -#, fuzzy msgid "Display help and debug options" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:7 msgid "Valgrind-ise children" msgstr "Valgrind-ise children" #: /tmp/fish/implicit/share/completions/valgrind.fish:8 -#, fuzzy msgid "Track file descriptors" -msgstr "Redirect to file descriptor" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:9 msgid "Log to file descriptor" msgstr "Log to file descriptor" #: /tmp/fish/implicit/share/completions/valgrind.fish:10 -#, fuzzy msgid "Log to file" -msgstr "Log to tracefile" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:11 msgid "Log to socket" @@ -59764,15 +55643,13 @@ msgid "Debugger command" msgstr "Debugger command" #: /tmp/fish/implicit/share/completions/valgrind.fish:19 -#, fuzzy msgid "File descriptor for input" -msgstr "Base directory for output" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:20 #: /tmp/fish/implicit/share/completions/valgrind.fish:26 -#, fuzzy msgid "Check for memory leaks" -msgstr "Check for newer pre-release gems" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:21 #: /tmp/fish/implicit/share/completions/valgrind.fish:27 @@ -59827,9 +55704,8 @@ msgid "Specify a function that allocates memory" msgstr "Specify a function that allocates memory" #: /tmp/fish/implicit/share/completions/valgrind.fish:36 -#, fuzzy msgid "Profile heap usage" -msgstr "Profile stack usage" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:37 msgid "The number of bytes of heap overhead per allocation" @@ -59848,40 +55724,34 @@ msgid "Profiling output format" msgstr "Profiling output format" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:1 -#, fuzzy msgid "Start given VM" -msgstr "Start in Ex mode" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:2 msgid "Enable or disamble VRDE server or don't change setting" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:3 -#, fuzzy msgid "Set VRDE property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:4 #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:22 -#, fuzzy msgid "Specify settings password" -msgstr "Specify the http password" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:5 #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:23 -#, fuzzy msgid "Specify file containing setting password" -msgstr "Specify the http password" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:6 -#, fuzzy msgid "Start VM in paused state" -msgstr "Start in easy mode" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:7 -#, fuzzy msgid "Record VM screen ouput to file" -msgstr "Redirect output to file" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:8 msgid "Frame width when recording" @@ -59908,39 +55778,32 @@ msgid "Run separate VM process or attach to a running VM" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:3 -#, fuzzy msgid "Set temporary first hard disk" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:4 -#, fuzzy msgid "Set temporary first floppy disk" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:5 -#, fuzzy msgid "Set temporary CDROM/DVD" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:6 -#, fuzzy msgid "Set temporary boot device" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:7 -#, fuzzy msgid "Set temporary memory size in MB" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:8 -#, fuzzy msgid "Set temporary video memory size in MB" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:9 -#, fuzzy msgid "Start VM in fullscreen mode" -msgstr "Start in lisp mode" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:10 msgid "Resize guest on fullscreen" @@ -59959,14 +55822,12 @@ msgid "Make SDL frame non resizable" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:14 -#, fuzzy msgid "Disable all hoskey combinations" -msgstr "Disable file modification" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:15 -#, fuzzy msgid "Disable specific hostkey combinations" -msgstr "Disables specified type of authentication" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:16 msgid "Disable mouse/keyboard grabbing on mouse click w/o additions" @@ -59994,38 +55855,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:24 -#, fuzzy msgid "Enable raw ring 3" -msgstr "Enable X11 forwarding" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:25 -#, fuzzy msgid "Enable raw ring 0" -msgstr "Enable X11 forwarding" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:26 -#, fuzzy msgid "Enable PATM" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:27 -#, fuzzy msgid "Enable CSAM" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:28 msgid "Permit usage of VT-x/AMD-V" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:29 -#, fuzzy msgid "Disable raw ring 3" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:30 -#, fuzzy msgid "Disable raw ring 0" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:31 msgid "Disable PATM" @@ -60069,14 +55924,12 @@ msgid "Start in display editing state" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:10 -#, fuzzy msgid "Recover file after crash" -msgstr "Remove files after adding to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:11 -#, fuzzy msgid "Edit the file containing a tag" -msgstr "print size of files contained in package" +msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:12 msgid "Begin editing by executing the specified editor command" @@ -60095,14 +55948,12 @@ msgid "show the status of the addons available in the system" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:4 -#, fuzzy msgid "install one or more addons under ~/.vim" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:5 -#, fuzzy msgid "remove one or more addons from ~/.vim" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:6 msgid "disable one or more addons to be used by the current user" @@ -60117,122 +55968,104 @@ msgid "list, one per line, the files composing the specified addons" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:9 -#, fuzzy msgid "displays detailed information about the specified addons" -msgstr "Display detailed information about the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:10 -#, fuzzy msgid "show this usage message and exit" -msgstr "Show this help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:11 msgid "be quiet and make the output more parseable" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:12 -#, fuzzy msgid "set the registry directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:13 -#, fuzzy msgid "set the addons source directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:14 -#, fuzzy msgid "set the addons target directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:15 msgid "increase verbosity" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:16 -#, fuzzy msgid "set the system-wide target directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:17 -#, fuzzy msgid "set target directory to the system-wide one" -msgstr "Gem repository directory to get installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:1 -#, fuzzy msgid "Execute Ex command after the first file has been read" -msgstr "execute commands from file, then exit" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:2 msgid "Source file after the first file has been read" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:3 -#, fuzzy msgid "Execute Ex command before loading any vimrc" -msgstr "Execute command if previous command failed" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:4 -#, fuzzy msgid "Use device as terminal (Amiga only)" -msgstr "Use file as terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:5 msgid "Set the viminfo file location" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:6 -#, fuzzy msgid "Open stacked windows for each file" -msgstr "Launch default action for each file" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:7 msgid "Open side by side windows for each file" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:8 -#, fuzzy msgid "Open tab pages for each file" -msgstr "Display date for each line in file" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:9 -#, fuzzy msgid "Start in quickFix mode" -msgstr "Start in Ex mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:10 msgid "Use swap files for recovery" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:11 -#, fuzzy msgid "Source and execute script file" -msgstr "Don't execute scriplets" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:12 -#, fuzzy msgid "Set the cursor to tag" -msgstr "Set the connect timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:13 -#, fuzzy msgid "Terminal name" -msgstr "Print all names" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:14 msgid "Use alternative vimrc" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:15 -#, fuzzy msgid "Use alternative vimrc in GUI mode" -msgstr "Start in GUI mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:16 -#, fuzzy msgid "Record all typed characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:17 msgid "Record all typed characters (overwrite file)" @@ -60310,38 +56143,32 @@ msgid "Reset compatibility mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:35 -#, fuzzy msgid "Don't use swap files" -msgstr "Don't skip boring files" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:36 -#, fuzzy msgid "Read only mode" -msgstr "Read-only mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:38 -#, fuzzy msgid "Start in silent mode" -msgstr "Start in Farsi mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:39 -#, fuzzy msgid "Start in verbose mode" -msgstr "Start in Hebrew mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:40 -#, fuzzy msgid "Start in vi mode" -msgstr "Start in diff mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:41 msgid "Use encryption when writing files" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:42 -#, fuzzy msgid "Don't connect to X server" -msgstr "Don't continue after an error" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:43 msgid "Start in easy mode" @@ -60423,28 +56250,24 @@ msgid "Trace the sequence of commands performed." msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:8 -#, fuzzy msgid "Assume yes for any questions asked." -msgstr "Assume yes to all questions" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:9 -#, fuzzy msgid "Add a CD-ROM to the list of available sources of packages" -msgstr "Update list of source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:10 msgid "Mark the alternative to be auto set (using set priorities)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:11 -#, fuzzy msgid "Remove superseded deb files from the download cache" -msgstr "Remove all downloaded .deb files from the package cache directory" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:12 -#, fuzzy msgid "Do an update followed by a download of all updated packages" -msgstr "Update the list of down-loadable packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:13 msgid "Perform an install without asking questions (non-interactive)" @@ -60459,24 +56282,20 @@ msgid "Check reported bugs in package using the Debian Bug Tracker" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:16 -#, fuzzy msgid "Retrieve/unpack sources and build .deb for the named packages" -msgstr "Retrieve and unpack sources for the named packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:17 -#, fuzzy msgid "Retrieve packages required to build listed packages" -msgstr "Retrieve and unpack sources for the named packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:18 -#, fuzzy msgid "Retrieve latest changelog for the package" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:19 -#, fuzzy msgid "Remove all deb files from the download cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:20 #: /tmp/fish/implicit/share/completions/wajig.fish:53 @@ -60484,23 +56303,20 @@ msgid "List all the JIG commands and one line descriptions for each" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:21 -#, fuzzy msgid "Perform an update then a dist-upgrade" -msgstr "Perform a distribution upgrade" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:22 -#, fuzzy msgid "List of packages which depend/recommend/suggest the package" -msgstr "list all packages depending on specified package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:23 msgid "One line description of packages (-v and -vv for more detail)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:24 -#, fuzzy msgid "One line description of new packages" -msgstr "Cancel any scheduled actions on the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:25 msgid "Provide a detailed description of package (describe -vv)" @@ -60511,38 +56327,32 @@ msgid "Provide a detailed description of new packages (describe -vv)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:27 -#, fuzzy msgid "Upgrade to new distribution (installed and new rqd packages)" -msgstr "Upgrade or install newest packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:28 msgid "Equivalent to help with -verbose=2" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:29 -#, fuzzy msgid "Download package files ready for an install" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:30 -#, fuzzy msgid "Download packages listed in file ready for an install" -msgstr "Download package missing from mirror" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:31 -#, fuzzy msgid "Install packages listed in a file" -msgstr "list all packages owning file(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:32 -#, fuzzy msgid "Remove packages listed in a file" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:33 -#, fuzzy msgid "Search for a file within installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:34 #: /tmp/fish/implicit/share/completions/wajig.fish:115 @@ -60558,14 +56368,12 @@ msgid "Perform apt-get -f install (to fix broken dependencies)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:37 -#, fuzzy msgid "Perform apt-get --fix-missing upgrade" -msgstr "Perform a distribution upgrade" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:38 -#, fuzzy msgid "Install packages and ignore file overwrites and depends" -msgstr "Install source packages and their build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:39 msgid "Print documentation (detail depends on --verbose)" @@ -60581,9 +56389,8 @@ msgid "Initialise or reset the JIG archive files" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:42 -#, fuzzy msgid "Install (or upgrade) one or more packages or .deb files" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:43 #: /tmp/fish/implicit/share/completions/wajig.fish:82 @@ -60591,9 +56398,8 @@ msgid "Install package and associated recommended packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:44 -#, fuzzy msgid "Install package and recommended and suggested packages" -msgstr "Install newly added packages recommended by installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:45 #: /tmp/fish/implicit/share/completions/wajig.fish:111 @@ -60605,55 +56411,48 @@ msgid "Check the integrity of installed packages (through checksums)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:47 -#, fuzzy msgid "List size of all large (>10MB) installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:48 msgid "Identify when an update was last performed" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:49 -#, fuzzy msgid "List the status and description of installed packages" -msgstr "List version and distribution of (all) packages." +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:50 -#, fuzzy msgid "List a one line description of given or all packages" -msgstr "List version and distribution of (all) packages." +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:51 msgid "List the objects that can have alternatives configured" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:52 -#, fuzzy msgid "List the contents of the download cache" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:54 msgid "List the daemons that JIG can start/stop/restart" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:55 -#, fuzzy msgid "List the files that are supplied by the named package" -msgstr "List all the files in each selected package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:56 -#, fuzzy msgid "List those packages on hold" -msgstr "Reinstall the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:57 msgid "List packages (with optional argument substring) installed" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:58 -#, fuzzy msgid "List the contents of the install/remove log file (filtered)" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:59 msgid "List all known packages or those containing supplied string" @@ -60661,24 +56460,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:60 #: /tmp/fish/implicit/share/completions/wajig.fish:74 -#, fuzzy msgid "List libraries not required by any installed package" -msgstr "Generate a .deb file for an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:61 -#, fuzzy msgid "List the control scripts of the package of deb file" -msgstr "Display the trigger scripts contained in the package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:62 -#, fuzzy msgid "List packages that belong to a specific section" -msgstr "List packages providing specified capability" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:63 -#, fuzzy msgid "List the sections that are available" -msgstr "Only perform operations that are trivial" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:64 msgid "Same as list but only prints first two columns, not truncated" @@ -60689,43 +56484,36 @@ msgid "Same as list but avoids truncating package names" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:66 -#, fuzzy msgid "Dist-upgrade using packages already downloaded" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:67 msgid "Upgrade using packages already downloaded, but not any others" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:68 -#, fuzzy msgid "Runs the madison command of apt-cache." -msgstr "Run commands from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:69 -#, fuzzy msgid "Move packages in the download cache to a local Debian mirror" -msgstr "Move packages from cache to local mirror" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:70 -#, fuzzy msgid "List packages that became available since last update" -msgstr "List packages with newer versions available for upgrading" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:71 -#, fuzzy msgid "Obtain the latest news about the package" -msgstr "List all the files in each selected package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:72 -#, fuzzy msgid "List packages newly available for upgrading" -msgstr "List packages with newer versions available for upgrading" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:73 -#, fuzzy msgid "List installed packages that do not meet the DFSG" -msgstr "Update installed packages with newer versions" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:75 #: /tmp/fish/implicit/share/completions/wajig.fish:89 @@ -60737,9 +56525,8 @@ msgid "From preferences file show priorities/policy (available)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:77 -#, fuzzy msgid "Remove one or more packages and configuration files" -msgstr "Remove one or more packages (see also purge)" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:78 msgid "Purge package and those it depend on and not required by others" @@ -60909,9 +56696,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:3 #: /tmp/fish/implicit/share/completions/watch.fish:4 -#, fuzzy msgid "Highlight changes between updates" -msgstr "Time between screen updates" +msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:5 msgid "Exit if command has a non-zero exit" @@ -60922,9 +56708,8 @@ msgid "Exit when output from command changes" msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:7 -#, fuzzy msgid "Seconds to wait between updates" -msgstr "Time to wait between requesting more peers" +msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:8 msgid "Attempt run command in precise intervals" @@ -60935,9 +56720,8 @@ msgid "Turn off header" msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:10 -#, fuzzy msgid "Pass command to exec instead of \"sh -c\"" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:1 msgid "Print byte counts" @@ -60956,9 +56740,8 @@ msgid "Print length of longest line" msgstr "Print length of longest line" #: /tmp/fish/implicit/share/completions/wc.fish:5 -#, fuzzy msgid "Print word counts" -msgstr "Print byte counts" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:1 msgid "Number sets BitsPerPixel value" @@ -60998,9 +56781,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:8 -#, fuzzy msgid "Savegame loads the file savegame from the standard save game directory" -msgstr "Remove all downloaded .deb files from the package cache directory" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:9 msgid "Set the severity level of debugging domains" @@ -61019,23 +56801,20 @@ msgid "Runs the game without sounds and music" msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:13 -#, fuzzy msgid "Prints the name of the game data directory and exits" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:14 -#, fuzzy msgid "XxY sets the screen resolution" -msgstr "save the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:15 msgid "Runs the game in a small test scenario" msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:16 -#, fuzzy msgid "Shows the version number and exits" -msgstr "Show version number and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:17 msgid "Runs the game in windowed mode" @@ -61107,9 +56886,8 @@ msgid "Go to background immediately after startup" msgstr "Go to background immediately after startup" #: /tmp/fish/implicit/share/completions/wget.fish:4 -#, fuzzy msgid "Execute command as if part of .wgetrc" -msgstr "Execute command if previous command failed" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:5 msgid "Log all messages to logfile" @@ -61270,9 +57048,8 @@ msgid "Disable server-side cache" msgstr "Disable server-side cache" #: /tmp/fish/implicit/share/completions/wget.fish:49 -#, fuzzy msgid "Disable the use of cookies" -msgstr "Save session cookies" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:50 msgid "Load cookies from file" @@ -61328,43 +57105,36 @@ msgid "Turn off keep-alive for http downloads" msgstr "Turn off keep-alive for http downloads" #: /tmp/fish/implicit/share/completions/wget.fish:63 -#, fuzzy msgid "Choose secure protocol" -msgstr "Reject protocols" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:64 -#, fuzzy msgid "Only follow secure HTTPS links" -msgstr "Always follow symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:65 msgid "Don't validate the server's certificate" msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:66 -#, fuzzy msgid "Client certificate file" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:67 -#, fuzzy msgid "Client certificate type" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:68 -#, fuzzy msgid "Private key file" -msgstr "Write to file" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:69 -#, fuzzy msgid "Private key type" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:70 -#, fuzzy msgid "File with the bundle of CAs" -msgstr "Edit the patch bundle description" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:71 msgid "Directory where hash list of CAs is stored" @@ -61387,9 +57157,8 @@ msgid "Disable HSTS" msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:76 -#, fuzzy msgid "Path of HSTS database" -msgstr "Print database" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:77 msgid "Don't remove the temporary .listing files generated" @@ -61491,9 +57260,8 @@ msgstr "Specify a comma-separated list of directories you wish to exclude" #: /tmp/fish/implicit/share/completions/wget.fish:100 #: /tmp/fish/implicit/share/completions/wget.fish:101 -#, fuzzy msgid "Do not ever ascend to the parent directory" -msgstr "Download the packages to the current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/which.fish:1 #: /tmp/fish/implicit/share/completions/which.fish:13 @@ -61505,9 +57273,8 @@ msgid "Read aliases from stdin, reporting matching ones on stdout" msgstr "" #: /tmp/fish/implicit/share/completions/which.fish:3 -#, fuzzy msgid "Ignore option '--read-alias'" -msgstr "Ignore option “--read-functions”" +msgstr "" #: /tmp/fish/implicit/share/completions/which.fish:4 msgid "" @@ -61555,9 +57322,8 @@ msgid "Print time of last boot" msgstr "Print time of last boot" #: /tmp/fish/implicit/share/completions/who.fish:3 -#, fuzzy msgid "Print dead processes" -msgstr "Print processor" +msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:4 msgid "Print line of headings" @@ -61621,9 +57387,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wicd-client.fish:3 #: /tmp/fish/implicit/share/completions/wicd-gtk.fish:3 -#, fuzzy msgid "Print this help information." -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-client.fish:4 #: /tmp/fish/implicit/share/completions/wicd-gtk.fish:4 @@ -61636,19 +57401,16 @@ msgid "Don't display anything except notifications." msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:2 -#, fuzzy msgid "Scan for networks" -msgstr "add a network" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:3 -#, fuzzy msgid "List networks" -msgstr "disable a network" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:4 -#, fuzzy msgid "Show network details" -msgstr "get network variables" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:5 msgid "Disconnect" @@ -61659,47 +57421,40 @@ msgid "Connect" msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:7 -#, fuzzy msgid "List encryption types" -msgstr "List entries by lines" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:8 msgid "Perform operation on wireless network" msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:9 -#, fuzzy msgid "Perform operation on wired network" -msgstr "Only perform operations that are trivial" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:10 -#, fuzzy msgid "Save profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:11 -#, fuzzy msgid "Load profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:12 msgid "Set name for profile to save/load" msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:13 -#, fuzzy msgid "Get or set network property" -msgstr "Retrieve revision property" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:14 -#, fuzzy msgid "Set network property to" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:15 -#, fuzzy msgid "Set the network" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:1 msgid "get current WPA/EAPOL/EAP status" @@ -61862,9 +57617,8 @@ msgid "Run wvdial with alternative config file" msgstr "" #: /tmp/fish/implicit/share/completions/wvdial.fish:4 -#, fuzzy msgid "Don't output debug information" -msgstr "Don't print group information" +msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:1 msgid "" @@ -61927,14 +57681,12 @@ msgid "Run up to max-procs processes at a time" msgstr "Run up to max-procs processes at a time" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:1 -#, fuzzy msgid "Query information" -msgstr "Print extra information" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:2 -#, fuzzy msgid "Query default application for type" -msgstr "Output default action for mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:3 msgid "Query file's filetype" @@ -61945,35 +57697,29 @@ msgid "Choose application" msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:5 -#, fuzzy msgid "Mimetype" -msgstr "Show time type" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:6 -#, fuzzy msgid "Add filetype description" -msgstr "Append filetype indicator" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:7 #: /tmp/fish/implicit/share/completions/xdg-mime.fish:10 -#, fuzzy msgid "Set mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:8 -#, fuzzy msgid "Disable vendor check" -msgstr "Disable server-side cache" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:9 -#, fuzzy msgid "Remove filetype description" -msgstr "Redirect to file descriptor" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:12 -#, fuzzy msgid "Diplay long help" -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:1 msgid "Get list of input files from FILE" @@ -62007,9 +57753,8 @@ msgid "Encoding of input files (except for Python, Tcl, Glade)" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:9 -#, fuzzy msgid "Join messages with existing file" -msgstr "Log all messages to logfile" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:10 msgid "Entries from FILE" @@ -62056,9 +57801,8 @@ msgid "More detailed formatstring recognition result" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:19 -#, fuzzy msgid "Do not use C escapes in output (default)" -msgstr "Don't use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:20 msgid "Use C escapes in output, no extended chars" @@ -62069,14 +57813,12 @@ msgid "Write PO file even if empty" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:22 -#, fuzzy msgid "Write the" -msgstr "Write to file" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:23 -#, fuzzy msgid "Do not write #: filename:line lines" -msgstr "Do not overwrite newer files" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:24 msgid "Generate #: filename:line lines (default)" @@ -62087,18 +57829,16 @@ msgid "Write out strict Uniforum conforming" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:26 -#, fuzzy msgid "Write out a Java" -msgstr "Write out setting names" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:27 msgid "Write out a NeXTstep/GNUstep" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:28 -#, fuzzy msgid "Set output page width" -msgstr "Select output delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:29 msgid "" @@ -62107,23 +57847,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:30 -#, fuzzy msgid "Generate sorted output" -msgstr "Generate dired output" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:31 -#, fuzzy msgid "Sort output by file location" -msgstr "Sort by modification time" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:32 msgid "Dont write header with msgid \"\" entry" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:33 -#, fuzzy msgid "Set copyright holder in output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:34 msgid "Omit FSF copyright in output for foreign user" @@ -62142,33 +57879,28 @@ msgid "Use STRING or \"\" as suffix for msgstr entries" msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:1 -#, fuzzy msgid "Show summary of options" -msgstr "Show all options" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:2 -#, fuzzy msgid "Select XMMS session (Default: 0)" -msgstr "Select by session ID" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:3 msgid "Skip backwards in playlist" msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:4 -#, fuzzy msgid "Start playing current playlist" -msgstr "Set or get all current limits" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:5 -#, fuzzy msgid "Pause current song" -msgstr "Displays the current mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:6 -#, fuzzy msgid "Stop current song" -msgstr "Show current path" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:7 msgid "Pause if playing, play otherwise" @@ -62183,19 +57915,16 @@ msgid "Don't clear the playlist" msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:10 -#, fuzzy msgid "Show the main window" -msgstr "Show help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:1 -#, fuzzy msgid "Set the initial window geometry" -msgstr "Set the terminal color" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:2 -#, fuzzy msgid "Set the window title" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:3 msgid "Install a private colormap" @@ -62206,28 +57935,24 @@ msgid "Set the size of the largest RGB cube xpdf will try to allocate" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:5 -#, fuzzy msgid "Set reverse video mode" -msgstr "Server mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:6 -#, fuzzy msgid "Set the background of the page display" -msgstr "Create window on the specified display" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:7 msgid "Set the color for background outside the page area" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:8 -#, fuzzy msgid "Set the initial zoom factor" -msgstr "Set the maximum fuzz factor" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:9 -#, fuzzy msgid "Start in continuous view mode" -msgstr "Start in lisp mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:10 msgid "Enable or disable t1lib (Default: yes)" @@ -62246,9 +57971,8 @@ msgid "Set the default file name for PostScript output" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:14 -#, fuzzy msgid "Set the paper size" -msgstr "Set memory buffer size" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:15 msgid "Set the paper width, in points" @@ -62259,29 +57983,24 @@ msgid "Set the paper height, in points" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:17 -#, fuzzy msgid "Generate Level 1 PostScript" -msgstr "Generate dired output" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:18 -#, fuzzy msgid "Sets the encoding to use for text output" -msgstr "Neither verbose nor quiet output" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:19 -#, fuzzy msgid "Sets the end-of-line convention to use" -msgstr "Set the end of file string to eof-str" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:20 -#, fuzzy msgid "Specify the owner password for the PDF file" -msgstr "Specify the proxy password" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:21 -#, fuzzy msgid "Specify the user password for the PDF file" -msgstr "Specify the proxy password" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:22 msgid "Open xpdf in full-screen mode" @@ -62300,24 +58019,20 @@ msgid "Raise xpdf remote server window" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:26 -#, fuzzy msgid "Kill xpdf remote server" -msgstr "display the remote gem servers" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:27 -#, fuzzy msgid "Print commands as they're executed" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:29 -#, fuzzy msgid "Specify config file to use instead of ~/.xpdfrc" -msgstr "Specify an initialization file to read instead of ~/.muttrc" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:30 -#, fuzzy msgid "Print copyright and version information" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/xprop.fish:2 msgid "Display grammar and exit" @@ -62372,9 +58087,8 @@ msgid "Examine property updates forever" msgstr "Examine property updates forever" #: /tmp/fish/implicit/share/completions/xprop.fish:15 -#, fuzzy msgid "Set format" -msgstr "Short format" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:2 msgid "Make no changes" @@ -62385,23 +58099,20 @@ msgid "Apply modifications without grabbing the screen" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:4 -#, fuzzy msgid "Print out a summary of the usage and exit" -msgstr "Print help message and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:5 msgid "Print out the RandR version reported by the X server and exit" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:6 -#, fuzzy msgid "Display the current state of the system" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:7 -#, fuzzy msgid "Select X display to use" -msgstr "Select how to display key IDs" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:8 msgid "Select which screen to manipulate" @@ -62420,14 +58131,12 @@ msgid "Set the screen size (index or width x height)" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:12 -#, fuzzy msgid "Set the refresh rate closest to the specified value" -msgstr "Set the list of default preferences to the specified string" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:13 -#, fuzzy msgid "Specify the orientation of the screen" -msgstr "Specify the subject of the message" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:14 msgid "Reflect across the X axis" @@ -62438,14 +58147,12 @@ msgid "Reflect across the Y axis" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:16 -#, fuzzy msgid "Display the contents of properties for each output" -msgstr "Display the contents of the installed gems" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:17 -#, fuzzy msgid "Set screen size" -msgstr "Set context size" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:18 msgid "Set reported physical screen size" @@ -62456,14 +58163,12 @@ msgid "Set dpi to calculate reported physical screen size" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:20 -#, fuzzy msgid "Add new mode" -msgstr "Add a new key" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:21 -#, fuzzy msgid "Removes a mode from the server" -msgstr "Removes a key from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:22 msgid "Add a mode to the set of valid modes for an output" @@ -62474,18 +58179,16 @@ msgid "Remove a mode from the set of valid modes for an output" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:24 -#, fuzzy msgid "Selects an output to reconfigure" -msgstr "Select an option profile" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:25 msgid "Enable connected but disabled outputs" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:26 -#, fuzzy msgid "This selects a mode" -msgstr "Select a method" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:27 msgid "" @@ -62498,42 +58201,36 @@ msgid "Set output position within the secreen in pixels" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:29 -#, fuzzy msgid "Set refresh rate" -msgstr "Set referer URL" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:30 -#, fuzzy msgid "Set reflection" -msgstr "Invert selection" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:31 -#, fuzzy msgid "Set rotation" -msgstr "Select an action" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:32 #: /tmp/fish/implicit/share/completions/xrandr.fish:33 #: /tmp/fish/implicit/share/completions/xrandr.fish:34 #: /tmp/fish/implicit/share/completions/xrandr.fish:35 #: /tmp/fish/implicit/share/completions/xrandr.fish:36 -#, fuzzy msgid "Set position relative to the output" -msgstr "Set the verbose level of output" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:37 msgid "Set the property value: --set " msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:38 -#, fuzzy msgid "Disables the output" -msgstr "Add label to output" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:39 -#, fuzzy msgid "Set the crtc" -msgstr "Set quote char" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:40 msgid "Set gamma correction [red:green:blue]" @@ -62544,14 +58241,12 @@ msgid "Set brightness. Multiplies gamma galues by brightness value" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:42 -#, fuzzy msgid "Don't define a primary output" -msgstr "Run adb devices and parse output" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:43 -#, fuzzy msgid "Print current screen configuration" -msgstr "Write out the current configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:44 msgid "" @@ -62566,18 +58261,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:46 -#, fuzzy msgid "Set scren scale" -msgstr "Set server name" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:47 msgid "Set the output as primary" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:1 -#, fuzzy msgid "display to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:2 msgid "do all resources [default]" @@ -62604,57 +58297,48 @@ msgid "preprocessor to use [/usr/bin/mcpp]" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:8 -#, fuzzy msgid "do not use a preprocessor" -msgstr "Do not use integrated preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:9 -#, fuzzy msgid "query resources" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:10 -#, fuzzy msgid "load resources from file [default]" -msgstr "Load cookies from file" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:11 -#, fuzzy msgid "add in resources from file" -msgstr "Load index from file" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:12 -#, fuzzy msgid "merge resources from file & sort" -msgstr "Supress errors from file" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:13 -#, fuzzy msgid "edit resources into file" -msgstr "Set sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:14 msgid "backup suffix for -edit [.bak]" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:15 -#, fuzzy msgid "show preprocessor symbols" -msgstr "Preprocessors" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:16 -#, fuzzy msgid "remove resources" -msgstr "Remove records" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:17 msgid "avoid server reset (avoid using this)" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:18 -#, fuzzy msgid "don't warn about duplicates" -msgstr "Only print duplicates" +msgstr "" #: /tmp/fish/implicit/share/completions/xsel.fish:1 msgid "Append input to selection" @@ -62725,18 +58409,16 @@ msgid "Never highlight the text cursor" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:2 -#, fuzzy msgid "Enable active icon support" -msgstr "Enable suspension support" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:3 msgid "Disallow auto wraparound" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:4 -#, fuzzy msgid "Turn off cursor blinking" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:5 msgid "Enable the display of bold characters" @@ -62763,9 +58445,8 @@ msgid "Don't workaround the bug in more(1)" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:11 -#, fuzzy msgid "Disable dynamic color changing" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:12 msgid "Don't ensure compatibility between normal and bold fonts bounding boxes" @@ -62788,23 +58469,20 @@ msgid "Don't use pseudo-terminal's sense of the stty erase value" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:17 -#, fuzzy msgid "Don't force insert mode" -msgstr "Don't use batch mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:18 -#, fuzzy msgid "Don't use jump scrolling" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:19 msgid "Don't treat C1 control characters as printable" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:20 -#, fuzzy msgid "Turn off logging" -msgstr "Turn off FTP globbing" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:21 msgid "Turn off support for encodings according the locale setting" @@ -62827,9 +58505,8 @@ msgid "Don't use builtin version for the wide-character calculation" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:26 -#, fuzzy msgid "Enable underlining" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:27 msgid "Disable PC style bold colors" @@ -62848,18 +58525,16 @@ msgid "Disable reverse-wraparound" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:31 -#, fuzzy msgid "Turn off asynchronous scrolling" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:32 msgid "Send title/icon change requests always" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:33 -#, fuzzy msgid "Don't display scrollbar" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:34 msgid "Don't generate Sun Function Key escape codes for function keys" @@ -62886,41 +58561,36 @@ msgid "VT102 mode" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:40 -#, fuzzy msgid "Don't display toolbar or menubar" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:41 -#, fuzzy msgid "Don't use UTF-8" -msgstr "Don't recurse" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:42 msgid "Display characters with underline attribute as color" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:43 -#, fuzzy msgid "Write to the system utmp log file" -msgstr "Write top servers to file" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:44 msgid "Don't use visual bell insead of audio bell" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:45 -#, fuzzy msgid "Don't use wide characters" -msgstr "Do not use backslash escaped characters" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:46 msgid "Don't wait the first time for the window to be mapped" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:47 -#, fuzzy msgid "Print version number to the standard output" -msgstr "Print version information and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:48 msgid "Print out a verbose message describing the options" @@ -62935,18 +58605,16 @@ msgid "Always highlight the text cursor" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:51 -#, fuzzy msgid "Disable active icon support" -msgstr "Enable suspension support" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:52 msgid "Allow auto wraparound" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:53 -#, fuzzy msgid "Turn on cursor blinking" -msgstr "Turn on recursive retrieving" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:54 msgid "Disable the display of bold characters" @@ -62957,9 +58625,8 @@ msgid "Set the vt100 resource cutToBeginningOfLine to 'false'" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:56 -#, fuzzy msgid "Set character class" -msgstr "Print character counts" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:57 msgid "Set the cjkWidth resource to 'true'" @@ -63002,9 +58669,8 @@ msgid "Use pseudo-terminal's sense of the stty erase value" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:67 -#, fuzzy msgid "Force insert mode" -msgstr "Forced stop" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:68 msgid "Treat C1 control characters as printable" @@ -63019,9 +58685,8 @@ msgid "Force scrollbar to the left side" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:71 -#, fuzzy msgid "The shell in xterm's window will be login shell" -msgstr "Test if this is a login shell" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:72 msgid "Ring bell if the user types near the end of line" @@ -63036,9 +58701,8 @@ msgid "Use builtin version for the wide-character calculation" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:75 -#, fuzzy msgid "Disable underlining" -msgstr "Disable warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:76 msgid "Enable PC style bold colors" @@ -63065,9 +58729,8 @@ msgid "Don't send title/icon change requests always" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:82 -#, fuzzy msgid "Display scrollbar" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:83 msgid "Generate Sun Function Key escape codes for function keys" @@ -63090,9 +58753,8 @@ msgid "Assume Sun/PC keyboard" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:88 -#, fuzzy msgid "Display toolbar or menubar" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:89 msgid "Use UTF-8" @@ -63111,9 +58773,8 @@ msgid "Use visual bell insead of audio bell" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:93 -#, fuzzy msgid "Use wide characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:94 msgid "Wait the first time for the window to be mapped" @@ -63232,70 +58893,60 @@ msgid "Use jump scrolling" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:124 -#, fuzzy msgid "Turn on logging" -msgstr "Turn on Ruby debugging" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:125 msgid "Turn on asynchronous scrolling" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:126 -#, fuzzy msgid "Tektronix mode" -msgstr "Question mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:127 msgid "This window should receive console output" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:1 -#, fuzzy msgid "Compress" -msgstr "Compression" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:2 -#, fuzzy msgid "Decompress" -msgstr "Decompress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:3 -#, fuzzy msgid "Test the integrity of compressed files" -msgstr "Remove an entry from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:4 -#, fuzzy msgid "Print information about compressed files" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:5 -#, fuzzy msgid "Don't delete the input files" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:6 -#, fuzzy msgid "Write to stdout instead of file" -msgstr "Write top servers to file" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:7 msgid "Decompress only the first .xz stream" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:8 -#, fuzzy msgid "Disable creation of sparse files" -msgstr "Control creation of sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:9 msgid "Use SUFFIX as the suffix for target file" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:10 -#, fuzzy msgid "Read the filenames to process from file" -msgstr "Read the log message from file." +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:11 msgid "Identical to --files but filenames terminate with \\0" @@ -63306,38 +58957,32 @@ msgid "Specify file format to compress/decompress" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:13 -#, fuzzy msgid "Specify type of integrity check" -msgstr "Specify port for web interface" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:14 -#, fuzzy msgid "Don't verify the integrity check" -msgstr "Don't verify time attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:15 -#, fuzzy msgid "Select compression level" -msgstr "Compression level" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:16 msgid "Use slower variant" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:17 -#, fuzzy msgid "Alias of -0" -msgstr "Alias for atq" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:18 -#, fuzzy msgid "Alias of -9" -msgstr "Alias for atq" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:20 -#, fuzzy msgid "Set block sizes list" -msgstr "Set block size" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:21 msgid "Force flush if encoder did not fush after TIMEOUT ms" @@ -63360,9 +59005,8 @@ msgid "Display error and exit if exceed memory usage limit" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:26 -#, fuzzy msgid "Specify the number of worker threads to use" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:27 msgid "Add LZMA1 filter to filter chain" @@ -63381,28 +59025,24 @@ msgid "Add Delta filter to filter chain" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:31 -#, fuzzy msgid "Suppress warnings/notices" -msgstr "Suppress printing filename" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:33 -#, fuzzy msgid "Don't set the exit status to 2" -msgstr "Negate exit status of job" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:34 msgid "Print messages in a machine-parsable format" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:35 -#, fuzzy msgid "Display memory informations (physical, usage limits)" -msgstr "Display detailed information of gem(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:37 -#, fuzzy msgid "Display long help" -msgstr "Display a help page" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:13 msgid "Backup or restore alpm local database" @@ -63421,9 +59061,8 @@ msgid "Show some statistics about your packages" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:29 -#, fuzzy msgid "Force color" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:30 msgid "Force installation or updates" @@ -63434,48 +59073,40 @@ msgid "Allow to perform \"insecure\" SSL connections" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:32 -#, fuzzy msgid "Disable color" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:33 -#, fuzzy msgid "Always ask for confirmation" -msgstr "Ask for confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:35 msgid "Export built packages and their sources to DIR" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:36 -#, fuzzy msgid "Use DIR as temporary folder" -msgstr "Use tmpdir for temporary files" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:54 -#, fuzzy msgid "Show packages that conflict with one of the targets" -msgstr "Search for packages matching one of the patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:55 -#, fuzzy msgid "Show packages that depend on one of the targets" -msgstr "Search for packages matching one of the patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:56 -#, fuzzy msgid "Show packages that provide one of the targets" -msgstr "Search for packages matching one of the patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:57 -#, fuzzy msgid "Show packages that replace one of the targets" -msgstr "Search for packages matching one of the patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:58 -#, fuzzy msgid "Query the package names only" -msgstr "Search packagename only" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:70 msgid "Query FILE instead of alpm/aur" @@ -63494,23 +59125,20 @@ msgid "Pass -A or --ignorearch option to makepkg" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:85 -#, fuzzy msgid "Specify a custom AUR url" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:86 msgid "Build from sources(AUR or ABS)" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:87 -#, fuzzy msgid "Also build all dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:88 -#, fuzzy msgid "Search an update for devel packages" -msgstr "Retrieve and unpack sources for the named packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:89 msgid "Search packages by maintainer instead of name (AUR only)" @@ -63521,19 +59149,16 @@ msgid "Pass additional options to makepkg" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:106 -#, fuzzy msgid "Clean all these files" -msgstr "Clean local caches" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:107 -#, fuzzy msgid "Also install the package" -msgstr "Reinstall the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:1 -#, fuzzy msgid "output usage information" -msgstr "Could not get user information" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:3 msgid "output verbose messages on internal operations" @@ -63550,9 +59175,8 @@ msgid "use network only if dependencies are not available in local cache" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:6 -#, fuzzy msgid "don't run lifecycle scripts" -msgstr "Don't run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:7 msgid "save HAR output of network traffic" @@ -63563,37 +59187,32 @@ msgid "ignore platform checks" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:9 -#, fuzzy msgid "ignore engines check" -msgstr "Ignore changes in case" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:10 -#, fuzzy msgid "ignore optional dependencies" -msgstr "Correct broken dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:11 -#, fuzzy msgid "ignore all caches" -msgstr "Search ignores all case" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:12 msgid "don't generate bin links when setting up packages" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:13 -#, fuzzy msgid "only allow one version of a package" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:14 msgid "don't read or generate a lockfile" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:15 -#, fuzzy msgid "don't generate a lockfile" -msgstr "Generate release file" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:16 msgid "don't generate a lockfile and fail if an update is needed" @@ -63606,37 +59225,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:18 -#, fuzzy msgid "specify a custom folder to store the yarn cache" -msgstr "Select file to store source cache" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:19 msgid "use a mutex to ensure only one yarn instance is executing" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:20 -#, fuzzy msgid "disable emoji in output" -msgstr "Use colors in output" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:21 -#, fuzzy msgid "disable progress bar" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:22 -#, fuzzy msgid "maximum number of concurrent network requests" -msgstr "Minimum number of peers to not do requesting" +msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:1 msgid "Module" msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:3 -#, fuzzy msgid "List all available modules" -msgstr "List all available products" +msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:4 msgid "Use the QT graphical user interface" @@ -63659,63 +59273,52 @@ msgid "No window manager border for main window" msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:9 -#, fuzzy msgid "Use full screen" -msgstr "Full screen" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:1 -#, fuzzy msgid "Install the latest version of a package" -msgstr "Install the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:2 -#, fuzzy msgid "Update specified packages (defaults to all packages)" -msgstr "Exclude specified package from updates" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:3 -#, fuzzy msgid "Print list of available updates" -msgstr "List available updates" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:4 -#, fuzzy msgid "Remove the specified packages and packages that depend on them" -msgstr "Download package and any packages it depends on" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:5 -#, fuzzy msgid "List available packages" -msgstr "List all available packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:6 -#, fuzzy msgid "Describe available packages" -msgstr "List all available packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:7 msgid "Find package providing a feature or file" msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:8 -#, fuzzy msgid "find packages matching description regexp" -msgstr "Ignore changes matching regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:9 -#, fuzzy msgid "Clean up cache directory" -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:10 -#, fuzzy msgid "Generate rss changelog" -msgstr "Generate man page" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:14 -#, fuzzy msgid "Set debug level" -msgstr "change debug level" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:15 msgid "Set error level" @@ -63738,14 +59341,12 @@ msgid "Specify installroot" msgstr "Specify installroot" #: /tmp/fish/implicit/share/completions/yum.fish:21 -#, fuzzy msgid "Enable repository" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:22 -#, fuzzy msgid "Disable repository" -msgstr "Dumps the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:23 msgid "Enables obsolets processing logic" @@ -63760,29 +59361,24 @@ msgid "Exclude specified package from updates" msgstr "Exclude specified package from updates" #: /tmp/fish/implicit/share/completions/yum.fish:26 -#, fuzzy msgid "List all packages" -msgstr "Install packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:27 -#, fuzzy msgid "List packages available for installation" -msgstr "List packages with newer versions available for upgrading" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:28 -#, fuzzy msgid "List packages with updates available" -msgstr "List packages with newer versions available for upgrading" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:30 -#, fuzzy msgid "List packages not available in repositories" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:31 -#, fuzzy msgid "List packages that are obsoleted by packages in repositories" -msgstr "List packages that may serve as input to mirrorbin or mirrorsource" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:32 msgid "Delete cached package files" @@ -64422,9 +60018,8 @@ msgid "Move into zipfile (delete files)" msgstr "Move into zipfile (delete files)" #: /tmp/fish/implicit/share/completions/zip.fish:6 -#, fuzzy msgid "Do not store directory names" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/zip.fish:7 msgid "Do not compress at all" @@ -65142,68 +60737,56 @@ msgid "Download source rpms for all installed packages to a local directory" msgstr "Download source rpms for all installed packages to a local directory" #: /tmp/fish/implicit/share/completions/zypper.fish:48 -#, fuzzy msgid "Output the version number" -msgstr "Version number" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:49 -#, fuzzy msgid "Use specified config file instead of the default" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:50 -#, fuzzy msgid "Suppress normal output, print only error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:52 -#, fuzzy msgid "Do not abbreviate text in tables" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:53 -#, fuzzy msgid "Table style (integer)" -msgstr "Test zipfile integrity" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:54 -#, fuzzy msgid "Turn on rug compatibility" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:55 msgid "Do not ask anything, use default answers automatically" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:56 -#, fuzzy msgid "Switch to XML output" -msgstr "Set width of output" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:57 -#, fuzzy msgid "Ignore unknown packages" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:58 -#, fuzzy msgid "Use an additional repository" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:59 -#, fuzzy msgid "Use alternative repository definition file directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:60 -#, fuzzy msgid "Use alternative directory for all caches" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:61 -#, fuzzy msgid "Operate on a different root directory" -msgstr "Create a diff between two versions of the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:62 msgid "" @@ -65219,29 +60802,24 @@ msgid "Automatically trust and import new repository signing keys" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:65 -#, fuzzy msgid "Do not read meta-data from repositories" -msgstr "Do not dump metadata about files" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:66 -#, fuzzy msgid "Do not refresh the repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:67 -#, fuzzy msgid "Ignore CD/DVD repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:68 -#, fuzzy msgid "Ignore remote repositories" -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:69 -#, fuzzy msgid "Do not read installed packages" -msgstr "Do not upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:70 msgid "Output a list of zypper user prompts" @@ -65260,35 +60838,30 @@ msgid "Use alternative solv file cache directory" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:74 -#, fuzzy msgid "Use alternative package cache directory" -msgstr "Remove all downloaded .deb files from the package cache directory" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:75 msgid "Export all defined repositories as a single local .repo file" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:76 -#, fuzzy msgid "Show also repository alias" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:77 -#, fuzzy msgid "Show also repository name" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:78 #: /tmp/fish/implicit/share/completions/zypper.fish:121 -#, fuzzy msgid "Show also base URI of repositories" -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:79 #: /tmp/fish/implicit/share/completions/zypper.fish:122 -#, fuzzy msgid "Show also repository priority" -msgstr "Show repository access history" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:80 msgid "Show also the autorefresh flag" @@ -65310,9 +60883,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:84 #: /tmp/fish/implicit/share/completions/zypper.fish:125 -#, fuzzy msgid "Sort the list by repository priority" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:85 msgid "Sort the list by alias" @@ -65320,9 +60892,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:86 #: /tmp/fish/implicit/share/completions/zypper.fish:127 -#, fuzzy msgid "Sort the list by name" -msgstr "Show or set the system's host name\r" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:87 msgid "Just another means to specify a .repo file to read" @@ -65333,23 +60904,20 @@ msgid "Type of repository (yast2, rpm-md, plaindir)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:89 -#, fuzzy msgid "Add the repository as disabled" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:90 -#, fuzzy msgid "Probe URI" -msgstr "Probe a CD" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:91 msgid "Don't probe URI, probe later during refresh" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:92 -#, fuzzy msgid "Specify descriptive name for the repository" -msgstr "Remove an entry from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:93 #: /tmp/fish/implicit/share/completions/zypper.fish:106 @@ -65358,26 +60926,22 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:94 #: /tmp/fish/implicit/share/completions/zypper.fish:107 -#, fuzzy msgid "Disable RPM files caching" -msgstr "Disable file modification" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:95 #: /tmp/fish/implicit/share/completions/zypper.fish:108 -#, fuzzy msgid "Enable GPG check for this repository" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:96 #: /tmp/fish/implicit/share/completions/zypper.fish:109 -#, fuzzy msgid "Disable GPG check for this repository" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:97 -#, fuzzy msgid "Enable autorefresh of the repository" -msgstr "Restore files from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:98 #: /tmp/fish/implicit/share/completions/zypper.fish:146 @@ -65386,67 +60950,56 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:99 #: /tmp/fish/implicit/share/completions/zypper.fish:147 -#, fuzzy msgid "Ignore query string in the URI" -msgstr "Ignore files ending with ~" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:100 msgid "Disable the repository (but don't remove it)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:101 -#, fuzzy msgid "Enable a disabled repository" -msgstr "Rename specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:102 -#, fuzzy msgid "Enable auto-refresh of the repository" -msgstr "Restore files from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:103 -#, fuzzy msgid "Disable auto-refresh of the repository" -msgstr "Restore files from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:104 -#, fuzzy msgid "Set a descriptive name for the repository" -msgstr "Adds an encryption key to the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:105 -#, fuzzy msgid "Set priority of the repository" -msgstr "Remove an entry from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:110 -#, fuzzy msgid "Apply changes to all repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:111 -#, fuzzy msgid "Apply changes to all local repositories" -msgstr "Install a gem into the local repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:112 -#, fuzzy msgid "Apply changes to all remote repositories" -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:113 -#, fuzzy msgid "Apply changes to repositories of specified type" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:114 msgid "Force a complete refresh" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:115 -#, fuzzy msgid "Force rebuild of the database" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:116 msgid "Force download of raw metadata" @@ -65461,9 +61014,8 @@ msgid "Only download raw metadata, don't build the database" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:119 -#, fuzzy msgid "Refresh only specified repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:120 msgid "Refresh also services before refreshing repos" @@ -65474,19 +61026,16 @@ msgid "Show also repositories belonging to the services" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:128 -#, fuzzy msgid "Type of the service (ris)" -msgstr "Number of top servers" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:129 -#, fuzzy msgid "Add the service as disabled" -msgstr "Prints services installed" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:130 -#, fuzzy msgid "Specify descriptive name for the service" -msgstr "Specify version for gem to view" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:131 msgid "Disable the service (but don't remove it)" @@ -65509,34 +61058,28 @@ msgid "Set a descriptive name for the service" msgstr "Set a descriptive name for the service" #: /tmp/fish/implicit/share/completions/zypper.fish:136 -#, fuzzy msgid "Add a RIS service repository to enable" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:137 -#, fuzzy msgid "Add a RIS service repository to disable" -msgstr "Add a new repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:138 -#, fuzzy msgid "Remove a RIS service repository to enable" -msgstr "Remove specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:139 -#, fuzzy msgid "Remove a RIS service repository to disable" -msgstr "Remove specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:140 -#, fuzzy msgid "Clear the list of RIS repositories to enable" -msgstr "Clear list of configuration files to read" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:141 -#, fuzzy msgid "Clear the list of RIS repositories to disable" -msgstr "Clear list of configuration files to read" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:142 msgid "Apply changes to all services" @@ -65547,19 +61090,16 @@ msgid "Apply changes to all local services" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:144 -#, fuzzy msgid "Apply changes to all remote services" -msgstr "display the remote gem servers" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:145 -#, fuzzy msgid "Apply changes to services of specified type" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:148 -#, fuzzy msgid "Refresh also repositories" -msgstr "Refresh all repositories" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:149 #: /tmp/fish/implicit/share/completions/zypper.fish:165 @@ -65567,9 +61107,8 @@ msgstr "Refresh all repositories" #: /tmp/fish/implicit/share/completions/zypper.fish:190 #: /tmp/fish/implicit/share/completions/zypper.fish:213 #: /tmp/fish/implicit/share/completions/zypper.fish:276 -#, fuzzy msgid "Load only the specified repository" -msgstr "Modify specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:150 msgid "" @@ -65584,9 +61123,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:152 #: /tmp/fish/implicit/share/completions/zypper.fish:168 -#, fuzzy msgid "Select packages by capability" -msgstr "List packages providing specified capability" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:153 msgid "" @@ -65618,9 +61156,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:194 #: /tmp/fish/implicit/share/completions/zypper.fish:216 #: /tmp/fish/implicit/share/completions/zypper.fish:278 -#, fuzzy msgid "Only download the packages, do not install" -msgstr "Download the packages to the current directory" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:158 msgid "" @@ -65650,9 +61187,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:201 #: /tmp/fish/implicit/share/completions/zypper.fish:219 #: /tmp/fish/implicit/share/completions/zypper.fish:283 -#, fuzzy msgid "Install also recommended packages in addition to the required" -msgstr "Install source packages and their build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:162 #: /tmp/fish/implicit/share/completions/zypper.fish:174 @@ -65661,9 +61197,8 @@ msgid "Force the solver to find a solution (even an aggressive one)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:163 -#, fuzzy msgid "Select packages from the specified repository" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:164 #: /tmp/fish/implicit/share/completions/zypper.fish:179 @@ -65683,14 +61218,12 @@ msgid "Type of package (package, patch, pattern, product). Default: package" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:170 -#, fuzzy msgid "Automatically remove unneeded dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:171 -#, fuzzy msgid "No automatic removal of unneeded dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:172 msgid "Test the removal, do not actually remove" @@ -65701,24 +61234,20 @@ msgid "Test the repair, do not actually do anything to the system" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:181 -#, fuzzy msgid "Install only build dependencies of specified packages" -msgstr "list all packages depending on specified package" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:182 -#, fuzzy msgid "Don't install build dependencies" -msgstr "Don't pull in build time dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:183 -#, fuzzy msgid "Install packages only from specified repositories" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:184 -#, fuzzy msgid "Load only the specified repositories" -msgstr "Modify specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:189 msgid "" @@ -65732,9 +61261,8 @@ msgid "Test the update, do not actually update" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:195 -#, fuzzy msgid "Skip interactive updates" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:198 #: /tmp/fish/implicit/share/completions/zypper.fish:205 @@ -65744,59 +61272,50 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:203 -#, fuzzy msgid "List only updates from the specified repository" -msgstr "Rename specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:204 -#, fuzzy msgid "" "List all packages for which newer versions are available, regardless whether " "they are installable or not" -msgstr "List packages with newer versions available for upgrading" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:206 -#, fuzzy msgid "List needed patches for Bugzilla issues" -msgstr "List needed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:207 -#, fuzzy msgid "List all patches in this category" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:208 -#, fuzzy msgid "List all patches, not only the needed ones" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:209 -#, fuzzy msgid "List only patches from the specified repository" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:210 msgid "List patches issued up to the specified date " msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:211 -#, fuzzy msgid "List needed patches for CVE issues" -msgstr "List needed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:212 -#, fuzzy msgid "Look for issues matching the specified string" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:215 msgid "Test the upgrade, do not actually upgrade" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:220 -#, fuzzy msgid "Restrict upgrade to specified repository" -msgstr "Restrict wildcards to specified directory" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:222 msgid "Do not allow installed resolvables to be downgraded" @@ -65831,9 +61350,8 @@ msgid "Allow installed resolvables to switch vendors" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:230 -#, fuzzy msgid "Check for patches only in the specified repository" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:231 msgid "Search also in package summaries and descriptions" @@ -65844,126 +61362,107 @@ msgid "Perform case-sensitive search" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:233 -#, fuzzy msgid "Show only packages that are already installed" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:234 -#, fuzzy msgid "Show only packages that are not currently installed" -msgstr "Mark packages as manually installed" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:235 -#, fuzzy msgid "Search only for packages of the specified type" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:236 -#, fuzzy msgid "Search only in the specified repository" -msgstr "Remove specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:237 msgid "Show each available version in each repository on a separate line" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:238 -#, fuzzy msgid "Sort packages by name (default)" -msgstr "Print package name by prefix" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:239 -#, fuzzy msgid "Sort packages by repository" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:240 msgid "Search for a match with all search strings (default)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:241 -#, fuzzy msgid "Search for a match with any of the search strings" -msgstr "Search for packages matching one of the patterns" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:242 msgid "Search for a match to partial words (default)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:243 -#, fuzzy msgid "Search for a match to whole words only" -msgstr "Search for packages matching a pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:244 -#, fuzzy msgid "Searches for an exact package name" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:245 -#, fuzzy msgid "Work only with the specified repository" -msgstr "Remove specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:247 msgid "Show also requires and prerequires" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:248 -#, fuzzy msgid "Show also recommends" -msgstr "Show all containers" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:249 #: /tmp/fish/implicit/share/completions/zypper.fish:250 #: /tmp/fish/implicit/share/completions/zypper.fish:255 #: /tmp/fish/implicit/share/completions/zypper.fish:258 -#, fuzzy msgid "Just another means to specify repository" -msgstr "List patches in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:251 -#, fuzzy msgid "Show only installed packages" -msgstr "Show manually installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:252 -#, fuzzy msgid "Show only packages which are not installed" -msgstr "Sync packages installed" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:253 -#, fuzzy msgid "Sort the list by package name" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:254 -#, fuzzy msgid "Sort the list by repository" -msgstr "Lists the clients in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:256 -#, fuzzy msgid "Show only installed patterns" -msgstr "Show manually installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:257 msgid "Show only patterns which are not installed" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:259 -#, fuzzy msgid "Show only installed products" -msgstr "Show manually installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:260 msgid "Show only products which are not installed" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:261 -#, fuzzy msgid "Restrict the lock to the specified repository" -msgstr "Restrict wildcards to specified directory" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:262 #: /tmp/fish/implicit/share/completions/zypper.fish:264 @@ -65971,76 +61470,64 @@ msgid "Type of package (package, patch, pattern, product). Default: package" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:263 -#, fuzzy msgid "Remove only locks with specified repository" -msgstr "Remove specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:265 -#, fuzzy msgid "Clean only duplicate locks" -msgstr "Remove non-duplicate lines" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:266 msgid "Clean only locks which doesn't lock anything" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:267 -#, fuzzy msgid "Takes missing release number as any release" -msgstr "missing hexadecimal number in escape" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:268 msgid "Show the operating system label" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:269 -#, fuzzy msgid "Clean only specified repositories" -msgstr "Modify specified repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:270 -#, fuzzy msgid "Clean metadata cache" -msgstr "Clean local caches" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:271 -#, fuzzy msgid "Clean raw metadata cache" -msgstr "Clean local caches" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:272 -#, fuzzy msgid "Clean both metadata and package caches" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:274 -#, fuzzy msgid "Install patch fixing the specified bugzilla issue" -msgstr "Mount partition with specified label" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:275 -#, fuzzy msgid "Install all patches in this category" -msgstr "Install a gem into the local repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:279 -#, fuzzy msgid "Install patch fixing the specified CVE issue" -msgstr "list all packages with specified useflag" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:280 msgid "Install patches issued until the specified date " msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:285 -#, fuzzy msgid "Skip interactive patches" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:286 -#, fuzzy msgid "Do not skip interactive patches" -msgstr "Do not sign the patch" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:287 msgid "" @@ -66049,14 +61536,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:288 -#, fuzzy msgid "Delete extraneous source rpms in the local directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:289 -#, fuzzy msgid "Do not delete extraneous source rpms" -msgstr "Do not del source files" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:290 msgid "" @@ -66068,27 +61553,21 @@ msgstr "" msgid "Manage abbreviations using new fish 3.0 scheme." msgstr "" -#: /tmp/fish/implicit/share/functions/abbr_old.fish:1 -msgid "Manage abbreviations using old fish 2.x scheme." -msgstr "" - #: /tmp/fish/implicit/share/functions/alias.fish:1 msgid "Creates a function wrapping a command" msgstr "" #: /tmp/fish/implicit/share/functions/cdh.fish:1 -#, fuzzy msgid "Menu based cd command" -msgstr "End of command" +msgstr "" #: /tmp/fish/implicit/share/functions/contains_seq.fish:1 msgid "Return true if array contains a sequence" msgstr "Return true if array contains a sequence" #: /tmp/fish/implicit/share/functions/dirh.fish:1 -#, fuzzy msgid "Print the current directory history (the prev and next lists)" -msgstr "Print the current directory history (the back- and fwd- lists)" +msgstr "" #: /tmp/fish/implicit/share/functions/dirs.fish:1 msgid "Print directory stack" @@ -66101,22 +61580,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/edit_command_buffer.fish:1 -#, fuzzy msgid "Edit the command buffer in an external editor" -msgstr "Edit a property with an external editor." - -#: /tmp/fish/implicit/share/functions/eval.fish:1 -msgid "Evaluate parameters as a command" -msgstr "Evaluate parameters as a command" +msgstr "" #: /tmp/fish/implicit/share/functions/_.fish:1 msgid "Alias for the gettext command" msgstr "Alias for the gettext command" #: /tmp/fish/implicit/share/functions/_.fish:2 -#, fuzzy msgid "Fallback alias for the gettext command" -msgstr "Alias for the gettext command" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_append.fish:1 msgid "Internal completion function for appending string to the commandline" @@ -66126,14 +61599,6 @@ msgstr "" msgid "Return 0 if the current token has an open single-quote" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_abook_formats.fish:1 -msgid "Complete abook formats" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_ant_targets.fish:1 -msgid "Print list of targets from build.xml and imported files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_atool_archive_contents.fish:1 msgid "List archive contents" msgstr "List archive contents" @@ -66255,9 +61720,8 @@ msgid "Whether to inform the user that hash failures occur" msgstr "Whether to inform the user that hash failures occur" #: /tmp/fish/implicit/share/functions/__fish_complete_cd.fish:1 -#, fuzzy msgid "Completions for the cd command" -msgstr "Alias for the gettext command" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_command.fish:1 msgid "Complete using all available commands" @@ -66268,19 +61732,16 @@ msgid "Complete Convert options" msgstr "Complete Convert options" #: /tmp/fish/implicit/share/functions/__fish_complete_directories.fish:1 -#, fuzzy msgid "Complete directory prefixes" -msgstr "Set directory prefix" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:1 -#, fuzzy msgid "Complete ftp, pftp" -msgstr "Complete lpr option" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:2 -#, fuzzy msgid "Hostname" -msgstr "name" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:3 msgid "Use only IPv4 to contact any host" @@ -66311,9 +61772,8 @@ msgid "Disable command editing and history support" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:10 -#, fuzzy msgid "Disable file name globbing" -msgstr "Disable file modification" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:11 msgid "Do not explicitly bind data and control channels to same interface" @@ -66324,32 +61784,28 @@ msgid "Verbose. Show all server responses and data transfer stats" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:13 -#, fuzzy msgid "Enable debugging" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_groups.fish:1 msgid "Print a list of local groups, with group members as the description" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_job_pids.fish:1 -#, fuzzy msgid "Print a list of job PIDs and their commands" -msgstr "Print a list of documented fish commands" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:1 -#, fuzzy msgid "Complete lpr common options" -msgstr "Complete lpr option" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:2 msgid "Forces encryption when connecting to the server" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:3 -#, fuzzy msgid "Specifies an alternate username" -msgstr "Specify the http username" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:4 msgid "Specifies an alternate printer or class name" @@ -66360,27 +61816,24 @@ msgid "Apply command to all printers" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:7 -#, fuzzy msgid "Sets a job option" -msgstr "Set a config option" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:8 msgid "Send an email on job completion" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:9 -#, fuzzy msgid "Landscape mode" -msgstr "Unsafe mode" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:10 msgid "Media size" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:11 -#, fuzzy msgid "Page ranges" -msgstr "Pager" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:12 msgid "Choose orientation (4-landscape)" @@ -66403,14 +61856,12 @@ msgid "Scale image files to use up to number percent of the page" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:17 -#, fuzzy msgid "Set the number of characters per inch to use" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:18 -#, fuzzy msgid "Set the number of lines per inch to use" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:19 msgid "Set the page margins when printing text files" @@ -66425,9 +61876,8 @@ msgid "Complete using path" msgstr "Complete using path" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:1 -#, fuzzy msgid "Complete pgrep/pkill" -msgstr "Complete lpr option" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:2 msgid "Match pattern against full command line" @@ -66444,14 +61894,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:5 -#, fuzzy msgid "Select only the newest process" -msgstr "Select frontend interface" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:6 -#, fuzzy msgid "Select only the oldest process" -msgstr "Select the last NUMBER patches" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:7 msgid "Only match processes whose parent process ID is listed" @@ -66478,9 +61926,8 @@ msgid "Only match processes whose real user ID is listed" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:12 -#, fuzzy msgid "Negates the matching" -msgstr "Invert the sense of matching" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:13 msgid "" @@ -66500,14 +61947,9 @@ msgstr "" msgid "Complete by list of running processes" msgstr "Complete by list of running processes" -#: /tmp/fish/implicit/share/functions/__fish_complete_setxkbmap.fish:1 -msgid "Complete setxkb options" -msgstr "Complete setxkb options" - #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:1 -#, fuzzy msgid "common completions for ssh commands" -msgstr "Use function keys for commands" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:2 msgid "Protocol version 1 only" @@ -66542,43 +61984,21 @@ msgid "Options" msgstr "Options" #: /tmp/fish/implicit/share/functions/__fish_complete_subcommand.fish:1 -#, fuzzy msgid "Complete subcommand" -msgstr "Complete dd operands" - -#: /tmp/fish/implicit/share/functions/__fish_complete_subcommand_root.fish:1 -msgid "" -"Run the __fish_complete_subcommand function using a PATH containing /sbin " -"and /usr/sbin" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_suffix.fish:1 -#, fuzzy msgid "Complete using files" -msgstr "Complete using path" - -#: /tmp/fish/implicit/share/functions/__fish_complete_svn_diff.fish:1 -msgid "Complete \"svn diff\" arguments" -msgstr "Complete “svn diff” arguments" - -#: /tmp/fish/implicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_complete_unrar.fish:1 -msgid "Peek inside of archives and list all files" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_user_at_hosts.fish:1 -#, fuzzy msgid "Print list host-names with user@" -msgstr "Print hostname and user for stdin" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_users.fish:1 msgid "Print a list of local users, with the real user name as a description" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_wvdial_peers.fish:1 -msgid "Complete wvdial peers" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 msgid "Completes with ZFS mountpoint properties" msgstr "Completes with ZFS mountpoint properties" @@ -66648,15 +62068,12 @@ msgid "Repaint screen when window changes size" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_contains_opt.fish:1 -#, fuzzy msgid "Checks if a specific option has been given in the current commandline" -msgstr "Test if adb has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_crux_packages.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_prt_packages.fish:1 -#, fuzzy msgid "Obtain a list of installed packages" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_cursor_1337.fish:1 msgid "Set cursor using OSC command 1337" @@ -66671,71 +62088,58 @@ msgid "Set cursor (xterm)" msgstr "" #: /tmp/fish/implicit/share/functions/fish_default_key_bindings.fish:1 -#, fuzzy msgid "Default (Emacs-like) key bindings for fish" -msgstr "vi-like key bindings for fish" +msgstr "" #: /tmp/fish/implicit/share/functions/fish_default_mode_prompt.fish:1 -#, fuzzy msgid "Display the default mode for the prompt" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_describe_command.fish:1 -#, fuzzy msgid "Command used to find descriptions for commands" -msgstr "Use function keys for commands" - -#: /tmp/fish/implicit/share/functions/fish_fallback_prompt.fish:1 -msgid "" -"A simple fallback prompt without too much color or special characters for " -"linux VTs" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_filter_ant_targets.fish:1 -msgid "Display targets within an ant build.xml file" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:1 +msgid "Helper function for fish_git_prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:1 -msgid "Helper function for __fish_git_prompt" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:2 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:2 msgid "Prompt function for Git" msgstr "Prompt function for Git" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:3 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:3 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has staged " +"fish_git_prompt helper, tells whether or not the current branch has staged " "files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:4 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:4 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has " +"fish_git_prompt helper, tells whether or not the current branch has " "tracked, modified files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:5 -msgid "__fish_git_prompt helper, returns the current Git operation and branch" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:5 +msgid "fish_git_prompt helper, returns the current Git operation and branch" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:6 -msgid "__fish_git_prompt helper, checks char variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:6 +msgid "fish_git_prompt helper, checks char variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:7 -msgid "__fish_git_prompt helper, checks color variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:7 +msgid "fish_git_prompt helper, checks color variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:8 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:8 msgid "Event handler, repaints prompt when functionality changes" msgstr "Event handler, repaints prompt when functionality changes" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:9 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:9 msgid "Event handler, repaints prompt when any color changes" msgstr "Event handler, repaints prompt when any color changes" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:10 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:10 msgid "Event handler, repaints prompt when any char changes" msgstr "Event handler, repaints prompt when any char changes" @@ -66746,9 +62150,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_hg_prompt.fish:1 -#, fuzzy msgid "Write out the hg prompt" -msgstr "Write out the git prompt" +msgstr "" #: /tmp/fish/implicit/share/functions/fish_hybrid_key_bindings.fish:1 msgid "Vi-style bindings that inherit emacs-style bindings in all modes" @@ -66759,9 +62162,8 @@ msgid "Test if no non-switch argument has been specified yet" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_is_git_repository.fish:1 -#, fuzzy msgid "Check if the current directory is a git repository" -msgstr "Checks the consistency of the repository" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_is_token_n.fish:1 msgid "Test if current token is on Nth place" @@ -66786,14 +62188,12 @@ msgid "Make list of kill signals for completion" msgstr "Make list of kill signals for completion" #: /tmp/fish/implicit/share/functions/__fish_make_completion_signals.fish:2 -#, fuzzy msgid "List names of available signals" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_make_completion_signals.fish:3 -#, fuzzy msgid "List codes and names of available signals" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/functions/fish_mode_prompt.fish:1 msgid "Displays the current mode" @@ -66804,9 +62204,8 @@ msgid "Move the last element of a directory history from src to dest" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_no_arguments.fish:1 -#, fuzzy msgid "Internal fish function" -msgstr "Erase function" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_not_contain_opt.fish:1 msgid "Checks that a specific option is not in the current command line" @@ -66816,47 +62215,21 @@ msgstr "" msgid "Paginate the current command using the users default pager" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_ports_dirs.fish:1 -#, fuzzy -msgid "Obtain a list of ports local collections" -msgstr "Print a list of local users" - -#: /tmp/fish/implicit/share/functions/__fish_print_abook_emails.fish:1 -msgid "Print email addresses (abook)" -msgstr "Print email addresses (abook)" - #: /tmp/fish/implicit/share/functions/__fish_print_addresses.fish:1 msgid "Print a list of known network addresses" msgstr "Print a list of known network addresses" -#: /tmp/fish/implicit/share/functions/__fish_print_arch_daemons.fish:1 -msgid "Print arch daemons" -msgstr "Print arch daemons" - #: /tmp/fish/implicit/share/functions/__fish_print_commands.fish:1 msgid "Print a list of documented fish commands" msgstr "Print a list of documented fish commands" -#: /tmp/fish/implicit/share/functions/__fish_print_debian_services.fish:1 -msgid "Prints services installed" -msgstr "Prints services installed" - #: /tmp/fish/implicit/share/functions/__fish_print_encodings.fish:1 msgid "Complete using available character encodings" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_filesystems.fish:1 -#, fuzzy msgid "Print a list of all known filesystem types" -msgstr "Print a list of known network interfaces" - -#: /tmp/fish/implicit/share/functions/__fish_print_function_prototypes.fish:1 -#, fuzzy -msgid "" -"Prints the names of all function prototypes found in the headers in the " -"current directory" msgstr "" -"Print a list of all function calls leading up to running the current command" #: /tmp/fish/implicit/share/functions/__fish_print_groups.fish:1 msgid "Print a list of local groups" @@ -66867,9 +62240,8 @@ msgid "Print help message for the specified fish function or builtin" msgstr "Print help message for the specified fish function or builtin" #: /tmp/fish/implicit/share/functions/__fish_print_hostnames.fish:1 -#, fuzzy msgid "Print a list of known hostnames" -msgstr "Print a list of known network interfaces" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_interfaces.fish:1 msgid "Print a list of known network interfaces" @@ -66883,10 +62255,6 @@ msgstr "Print lpr options" msgid "Print lpr printers" msgstr "Print lpr printers" -#: /tmp/fish/implicit/share/functions/__fish_print_lsblk_columns.fish:1 -msgid "Print available lsblk columns" -msgstr "Print available lsblk columns" - #: /tmp/fish/implicit/share/functions/__fish_print_mounted.fish:1 msgid "Print mounted devices" msgstr "Print mounted devices" @@ -66896,9 +62264,8 @@ msgid "Print the repositories configured for arch's pacman package manager" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_service_names.fish:1 -#, fuzzy msgid "All services known to the system" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_svn_rev.fish:1 msgid "Print svn revisions" @@ -66912,76 +62279,27 @@ msgstr "Print a list of local users" msgid "Print directories where desktop files are stored" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_desktop_file_ids.fish:1 -#, fuzzy -msgid "Print all available xdg desktop file IDs" -msgstr "Print available lsblk columns" - #: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 msgid "Print XDG mime types" msgstr "Print XDG mime types" -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_modes.fish:1 -msgid "Print xrandr modes" -msgstr "Print xrandr modes" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_outputs.fish:1 -msgid "Print xrandr outputs" -msgstr "Print xrandr outputs" - #: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 msgid "Print X windows" msgstr "Print X windows" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_bookmarks.fish:1 -msgid "Lists ZFS bookmarks, if the feature is enabled" -msgstr "Lists ZFS bookmarks, if the feature is enabled" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_filesystems.fish:1 -msgid "Lists ZFS filesystems" -msgstr "Lists ZFS filesystems" - #: /tmp/fish/implicit/share/functions/__fish_print_zfs_snapshots.fish:1 msgid "Lists ZFS snapshots" msgstr "Lists ZFS snapshots" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_volumes.fish:1 -msgid "Lists ZFS volumes" -msgstr "Lists ZFS volumes" - #: /tmp/fish/implicit/share/functions/fish_prompt.fish:1 msgid "Write out the prompt" msgstr "Write out the prompt" -#: /tmp/fish/implicit/share/functions/__fish_prt_no_subcommand.fish:1 -#, fuzzy -msgid "Test if prt-get has yet to be given the command" -msgstr "Test if apt has yet to be given the subcommand" - -#: /tmp/fish/implicit/share/functions/__fish_prt_ports.fish:1 -#, fuzzy -msgid "Obtain a list of ports" -msgstr "Print a list of local users" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_package.fish:1 -#, fuzzy -msgid "Test if prt-get should have packages as potential completion" -msgstr "Test if apt command should have packages as potential completion" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_port.fish:1 -#, fuzzy -msgid "Test if prt-get should have ports as potential completion" -msgstr "Test if apt command should have packages as potential completion" - #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:1 #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:2 msgid "Show current path" msgstr "Show current path" -#: /tmp/fish/implicit/share/functions/__fish_sgrep.fish:1 -msgid "Call grep without honoring GREP_OPTIONS settings" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_shared_key_bindings.fish:1 msgid "Bindings shared between emacs and vi mode" msgstr "" @@ -66995,18 +62313,13 @@ msgid "helper function that does pretty formatting on svn status" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_svn_prompt.fish:2 -#, fuzzy msgid "Prompt function for svn" -msgstr "Prompt function for Git" +msgstr "" #: /tmp/fish/implicit/share/functions/_fish_systemctl.fish:1 msgid "Call systemctl with some options from the current commandline" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_test_arg.fish:1 -msgid "Test if the token under the cursor matches the specified wildcard" -msgstr "Test if the token under the cursor matches the specified wildcard" - #: /tmp/fish/implicit/share/functions/__fish_toggle_comment_commandline.fish:1 msgid "Comment/uncomment the current command" msgstr "" @@ -67016,9 +62329,8 @@ msgid "Update man-page based completions" msgstr "Update man-page based completions" #: /tmp/fish/implicit/share/functions/__fish_use_subcommand.fish:1 -#, fuzzy msgid "Test if a non-switch argument has been given in the current commandline" -msgstr "Test if vagrant has yet to be given the main command" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_vcs_prompt.fish:1 msgid "Print the prompts for all available vcsen" @@ -67049,14 +62361,12 @@ msgid "display or manipulate interactive command history" msgstr "" #: /tmp/fish/implicit/share/functions/hostname.fish:1 -#, fuzzy msgid "Show or set the system's host name" -msgstr "Show or set the system's host name\r" +msgstr "" #: /tmp/fish/implicit/share/functions/isatty.fish:1 -#, fuzzy msgid "Tests if a file descriptor is a tty" -msgstr "Unspecified file descriptors" +msgstr "" #: /tmp/fish/implicit/share/functions/la.fish:1 msgid "" @@ -67093,9 +62403,8 @@ msgid "Open file in default application" msgstr "Open file in default application" #: /tmp/fish/implicit/share/functions/popd.fish:1 -#, fuzzy msgid "Pop directory from the stack and cd to it" -msgstr "Pop dir from stack" +msgstr "" #: /tmp/fish/implicit/share/functions/prevd.fish:1 msgid "Move back in the directory history" @@ -67118,14 +62427,12 @@ msgid "Push directory to stack" msgstr "Push directory to stack" #: /tmp/fish/implicit/share/functions/realpath.fish:1 -#, fuzzy msgid "print the resolved path [command realpath]" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/functions/realpath.fish:2 -#, fuzzy msgid "print the resolved path [command grealpath]" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/functions/realpath.fish:3 msgid "return an absolute path without symlinks" @@ -67140,14 +62447,12 @@ msgid "Fallback implementation of the seq command" msgstr "Fallback implementation of the seq command" #: /tmp/fish/implicit/share/functions/setenv.fish:1 -#, fuzzy msgid "Set an env var for csh compatibility." -msgstr "Set global variable. Alias for set -g, made for csh compatibility" +msgstr "" #: /tmp/fish/implicit/share/functions/suspend.fish:1 -#, fuzzy msgid "Suspend the current shell." -msgstr "Displays the current mode" +msgstr "" #: /tmp/fish/implicit/share/functions/__terlar_git_prompt.fish:1 msgid "Write out the git prompt" @@ -67578,7 +62883,6 @@ msgstr "Edit variable value" #~ msgid "%s: Expected one or two arguments, got %d\\n" #~ msgstr "%s: Expected one or two arguments, got %d\\n" -#, fuzzy #~ msgid "Set global variable. Alias for set -g, made for bash compatibility" #~ msgstr "Set global variable. Alias for set -g, made for csh compatibility" @@ -67698,55 +63002,42 @@ msgstr "Edit variable value" #~ msgstr "" #~ "Requested redirection to something that is not a file descriptor %ls" -#, fuzzy #~ msgid "create an unversioned archive of a repository revision" #~ msgstr "Commit an unversioned file or tree into the repository" -#, fuzzy #~ msgid "create a changegroup file" #~ msgstr "Read package from file" -#, fuzzy #~ msgid "commit the specified files or all outstanding changes" #~ msgstr "Decrypt specified file or stdin" -#, fuzzy #~ msgid "summarize working directory state" #~ msgstr "Print working directory" -#, fuzzy #~ msgid "apply one or more changegroup files" #~ msgstr "Read package from file" -#, fuzzy #~ msgid "update working directory (or switch revisions)" #~ msgstr "Change working directory" -#, fuzzy #~ msgid "Configuration Files" #~ msgstr "Configuration file" -#, fuzzy #~ msgid "Diff Formats" #~ msgstr "List format" -#, fuzzy #~ msgid "Specifying File Sets" #~ msgstr "Specify config file" -#, fuzzy #~ msgid "Configuring hgweb" #~ msgstr "Configuration file" -#, fuzzy #~ msgid "Specifying Multiple Revisions" #~ msgstr "Specify revision" -#, fuzzy #~ msgid "Specifying Single Revisions" #~ msgstr "Specify revision" -#, fuzzy #~ msgid "[+] exclude names matching the given patterns" #~ msgstr "List all modules matching the given wildcard" @@ -67805,15 +63096,12 @@ msgstr "Edit variable value" #~ msgid "Tag the contents of the repository with a version name" #~ msgstr "Tag the contents of the repository with a version name" -#, fuzzy #~ msgid "Gives a changelog-style summary of the repository history" #~ msgstr "Gives a changelog style summary of the repo history" -#, fuzzy #~ msgid "Opposite of pull; unsafe if patch is not in remote repository" #~ msgstr "Opposite of pull; unsafe if the patch is not in remote repo" -#, fuzzy #~ msgid "Use ARG as merge command" #~ msgstr "Specify merge command" @@ -67823,7 +63111,6 @@ msgstr "Edit variable value" #~ msgid "Good bye\\n" #~ msgstr "Good bye\\n" -#, fuzzy #~ msgid "" #~ "%s: Expected exactly one argument, got %s.\\n\\nSynopsis:\\n\\t%sfunced%s " #~ "FUNCTION\\n" diff --git a/po/fr.po b/po/fr.po index c3c90cc9a..1d4368a09 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,7 +4,7 @@ # This file is distributed under the GNU General Public License, version 2 or later. # Xavier Douville , 2006, 2017. # David Guyot , 2017, 2018. -# +# # Note aux traducteurs # # Les traductions qui suivent sont celles qui sont recommandées ; il ne s’agit pas d’un commandement, mais @@ -1170,22 +1170,19 @@ msgid "Unable to open shared memory with path '%s': %s" msgstr "Impossible d’ouvrir la mémoire partagée avec le chemin '%s': %s" #: src/env_universal_common.cpp:980 -#, fuzzy, c-format +#, c-format msgid "Unable to fstat shared memory object with path '%s': %s" msgstr "" -"Impossible d’utiliser fstat sur la mémoire partagée de l’objet avec le " -"chemin '%s': %s" #: src/env_universal_common.cpp:991 -#, fuzzy, c-format +#, c-format msgid "Unable to truncate shared memory object with path '%s': %s" -msgstr "Impossible de tronquer la mémoire partagée avec le chemin '%s': %s" +msgstr "" #: src/env_universal_common.cpp:1001 -#, fuzzy, c-format +#, c-format msgid "Unable to memory map shared memory object with path '%s': %s" msgstr "" -"Impossible de mapper en mémoire partagée l’objet avec le chemin '%s': %s" #: src/env_universal_common.cpp:1396 #, c-format @@ -1321,9 +1318,9 @@ msgid "%s, version %s\n" msgstr "%s, version %s\n" #: src/fish.cpp:316 src/fish_indent.cpp:434 -#, fuzzy, c-format +#, c-format msgid "Invalid value '%s' for debug-stack-frames flag" -msgstr "Valeur '%s' invalide pour l’option debug-stack-frames" +msgstr "" #: src/fish.cpp:366 msgid "Can not use the no-execute mode when running an interactive session" @@ -1390,11 +1387,9 @@ msgstr "" "retour à la valeur par défaut `%ls`." #: src/io.cpp:57 -#, fuzzy, c-format +#, c-format msgid "An error occured while reading output from code block on fd %d" msgstr "" -"Une erreur est survenue lors de la lecture de la sortie du bloc de code sur " -"le descripteur de fichier %d" #: src/output.cpp:559 #, c-format @@ -1480,9 +1475,8 @@ msgid "function invocation block" msgstr "bloc d’invocation de fonction" #: src/parser.cpp:48 -#, fuzzy msgid "function invocation block with no variable shadowing" -msgstr "bloc d’invocation de fonction sans camouflage des variables" +msgstr "" #: src/parser.cpp:51 msgid "'switch' block" @@ -2444,9 +2438,8 @@ msgid "Uninstall a gem from the local repository" msgstr "Désinstaller une gemme du dépôt courant" #: /tmp/fish/explicit/share/completions/gem.fish:16 -#, fuzzy msgid "Unpack an installed gem to the current directory" -msgstr "Déballer une gemme installée dans le répertoire courant" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:17 msgid "Update the named gem (or all installed gems) in the local repository" @@ -2483,9 +2476,8 @@ msgid "Disables an existing service" msgstr "Désactiver un service existant" #: /tmp/fish/explicit/share/completions/launchctl.fish:5 -#, fuzzy msgid "Removes the specified service name from the service cache" -msgstr "Supprimer le service spécifié du cache service" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:6 msgid "Forces an existing service to start" @@ -2846,9 +2838,8 @@ msgid "Convert 0.90 metadata to 1.0" msgstr "Convertir les métadonnées 0.90 au format 1.0" #: /tmp/fish/explicit/share/completions/mdadm.fish:57 -#, fuzzy msgid "Reset preferred minor to current one" -msgstr "Réinitialiser le mineur favori pour utiliser l’actuel" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:58 msgid "Abort currently running actions" @@ -2873,9 +2864,8 @@ msgstr "Paramètres régionaux" #: /tmp/fish/explicit/share/completions/telnet.fish:1 #: /tmp/fish/explicit/share/completions/telnet.fish:6 -#, fuzzy msgid "Specifies an 8-bit data path" -msgstr "Spécifier un chemin de données 8-bit" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:2 msgid "Do not try to negotiate TELNET BINARY option" @@ -2918,9 +2908,8 @@ msgid "User login" msgstr "Identifiant utilisateur" #: /tmp/fish/explicit/share/completions/telnet.fish:13 -#, fuzzy msgid "Log to tracefile" -msgstr "Journaliser dans un fichier de trace" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:14 msgid "Turn on encryption" @@ -3533,40 +3522,6 @@ msgstr "%s %s : L’abréviation %s existe, impossible de renommer %s\\n" msgid "%s %s: Unexpected argument -- '%s'\\n" msgstr "%s %s : Argument inattendu -- '%s'\\n" -#: /tmp/fish/explicit/share/functions/abbr_old.fish:1 -msgid "%s: invalid option -- %s\\n" -msgstr "%s : option invalide -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:2 -msgid "%s: %s cannot be specified along with %s\\n" -msgstr "%s : %s ne peut être spécifié avec %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:3 -msgid "%s: option requires an argument -- %s\\n" -msgstr "%s : l’option requiert un argument -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:4 -msgid "%s: Unexpected argument -- %s\\n" -msgstr "%s : Argument inattendu -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:5 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:8 -msgid "%s: abbreviation cannot have spaces in the key\\n" -msgstr "%s : l’abréviation ne peut comporter d’espaces dans la clé\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:6 -msgid "%s: abbreviation must have a value\\n" -msgstr "%s : l’abréviation doit être dotée d’une valeur\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:7 -msgid "%s: abbreviation '%s' already exists, cannot rename\\n" -msgstr "%s : l’abréviation '%s' existe, impossible de renommer\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:9 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:10 -msgid "%s: no such abbreviation '%s'\\n" -msgstr "%s : aucune abréviation '%s'\\n" - #: /tmp/fish/explicit/share/functions/alias.fish:1 msgid "%s: Name cannot be empty\\n" msgstr "%s : Le nom ne peut être une chaîne vide\\n" @@ -3623,14 +3578,6 @@ msgstr "" msgid "or the file was empty" msgstr "ou le fichier était vide" -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:2 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:3 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:4 -#: /tmp/fish/explicit/share/functions/__fish_complete_unrar.fish:1 -msgid "%s\\tArchived file\\n" -msgstr "%s\\tFichier archivé\\n" - #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:3 msgid "Achieved compression ratio" msgstr "Taux de compression attein" @@ -4083,9 +4030,8 @@ msgstr "Contenu de l’archive" #: /tmp/fish/implicit/share/completions/accept.fish:1 #: /tmp/fish/implicit/share/completions/cupsaccept.fish:1 -#, fuzzy msgid "Accept reason" -msgstr "Raison de l’acception" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:1 #: /tmp/fish/implicit/share/completions/grep.fish:23 @@ -4261,9 +4207,8 @@ msgid "Sort the found files lexically" msgstr "Trier les fichiers correspondants par ordre lexicographique" #: /tmp/fish/implicit/share/completions/ack.fish:43 -#, fuzzy msgid "Show which types each file has" -msgstr "Afficher quels types chaque fichier possède" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:44 msgid "Read the list of files to search from file" @@ -4314,9 +4259,8 @@ msgid "Include only recognized files" msgstr "N’inclure que les fichiers reconnus" #: /tmp/fish/implicit/share/completions/ack.fish:54 -#, fuzzy msgid "Include only X files" -msgstr "N’inclure que X fichiers" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:55 msgid "Replaces definition of type" @@ -4486,7 +4430,6 @@ msgstr " chemin vers les informations ACPI (/proc/acpi)" #: /tmp/fish/implicit/share/completions/echo.fish:5 #: /tmp/fish/implicit/share/completions/entr.fish:3 #: /tmp/fish/implicit/share/completions/env.fish:5 -#: /tmp/fish/implicit/share/completions/eval.fish:1 #: /tmp/fish/implicit/share/completions/exec.fish:1 #: /tmp/fish/implicit/share/completions/exit.fish:1 #: /tmp/fish/implicit/share/completions/fg.fish:1 @@ -4580,9 +4523,8 @@ msgid "Output version information and exit" msgstr "Afficher les informations de version et quitter" #: /tmp/fish/implicit/share/completions/adb.fish:1 -#, fuzzy msgid "Test if adb has yet to be given the subcommand" -msgstr "Tester si adb doit encore se faire donner la sous-commande" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:2 msgid "Run adb devices and parse output" @@ -4733,9 +4675,8 @@ msgid "Run PPP over USB" msgstr "Exécuter PPP sur USB" #: /tmp/fish/implicit/share/completions/adb.fish:38 -#, fuzzy msgid "Sideloads the given package" -msgstr "Supprime les paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:39 msgid "Kick current connection from host side and make it reconnect." @@ -4771,9 +4712,8 @@ msgid "Keep the data and cache directories" msgstr "Conserver les dossiers de données et de cache" #: /tmp/fish/implicit/share/completions/adb.fish:47 -#, fuzzy msgid "Also list device qualifiers" -msgstr "Lister également les qualificateurs de périphérique" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:48 msgid "Device to disconnect" @@ -4829,9 +4769,8 @@ msgid "Package(s) to backup" msgstr "Paquet(s) à sauvegarder" #: /tmp/fish/implicit/share/completions/adb.fish:60 -#, fuzzy msgid "List all forward socket connections" -msgstr "Lister ou enlever des fonctions" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:61 msgid "Fails the forward if local is already forwarded" @@ -4842,9 +4781,8 @@ msgid "Remove a specific forward socket connection" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:63 -#, fuzzy msgid "Remove all forward socket connections" -msgstr "Supprimer toutes les connexions sur socket de redirection" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:64 msgid "Kick current connection from device side and make it reconnect." @@ -5106,7 +5044,6 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:2 #: /tmp/fish/implicit/share/completions/mocha.fish:1 #: /tmp/fish/implicit/share/completions/modinfo.fish:11 -#: /tmp/fish/implicit/share/completions/netcat.fish:7 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:1 #: /tmp/fish/implicit/share/completions/poweroff.fish:1 #: /tmp/fish/implicit/share/completions/terraform.fish:2 @@ -5417,9 +5354,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:50 #: /tmp/fish/implicit/share/completions/montage.fish:40 #: /tmp/fish/implicit/share/completions/stream.fish:14 -#, fuzzy msgid "Monitor progress " -msgstr "Surveiller l'info sur l'état" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:28 msgid "Seconds to pause before reanimating" @@ -5867,9 +5803,8 @@ msgid "Print URL instead of opening" msgstr "Afficher l’URL au lieu de l’ouvrir" #: /tmp/fish/implicit/share/completions/apm.fish:20 -#, fuzzy msgid "Output featured packages as JSON array" -msgstr "Afficher les paquets inclus comme un tableau JSON" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:21 #: /tmp/fish/implicit/share/completions/apm.fish:45 @@ -5884,9 +5819,8 @@ msgstr "" "spécifiée d’Atom" #: /tmp/fish/implicit/share/completions/apm.fish:23 -#, fuzzy msgid "Generates code scaffolding for theme or package" -msgstr "Reconstruire et installer un paquet installé" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:24 msgid "Path to the package or theme template" @@ -5951,9 +5885,8 @@ msgid "Link to ~/.atom/dev/packages" msgstr "Lien vers ~/.atom/dev/packages" #: /tmp/fish/implicit/share/completions/apm.fish:39 -#, fuzzy msgid "List all installed and bundled packages" -msgstr "Réinstaller les paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:40 msgid "Print packages one per line with no formatting" @@ -5964,9 +5897,8 @@ msgid "Include dev packages" msgstr "Inclure les paquets de développement" #: /tmp/fish/implicit/share/completions/apm.fish:42 -#, fuzzy msgid "Only list installed packages/themes" -msgstr "Reconstruire et installer un paquet installé" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:43 msgid "Output all packages as a JSON object" @@ -6005,9 +5937,8 @@ msgid "List but don't install the outdated packages" msgstr "Lister les paquets obsolètes sans les installer" #: /tmp/fish/implicit/share/completions/apm.fish:55 -#, fuzzy msgid "Publish new version of package in current working directory" -msgstr "Changer le répertoire de travail" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:56 msgid "Semantic version category for new version" @@ -6030,23 +5961,20 @@ msgid "Rebuild module cache for installed packages" msgstr "Reconstruire le cache des modules pour les paquets installés" #: /tmp/fish/implicit/share/completions/apm.fish:61 -#, fuzzy msgid "Search for Atom packages/themes in the atom.io registry" -msgstr "Cherche les paquet contenant le motif" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:62 msgid "Output matching packages as JSON array" msgstr "Afficher les paquets correspondants comme un tableau JSON" #: /tmp/fish/implicit/share/completions/apm.fish:63 -#, fuzzy msgid "Search only non-theme packages" -msgstr "Installer un ou des paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:64 -#, fuzzy msgid "Search only themes" -msgstr "Rechercher un autre système" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:65 msgid "View information about package/theme in the atom.io registry" @@ -6066,32 +5994,28 @@ msgid "Star the given packages on https://atom.io" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:69 -#, fuzzy msgid "Star all packages in ~/.atom/packages" -msgstr "Chercher le nom complet de paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:70 -#, fuzzy msgid "List or install starred Atom packages and themes" -msgstr "Lister les paquets source installés" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:71 msgid "Output packages as JSON array" msgstr "Afficher tous les paquets comme un tableau JSON" #: /tmp/fish/implicit/share/completions/apm.fish:72 -#, fuzzy msgid "Install the starred packages" -msgstr "Installer des paquets source" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:74 msgid "GitHub username to show starred packages for" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:75 -#, fuzzy msgid "Runs the package's tests contained within the spec directory" -msgstr "Télécharger le paquet dans le répertoire courant" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:76 msgid "Path to atom command" @@ -6707,9 +6631,8 @@ msgid "Perform contents generation" msgstr "Générer le contenu" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:12 -#, fuzzy msgid "Use source override" -msgstr "Outrepasser la source" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:13 msgid "Make caching db readonly" @@ -6900,11 +6823,8 @@ msgid "Test if aptitude has yet to be given the subcommand" msgstr "Vérifier si apt doit se faire donner la sous-commande" #: /tmp/fish/implicit/share/completions/aptitude.fish:2 -#, fuzzy msgid "Test if aptitude command should have packages as potential completion" msgstr "" -"Tester si la commande apt devrait avoir les paquets comme complétion " -"potentielle" #: /tmp/fish/implicit/share/completions/aptitude.fish:4 msgid "Display a brief help message. Identical to the help action" @@ -7265,9 +7185,8 @@ msgid "Alias for 'get'" msgstr "Alias pour 'get'" #: /tmp/fish/implicit/share/completions/apt-move.fish:3 -#, fuzzy msgid "Move packages to local tree" -msgstr "Déplacer les paquets vers l’arbre local" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:4 msgid "Delete obsolete package files" @@ -7514,9 +7433,8 @@ msgid "Custom URL to get mirror list" msgstr "URL pour obtenir la liste des miroirs" #: /tmp/fish/implicit/share/completions/apt-spy.fish:14 -#, fuzzy msgid "Write top servers to file" -msgstr "Écrire les meilleurs serveurs dans un fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:15 msgid "Number of top servers" @@ -7670,14 +7588,12 @@ msgid "Specify which libraies to load" msgstr "Spécifier les bibliothèques à charger" #: /tmp/fish/implicit/share/completions/arc.fish:6 -#, fuzzy msgid "Specify the Conduit URI" -msgstr "Spécifier l’URI Conduit" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:7 -#, fuzzy msgid "Specify the Conduit token" -msgstr "Spécifier le jeton Conduit" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:8 msgid "Force a version" @@ -7692,9 +7608,8 @@ msgid "Sets a config" msgstr "Paramétrer une configuration" #: /tmp/fish/implicit/share/completions/arc.fish:11 -#, fuzzy msgid "Skip the working copy configuration file" -msgstr "Passer la copie fonctionnelle du fichier de configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:12 msgid "Use provided file instead of ~/.arcrc" @@ -7709,9 +7624,8 @@ msgid "Current term in the argument list being completed" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:15 -#, fuzzy msgid "Reads an arc configuration option" -msgstr "Lit une option de configuration arc" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:16 msgid "Show detailed information about options" @@ -7755,9 +7669,8 @@ msgid "Never apply patches suggested by lint" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:26 -#, fuzzy msgid "Lint changes since a specific revision" -msgstr "Afficher les différences entre les révisions" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:27 msgid "Output the linter results to a file" @@ -7773,9 +7686,8 @@ msgid "When linting git repositories, amend HEAD with all patches" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:30 -#, fuzzy msgid "Lint all files in the project" -msgstr "Traiter tous les fichiers comme du texte" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:31 msgid "Specify how results will be displayed" @@ -7811,9 +7723,8 @@ msgid "Delete the flag on an object" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:39 -#, fuzzy msgid "Set the note on a flag" -msgstr "Définir la couleur du terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:40 msgid "Export the local changeset to a file" @@ -7841,9 +7752,8 @@ msgid "Export from Differential diff" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:46 -#, fuzzy msgid "Export from a Differential revision" -msgstr "Fusionner les révisions" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:47 msgid "Open a file or object in your web browser" @@ -7878,9 +7788,8 @@ msgid "what they do and which versions are installed" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:55 -#, fuzzy msgid "Search for linters" -msgstr "Rechercher un autre système" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:56 msgid "Show detailed information, including options" @@ -7972,18 +7881,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:78 #: /tmp/fish/implicit/share/completions/arc.fish:86 -#, fuzzy msgid "Use the message from a specific revision" -msgstr "Lire le journal depuis le fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:79 msgid "Show which commits will be selected" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:80 -#, fuzzy msgid "Print base commit only and exit" -msgstr "Afficher l'historique d'un module" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:81 #: /tmp/fish/implicit/share/completions/arc.fish:173 @@ -7991,9 +7898,8 @@ msgid "Additional rules for determining base revision" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:82 -#, fuzzy msgid "Specify the end of the commit range to select" -msgstr "Spécifier le titre du rss" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:83 msgid "Show committed and abandoned revisions" @@ -8001,34 +7907,28 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:84 #: /tmp/fish/implicit/share/completions/arc.fish:114 -#, fuzzy msgid "Alias for arc feature" -msgstr "Alias pour atrm" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:85 -#, fuzzy msgid "Amend the working copy" -msgstr "Changer le répertoire de travail" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:87 -#, fuzzy msgid "Show the amended commit message" -msgstr "Afficher le temps" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:88 -#, fuzzy msgid "Upgrade arcanist and libphutil to the latest versions" -msgstr "Afficher tous les paquets source avec version" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:89 -#, fuzzy msgid "Shows the help" -msgstr "Afficher le temps" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:90 -#, fuzzy msgid "Print detailed information about each command" -msgstr "Afficher l'état des fichiers extraits" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:91 msgid "Share and grab text using the Paste application" @@ -8043,37 +7943,32 @@ msgid "Output in JSON format" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:94 -#, fuzzy msgid "Title for the paste" -msgstr "Rechercher un autre système" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:95 msgid "Commit a revision which has been accepted by a reviewer" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:96 -#, fuzzy msgid "Commit a specific revision" -msgstr "Afficher les différences entre les révisions" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:97 msgid "Show the command which would be issued" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:98 -#, fuzzy msgid "Apply changes to the working copy" -msgstr "Changer le répertoire de travail" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:99 -#, fuzzy msgid "Do not run any sanity checks" -msgstr "Ne pas lancer de mise à jour" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:101 -#, fuzzy msgid "Do not commit the changes" -msgstr "Ne pas modifier aucun fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:102 msgid "Update the local working copy before applying the patch" @@ -8088,18 +7983,16 @@ msgid "Apply changes from an arc bundlej" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:105 -#, fuzzy msgid "Do not apply dependencies" -msgstr "Afficher les dépendances de construction" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:106 msgid "Apply changes from a Differential diff" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:107 -#, fuzzy msgid "Do not create a branch" -msgstr "Ne pas développer le motif" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:108 msgid "Apply changes from a Differential revision" @@ -8134,14 +8027,12 @@ msgid "Show blame for the lines you changed" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:117 -#, fuzzy msgid "Cover changes since a specific revision" -msgstr "Afficher les différences entre les révisions" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:118 -#, fuzzy msgid "Close a revision" -msgstr "Déverrouiller une révision" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:119 msgid "Do not print a success message" @@ -8209,9 +8100,8 @@ msgid "Record a copy of the test results on the specified build target" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:135 -#, fuzzy msgid "Use uglier formatting" -msgstr "Utiliser le format unifié" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:136 msgid "Run unit tests covering changes since a specific revision" @@ -8235,9 +8125,8 @@ msgid "Always disable coverage information" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:142 -#, fuzzy msgid "Backouts on a previous commit" -msgstr "Exécuter la commande si la précédente a échoué" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:143 msgid "Make a raw Conduit method call" @@ -8264,9 +8153,8 @@ msgid "When creating a revision, add reviewers" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:149 -#, fuzzy msgid "Do not copy changes to the staging area" -msgstr "Ne pas modifier aucun fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:150 msgid "Read diff from stdin" @@ -8281,9 +8169,8 @@ msgid "Read revision information from file" msgstr "Lire l’information de révision depuis le fichier" #: /tmp/fish/implicit/share/completions/arc.fish:153 -#, fuzzy msgid "Do not run lint" -msgstr "Ne pas lancer de mise à jour" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:154 msgid "Use the specified message when updating a revision" @@ -8302,9 +8189,8 @@ msgid "Always create a new revision" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:158 -#, fuzzy msgid "Disable lint cache" -msgstr "Construire la cache apt" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:159 msgid "Read revision information from a specific commit" @@ -8327,9 +8213,8 @@ msgid "Apply patches suggested by lint" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:165 -#, fuzzy msgid "Specify the end of the commit range" -msgstr "Spécifier le titre du rss" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:166 msgid "When creating a revision, try to use the working copy commit" @@ -8376,23 +8261,20 @@ msgid "Do not run unit tests" msgstr "Ne pas lancer les tests unitaires" #: /tmp/fish/implicit/share/completions/arc.fish:179 -#, fuzzy msgid "Raise all lint warnings" -msgstr "Désactiver le téléchargement de paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:181 msgid "Only run lint and unit tests" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:182 -#, fuzzy msgid "Skip checks for untracked files in the working copy" -msgstr "Changer le répertoire de travail" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:183 -#, fuzzy msgid "Display only new lint messages" -msgstr "Afficher la page de manuel" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:185 msgid "Create or update a libphutil library" @@ -8483,9 +8365,8 @@ msgid "Include macro expansions" msgstr "Inclure l’expansion des macros" #: /tmp/fish/implicit/share/completions/as.fish:7 -#, fuzzy msgid "Omit forms processing" -msgstr "Afficher le processus de connexion" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:8 msgid "Include symbols" @@ -8561,9 +8442,8 @@ msgstr "" "Générer les noms de section par fonction pour les informations de ligne DWARF" #: /tmp/fish/implicit/share/completions/as.fish:26 -#, fuzzy msgid "Set the hash table size close" -msgstr "Paramétrer la taille du papier" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:27 msgid "Show help message and exit" @@ -8598,9 +8478,8 @@ msgid "Write dependency information in given file" msgstr "Écrire les informations de dépendance dans le fichier spécifié" #: /tmp/fish/implicit/share/completions/as.fish:35 -#, fuzzy msgid "Do not pad the end of sections to alignment boundaries" -msgstr "Ne pas aligner la fin des sections sur les limites d’alignement" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:36 msgid "Set object-file output file name" @@ -8741,9 +8620,8 @@ msgid "Strip all lock prefixes" msgstr "Retirer tous les verrous de préfixe" #: /tmp/fish/implicit/share/completions/as.fish:70 -#, fuzzy msgid "Generate relax relocations" -msgstr "Générer des déménagements lâches" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:71 msgid "Accept only AMD64 ISA" @@ -8758,9 +8636,8 @@ msgid "Optimize for given CPU" msgstr "Optimiser pour le processeur spécifié" #: /tmp/fish/implicit/share/completions/asp.fish:1 -#, fuzzy msgid "Checkout package" -msgstr "Récupérer les paquets sources" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:2 msgid "Show the full history of the target, with file diffs" @@ -8863,9 +8740,8 @@ msgid "Print the jobs listed" msgstr "Afficher les travaux listés" #: /tmp/fish/implicit/share/completions/atom.fish:1 -#, fuzzy msgid "Run in development mode." -msgstr "Exécuter en mode fictif" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:2 msgid "Keep the browser process in the foreground." @@ -8884,9 +8760,8 @@ msgid "Open a new window." msgstr "Ouvrir une nouvelle fenêtre" #: /tmp/fish/implicit/share/completions/atom.fish:6 -#, fuzzy msgid "Create a profile of the startup execution time." -msgstr "Profiler le démarrage" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:7 msgid "Set the path to the Atom source directory and enable dev-mode." @@ -9034,9 +8909,8 @@ msgid "load configuration defaults from file" msgstr "charger la configuration par défaut depuis un fichier" #: /tmp/fish/implicit/share/completions/aura.fish:1 -#, fuzzy msgid "Synchronize AUR packages" -msgstr "Afficher les paquets mis à niveau" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:2 msgid "Save and restore package state" @@ -9061,9 +8935,8 @@ msgid "Pacman log actions" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:6 -#, fuzzy msgid "Build packages from ABS" -msgstr "Lire le paquet depuis un fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:7 msgid "Operate on orphan packages" @@ -9351,9 +9224,8 @@ msgid "Search AUR by string matching" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:55 -#, fuzzy msgid "Upgrade all installed AUR packages" -msgstr "Mettre à niveau ou installer les plus nouveaux paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:56 msgid "Download the source tarball" @@ -9442,9 +9314,8 @@ msgid "Download fresh copy of the package list" msgstr "Téléchargement une copie fraîche de la liste des paquets" #: /tmp/fish/implicit/share/completions/aura.fish:77 -#, fuzzy msgid "Sync the given to local ABS tree" -msgstr "Déplacer les paquets dans l'arbre local" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:79 msgid "Uninstall orphan packages" @@ -9663,9 +9534,8 @@ msgstr "" "mesure de leur vérification" #: /tmp/fish/implicit/share/completions/badblocks.fish:11 -#, fuzzy msgid "Use write-mode test" -msgstr "Tester en mode écriture" +msgstr "" #: /tmp/fish/implicit/share/completions/badblocks.fish:12 msgid "Internal flag only to be used by e2fsck(8) and mke2fs(8)" @@ -10448,9 +10318,8 @@ msgstr "Utiliser l’index rubygems moderne au lieu de l’API" #: /tmp/fish/implicit/share/completions/bundle.fish:24 #: /tmp/fish/implicit/share/completions/bundle.fish:89 -#, fuzzy msgid "Do not remove stale gems from the cache" -msgstr "Ne pas supprimer les gemmes partielles du cache" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:25 msgid "Do not allow the Gemfile.lock to be updated after this install" @@ -10502,9 +10371,8 @@ msgid "Binstub destination directory (default bin)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:36 -#, fuzzy msgid "Overwrite existing binstubs if they exist" -msgstr "Outrepasser les binstubs le cas échéant" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:37 #: /tmp/fish/implicit/share/completions/bundle.fish:43 @@ -10611,9 +10479,8 @@ msgid "Check for newer pre-release gems" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:66 -#, fuzzy msgid "Check against a specific source" -msgstr "Comparer à une source spécifique" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:67 msgid "Use cached gems instead of attempting to fetch gems remotely" @@ -10956,9 +10823,8 @@ msgstr "" "celles d’une branche" #: /tmp/fish/implicit/share/completions/bzr.fish:40 -#, fuzzy msgid "Show base revision text in conflicts" -msgstr "Afficher la dernière révision où chaque ligne a été modifiée" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:41 msgid "Instead of merging, show a diff of the merge" @@ -11005,16 +10871,12 @@ msgid "Description of the new revision" msgstr "Description de la nouvelle révision" #: /tmp/fish/implicit/share/completions/bzr.fish:51 -#, fuzzy msgid "Set the author's name, if it's different from the commiter" -msgstr "Paramétrer le nom de l’auteur, s’il diffère du validateur" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:52 -#, fuzzy msgid "Manually set a commit time using commit date format" msgstr "" -"Paramétrer manuellement une date de validation en utilisant le format de " -"date de validation" #: /tmp/fish/implicit/share/completions/bzr.fish:53 msgid "Commit even if nothing has changed" @@ -11084,24 +10946,20 @@ msgid "Show history of changes" msgstr "Afficher l’historique des modifications" #: /tmp/fish/implicit/share/completions/bzr.fish:67 -#, fuzzy msgid "Validate storage" -msgstr "Valider le stockage" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:68 -#, fuzzy msgid "Check the working tree related to the current directory" -msgstr "Vérifier la copie de travail relativement au dossier courant" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:69 -#, fuzzy msgid "Check the repository related to the current directory" -msgstr "Vérifier le dépôt relativement au dossier courant" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:70 -#, fuzzy msgid "Check the branch related to the current directory" -msgstr "Vérifier la branche relativement au dossier courant" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:71 msgid "Show usage message and options" @@ -11265,9 +11123,8 @@ msgid "Show Help" msgstr "Afficher l’aide" #: /tmp/fish/implicit/share/completions/canto.fish:3 -#, fuzzy msgid "Update before running" -msgstr "Mettre à jour avant de s’exécuter" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:4 msgid "List feeds" @@ -11444,9 +11301,8 @@ msgid "List all files in directories recursively" msgstr "Lister le contenu des dossiers récursivement" #: /tmp/fish/implicit/share/completions/castnow.fish:16 -#, fuzzy msgid "Set at which the volume changes" -msgstr "Patcher les changements locaux" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:17 msgid "Specify port to be used for serving local file" @@ -11643,13 +11499,10 @@ msgid "Set driver specific options" msgstr "Paramétrer les options spécifiques au pilote" #: /tmp/fish/implicit/share/completions/cdrecord.fish:38 -#, fuzzy msgid "" "Set the driveropts specified by driveropts=option list, the speed of the " "drive and the dummy flag and exit" msgstr "" -"Paramétrer les options du lecteur spécifiées par la liste driveopts=…, la " -"vitesse du lecteur et le sémaphore inutile, puis quitter" #: /tmp/fish/implicit/share/completions/cdrecord.fish:39 msgid "Checks if a driver for the current drive is present and exit" @@ -12130,9 +11983,8 @@ msgid "Reset local repo to match remote" msgstr "Réinitialiser le dépôt local avec une copie distante" #: /tmp/fish/implicit/share/completions/climate.fish:42 -#, fuzzy msgid "Seset local repo to match remote" -msgstr "Réinitialiser le dépôt local avec une copie distante" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:43 msgid "List all branches" @@ -12483,9 +12335,8 @@ msgstr "Diagnostiquer le système pour identifier les erreurs courantes" #: /tmp/fish/implicit/share/completions/composer.fish:11 #: /tmp/fish/implicit/share/completions/composer.fish:12 -#, fuzzy msgid "Dumps the autoloader" -msgstr "Mettre à jour le référentiel" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:13 #, sh-format @@ -12519,9 +12370,8 @@ msgid "Lists commands" msgstr "Lister les commandes" #: /tmp/fish/implicit/share/completions/composer.fish:20 -#, fuzzy msgid "Removes a package from the require or require-dev" -msgstr "Supprimer un paquet des listes require ou require-dev" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:21 msgid "Adds required packages to your composer.json and installs them" @@ -12851,9 +12701,8 @@ msgid "Shows if the system is online or offline" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:2 -#, fuzzy msgid "Display technologies" -msgstr "Afficher les technologies" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:3 msgid "Get System Clock Properties" @@ -13203,83 +13052,6 @@ msgstr "Appliquer la correction de couleur à l’image [matrice]" msgid "Enhance or reduce the image contrast" msgstr "Augmenter ou réduire le contraste de l’image" -#: /tmp/fish/implicit/share/completions/cower.fish:1 -msgid "Show output in a more script friendly format" -msgstr "Afficher la sortie dans un format utilisable par un programme" - -#: /tmp/fish/implicit/share/completions/cower.fish:2 -msgid "Download [twice to fetch dependencies]" -msgstr "Télécharger (deux fois pour récupérer également les dépendances)" - -#: /tmp/fish/implicit/share/completions/cower.fish:3 -msgid "Show info for target [twice for more details]" -msgstr "" -"Afficher les informations sur la cible (deux fois pour plus de détails)" - -#: /tmp/fish/implicit/share/completions/cower.fish:4 -msgid "Search for packages by maintainer" -msgstr "Rechercher les paquets par mainteneur" - -#: /tmp/fish/implicit/share/completions/cower.fish:5 -msgid "Search for packages by name" -msgstr "Rechercher les paquets par nom" - -#: /tmp/fish/implicit/share/completions/cower.fish:6 -msgid "Check AUR packages for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:7 -msgid "Use colored output" -msgstr "Colorier la sortie" - -#: /tmp/fish/implicit/share/completions/cower.fish:8 -msgid "Show debug output" -msgstr "Afficher les informations de débogage" - -#: /tmp/fish/implicit/share/completions/cower.fish:9 -msgid "Overwrite existing files when downloading" -msgstr "Écraser les fichiers existants lors du téléchargement" - -#: /tmp/fish/implicit/share/completions/cower.fish:10 -msgid "Print formatted" -msgstr "Afficher de manière formatée" - -#: /tmp/fish/implicit/share/completions/cower.fish:11 -msgid "Display help and quit" -msgstr "Afficher l’aide et quitter" - -#: /tmp/fish/implicit/share/completions/cower.fish:12 -msgid "Ignore a package upgrade" -msgstr "Ignorer la mise à jour d’un paquet" - -#: /tmp/fish/implicit/share/completions/cower.fish:13 -msgid "Ignore a binary repo when checking for updates" -msgstr "Ignorer un dépôt binaire lors de la recherche de mises à jour" - -#: /tmp/fish/implicit/share/completions/cower.fish:14 -msgid "Specify a delimiter for list formatters" -msgstr "Spécifier un séparateur de liste" - -#: /tmp/fish/implicit/share/completions/cower.fish:15 -msgid "Output less" -msgstr "Afficher moins de choses" - -#: /tmp/fish/implicit/share/completions/cower.fish:16 -msgid "Download targets to DIR" -msgstr "Télécharger les cibles dans DOSSIER" - -#: /tmp/fish/implicit/share/completions/cower.fish:17 -msgid "Limit the number of threads created [10]" -msgstr "Limiter le nombre de processus légers créés (10 par défaut)" - -#: /tmp/fish/implicit/share/completions/cower.fish:18 -msgid "Curl timeout in seconds" -msgstr "Délai d’attente en secondes pour curl" - -#: /tmp/fish/implicit/share/completions/cower.fish:19 -msgid "Output more" -msgstr "Afficher plus de choses" - #: /tmp/fish/implicit/share/completions/cowsay.fish:1 #: /tmp/fish/implicit/share/completions/cowthink.fish:1 msgid "Specify eye string" @@ -13431,9 +13203,8 @@ msgid "Do not execute anything that will change the disk." msgstr "Ne rien exécuter qui puisse modifier le disque" #: /tmp/fish/implicit/share/completions/cvs.fish:7 -#, fuzzy msgid "Show trace of program execution -- try with -n." -msgstr "Afficher la pile d’exécution -- essayez avec -n" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:8 msgid "Assume repository is read-only, such as CDROM" @@ -13548,9 +13319,8 @@ msgid "List files available from CVS" msgstr "Lister les fichiers disponibles depuis CVS" #: /tmp/fish/implicit/share/completions/cvs.fish:37 -#, fuzzy msgid "Password server mode" -msgstr "Mode serveur de mots de passe" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:38 msgid "Show last revision where each line of module was modified" @@ -13646,9 +13416,8 @@ msgid "Run interactively." msgstr "Exécuter interactivement" #: /tmp/fish/implicit/share/completions/cvs.fish:61 -#, fuzzy msgid "Set keyword substitution mode:" -msgstr "Définir la substitution de mots-clés par défaut" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:62 msgid "[rev] Lock revision (latest revision on branch," @@ -13840,9 +13609,8 @@ msgstr "Valider dans cette branche ou révision principale" #: /tmp/fish/implicit/share/completions/cvs.fish:104 #: /tmp/fish/implicit/share/completions/cvs.fish:218 -#, fuzzy msgid "Specify keyword expansion mode." -msgstr "Spécifier le type d'enregistrement" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:105 msgid "Diff revision for date against working file." @@ -13885,9 +13653,8 @@ msgid "Binary Read and write data in binary mode." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:115 -#, fuzzy msgid "--text Treat all files as text." -msgstr "Traiter tous les fichiers comme du texte" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:116 msgid "" @@ -13908,23 +13675,20 @@ msgid "--label LABEL Use LABEL instead of file name." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:120 -#, fuzzy msgid "--show-c-function Show which C function each change is in." -msgstr "Identifier la fonction C contenant chaque changement" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:121 msgid "--show-function-line=RE Show the most recent line matching RE." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:122 -#, fuzzy msgid "Brief Output only whether files differ." -msgstr "Rapporter seulement si les fichiers diffèrent" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:123 -#, fuzzy msgid "--ed Output an ed script." -msgstr "Faire de la sortie un script ed valide" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:124 msgid "--forward-ed Output something like an ed script in forward order." @@ -13965,18 +13729,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:134 -#, fuzzy msgid "--expand-tabs Expand tabs to spaces in output." -msgstr "Remplacer les tabs par des espaces" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:135 msgid "--initial-tab Make tabs line up by prepending a tab." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:136 -#, fuzzy msgid "--new-file Treat absent files as empty." -msgstr "Traiter tous les fichiers comme du texte" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:137 msgid "--report-identical-files Report when two files are the same." @@ -14034,9 +13796,8 @@ msgid "Export tagged revisions." msgstr "Exporter les révisions étiquetées" #: /tmp/fish/implicit/share/completions/cvs.fish:154 -#, fuzzy msgid "Export revisions as of date." -msgstr "Exporter les révisions à ce jour" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:155 msgid "Export into dir instead of module name." @@ -14047,9 +13808,8 @@ msgid "Use RCS kopt -k option on checkout." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:157 -#, fuzzy msgid "Produce report on all TAGs" -msgstr "Faire un rapport sur toutes les étiquettes" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:158 msgid "Committed (Modified) files" @@ -14126,16 +13886,12 @@ msgstr "" "Utiliser l’horodatage de modification du fichier comme le moment de l’import" #: /tmp/fish/implicit/share/completions/cvs.fish:176 -#, fuzzy msgid "When importing new files, mark their trunk revisions as dead." msgstr "" -"Lors de l’import de nouveaux fichiers, marquer leurs révisions trunk comme " -"inactives" #: /tmp/fish/implicit/share/completions/cvs.fish:177 -#, fuzzy msgid "Set default RCS keyword substitution mode." -msgstr "Définir la substitution de mots-clés par défaut" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:178 #: /tmp/fish/implicit/share/completions/cvs.fish:284 @@ -14257,9 +14013,8 @@ msgid "Context diffs (default)" msgstr "Diffs contextuels (par défaut)" #: /tmp/fish/implicit/share/completions/cvs.fish:214 -#, fuzzy msgid "Unidiff format." -msgstr "Utiliser le format unifié" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:215 msgid "Short patch - one liner per file." @@ -14286,9 +14041,8 @@ msgid "Delete the given directory." msgstr "Supprimer le dossier spécifié" #: /tmp/fish/implicit/share/completions/cvs.fish:222 -#, fuzzy msgid "Delete the file before removing it." -msgstr "Supprimer le fichier avant de le détruire" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:245 msgid "Clear tag from removed files that would not otherwise be tagged." @@ -14352,19 +14106,16 @@ msgid "Build directories, like checkout does." msgstr "Construire les dossiers, comme le fait checkout" #: /tmp/fish/implicit/share/completions/cvs.fish:279 -#, fuzzy msgid "Send updates to standard output (avoids stickiness)." -msgstr "Envoyer les mises à jour sur la sortie standar" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:281 -#, fuzzy msgid "Update using specified revision/tag (is sticky)." -msgstr "Mettre à jour en utilisant la révision ou l’étiquette spécifiée" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:282 -#, fuzzy msgid "Set date to update from (is sticky)." -msgstr "Paramétrer la date à mettre à jour" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:288 msgid "Specify what actions, one of: " @@ -14578,9 +14329,8 @@ msgid "Send by email a bundle of one or more patches" msgstr "Envoyer par email un lot d’un ou plusieurs patchs" #: /tmp/fish/implicit/share/completions/darcs.fish:403 -#, fuzzy msgid "Path to a version-controlled boring file" -msgstr "Chemin vers le fichier des binaires versionnés" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:404 msgid "Path to a version-controlled binaries file" @@ -15232,9 +14982,8 @@ msgstr "Désactiver le pipelining HTTP" #: /tmp/fish/implicit/share/completions/darcs.fish:870 #: /tmp/fish/implicit/share/completions/darcs.fish:905 #: /tmp/fish/implicit/share/completions/darcs.fish:1023 -#, fuzzy msgid "Don't use patch caches" -msgstr "Ne pas utiliser les caches de patch" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:480 #: /tmp/fish/implicit/share/completions/darcs.fish:610 @@ -15517,9 +15266,8 @@ msgid "Specify output filename" msgstr "Spécifier le nom du fichier de sortie" #: /tmp/fish/implicit/share/completions/darcs.fish:763 -#, fuzzy msgid "Edit the patch bundle description" -msgstr "Redirige vers un descripteur de fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:767 #: /tmp/fish/implicit/share/completions/darcs.fish:827 @@ -15646,9 +15394,8 @@ msgid "Reorder the patches in the repository" msgstr "Ré-ordonner les patchs dans le dossier" #: /tmp/fish/implicit/share/completions/darcs.fish:938 -#, fuzzy msgid "Specify a sibling directory" -msgstr "Spécifier un répertoire frère" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:939 msgid "Relink random internal data to a sibling" @@ -15839,9 +15586,8 @@ msgstr "" "Utiliser le dernier bail, même expiré, si un nouveau ne peut être obtenu" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:7 -#, fuzzy msgid "Push given value the environment" -msgstr "Supprimer la variable de l’environnement" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:8 msgid "Reapply configuration for each interface" @@ -16655,18 +16401,16 @@ msgid "Use current default (" msgstr "Utiliser le réglage actuel (" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:6 -#, fuzzy msgid "Show only unseen question" -msgstr "N’afficher que les questions pour novices" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:7 msgid "Reconfigure also inconsistent packages" msgstr "Également reconfigurer les paquets incohérents" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:8 -#, fuzzy msgid "Prevent reloading templates" -msgstr "Empêcher le rechargement des patrons" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:1 msgid "Get current status of the dropboxd" @@ -16956,9 +16700,8 @@ msgid "Don't read unguessable slots of installed packages (toggle)" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:7 -#, fuzzy msgid "Always read slots of installed packages" -msgstr "Reconstruire et installer un paquet installé" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:8 msgid "(no) output (toggle)" @@ -17029,9 +16772,8 @@ msgid "Match packages without best slotted version" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:25 -#, fuzzy msgid "Match packages from overlays" -msgstr "Récupérer le paquet de STDIN" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:26 msgid "Match packages with obsolete entries" @@ -17271,9 +17013,8 @@ msgid "load neither ~/.emacs nor default.el" msgstr "Ne charger ni ~/.emacs ni default.el" #: /tmp/fish/implicit/share/completions/emacs.fish:8 -#, fuzzy msgid "do not load loadup.el into bare Emacs" -msgstr "Ne pas charger loadup.el de manière brute dans Emacs" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:9 msgid "do not load site-start.el" @@ -17756,19 +17497,16 @@ msgid "Remove variable from the environment" msgstr "Supprimer la variable de l’environnement" #: /tmp/fish/implicit/share/completions/eopkg.fish:1 -#, fuzzy msgid "Print list of components" -msgstr "Afficher le nombre de paquets compressés en entrée" +msgstr "" #: /tmp/fish/implicit/share/completions/eopkg.fish:2 -#, fuzzy msgid "Print list of repositories" -msgstr "Rafraîchir également les dépôt" +msgstr "" #: /tmp/fish/implicit/share/completions/eopkg.fish:3 -#, fuzzy msgid "Component" -msgstr "Compléter go" +msgstr "" #: /tmp/fish/implicit/share/completions/eopkg.fish:5 #: /tmp/fish/implicit/share/completions/helm.fish:66 @@ -17784,25 +17522,20 @@ msgid "Keep bandwidth usage under specified KB's" msgstr "" #: /tmp/fish/implicit/share/completions/eopkg.fish:8 -#, fuzzy msgid "Assume yes for all yes/no queries" -msgstr "Présumer oui à toutes les questions" +msgstr "" #: /tmp/fish/implicit/share/completions/eopkg.fish:9 -#, fuzzy msgid "Detailed output" -msgstr "Sortie large" +msgstr "" #: /tmp/fish/implicit/share/completions/eopkg.fish:10 -#, fuzzy msgid "Show debugging information" -msgstr "Afficher les informations de débogage" +msgstr "" #: /tmp/fish/implicit/share/completions/eopkg.fish:12 -#, fuzzy msgid "Show program's version number and exit" -msgstr "Afficher le numéro de version du programme et quitter" - +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:3 msgid "" @@ -17998,9 +17731,8 @@ msgstr "" "exercism.io" #: /tmp/fish/implicit/share/completions/exercism.fish:13 -#, fuzzy msgid "Skips a problem given a track ID and problem slug." -msgstr "Sauter un problème d’après son ID et" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:14 msgid "Fetches information about your progress with a given language track." @@ -18077,11 +17809,8 @@ msgid "removes a jail from ezjail's config" msgstr "Supprimer un environnement jail de la configuration de ezjail" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:10 -#, fuzzy msgid "dump diffs between jail initialisation and freeze time into a flavour" msgstr "" -"Afficher le diff entre l’initialisation d’un environnement jail et un gel " -"dans une saveur" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:12 msgid "create the basejail from binary packages" @@ -18390,9 +18119,8 @@ msgid "Use style as background for transparent image parts" msgstr "Utiliser le style comme arrière-plan pour les parties transparentes" #: /tmp/fish/implicit/share/completions/feh.fish:19 -#, fuzzy msgid "Enable index mode" -msgstr "Activer le mode index" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:20 msgid "Show image information based on given format" @@ -18698,9 +18426,8 @@ msgid "Print version and copyright" msgstr "Afficher la version et les droits d’auteur" #: /tmp/fish/implicit/share/completions/figlet.fish:22 -#, fuzzy msgid "Print information given infocode" -msgstr "Afficher l'historique d'un module" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:23 msgid "Print left-to-right" @@ -19161,11 +18888,8 @@ msgstr "" "débogage" #: /tmp/fish/implicit/share/completions/fish_indent.fish:9 -#, fuzzy msgid "Dump information about parsed statements to stderr" msgstr "" -"Afficher des informations sur les instructions parcourues sur la sortie " -"d’erreur" #: /tmp/fish/implicit/share/completions/flac.fish:1 msgid "Show the flac version number" @@ -19251,11 +18975,8 @@ msgid "Continue decoding through stream errors" msgstr "Continuer le décodage en cas d’erreur de flux" #: /tmp/fish/implicit/share/completions/flac.fish:21 -#, fuzzy msgid "Set the beginning and ending cuepoints to decode [#.#][-[#.#]]" msgstr "" -"Paramétrer le début et la fin des points du fichier cue à décoder [#.#][-[#." -"#]]" #: /tmp/fish/implicit/share/completions/flac.fish:22 msgid "Verify a correct encoding" @@ -19333,9 +19054,8 @@ msgid "Synonymous with -l 12 -b 4608 -m -e -r 6" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:42 -#, fuzzy msgid "Specify blocksize in samples" -msgstr "Spécifier la taille de bloc dans les échantillons" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:43 msgid "Try mid-side coding for each frame" @@ -19428,9 +19148,8 @@ msgid "Don't use Ogg as transport layer" msgstr "Ne pas utiliser Ogg comme couche de transport" #: /tmp/fish/implicit/share/completions/flac.fish:67 -#, fuzzy msgid "Don't write a PADDING block of length #" -msgstr "Ne pas écrire de bloc de bourrage de la taille spécifiée" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:68 msgid "Don't exhaustively search LP coeff quantization" @@ -20179,9 +19898,8 @@ msgid "Rebuild a repository" msgstr "Reconstruire un dépôt" #: /tmp/fish/implicit/share/completions/fossil.fish:183 -#, fuzzy msgid "Compute clusters" -msgstr "Calculer les grappes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:184 msgid "Compress database" @@ -20635,9 +20353,8 @@ msgid "Save function" msgstr "Enregistrer la fonction" #: /tmp/fish/implicit/share/completions/funced.fish:2 -#, fuzzy msgid "Open function in external editor" -msgstr "Ouvrir la fonction dans un éditeur externe" +msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:3 msgid "Edit in interactive mode" @@ -21784,22 +21501,16 @@ msgstr "" "incompatible" #: /tmp/fish/implicit/share/completions/gcc.fish:153 -#, fuzzy msgid "" "Warn about ISO C constructs that are outside of the common subset of ISO C " "and ISO C++, e" msgstr "" -"Avertir lorsque des constructions C ISO sont hors du jeu commun à C ISO et C+" -"+ ISO" #: /tmp/fish/implicit/share/completions/gcc.fish:154 -#, fuzzy msgid "" "Warn whenever a pointer is cast so as to remove a type qualifier from the " "target type" msgstr "" -"Avertir lorsqu’un pointeur voit son type converti afin de supprimer un " -"attribut de type du type cible" #: /tmp/fish/implicit/share/completions/gcc.fish:155 msgid "" @@ -22196,13 +21907,10 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:216 #: /tmp/fish/implicit/share/completions/gcc.fish:217 -#, fuzzy msgid "" "(C++ only) Dump a representation of the tree structure for the entire " "translation unit to a file" msgstr "" -"(C++ uniquement) Produire, dans un fichier, un dump représentant " -"l’arborescence de l’intégralité de l’unité de traduction" #: /tmp/fish/implicit/share/completions/gcc.fish:218 #: /tmp/fish/implicit/share/completions/gcc.fish:219 @@ -22324,9 +22032,8 @@ msgstr "" "exemple : « i686-pc-linux-gnu »" #: /tmp/fish/implicit/share/completions/gcc.fish:236 -#, fuzzy msgid "Print the compiler version (for example, 3" -msgstr "Afficher la version du compilateur (par exemple, « 3" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:237 msgid "Print the compiler’s built-in specs---and don’t do anything else" @@ -22532,13 +22239,10 @@ msgstr "" "d’élimination des variables d’itération" #: /tmp/fish/implicit/share/completions/gcc.fish:267 -#, fuzzy msgid "" "Perform optimizations where we check to see if a jump branches to a location " "where another comparison subsumed by the first is found" msgstr "" -"Effectuer des optimisations basées sur la vérification qu’un saut branche à " -"un emplacement où se situe une autre comparaison dépendant de la première" #: /tmp/fish/implicit/share/completions/gcc.fish:268 msgid "" @@ -22575,14 +22279,10 @@ msgid "Perform a global common subexpression elimination pass" msgstr "Effectuer une passe globale de recherche de sous-expressions communes" #: /tmp/fish/implicit/share/completions/gcc.fish:273 -#, fuzzy msgid "" "When -fgcse-lm is enabled, global common subexpression elimination will " "attempt to move loads which are only killed by stores into themselves" msgstr "" -"Lorsque -fgcse-lm est activée, la recherche de sous-expressions communes " -"globale tentera de déplacer en eux-mêmes les chargements qui ne sont arrêtés " -"que par des stockages" #: /tmp/fish/implicit/share/completions/gcc.fish:274 msgid "" @@ -22634,9 +22334,8 @@ msgstr "" "triviales ne sont pas infinies" #: /tmp/fish/implicit/share/completions/gcc.fish:280 -#, fuzzy msgid "Perform cross-jumping transformation" -msgstr "Effectuer la transformation trans-saut" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:281 msgid "Attempt to transform conditional jumps into branch-less equivalents" @@ -22666,14 +22365,10 @@ msgstr "Effectuer plusieurs optimisations mineures relativement gourmandes" #: /tmp/fish/implicit/share/completions/gcc.fish:285 #: /tmp/fish/implicit/share/completions/gcc.fish:286 -#, fuzzy msgid "" "Attempt to reassign register numbers in move instructions and as operands of " "other simple instructions in order to maximize the amount of register tying" msgstr "" -"Essayer de réassigner les numéros de registre en instructions de déplacement " -"et comme opérandes d’autres instructions simples afin de maximiser la " -"ligature de registres" #: /tmp/fish/implicit/share/completions/gcc.fish:287 msgid "" @@ -22805,9 +22500,8 @@ msgid "Perform structural alias analysis on trees" msgstr "Effectuer l’analyse structurelle d’alias sur les arborescences" #: /tmp/fish/implicit/share/completions/gcc.fish:305 -#, fuzzy msgid "Perform forward store motion on trees" -msgstr "Effectuer le déplacement des stockage sur les arborescences" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:306 #: /tmp/fish/implicit/share/completions/gcc.fish:307 @@ -22819,15 +22513,11 @@ msgid "Perform dead code elimination (DCE) on trees" msgstr "Effectuer la suppression du code mort sur les arborescences" #: /tmp/fish/implicit/share/completions/gcc.fish:309 -#, fuzzy msgid "" "Perform a variety of simple scalar cleanups (constant/copy propagation, " "redundancy elimination, range propagation and expression simplification) " "based on a dominator tree traversal" msgstr "" -"Effectuer une série de nettoyage trivial des variables (propagation des " -"constantes et des copies, élimination de redondances, propagation de portée " -"et simplification d’expressions) basée sur un survol de l’arborescence" #: /tmp/fish/implicit/share/completions/gcc.fish:310 msgid "Perform loop header copying on trees" @@ -22866,22 +22556,16 @@ msgid "Perform scalar replacement of aggregates" msgstr "Effectuer le replacement des variables agrégées" #: /tmp/fish/implicit/share/completions/gcc.fish:317 -#, fuzzy msgid "Perform copy renaming on trees" -msgstr "Effectuer le renommage des copies sur l’arborescence" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:318 -#, fuzzy msgid "Perform temporary expression replacement during the SSA->normal phase" msgstr "" -"Effectuer le remplacement temporaire d’expressions pendant la phase SSA → " -"normal" #: /tmp/fish/implicit/share/completions/gcc.fish:319 -#, fuzzy msgid "Perform live range splitting during the SSA->normal phase" msgstr "" -"Effectuer le partage direct des intervalles pendant la phase SSA → normal" #: /tmp/fish/implicit/share/completions/gcc.fish:320 msgid "Perform loop vectorization on trees" @@ -22969,15 +22653,11 @@ msgstr "" "de branches empruntées et améliorer l’enchaînement des sections de code" #: /tmp/fish/implicit/share/completions/gcc.fish:333 -#, fuzzy msgid "" "In addition to reordering basic blocks in the compiled function, in order to " "reduce number of taken branches, partitions hot and cold basic blocks into " "separate sections of the assembly and " msgstr "" -"En plus du réarrangement des blocs basiques de la fonction compilée pour " -"réduire le nombre de branches empruntées, séparer les blocs basiques chauds " -"et froids en section distinctes de l’assemblage et " #: /tmp/fish/implicit/share/completions/gcc.fish:334 msgid "Reorder functions in the object file in order to improve code locality" @@ -23205,13 +22885,10 @@ msgstr "" "utilisant les registres laissés libres après leur allocation" #: /tmp/fish/implicit/share/completions/gcc.fish:368 -#, fuzzy msgid "" "Peels the loops for that there is enough information that they do not roll " "much (from profile feedback)" msgstr "" -"Peler les boucles pour qu’elles laissent suffisamment d’informations pour un " -"profil" #: /tmp/fish/implicit/share/completions/gcc.fish:369 msgid "Enables the loop invariant motion pass in the new loop optimizer" @@ -23436,13 +23113,10 @@ msgstr "" "les ajouter à la liste des dépendances sans générer d’erreur" #: /tmp/fish/implicit/share/completions/gcc.fish:405 -#, fuzzy msgid "" "This option instructs CPP to add a phony target for each dependency other " "than the main file, causing each to depend on nothing" msgstr "" -"Demander à CPP l’ajout d’une dépendance contrefaite pour chaque dépendance " -"issue d’ailleurs que du fichier principal, les changeant en dépendance nulle" #: /tmp/fish/implicit/share/completions/gcc.fish:406 msgid "Change the target of the rule emitted by dependency generation" @@ -24084,15 +23758,11 @@ msgstr "" "l’exécution du reste de la fonction" #: /tmp/fish/implicit/share/completions/gcc.fish:523 -#, fuzzy msgid "" "Allows calls via function pointers (including virtual functions) to execute " "correctly regardless of whether the target code has been compiled for " "interworking or not" msgstr "" -"Autoriser les appels par des pointeurs de fonction, y compris virtuelles, " -"afin que le code s’exécute correctement, que le code cible ait été compilé " -"pour l’interworking ou non" #: /tmp/fish/implicit/share/completions/gcc.fish:524 msgid "Specify the access model for the thread local storage pointer" @@ -24766,13 +24436,10 @@ msgstr "" "représenter les pointeurs" #: /tmp/fish/implicit/share/completions/gcc.fish:706 -#, fuzzy msgid "" "Enable inlining of PLT entries in function calls to functions that are not " "known to bind locally" msgstr "" -"Activer l’extension inline des entrées PLT dans les appels de fonction pour " -"celles qui ne sont pas réputées se lier localement" #: /tmp/fish/implicit/share/completions/gcc.fish:707 msgid "Assume a large TLS segment when generating thread-local code" @@ -25252,15 +24919,11 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:819 #: /tmp/fish/implicit/share/completions/gcc.fish:820 -#, fuzzy msgid "" "Controls whether TLS variables may be accessed with offsets from the TLS " "segment register (%gs for 32-bit, %fs for 64-bit), or whether the thread " "base pointer must be added" msgstr "" -"Paramétrer si les variables TLS peuvent être accédées avec décalage depuis " -"le registre de segment TLS (%gs pour du 32 bits, %fs pour du 64 bits), ou si " -"le pointeur de thread de base doit être ajouté" #: /tmp/fish/implicit/share/completions/gcc.fish:821 #: /tmp/fish/implicit/share/completions/gcc.fish:822 @@ -25534,14 +25197,10 @@ msgstr "" "référencer" #: /tmp/fish/implicit/share/completions/gcc.fish:875 -#, fuzzy msgid "" "Put global and static objects less than or equal to num bytes into the small " "data or bss sections instead of the normal data or bss sections" msgstr "" -"Placer les objets globaux et statiques à environ le nombre d’octets spécifié " -"dans les sections de petites données ou petites bss au lieu des sections des " -"données normales ou bss normales" #: /tmp/fish/implicit/share/completions/gcc.fish:876 msgid "" @@ -26032,13 +25691,10 @@ msgstr "" "flottante, si elles sont disponibles" #: /tmp/fish/implicit/share/completions/gcc.fish:1004 -#, fuzzy msgid "" "Tell the MIPS assembler to not run its preprocessor over user assembler " "files (with a " msgstr "" -"Demander à l’assembleur MIPS de ne pas exécuter le préprocesseur sur les " -"fichiers assembleur de l’utilisateur" #: /tmp/fish/implicit/share/completions/gcc.fish:1005 #: /tmp/fish/implicit/share/completions/gcc.fish:1006 @@ -26208,10 +25864,8 @@ msgstr "" "des processeurs MN10300" #: /tmp/fish/implicit/share/completions/gcc.fish:1043 -#, fuzzy msgid "Generate code which uses features specific to the AM33 processor" msgstr "" -"Générer du code utilisant les fonctionnalités spécifiques du processeur AM33" #: /tmp/fish/implicit/share/completions/gcc.fish:1044 msgid "Do not generate code which uses features specific to the AM33 processor" @@ -26624,13 +26278,10 @@ msgstr "" "relogable, contrairement à ses références externes" #: /tmp/fish/implicit/share/completions/gcc.fish:1157 -#, fuzzy msgid "" "=priority This option controls the priority that is assigned to dispatch-" "slot restricted instructions during the second scheduling pass" msgstr "" -"Spécifier la priorité à accorder aux instructions restreintes pendant la " -"deuxième passe de planification" #: /tmp/fish/implicit/share/completions/gcc.fish:1158 msgid "" @@ -26793,9 +26444,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1206 #: /tmp/fish/implicit/share/completions/gcc.fish:1207 -#, fuzzy msgid "Use (do not use) the packed stack layout" -msgstr "(Ne pas) utiliser la structure de piles empaquetées" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1208 #: /tmp/fish/implicit/share/completions/gcc.fish:1209 @@ -27146,17 +26796,12 @@ msgstr "" "mémoire" #: /tmp/fish/implicit/share/completions/gcc.fish:1292 -#, fuzzy msgid "" "=medmid Generate code for the Medium/Middle code model: 64-bit addresses, " "programs must be linked in the low 44 bits of memory, the text and data " "segments must be less than 2GB in size and the data segment must be located " "within 2GB of the text segment" msgstr "" -"=medmid Générer du code selon le modèle de code Medium/Middle : adresses sur " -"64 bits, les programmes doivent être liés sur les premiers 44 bits de " -"mémoire, les segments de texte et de données doivent peser moins de 2 Gio et " -"le segment de données doit pouvoir tenir dans le segment de texte" #: /tmp/fish/implicit/share/completions/gcc.fish:1293 msgid "" @@ -27272,13 +26917,10 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1318 #: /tmp/fish/implicit/share/completions/gcc.fish:1319 -#, fuzzy msgid "" "Enable (disable) generation of repeat block sequences using the RPTB " "instruction for zero overhead looping" msgstr "" -"(Ne pas) générer de séquences de blocs répétitive utilisant l’instruction " -"RPTB pour des boucles sans surcharge" #: /tmp/fish/implicit/share/completions/gcc.fish:1320 #: /tmp/fish/implicit/share/completions/gcc.fish:1321 @@ -27498,9 +27140,8 @@ msgid "Enable exception handling" msgstr "Activer la gestion des exceptions" #: /tmp/fish/implicit/share/completions/gcc.fish:1366 -#, fuzzy msgid "Generate code that allows trapping instructions to throw exceptions" -msgstr "Générer du code autorisant les instructions de génération d’exceptions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1367 msgid "" @@ -27983,15 +27624,13 @@ msgstr "Ne pas exécuter les tests unitaires avant l’installation" #: /tmp/fish/implicit/share/completions/gem.fish:44 #: /tmp/fish/implicit/share/completions/gem.fish:93 -#, fuzzy msgid "Use bin wrappers for executables" -msgstr "Utiliser des encapsuleurs binaires pour les exécutables" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:45 #: /tmp/fish/implicit/share/completions/gem.fish:94 -#, fuzzy msgid "Don't use bin wrappers for executables" -msgstr "Ne pas utiliser des encapsuleurs binaires pour les exécutables" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:46 #: /tmp/fish/implicit/share/completions/gem.fish:95 @@ -28000,9 +27639,8 @@ msgstr "Spécifier la politique de confiance des gemmes" #: /tmp/fish/implicit/share/completions/gem.fish:47 #: /tmp/fish/implicit/share/completions/gem.fish:96 -#, fuzzy msgid "Do not install any required dependent gems" -msgstr "N’installer aucune gemme de dépendance obligatoire" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:48 #: /tmp/fish/implicit/share/completions/gem.fish:97 @@ -28022,9 +27660,8 @@ msgid "Don't display detailed information of gem(s)" msgstr "Ne pas afficher les informations détaillées sur la ou les gemmes" #: /tmp/fish/implicit/share/completions/gem.fish:54 -#, fuzzy msgid "Name of gem(s) to query on matches the provided REGEXP" -msgstr "Le nom de la ou des gemmes correspond à la REGEXP fournie" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:60 msgid "Generate RDoc/RI documentation for all installed gems" @@ -28247,11 +27884,8 @@ msgid "This is the filter for rewriting the index." msgstr "Ceci est le filtre destiné à la ré-écriture de l’index." #: /tmp/fish/implicit/share/completions/git.fish:31 -#, fuzzy msgid "This is the filter for rewriting the commit\\(cqs parent list." msgstr "" -"Ceci est le filtre destiné à la ré-écriture de la liste parente de la " -"validation \\(cqs." #: /tmp/fish/implicit/share/completions/git.fish:32 msgid "This is the filter for rewriting the commit messages." @@ -28335,9 +27969,8 @@ msgid "Changes URLs for a remote" msgstr "Modifier les URL d’un hôte distant" #: /tmp/fish/implicit/share/completions/git.fish:50 -#, fuzzy msgid "Changes the list of branches tracked by a remote" -msgstr "Change la liste des branches suivies par un serveur distant" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:51 msgid "Once the remote information is set up git fetch is run" @@ -28797,48 +28430,33 @@ msgid "Reverse meaning of ^ prefix" msgstr "Inverser la signification de ^" #: /tmp/fish/implicit/share/completions/git.fish:173 -#, fuzzy msgid "" "Pretend as if all refs in refs/ are listed on the command line as " msgstr "" -"Prétendre que toutes les références dans refs/ sont listées sur la ligne de " -"commande comme avec " #: /tmp/fish/implicit/share/completions/git.fish:174 -#, fuzzy msgid "" "Pretend as if all refs are in refs/heads are listed on the command line as " "" msgstr "" -"Prétendre que toutes les références dans refs/heads sont listées sur la " -"ligne de commande comme avec " #: /tmp/fish/implicit/share/completions/git.fish:175 -#, fuzzy msgid "" "Pretend as if all refs are in ref/tags are listed on the command line as " "" msgstr "" -"Prétendre que toutes les références dans refs/tags sont listées sur la ligne " -"de commande comme avec " #: /tmp/fish/implicit/share/completions/git.fish:176 -#, fuzzy msgid "" "Pretend as if all refs in refs/remotes are listed on the command line as " "" msgstr "" -"Prétendre que toutes les références dans refs/remotes sont listées sur la " -"ligne de commande comme avec " #: /tmp/fish/implicit/share/completions/git.fish:177 -#, fuzzy msgid "" "Pretend as if all refs matching shell glob are listed on the command line as " "" msgstr "" -"Prétendre que toutes les références correspondant au glob shell sont listées " -"sur la ligne de commande comme avec " #: /tmp/fish/implicit/share/completions/git.fish:178 msgid "Do not include refs matching given glob pattern" @@ -29027,9 +28645,8 @@ msgid "Push all refs under refs/tags" msgstr "Pousser toutes les références de refs/tags" #: /tmp/fish/implicit/share/completions/git.fish:233 -#, fuzzy msgid "Push all usual refs plus the ones under refs/tags" -msgstr "Pousser toutes les références de refs/tags" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:234 msgid "Do everything except actually send the updates" @@ -29429,13 +29046,10 @@ msgid "Don't fetch new objects from the remote" msgstr "Ne pas rapatrier de nouveaux objets depuis le serveur distant" #: /tmp/fish/implicit/share/completions/git.fish:350 -#, fuzzy msgid "" "Instead of using superproject's SHA-1, use the state of the submodule's " "remote-tracking branch" msgstr "" -"Au lieu d’utiliser la somme SHA-1 du superprojet, utiliser l’état de la " -"branche de suivi du sous-module" #: /tmp/fish/implicit/share/completions/git.fish:351 msgid "" @@ -29446,9 +29060,8 @@ msgstr "" "et toujours exécuter checkout" #: /tmp/fish/implicit/share/completions/git.fish:352 -#, fuzzy msgid "Also add ignored submodule path" -msgstr "Ajouter également le chemin du sous-module ignoré" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:353 msgid "Remove even with local changes" @@ -29567,13 +29180,10 @@ msgid "Detect moved or copied lines within a file" msgstr "Détecter les lignes déplacées ou dupliquées dans un fichier" #: /tmp/fish/implicit/share/completions/git.fish:381 -#, fuzzy msgid "" "Detect lines moved or copied from other files that were modified in the same " "commit" msgstr "" -"Détecter les lignes déplacées ou copiées depuis d’autres fichiers, eux-mêmes " -"modifiés par la même validation" #: /tmp/fish/implicit/share/completions/git.fish:383 msgid "Use the same output mode as git-annotate" @@ -29733,9 +29343,8 @@ msgid "c compiler flags" msgstr "Sémaphores de compilation C" #: /tmp/fish/implicit/share/completions/go.fish:10 -#, fuzzy msgid "name of compiler to use, as in runtime" -msgstr "Nom du compilateur à utiliser" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:11 msgid "gccgo compiler/linker flags" @@ -29902,9 +29511,8 @@ msgid "print Go version" msgstr "Afficher la version de Go" #: /tmp/fish/implicit/share/completions/go.fish:51 -#, fuzzy msgid "vet packages" -msgstr "Supprime les paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:52 msgid "print the command that would be executed" @@ -30376,12 +29984,9 @@ msgstr "" "Ne pas demander de niveau de certification lors de la signature d’une clé" #: /tmp/fish/implicit/share/completions/gpg.fish:78 -#, fuzzy msgid "" "The default certification level to use for the level check when signing a key" msgstr "" -"Le niveau de certification par défaut à utiliser pour la vérification de " -"niveau lors de la signature d’une clé" #: /tmp/fish/implicit/share/completions/gpg.fish:79 msgid "" @@ -31074,14 +30679,12 @@ msgid "Get configuration value" msgstr "Obtenir une valeur de configuration" #: /tmp/fish/implicit/share/completions/gphoto2.fish:28 -#, fuzzy msgid "Set configuration value or index in choices" -msgstr "Paramétrer une valeur de configuration ou un index dans les choix" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:29 -#, fuzzy msgid "Set configuration value index in choices" -msgstr "Paramétrer un indice de valeur de configuration dans les choix" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:30 msgid "Set configuration value" @@ -31420,9 +31023,8 @@ msgid "Set log level to info" msgstr "Paramétrer le niveau de journalisation à info" #: /tmp/fish/implicit/share/completions/gradle.fish:16 -#, fuzzy msgid "Include specified build in composite" -msgstr "Inclure la version spécifiée dans le composite" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:17 msgid "Runs build with all task actions disabled" @@ -31988,9 +31590,8 @@ msgid "Print the version information" msgstr "Afficher les informations de version" #: /tmp/fish/implicit/share/completions/gsettings.fish:2 -#, fuzzy msgid "Specify a custom schemas directory" -msgstr "Spécifier un dossier personnalisé de schémas" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:3 msgid "Get the value of a key" @@ -32272,9 +31873,8 @@ msgid "Location of your Helm config" msgstr "Emplacement de votre configuration Helm" #: /tmp/fish/implicit/share/completions/helm.fish:3 -#, fuzzy msgid "Address of tiller" -msgstr "Erreur de frontière d'adresse" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:4 msgid "Name of the kubeconfig context to use" @@ -32354,9 +31954,8 @@ msgstr "Vérifier la signature du paquet" #: /tmp/fish/implicit/share/completions/helm.fish:35 #: /tmp/fish/implicit/share/completions/helm.fish:47 #: /tmp/fish/implicit/share/completions/helm.fish:87 -#, fuzzy msgid "Chart version" -msgstr "Afficher la version des paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:24 #: /tmp/fish/implicit/share/completions/helm.fish:68 @@ -32377,14 +31976,12 @@ msgid "Use the canary tiller image" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:29 -#, fuzzy msgid "Do not install tiller" -msgstr "Ne pas suppr. les fichiers construits" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:30 -#, fuzzy msgid "Do not install local or remote" -msgstr "Afficher l'état des fichiers extraits" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:31 msgid "Override tiller image" @@ -32463,9 +32060,8 @@ msgid "Show deployed releases" msgstr "Afficher les versions déployées" #: /tmp/fish/implicit/share/completions/helm.fish:54 -#, fuzzy msgid "Show failed releases" -msgstr "Afficher les version échouées" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:55 msgid "Maximum number of releases to fetch" @@ -32488,9 +32084,8 @@ msgid "Name of the key to use when signing" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:61 -#, fuzzy msgid "Save packaged chart to local chart repository" -msgstr "Déplacer les paquets dans l'arbre local" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:62 msgid "Use a PGP private key to sign this package" @@ -32711,9 +32306,8 @@ msgid "Input/Output (IO) redirection" msgstr "Redirection d’entrée/sortie (E/S)" #: /tmp/fish/implicit/share/completions/help.fish:42 -#, fuzzy msgid "Shared bindings" -msgstr "Afficher les avertissements" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:43 msgid "Introduction to the fish syntax" @@ -33245,9 +32839,8 @@ msgid "roll back to an older release" msgstr "Revenir à une version antérieure" #: /tmp/fish/implicit/share/completions/heroku.fish:92 -#, fuzzy msgid "specify dyno size" -msgstr "Spécifier le fichier de config" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:93 msgid "open a remote console session (with optional COMMAND)" @@ -33556,9 +33149,8 @@ msgid "merge with old dirstate parent after backout" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:53 -#, fuzzy msgid "revision to backout" -msgstr "Choisir l'affichage" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:54 #: /tmp/fish/implicit/share/completions/hg.fish:160 @@ -33940,9 +33532,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:259 #: /tmp/fish/implicit/share/completions/hg.fish:282 #: /tmp/fish/implicit/share/completions/hg.fish:290 -#, fuzzy msgid "display using template map file" -msgstr "Afficher la page de manuel" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:180 #: /tmp/fish/implicit/share/completions/hg.fish:228 @@ -33965,9 +33556,8 @@ msgid "show topics matching keyword" msgstr "Afficher les sujets contenant un mot-clé" #: /tmp/fish/implicit/share/completions/hg.fish:185 -#, fuzzy msgid "read history edits from the specified file" -msgstr "Lire les éditions de l’historique depuis le fichier spécifié" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:186 msgid "continue an edit already in progress" @@ -33994,9 +33584,8 @@ msgid "first revision to be edited" msgstr "Première révision à éditer" #: /tmp/fish/implicit/share/completions/hg.fish:193 -#, fuzzy msgid "identify the specified revision" -msgstr "Identifier la révision spécifiée" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:194 msgid "show local revision number" @@ -34019,9 +33608,8 @@ msgid "show bookmarks" msgstr "Afficher les marque-pages" #: /tmp/fish/implicit/share/completions/hg.fish:203 -#, fuzzy msgid "directory strip option for patch" -msgstr "Préfixe à sauter dans le patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:205 msgid "don't commit, just update the working directory" @@ -34258,9 +33846,8 @@ msgid "edit patch header" msgstr "Éditer l’en-tête du patch" #: /tmp/fish/implicit/share/completions/hg.fish:342 -#, fuzzy msgid "keep folded patch files" -msgstr "Supprimer les fichiers obsolètes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:345 #: /tmp/fish/implicit/share/completions/hg.fish:369 @@ -34351,9 +33938,8 @@ msgid "apply on top of local changes" msgstr "Appliquer par dessus les changements locaux" #: /tmp/fish/implicit/share/completions/hg.fish:375 -#, fuzzy msgid "apply the target patch to its recorded parent" -msgstr "Appliquer le patch cible à son parent connu" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:376 msgid "list patch name in commit text" @@ -34425,9 +34011,8 @@ msgid "disable all guards" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:412 -#, fuzzy msgid "list all guards in series file" -msgstr "Lister les dépendances inverses" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:413 msgid "pop to before first guarded applied patch" @@ -34484,9 +34069,8 @@ msgstr "Annuler toutes les modifications en cas d’arguments absents" #: /tmp/fish/implicit/share/completions/hg.fish:457 #: /tmp/fish/implicit/share/completions/hg.fish:521 -#, fuzzy msgid "tipmost revision matching date" -msgstr "Voir qui surveille un fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:458 msgid "revert to the specified revision" @@ -34655,10 +34239,8 @@ msgid "discard uncommitted changes (no backup)" msgstr "Ignorer les modifications non validées (pas de sauvegarde)" #: /tmp/fish/implicit/share/completions/hg.fish:520 -#, fuzzy msgid "update across branches if no uncommitted changes" msgstr "" -"Mettre à jour sur toutes les branches si aucune modification n’a été validée" #: /tmp/fish/implicit/share/completions/highlight.fish:1 msgid "Output file in given format" @@ -35018,9 +34600,8 @@ msgid "Style used for line numbers" msgstr "Style utilisé pour les numéros de ligne" #: /tmp/fish/implicit/share/completions/hugo.fish:78 -#, fuzzy msgid "Highlighter style" -msgstr "Style de surlignement" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:79 msgid "Generate Markdown documentation for the Hugo CLI" @@ -35330,9 +34911,8 @@ msgid "Print out yes or no according to existence" msgstr "Répondre de l’existence par oui ou par non" #: /tmp/fish/implicit/share/completions/ifdata.fish:4 -#, fuzzy msgid "Print out the address" -msgstr "Afficher l’adresse" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:5 msgid "Print netmask" @@ -35610,9 +35190,8 @@ msgid "Destroy the specified set or all sets" msgstr "Détruire le jeu spécifié, ou tous les jeux" #: /tmp/fish/implicit/share/completions/ipset.fish:7 -#, fuzzy msgid "a" -msgstr "a" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:9 msgid "Output format to the list command" @@ -35811,9 +35390,8 @@ msgid "Alias for --color" msgstr "Alias pour « --color »" #: /tmp/fish/implicit/share/completions/jest.fish:15 -#, fuzzy msgid "The path to a jest config file" -msgstr "Chemin vers un dossier contenant les fichiers de configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:16 msgid "" @@ -35826,9 +35404,8 @@ msgid "The directory where Jest should output its coverage files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:18 -#, fuzzy msgid "Pattern of files to ignore" -msgstr "Fichier à ignorer durant l'import" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:19 msgid "A list of reporter names that Jest uses when writing coverage reports" @@ -35841,25 +35418,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:21 -#, fuzzy msgid "Print debugging info about your jest config" -msgstr "Afficher les informations de débogage" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:22 -#, fuzzy msgid "The test environment used for all tests" -msgstr "Paramétrer une variable d’environnement" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:23 -#, fuzzy msgid "Use this flag to show full diffs instead of a patch" -msgstr "Utiliser ce fichier de configuration au lieu de celui par défaut" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:24 -#, fuzzy msgid "Find related tests for a list of source files" msgstr "" -"Utiliser un fichier tiers similaire si aucun fichier destination n’existe" #: /tmp/fish/implicit/share/completions/jest.fish:25 msgid "Force Jest to exit after all tests have completed running" @@ -35928,10 +35500,8 @@ msgid "Activates notifications for test results" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:41 -#, fuzzy msgid "Run tests based on the changed files" msgstr "" -"Mettre à jour l’archive si le fichier à mettre à jour y est plus ancien" #: /tmp/fish/implicit/share/completions/jest.fish:42 msgid "A file where to write test results" @@ -35950,9 +35520,8 @@ msgid "A list of custom reporters for the test suite" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:46 -#, fuzzy msgid "Automatically reset mock state between every test" -msgstr "Supprimer automatiquement les dépendances inutiles" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:47 msgid "Whatever to reset the module registry for every test" @@ -35987,9 +35556,8 @@ msgid "Print your jest config and then exits" msgstr "Afficher votre configuration jest et quitter" #: /tmp/fish/implicit/share/completions/jest.fish:55 -#, fuzzy msgid "Prevent tests from printing messages through the console" -msgstr "Afficher les messages dans la console" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:56 msgid "Snapshot serializer modules Jest should use for snapshot testing" @@ -36004,32 +35572,28 @@ msgid "The glob patterns Jest uses to detect test files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:59 -#, fuzzy msgid "Run only tests with a name that matches the regex pattern" -msgstr "Ne pas lister les fichiers correspondant au motif spécifié" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:60 msgid "Paths to skip" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:61 -#, fuzzy msgid "Regex for test paths" -msgstr "Chemin sur la destination" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:62 msgid "The regexp pattern Jest uses to detect test files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:63 -#, fuzzy msgid "Allows the use of a custom results processor" -msgstr "Annuler la résolution de conflits en cours" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:64 -#, fuzzy msgid "Allows to specify a custom test runner" -msgstr "Spécifier une URL AUR personnalisée" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:65 msgid "This option sets the URL for the jsdom environment" @@ -36077,9 +35641,8 @@ msgid "Watch files for changes and rerun tests related to changed files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:75 -#, fuzzy msgid "Watch files for changes and rerun all tests" -msgstr "Surveiller les modifications des fichiers" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:76 msgid "Whether to use watchman for file crawling" @@ -36286,9 +35849,8 @@ msgid "Generate a new 128 bit ID" msgstr "Générer un nouvel identifiant sur 128 bits" #: /tmp/fish/implicit/share/completions/journalctl.fish:23 -#, fuzzy msgid "Show internal header information" -msgstr "Afficher les informations des en-têtes internes" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:24 msgid "Shows the current disk usage" @@ -36319,9 +35881,8 @@ msgid "Use application/json-seq MIME type scheme" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:3 -#, fuzzy msgid "Parse input in streaming fasion" -msgstr "Afficher la version des paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:4 msgid "Run filter just once in large array" @@ -36598,9 +36159,8 @@ msgid "List names of available signals and exit" msgstr "Lister les noms des signaux disponibles et quitter" #: /tmp/fish/implicit/share/completions/killall.fish:12 -#, fuzzy msgid "Case sensitive argument match for processed" -msgstr "Recherche insensible à la casse" +msgstr "" #: /tmp/fish/implicit/share/completions/killall.fish:13 msgid "Simulate, but do not send any signals" @@ -36718,9 +36278,8 @@ msgid "generate dvi" msgstr "Générer le DVI" #: /tmp/fish/implicit/share/completions/latexmk.fish:18 -#, fuzzy msgid "turn off required dvi" -msgstr "Ne pas passer obligatoirement par DVI" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:19 msgid "Execute specified Perl code (as part of latexmk start-up code)" @@ -36975,9 +36534,8 @@ msgid "Generate scaffolding for a new project based on a template." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:14 -#, fuzzy msgid "DEPRECATED. Please use the :user profile instead." -msgstr "DÉPRÉCIÉ ; veuillez utiliser le profil :user à la place" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:15 msgid "Write a pom.xml file to disk for Maven interoperability." @@ -37196,14 +36754,12 @@ msgid "Set tab stops" msgstr "Paramétrer la distance entre taquets de tabulation" #: /tmp/fish/implicit/share/completions/less.fish:45 -#, fuzzy msgid "No termcap init" -msgstr "Ne pas altérer le terminal avant et après l’exécution" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:46 -#, fuzzy msgid "No keypad init" -msgstr "Ne pas altérer le pavé numérique avant et après l’exécution" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:47 msgid "Maximum forward scroll" @@ -37443,9 +36999,8 @@ msgid "Set ouput LOGFILE" msgstr "Paramétrer le fichier de journal" #: /tmp/fish/implicit/share/completions/logkeys.fish:4 -#, fuzzy msgid "Use file as input KEYMAP" -msgstr "Fichier d'entrée" +msgstr "" #: /tmp/fish/implicit/share/completions/logkeys.fish:5 msgid "Use DEVICE as keyboard input" @@ -37670,9 +37225,8 @@ msgid "Sets the destination and instance for any options that follow" msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:5 -#, fuzzy msgid "Removes the specified option for the named destination" -msgstr "Supprimer l’option spécifiée de la destination" +msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:6 msgid "Removes the options for the named destination and instance" @@ -37865,14 +37419,12 @@ msgid "Print both online and offline CPUs" msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:2 -#, fuzzy msgid "Print online CPUs only" -msgstr "Afficher les processeurs connectés uniquement" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:3 -#, fuzzy msgid "Print offline CPUs only" -msgstr "Afficher les processeurs déconnectés uniquement" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:4 msgid "Print out an extended readable format" @@ -38109,23 +37661,20 @@ msgid "Sort by extension" msgstr "Trier selon l’extension des entrées" #: /tmp/fish/implicit/share/completions/ls.fish:61 -#, fuzzy msgid "Prevent -A from being automatically set for root" -msgstr "Empêcher -A d’être automatiquement paramétré pour le superutilisateur" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:63 msgid "Show modification time" msgstr "Afficher l’horodatage de modification" #: /tmp/fish/implicit/share/completions/ls.fish:64 -#, fuzzy msgid "Show whiteouts when scanning directories" -msgstr "Afficher des blancs lors du parcours des répertoires" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:65 -#, fuzzy msgid "Display each file's MAC label" -msgstr "Afficher l’étiquette MAX de chaque fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:66 msgid "Include the file flags in a long (-l) output" @@ -38166,9 +37715,8 @@ msgstr "" "l’affichage" #: /tmp/fish/implicit/share/completions/lsof.fish:8 -#, fuzzy msgid "use of device cache file" -msgstr "Utiliser le fichier de cache périphérique" +msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:9 msgid "select by group (^ - negates)" @@ -38246,9 +37794,8 @@ msgid "Execute stdin and stop handling options" msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:1 -#, fuzzy msgid "Show command executions" -msgstr "Afficher les exécutions de commande" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:2 msgid "Installs [file] to ~/Library/LaunchAgents or /Library/LaunchAgents" @@ -38284,9 +37831,8 @@ msgstr "Service" #: /tmp/fish/implicit/share/completions/lunchy.fish:10 #: /tmp/fish/implicit/share/completions/lunchy.fish:12 -#, fuzzy msgid "Persist command" -msgstr "Commande du processus" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:11 msgid "Force start (disabled) agents" @@ -38606,9 +38152,8 @@ msgid "Create destination directory" msgstr "Créer un dossier de destination" #: /tmp/fish/implicit/share/completions/machinectl.fish:30 -#, fuzzy msgid "Apply read-only mount" -msgstr "Monter en lecture seule" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:31 msgid "Copy file or directory to a machine" @@ -38719,28 +38264,24 @@ msgid "Lists all Magento modules" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:3 -#, fuzzy msgid "Lists all indexer modes" -msgstr "Afficher tous les noms" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:4 -#, fuzzy msgid "Shows all available packing modes" -msgstr "Réinstaller les paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:5 msgid "Shows all IDEs supported by magento" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:6 -#, fuzzy msgid "Shows all available magento tests" -msgstr "Afficher la liste disponible" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:7 -#, fuzzy msgid "Shows all available magento theme areas" -msgstr "Afficher la liste disponible" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:8 msgid "Shows all existing magento languages" @@ -38776,9 +38317,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:16 #: /tmp/fish/implicit/share/completions/p4.fish:23 -#, fuzzy msgid "Checks if prompt is in a specific command" -msgstr "Tester si apt doit se faire donner la sous-commande" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:17 #: /tmp/fish/implicit/share/completions/p4.fish:24 @@ -38973,18 +38513,16 @@ msgid "Do not verify PGP signatures" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:12 -#, fuzzy msgid "Display syntax and command line options" -msgstr "Afficher un sommaire des commandes et options disponibles" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:13 msgid "No automatic bump of pkgver" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:14 -#, fuzzy msgid "Install the package after build" -msgstr "Installer après la construction" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:15 msgid "Enable makepkg build logging" @@ -39003,9 +38541,8 @@ msgid "Use alternative " msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:19 -#, fuzzy msgid "Remove installed deps after build" -msgstr "Installer après la construction" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:20 msgid "Repackage without rebuilding" @@ -39024,9 +38561,8 @@ msgid "Display the version and exit" msgstr "Afficher la version et quitter" #: /tmp/fish/implicit/share/completions/makepkg.fish:24 -#, fuzzy msgid "Remove the srcdir before building the package" -msgstr "Supprimer un ou des paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:25 msgid "Build a source-only GPL tarball for AUR" @@ -39073,19 +38609,16 @@ msgid "Passed to pacman: Install as dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:36 -#, fuzzy msgid "Passed to pacman: Do not display a progress bar" -msgstr "Ne pas afficher la barre de progression" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:37 -#, fuzzy msgid "List all packages that would be built" -msgstr "Lister le contenu d'un paquet correspondant au motif" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:38 -#, fuzzy msgid "Print SRCINFO to stdout" -msgstr "Envoyer les fichiers vers le tube stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:1 msgid "Program section" @@ -39168,27 +38701,24 @@ msgid "Debug and run" msgstr "Déboguer et exécuter" #: /tmp/fish/implicit/share/completions/man.fish:22 -#, fuzzy msgid "Show whatis information" -msgstr "Afficher les entrées ARP" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:23 msgid "Format only" msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:25 -#, fuzzy msgid "Show apropos information" -msgstr "Afficher les entrées ARP" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:26 msgid "Search in all man pages" msgstr "Rechercher dans toutes les pages de manuel" #: /tmp/fish/implicit/share/completions/man.fish:27 -#, fuzzy msgid "Set system" -msgstr "Paramétrer le système" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:28 msgid "Preprocessors" @@ -39200,9 +38730,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:30 #: /tmp/fish/implicit/share/completions/man.fish:31 -#, fuzzy msgid "Only print locations" -msgstr "Afficher toutes les versions" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:1 msgid "No graphic chars for line drawing" @@ -39221,9 +38750,8 @@ msgid "Specify a different color set" msgstr "Spécifier un jeu de couleur différent" #: /tmp/fish/implicit/share/completions/mc.fish:5 -#, fuzzy msgid "Specify a name of skin" -msgstr "Spécifier le titre du rss" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:6 msgid "Disable mouse support" @@ -39339,14 +38867,12 @@ msgid "Build a legacy array without superblocks" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:3 -#, fuzzy msgid "Create a new array" -msgstr "Créer un dossier" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:4 -#, fuzzy msgid "Select monitor mode" -msgstr "Sélectionner le mode d’affichage" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:5 msgid "Change the size or shape of an active array" @@ -39357,14 +38883,12 @@ msgid "Manage devices in array, and possibly start it" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:7 -#, fuzzy msgid "Start all auto-detected arrays" -msgstr "Démarrer toutes les applications enregistrées" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:9 -#, fuzzy msgid "Display more detailed help" -msgstr "Afficher une aide détaillée" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:11 #: /tmp/fish/implicit/share/completions/obnam.fish:47 @@ -39373,108 +38897,88 @@ msgid "Be more verbose" msgstr "Être plus verbeux" #: /tmp/fish/implicit/share/completions/mdadm.fish:13 -#, fuzzy msgid "Force operation" -msgstr "Forcer la suppression" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:14 -#, fuzzy msgid "Specify config file or directory" -msgstr "Spécifier le fichier de configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:15 -#, fuzzy msgid "Scan for missing information" -msgstr "Afficher moins d’informations" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:16 -#, fuzzy msgid "Set metadata style to use" -msgstr "Envoyer un email à l’utilisateur" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:17 msgid "Provide home host identity" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:18 -#, fuzzy msgid "Give name format preference" -msgstr "Le nom du fichier correspond au motif" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:19 -#, fuzzy msgid "Give cluster name" -msgstr "Nom d’utilisateur" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:20 -#, fuzzy msgid "Specify the number of active devices" -msgstr "Spécifier le nombre de secteurs cachés" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:21 -#, fuzzy msgid "Specify the number of spare devices" -msgstr "Spécifier le nombre de secteurs réservés" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:22 -#, fuzzy msgid "Specify the space to use from each drive" -msgstr "Spécifier le chemin de l’exécutable rsync sur la destination" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:23 -#, fuzzy msgid "Specify the size made available on the array" -msgstr "Liste des paquets à installer" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:24 -#, fuzzy msgid "Specify the chunk size" -msgstr "Spécifier le type de table FAT (bits)" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:25 -#, fuzzy msgid "Specify rounding factor" -msgstr "Spécifier un dossier de journaux" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:26 -#, fuzzy msgid "Specify RAID level" -msgstr "Spécifier le serveur X" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:27 -#, fuzzy msgid "Specify data layout" -msgstr "Spécifier la largeur des tabulations" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:28 -#, fuzzy msgid "Specify file for write-intent bitmap" -msgstr "Spécifier le port pour l’interface web" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:29 -#, fuzzy msgid "Specify chunksize of bitmap" -msgstr "Spécifier la taille de bloc dans les échantillons" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:30 -#, fuzzy msgid "Prefer reading from other devices than these" -msgstr "Ne pas lire depuis l’entrée standard" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:31 -#, fuzzy msgid "Enable writes on array or device" -msgstr "Le fichier désigne un périphérique de caractère" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:32 -#, fuzzy msgid "Disable writes on array" -msgstr "Désactiver le téléchargement de paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:33 -#, fuzzy msgid "Enable write-behind mode" -msgstr "Activer le mode index" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:34 msgid "Assume the array is clean" @@ -39485,52 +38989,44 @@ msgid "Use this file as a backup" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:36 -#, fuzzy msgid "Specify start of array data" -msgstr "Spécifier le dossier de démarrage" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:37 msgid "Resume frozen --grow command" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:38 -#, fuzzy msgid "Set array name" -msgstr "Paramétrer le nom spécifié comme nom de serveur" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:39 -#, fuzzy msgid "Run array despite warnings" -msgstr "(Dés)activer les avertissements" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:40 -#, fuzzy msgid "Give instruction for device file" -msgstr "Action à effectuer sur les fichiers de périphérique" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:41 -#, fuzzy msgid "Add devices to array" -msgstr "Périphérique de blocs" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:42 -#, fuzzy msgid "Specify max nodes in the cluster" -msgstr "Spécifier un système de gestion des versions" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:43 -#, fuzzy msgid "Specify journal device for RAID-4/5/6 array" -msgstr "Spécifier un dossier de journaux" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:44 msgid "UUID of array to assemble" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:45 -#, fuzzy msgid "Minor number of array device" -msgstr "Afficher le numéro de série du périphérique" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:46 msgid "Refuse to start without all drives" @@ -39541,38 +39037,32 @@ msgid "Do not ask for backup file, unavailable" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:48 -#, fuzzy msgid "Update superblock properties" -msgstr "Mettre à jour les sources" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:49 -#, fuzzy msgid "Freeze --grow command" -msgstr "Paramétrer la commande d’invite" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:50 -#, fuzzy msgid "Test mode" -msgstr "Paramétrer le mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:51 -#, fuzzy msgid "Hot-add listed devices" -msgstr "Lister les périphériques" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:52 msgid "Re-add a previously removed device" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:53 -#, fuzzy msgid "Hot-add listed devices as spare" -msgstr "Ajouter le service comme désactivé" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:54 -#, fuzzy msgid "Remove listed inactive devices" -msgstr "Supprimer les ports listés" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:55 msgid "Mark listed devices as faulty" @@ -39587,56 +39077,48 @@ msgid "Give devices as replacement" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:58 -#, fuzzy msgid "Confirm existence of device" -msgstr "Se connecter au périphérique" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:59 msgid "Examine device for md use" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:60 -#, fuzzy msgid "Print details on array" -msgstr "Afficher une aide détaillée" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:61 -#, fuzzy msgid "Print details on platform capabilities" -msgstr "Afficher des informations détaillées sur l’image" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:62 msgid "Format data output as key=value pairs" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:63 -#, fuzzy msgid "Print content of device metadata" -msgstr "Afficher les périphériques" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:64 msgid "Fix examination for buggy SPARC 2.2 kernel RAID" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:65 -#, fuzzy msgid "Print report about bitmap" -msgstr "Afficher le nombre d’octets en sortie" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:66 -#, fuzzy msgid "List recorded bad blocks" -msgstr "Chercher les blocs défectueux avant la création" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:67 -#, fuzzy msgid "Dump metadata to directory" -msgstr "Boucle de liens symboliques" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:68 -#, fuzzy msgid "Restore metadata from directory" -msgstr "Ne pas lire les métadonnées des dépôts" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:69 msgid "Deactivate array" @@ -39647,28 +39129,24 @@ msgid "Erase possible superblock" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:71 -#, fuzzy msgid "Delete subarray" -msgstr "Supprimer la branche" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:72 -#, fuzzy msgid "Update subarray" -msgstr "Mettre à jour les sources" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:73 -#, fuzzy msgid "Wait for pending operations" -msgstr "Paramétrer les options de config" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:74 msgid "Mark array as clean ASAP" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:75 -#, fuzzy msgid "Set sync action for md devices" -msgstr "Action à effectuer sur les fichiers de périphérique" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:76 msgid "Rebuild /run/mdadm/map" @@ -39679,9 +39157,8 @@ msgid "Automatically add eventually appearing device to array" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:78 -#, fuzzy msgid "Mail address to send alerts to" -msgstr "Adresse d’écoute" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:79 msgid "Program to run in case of an event" @@ -39716,9 +39193,8 @@ msgid "Do not move spares between arrays" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:87 -#, fuzzy msgid "Be more concise" -msgstr "Être plus verbeux" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:1 #: /tmp/fish/implicit/share/completions/mdbook.fish:4 @@ -39790,14 +39266,12 @@ msgid "Minimal report" msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:8 -#, fuzzy msgid "Evaluate indexing information for path" -msgstr "Évaluer les permissions du chemin" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:9 -#, fuzzy msgid "Evaluate permissions information for path" -msgstr "Évaluer les permissions du chemin" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:10 msgid "Write the diagnostic to the specified path" @@ -39856,9 +39330,8 @@ msgid "Print out the list of all of the attributes and exit" msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:4 -#, fuzzy msgid "Print out the schema file and exit" -msgstr "Afficher le fichier de schéma et quitter" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:5 msgid "Ask the server to reimport files for UTIs claimed by the listed plugin" @@ -40179,9 +39652,8 @@ msgstr "Installer une archive localement" #: /tmp/fish/implicit/share/completions/mix.fish:5 #: /tmp/fish/implicit/share/completions/mix.fish:62 -#, fuzzy msgid "Uninstalls archives" -msgstr "Désinstaller les archives" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:6 #: /tmp/fish/implicit/share/completions/mix.fish:63 @@ -40633,9 +40105,8 @@ msgid "Increase verbosity" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:12 -#, fuzzy msgid "Suppress status output" -msgstr "Effacer la sortie normale" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:13 msgid "Force the translations for 'code' to be used" @@ -40707,9 +40178,8 @@ msgid " reporter-specific options" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:8 -#, fuzzy msgid "specify the reporter to use" -msgstr "Spécifier le rapporteur à utiliser" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:9 msgid "sort test files" @@ -40819,9 +40289,8 @@ msgid "disables timeouts, given implicitly with --debug" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:35 -#, fuzzy msgid "specify opts path" -msgstr "Spécifier le chemin des options" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:36 msgid "enable perf linux profiler (basic support)" @@ -40856,9 +40325,8 @@ msgid "trace function calls" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:44 -#, fuzzy msgid "show stack traces on deprecations" -msgstr "Afficher les piles d’exécution lors des dépréciations" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:45 msgid "enforce strict mode" @@ -40869,9 +40337,8 @@ msgid "additional extensions to monitor with --watch" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:47 -#, fuzzy msgid "wait for async suite definition" -msgstr "bloc de définition de fonction" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:1 msgid "Print program version and exit" @@ -41079,9 +40546,8 @@ msgid "Ignore all version information" msgstr "Ignorer toutes les informations de version" #: /tmp/fish/implicit/share/completions/modprobe.fish:11 -#, fuzzy msgid "Ignore version magic information" -msgstr "Ignorer les informations « version magic »" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:12 msgid "Ignore module interface version" @@ -41096,9 +40562,8 @@ msgid "Insert modules matching the given wildcard" msgstr "Insérer tout les modules correspondant au motif spécifié" #: /tmp/fish/implicit/share/completions/modprobe.fish:15 -#, fuzzy msgid "Restrict wildcards to specified directory" -msgstr "Restreindre les motifs au dossier spécifié" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:16 msgid "Send error messages through syslog" @@ -41549,9 +41014,8 @@ msgid "Bypass the system configuration file" msgstr "Outrepasser le fichier de configuration système" #: /tmp/fish/implicit/share/completions/mutt.fish:6 -#, fuzzy msgid "Resume a postponed message" -msgstr "Reprendre un message reporté" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:7 msgid "Open a mailbox in read-only mode" @@ -41656,9 +41120,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:3 -#, fuzzy msgid "Run in non-interactive (batch) mode" -msgstr "Exécuter en mode noninteractif" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:4 msgid "The id of the build strategy to use." @@ -41755,9 +41218,8 @@ msgid "Quiet output - only show errors" msgstr "Sortie silencieuse – n’afficher que les erreurs" #: /tmp/fish/implicit/share/completions/mvn.fish:27 -#, fuzzy msgid "Resume reactor from specified project" -msgstr "Afficher les versions complètes pour les paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:28 msgid "Alternate path for the user settings file" @@ -41846,14 +41308,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:48 -#, fuzzy msgid "Installs the artifact in the remote repository." -msgstr "Mettre à jour le référentiel" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:49 -#, fuzzy msgid "Deploys an artifact to remote repository." -msgstr "Enlever un fichier du référentiel" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:50 msgid "" @@ -42727,9 +42187,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:198 -#, fuzzy msgid "Goal that resolves the project dependencies from the repository." -msgstr "Enlever un fichier du référentiel" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:199 msgid "" @@ -43167,9 +42626,8 @@ msgid "Empty goal, provided only to set loose the lifecycle." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:276 -#, fuzzy msgid "Copies artifacts from one repository to another repository." -msgstr "Ajouter un fichier/répertoire au référentiel" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:277 msgid "" @@ -43245,9 +42703,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:289 -#, fuzzy msgid "Removes the not-available marker files from the repository." -msgstr "Appliquer les modifications au référentiel" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:290 msgid "" @@ -43883,24 +43340,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:399 -#, fuzzy msgid "Test goal implementation of the generate html mojo." -msgstr "Afficher toutes les complétions pour la commande spécifiée" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:400 -#, fuzzy msgid "Main goal implementation of the generate html mojo." -msgstr "Afficher toutes les complétions pour la commande spécifiée" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:401 -#, fuzzy msgid "Test goal implementation of the import mojo." -msgstr "Afficher toutes les complétions pour la commande spécifiée" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:402 -#, fuzzy msgid "Main goal implementation of the import mojo." -msgstr "Afficher toutes les complétions pour la commande spécifiée" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:403 msgid "" @@ -44478,9 +43931,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:500 -#, fuzzy msgid "Add more resource directories to the POM." -msgstr "Nettoyer les répertoires source" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:501 msgid "Store the maven core version in a property maven.version." @@ -44491,9 +43943,8 @@ msgid "Attach additional artifacts to be installed and deployed." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:503 -#, fuzzy msgid "Add test source directories to the POM." -msgstr "Nettoyer les répertoires source" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:504 msgid "" @@ -44524,9 +43975,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:508 -#, fuzzy msgid "Add more source directories to the POM." -msgstr "Nettoyer les répertoires source" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:509 msgid "Add more test resource directories to the POM." @@ -45255,9 +44705,8 @@ msgid "Starts the App Engine development server and does not wait." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:646 -#, fuzzy msgid "Start the specified backend." -msgstr "Afficher les différences entre les révisions" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:647 msgid "Stops the App Engine development server." @@ -45268,9 +44717,8 @@ msgid "Roll back a previously in-progress update." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:649 -#, fuzzy msgid "Start the specified module version." -msgstr "Démarrer la version spécifiée du module" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:650 msgid "Change the default version, but more gently than set_default_version." @@ -45336,9 +44784,8 @@ msgid "Update application task queue definitions." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:665 -#, fuzzy msgid "Stop the specified module version." -msgstr "Afficher les différences entre les révisions" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:666 msgid "Rollback an in-progress update." @@ -45353,9 +44800,8 @@ msgid "App Engine endpoints get-discovery-doc command." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:669 -#, fuzzy msgid "Stop the specified backend." -msgstr "Afficher les différences entre les révisions" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:670 msgid "Creates an Android Archive (aar) file. " @@ -45792,9 +45238,8 @@ msgid "vertical align of modes and owners" msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:1 -#, fuzzy msgid "Perform the reverse operation" -msgstr "Générer le contenu" +msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:2 msgid "Specifies the name of the character encoding" @@ -45816,90 +45261,6 @@ msgstr "Même système de fichiers" msgid "Exclude files that match any pattern in file" msgstr "" -#: /tmp/fish/implicit/share/completions/netcat.fish:1 -msgid "Remote hostname" -msgstr "Nom de l’hôte distant" - -#: /tmp/fish/implicit/share/completions/netcat.fish:2 -msgid "Same as -e, but use /bin/sh" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:3 -msgid "Program to execute after connection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:4 -msgid "Allow broadcasts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:5 -msgid "Source-routing hop points" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:6 -msgid "Source-routing pointer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:8 -msgid "Delay interval for lines sent, ports scaned" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:9 -msgid "Set keepalive option" -msgstr "Paramétrer l’option keepalive" - -#: /tmp/fish/implicit/share/completions/netcat.fish:10 -msgid "Listen mode, acts as a server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:11 -msgid "Numeric-only IP addresses, no DNS" -msgstr "Adresse IP numérique, sans résolution DNS" - -#: /tmp/fish/implicit/share/completions/netcat.fish:12 -msgid "Hex dump of traffic" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:13 -msgid "Local port number" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:14 -msgid "Randomize local and remote ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:15 -msgid "Quit after EOF on stdin and delay of secs" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:16 -msgid "Local source address" -msgstr "Adresse source locale" - -#: /tmp/fish/implicit/share/completions/netcat.fish:17 -msgid "Answer Telnet negotiation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:18 -msgid "UDP Mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:19 -msgid "Verbose, use twice to be more verbose" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:20 -msgid "Timeout for connects and final net reads" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:21 -msgid "Set Type of Service" -msgstr "Paramétrer le Type de service" - -#: /tmp/fish/implicit/share/completions/netcat.fish:22 -msgid "No I/O - used for scanning" -msgstr "" - #: /tmp/fish/implicit/share/completions/netctl-auto.fish:3 msgid "List all available profiles for automatic selection" msgstr "Lister tous les profils disponibles pour la sélection automatique" @@ -46002,23 +45363,20 @@ msgid "Also print directory history" msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:1 -#, fuzzy msgid "Save authtoken to configuration file" -msgstr "Paramétrer l’emplacement du fichier de configuration alternatif" +msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:2 -#, fuzzy msgid "Prints author and licensing information" -msgstr "Afficher les droits d’auteur et les informations de version" +msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:3 msgid "Start an HTTP tunnel" msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:4 -#, fuzzy msgid "Start tunnels by name from the configuration file" -msgstr "Paramétrer l’emplacement du fichier de configuration alternatif" +msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:5 msgid "Start a TCP tunnel" @@ -46029,19 +45387,16 @@ msgid "Start a TLS tunnel" msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:7 -#, fuzzy msgid "Update ngrok to the latest version" -msgstr "Mettre à jour vers la dernière version" +msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:8 -#, fuzzy msgid "Print the version string" -msgstr "Afficher la version" +msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:9 -#, fuzzy msgid "Shows a list of commands or help for one command" -msgstr "Afficher l’aide pour une commande" +msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:10 msgid "ngrok.com authtoken identifying a user" @@ -46088,9 +45443,8 @@ msgid "set Host header; if 'rewrite' use local address hostname" msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:21 -#, fuzzy msgid "enable/disable http introspection" -msgstr "(Dés)activer une session" +msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:22 msgid "path to TLS certificate authority to verify client certs" @@ -46105,37 +45459,32 @@ msgid "path to a TLS key for TLS termination" msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:25 -#, fuzzy msgid "start all tunnels in the configuration file" -msgstr "Paramétrer l’emplacement du fichier de configuration alternatif" +msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:26 -#, fuzzy msgid "start running no tunnels" -msgstr "Redémarrer la machine en fonctionnement" +msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:27 msgid "bind remote address (requires you reserve an address)" msgstr "" #: /tmp/fish/implicit/share/completions/ngrok.fish:28 -#, fuzzy msgid "update channel (stable, beta)" -msgstr "Mettre à jour la barre d’état du client" +msgstr "" #: /tmp/fish/implicit/share/completions/nice.fish:2 msgid "Add specified amount to niceness value" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:1 -#, fuzzy msgid "change to specified directory" -msgstr "Extraire l’archive dans le dossier spécifié" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:2 -#, fuzzy msgid "specify build file [default=build.ninja]" -msgstr "Spécifier le fichier build" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:3 msgid "dry run" @@ -46146,9 +45495,8 @@ msgid "show all command lines while building" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:5 -#, fuzzy msgid "number of jobs to run in parallel [default derived from CPUs]" -msgstr "Spécifier le nombre de tâches à exécuter en parallèle" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:6 msgid "do not start if load average > N" @@ -46159,18 +45507,16 @@ msgid "keep going until N jobs fail [default=1]" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:9 -#, fuzzy msgid "enable debugging, specify debug mode" -msgstr "Activer le mode débogage" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:10 msgid "adjust warnings, specify flags" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:11 -#, fuzzy msgid "print ninja version" -msgstr "Afficher la version de Go" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:1 msgid "use STYLE for numbering body lines" @@ -46262,9 +45608,8 @@ msgid "Print name of the input file before every symbol" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:3 -#, fuzzy msgid "Do not demangle low-level symbol names" -msgstr "Ne pas déréférencer les liens symboliques" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:4 msgid "Display dynamic symbols instead of normal symbols" @@ -46348,9 +45693,8 @@ msgid "Display this program's version number" msgstr "Afficher le numéro de version de ce programme" #: /tmp/fish/implicit/share/completions/node.fish:1 -#, fuzzy msgid "Print node's version" -msgstr "Afficher la version des paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:2 msgid "Evaluate script" @@ -46377,9 +45721,8 @@ msgid "Throw errors on deprecations" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:8 -#, fuzzy msgid "Print v8 command line options" -msgstr "Afficher les options pour la ligne de commande v8" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:9 msgid "Set max v8 stack size (bytes)" @@ -47246,14 +46589,12 @@ msgid "install a package" msgstr "Installer un paquet" #: /tmp/fish/implicit/share/completions/npm.fish:16 -#, fuzzy msgid "Save to devDependencies in package.json" -msgstr "Lister les dépendances du paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:17 -#, fuzzy msgid "Save to dependencies in package.json" -msgstr "Lister les dépendances du paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:18 msgid "Install package globally" @@ -47344,9 +46685,8 @@ msgid "Add a registry user account" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:39 -#, fuzzy msgid "Display npm bin folder" -msgstr "Afficher les infos de débogage" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:40 msgid "Bugs for a package in a web browser maybe" @@ -47449,14 +46789,12 @@ msgid "Remove a package from the registry" msgstr "Supprimer un paquet du registre" #: /tmp/fish/implicit/share/completions/npm.fish:67 -#, fuzzy msgid "Remove star from a package" -msgstr "Supprime les paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:68 -#, fuzzy msgid "Bump a package version" -msgstr "Afficher la fiche du paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:69 msgid "Display npm username" @@ -47495,19 +46833,16 @@ msgid "Display object format specific file header contents" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:4 -#, fuzzy msgid "Display object format specific contents" -msgstr "Afficher les informations spécifiques de format de l’objet" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:5 -#, fuzzy msgid "Display contents of section headers" -msgstr "Afficher le contenu des en-têtes de section" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:6 -#, fuzzy msgid "Display content of section headers" -msgstr "Afficher le contenu des en-têtes de section" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:7 msgid "Display the contents of all headers" @@ -47542,9 +46877,8 @@ msgid "Display (in raw form) any STABS info in file" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:15 -#, fuzzy msgid "Display DWARF info in file" -msgstr "Afficher $ à la fin du fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:16 msgid "Display contents of symbol table(s)" @@ -47667,9 +47001,8 @@ msgid "Strip initial directory names for -S" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:47 -#, fuzzy msgid "Do not display DIEs at given depth or greater" -msgstr "Ne pas afficher la barre de progression" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:48 msgid "Display DIEs starting with given number" @@ -47728,9 +47061,8 @@ msgid "Print help, including hidden subcommands" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:14 -#, fuzzy msgid "List contents of a generation in kdirstat cache format" -msgstr "Lister le contenu d'un paquet correspondant au motif" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:15 msgid "List error codes and explanations" @@ -47805,9 +47137,8 @@ msgid "Dump metadata about files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:33 -#, fuzzy msgid "Do not dump metadata about files" -msgstr "Ne pas suppr. les fichiers construits" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:34 msgid "Generate man page" @@ -47936,9 +47267,8 @@ msgid "No not put small files into the B-tree" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:66 -#, fuzzy msgid "Add FILE to config files" -msgstr "Utiliser le fichier de config" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:67 msgid "Write out the current configuration" @@ -48017,9 +47347,8 @@ msgid "fsck should not try to fix problems" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:86 -#, fuzzy msgid "Ignore chunks when checking integrity" -msgstr "Ignorer les fragments lors de la vérification de l’intégrité" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:87 msgid "Check chunks when checking integrity" @@ -48030,15 +47359,13 @@ msgid "Do not check data for cient NAME" msgstr "Ne pas vérifier les données pour le client spécifié" #: /tmp/fish/implicit/share/completions/obnam.fish:89 -#, fuzzy msgid "Check only the last generation" -msgstr "Générer le contenu" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:90 #: /tmp/fish/implicit/share/completions/obnam.fish:100 -#, fuzzy msgid "Check all generations" -msgstr "Réinstaller les paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:91 #: /tmp/fish/implicit/share/completions/obnam.fish:92 @@ -48469,9 +47796,8 @@ msgid "returns assembly compile options." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:41 -#, fuzzy msgid "returns bytecode linking options." -msgstr "Définir les options de config" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:42 msgid "Prints a summary of your setup, useful for bug-reports." @@ -48710,32 +48036,28 @@ msgid "Query the files database" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:13 -#, fuzzy msgid "(AUR) Search for packages" -msgstr "Chercher le nom complet de paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:14 -#, fuzzy msgid "(AUR) Show info for packages" -msgstr "Afficher le paquet source" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:15 msgid "(AUR) Clone the packages' build files and build them" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:16 -#, fuzzy msgid "(AUR) Clone build files, build and install packages" -msgstr "Reconstruire et installer un paquet installé" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:17 msgid "(AUR) Check foreign packages for updates" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:18 -#, fuzzy msgid "(AUR) Update foreign packages" -msgstr "Actualiser la liste des paquets source" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:19 msgid "(AUR) Clone the packages' build files" @@ -48772,9 +48094,8 @@ msgid "Always rebuild packages" msgstr "Toujours reconstruire les paquets" #: /tmp/fish/implicit/share/completions/pacaur.fish:37 -#, fuzzy msgid "Redirect output to the log in the clone directory" -msgstr "Redirige la sortie vers un fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:38 msgid "Point at a domain other than the default aur.archlinux.org" @@ -48962,9 +48283,8 @@ msgid "Show info about the daemon" msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:3 -#, fuzzy msgid "Show all loaded things of the specified type" -msgstr "Afficher les différences entre les révisions" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:4 msgid "Show shorter output" @@ -49003,9 +48323,8 @@ msgid "Limit the depth of recursion" msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:4 -#, fuzzy msgid "Generate output for graphviz's dot" -msgstr "Générer la sortie dotty pour les paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:5 msgid "Display this help message" @@ -49468,14 +48787,12 @@ msgid "Show a filter parameter by modifier" msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:2 -#, fuzzy msgid "Flush filter params specified by mod" -msgstr "Le fichier est la cible de n liens" +msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:3 -#, fuzzy msgid "Table command" -msgstr "Désactiver cette commande" +msgstr "" #: /tmp/fish/implicit/share/completions/pgrep.fish:1 msgid "Output delimiter" @@ -49494,9 +48811,8 @@ msgid "Open file" msgstr "Ouvrir le fichier" #: /tmp/fish/implicit/share/completions/pine.fish:4 -#, fuzzy msgid "Start in folder index" -msgstr "Démarrer dans l’index des dossiers" +msgstr "" #: /tmp/fish/implicit/share/completions/pine.fish:5 msgid "Initial set of keystrokes" @@ -49559,9 +48875,8 @@ msgid "Allow pinging a broadcast address" msgstr "Autoriser le ping sur une adresse de diffusion" #: /tmp/fish/implicit/share/completions/ping.fish:4 -#, fuzzy msgid "Do not allow ping to change source address of probes" -msgstr "Ne pas autoriser ping à changer l’adresse source des sondes" +msgstr "" #: /tmp/fish/implicit/share/completions/ping.fish:5 msgid "Stop after specified number of ECHO_REQUEST packets" @@ -49594,9 +48909,8 @@ msgid "Send the specified number of packets without waiting for reply" msgstr "Envoyer le nombre spécifié de paquets sans délai entre eux" #: /tmp/fish/implicit/share/completions/ping.fish:12 -#, fuzzy msgid "Suppress loopback of multicast packets" -msgstr "Supprimer le retour pour les paquets diffusés" +msgstr "" #: /tmp/fish/implicit/share/completions/ping.fish:13 msgid "Numeric output only" @@ -49611,18 +48925,14 @@ msgid "Set Quality of Service -related bits in ICMP datagrams" msgstr "Paramétrer les bits de qualité de service dans les datagrammes ICMP" #: /tmp/fish/implicit/share/completions/ping.fish:17 -#, fuzzy msgid "Record route" -msgstr "Enregistrer le chemin" +msgstr "" #: /tmp/fish/implicit/share/completions/ping.fish:18 -#, fuzzy msgid "" "Bypass the normal routing tables and send directly to a host on an attached " "interface" msgstr "" -"Outrepasser les tables de routage et envoyer directement à un hôte sur une " -"interface connectée" #: /tmp/fish/implicit/share/completions/ping.fish:19 msgid "Specifies the number of data bytes to be sent" @@ -49697,26 +49007,21 @@ msgid "omit the user's full name, remote host and idle time in short format" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:1 -#, fuzzy msgid "failsafe to overwrite" msgstr "" -"Journaliser les entrées dans le fichier spécifié, en écrasant son contenu" #: /tmp/fish/implicit/share/completions/pkg_add.fish:2 #: /tmp/fish/implicit/share/completions/pkg_delete.fish:3 -#, fuzzy msgid "Turn on stats" -msgstr "Activer l’horodatage" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:3 -#, fuzzy msgid "Automated package installation" -msgstr "Emplacement secondaire du cache des paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:5 -#, fuzzy msgid "Update packages" -msgstr "Mettre à jour le ou les paquet(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:6 msgid "Fuzzy match" @@ -49763,9 +49068,8 @@ msgid "This prints the -I part of \"--cflags\"." msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:10 -#, fuzzy msgid "Print link flags" -msgstr "Afficher les drapeaux de lien" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:11 msgid "This prints the -L/-R part of \"--libs\"." @@ -49828,9 +49132,8 @@ msgid "List all modules the given packages requires for static linking" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_delete.fish:2 -#, fuzzy msgid "Delete unsed deps" -msgstr "Supprimer les fichiers trouvés" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:3 msgid "only show files in a {s}bin/ directory. Works with -s, -l" @@ -49923,9 +49226,8 @@ msgid "Display help for command" msgstr "Afficher l’aide de la commande" #: /tmp/fish/implicit/share/completions/pkg.fish:14 -#, fuzzy msgid "Install package file" -msgstr "Installer le fichier de paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:15 msgid "Modify annotations on packages" @@ -50032,9 +49334,8 @@ msgid "Display UPDATING entries" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:43 -#, fuzzy msgid "Show package versions" -msgstr "Version de l'arbre source" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:44 msgid "Check which package provides a file" @@ -50079,9 +49380,8 @@ msgid "Delete all installed packages" msgstr "Supprimer tous les paquets installés" #: /tmp/fish/implicit/share/completions/pkg.fish:54 -#, fuzzy msgid "Case sensitive packages" -msgstr "Paquets sensibles à la casse" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:55 msgid "Disable deinstallation scripts" @@ -50096,9 +49396,8 @@ msgid "Treat the package name as shell glob" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:58 -#, fuzzy msgid "Case insensitive packages" -msgstr "Paquets insensibles à la casse" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:59 msgid "Remove recursively" @@ -50308,9 +49607,8 @@ msgid "interactive update mode -- ask whether to rebuild ports." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:14 -#, fuzzy msgid "no cleaning of distfiles." -msgstr "Ne pas créer de fichiers de sortie" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:15 msgid "always clean distfiles." @@ -50365,9 +49663,8 @@ msgid "fail if no package is available." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:28 -#, fuzzy msgid "use packages for all build dependencies." -msgstr "Installer/supprimer les dépendances de construction" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:29 msgid "use package if newer than installed even if the… [See Man Page]" @@ -50577,9 +49874,8 @@ msgid "Print a deptree for the port" msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:21 -#, fuzzy msgid "List ports in multiple directories" -msgstr "Lister les ports dans plusieurs dossiers" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:22 #: /tmp/fish/implicit/share/completions/prt-get.fish:82 @@ -50935,9 +50231,8 @@ msgid "single-step mode (confirm each query)" msgstr "Confirmer chaque requête avant son envoi" #: /tmp/fish/implicit/share/completions/psql.fish:17 -#, fuzzy msgid "single-line mode (end of line terminates SQL command)" -msgstr "Désactiver les requêtes multi-lignes" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:18 msgid "unaligned table output mode" @@ -51012,19 +50307,16 @@ msgid "Show estimated time of arrival" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:5 -#, fuzzy msgid "Show rate counter" -msgstr "Afficher le débit d’entrée" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:6 -#, fuzzy msgid "Show average rate" -msgstr "Afficher le débit moyen" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:7 -#, fuzzy msgid "Show total byte counter" -msgstr "Afficher le total d’octets" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:8 msgid "Show transfer buffer percentage" @@ -51192,28 +50484,24 @@ msgid "Read one line at a time" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:3 -#, fuzzy msgid "Set lexer" -msgstr "Définir la sévérité" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:4 msgid "Guess lexer" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:5 -#, fuzzy msgid "Set formater" -msgstr "Utiliser le format du contexte" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:6 -#, fuzzy msgid "Set coma-seperated options" -msgstr "Définir les options de config" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:7 -#, fuzzy msgid "Set one option" -msgstr "Définir les options de config" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:8 msgid "Set filter" @@ -51365,9 +50653,8 @@ msgid "Issue errors" msgstr "Afficher des erreurs" #: /tmp/fish/implicit/share/completions/quilt.fish:3 -#, fuzzy msgid "specify the file to Run Control file to use" -msgstr "Spécifier l'expiration de la cache" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:4 msgid "Runs the command in bash trace mode (-x). For internal debugging" @@ -51386,9 +50673,8 @@ msgid "Print a list of applied patches" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:8 -#, fuzzy msgid "Remove the specified or topmost patch from the series file" -msgstr "Déplacer le fichier spécifier dans la ligne de commande" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:9 msgid "" @@ -51396,9 +50682,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:10 -#, fuzzy msgid "Edit the specified file(s) in /usr/bin/vim" -msgstr "Ouvrir le profil spécifié dans un éditeur" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:11 msgid "Print the list of files that the topmost or specified patch changes" @@ -51470,9 +50755,8 @@ msgid "Refreshes the specified patch, or the topmost patch by default" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:25 -#, fuzzy msgid "Remove one or more files from the topmost or named patch" -msgstr "Appliquer les modifications au référentiel" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:26 msgid "Rename the topmost or named patch" @@ -51603,23 +50887,6 @@ msgstr "" msgid "Show the full path for the given Ruby command" msgstr "" -#: /tmp/fish/implicit/share/completions/rc.d.fish:1 -msgid "Filter started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:2 -msgid "Filter stopped daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:3 -msgid "Filter auto started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:4 -#, fuzzy -msgid "Filter manually started daemons" -msgstr "Reconstruire et installer un paquet installé" - #: /tmp/fish/implicit/share/completions/rc-service.fish:1 msgid "Tests if the service exists or not" msgstr "" @@ -51645,9 +50912,8 @@ msgid "Run quietly (Does not affect errors)" msgstr "Exécuter silencieusement (ne concerne pas les erreurs)" #: /tmp/fish/implicit/share/completions/read.fish:2 -#, fuzzy msgid "Set prompt command" -msgstr "Paramétrer la commande d’invite" +msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:3 #: /tmp/fish/implicit/share/completions/set.fish:4 @@ -51698,9 +50964,8 @@ msgid "Store the results as an array" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:13 -#, fuzzy msgid "Set right-hand prompt command" -msgstr "Définir ou obtenir la ligne de commande" +msgstr "" #: /tmp/fish/implicit/share/completions/readlink.fish:1 msgid "Canonicalize, follow symlinks, last can be missing" @@ -52382,9 +51647,8 @@ msgid "Don’t cross filesystem boundaries" msgstr "Ne pas changer de système de fichiers lors de la récursion" #: /tmp/fish/implicit/share/completions/rsync.fish:40 -#, fuzzy msgid "Force a fixed checksum block-size" -msgstr "Forcer une taille de bloc fixe pour la somme de contrôle" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:41 msgid "Specify the remote shell to use" @@ -52533,13 +51797,10 @@ msgid "Add a file-filtering RULE" msgstr "Exclure les fichiers correspondant à RULE" #: /tmp/fish/implicit/share/completions/rsync.fish:75 -#, fuzzy msgid "" "Same as --filter=’dir-merge /.rsync-filter’ repeated: --filter='- .rsync-" "filter'" msgstr "" -"Identique à --filter=’dir-merge /.rsync-filter’ répété: --filter='- .rsync-" -"filter'" #: /tmp/fish/implicit/share/completions/rsync.fish:76 msgid "Exclude files matching PATTERN" @@ -52650,9 +51911,8 @@ msgid "Remote path" msgstr "Chemin sur la destination" #: /tmp/fish/implicit/share/completions/ruby-build.fish:1 -#, fuzzy msgid "Definition" -msgstr "Fonction" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:2 msgid "Do not remove source tree after installation" @@ -52683,48 +51943,40 @@ msgid "Compiler debug mode" msgstr "Mode débogage du compilateur" #: /tmp/fish/implicit/share/completions/s3cmd.fish:1 -#, fuzzy msgid "Make bucket" -msgstr "Les crochets ne concordent pas" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:2 -#, fuzzy msgid "Remove bucket" -msgstr "Supprimer le paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:3 -#, fuzzy msgid "List objects or buckets" -msgstr "Lister le contenu des paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:4 -#, fuzzy msgid "List all object in all buckets" -msgstr "Lister toutes les boxes installées" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:5 -#, fuzzy msgid "Put file into bucket" -msgstr "Envoyer les fichiers sur la sortie standard" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:6 -#, fuzzy msgid "Get file from bucket" -msgstr "Obtenir tous les fichiers du dossier" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:7 -#, fuzzy msgid "Delete file from bucket" -msgstr "Supprimer du contenu de l’archive" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:8 msgid "Delete file from bucket (alias for del)" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:9 -#, fuzzy msgid "Restore file from Glacier storage" -msgstr "Supprimer un fichier du dépôt" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:10 msgid "Synchronize a directory tree to S3" @@ -52735,9 +51987,8 @@ msgid "Disk usage by buckets" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:12 -#, fuzzy msgid "Get various information about Buckets or Files" -msgstr "Afficher les informations sur les fichiers compressés" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:13 msgid "Copy object" @@ -52748,9 +51999,8 @@ msgid "Modify object metadata" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:15 -#, fuzzy msgid "Move object" -msgstr "Supprimer les fichiers d’objet" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:16 msgid "Modify Access control list for Bucket or Files" @@ -52777,28 +52027,24 @@ msgid "Modify Bucket Requester Pays policy" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:22 -#, fuzzy msgid "Show multipart uploads" -msgstr "Afficher les journaux des validations" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:23 msgid "Abort a multipart upload" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:24 -#, fuzzy msgid "List parts of a multipart upload" -msgstr "Lister les ports dans plusieurs dossiers" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:25 -#, fuzzy msgid "Enable/disable bucket access logging" -msgstr "(Dés)activer une session" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:26 -#, fuzzy msgid "Sign arbitrary string using the secret key" -msgstr "Signer une clé publique avec votre clé privée" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:27 msgid "Sign an S3 URL to provide limited public access with expiry" @@ -52809,14 +52055,12 @@ msgid "Fix invalid file names in a bucket" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:29 -#, fuzzy msgid "Create Website from bucket" -msgstr "Restaurer le périphérique depuis une sauvegarde" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:30 -#, fuzzy msgid "Delete Website" -msgstr "Utiliser le fichier de config" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:31 msgid "Info about Website" @@ -52831,52 +52075,44 @@ msgid "Upload a lifecycle policy for the bucket" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:34 -#, fuzzy msgid "Remove a lifecycle policy for the bucket" -msgstr "Supprimer un échantillon du cache" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:35 -#, fuzzy msgid "List CloudFront distribution points" -msgstr "Nettoyer les répertoires source" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:36 msgid "Display CloudFront distribution point parameters" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:37 -#, fuzzy msgid "Create CloudFront distribution point" -msgstr "Nettoyer les répertoires source" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:38 -#, fuzzy msgid "Delete CloudFront distribution point" -msgstr "Nettoyer les répertoires source" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:39 -#, fuzzy msgid "Change CloudFront distribution point parameters" -msgstr "Nettoyer les répertoires source" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:40 msgid "Display CloudFront invalidation request(s) status" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:42 -#, fuzzy msgid "Run interactive (re)configuration tool" -msgstr "Spécifier un fichier de configuration alternatif" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:44 -#, fuzzy msgid "Dump current configuration" -msgstr "Sauvegarder la configuration actuelle" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:45 -#, fuzzy msgid "AWS Access Key" -msgstr "Afficher l’horodatage de dernier accès" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:46 msgid "AWS Secret Key" @@ -52891,58 +52127,48 @@ msgid "Dry run, test only" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:49 -#, fuzzy msgid "Use HTTPS (default)" -msgstr "Obtenir la valeur (par défaut)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:50 -#, fuzzy msgid "Don't use HTTPS" -msgstr "Ne pas utiliser le démon" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:51 -#, fuzzy msgid "Encrypt files before uploading" -msgstr "Afficher la taille du fichier avant les données" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:52 -#, fuzzy msgid "Don't encrypt files" -msgstr "Ne pas utiliser de fichier d’échange" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:53 -#, fuzzy msgid "Force overwrite" -msgstr "Ne pas remplacer les fichiers existants à l’extraction" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:54 -#, fuzzy msgid "Resume partially downloaded file" -msgstr "Compléter un téléchargement partiel" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:55 -#, fuzzy msgid "Resume partially uploaded files" -msgstr "Conserver les fichiers partiellement transférés" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:56 msgid "Resume multipart upload by UploadId" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:57 -#, fuzzy msgid "Skip existing files at destination" -msgstr "Supprimer les fichiers de destination existants" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:58 -#, fuzzy msgid "Upload/download/delete recursively" -msgstr "Télécharger récursivement les dépendances" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:59 -#, fuzzy msgid "Check MD5 sums (default)" -msgstr "Luminosité (par défaut)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:60 msgid "Skip MD5 sum check" @@ -52965,32 +52191,28 @@ msgid "Revoke permission to named user" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:65 -#, fuzzy msgid "Days to keep restored file" -msgstr "Ne pas conserver le nom de fichier et son horodatage" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:66 -#, fuzzy msgid "S3 glacier restore priority" -msgstr "Afficher également la priorité du dépôt" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:67 msgid "Delete objects not found locally" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:68 -#, fuzzy msgid "Don't delete dest objects" -msgstr "Ne pas supprimer les fichiers en entrée" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:69 msgid "Delete after upload" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:70 -#, fuzzy msgid "Delete no more than NUM files" -msgstr "Ne pas supprimer plus de NUM fichiers" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:71 msgid "Max objects per response" @@ -53001,66 +52223,56 @@ msgid "Additional parallel upload" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:73 -#, fuzzy msgid "Delete remotely after fetch" -msgstr "Supprimer du contenu de l’archive" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:74 -#, fuzzy msgid "Preserve FS attributes" -msgstr "Conserver les horodatages de modification des fichiers" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:75 -#, fuzzy msgid "Don't store FS attributes" -msgstr "Ne pas remplacer les fichiers existants à l’extraction" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:76 -#, fuzzy msgid "Exclude GLOB matches" -msgstr "Exclure certains systèmes de fichiers" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:77 -#, fuzzy msgid "--exclude GLOBs from FILE" -msgstr "Lire les motifs d’inclusion depuis FILE" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:78 msgid "Exclude REGEXP matches" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:79 -#, fuzzy msgid "Read --rexclude REGEXPs from FILE" -msgstr "Lire les motifs d’inclusion depuis FILE" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:80 msgid "Include GLOB matches even if previously excluded" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:81 -#, fuzzy msgid "Read --include GLOBs from FILE" -msgstr "Lire les motifs d’inclusion depuis FILE" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:82 msgid "Include REGEXP matches even if preiously excluded" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:83 -#, fuzzy msgid "Read --rinclude REGEXPs from FILE" -msgstr "Lire les motifs d’inclusion depuis FILE" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:84 -#, fuzzy msgid "Read source-file names from FILE" -msgstr "Lire la liste des fichiers à transférer depuis le fichier spécifié" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:85 -#, fuzzy msgid "Create bucket in region" -msgstr "Créer une nouvelle révision" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:86 msgid "S3 endpoint (default: s3.amazonaws.com)" @@ -53071,9 +52283,8 @@ msgid "DNS-style bucket+hostname:port template for bucket" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:88 -#, fuzzy msgid "Store with reduced redundancy" -msgstr "Comparer les horodatages de modification moins précisément" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:89 msgid "Store without reduced redundancy" @@ -53104,23 +52315,20 @@ msgid "Don't guess MIME-type, use default" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:96 -#, fuzzy msgid "Don't use mime magic when guessing" -msgstr "Ne pas utiliser de chaîne de commentaire" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:97 -#, fuzzy msgid "Force MIME-type" -msgstr "Forcer oui" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:98 msgid "Add HTTP header" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:99 -#, fuzzy msgid "Remove HTTP header" -msgstr "Supprimer un dossier" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:100 msgid "Use server-side encryption for upload" @@ -53131,18 +52339,16 @@ msgid "Encrypt with specified AWS KMS-managed key" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:102 -#, fuzzy msgid "Use specified encoding" -msgstr "Convertir vers l’encodage spécifié" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:103 msgid "Add encoding to CSV extension list" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:104 -#, fuzzy msgid "Use S3 name as-is" -msgstr "Renommer un disque" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:105 msgid "No multipart on files larger than --multipart-chunk-size-mb" @@ -53157,18 +52363,16 @@ msgid "Include MD5 sums in bucket listings" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:108 -#, fuzzy msgid "Print sizes in human-readable form" -msgstr "Utiliser les préfixes SI pour les nombres" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:109 msgid "Name of index-document" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:110 -#, fuzzy msgid "Name of error-document" -msgstr "Nom de la version" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:111 msgid "When expiration rule takes effect" @@ -53183,28 +52387,24 @@ msgid "Apply expiry to objects matching prefix" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:114 -#, fuzzy msgid "Show progress (default on TTY)" -msgstr "Afficher la progression des transferts" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:115 msgid "Don't show progress meter (default if non-TTY)" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:116 -#, fuzzy msgid "Show file transfer stats" -msgstr "Donner des statistiques sur les transferts individuels" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:117 -#, fuzzy msgid "Enable CloudFront distribution" -msgstr "Version de Debian" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:118 -#, fuzzy msgid "Disable CloudFront distribution" -msgstr "Version de Debian" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:119 msgid "Invalidate CloudFront file" @@ -53231,68 +52431,56 @@ msgid "Set COMMENT for CloudFront distribution" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:125 -#, fuzzy msgid "Set default root object" -msgstr "Paramétrer la cible par défaut pour le démarrage" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:130 -#, fuzzy msgid "Cache FILE containing MD5 values" msgstr "" -"Copier les permissions du fichier spécifié au lieu de les interpréter depuis " -"la ligne de commande" #: /tmp/fish/implicit/share/completions/s3cmd.fish:131 -#, fuzzy msgid "Silence stdout output" -msgstr "Générer une sortie triée" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:132 msgid "Path to SSL CA certificate FILE" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:133 -#, fuzzy msgid "Validate SSL certificate" -msgstr "Ajouter un certificat de confiance" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:134 -#, fuzzy msgid "Don't validate SSL certificate" -msgstr "Ne pas vérifier le certificat du serveur" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:135 -#, fuzzy msgid "Validate SSL hostname" -msgstr "Valider le stockage" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:136 -#, fuzzy msgid "Don't validate SSL hostname" -msgstr "Ne pas vérifier le certificat du serveur" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:137 msgid "Use AWS Signature version 2" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:138 -#, fuzzy msgid "Limit upload or download speed (bytes/sec)" -msgstr "Spécifier la limite du débit descendant" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:139 msgid "Set REQUESTER PAYS for operations" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:140 -#, fuzzy msgid "Produce long listing" -msgstr "Afficher la liste longue" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:141 -#, fuzzy msgid "Stop on error in transfer" -msgstr "Afficher la progression des transferts" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:142 msgid "Provide Content-Disposition for signed URLs" @@ -53490,93 +52678,80 @@ msgid "Silence warnings and status messages during compilation." msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:1 -#, fuzzy msgid "Create a new sbt project from the given template" -msgstr "Créer, dans le dossier spécifié, un nouveau projet depuis un paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:2 msgid "Connect to a server with an interactive sbt prompt" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:3 -#, fuzzy msgid "Print options help message" -msgstr "Afficher ce message" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:4 -#, fuzzy msgid "Print more details" -msgstr "Afficher les périphériques" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:5 -#, fuzzy msgid "Set log level to debug" -msgstr "Réinitialiser à 0 le niveau de verbosité" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:6 -#, fuzzy msgid "Disable ANSI color codes" -msgstr "Désactiver la couleur" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:7 msgid "Launch even if there's no sbt project" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:8 -#, fuzzy msgid "Use all local caches" -msgstr "Nettoyer les caches locaux" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:9 msgid "Use global caches, but not global ~/.sbt directory" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:10 -#, fuzzy msgid "Disable interactive mode" -msgstr "Exécuter en mode noninteractif" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:11 msgid "Specify path to global settings/plugins" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:12 -#, fuzzy msgid "Specify path to shared boot directory" -msgstr "Spécifier le dossier de démarrage" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:13 -#, fuzzy msgid "Specify path to local Ivy repository" -msgstr "Spécifier l’URL du dépôt" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:14 -#, fuzzy msgid "Set memory options" -msgstr "Définir les options de config" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:15 msgid "Turn on JVM debugging, open at the given port" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:16 -#, fuzzy msgid "Use specified version of sbt" -msgstr "Utiliser l’algorithme de compression spécifié" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:17 -#, fuzzy msgid "Use specified jar as the sbt launcher" -msgstr "Utiliser la clé spécifiée pour la signature" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:18 msgid "Use an RC version of sbt" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:19 -#, fuzzy msgid "Use a snapshot version of sbt" -msgstr "Afficher une version concise et quitter" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:20 msgid "Alternate JAVA_HOME" @@ -53640,9 +52815,8 @@ msgid "Gamma-correction table [0..255, …]" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:12 -#, fuzzy msgid "Scan mode" -msgstr "Mode parcours" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:13 msgid "Device name to use" @@ -53665,9 +52839,8 @@ msgid "The filename of the image to be loaded" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:18 -#, fuzzy msgid "Output image format" -msgstr "Format de sortie de l’image" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:19 msgid "Include this ICC profile into TIFF file" @@ -53716,9 +52889,8 @@ msgid "Test backend thoroughly" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:30 -#, fuzzy msgid "List all available backend options" -msgstr "Réinstaller les paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:31 msgid "Display this help message and exit" @@ -53946,9 +53118,8 @@ msgid "Detect which folder screen uses" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:2 -#, fuzzy msgid "Get the socket list on mac" -msgstr "Afficher la liste des sockets sur la MAC" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:3 msgid "Get the socket list" @@ -54001,9 +53172,8 @@ msgid "Escape character" msgstr "Caractère d’échappement" #: /tmp/fish/implicit/share/completions/screen.fish:16 -#, fuzzy msgid "Flow control on" -msgstr "Contrôle du flux activé" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:17 msgid "Flow control off" @@ -54043,9 +53213,8 @@ msgid "Optimal output" msgstr "Sortie optimale" #: /tmp/fish/implicit/share/completions/screen.fish:28 -#, fuzzy msgid "Preselect window" -msgstr "Fenêtre de présélection" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:30 msgid "Set shell" @@ -54064,18 +53233,16 @@ msgid "UTF-8 mode" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:35 -#, fuzzy msgid "Wipe dead sessions" -msgstr "Détruire les sessions mortes" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:36 msgid "Multi attach" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:37 -#, fuzzy msgid "Send command" -msgstr "Envoyer la commande" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:2 msgid "Display version information and exit" @@ -54102,9 +53269,8 @@ msgid "Image quality [1-100]" msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:8 -#, fuzzy msgid "Grab shot from multiple heads" -msgstr "Exécuter un ensemble de commandes plusieurs fois" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:9 msgid "Select a window or rectangle with the mouse" @@ -54265,9 +53431,8 @@ msgid "Specifies keycodes component name" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:9 -#, fuzzy msgid "Specifies name of keymap to load" -msgstr "Liste des paquets à installer" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:10 msgid "Specifies layout used to choose component names" @@ -54286,9 +53451,8 @@ msgid "Print a complete xkb_keymap description and exit" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:14 -#, fuzzy msgid "Print the current layout settings and exit" -msgstr "Afficher les paramètres d’affichage actuels et quitter" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:15 msgid "Name of rules file to use" @@ -54315,88 +53479,69 @@ msgid "Specifies layout variant used to choose component names" msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:1 -#, fuzzy msgid "Verify a signed checksum list" -msgstr "Forcer une taille de bloc fixe pour la somme de contrôle" +msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:3 -#, fuzzy msgid "Sign specified message" -msgstr "Utiliser le format unifié" +msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:4 -#, fuzzy msgid "Verify a signed message and sig" -msgstr "Afficher un message d’utilisation et quitter" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:1 -#, fuzzy msgid "Test if snap has yet to be given the subcommand" -msgstr "Vérifier si apt doit encore se faire donner la sous-commande" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:3 -#, fuzzy msgid "Test if snap command should have packages as potential completion" msgstr "" -"Vérifier si la commande apt devrait avoir les paquets comme complétion " -"potentielle" #: /tmp/fish/implicit/share/completions/snap.fish:4 -#, fuzzy msgid "Test if snap command should have files as potential completion" msgstr "" -"Vérifier si la commande apt devrait avoir les paquets comme complétion " -"potentielle" #: /tmp/fish/implicit/share/completions/snap.fish:5 #: /tmp/fish/implicit/share/completions/snap.fish:6 -#, fuzzy msgid "List disabled snaps" -msgstr "Lister les greffons installés" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:7 -#, fuzzy msgid "List installed snaps" -msgstr "Lister les greffons installés" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:8 -#, fuzzy msgid "List of interfaces" -msgstr "Arrêter l’interface" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:9 -#, fuzzy msgid "List change IDs" -msgstr "Lister les modifications" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:10 -#, fuzzy msgid "List aliases" -msgstr "Lister tous les remisages" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:11 -#, fuzzy msgid "Check that no assertion type is used yet" -msgstr "Vérifiez que votre type de terminal est supporté sur ce système" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:12 msgid "Check if certain assertion type is used" msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:13 -#, fuzzy msgid "List assertion filters" -msgstr "Lister les types de chiffrement" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:14 -#, fuzzy msgid "Show this help message" -msgstr "Afficher ce message d’aide" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:16 -#, fuzzy msgid "Snap" -msgstr "Instantanné" +msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:1 msgid "Ignore leading blanks" @@ -54491,9 +53636,8 @@ msgid "Go to background" msgstr "Mettre la tâche en arrière-plan" #: /tmp/fish/implicit/share/completions/ssh.fish:7 -#, fuzzy msgid "Allow remote host to connect to local forwarded ports" -msgstr "Autoriser l’hôte distant à se connecter aux ports redirigés localement" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:8 msgid "Smartcard device" @@ -54740,19 +53884,16 @@ msgid "Get the appropriate GHC for your project" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:40 -#, fuzzy msgid "Print out handy path information" -msgstr "Obtention des informations utilisateur impossible." +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:41 -#, fuzzy msgid "Unpack one or more packages locally" -msgstr "Installer un ou des paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:42 -#, fuzzy msgid "Update the package index" -msgstr "Mettre à jour la liste des paquets" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:43 msgid "Upgrade to the latest stack (experimental)" @@ -54763,9 +53904,8 @@ msgid "Upload a package to Hackage" msgstr "Téléverser un paquet vers Hackage" #: /tmp/fish/implicit/share/completions/stack.fish:45 -#, fuzzy msgid "Create source distribution tarballs" -msgstr "Nettoyer les répertoires source" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:46 msgid "Visualize your project's dependency graph using Graphviz dot" @@ -54922,9 +54062,8 @@ msgid "Trim only leading characters" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:5 -#, fuzzy msgid "Trim only trailing characters" -msgstr "Dédoublonner seulement les derniers caractères" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:6 msgid "Specify the chars to trim (default: whitespace)" @@ -54967,33 +54106,28 @@ msgid "Remove newline" msgstr "Supprimer le saut de ligne" #: /tmp/fish/implicit/share/completions/subl.fish:1 -#, fuzzy msgid "Load the given project" -msgstr "Supprime les paquet" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:2 -#, fuzzy msgid "Run the given command" -msgstr "Exécuter la commande spécifiée" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:3 -#, fuzzy msgid "Open a new window" -msgstr "Paramétrer la fenêtre parente" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:4 -#, fuzzy msgid "Add folders to the current window" -msgstr "Ne pas s’attacher à la fenêtre courante" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:5 msgid "Wait for the files to be closed before returning" msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:6 -#, fuzzy msgid "Don't activate the application" -msgstr "Ne pas effectuer l’action" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:7 msgid "Keep the application activated after closing the file" @@ -55020,9 +54154,8 @@ msgid "Remove the credential timestamp entirely" msgstr "Supprimer totalement l’horodatage des identifiants" #: /tmp/fish/implicit/share/completions/sudo.fish:6 -#, fuzzy msgid "Preserve group vector" -msgstr "Préserver le vecteur de groupe" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:7 msgid "Read password from stdin" @@ -55767,9 +54900,8 @@ msgid "Set the specified UUID for the container." msgstr "Paramétrer l’UUID du conteneur" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:9 -#, fuzzy msgid "Make the container part of the specified slice" -msgstr "Inclure le conteneur dans la tranche spécifiéeu" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:10 msgid "Set a unit property on the scope unit" @@ -55959,12 +55091,9 @@ msgid "Like -f, but also follow renamed or rotated files" msgstr "Comme -f, mais suivre également les renommage et rotations" #: /tmp/fish/implicit/share/completions/tail.fish:17 -#, fuzzy msgid "" "output the last K lines, instead of the last 10 - or only K lines with -r" msgstr "" -"Afficher les K dernières lignes, au lieu des 10 dernières ; vous pouvez " -"aussi utiliser avec -r pour n’afficher que K lignes" #: /tmp/fish/implicit/share/completions/tar.fish:1 #: /tmp/fish/implicit/share/completions/tar.fish:2 @@ -56108,9 +55237,8 @@ msgstr "" "Préserver les permissions, et lister les fichiers dans l’ordre de l’archive" #: /tmp/fish/implicit/share/completions/tar.fish:42 -#, fuzzy msgid "Show record number" -msgstr "Afficher le numéro d’enregistrement" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:43 msgid "Remove files after adding to archive" @@ -56329,9 +55457,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:30 #: /tmp/fish/implicit/share/completions/terraform.fish:87 #: /tmp/fish/implicit/share/completions/terraform.fish:108 -#, fuzzy msgid "Resource to target" -msgstr "Ressource à viser" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:14 #: /tmp/fish/implicit/share/completions/terraform.fish:18 @@ -56442,9 +55569,8 @@ msgid "Configure the backend for this environment" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:63 -#, fuzzy msgid "Backend configuration" -msgstr "Recharger la configuration du service" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:64 msgid "Download modules for this configuration" @@ -56459,9 +55585,8 @@ msgid "Suppress prompts about copying state data" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:70 -#, fuzzy msgid "Read an output from a state file" -msgstr "Lire la tâche depuis le fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:71 msgid "Path to the state file to read" @@ -56480,9 +55605,8 @@ msgid "Generate and show an execution plan" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:76 -#, fuzzy msgid "Generate a plan to destroy all resources" -msgstr "Générer un plan pour détruire toutes les ressources" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:77 msgid "Return detailed exit codes" @@ -56796,9 +55920,8 @@ msgid "Compare creation times" msgstr "Comparer les horodatages de création" #: /tmp/fish/implicit/share/completions/tmutil.fish:11 -#, fuzzy msgid "Compare file data forks" -msgstr "Comparer les forks fichiers" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:12 msgid "Compare ACLs" @@ -56886,9 +56009,8 @@ msgid "Print paths for all snapshots" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:33 -#, fuzzy msgid "Print the path to the current machine directory" -msgstr "Afficher le chemin du dossier machine actuel" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:34 msgid "Removes a backup destination" @@ -56931,9 +56053,8 @@ msgid "Block until finished" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:46 -#, fuzzy msgid "Automatic rotation" -msgstr "Compression automatique" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:47 msgid "Backup destination" @@ -57004,11 +56125,8 @@ msgid "Specify the name of the server socket to use" msgstr "Spécifier le nom de la socket serveur à utiliser" #: /tmp/fish/implicit/share/completions/tmux.fish:14 -#, fuzzy msgid "Full path to server socket. If set, -L is ignored." msgstr "" -"Spécifier le chemin complet de la socket serveur à utiliser ; si utilisé, -L " -"est ignoré" #: /tmp/fish/implicit/share/completions/tmux.fish:15 msgid "attach to existing session" @@ -57071,14 +56189,12 @@ msgid "lock session" msgstr "Verrouiller la session" #: /tmp/fish/implicit/share/completions/tmux.fish:28 -#, fuzzy msgid "create a new session with name session-name" -msgstr "Créer une nouvelle session au nom spécifié" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:29 -#, fuzzy msgid "don't attach to current window" -msgstr "Ne pas s’attacher à la fenêtre courante" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:30 msgid "window-name" @@ -57097,9 +56213,8 @@ msgid "height" msgstr "hauteur" #: /tmp/fish/implicit/share/completions/tmux.fish:34 -#, fuzzy msgid "refresh client" -msgstr "Rafraîchir le client courant" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:35 msgid "update client status bar" @@ -57726,9 +56841,8 @@ msgid "Encrypts a file and adds decryption steps to .travis.yml" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:10 -#, fuzzy msgid "Displays or changes the API endpoint" -msgstr "Afficher ou modifier l’aboutissement de l’API" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:11 msgid "Show or modify build environment variables" @@ -57867,9 +56981,8 @@ msgid "List directories only" msgstr "Lister seulement les dossiers" #: /tmp/fish/implicit/share/completions/tree.fish:3 -#, fuzzy msgid "Follow symbolic links like directories" -msgstr "Suivre les liens symboliques comme les dossiers" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:4 msgid "Print the full path prefix for each file" @@ -58028,9 +57141,8 @@ msgid "Turn off hyperlinks in HTML output" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:44 -#, fuzzy msgid "Print usage and this help message and exit" -msgstr "Charger le média et quitter" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:1 msgid "use the complement of SET1" @@ -58152,18 +57264,16 @@ msgid "graphic characters" msgstr "caractères graphiques" #: /tmp/fish/implicit/share/completions/tr.fish:30 -#, fuzzy msgid "ideographic characters" -msgstr "idéogrammes" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:31 msgid "lower-case alphabetic characters" msgstr "lettres en minuscule" #: /tmp/fish/implicit/share/completions/tr.fish:32 -#, fuzzy msgid "phonographic characters" -msgstr "phonogrammes" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:33 msgid "printable characters" @@ -58328,9 +57438,8 @@ msgid "Object to " msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:32 -#, fuzzy msgid "Block device to " -msgstr "Périphérique de blocs" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:33 msgid "Object path for ATA device" @@ -58778,9 +57887,8 @@ msgid "Adds a box" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:7 -#, fuzzy msgid "Lists all the installed boxes" -msgstr "Lister toutes les boxes installées" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:8 msgid "Removes a box from Vagrant" @@ -58791,9 +57899,8 @@ msgid "Repackages the given box for redistribution" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:10 -#, fuzzy msgid "Verifies the box with the given provider" -msgstr "Vérifier la box du fournisseur spécifié" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:11 msgid "Connect to a remotely shared Vagrant environment" @@ -58973,9 +58080,8 @@ msgid "Does not authenticate" msgstr "Ne pas s’authentifier" #: /tmp/fish/implicit/share/completions/vagrant.fish:56 -#, fuzzy msgid "Outputs configuration for an SSH config file" -msgstr "Afficher la configuration pour un fichier de configuration SSH" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:57 msgid "Name of the host for the outputted configuration" @@ -59046,14 +58152,12 @@ msgid "Continue trace below main()" msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:15 -#, fuzzy msgid "Supress errors from file" -msgstr "Masquer les erreurs provenant du fichier" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:16 -#, fuzzy msgid "Print suppressions for detected errors" -msgstr "Afficher le masquage des erreurs détectées" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:17 msgid "Start debugger on error" @@ -59473,9 +58577,8 @@ msgid "Source and execute script file" msgstr "Interpréter et exécuter le fichier de script" #: /tmp/fish/implicit/share/completions/vim.fish:12 -#, fuzzy msgid "Set the cursor to tag" -msgstr "Paramétrer le curseur pour un étiquetage" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:13 msgid "Terminal name" @@ -60316,9 +59419,8 @@ msgid "Dont print header" msgstr "Ne pas afficher l’en-tête" #: /tmp/fish/implicit/share/completions/w.fish:2 -#, fuzzy msgid "Ignore username for time calculations" -msgstr "Ignorer le nom d’utilisateur pour les calculs temporels" +msgstr "" #: /tmp/fish/implicit/share/completions/w.fish:3 msgid "Short format" @@ -60792,14 +59894,12 @@ msgid "Print dead processes" msgstr "Afficher les processus morts" #: /tmp/fish/implicit/share/completions/who.fish:4 -#, fuzzy msgid "Print line of headings" -msgstr "Afficher la ligne d’en-têtes" +msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:5 -#, fuzzy msgid "Print idle time" -msgstr "Afficher le temps d’inutilisation" +msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:6 msgid "Print login process" @@ -60889,9 +59989,8 @@ msgid "Connect" msgstr "Se connecter" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:7 -#, fuzzy msgid "List encryption types" -msgstr "Lister les types de chiffrement" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:8 msgid "Perform operation on wireless network" @@ -61397,9 +60496,8 @@ msgid "Set the size of the largest RGB cube xpdf will try to allocate" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:5 -#, fuzzy msgid "Set reverse video mode" -msgstr "Paramétrer l’inversion de la vidéo" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:6 msgid "Set the background of the page display" @@ -61410,9 +60508,8 @@ msgid "Set the color for background outside the page area" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:8 -#, fuzzy msgid "Set the initial zoom factor" -msgstr "Paramétrer le facteur d’agrandissement initial" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:9 msgid "Start in continuous view mode" @@ -61499,9 +60596,8 @@ msgid "Print copyright and version information" msgstr "Afficher les droits d’auteur et les informations de version" #: /tmp/fish/implicit/share/completions/xprop.fish:2 -#, fuzzy msgid "Display grammar and exit" -msgstr "Afficher la grammaire et quitter" +msgstr "" #: /tmp/fish/implicit/share/completions/xprop.fish:3 msgid "Select window by id" @@ -62993,9 +62089,8 @@ msgstr "" "ou un instantané antérieur" #: /tmp/fish/implicit/share/completions/zfs.fish:30 -#, fuzzy msgid "Execute a ZFS Channel Program" -msgstr "Exécuter un programme de canal ZFS" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:31 #: /tmp/fish/implicit/share/completions/zfs.fish:53 @@ -64418,9 +63513,8 @@ msgid "Add the repository as disabled" msgstr "Ajouter le dépôt désactivé" #: /tmp/fish/implicit/share/completions/zypper.fish:90 -#, fuzzy msgid "Probe URI" -msgstr "Vérifier l’URI" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:91 msgid "Don't probe URI, probe later during refresh" @@ -65065,18 +64159,13 @@ msgstr "" msgid "Manage abbreviations using new fish 3.0 scheme." msgstr "" -#: /tmp/fish/implicit/share/functions/abbr_old.fish:1 -msgid "Manage abbreviations using old fish 2.x scheme." -msgstr "" - #: /tmp/fish/implicit/share/functions/alias.fish:1 msgid "Creates a function wrapping a command" msgstr "" #: /tmp/fish/implicit/share/functions/cdh.fish:1 -#, fuzzy msgid "Menu based cd command" -msgstr "Envoyer la commande" +msgstr "" #: /tmp/fish/implicit/share/functions/contains_seq.fish:1 msgid "Return true if array contains a sequence" @@ -65100,10 +64189,6 @@ msgstr "" msgid "Edit the command buffer in an external editor" msgstr "" -#: /tmp/fish/implicit/share/functions/eval.fish:1 -msgid "Evaluate parameters as a command" -msgstr "Évaluer le paramètre comme une commande" - #: /tmp/fish/implicit/share/functions/_.fish:1 msgid "Alias for the gettext command" msgstr "Alias pour la commande gettext" @@ -65120,14 +64205,6 @@ msgstr "" msgid "Return 0 if the current token has an open single-quote" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_abook_formats.fish:1 -msgid "Complete abook formats" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_ant_targets.fish:1 -msgid "Print list of targets from build.xml and imported files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_atool_archive_contents.fish:1 msgid "List archive contents" msgstr "" @@ -65137,9 +64214,8 @@ msgid "Maximum uploads at once" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:2 -#, fuzzy msgid "Number of seconds between keepalives" -msgstr "Nombre de secondes entre les paquets de maintien de la connexion" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:3 msgid "Bytes per request" @@ -65190,9 +64266,8 @@ msgid "Maximum outgoing slice length" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:15 -#, fuzzy msgid "Maximum time to guess rate" -msgstr "Temps maximum pour deviner le débit" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:16 msgid "IP to bind to locally" @@ -65259,9 +64334,8 @@ msgid "Complete using all available commands" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_convert_options.fish:1 -#, fuzzy msgid "Complete Convert options" -msgstr "Compléter les options Convert" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_directories.fish:1 msgid "Complete directory prefixes" @@ -65479,10 +64553,6 @@ msgstr "" msgid "Complete by list of running processes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_setxkbmap.fish:1 -msgid "Complete setxkb options" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:1 msgid "common completions for ssh commands" msgstr "" @@ -65523,38 +64593,18 @@ msgstr "" msgid "Complete subcommand" msgstr "Compléter la sous-commande" -#: /tmp/fish/implicit/share/functions/__fish_complete_subcommand_root.fish:1 -msgid "" -"Run the __fish_complete_subcommand function using a PATH containing /sbin " -"and /usr/sbin" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_suffix.fish:1 msgid "Complete using files" msgstr "Compléter en utilisant les fichiers" -#: /tmp/fish/implicit/share/functions/__fish_complete_svn_diff.fish:1 -msgid "Complete \"svn diff\" arguments" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_complete_unrar.fish:1 -msgid "Peek inside of archives and list all files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_user_at_hosts.fish:1 -#, fuzzy msgid "Print list host-names with user@" -msgstr "Lister les noms d’hôtes connus" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_users.fish:1 msgid "Print a list of local users, with the real user name as a description" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_wvdial_peers.fish:1 -msgid "Complete wvdial peers" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 msgid "Completes with ZFS mountpoint properties" msgstr "Complète avec les paramètres ZFS de point de montage" @@ -65630,7 +64680,6 @@ msgstr "" "actuelle" #: /tmp/fish/implicit/share/functions/__fish_crux_packages.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_prt_packages.fish:1 msgid "Obtain a list of installed packages" msgstr "Obtenir une liste des paquets installés" @@ -65658,58 +64707,43 @@ msgstr "" msgid "Command used to find descriptions for commands" msgstr "" -#: /tmp/fish/implicit/share/functions/fish_fallback_prompt.fish:1 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:1 +msgid "Helper function for fish_git_prompt" +msgstr "" + +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:3 msgid "" -"A simple fallback prompt without too much color or special characters for " -"linux VTs" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_filter_ant_targets.fish:1 -msgid "Display targets within an ant build.xml file" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:1 -msgid "Helper function for __fish_git_prompt" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:2 -#, fuzzy -msgid "Prompt function for Git" -msgstr "Fonctions d’invite pour Git" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:3 -msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has staged " +"fish_git_prompt helper, tells whether or not the current branch has staged " "files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:4 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:4 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has " +"fish_git_prompt helper, tells whether or not the current branch has " "tracked, modified files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:5 -msgid "__fish_git_prompt helper, returns the current Git operation and branch" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:5 +msgid "fish_git_prompt helper, returns the current Git operation and branch" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:6 -msgid "__fish_git_prompt helper, checks char variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:6 +msgid "fish_git_prompt helper, checks char variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:7 -msgid "__fish_git_prompt helper, checks color variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:7 +msgid "fish_git_prompt helper, checks color variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:8 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:8 msgid "Event handler, repaints prompt when functionality changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:9 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:9 msgid "Event handler, repaints prompt when any color changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:10 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:10 msgid "Event handler, repaints prompt when any char changes" msgstr "" @@ -65786,31 +64820,14 @@ msgstr "" msgid "Paginate the current command using the users default pager" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_ports_dirs.fish:1 -msgid "Obtain a list of ports local collections" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_abook_emails.fish:1 -msgid "Print email addresses (abook)" -msgstr "Afficher les adresses email (abook)" - #: /tmp/fish/implicit/share/functions/__fish_print_addresses.fish:1 msgid "Print a list of known network addresses" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_arch_daemons.fish:1 -#, fuzzy -msgid "Print arch daemons" -msgstr "Afficher les démons arch" - #: /tmp/fish/implicit/share/functions/__fish_print_commands.fish:1 msgid "Print a list of documented fish commands" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_debian_services.fish:1 -msgid "Prints services installed" -msgstr "Afficher les services installés" - #: /tmp/fish/implicit/share/functions/__fish_print_encodings.fish:1 msgid "Complete using available character encodings" msgstr "" @@ -65819,16 +64836,9 @@ msgstr "" msgid "Print a list of all known filesystem types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_function_prototypes.fish:1 -msgid "" -"Prints the names of all function prototypes found in the headers in the " -"current directory" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_groups.fish:1 -#, fuzzy msgid "Print a list of local groups" -msgstr "Lister les mises à jour disponibles" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_help.fish:1 msgid "Print help message for the specified fish function or builtin" @@ -65850,10 +64860,6 @@ msgstr "Afficher les options lpr" msgid "Print lpr printers" msgstr "Afficher les imprimantes lpr" -#: /tmp/fish/implicit/share/functions/__fish_print_lsblk_columns.fish:1 -msgid "Print available lsblk columns" -msgstr "Afficher les colonnes lsblk disponibles" - #: /tmp/fish/implicit/share/functions/__fish_print_mounted.fish:1 msgid "Print mounted devices" msgstr "Afficher les périphériques" @@ -65875,79 +64881,30 @@ msgid "Print a list of local users" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_xdg_applications_directories.fish:1 -#, fuzzy msgid "Print directories where desktop files are stored" -msgstr "Omettre les dossiers pour la préservation des horodatages" - -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_desktop_file_ids.fish:1 -#, fuzzy -msgid "Print all available xdg desktop file IDs" -msgstr "Lister tous les greffons disponibles" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 msgid "Print XDG mime types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_modes.fish:1 -#, fuzzy -msgid "Print xrandr modes" -msgstr "Afficher tous les noms" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_outputs.fish:1 -msgid "Print xrandr outputs" -msgstr "Afficher les sorties xrandr" - #: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 msgid "Print X windows" msgstr "Afficher les fenêtres X" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_bookmarks.fish:1 -msgid "Lists ZFS bookmarks, if the feature is enabled" -msgstr "Liste les marque-pages ZFS, si la fonctionnalité est activée" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_filesystems.fish:1 -msgid "Lists ZFS filesystems" -msgstr "Liste les systèmes de fichiers ZFS" - #: /tmp/fish/implicit/share/functions/__fish_print_zfs_snapshots.fish:1 msgid "Lists ZFS snapshots" msgstr "Liste les instantanés ZFS" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_volumes.fish:1 -msgid "Lists ZFS volumes" -msgstr "Liste les volumess ZFS" - #: /tmp/fish/implicit/share/functions/fish_prompt.fish:1 msgid "Write out the prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_prt_no_subcommand.fish:1 -msgid "Test if prt-get has yet to be given the command" -msgstr "Vérifier si prt-get doit encore se faire donner la commande" - -#: /tmp/fish/implicit/share/functions/__fish_prt_ports.fish:1 -msgid "Obtain a list of ports" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_package.fish:1 -msgid "Test if prt-get should have packages as potential completion" -msgstr "" -"Vérifier si prt-get doit avoir les paquets comme complétions potentielles" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_port.fish:1 -msgid "Test if prt-get should have ports as potential completion" -msgstr "" -"Vérifier si prt-get doit avoir les ports comme complétions potentielles" - #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:1 #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:2 msgid "Show current path" msgstr "Afficher le chemin actuel" -#: /tmp/fish/implicit/share/functions/__fish_sgrep.fish:1 -msgid "Call grep without honoring GREP_OPTIONS settings" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_shared_key_bindings.fish:1 msgid "Bindings shared between emacs and vi mode" msgstr "" @@ -65965,15 +64922,8 @@ msgid "Prompt function for svn" msgstr "Fonction d’invite pour svn" #: /tmp/fish/implicit/share/functions/_fish_systemctl.fish:1 -#, fuzzy msgid "Call systemctl with some options from the current commandline" msgstr "" -"Vérifier si une option spécifique a été donnée sur la ligne de commande " -"actuelle" - -#: /tmp/fish/implicit/share/functions/__fish_test_arg.fish:1 -msgid "Test if the token under the cursor matches the specified wildcard" -msgstr "" #: /tmp/fish/implicit/share/functions/__fish_toggle_comment_commandline.fish:1 msgid "Comment/uncomment the current command" @@ -66133,7 +65083,6 @@ msgstr "" msgid "Edit variable value" msgstr "" -#, fuzzy #~ msgid "%ls: --array option requires a single variable name.\n" #~ msgstr "" #~ "%ls: 'Erase' requiert un nom de variable\n" @@ -66151,7 +65100,6 @@ msgstr "" #~ "%ls: Plusieurs noms de variable spécifiés dans un seul appel (%ls and %." #~ "*ls)\n" -#, fuzzy #~ msgid "%ls: Values cannot be specfied with erase\n" #~ msgstr "" #~ "%ls: 'erase' ne peut pas spécifier des valeurs\n" @@ -66164,11 +65112,9 @@ msgstr "" #~ "%ls: Attention: portée universelle selectionnée, mais une variable " #~ "globale '%ls' existe.\n" -#, fuzzy #~ msgid "string: Expected subcommand\n" #~ msgstr "string: Argument attendu\n" -#, fuzzy #~ msgid "string: Unknown subcommand '%ls'\n" #~ msgstr "string: Commande inconnue '%ls'\n" diff --git a/po/nb.po b/po/nb.po index 52e244788..a8a029b4c 100644 --- a/po/nb.po +++ b/po/nb.po @@ -1543,13 +1543,10 @@ msgid "There are still jobs active:\n" msgstr "" #: src/reader.cpp:2161 -#, fuzzy msgid "" "\n" " PID Command\n" msgstr "" -"\n" -" PID Command\n" #: src/reader.cpp:2170 msgid "A second attempt to exit will terminate them.\n" @@ -3272,9 +3269,8 @@ msgid "%s %s: Abbreviation %s cannot have spaces in the word\\n" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:4 -#, fuzzy msgid "%s %s: Expected one argument\\n" -msgstr "%s %s: Expected one argument\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:6 #: /tmp/fish/explicit/share/functions/abbr.fish:10 @@ -3294,40 +3290,6 @@ msgstr "" msgid "%s %s: Unexpected argument -- '%s'\\n" msgstr "" -#: /tmp/fish/explicit/share/functions/abbr_old.fish:1 -msgid "%s: invalid option -- %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:2 -msgid "%s: %s cannot be specified along with %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:3 -msgid "%s: option requires an argument -- %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:4 -msgid "%s: Unexpected argument -- %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:5 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:8 -msgid "%s: abbreviation cannot have spaces in the key\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:6 -msgid "%s: abbreviation must have a value\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:7 -msgid "%s: abbreviation '%s' already exists, cannot rename\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:9 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:10 -msgid "%s: no such abbreviation '%s'\\n" -msgstr "" - #: /tmp/fish/explicit/share/functions/alias.fish:1 msgid "%s: Name cannot be empty\\n" msgstr "" @@ -3377,14 +3339,6 @@ msgstr "" msgid "or the file was empty" msgstr "" -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:2 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:3 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:4 -#: /tmp/fish/explicit/share/functions/__fish_complete_unrar.fish:1 -msgid "%s\\tArchived file\\n" -msgstr "" - #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:3 msgid "Achieved compression ratio" msgstr "" @@ -4217,7 +4171,6 @@ msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:5 #: /tmp/fish/implicit/share/completions/entr.fish:3 #: /tmp/fish/implicit/share/completions/env.fish:5 -#: /tmp/fish/implicit/share/completions/eval.fish:1 #: /tmp/fish/implicit/share/completions/exec.fish:1 #: /tmp/fish/implicit/share/completions/exit.fish:1 #: /tmp/fish/implicit/share/completions/fg.fish:1 @@ -4799,7 +4752,6 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:2 #: /tmp/fish/implicit/share/completions/mocha.fish:1 #: /tmp/fish/implicit/share/completions/modinfo.fish:11 -#: /tmp/fish/implicit/share/completions/netcat.fish:7 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:1 #: /tmp/fish/implicit/share/completions/poweroff.fish:1 #: /tmp/fish/implicit/share/completions/terraform.fish:2 @@ -12594,82 +12546,6 @@ msgstr "" msgid "Enhance or reduce the image contrast" msgstr "" -#: /tmp/fish/implicit/share/completions/cower.fish:1 -msgid "Show output in a more script friendly format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:2 -msgid "Download [twice to fetch dependencies]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:3 -msgid "Show info for target [twice for more details]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:4 -msgid "Search for packages by maintainer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:5 -msgid "Search for packages by name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:6 -msgid "Check AUR packages for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:7 -msgid "Use colored output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:8 -msgid "Show debug output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:9 -msgid "Overwrite existing files when downloading" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:10 -msgid "Print formatted" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:11 -msgid "Display help and quit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:12 -msgid "Ignore a package upgrade" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:13 -msgid "Ignore a binary repo when checking for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:14 -msgid "Specify a delimiter for list formatters" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:15 -msgid "Output less" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:16 -msgid "Download targets to DIR" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:17 -msgid "Limit the number of threads created [10]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:18 -msgid "Curl timeout in seconds" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:19 -msgid "Output more" -msgstr "" - #: /tmp/fish/implicit/share/completions/cowsay.fish:1 #: /tmp/fish/implicit/share/completions/cowthink.fish:1 msgid "Specify eye string" @@ -42865,90 +42741,6 @@ msgstr "" msgid "Exclude files that match any pattern in file" msgstr "" -#: /tmp/fish/implicit/share/completions/netcat.fish:1 -msgid "Remote hostname" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:2 -msgid "Same as -e, but use /bin/sh" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:3 -msgid "Program to execute after connection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:4 -msgid "Allow broadcasts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:5 -msgid "Source-routing hop points" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:6 -msgid "Source-routing pointer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:8 -msgid "Delay interval for lines sent, ports scaned" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:9 -msgid "Set keepalive option" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:10 -msgid "Listen mode, acts as a server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:11 -msgid "Numeric-only IP addresses, no DNS" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:12 -msgid "Hex dump of traffic" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:13 -msgid "Local port number" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:14 -msgid "Randomize local and remote ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:15 -msgid "Quit after EOF on stdin and delay of secs" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:16 -msgid "Local source address" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:17 -msgid "Answer Telnet negotiation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:18 -msgid "UDP Mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:19 -msgid "Verbose, use twice to be more verbose" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:20 -msgid "Timeout for connects and final net reads" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:21 -msgid "Set Type of Service" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:22 -msgid "No I/O - used for scanning" -msgstr "" - #: /tmp/fish/implicit/share/completions/netctl-auto.fish:3 msgid "List all available profiles for automatic selection" msgstr "" @@ -48452,22 +48244,6 @@ msgstr "" msgid "Show the full path for the given Ruby command" msgstr "" -#: /tmp/fish/implicit/share/completions/rc.d.fish:1 -msgid "Filter started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:2 -msgid "Filter stopped daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:3 -msgid "Filter auto started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:4 -msgid "Filter manually started daemons" -msgstr "" - #: /tmp/fish/implicit/share/completions/rc-service.fish:1 msgid "Tests if the service exists or not" msgstr "" @@ -61531,10 +61307,6 @@ msgstr "" msgid "Manage abbreviations using new fish 3.0 scheme." msgstr "" -#: /tmp/fish/implicit/share/functions/abbr_old.fish:1 -msgid "Manage abbreviations using old fish 2.x scheme." -msgstr "" - #: /tmp/fish/implicit/share/functions/alias.fish:1 msgid "Creates a function wrapping a command" msgstr "" @@ -61565,10 +61337,6 @@ msgstr "" msgid "Edit the command buffer in an external editor" msgstr "" -#: /tmp/fish/implicit/share/functions/eval.fish:1 -msgid "Evaluate parameters as a command" -msgstr "" - #: /tmp/fish/implicit/share/functions/_.fish:1 msgid "Alias for the gettext command" msgstr "" @@ -61585,14 +61353,6 @@ msgstr "" msgid "Return 0 if the current token has an open single-quote" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_abook_formats.fish:1 -msgid "Complete abook formats" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_ant_targets.fish:1 -msgid "Print list of targets from build.xml and imported files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_atool_archive_contents.fish:1 msgid "List archive contents" msgstr "" @@ -61941,10 +61701,6 @@ msgstr "" msgid "Complete by list of running processes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_setxkbmap.fish:1 -msgid "Complete setxkb options" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:1 msgid "common completions for ssh commands" msgstr "" @@ -61985,25 +61741,10 @@ msgstr "" msgid "Complete subcommand" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_subcommand_root.fish:1 -msgid "" -"Run the __fish_complete_subcommand function using a PATH containing /sbin " -"and /usr/sbin" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_suffix.fish:1 msgid "Complete using files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_svn_diff.fish:1 -msgid "Complete \"svn diff\" arguments" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_complete_unrar.fish:1 -msgid "Peek inside of archives and list all files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_user_at_hosts.fish:1 msgid "Print list host-names with user@" msgstr "" @@ -62012,10 +61753,6 @@ msgstr "" msgid "Print a list of local users, with the real user name as a description" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_wvdial_peers.fish:1 -msgid "Complete wvdial peers" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 msgid "Completes with ZFS mountpoint properties" msgstr "" @@ -62087,7 +61824,6 @@ msgid "Checks if a specific option has been given in the current commandline" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_crux_packages.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_prt_packages.fish:1 msgid "Obtain a list of installed packages" msgstr "" @@ -62115,57 +61851,47 @@ msgstr "" msgid "Command used to find descriptions for commands" msgstr "" -#: /tmp/fish/implicit/share/functions/fish_fallback_prompt.fish:1 -msgid "" -"A simple fallback prompt without too much color or special characters for " -"linux VTs" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:1 +msgid "Helper function for fish_git_prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_filter_ant_targets.fish:1 -msgid "Display targets within an ant build.xml file" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:1 -msgid "Helper function for __fish_git_prompt" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:2 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:2 msgid "Prompt function for Git" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:3 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:3 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has staged " +"fish_git_prompt helper, tells whether or not the current branch has staged " "files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:4 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:4 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has " +"fish_git_prompt helper, tells whether or not the current branch has " "tracked, modified files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:5 -msgid "__fish_git_prompt helper, returns the current Git operation and branch" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:5 +msgid "fish_git_prompt helper, returns the current Git operation and branch" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:6 -msgid "__fish_git_prompt helper, checks char variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:6 +msgid "fish_git_prompt helper, checks char variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:7 -msgid "__fish_git_prompt helper, checks color variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:7 +msgid "fish_git_prompt helper, checks color variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:8 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:8 msgid "Event handler, repaints prompt when functionality changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:9 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:9 msgid "Event handler, repaints prompt when any color changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:10 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:10 msgid "Event handler, repaints prompt when any char changes" msgstr "" @@ -62239,30 +61965,14 @@ msgstr "" msgid "Paginate the current command using the users default pager" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_ports_dirs.fish:1 -msgid "Obtain a list of ports local collections" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_abook_emails.fish:1 -msgid "Print email addresses (abook)" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_addresses.fish:1 msgid "Print a list of known network addresses" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_arch_daemons.fish:1 -msgid "Print arch daemons" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_commands.fish:1 msgid "Print a list of documented fish commands" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_debian_services.fish:1 -msgid "Prints services installed" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_encodings.fish:1 msgid "Complete using available character encodings" msgstr "" @@ -62271,12 +61981,6 @@ msgstr "" msgid "Print a list of all known filesystem types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_function_prototypes.fish:1 -msgid "" -"Prints the names of all function prototypes found in the headers in the " -"current directory" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_groups.fish:1 msgid "Print a list of local groups" msgstr "" @@ -62301,10 +62005,6 @@ msgstr "" msgid "Print lpr printers" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_lsblk_columns.fish:1 -msgid "Print available lsblk columns" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_mounted.fish:1 msgid "Print mounted devices" msgstr "" @@ -62329,71 +62029,27 @@ msgstr "" msgid "Print directories where desktop files are stored" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_desktop_file_ids.fish:1 -msgid "Print all available xdg desktop file IDs" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 msgid "Print XDG mime types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_modes.fish:1 -msgid "Print xrandr modes" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_outputs.fish:1 -msgid "Print xrandr outputs" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 msgid "Print X windows" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_bookmarks.fish:1 -msgid "Lists ZFS bookmarks, if the feature is enabled" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_filesystems.fish:1 -msgid "Lists ZFS filesystems" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_zfs_snapshots.fish:1 msgid "Lists ZFS snapshots" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_volumes.fish:1 -msgid "Lists ZFS volumes" -msgstr "" - #: /tmp/fish/implicit/share/functions/fish_prompt.fish:1 msgid "Write out the prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_prt_no_subcommand.fish:1 -msgid "Test if prt-get has yet to be given the command" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_ports.fish:1 -msgid "Obtain a list of ports" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_package.fish:1 -msgid "Test if prt-get should have packages as potential completion" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_port.fish:1 -msgid "Test if prt-get should have ports as potential completion" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:1 #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:2 msgid "Show current path" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_sgrep.fish:1 -msgid "Call grep without honoring GREP_OPTIONS settings" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_shared_key_bindings.fish:1 msgid "Bindings shared between emacs and vi mode" msgstr "" @@ -62414,10 +62070,6 @@ msgstr "" msgid "Call systemctl with some options from the current commandline" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_test_arg.fish:1 -msgid "Test if the token under the cursor matches the specified wildcard" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_toggle_comment_commandline.fish:1 msgid "Comment/uncomment the current command" msgstr "" diff --git a/po/nn.po b/po/nn.po index 1241996d8..bf097c764 100644 --- a/po/nn.po +++ b/po/nn.po @@ -1543,13 +1543,10 @@ msgid "There are still jobs active:\n" msgstr "" #: src/reader.cpp:2161 -#, fuzzy msgid "" "\n" " PID Command\n" msgstr "" -"\n" -" PID Command\n" #: src/reader.cpp:2170 msgid "A second attempt to exit will terminate them.\n" @@ -3272,9 +3269,8 @@ msgid "%s %s: Abbreviation %s cannot have spaces in the word\\n" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:4 -#, fuzzy msgid "%s %s: Expected one argument\\n" -msgstr "%s %s: Expected one argument\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:6 #: /tmp/fish/explicit/share/functions/abbr.fish:10 @@ -3294,40 +3290,6 @@ msgstr "" msgid "%s %s: Unexpected argument -- '%s'\\n" msgstr "" -#: /tmp/fish/explicit/share/functions/abbr_old.fish:1 -msgid "%s: invalid option -- %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:2 -msgid "%s: %s cannot be specified along with %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:3 -msgid "%s: option requires an argument -- %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:4 -msgid "%s: Unexpected argument -- %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:5 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:8 -msgid "%s: abbreviation cannot have spaces in the key\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:6 -msgid "%s: abbreviation must have a value\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:7 -msgid "%s: abbreviation '%s' already exists, cannot rename\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:9 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:10 -msgid "%s: no such abbreviation '%s'\\n" -msgstr "" - #: /tmp/fish/explicit/share/functions/alias.fish:1 msgid "%s: Name cannot be empty\\n" msgstr "" @@ -3377,14 +3339,6 @@ msgstr "" msgid "or the file was empty" msgstr "" -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:2 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:3 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:4 -#: /tmp/fish/explicit/share/functions/__fish_complete_unrar.fish:1 -msgid "%s\\tArchived file\\n" -msgstr "" - #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:3 msgid "Achieved compression ratio" msgstr "" @@ -4799,7 +4753,6 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:2 #: /tmp/fish/implicit/share/completions/mocha.fish:1 #: /tmp/fish/implicit/share/completions/modinfo.fish:11 -#: /tmp/fish/implicit/share/completions/netcat.fish:7 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:1 #: /tmp/fish/implicit/share/completions/poweroff.fish:1 #: /tmp/fish/implicit/share/completions/terraform.fish:2 @@ -12594,82 +12547,6 @@ msgstr "" msgid "Enhance or reduce the image contrast" msgstr "" -#: /tmp/fish/implicit/share/completions/cower.fish:1 -msgid "Show output in a more script friendly format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:2 -msgid "Download [twice to fetch dependencies]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:3 -msgid "Show info for target [twice for more details]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:4 -msgid "Search for packages by maintainer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:5 -msgid "Search for packages by name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:6 -msgid "Check AUR packages for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:7 -msgid "Use colored output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:8 -msgid "Show debug output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:9 -msgid "Overwrite existing files when downloading" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:10 -msgid "Print formatted" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:11 -msgid "Display help and quit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:12 -msgid "Ignore a package upgrade" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:13 -msgid "Ignore a binary repo when checking for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:14 -msgid "Specify a delimiter for list formatters" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:15 -msgid "Output less" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:16 -msgid "Download targets to DIR" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:17 -msgid "Limit the number of threads created [10]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:18 -msgid "Curl timeout in seconds" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:19 -msgid "Output more" -msgstr "" - #: /tmp/fish/implicit/share/completions/cowsay.fish:1 #: /tmp/fish/implicit/share/completions/cowthink.fish:1 msgid "Specify eye string" @@ -42865,90 +42742,6 @@ msgstr "" msgid "Exclude files that match any pattern in file" msgstr "" -#: /tmp/fish/implicit/share/completions/netcat.fish:1 -msgid "Remote hostname" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:2 -msgid "Same as -e, but use /bin/sh" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:3 -msgid "Program to execute after connection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:4 -msgid "Allow broadcasts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:5 -msgid "Source-routing hop points" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:6 -msgid "Source-routing pointer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:8 -msgid "Delay interval for lines sent, ports scaned" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:9 -msgid "Set keepalive option" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:10 -msgid "Listen mode, acts as a server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:11 -msgid "Numeric-only IP addresses, no DNS" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:12 -msgid "Hex dump of traffic" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:13 -msgid "Local port number" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:14 -msgid "Randomize local and remote ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:15 -msgid "Quit after EOF on stdin and delay of secs" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:16 -msgid "Local source address" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:17 -msgid "Answer Telnet negotiation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:18 -msgid "UDP Mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:19 -msgid "Verbose, use twice to be more verbose" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:20 -msgid "Timeout for connects and final net reads" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:21 -msgid "Set Type of Service" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:22 -msgid "No I/O - used for scanning" -msgstr "" - #: /tmp/fish/implicit/share/completions/netctl-auto.fish:3 msgid "List all available profiles for automatic selection" msgstr "" @@ -48452,22 +48245,6 @@ msgstr "" msgid "Show the full path for the given Ruby command" msgstr "" -#: /tmp/fish/implicit/share/completions/rc.d.fish:1 -msgid "Filter started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:2 -msgid "Filter stopped daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:3 -msgid "Filter auto started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:4 -msgid "Filter manually started daemons" -msgstr "" - #: /tmp/fish/implicit/share/completions/rc-service.fish:1 msgid "Tests if the service exists or not" msgstr "" @@ -61531,10 +61308,6 @@ msgstr "" msgid "Manage abbreviations using new fish 3.0 scheme." msgstr "" -#: /tmp/fish/implicit/share/functions/abbr_old.fish:1 -msgid "Manage abbreviations using old fish 2.x scheme." -msgstr "" - #: /tmp/fish/implicit/share/functions/alias.fish:1 msgid "Creates a function wrapping a command" msgstr "" @@ -61565,10 +61338,6 @@ msgstr "" msgid "Edit the command buffer in an external editor" msgstr "" -#: /tmp/fish/implicit/share/functions/eval.fish:1 -msgid "Evaluate parameters as a command" -msgstr "" - #: /tmp/fish/implicit/share/functions/_.fish:1 msgid "Alias for the gettext command" msgstr "" @@ -61585,14 +61354,6 @@ msgstr "" msgid "Return 0 if the current token has an open single-quote" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_abook_formats.fish:1 -msgid "Complete abook formats" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_ant_targets.fish:1 -msgid "Print list of targets from build.xml and imported files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_atool_archive_contents.fish:1 msgid "List archive contents" msgstr "" @@ -61941,10 +61702,6 @@ msgstr "" msgid "Complete by list of running processes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_setxkbmap.fish:1 -msgid "Complete setxkb options" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:1 msgid "common completions for ssh commands" msgstr "" @@ -61985,25 +61742,10 @@ msgstr "" msgid "Complete subcommand" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_subcommand_root.fish:1 -msgid "" -"Run the __fish_complete_subcommand function using a PATH containing /sbin " -"and /usr/sbin" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_suffix.fish:1 msgid "Complete using files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_svn_diff.fish:1 -msgid "Complete \"svn diff\" arguments" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_complete_unrar.fish:1 -msgid "Peek inside of archives and list all files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_user_at_hosts.fish:1 msgid "Print list host-names with user@" msgstr "" @@ -62012,10 +61754,6 @@ msgstr "" msgid "Print a list of local users, with the real user name as a description" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_wvdial_peers.fish:1 -msgid "Complete wvdial peers" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 msgid "Completes with ZFS mountpoint properties" msgstr "" @@ -62087,7 +61825,6 @@ msgid "Checks if a specific option has been given in the current commandline" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_crux_packages.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_prt_packages.fish:1 msgid "Obtain a list of installed packages" msgstr "" @@ -62115,57 +61852,47 @@ msgstr "" msgid "Command used to find descriptions for commands" msgstr "" -#: /tmp/fish/implicit/share/functions/fish_fallback_prompt.fish:1 -msgid "" -"A simple fallback prompt without too much color or special characters for " -"linux VTs" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:1 +msgid "Helper function for fish_git_prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_filter_ant_targets.fish:1 -msgid "Display targets within an ant build.xml file" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:1 -msgid "Helper function for __fish_git_prompt" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:2 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:2 msgid "Prompt function for Git" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:3 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:3 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has staged " +"fish_git_prompt helper, tells whether or not the current branch has staged " "files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:4 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:4 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has " +"fish_git_prompt helper, tells whether or not the current branch has " "tracked, modified files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:5 -msgid "__fish_git_prompt helper, returns the current Git operation and branch" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:5 +msgid "fish_git_prompt helper, returns the current Git operation and branch" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:6 -msgid "__fish_git_prompt helper, checks char variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:6 +msgid "fish_git_prompt helper, checks char variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:7 -msgid "__fish_git_prompt helper, checks color variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:7 +msgid "fish_git_prompt helper, checks color variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:8 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:8 msgid "Event handler, repaints prompt when functionality changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:9 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:9 msgid "Event handler, repaints prompt when any color changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:10 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:10 msgid "Event handler, repaints prompt when any char changes" msgstr "" @@ -62239,30 +61966,14 @@ msgstr "" msgid "Paginate the current command using the users default pager" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_ports_dirs.fish:1 -msgid "Obtain a list of ports local collections" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_abook_emails.fish:1 -msgid "Print email addresses (abook)" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_addresses.fish:1 msgid "Print a list of known network addresses" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_arch_daemons.fish:1 -msgid "Print arch daemons" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_commands.fish:1 msgid "Print a list of documented fish commands" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_debian_services.fish:1 -msgid "Prints services installed" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_encodings.fish:1 msgid "Complete using available character encodings" msgstr "" @@ -62271,12 +61982,6 @@ msgstr "" msgid "Print a list of all known filesystem types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_function_prototypes.fish:1 -msgid "" -"Prints the names of all function prototypes found in the headers in the " -"current directory" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_groups.fish:1 msgid "Print a list of local groups" msgstr "" @@ -62301,10 +62006,6 @@ msgstr "" msgid "Print lpr printers" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_lsblk_columns.fish:1 -msgid "Print available lsblk columns" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_mounted.fish:1 msgid "Print mounted devices" msgstr "" @@ -62329,71 +62030,27 @@ msgstr "" msgid "Print directories where desktop files are stored" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_desktop_file_ids.fish:1 -msgid "Print all available xdg desktop file IDs" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 msgid "Print XDG mime types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_modes.fish:1 -msgid "Print xrandr modes" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_outputs.fish:1 -msgid "Print xrandr outputs" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 msgid "Print X windows" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_bookmarks.fish:1 -msgid "Lists ZFS bookmarks, if the feature is enabled" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_filesystems.fish:1 -msgid "Lists ZFS filesystems" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_zfs_snapshots.fish:1 msgid "Lists ZFS snapshots" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_volumes.fish:1 -msgid "Lists ZFS volumes" -msgstr "" - #: /tmp/fish/implicit/share/functions/fish_prompt.fish:1 msgid "Write out the prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_prt_no_subcommand.fish:1 -msgid "Test if prt-get has yet to be given the command" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_ports.fish:1 -msgid "Obtain a list of ports" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_package.fish:1 -msgid "Test if prt-get should have packages as potential completion" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_port.fish:1 -msgid "Test if prt-get should have ports as potential completion" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:1 #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:2 msgid "Show current path" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_sgrep.fish:1 -msgid "Call grep without honoring GREP_OPTIONS settings" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_shared_key_bindings.fish:1 msgid "Bindings shared between emacs and vi mode" msgstr "" @@ -62414,10 +62071,6 @@ msgstr "" msgid "Call systemctl with some options from the current commandline" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_test_arg.fish:1 -msgid "Test if the token under the cursor matches the specified wildcard" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_toggle_comment_commandline.fish:1 msgid "Comment/uncomment the current command" msgstr "" diff --git a/po/pl.po b/po/pl.po index 37c89891d..f4ca5da56 100644 --- a/po/pl.po +++ b/po/pl.po @@ -33,14 +33,14 @@ msgid "%ls: Mutually exclusive flags '%ls' and `%ls` seen\n" msgstr "" #: src/builtin_argparse.cpp:160 -#, fuzzy, c-format +#, c-format msgid "%ls: exclusive flag string '%ls' is not valid\n" -msgstr "%ls: maksymalna wartość '%ls' nie jest prawidłową liczbą\n" +msgstr "" #: src/builtin_argparse.cpp:176 -#, fuzzy, c-format +#, c-format msgid "%ls: exclusive flag '%ls' is not valid\n" -msgstr "%ls: maksymalna wartość '%ls' nie jest prawidłową liczbą\n" +msgstr "" #: src/builtin_argparse.cpp:196 #, c-format @@ -79,14 +79,14 @@ msgid "%ls: No option specs were provided\n" msgstr "" #: src/builtin_argparse.cpp:391 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid --min-args value '%ls'\n" -msgstr "%ls: Nieprawidłową wartość początkowa '%ls'\n" +msgstr "" #: src/builtin_argparse.cpp:401 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid --max-args value '%ls'\n" -msgstr "%ls: Nieprawidłową wartość początkowa '%ls'\n" +msgstr "" #: src/builtin_bg.cpp:23 #, c-format @@ -106,9 +106,9 @@ msgid "%ls: There are no suitable jobs\n" msgstr "%ls: Brak pasujących zadań\n" #: src/builtin_bg.cpp:80 src/builtin_disown.cpp:82 src/builtin_wait.cpp:147 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is not a valid job specifier\n" -msgstr "%ls: '%ls' nie jest zadaniem\n" +msgstr "" #: src/builtin_bg.cpp:95 src/builtin_disown.cpp:89 src/builtin_wait.cpp:163 #, c-format @@ -191,29 +191,29 @@ msgid "%ls: Could not set PWD variable\n" msgstr "%ls: Nie można ustawić zmiennej PWD\n" #: src/builtin_commandline.cpp:344 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown input function '%ls'" -msgstr "%ls: Nieznane wejście funkcji '%ls'" +msgstr "" #: src/builtin_complete.cpp:183 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid token '%ls'\n" -msgstr "%ls: Nieprawidłowa ścieżka: %ls\n" +msgstr "" #: src/builtin_complete.cpp:203 -#, fuzzy, c-format +#, c-format msgid "%ls: -s requires a non-empty string\n" -msgstr "%ls: Nazwa zmiennej nie może być pustym ciągiem znaków \n" +msgstr "" #: src/builtin_complete.cpp:211 -#, fuzzy, c-format +#, c-format msgid "%ls: -l requires a non-empty string\n" -msgstr "%ls: Nazwa zmiennej nie może być pustym ciągiem znaków \n" +msgstr "" #: src/builtin_complete.cpp:219 -#, fuzzy, c-format +#, c-format msgid "%ls: -o requires a non-empty string\n" -msgstr "%ls: Nazwa zmiennej nie może być pustym ciągiem znaków \n" +msgstr "" #: src/builtin_contains.cpp:75 #, c-format @@ -492,9 +492,9 @@ msgid "%ls: Cannot find calling job for event handler" msgstr "" #: src/builtin_function.cpp:121 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid process id '%ls'" -msgstr "%ls: Nieprawidłowy identyfikator procesu %ls" +msgstr "" #: src/builtin_function.cpp:179 #, c-format @@ -516,9 +516,9 @@ msgstr "" "i nie może być wykorzystywana jako nazwa funkcji" #: src/builtin_function.cpp:239 -#, fuzzy, c-format +#, c-format msgid "%ls: Unexpected positional argument '%ls'" -msgstr "%ls: Oczekiwano jeden argument, otrzymano %lu" +msgstr "" #: src/builtin_functions.cpp:275 src/builtin.h:38 #, c-format @@ -536,9 +536,9 @@ msgid "%ls: Function '%ls' does not exist\n" msgstr "%ls: Funkcja '%ls' nie istnieje\n" #: src/builtin_functions.cpp:307 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected exactly one function name for --details\n" -msgstr "%ls: Oczekiwano dokładnie jednej nazwy funkcji\n" +msgstr "" #: src/builtin_functions.cpp:342 #, c-format @@ -619,9 +619,9 @@ msgid "%ls: There are no jobs\n" msgstr "%ls: Nie ma żadnych zadań\n" #: src/builtin_math.cpp:44 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is not a valid scale value\n" -msgstr "%ls: '%ls' nie jest zadaniem\n" +msgstr "" #: src/builtin_math.cpp:148 #, c-format @@ -634,9 +634,9 @@ msgid "More than %d var names in math expression." msgstr "" #: src/builtin_math.cpp:194 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid expression: %ls\n" -msgstr "%ls: Nieprawidłowy identyfikator procesu %ls\n" +msgstr "" #: src/builtin_printf.cpp:243 msgid "Number out of range" @@ -769,9 +769,9 @@ msgid "%ls: Invalid index starting at '%ls'\n" msgstr "" #: src/builtin_set.cpp:537 -#, fuzzy, c-format +#, c-format msgid "$%ls: not set in %ls scope\n" -msgstr "%ls: Nieznana opcja '%ls'\n" +msgstr "" #: src/builtin_set.cpp:542 msgid "exported" @@ -792,9 +792,9 @@ msgid "$%ls[%d]: length=%d value=|%ls|\n" msgstr "" #: src/builtin_set.cpp:578 -#, fuzzy, c-format +#, c-format msgid "$%ls: invalid var name\n" -msgstr "%ls: Nieprawidłowy stan\n" +msgstr "" #: src/builtin_set.cpp:584 #, c-format @@ -817,9 +817,9 @@ msgid "%ls: Error while reading file '%ls'\n" msgstr "%ls: Nie udało się odczytać '%ls'\n" #: src/builtin_status.cpp:155 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid level value '%ls'\n" -msgstr "%ls: Nieprawidłowa wartość długości '%ls'\n" +msgstr "" #: src/builtin_status.cpp:276 msgid "This is a login shell\n" @@ -851,9 +851,8 @@ msgid "Standard input" msgstr "Standardowe wejście" #: src/builtin_status.cpp:320 -#, fuzzy msgid "Not a function" -msgstr "Zdefiniuj nową funkcję" +msgstr "" #: src/builtin_string.cpp:39 #, c-format @@ -861,9 +860,9 @@ msgid "%ls: Expected argument\n" msgstr "%ls: Oczekiwano argumentu\n" #: src/builtin_string.cpp:160 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid escape style '%ls'\n" -msgstr "%ls: Nieprawidłową wartość początkowa '%ls'\n" +msgstr "" #: src/builtin_string.cpp:238 #, c-format @@ -871,14 +870,14 @@ msgid "%ls: Invalid length value '%ls'\n" msgstr "%ls: Nieprawidłowa wartość długości '%ls'\n" #: src/builtin_string.cpp:258 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid max value '%ls'\n" -msgstr "%ls: Nieprawidłową wartość początkowa '%ls'\n" +msgstr "" #: src/builtin_string.cpp:275 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid count value '%ls'\n" -msgstr "%ls: Nieprawidłowa wartość długości '%ls'\n" +msgstr "" #: src/builtin_string.cpp:321 #, c-format @@ -910,19 +909,19 @@ msgid "%ls: Regular expression substitute error: %ls\n" msgstr "" #: src/builtin_test.cpp:608 -#, fuzzy, c-format +#, c-format msgid "invalid integer '%ls'" -msgstr "Nieprawidłowy cel przekierowania: %ls" +msgstr "" #: src/builtin_ulimit.cpp:285 -#, fuzzy, c-format +#, c-format msgid "%ls: New limit cannot be an empty string\n" -msgstr "%ls: Nazwa zmiennej nie może być pustym ciągiem znaków \n" +msgstr "" #: src/builtin_ulimit.cpp:297 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid limit '%ls'\n" -msgstr "%ls: Nieprawidłowa ścieżka: %ls\n" +msgstr "" #: src/common.cpp:1551 msgid "Current terminal parameters have rows and/or columns set to zero." @@ -969,35 +968,31 @@ msgid "Tried to pop empty environment stack." msgstr "" #: src/env.cpp:537 -#, fuzzy, c-format +#, c-format msgid "Using fallback terminal type '%s'." -msgstr "Używanie zapasowego typu terminala '%ls'" +msgstr "" #: src/env.cpp:542 -#, fuzzy, c-format +#, c-format msgid "Could not set up terminal using the fallback terminal type '%s'." msgstr "" -"Nie można skonfigurować terminala używając zapasowego typu terminala '%ls' - " -"opuszczanie" #: src/env.cpp:574 -#, fuzzy msgid "Could not set up terminal." -msgstr "Nie mozna skonfigurować terminala" +msgstr "" #: src/env.cpp:576 msgid "TERM environment variable not set." msgstr "" #: src/env.cpp:578 -#, fuzzy, c-format +#, c-format msgid "TERM environment variable set to '%ls'." -msgstr "Zmienna środowiskowa TERM ustawiona jest do '%ls'" +msgstr "" #: src/env.cpp:579 -#, fuzzy msgid "Check that this terminal type is supported on this system." -msgstr "Sprawdź czy ten typ terminala jest obsługiwany przez ten system" +msgstr "" #: src/env.cpp:673 msgid "" @@ -1561,13 +1556,10 @@ msgid "There are still jobs active:\n" msgstr "" #: src/reader.cpp:2161 -#, fuzzy msgid "" "\n" " PID Command\n" msgstr "" -"\n" -" Komenda\n" #: src/reader.cpp:2170 msgid "A second attempt to exit will terminate them.\n" @@ -1913,34 +1905,34 @@ msgid "%ls: Unknown option '%ls'\n" msgstr "%ls: Nieznana opcja '%ls'\n" #: src/builtin.h:54 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected %d args, got %d\n" -msgstr "%ls: oczekiwano %d argumentów, otrzymano %d\n" +msgstr "" #: src/builtin.h:55 -#, fuzzy, c-format +#, c-format msgid "%ls %ls: Expected %d args, got %d\n" -msgstr "%ls: %ls oczekiwał %d argumentów, otrzymał %d\n" +msgstr "" #: src/builtin.h:56 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected at least %d args, got only %d\n" -msgstr "%ls: oczekiwano %d argumentów, otrzymano %d\n" +msgstr "" #: src/builtin.h:57 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected at most %d args, got %d\n" -msgstr "%ls: oczekiwano %d argumentów, otrzymano %d\n" +msgstr "" #: src/builtin.h:60 -#, fuzzy, c-format +#, c-format msgid "%ls: Variable name '%ls' is not valid. See `help identifiers`.\n" -msgstr "%ls: maksymalna wartość '%ls' nie jest prawidłową liczbą\n" +msgstr "" #: src/builtin.h:63 -#, fuzzy, c-format +#, c-format msgid "%ls: mode name '%ls' is not valid. See `help identifiers`.\n" -msgstr "%ls: maksymalna wartość '%ls' nie jest prawidłową liczbą\n" +msgstr "" #: src/builtin.h:66 #, c-format @@ -1953,14 +1945,14 @@ msgid "%ls: Argument '%ls' is not a number\n" msgstr "%ls: Argument '%ls' nie jest liczbą \n" #: src/builtin.h:72 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected a subcommand to follow the command\n" -msgstr "%ls: Oczekiwano argumentu dla funkcji\n" +msgstr "" #: src/builtin.h:73 -#, fuzzy, c-format +#, c-format msgid "%ls: Subcommand '%ls' is not valid\n" -msgstr "%ls: '%ls' nie jest plikiem\n" +msgstr "" #: src/builtin.h:76 #, c-format @@ -2327,9 +2319,8 @@ msgid "Prints a description of a domain or service" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:12 -#, fuzzy msgid "Prints information about the service cache" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:13 msgid "Prints which services are disabled" @@ -2342,14 +2333,12 @@ msgid "" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:15 -#, fuzzy msgid "Prints port information about a process" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:16 -#, fuzzy msgid "Prints port information about the host" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:17 msgid "Resolves a port name from a process to an endpoint in launchd" @@ -2401,9 +2390,8 @@ msgid "Unloads the specified service name" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:29 -#, fuzzy msgid "Lists information about services" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:30 msgid "Starts the specified service" @@ -2609,23 +2597,20 @@ msgid "Update array UUID" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:46 -#, fuzzy msgid "Update array name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:47 -#, fuzzy msgid "Update array nodes" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:48 msgid "Update array homehost" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:49 -#, fuzzy msgid "Update array cluster name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:50 msgid "Mark the array as dirty, thus forcing resync" @@ -2660,9 +2645,8 @@ msgid "Reset preferred minor to current one" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:58 -#, fuzzy msgid "Abort currently running actions" -msgstr "Wypisz obecnie uruchomione zadania" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:59 msgid "Abort currently running actions, prevent their restart" @@ -2754,9 +2738,8 @@ msgid "ZFS filesystem snapshot" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:3 -#, fuzzy msgid "ZFS block storage device" -msgstr "Nie określono bloków" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:4 msgid "ZFS snapshot bookmark" @@ -2783,9 +2766,8 @@ msgid "Value received by 'zfs receive'" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:10 -#, fuzzy msgid "Value valid for the current mount" -msgstr "Zatrzymaj obecnie używaną funkcję" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:11 msgid "Read-only value" @@ -2819,9 +2801,8 @@ msgid "Identity type" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:17 -#, fuzzy msgid "Identity name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:18 msgid "Space usage" @@ -2964,9 +2945,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:51 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:14 -#, fuzzy msgid "Max number of snapshots" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:52 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:4 @@ -3022,9 +3002,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:62 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:25 -#, fuzzy msgid "Hide .zfs directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:63 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:26 @@ -3121,9 +3100,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:84 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:1 -#, fuzzy msgid "Unicode normalization" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:85 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:2 @@ -3143,14 +3121,12 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:89 #: /tmp/fish/explicit/share/completions/zfs.fish:90 -#, fuzzy msgid "Dataset name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:1 -#, fuzzy msgid "Pool full name" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:5 msgid "Mirror of at least two devices" @@ -3189,9 +3165,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:15 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:1 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:2 -#, fuzzy msgid "Available space" -msgstr "Zmienna" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:16 msgid "System boot partition size" @@ -3202,9 +3177,8 @@ msgid "Usage percentage of pool" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:18 -#, fuzzy msgid "Deduplication ratio" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:19 msgid "Amount of uninitialized space within the pool" @@ -3244,9 +3218,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:28 #: /tmp/fish/explicit/share/completions/zpool.fish:29 -#, fuzzy msgid "Alternate root directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:30 #: /tmp/fish/explicit/share/completions/zpool.fish:31 @@ -3268,9 +3241,8 @@ msgid "Default bootable dataset" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:37 -#, fuzzy msgid "Pool configuration cache" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:38 msgid "Comment about the pool" @@ -3305,14 +3277,12 @@ msgid "All properties" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:1 -#, fuzzy msgid "%s: Could not figure out what to do!\\n" -msgstr "%s: Nie można odnaleźć katalogu domowego\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:2 -#, fuzzy msgid "%s %s: Requires at least two arguments\\n" -msgstr "%s: Opcja wymaga argumentu -- %s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:3 #: /tmp/fish/explicit/share/functions/abbr.fish:5 @@ -3322,9 +3292,8 @@ msgid "%s %s: Abbreviation %s cannot have spaces in the word\\n" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:4 -#, fuzzy msgid "%s %s: Expected one argument\\n" -msgstr "%s %s: Oczekiwano argumentu\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:6 #: /tmp/fish/explicit/share/functions/abbr.fish:10 @@ -3332,9 +3301,8 @@ msgid "%s %s: No abbreviation named %s\\n" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:7 -#, fuzzy msgid "%s %s: Requires exactly two arguments\\n" -msgstr "%s %s: Opcja wymaga argumentu\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:11 msgid "%s %s: Abbreviation %s already exists, cannot rename %s\\n" @@ -3342,52 +3310,12 @@ msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:12 #: /tmp/fish/explicit/share/functions/abbr.fish:13 -#, fuzzy msgid "%s %s: Unexpected argument -- '%s'\\n" -msgstr "%s %s: Oczekiwano argumentu -- '%s'\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:1 -#, fuzzy -msgid "%s: invalid option -- %s\\n" -msgstr "%s: Nieprawidłowa opcja -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:2 -msgid "%s: %s cannot be specified along with %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:3 -#, fuzzy -msgid "%s: option requires an argument -- %s\\n" -msgstr "%s: Opcja wymaga argumentu -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:4 -#, fuzzy -msgid "%s: Unexpected argument -- %s\\n" -msgstr "%s: Oczekiwano argumentu -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:5 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:8 -msgid "%s: abbreviation cannot have spaces in the key\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:6 -msgid "%s: abbreviation must have a value\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:7 -#, fuzzy -msgid "%s: abbreviation '%s' already exists, cannot rename\\n" -msgstr "%s: Funkcja '%ls' już istnieje. Nie można utworzyć kopii\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:9 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:10 -msgid "%s: no such abbreviation '%s'\\n" msgstr "" #: /tmp/fish/explicit/share/functions/alias.fish:1 -#, fuzzy msgid "%s: Name cannot be empty\\n" -msgstr "%s: Nazwa zmiennej nie może być pustym ciągiem znaków\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/alias.fish:2 msgid "%s: Body cannot be empty\\n" @@ -3398,9 +3326,8 @@ msgid "Too many args for cd command" msgstr "" #: /tmp/fish/explicit/share/functions/cdh.fish:1 -#, fuzzy msgid "cdh: Expected zero or one arguments" -msgstr "cdh: Oczekiwano 0 lub 1 argument" +msgstr "" #: /tmp/fish/explicit/share/functions/cdh.fish:2 msgid "No previous directories to select. You have to cd at least once." @@ -3435,14 +3362,6 @@ msgstr "" msgid "or the file was empty" msgstr "" -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:2 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:3 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:4 -#: /tmp/fish/explicit/share/functions/__fish_complete_unrar.fish:1 -msgid "%s\\tArchived file\\n" -msgstr "" - #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:3 msgid "Achieved compression ratio" msgstr "" @@ -3578,9 +3497,8 @@ msgstr "" #: /tmp/fish/explicit/share/functions/fish_md5.fish:1 #: /tmp/fish/explicit/share/functions/fish_md5.fish:2 -#, fuzzy msgid "%s: Too many arguments %s\\n" -msgstr "%s: Zbyt dużo argumentów %s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_move_last.fish:1 msgid "Hit end of history…\\n" @@ -3627,19 +3545,16 @@ msgid "Cancelled function editing" msgstr "" #: /tmp/fish/explicit/share/functions/funcsave.fish:1 -#, fuzzy msgid "%s: Could not create configuration directory\\n" -msgstr "%s: Nie można odnaleźć katalogu domowego\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/funcsave.fish:2 -#, fuzzy msgid "%s: Unknown function '%s'\\n" -msgstr "%s: Nieznana funkcja '%s'" +msgstr "" #: /tmp/fish/explicit/share/functions/help.fish:1 -#, fuzzy msgid "%s: Could not find a web browser.\\n" -msgstr "%s: Nie można odnaleźć katalogu domowego\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/help.fish:3 msgid "help: Help is being displayed in your default browser.\\n" @@ -3650,14 +3565,12 @@ msgid "help: Help is being displayed in %s.\\n" msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:1 -#, fuzzy msgid "%ls: you cannot use any options with the %ls command\\n" -msgstr "%ls: nie możesz używać opcji z komendą %ls\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:2 -#, fuzzy msgid "%ls: %ls expected %d args, got %d\\n" -msgstr "%ls: %ls oczekiwał %d argumentów, otrzymał %d\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:3 msgid "You must specify at least one search term when deleting entries\\n" @@ -3677,9 +3590,8 @@ msgid "You did not say 'yes' so I will not clear your command history\\n" msgstr "" #: /tmp/fish/explicit/share/functions/isatty.fish:1 -#, fuzzy msgid "%s: Too many arguments" -msgstr "%ls: Zbyt dużo argumentów" +msgstr "" #: /tmp/fish/explicit/share/functions/nextd.fish:1 #: /tmp/fish/explicit/share/functions/prevd.fish:1 @@ -3703,9 +3615,8 @@ msgid "%s: These flags are not allowed by fish realpath: '%s'" msgstr "" #: /tmp/fish/explicit/share/functions/seq.fish:1 -#, fuzzy msgid "%s: Expected 1, 2 or 3 arguments, got %d\\n" -msgstr "%s: Oczekiwano 0 lub 1 argument, otrzymano %d\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/seq.fish:2 msgid "%s: '%s' is not a number\\n" @@ -3745,15 +3656,13 @@ msgid "file" msgstr "" #: /tmp/fish/explicit/share/functions/type.fish:7 -#, fuzzy msgid "%s: Could not find '%s'\\n" -msgstr "%s: Nie można odnaleźć katalogu domowego '%s'\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/umask.fish:1 #: /tmp/fish/explicit/share/functions/umask.fish:2 -#, fuzzy msgid "%s: Invalid mask '%s'\\n" -msgstr "%s: Nieprawidłowa ścieżka: '%s'\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/_validate_int.fish:1 msgid "%s: Value '%s' for flag '%s' is not an integer\\n" @@ -3768,9 +3677,8 @@ msgid "%s: Value '%s' for flag '%s' greater than max allowed of '%s'\\n" msgstr "" #: /tmp/fish/explicit/share/functions/vared.fish:1 -#, fuzzy msgid "%s: Unknown option %s\\n" -msgstr "%s: Nieznana opcja '%s'\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/vared.fish:2 msgid "" @@ -3937,9 +3845,8 @@ msgid "Output the part of line matching pattern" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:12 -#, fuzzy msgid "Print all lines" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:13 msgid "Specify pattern explicitly" @@ -4077,9 +3984,8 @@ msgid "Read the list of files to search from STDIN" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:46 -#, fuzzy msgid "Ignore directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:47 msgid "Don't ignore directory" @@ -4134,9 +4040,8 @@ msgid "Removes all filters associated with type" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:58 -#, fuzzy msgid "Ignores environment variables and ackrc files" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:59 msgid "Specifies location of ackrc file" @@ -4289,7 +4194,6 @@ msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:5 #: /tmp/fish/implicit/share/completions/entr.fish:3 #: /tmp/fish/implicit/share/completions/env.fish:5 -#: /tmp/fish/implicit/share/completions/eval.fish:1 #: /tmp/fish/implicit/share/completions/exec.fish:1 #: /tmp/fish/implicit/share/completions/exit.fish:1 #: /tmp/fish/implicit/share/completions/fg.fish:1 @@ -4459,9 +4363,8 @@ msgid "Port forwarding" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:20 -#, fuzzy msgid "Return bugreport information" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:21 msgid "Perform device backup" @@ -4621,9 +4524,8 @@ msgid "Package(s) to backup" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:60 -#, fuzzy msgid "List all forward socket connections" -msgstr "Wypisz lub usuń funkcje" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:61 msgid "Fails the forward if local is already forwarded" @@ -4682,9 +4584,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:8 -#, fuzzy msgid "Display brief instructions" -msgstr "Niedozwolona instrukcja" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:9 msgid "Use specified directory as the user's home directory" @@ -4827,9 +4728,8 @@ msgid "Remove runstate file at first" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:22 -#, fuzzy msgid "Set environment variable" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:23 msgid "The configuration file for init" @@ -4844,9 +4744,8 @@ msgid "The PID file to use" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:26 -#, fuzzy msgid "Run the task in background" -msgstr "Przenieś zadanie w tło" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:27 msgid "Use syslog for messages" @@ -4876,7 +4775,6 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:2 #: /tmp/fish/implicit/share/completions/mocha.fish:1 #: /tmp/fish/implicit/share/completions/modinfo.fish:11 -#: /tmp/fish/implicit/share/completions/netcat.fish:7 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:1 #: /tmp/fish/implicit/share/completions/poweroff.fish:1 #: /tmp/fish/implicit/share/completions/terraform.fish:2 @@ -4929,9 +4827,8 @@ msgid "print version of this program" msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:7 -#, fuzzy msgid "be quiet" -msgstr "Przymusowe wyjście" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:8 msgid "show also inactive controls" @@ -5336,9 +5233,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:80 #: /tmp/fish/implicit/share/completions/montage.fish:68 #: /tmp/fish/implicit/share/completions/stream.fish:27 -#, fuzzy msgid "Print detailed information about the image" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:42 #: /tmp/fish/implicit/share/completions/display.fish:49 @@ -5483,9 +5379,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:53 #: /tmp/fish/implicit/share/completions/montage.fish:101 #: /tmp/fish/implicit/share/completions/stream.fish:30 -#, fuzzy msgid "Print program options" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:60 #: /tmp/fish/implicit/share/completions/compare.fish:42 @@ -5849,9 +5744,8 @@ msgid "Runs the package's tests contained within the spec directory" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:76 -#, fuzzy msgid "Path to atom command" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:77 msgid "Delete the symlink in ~/.atom/packages for the package" @@ -6098,9 +5992,8 @@ msgid "Build source without install" msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:11 -#, fuzzy msgid "Clean source directories" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:12 msgid "Update source and rebuild" @@ -6268,9 +6161,8 @@ msgid "Auto-gen package cache" msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:24 -#, fuzzy msgid "Print all names" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:25 msgid "Dep and rdep recursive" @@ -6380,9 +6272,8 @@ msgid "Pattern is regexp" msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:12 -#, fuzzy msgid "Set arch" -msgstr "wyszukiwanie:" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:13 msgid "Set sources.list file" @@ -6426,9 +6317,8 @@ msgid "Target release" msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:2 -#, fuzzy msgid "Generate package from source" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:3 msgid "Generate source index file" @@ -6439,18 +6329,16 @@ msgid "Generate contents file" msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:5 -#, fuzzy msgid "Generate release file" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:6 msgid "Remove records" msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:7 -#, fuzzy msgid "Generate MD5 sums" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:8 msgid "Use a binary db" @@ -6593,9 +6481,8 @@ msgid "Do not upgrade packages" msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:33 -#, fuzzy msgid "Force yes" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:34 msgid "Print the URIs" @@ -7063,18 +6950,16 @@ msgid "Fetch source package from STDIN" msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:17 -#, fuzzy msgid "Process all packages" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:18 msgid "Use specific conffile" msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:19 -#, fuzzy msgid "Force deletion" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:20 msgid "Suppresses normal output" @@ -7109,9 +6994,8 @@ msgid "Show build dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:3 -#, fuzzy msgid "Generate a dotty graph" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:4 msgid "Show state of dependencies" @@ -7147,9 +7031,8 @@ msgid "Probe a CD" msgstr "" #: /tmp/fish/implicit/share/completions/apt-setup.fish:2 -#, fuzzy msgid "Run in non-interactive mode" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-source.fish:2 #: /tmp/fish/implicit/share/completions/apt-show-source.fish:3 @@ -7186,9 +7069,8 @@ msgid "Print only upgradeable packages" msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:5 -#, fuzzy msgid "Print all versions" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:6 msgid "Print package name/distro" @@ -7211,9 +7093,8 @@ msgid "Specify conffile" msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:2 -#, fuzzy msgid "Debian distribution" -msgstr "Niedozwolona instrukcja" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:3 msgid "Servers in the areas" @@ -7224,9 +7105,8 @@ msgid "Conf file" msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:5 -#, fuzzy msgid "Finish after number of servers" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:6 msgid "File to grab servers" @@ -7334,9 +7214,8 @@ msgid "Specify a dir" msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:17 -#, fuzzy msgid "Run on current dir" -msgstr "Uruchom komendę w obecnym procesie" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:18 msgid "Omit debian version" @@ -7425,9 +7304,8 @@ msgid "Specify the Conduit token" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:8 -#, fuzzy msgid "Force a version" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:9 msgid "Sets the timeout" @@ -7458,9 +7336,8 @@ msgid "Reads an arc configuration option" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:16 -#, fuzzy msgid "Show detailed information about options" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:17 msgid "Download a file to local disk" @@ -7554,9 +7431,8 @@ msgid "Delete the flag on an object" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:39 -#, fuzzy msgid "Set the note on a flag" -msgstr "Ustaw kolor terminala" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:40 msgid "Export the local changeset to a file" @@ -7743,9 +7619,8 @@ msgid "Alias for arc feature" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:85 -#, fuzzy msgid "Amend the working copy" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:87 msgid "Show the amended commit message" @@ -7760,9 +7635,8 @@ msgid "Shows the help" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:90 -#, fuzzy msgid "Print detailed information about each command" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:91 msgid "Share and grab text using the Paste application" @@ -7785,18 +7659,16 @@ msgid "Commit a revision which has been accepted by a reviewer" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:96 -#, fuzzy msgid "Commit a specific revision" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:97 msgid "Show the command which would be issued" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:98 -#, fuzzy msgid "Apply changes to the working copy" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:99 msgid "Do not run any sanity checks" @@ -7961,9 +7833,8 @@ msgid "Always disable coverage information" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:142 -#, fuzzy msgid "Backouts on a previous commit" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:143 msgid "Make a raw Conduit method call" @@ -8178,37 +8049,32 @@ msgid "Take addr from filename, default /etc/ethers" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:1 -#, fuzzy msgid "Omit false conditionals" -msgstr "blok warunkowy 'if'" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:2 -#, fuzzy msgid "Omit debugging directives" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:3 -#, fuzzy msgid "Include general information" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:4 msgid "Include high-level source" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:5 -#, fuzzy msgid "Include assembly" -msgstr "Katalog" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:6 msgid "Include macro expansions" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:7 -#, fuzzy msgid "Omit forms processing" -msgstr "Proces potomny" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:8 msgid "Include symbols" @@ -8231,14 +8097,12 @@ msgid "Produce assembler debugging messages" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:13 -#, fuzzy msgid "Remap debug information" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:14 -#, fuzzy msgid "Redefine symbols" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:15 msgid "Require executable stack for this object" @@ -8265,9 +8129,8 @@ msgid "Skip whitespace and comment preprocessing" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:21 -#, fuzzy msgid "Generate debugging information" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:22 msgid "Generate STABS debugging information" @@ -8286,19 +8149,16 @@ msgid "Generate per-function section names for DWARF line information" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:26 -#, fuzzy msgid "Set the hash table size close" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:27 -#, fuzzy msgid "Show help message and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:28 -#, fuzzy msgid "Show target specific options" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:29 msgid "Add DIR to search list for .include directives" @@ -8321,9 +8181,8 @@ msgid "Assemble in MRI compatibility mode" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:34 -#, fuzzy msgid "Write dependency information in given file" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:35 msgid "Do not pad the end of sections to alignment boundaries" @@ -8354,9 +8213,8 @@ msgid "Use same format as native assembler when possible" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:42 -#, fuzzy msgid "Print assembler version number and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:43 #: /tmp/fish/implicit/share/completions/gunzip.fish:8 @@ -8365,9 +8223,8 @@ msgid "Suppress warnings" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:44 -#, fuzzy msgid "Don't suppress warnings" -msgstr "Zmiana rozmiaru okna" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:45 msgid "Treat warnings as errors" @@ -8382,9 +8239,8 @@ msgid "Read option from given file" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:48 -#, fuzzy msgid "Print assembler version number" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:49 msgid "Don't optimize code alignment" @@ -8403,18 +8259,16 @@ msgid "Generate 64 bits code" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:53 -#, fuzzy msgid "Generate x32 code" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:54 msgid "Encode SSE instructions with VEX prefix" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:55 -#, fuzzy msgid "Check SSE instructions" -msgstr "Niedozwolona instrukcja" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:56 msgid "Check operand combinations for validity" @@ -8441,9 +8295,8 @@ msgid "Use specfied mnemonic" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:62 -#, fuzzy msgid "Use specfied syntax" -msgstr "Sygnał zdefiniowany przez użytkownika 1" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:63 msgid "Support pseudo index registers" @@ -8470,9 +8323,8 @@ msgid "Strip all lock prefixes" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:70 -#, fuzzy msgid "Generate relax relocations" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:71 msgid "Accept only AMD64 ISA" @@ -8495,9 +8347,8 @@ msgid "Show the full history of the target, with file diffs" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:3 -#, fuzzy msgid "Put the source files in current directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:4 msgid "Collect garbage" @@ -8600,9 +8451,8 @@ msgid "Keep the browser process in the foreground." msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:3 -#, fuzzy msgid "Print usage message." -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:4 msgid "Log all output to file." @@ -8835,9 +8685,8 @@ msgid "Show settings while running" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:14 -#, fuzzy msgid "Do not use powerpill" -msgstr "Nie mozna skonfigurować terminala" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:15 msgid "Show available languages" @@ -9131,9 +8980,8 @@ msgid "Restores a record kept with -B" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:69 -#, fuzzy msgid "Backup to directory" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:70 msgid "Save this many versions" @@ -9392,9 +9240,8 @@ msgid "Wrap encoded line after given number of caracters (default 76)" msgstr "" #: /tmp/fish/implicit/share/completions/bc.fish:1 -#, fuzzy msgid "Force interactive mode" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/bc.fish:2 msgid "Define math library" @@ -9453,9 +9300,8 @@ msgid "Change current bind mode to named mode" msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:9 -#, fuzzy msgid "Key name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:10 #: /tmp/fish/implicit/share/completions/commandline.fish:17 @@ -9707,9 +9553,8 @@ msgid "Open brew/formula's homepage" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:43 -#, fuzzy msgid "Display information about formula" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:44 msgid "Display info for all formulae" @@ -9726,9 +9571,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:47 #: /tmp/fish/implicit/share/completions/prt-get.fish:35 #: /tmp/fish/implicit/share/completions/prt-get.fish:94 -#, fuzzy msgid "Force install" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:48 msgid "If install fails, open shell in temp directory" @@ -10388,9 +10232,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gunzip.fish:5 #: /tmp/fish/implicit/share/completions/gzip.fish:5 #: /tmp/fish/implicit/share/completions/zcat.fish:3 -#, fuzzy msgid "Print license" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:1 msgid "Suppress message payload display" @@ -10453,9 +10296,8 @@ msgid "List all help topics" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:3 -#, fuzzy msgid "List all commands" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:4 msgid "Help about supported formats" @@ -10810,9 +10652,8 @@ msgid "Default port to use for HTTPS" msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:14 -#, fuzzy msgid "Process log file" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:15 msgid "Path to write pid file" @@ -10931,9 +10772,8 @@ msgid "Add feed" msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:11 -#, fuzzy msgid "Set configuration directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:12 #: /tmp/fish/implicit/share/completions/pine.fish:10 @@ -10949,16 +10789,14 @@ msgid "Set feed directory" msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:15 -#, fuzzy msgid "Set script directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:1 #: /tmp/fish/implicit/share/completions/light.fish:2 #: /tmp/fish/implicit/share/completions/rustc.fish:1 -#, fuzzy msgid "Print version info and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:2 msgid "List installed commands" @@ -11256,9 +11094,8 @@ msgid "Allows the user to manually select a driver for the device" msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:37 -#, fuzzy msgid "Set driver specific options" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:38 msgid "" @@ -11459,9 +11296,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/chgrp.fish:2 #: /tmp/fish/implicit/share/completions/chown.fish:2 -#, fuzzy msgid "Dereference symbolic links" -msgstr "Nawiązanie symboliczne" +msgstr "" #: /tmp/fish/implicit/share/completions/chgrp.fish:3 #: /tmp/fish/implicit/share/completions/chown.fish:3 @@ -11530,18 +11366,16 @@ msgid "Username" msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:1 -#, fuzzy msgid "Specify your login shell" -msgstr "To jest powłoka logowania" +msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:2 msgid "Display help and exit\t" msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:4 -#, fuzzy msgid "List available shells and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:2 msgid "Update your climate install" @@ -11597,9 +11431,8 @@ msgid "Find the biggest files recursively" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:17 -#, fuzzy msgid "Find the biggest directories" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:18 msgid "Find directory size" @@ -11614,14 +11447,12 @@ msgid "Extract any given archive" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:21 -#, fuzzy msgid "Report duplicate files in a directory" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:22 -#, fuzzy msgid "Count the number of occurences" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:23 msgid "Monitor file for changes" @@ -11660,9 +11491,8 @@ msgid "List open ports" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:32 -#, fuzzy msgid "Edit the hosts file" -msgstr "Opuść powłokę" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:33 msgid "http-server serving the current directory" @@ -11737,9 +11567,8 @@ msgid "Find the trash size" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:51 -#, fuzzy msgid "Empty the trash" -msgstr "Opuść powłokę" +msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:1 msgid "Combine sets of lines from two files using boolean operations" @@ -11774,9 +11603,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/setsid.fish:1 #: /tmp/fish/implicit/share/completions/ssh.fish:1 #: /tmp/fish/implicit/share/completions/sudo.fish:20 -#, fuzzy msgid "Command to run" -msgstr "Komenda" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:2 msgid "Add text to the end of the selected area" @@ -11970,9 +11798,8 @@ msgid "Old style long option to complete" msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:6 -#, fuzzy msgid "Do not use file completion" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:7 msgid "Require parameter" @@ -12017,9 +11844,8 @@ msgid "User script" msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:2 -#, fuzzy msgid "Short information about Composer" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:3 msgid "Create an archive of this composer package" @@ -12378,9 +12204,8 @@ msgid "Do not create output files" msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:7 -#, fuzzy msgid "Set source directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:8 msgid "Architecture-independent install directory" @@ -12744,83 +12569,6 @@ msgstr "" msgid "Enhance or reduce the image contrast" msgstr "" -#: /tmp/fish/implicit/share/completions/cower.fish:1 -msgid "Show output in a more script friendly format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:2 -msgid "Download [twice to fetch dependencies]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:3 -msgid "Show info for target [twice for more details]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:4 -msgid "Search for packages by maintainer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:5 -msgid "Search for packages by name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:6 -msgid "Check AUR packages for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:7 -msgid "Use colored output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:8 -msgid "Show debug output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:9 -msgid "Overwrite existing files when downloading" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:10 -#, fuzzy -msgid "Print formatted" -msgstr "Zwraca sformatowany tekst" - -#: /tmp/fish/implicit/share/completions/cower.fish:11 -msgid "Display help and quit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:12 -msgid "Ignore a package upgrade" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:13 -msgid "Ignore a binary repo when checking for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:14 -msgid "Specify a delimiter for list formatters" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:15 -msgid "Output less" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:16 -msgid "Download targets to DIR" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:17 -msgid "Limit the number of threads created [10]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:18 -msgid "Curl timeout in seconds" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:19 -msgid "Output more" -msgstr "" - #: /tmp/fish/implicit/share/completions/cowsay.fish:1 #: /tmp/fish/implicit/share/completions/cowthink.fish:1 msgid "Specify eye string" @@ -13072,9 +12820,8 @@ msgid "Kerberos server mode" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:33 -#, fuzzy msgid "Print out history information for files" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:34 msgid "Prompt for password for authenticating server" @@ -13125,18 +12872,16 @@ msgid "Server mode" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:46 -#, fuzzy msgid "Display status information on checked out files" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:47 msgid "Add a symbolic tag to checked out version of files" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:48 -#, fuzzy msgid "Undo an edit command" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:49 msgid "Bring work tree in sync with repository" @@ -13147,9 +12892,8 @@ msgid "Show current CVS version(s)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:51 -#, fuzzy msgid "Set watches" -msgstr "(brak pasujących wyników)" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:52 msgid "See who is watching a file" @@ -13184,9 +12928,8 @@ msgid "[users] Remove (comma-separated) user names from access list" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:60 -#, fuzzy msgid "Run interactively." -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:61 msgid "Set keyword substitution mode:" @@ -13612,9 +13355,8 @@ msgid "Last modified (committed or modified report)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:165 -#, fuzzy msgid "Working directory must match" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:166 msgid "Since date (Many formats)" @@ -13806,9 +13548,8 @@ msgid "Revision - symbolic or numeric." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:221 -#, fuzzy msgid "Delete the given directory." -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:222 msgid "Delete the file before removing it." @@ -13909,9 +13650,8 @@ msgid "Download missing sources" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:7 -#, fuzzy msgid "Prepare source directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:8 msgid "Build software" @@ -13974,9 +13714,8 @@ msgid "Send announcement email" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:23 -#, fuzzy msgid "Delete working directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:24 msgid "Same as prep build inst pkg" @@ -14352,9 +14091,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:978 #: /tmp/fish/implicit/share/completions/darcs.fish:996 #: /tmp/fish/implicit/share/completions/darcs.fish:1016 -#, fuzzy msgid "Suppress informational output" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:429 #: /tmp/fish/implicit/share/completions/darcs.fish:473 @@ -14616,9 +14354,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:707 #: /tmp/fish/implicit/share/completions/darcs.fish:760 #: /tmp/fish/implicit/share/completions/darcs.fish:803 -#, fuzzy msgid "Generate XML formatted output" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:455 #: /tmp/fish/implicit/share/completions/darcs.fish:493 @@ -14648,9 +14385,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:633 #: /tmp/fish/implicit/share/completions/darcs.fish:709 #: /tmp/fish/implicit/share/completions/darcs.fish:762 -#, fuzzy msgid "Don't summarize changes" -msgstr "Zmiana rozmiaru okna" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:460 msgid "Show changes in reverse order" @@ -15121,9 +14857,8 @@ msgid "Reorder the patches in the repository" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:938 -#, fuzzy msgid "Specify a sibling directory" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:939 msgid "Relink random internal data to a sibling" @@ -15142,9 +14877,8 @@ msgid "Optimize hashed pristine layout" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:953 -#, fuzzy msgid "Uncompress patches" -msgstr "(brak pasujących wyników)" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:1 msgid "Read the value of a key" @@ -15313,14 +15047,12 @@ msgid "Use last acquired lease if cannot obtain one even if expired" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:7 -#, fuzzy msgid "Push given value the environment" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:8 -#, fuzzy msgid "Reapply configuration for each interface" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:9 msgid "Request DHCP server to update DNS using FQDN instead of hostname" @@ -15387,9 +15119,8 @@ msgid "Request given address in DHCP INFORM message" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:25 -#, fuzzy msgid "Perform DHCPv6 Information Request" -msgstr "Żądanie informacji" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:26 msgid "Configure static DHCP value" @@ -15576,17 +15307,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:1 #: /tmp/fish/implicit/share/completions/lua.fish:5 #: /tmp/fish/implicit/share/completions/wicd-cli.fish:1 -#, fuzzy msgid "Print help and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:14 #: /tmp/fish/implicit/share/completions/feh.fish:55 #: /tmp/fish/implicit/share/completions/fuser.fish:12 #: /tmp/fish/implicit/share/completions/tree.fish:43 -#, fuzzy msgid "Print version and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:15 msgid "TCP mode" @@ -15751,9 +15480,8 @@ msgid "Get detailed information about a specific whole disk or partition" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:5 -#, fuzzy msgid "Process all disks" -msgstr "Lista argumentów procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:6 msgid "Continuously display system-wide disk manipulation activity" @@ -16246,9 +15974,8 @@ msgid "Use 1kB block size" msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:10 -#, fuzzy msgid "Count hard links multiple times" -msgstr "Wykonaj komendę wielokrotnie" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:11 msgid "Dereference all symlinks" @@ -16612,9 +16339,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:1 #: /tmp/fish/implicit/share/completions/iex.fish:1 -#, fuzzy msgid "Prints version and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:2 #: /tmp/fish/implicit/share/completions/iex.fish:2 @@ -16690,9 +16416,8 @@ msgid "do not do interactive display; implies -q" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:2 -#, fuzzy msgid "change to directory DIR" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:3 msgid "start a server in the background" @@ -16786,9 +16511,8 @@ msgid "override color mode for character terminals" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:28 -#, fuzzy msgid "window background color" -msgstr "Przenieś zadanie w tło" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:29 msgid "disable many display features; used for debugging Emacs" @@ -16933,9 +16657,8 @@ msgid "WARNING: Delete all packages that are neither deps nor in world" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:12 -#, fuzzy msgid "Process all meta-cache files" -msgstr "Lista argumentów procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:13 msgid "WARNING: Remove all but the latest version of package" @@ -17090,9 +16813,8 @@ msgid "Unmount when idle for specified MINUTES" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:2 -#, fuzzy msgid "Run in the foreground" -msgstr "Nie można przywrócić powłoki na pierwszy plan" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:3 msgid "Verbose messages when run foreground" @@ -17107,9 +16829,8 @@ msgid "Enables debugging within the FUSE library" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:6 -#, fuzzy msgid "Return data even from corrupted files" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:7 msgid "Make files public to all other users" @@ -17162,16 +16883,14 @@ msgid "Output version information" msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:1 -#, fuzzy msgid "Redefine variable" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:2 #: /tmp/fish/implicit/share/completions/nice.fish:1 #: /tmp/fish/implicit/share/completions/time.fish:1 -#, fuzzy msgid "Command" -msgstr "Komenda" +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:3 msgid "Start with an empty environment" @@ -17331,18 +17050,16 @@ msgid "show help" msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:5 -#, fuzzy msgid "print the version" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:6 msgid "Writes config values to a JSON file." msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:7 -#, fuzzy msgid "Outputs useful debug information." -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:8 msgid "Downloads a solution given the ID of the latest iteration." @@ -17381,9 +17098,8 @@ msgid "Submits a new iteration to a problem on exercism.io." msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:16 -#, fuzzy msgid "Lists the available language tracks." -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:17 msgid "REMOVED" @@ -17450,14 +17166,12 @@ msgid "dump diffs between jail initialisation and freeze time into a flavour" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:12 -#, fuzzy msgid "create the basejail from binary packages" -msgstr "Stwórz blok kodu" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:13 -#, fuzzy msgid "list all jails" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:14 msgid "restart a running jail" @@ -17484,9 +17198,8 @@ msgid "check for reasons for the jails to fail" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:24 -#, fuzzy msgid "create or update the basejail from source" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:1 #: /tmp/fish/implicit/share/completions/pkgfile.fish:2 @@ -17494,9 +17207,8 @@ msgid "show this help message and exit" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:2 -#, fuzzy msgid "print detailed info about command NAME" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:3 msgid "formats --list, choices: short, normal, nested" @@ -17511,9 +17223,8 @@ msgid "Force sudo password prompt up-front" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:6 -#, fuzzy msgid "print list of possible commands and exit" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:7 msgid "comma separated KEY=VALUE pairs to set Fab env vars" @@ -17545,9 +17256,8 @@ msgid "specify location of config file to use" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:14 -#, fuzzy msgid "Color error output" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:15 msgid "do not load user known_hosts file" @@ -17826,9 +17536,8 @@ msgid "Disable Xinerama support" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:37 -#, fuzzy msgid "Save files to given directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:38 msgid "Preload images" @@ -17949,9 +17658,8 @@ msgid "Set font to print title on index" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:69 -#, fuzzy msgid "Center file on background" -msgstr "Przenieś zadanie w tło" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:70 msgid "Fit file into background by zooming until image fits" @@ -17980,9 +17688,8 @@ msgid "Select font" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:2 -#, fuzzy msgid "Change font directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:3 msgid "Center output horizontally" @@ -18001,9 +17708,8 @@ msgid "Set justification according to text direction" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:7 -#, fuzzy msgid "Set output to terminal width" -msgstr "Ustaw kolor terminala" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:8 msgid "Set output width" @@ -18054,9 +17760,8 @@ msgid "Print right-to-left" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:25 -#, fuzzy msgid "Print with default text direction" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:1 msgid "Do not prepend filenames to output lines" @@ -18216,14 +17921,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:24 #: /tmp/fish/implicit/share/completions/test.fish:31 -#, fuzzy msgid "File is executable" -msgstr "Wykonywalny" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:25 -#, fuzzy msgid "Always false" -msgstr "Zawsze" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:26 msgid "File is on filesystem of specified type" @@ -18310,9 +18013,8 @@ msgid "File uses specified units of space" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:47 -#, fuzzy msgid "Always true" -msgstr "Zawsze" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:48 msgid "File is of specified type" @@ -18347,9 +18049,8 @@ msgid "Delete selected files" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:55 -#, fuzzy msgid "Execute specified command for each located file" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:56 msgid "Execute specified command for each located file, in the files directory" @@ -18390,18 +18091,16 @@ msgid "Print null separated full file names" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:65 -#, fuzzy msgid "Print formated data" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:66 msgid "Do not recurse unless -depth is specified" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:67 -#, fuzzy msgid "Exit at once" -msgstr "Opuść powłokę" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:68 msgid "List file in ls -dils format" @@ -18428,9 +18127,8 @@ msgid "Only parse input, do not execute" msgstr "" #: /tmp/fish/implicit/share/completions/fish.fish:5 -#, fuzzy msgid "Run in interactive mode" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/fish.fish:6 msgid "Run in login mode" @@ -18916,9 +18614,8 @@ msgid "Check all repositories" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:14 -#, fuzzy msgid "List changes" -msgstr "Zmiana rozmiaru okna" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:15 #: /tmp/fish/implicit/share/completions/fossil.fish:16 @@ -19026,9 +18723,8 @@ msgid "Show all versions" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:47 -#, fuzzy msgid "Undo latest bad/good command." -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:48 #: /tmp/fish/implicit/share/completions/git.fish:88 @@ -19044,9 +18740,8 @@ msgid "Make branch local" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:51 -#, fuzzy msgid "Set background color" -msgstr "Ostatnie zadanie działające w tle" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:52 #: /tmp/fish/implicit/share/completions/fossil.fish:106 @@ -19084,9 +18779,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:177 #: /tmp/fish/implicit/share/completions/fossil.fish:180 #: /tmp/fish/implicit/share/completions/fossil.fish:267 -#, fuzzy msgid "Run command on repository" -msgstr "Uruchom komendę w obecnym procesie" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:61 msgid "Print a file" @@ -19547,18 +19241,16 @@ msgid "Display actions without runing" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:203 -#, fuzzy msgid "Manage settings" -msgstr "Zmień wartości ciągów znaków" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:204 msgid "Log accesses" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:205 -#, fuzzy msgid "Allow symbolic links" -msgstr "Nawiązanie symboliczne" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:206 msgid "Allow automatically filling CAPTCHA" @@ -19593,9 +19285,8 @@ msgid "Allow binary files to be diffed" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:217 -#, fuzzy msgid "External diff command" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:218 msgid "Disallow pushing to the repository" @@ -19732,9 +19423,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:252 #: /tmp/fish/implicit/share/completions/fossil.fish:253 -#, fuzzy msgid "Show information about files" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:254 msgid "Show stash contents" @@ -19814,9 +19504,8 @@ msgid "Find tag type" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:279 -#, fuzzy msgid "Limit number of tags" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:281 #: /tmp/fish/implicit/share/completions/git.fish:293 @@ -19884,9 +19573,8 @@ msgid "Use SCGI rather than HTTP" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:297 -#, fuzzy msgid "Undo the changes" -msgstr "Zmiana rozmiaru okna" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:299 msgid "Update version" @@ -19897,9 +19585,8 @@ msgid "Print debug information" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:304 -#, fuzzy msgid "Print information about all files" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:305 msgid "Print fossil version" @@ -19930,24 +19617,21 @@ msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:1 #: /tmp/fish/implicit/share/completions/funcsave.fish:1 -#, fuzzy msgid "Save function" -msgstr "Zdefiniuj nową funkcję" +msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:2 msgid "Open function in external editor" msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:3 -#, fuzzy msgid "Edit in interactive mode" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:1 #: /tmp/fish/implicit/share/completions/functions.fish:5 -#, fuzzy msgid "Set function description" -msgstr "'return' poza definicją funkcji" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:2 #: /tmp/fish/implicit/share/completions/functions.fish:2 @@ -19981,9 +19665,8 @@ msgid "Make the function a generic event handler" msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:9 -#, fuzzy msgid "Specify named arguments" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:10 msgid "Do not shadow variable scope of calling function" @@ -19994,9 +19677,8 @@ msgid "Inherit completions from the given command" msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:1 -#, fuzzy msgid "Erase function" -msgstr "Zdefiniuj nową funkcję" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:3 msgid "Show hidden functions" @@ -20015,14 +19697,12 @@ msgid "Copy the specified function to the specified new name" msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:9 -#, fuzzy msgid "Display information about the function" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:10 -#, fuzzy msgid "Print more output" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:1 msgid "Show all files specified on the command line" @@ -20093,9 +19773,8 @@ msgid "Lazy unmount" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1 -#, fuzzy msgid "Standard mode" -msgstr "Standardowe wejście" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:2 msgid "Place output in file" @@ -23136,9 +22815,8 @@ msgid "Do not use floating point double instructions" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:701 -#, fuzzy msgid "Use media instructions" -msgstr "Niedozwolona instrukcja" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:702 msgid "Do not use media instructions" @@ -23213,9 +22891,8 @@ msgid "Use all eight media accumulator registers" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:717 -#, fuzzy msgid "Pack VLIW instructions" -msgstr "Niedozwolona instrukcja" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:718 msgid "Do not pack VLIW instructions" @@ -23395,14 +23072,12 @@ msgid "Generate the predefine, \"_SIO\", for server IO" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:764 -#, fuzzy msgid "Use GNU ld specific options" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:765 -#, fuzzy msgid "Use HP ld specific options" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:766 msgid "Generate code that uses long call sequences" @@ -25605,18 +25280,16 @@ msgid "Use file file as a core dump to examine" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:7 -#, fuzzy msgid "Execute GDB commands from file file" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:8 msgid "Add directory to the path to search for source files" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:9 -#, fuzzy msgid "Do not execute commands from any .gdbinit files" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:11 #: /tmp/fish/implicit/share/completions/root.fish:1 @@ -25652,14 +25325,12 @@ msgid "Run GDB using a text (console) user interface" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:1 -#, fuzzy msgid "Print usage informations and quit" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:2 -#, fuzzy msgid "Print the version and quit" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:3 msgid "Use URL as the remote source for gems" @@ -26059,9 +25730,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:276 #: /tmp/fish/implicit/share/completions/mdadm.fish:12 #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:1 -#, fuzzy msgid "Be quiet" -msgstr "Przymusowe wyjście" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:24 #: /tmp/fish/implicit/share/completions/git.fish:41 @@ -26260,9 +25930,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:72 #: /tmp/fish/implicit/share/completions/git.fish:259 -#, fuzzy msgid "Interactive mode" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:73 msgid "Interactively choose hunks to stage" @@ -26320,9 +25989,8 @@ msgid "Track a new branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:90 -#, fuzzy msgid "Keep staged changes" -msgstr "Zmiana rozmiaru okna" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:91 msgid "Keep unmerged changes" @@ -26912,9 +26580,8 @@ msgid "Reset current HEAD to the specified state" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:266 -#, fuzzy msgid "Reset files in working directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:270 msgid "Reflog" @@ -27181,9 +26848,8 @@ msgid "Show commit summary" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:342 -#, fuzzy msgid "Run command on each submodule" -msgstr "Uruchom komendę w obecnym procesie" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:343 msgid "Sync submodules' URL with .gitmodules" @@ -27251,9 +26917,8 @@ msgid "Remove untracked files from the working tree" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:359 -#, fuzzy msgid "Force run" -msgstr "Przymusowe wyjście" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:360 msgid "Show what would be done and clean files interactively" @@ -27490,9 +27155,8 @@ msgid "print packages being built" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:7 -#, fuzzy msgid "print and preserve work directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:8 msgid "print the commands" @@ -27866,9 +27530,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:22 #: /tmp/fish/implicit/share/completions/signify.fish:2 -#, fuzzy msgid "Generate a new key pair" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:23 msgid "Present a menu which enables you to do all key related tasks" @@ -28168,9 +27831,8 @@ msgid "Use specified file instead of the default trustdb" msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:96 -#, fuzzy msgid "Set the home directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:97 msgid "Set the native character set" @@ -28770,9 +28432,8 @@ msgid "List files in folder" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:45 -#, fuzzy msgid "Create a directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:46 msgid "Remove a directory" @@ -28863,9 +28524,8 @@ msgid "Overwrite files without asking" msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:1 -#, fuzzy msgid "Print annotated source" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:2 msgid "Do not print explanations" @@ -29068,9 +28728,8 @@ msgid "Set project property for build script" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:22 -#, fuzzy msgid "Specify start directory" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:23 msgid "Build project in parallel" @@ -29201,9 +28860,8 @@ msgid "Pattern is basic regex" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:19 -#, fuzzy msgid "Print filename" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:20 msgid "Suppress printing filename" @@ -29451,18 +29109,16 @@ msgid "Check if given file is BIOS bootsector" msgstr "" #: /tmp/fish/implicit/share/completions/grub-file.fish:32 -#, fuzzy msgid "Display usage and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:1 msgid "Compress GRUB files" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:2 -#, fuzzy msgid "Use image and modules under given directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:3 msgid "Install given fonts" @@ -29477,9 +29133,8 @@ msgid "Embed given file as public key for signature checking" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:6 -#, fuzzy msgid "Use translations under given directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:7 msgid "Install only given locales" @@ -29534,9 +29189,8 @@ msgid "Use given color for label" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:21 -#, fuzzy msgid "Use given file for label" -msgstr "Sygnał zdefiniowany przez użytkownika 2" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:22 msgid "Use given directory for PPC Mac install" @@ -29555,9 +29209,8 @@ msgid "Don't apply any reed-solomon codes when embedding core.img" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:26 -#, fuzzy msgid "Set product version" -msgstr "'return' poza definicją funkcji" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:27 msgid "Delete device map if it already exists" @@ -29580,9 +29233,8 @@ msgid "Print the grunt version. Combine with --verbose for more info" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:1 -#, fuzzy msgid "Print the version information" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:2 msgid "Specify a custom schemas directory" @@ -30149,9 +29801,8 @@ msgid "Autosuggestions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:2 -#, fuzzy msgid "Builtin commands" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:3 msgid "Cartesian Products" @@ -30178,33 +29829,28 @@ msgid "Writing your own completions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:9 -#, fuzzy msgid "Where to put completions" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:10 msgid "Debugging fish scripts" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:12 -#, fuzzy msgid "Command line editor" -msgstr "Komenda" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:13 -#, fuzzy msgid "Emacs mode commands" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:14 -#, fuzzy msgid "Escaping characters" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:15 -#, fuzzy msgid "Event handlers" -msgstr "blok obsługi zdarzenia" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:16 #: /tmp/fish/implicit/share/completions/help.fish:25 @@ -30216,14 +29862,12 @@ msgid "Brace expansion {a,b,c}" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:18 -#, fuzzy msgid "Command substitution" -msgstr "w zastępstwie polecenia" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:19 -#, fuzzy msgid "Command substitution (SUBCOMMAND)" -msgstr "w zastępstwie polecenia" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:20 msgid "Home directory expansion ~USER" @@ -30262,9 +29906,8 @@ msgid "Initialization files" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:31 -#, fuzzy msgid "Introduction" -msgstr "Niedozwolona instrukcja" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:32 msgid "Common issues with fish" @@ -30303,23 +29946,20 @@ msgid "Quotes" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:41 -#, fuzzy msgid "Input/Output (IO) redirection" -msgstr "Katalog" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:42 -#, fuzzy msgid "Shared bindings" -msgstr "Steruj przypisaniami klawiszy fish'a" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:43 msgid "Introduction to the fish syntax" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:44 -#, fuzzy msgid "Background jobs" -msgstr "Ostatnie zadanie działające w tle" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:45 msgid "Conditional execution of code and flow control" @@ -30331,32 +29971,28 @@ msgid "Functions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:47 -#, fuzzy msgid "Autoloading functions" -msgstr "Zdefiniuj nową funkcję" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:48 msgid "Defining aliases" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:49 -#, fuzzy msgid "Job control" -msgstr "Kontrola zadania" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:50 -#, fuzzy msgid "Some common words" -msgstr "Stan Komenda" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:51 msgid "Programmable title" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:52 -#, fuzzy msgid "Shell variables" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:53 msgid "Arrays" @@ -30367,54 +30003,44 @@ msgid "Variables for changing highlighting colors" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:55 -#, fuzzy msgid "Exporting variables" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:56 -#, fuzzy msgid "Variable scope for functions" -msgstr "Zdefiniuj nową funkcję" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:57 -#, fuzzy msgid "Locale variables" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:58 -#, fuzzy msgid "Variable scope" -msgstr "Zmienna" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:59 -#, fuzzy msgid "Special variables" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:60 -#, fuzzy msgid "The status variable" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:61 -#, fuzzy msgid "More on universal variables" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:62 -#, fuzzy msgid "Vi mode commands" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:63 -#, fuzzy msgid "Command mode" -msgstr "Komenda" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:64 -#, fuzzy msgid "Insert mode" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:65 msgid "Visual mode" @@ -30433,18 +30059,16 @@ msgid "Combiners (And, Or, Not)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:70 -#, fuzzy msgid "Command Substitutions" -msgstr "w zastępstwie polecenia" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:71 msgid "Conditionals (If, Else, Switch)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:72 -#, fuzzy msgid "Exit Status" -msgstr "Opuść powłokę" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:73 msgid "Exports (Shell Variables)" @@ -30471,18 +30095,16 @@ msgid "Ready for more?" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:81 -#, fuzzy msgid "Pipes and Redirections" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:82 msgid "Prompt" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:83 -#, fuzzy msgid "Running Commands" -msgstr "Uruchom komendę w obecnym procesie" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:84 msgid "Separating Commands (Semicolon)" @@ -30501,14 +30123,12 @@ msgid "Tab Completions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:88 -#, fuzzy msgid "Universal Variables" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:89 -#, fuzzy msgid "Variables" -msgstr "Zmienna" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:90 msgid "Why fish?" @@ -30794,9 +30414,8 @@ msgid "downloads database backup" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:73 -#, fuzzy msgid "get information about a specific backup" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:74 msgid "restore a backup (default latest) to a database" @@ -30885,9 +30504,8 @@ msgid "repository root directory or name of overlay bundle file" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:2 -#, fuzzy msgid "change working directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:3 msgid "do not prompt, automatically pick the first choice for all prompts" @@ -31388,9 +31006,8 @@ msgid "mark a branch as closed, hiding it from the branch list" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:108 -#, fuzzy msgid "amend the parent of the working directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:109 #: /tmp/fish/implicit/share/completions/hg.fish:423 @@ -31615,14 +31232,12 @@ msgid "directory strip option for patch" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:205 -#, fuzzy msgid "don't commit, just update the working directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:206 -#, fuzzy msgid "apply patch without touching the working directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:207 msgid "apply patch to the nodes from which it was generated" @@ -31717,9 +31332,8 @@ msgid "include revisions where files were removed" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:250 -#, fuzzy msgid "revisions committed by user" -msgstr "Historia komend wykonanych przez użytkownika" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:251 msgid "show changesets within the given named branch" @@ -31822,9 +31436,8 @@ msgid "print first line of patch header" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:321 -#, fuzzy msgid "do not update the new working directories" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:323 msgid "location of source patch repository" @@ -31878,9 +31491,8 @@ msgid "drop all guards" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:350 -#, fuzzy msgid "import file in patch directory" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:351 msgid "name of patch file" @@ -32026,9 +31638,8 @@ msgid "print patches not in series" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:422 -#, fuzzy msgid "amend the parent of the working dir" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:436 msgid "record delete for missing files" @@ -32081,9 +31692,8 @@ msgid "name of access log file to write to" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:466 -#, fuzzy msgid "run server in background" -msgstr "Przenieś zadanie w tło" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:467 msgid "used internally by daemon mode" @@ -32119,9 +31729,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:475 #: /tmp/fish/implicit/share/completions/hg.fish:476 -#, fuzzy msgid "for remote clients" -msgstr "Wypisz lub usuń funkcje" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:477 msgid "web templates to use" @@ -32208,9 +31817,8 @@ msgid "check for push and pull" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:507 -#, fuzzy msgid "force tag" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:508 msgid "make the tag local" @@ -32259,9 +31867,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:5 #: /tmp/fish/implicit/share/completions/hugo.fish:57 #: /tmp/fish/implicit/share/completions/tex.fish:10 -#, fuzzy msgid "Output directory" -msgstr "Katalog" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:6 msgid "Set type of the source code" @@ -32304,14 +31911,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:2 #: /tmp/fish/implicit/share/completions/s3cmd.fish:127 -#, fuzzy msgid "Debug output" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:3 -#, fuzzy msgid "Enable logging" -msgstr "Link wykonywalny" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:4 msgid "Log file" @@ -32337,18 +31942,16 @@ msgid "Include content marked as draft" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:10 -#, fuzzy msgid "Include expired content" -msgstr "Katalog" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:11 msgid "Include content with publishdate in the future" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:12 -#, fuzzy msgid "Cache directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:13 msgid "Canonicalize all relative URLs using baseurl" @@ -32359,14 +31962,12 @@ msgid "Remove files from destination not found in static directories" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:15 -#, fuzzy msgid "Content directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:16 -#, fuzzy msgid "Destination directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:17 msgid "Do not build 404 page" @@ -32401,14 +32002,12 @@ msgid "Print missing translations" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:25 -#, fuzzy msgid "Ignore the cache directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:26 -#, fuzzy msgid "Layout directory" -msgstr "Katalog" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:27 msgid "Do not sync permission mode of files" @@ -32435,9 +32034,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:58 #: /tmp/fish/implicit/share/completions/hugo.fish:92 #: /tmp/fish/implicit/share/completions/hugo.fish:103 -#, fuzzy msgid "Source directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:33 #: /tmp/fish/implicit/share/completions/hugo.fish:46 @@ -32446,9 +32044,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:34 #: /tmp/fish/implicit/share/completions/hugo.fish:47 -#, fuzzy msgid "Display metrics about template executions" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:35 #: /tmp/fish/implicit/share/completions/hugo.fish:48 @@ -32460,9 +32057,8 @@ msgid "Theme to use" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:37 -#, fuzzy msgid "Themes directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:38 msgid "Use /filename.html instead of /filename/" @@ -32509,9 +32105,8 @@ msgid "Help for ulimit" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:53 -#, fuzzy msgid "Print the site configuration" -msgstr "Wypisz obecnie uruchomione zadania" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:54 msgid "Help for config" @@ -32554,9 +32149,8 @@ msgid "Help for toYAML" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:66 -#, fuzzy msgid "Print Hugo version and environment info" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:67 msgid "Help for env" @@ -32611,23 +32205,20 @@ msgid "Generate Markdown documentation for the Hugo CLI" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:80 -#, fuzzy msgid "Doc directory" -msgstr "Katalog" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:81 msgid "Help for doc" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:82 -#, fuzzy msgid "Generate man pages for the Hugo CLI" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:83 -#, fuzzy msgid "Man pages directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:84 msgid "Help for man" @@ -32646,9 +32237,8 @@ msgid "Import from Jekyll" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:88 -#, fuzzy msgid "Allow import into non-empty target directory" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:89 msgid "Help for jekyll" @@ -32659,23 +32249,20 @@ msgid "List various types of content" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:91 -#, fuzzy msgid "Help for list" -msgstr "Katalog domowy dla %ls" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:93 -#, fuzzy msgid "List all drafts" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:94 msgid "Help for drafts" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:95 -#, fuzzy msgid "List all expired posts" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:96 msgid "Help for expired" @@ -32690,9 +32277,8 @@ msgid "Help for future" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:99 -#, fuzzy msgid "Create new content" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:100 msgid "Editor to use" @@ -32707,28 +32293,24 @@ msgid "Content type to create" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:104 -#, fuzzy msgid "Create a new site" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:105 -#, fuzzy msgid "Create site inside non-empty directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:106 msgid "Config and front matter format" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:107 -#, fuzzy msgid "Help for site" -msgstr "Katalog domowy dla %ls" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:108 -#, fuzzy msgid "Create a new theme" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:109 msgid "Help for theme" @@ -32783,9 +32365,8 @@ msgid "Port on which the server will listen" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:122 -#, fuzzy msgid "Render to destination directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:123 msgid "Reset the content draft status" @@ -32796,14 +32377,12 @@ msgid "Help for undraft" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:125 -#, fuzzy msgid "Print the version number of Hugo" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:126 -#, fuzzy msgid "Help for version" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:1 msgid "Only send ipc message and suppress output" @@ -32814,9 +32393,8 @@ msgid "Display version number and exit" msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:4 -#, fuzzy msgid "Set socket" -msgstr "Gniazdo" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:5 msgid "Specify ipc message type" @@ -32929,32 +32507,28 @@ msgid "Print out the address" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:5 -#, fuzzy msgid "Print netmask" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:6 -#, fuzzy msgid "Print network address" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:7 msgid "Print broadcast" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:8 -#, fuzzy msgid "Print mtu" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:9 msgid "Print out the hardware address" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:10 -#, fuzzy msgid "Print flags" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:11 msgid "Print all statistics on input" @@ -32973,9 +32547,8 @@ msgid "Print # of in errors" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:15 -#, fuzzy msgid "Print # of in drops" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:16 msgid "Print # of in fifo overruns" @@ -33184,9 +32757,8 @@ msgid "Use specified network namespace" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:17 -#, fuzzy msgid "Execute command for all objects" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:1 msgid "Create a set identified with SETNAME" @@ -33206,9 +32778,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:5 #: /tmp/fish/implicit/share/completions/ipset.fish:6 -#, fuzzy msgid "Destroy the specified set or all sets" -msgstr "Szukaj określonego ciągu znaków w liście" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:7 msgid "a" @@ -33438,9 +33009,8 @@ msgid "Print debugging info about your jest config" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:22 -#, fuzzy msgid "The test environment used for all tests" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:23 msgid "Use this flag to show full diffs instead of a patch" @@ -33483,9 +33053,8 @@ msgid "Maps code coverage reports against original source code" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:33 -#, fuzzy msgid "Specifies the maximum number of workers" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:34 msgid "Directory names to be searched recursively up from the requiring module" @@ -33558,9 +33127,8 @@ msgid "Paths to directories that Jest should use to search for files in" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:51 -#, fuzzy msgid "Run all tests serially in the current process" -msgstr "Uruchom komendę w obecnym procesie" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:52 msgid "The paths to modules to configure the testing environment" @@ -33571,9 +33139,8 @@ msgid "The path to a module to configure the testing framework" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:54 -#, fuzzy msgid "Print your jest config and then exits" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:55 msgid "Prevent tests from printing messages through the console" @@ -33653,9 +33220,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:73 #: /tmp/fish/implicit/share/completions/snap.fish:15 #: /tmp/fish/implicit/share/completions/vagrant.fish:3 -#, fuzzy msgid "Print the version and exit" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:74 msgid "Watch files for changes and rerun tests related to changed files" @@ -33678,14 +33244,12 @@ msgid "Enable debugger" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:2 -#, fuzzy msgid "Output usage information" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:3 -#, fuzzy msgid "Output version number" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:4 msgid "Create a new JHipster application" @@ -33732,9 +33296,8 @@ msgid "Create entities from the JDL file passed in argument" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:14 -#, fuzzy msgid "Display information about your current project and system" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:15 msgid "Deploy the current application to Kubernetes" @@ -33759,18 +33322,16 @@ msgid "Create a new JHipster server-side application" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:20 -#, fuzzy msgid "Create a new Spring service bean" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:21 msgid "Upgrade the JHipster version and the generated application" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:22 -#, fuzzy msgid "Print command completion script" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/jobs.fish:2 msgid "Show the process id of each process in the job" @@ -33797,9 +33358,8 @@ msgid "OR" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:4 -#, fuzzy msgid "Prints a short help text and exits" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:5 msgid "Prints a short version string and exits" @@ -33814,9 +33374,8 @@ msgid "Show live tail of entries" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:9 -#, fuzzy msgid "Controls the number of journal lines" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:10 msgid "Show all lines, even in follow mode" @@ -33863,9 +33422,8 @@ msgid "Print all possible data values" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:21 -#, fuzzy msgid "Specify journal directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:22 msgid "Generate a new 128 bit ID" @@ -34028,9 +33586,8 @@ msgid "Show help information and exit" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:1 -#, fuzzy msgid "List all devices" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:2 msgid "List available (paired and reachable) devices" @@ -34087,47 +33644,40 @@ msgid "Phone number to send the message" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:15 -#, fuzzy msgid "Device ID" -msgstr "Zdefiniuj nową funkcję" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:16 -#, fuzzy msgid "Device Name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:17 -#, fuzzy msgid "Get encryption info about said device" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:18 msgid "Lists remote commands and their ids" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:19 -#, fuzzy msgid "Executes a remote command by id" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:20 msgid "Displays this help." msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:21 -#, fuzzy msgid "Displays version information." -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:22 -#, fuzzy msgid "Show author information." -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:23 -#, fuzzy msgid "Show license information." -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:24 msgid "The base file name of the desktop entry for this application." @@ -34209,9 +33759,8 @@ msgid "Describe available commands or one specific command" msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:4 -#, fuzzy msgid "Lists one or more instances" -msgstr "Wypisz lub usuń funkcje" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:5 msgid "List the name of each instance only, one per line" @@ -34667,9 +34216,8 @@ msgid "Display status column" msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:19 -#, fuzzy msgid "Specify key bindings file" -msgstr "Steruj przypisaniami klawiszy fish'a" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:21 msgid "Prompt with percentage" @@ -34914,9 +34462,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:4 #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:37 #: /tmp/fish/implicit/share/completions/timedatectl.fish:7 -#, fuzzy msgid "Print a short help text and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:5 #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:38 @@ -34958,9 +34505,8 @@ msgid "Ignore case distinctions" msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:10 -#, fuzzy msgid "Limit the number of matches" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:11 msgid "Use ASCII NUL as a separator" @@ -35304,9 +34850,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:6 -#, fuzzy msgid "Shows the current default destination" -msgstr "Zatrzymaj obecnie używaną funkcję" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:7 msgid "Shows a long listing of printers, classes, or jobs" @@ -35365,9 +34910,8 @@ msgid "output info about filesystems" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:7 -#, fuzzy msgid "usage information (this)" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:8 msgid "use ascii characters only" @@ -35514,9 +35058,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:22 #: /tmp/fish/implicit/share/completions/ls.fish:77 -#, fuzzy msgid "Print inode number of files" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:23 #: /tmp/fish/implicit/share/completions/ls.fish:78 @@ -35554,9 +35097,8 @@ msgid "Display only security context and file name" msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:33 -#, fuzzy msgid "Print author" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:34 #: /tmp/fish/implicit/share/completions/xz.fish:19 @@ -35573,9 +35115,8 @@ msgid "Use colors" msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:37 -#, fuzzy msgid "Generate dired output" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:38 msgid "List format" @@ -35595,9 +35136,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:44 #: /tmp/fish/implicit/share/completions/ls.fish:67 -#, fuzzy msgid "Print raw entry names" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:45 msgid "Long format without groups" @@ -35755,9 +35295,8 @@ msgid "Show usage and help" msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:1 -#, fuzzy msgid "Execute string" -msgstr "Link wykonywalny" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:2 msgid "Require library" @@ -35849,9 +35388,8 @@ msgid "Print help." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:9 -#, fuzzy msgid "Manipulate container images." -msgstr "Zmień wartości ciągów znaków" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:10 msgid "List information on LXD servers and containers." @@ -36023,9 +35561,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:3 #: /tmp/fish/implicit/share/completions/systemctl.fish:39 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:3 -#, fuzzy msgid "Print a short help and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:4 #: /tmp/fish/implicit/share/completions/pactl.fish:9 @@ -36056,9 +35593,8 @@ msgid "Also show machines starting with a '.'" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:11 -#, fuzzy msgid "Show information about machine" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:12 msgid "Do not ellipsize process tree entries" @@ -36129,9 +35665,8 @@ msgid "Bind-mount a directory to a machine" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:29 -#, fuzzy msgid "Create destination directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:30 msgid "Apply read-only mount" @@ -36341,9 +35876,8 @@ msgid "Define" msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:2 -#, fuzzy msgid "Include directory" -msgstr "Katalog" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:3 msgid "Replace include directories" @@ -36392,9 +35926,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:3 #: /tmp/fish/implicit/share/completions/tar.fish:15 #: /tmp/fish/implicit/share/functions/cd.fish:1 -#, fuzzy msgid "Change directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:5 msgid "Environment before makefile" @@ -36425,9 +35958,8 @@ msgid "Ignore specified file" msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:13 -#, fuzzy msgid "Print database" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:14 msgid "Question mode" @@ -36446,9 +35978,8 @@ msgid "Touch files, don't run commands" msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:20 -#, fuzzy msgid "Print working directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:21 msgid "Pretend file is modified" @@ -36519,9 +36050,8 @@ msgid "Disable color in output messages" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:17 -#, fuzzy msgid "Only download and extract files" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:18 msgid "Use alternative " @@ -36620,9 +36150,8 @@ msgid "Library section" msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:4 -#, fuzzy msgid "Device section" -msgstr "Zdefiniuj nową funkcję" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:5 msgid "File format section" @@ -36709,9 +36238,8 @@ msgid "Set system" msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:28 -#, fuzzy msgid "Preprocessors" -msgstr "Proces" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:29 msgid "Format for printing" @@ -36779,9 +36307,8 @@ msgid "Save the ftpfs dialog with the server in FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:15 -#, fuzzy msgid "Print the last working directory to FILE" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:16 msgid "Set alternative mode drawing of frameworks" @@ -36852,9 +36379,8 @@ msgid "Build a legacy array without superblocks" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:3 -#, fuzzy msgid "Create a new array" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:4 msgid "Select monitor mode" @@ -36883,19 +36409,16 @@ msgid "Be more verbose" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:13 -#, fuzzy msgid "Force operation" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:14 -#, fuzzy msgid "Specify config file or directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:15 -#, fuzzy msgid "Scan for missing information" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:16 msgid "Set metadata style to use" @@ -36914,14 +36437,12 @@ msgid "Give cluster name" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:20 -#, fuzzy msgid "Specify the number of active devices" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:21 -#, fuzzy msgid "Specify the number of spare devices" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:22 msgid "Specify the space to use from each drive" @@ -36936,18 +36457,16 @@ msgid "Specify the chunk size" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:25 -#, fuzzy msgid "Specify rounding factor" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:26 msgid "Specify RAID level" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:27 -#, fuzzy msgid "Specify data layout" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:28 msgid "Specify file for write-intent bitmap" @@ -36982,18 +36501,16 @@ msgid "Use this file as a backup" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:36 -#, fuzzy msgid "Specify start of array data" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:37 msgid "Resume frozen --grow command" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:38 -#, fuzzy msgid "Set array name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:39 msgid "Run array despite warnings" @@ -37008,14 +36525,12 @@ msgid "Add devices to array" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:42 -#, fuzzy msgid "Specify max nodes in the cluster" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:43 -#, fuzzy msgid "Specify journal device for RAID-4/5/6 array" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:44 msgid "UUID of array to assemble" @@ -37042,9 +36557,8 @@ msgid "Freeze --grow command" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:50 -#, fuzzy msgid "Test mode" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:51 msgid "Hot-add listed devices" @@ -37087,41 +36601,36 @@ msgid "Print details on array" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:61 -#, fuzzy msgid "Print details on platform capabilities" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:62 msgid "Format data output as key=value pairs" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:63 -#, fuzzy msgid "Print content of device metadata" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:64 msgid "Fix examination for buggy SPARC 2.2 kernel RAID" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:65 -#, fuzzy msgid "Print report about bitmap" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:66 msgid "List recorded bad blocks" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:67 -#, fuzzy msgid "Dump metadata to directory" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:68 -#, fuzzy msgid "Restore metadata from directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:69 msgid "Deactivate array" @@ -37241,9 +36750,8 @@ msgid "Test that code samples compile" msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:12 -#, fuzzy msgid "Watch file changes" -msgstr "Zmiana rozmiaru okna" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:2 msgid "Ignore unknown options" @@ -37274,9 +36782,8 @@ msgid "Evaluate indexing information for path" msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:9 -#, fuzzy msgid "Evaluate permissions information for path" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:10 msgid "Write the diagnostic to the specified path" @@ -37428,9 +36935,8 @@ msgid "When logging hits line file:N, emit a stack trace (default :0)" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:3 -#, fuzzy msgid "Write log files in this directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:4 msgid "Log to standard error instead of files" @@ -37445,9 +36951,8 @@ msgid "Logs at or above this threshold go to stderr (default 2)" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:7 -#, fuzzy msgid "Log level for logs" -msgstr "Katalog domowy dla" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:8 msgid "Comma-separated list of pattern=N settings for file-filtered logging" @@ -37521,18 +37026,16 @@ msgid "Display the kubernetes dashboard URL instead of opening it" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:31 -#, fuzzy msgid "Add machine IP to NO_PROXY environment variable" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:32 msgid "Force environment to be configured for a specified shell" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:33 -#, fuzzy msgid "Unset variables" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:35 msgid "List the URLs for the services in local cluster" @@ -37767,9 +37270,8 @@ msgid "Runs a project's tests" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:27 -#, fuzzy msgid "specify input directory" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:28 msgid "specify output file name" @@ -38095,9 +37597,8 @@ msgid "Extract timecodes of a track as timecode v2 file" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:9 -#, fuzzy msgid "Extract cue information as text file" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:10 msgid "Parse the whole file instead of relying on the index" @@ -38235,9 +37736,8 @@ msgid "watch files for changes" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:21 -#, fuzzy msgid "check for global variable leaks" -msgstr "obsługa zmiennej" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:22 msgid "display the full stack trace" @@ -38351,9 +37851,8 @@ msgid "Print program version and exit" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:2 -#, fuzzy msgid "Print usage and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:3 msgid "Turn on logging to a file" @@ -38933,9 +38432,8 @@ msgid "Enable strict Uniforum mode" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:10 -#, fuzzy msgid "Resource name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:11 msgid "Locale name, either language or language_COUNTRY" @@ -39107,9 +38605,8 @@ msgid "Backup suffix" msgstr "" #: /tmp/fish/implicit/share/completions/mv.fish:7 -#, fuzzy msgid "Target directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/mv.fish:8 msgid "Do not overwrite newer files" @@ -39555,9 +39052,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:92 -#, fuzzy msgid "Generate a changelog report." -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:93 msgid "Generate a file activity report." @@ -43268,90 +42764,6 @@ msgstr "" msgid "Exclude files that match any pattern in file" msgstr "" -#: /tmp/fish/implicit/share/completions/netcat.fish:1 -msgid "Remote hostname" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:2 -msgid "Same as -e, but use /bin/sh" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:3 -msgid "Program to execute after connection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:4 -msgid "Allow broadcasts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:5 -msgid "Source-routing hop points" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:6 -msgid "Source-routing pointer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:8 -msgid "Delay interval for lines sent, ports scaned" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:9 -msgid "Set keepalive option" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:10 -msgid "Listen mode, acts as a server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:11 -msgid "Numeric-only IP addresses, no DNS" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:12 -msgid "Hex dump of traffic" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:13 -msgid "Local port number" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:14 -msgid "Randomize local and remote ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:15 -msgid "Quit after EOF on stdin and delay of secs" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:16 -msgid "Local source address" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:17 -msgid "Answer Telnet negotiation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:18 -msgid "UDP Mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:19 -msgid "Verbose, use twice to be more verbose" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:20 -msgid "Timeout for connects and final net reads" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:21 -msgid "Set Type of Service" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:22 -msgid "No I/O - used for scanning" -msgstr "" - #: /tmp/fish/implicit/share/completions/netctl-auto.fish:3 msgid "List all available profiles for automatic selection" msgstr "" @@ -43458,9 +42870,8 @@ msgid "Add specified amount to niceness value" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:1 -#, fuzzy msgid "change to specified directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:2 msgid "specify build file [default=build.ninja]" @@ -43495,9 +42906,8 @@ msgid "adjust warnings, specify flags" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:11 -#, fuzzy msgid "print ninja version" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:1 msgid "use STYLE for numbering body lines" @@ -43702,9 +43112,8 @@ msgid "Throw errors on deprecations" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:8 -#, fuzzy msgid "Print v8 command line options" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:9 msgid "Set max v8 stack size (bytes)" @@ -44715,9 +44124,8 @@ msgid "Check for outdated packages" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:52 -#, fuzzy msgid "Create a tarball from a package" -msgstr "Stwórz blok kodu" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:53 msgid "Display NPM prefix" @@ -45124,9 +44532,8 @@ msgid "Do not dump metadata about files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:34 -#, fuzzy msgid "Generate man page" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:35 msgid "Which generation to restore" @@ -45369,9 +44776,8 @@ msgid "Do not check directories" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:96 -#, fuzzy msgid "Check directories" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:97 msgid "Do not check files" @@ -45510,14 +44916,12 @@ msgid "Produce no output to stderr" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:2 -#, fuzzy msgid "Print this help text" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:3 -#, fuzzy msgid "Print the version number" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:4 msgid "Set bits/sample for raw input. Default is 16" @@ -45723,9 +45127,8 @@ msgid "Recursive query." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:28 -#, fuzzy msgid "Display environment variables as an s-expression." -msgstr "Zmienna środowiskowa TERM ustawiona jest do" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:29 msgid "Use sh-compatible mode for configuring OPAM." @@ -45828,9 +45231,8 @@ msgid "Search into the package list." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:52 -#, fuzzy msgid "Display information about specific packages." -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:53 msgid "Manage multiple installation of compilers." @@ -46059,9 +45461,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:29 #: /tmp/fish/implicit/share/completions/pacman.fish:20 #: /tmp/fish/implicit/share/completions/yaourt.fish:26 -#, fuzzy msgid "Hook file directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:32 msgid "Apply only for AUR targets" @@ -46510,9 +45911,8 @@ msgid "Only search the AUR" msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:5 -#, fuzzy msgid "Set the output directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:6 msgid "Display this message" @@ -46690,9 +46090,8 @@ msgid "Execute command" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:19 -#, fuzzy msgid "Execute command, enable optional features" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:20 msgid "Disable sitecustomize.pl" @@ -46783,9 +46182,8 @@ msgid "Flush filter params specified by mod" msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:3 -#, fuzzy msgid "Table command" -msgstr "Stan Komenda" +msgstr "" #: /tmp/fish/implicit/share/completions/pgrep.fish:1 msgid "Output delimiter" @@ -46996,9 +46394,8 @@ msgid "omit the user's full name, remote host and idle time in short format" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:1 -#, fuzzy msgid "failsafe to overwrite" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:2 #: /tmp/fish/implicit/share/completions/pkg_delete.fish:3 @@ -47010,9 +46407,8 @@ msgid "Automated package installation" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:5 -#, fuzzy msgid "Update packages" -msgstr "Stwórz blok kodu" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:6 msgid "Fuzzy match" @@ -47249,9 +46645,8 @@ msgid "Convert package from pkg_add format" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:22 -#, fuzzy msgid "Create a package" -msgstr "Stwórz blok kodu" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:23 #: /tmp/fish/implicit/share/completions/pkg.fish:31 @@ -47352,9 +46747,8 @@ msgid "Force installation with missing dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:49 -#, fuzzy msgid "Force quiet output" -msgstr "Przymusowe wyjście" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:50 msgid "Do not make changes" @@ -47495,18 +46889,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:12 #: /tmp/fish/implicit/share/completions/prt-get.fish:36 #: /tmp/fish/implicit/share/completions/prt-get.fish:95 -#, fuzzy msgid "Force rebuild" -msgstr "Przymusowe wyjście" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:13 msgid "Remove package and sources" msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:14 -#, fuzzy msgid "Keep working dir" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:15 msgid "Use another config" @@ -47544,9 +46936,8 @@ msgid "Displays help information" msgstr "" #: /tmp/fish/implicit/share/completions/poff.fish:7 -#, fuzzy msgid "Prints the version and exits" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:1 msgid "run 'make config' for all ports (overrides -G)." @@ -47721,9 +47112,8 @@ msgid "display the version number El ENVIRONMENT The d… [See Man Page]" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:44 -#, fuzzy msgid "Ports Directory" -msgstr "Katalog" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:45 msgid "Installed Package" @@ -47839,9 +47229,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:15 #: /tmp/fish/implicit/share/completions/prt-get.fish:76 -#, fuzzy msgid "Search for a pattern in the footprints in the ports tree" -msgstr "Szukaj określonego ciągu znaków w liście" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:16 #: /tmp/fish/implicit/share/completions/prt-get.fish:77 @@ -47879,9 +47268,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:23 #: /tmp/fish/implicit/share/completions/prt-get.fish:83 -#, fuzzy msgid "Print formatted list of ports" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:25 #: /tmp/fish/implicit/share/completions/prt-get.fish:85 @@ -47899,9 +47287,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:28 #: /tmp/fish/implicit/share/completions/prt-get.fish:87 -#, fuzzy msgid "Print the listing of the directory of a port" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:29 #: /tmp/fish/implicit/share/completions/prt-get.fish:88 @@ -47940,9 +47327,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:42 #: /tmp/fish/implicit/share/completions/prt-get.fish:101 -#, fuzzy msgid "Keep work directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:43 #: /tmp/fish/implicit/share/completions/prt-get.fish:102 @@ -48088,9 +47474,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:17 #: /tmp/fish/implicit/share/completions/ps.fish:23 -#, fuzzy msgid "User defined format" -msgstr "Sygnał zdefiniowany przez użytkownika 2" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:18 #: /tmp/fish/implicit/share/completions/ps.fish:25 @@ -48170,9 +47555,8 @@ msgid "run only single command (SQL or internal) and exit" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:3 -#, fuzzy msgid "execute commands from file, then exit" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:4 msgid "list available databases, then exit" @@ -48351,23 +47735,20 @@ msgid "Wait given time (in secs) between updates" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:19 -#, fuzzy msgid "Set terminal width" -msgstr "Ustaw kolor terminala" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:20 -#, fuzzy msgid "Set terminal height" -msgstr "Ustaw kolor terminala" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:21 msgid "Prefix output with given name" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:22 -#, fuzzy msgid "Force output" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:23 msgid "Use cursor positioning escape sequence instead of \\r" @@ -48551,9 +47932,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:4 #: /tmp/fish/implicit/share/completions/python3.fish:4 #: /tmp/fish/implicit/share/completions/python.fish:4 -#, fuzzy msgid "Ignore environment variables" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:6 #: /tmp/fish/implicit/share/completions/python3.fish:6 @@ -48637,9 +48017,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:18 #: /tmp/fish/implicit/share/completions/python.fish:22 -#, fuzzy msgid "Set implementation-specific option" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:19 #: /tmp/fish/implicit/share/completions/python.fish:23 @@ -48801,9 +48180,8 @@ msgid "Activate clean mode" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:3 -#, fuzzy msgid "Change configuration directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:4 msgid "Create copies of the default configuration" @@ -48818,9 +48196,8 @@ msgid "Pick multiple files with ranger" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:7 -#, fuzzy msgid "Pick directory" -msgstr "Katalog" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:8 msgid "Open ranger with given file selected" @@ -48839,9 +48216,8 @@ msgid "Print statistics of CPU usage on exit" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:12 -#, fuzzy msgid "Execute command after configuration file read" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:1 msgid "List all rbenv commands" @@ -48876,9 +48252,8 @@ msgid "Set or show the shell-specific Ruby version" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:9 -#, fuzzy msgid "Show the current Ruby version" -msgstr "Zatrzymaj obecnie używaną funkcję" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:10 msgid "List all Ruby versions known by rbenv" @@ -48892,22 +48267,6 @@ msgstr "" msgid "Show the full path for the given Ruby command" msgstr "" -#: /tmp/fish/implicit/share/completions/rc.d.fish:1 -msgid "Filter started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:2 -msgid "Filter stopped daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:3 -msgid "Filter auto started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:4 -msgid "Filter manually started daemons" -msgstr "" - #: /tmp/fish/implicit/share/completions/rc-service.fish:1 msgid "Tests if the service exists or not" msgstr "" @@ -49081,9 +48440,8 @@ msgid "Remove each component of path" msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:1 -#, fuzzy msgid "Prints the help text." -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:2 msgid "Send errors to syslog instead of standard error." @@ -49128,9 +48486,8 @@ msgid "Run with memory usage monitoring" msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:5 -#, fuzzy msgid "List of rpm configuration files" -msgstr "Wypisz lub usuń funkcje" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:6 msgid "Pipe output through specified command" @@ -49348,9 +48705,8 @@ msgid "List packages on which this package depends" msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:53 -#, fuzzy msgid "List the package specific scriptlets" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:54 msgid "" @@ -49523,9 +48879,8 @@ msgid "Turn off an implied OPTION (e.g. --no-D)" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:6 -#, fuzzy msgid "Recurse into directories" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:7 msgid "Use relative path names" @@ -49992,9 +49347,8 @@ msgid "Disk usage by buckets" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:12 -#, fuzzy msgid "Get various information about Buckets or Files" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:13 msgid "Copy object" @@ -50113,9 +49467,8 @@ msgid "Run interactive (re)configuration tool" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:44 -#, fuzzy msgid "Dump current configuration" -msgstr "Wypisz obecnie uruchomione zadania" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:45 msgid "AWS Access Key" @@ -50134,9 +49487,8 @@ msgid "Dry run, test only" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:49 -#, fuzzy msgid "Use HTTPS (default)" -msgstr "(domyślne)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:50 msgid "Don't use HTTPS" @@ -50151,9 +49503,8 @@ msgid "Don't encrypt files" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:53 -#, fuzzy msgid "Force overwrite" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:54 msgid "Resume partially downloaded file" @@ -50168,9 +49519,8 @@ msgid "Resume multipart upload by UploadId" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:57 -#, fuzzy msgid "Skip existing files at destination" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:58 msgid "Upload/download/delete recursively" @@ -50329,9 +49679,8 @@ msgid "Don't use mime magic when guessing" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:97 -#, fuzzy msgid "Force MIME-type" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:98 msgid "Add HTTP header" @@ -50350,9 +49699,8 @@ msgid "Encrypt with specified AWS KMS-managed key" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:102 -#, fuzzy msgid "Use specified encoding" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:103 msgid "Add encoding to CSV extension list" @@ -50411,14 +49759,12 @@ msgid "Show file transfer stats" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:117 -#, fuzzy msgid "Enable CloudFront distribution" -msgstr "Niedozwolona instrukcja" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:118 -#, fuzzy msgid "Disable CloudFront distribution" -msgstr "Niedozwolona instrukcja" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:119 msgid "Invalidate CloudFront file" @@ -50453,9 +49799,8 @@ msgid "Cache FILE containing MD5 values" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:131 -#, fuzzy msgid "Silence stdout output" -msgstr "Przymusowe wyjście" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:132 msgid "Path to SSL CA certificate FILE" @@ -50701,19 +50046,16 @@ msgid "Connect to a server with an interactive sbt prompt" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:3 -#, fuzzy msgid "Print options help message" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:4 -#, fuzzy msgid "Print more details" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:5 -#, fuzzy msgid "Set log level to debug" -msgstr "Katalog domowy dla" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:6 msgid "Disable ANSI color codes" @@ -50732,27 +50074,24 @@ msgid "Use global caches, but not global ~/.sbt directory" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:10 -#, fuzzy msgid "Disable interactive mode" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:11 msgid "Specify path to global settings/plugins" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:12 -#, fuzzy msgid "Specify path to shared boot directory" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:13 msgid "Specify path to local Ivy repository" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:14 -#, fuzzy msgid "Set memory options" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:15 msgid "Turn on JVM debugging, open at the given port" @@ -50976,9 +50315,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:9 -#, fuzzy msgid "Debug the build process" -msgstr "Proces potomny" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:10 msgid "" @@ -51042,9 +50380,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:23 -#, fuzzy msgid "No execute" -msgstr "Wykonywalny" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:24 msgid "" @@ -51237,14 +50574,12 @@ msgid "Preselect window" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:30 -#, fuzzy msgid "Set shell" -msgstr "Opuść powłokę" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:31 -#, fuzzy msgid "Session name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:32 msgid "Session title" @@ -51263,9 +50598,8 @@ msgid "Multi attach" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:37 -#, fuzzy msgid "Send command" -msgstr "Stan Komenda" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:2 msgid "Display version information and exit" @@ -51292,9 +50626,8 @@ msgid "Image quality [1-100]" msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:8 -#, fuzzy msgid "Grab shot from multiple heads" -msgstr "Wykonaj zestaw komend wielokrotnie" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:9 msgid "Select a window or rectangle with the mouse" @@ -51325,9 +50658,8 @@ msgid "How to link generated output to the source files." msgstr "" #: /tmp/fish/implicit/share/completions/service.fish:1 -#, fuzzy msgid "Service name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:1 msgid "Color" @@ -51335,9 +50667,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:2 #: /tmp/fish/implicit/share/completions/set.fish:12 -#, fuzzy msgid "Change background color" -msgstr "Ostatnie zadanie działające w tle" +msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:3 #: /tmp/fish/implicit/share/completions/set.fish:13 @@ -51509,9 +50840,8 @@ msgid "Verify a signed checksum list" msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:3 -#, fuzzy msgid "Sign specified message" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:4 msgid "Verify a signed message and sig" @@ -51539,33 +50869,28 @@ msgid "List installed snaps" msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:8 -#, fuzzy msgid "List of interfaces" -msgstr "Wypisz lub usuń funkcje" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:9 -#, fuzzy msgid "List change IDs" -msgstr "Zmiana rozmiaru okna" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:10 -#, fuzzy msgid "List aliases" -msgstr "Zmiana rozmiaru okna" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:11 -#, fuzzy msgid "Check that no assertion type is used yet" -msgstr "Sprawdź czy ten typ terminala jest obsługiwany przez ten system" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:12 msgid "Check if certain assertion type is used" msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:13 -#, fuzzy msgid "List assertion filters" -msgstr "Wypisz lub usuń funkcje" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:14 msgid "Show this help message" @@ -51640,9 +50965,8 @@ msgid "Field separator" msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:19 -#, fuzzy msgid "Set temporary directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:20 msgid "Output only first of equal lines" @@ -51665,9 +50989,8 @@ msgid "Interface to transmit from" msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:6 -#, fuzzy msgid "Go to background" -msgstr "Przenieś zadanie w tło" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:7 msgid "Allow remote host to connect to local forwarded ports" @@ -52011,14 +51334,12 @@ msgid "Subcommands specific to package signatures (experimental)" msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:2 -#, fuzzy msgid "Test if this is a login shell" -msgstr "To jest powłoka logowania" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:3 -#, fuzzy msgid "Test if this is an interactive shell" -msgstr "To jest powłoka logowania" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:4 msgid "Test if a command substitution is currently evaluated" @@ -52045,14 +51366,12 @@ msgid "Test if all new jobs are put under job control" msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:10 -#, fuzzy msgid "Print the filename of the currently running script" -msgstr "Wypisz obecnie uruchomione zadania" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:11 -#, fuzzy msgid "Print the line number of the currently running script" -msgstr "Wypisz obecnie uruchomione zadania" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:12 msgid "" @@ -52144,14 +51463,12 @@ msgid "Remove newline" msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:1 -#, fuzzy msgid "Load the given project" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:2 -#, fuzzy msgid "Run the given command" -msgstr "Przenieś zadanie w tło" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:3 msgid "Open a new window" @@ -52200,23 +51517,20 @@ msgid "Read password from stdin" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:8 -#, fuzzy msgid "Run command in the background" -msgstr "Uruchom komendę w obecnym procesie" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:9 msgid "Edit" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:10 -#, fuzzy msgid "Run command as group" -msgstr "Uruchom komendę w obecnym procesie" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:12 -#, fuzzy msgid "Run a login shell" -msgstr "To jest powłoka logowania" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:13 msgid "Reset or ignore the credential timestamp" @@ -52241,27 +51555,24 @@ msgid "Run the given command in a shell" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:18 -#, fuzzy msgid "Run command as user" -msgstr "Uruchom komendę w obecnym procesie" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:19 msgid "Validate the credentials, extending timeout" msgstr "" #: /tmp/fish/implicit/share/completions/su.fish:1 -#, fuzzy msgid "Make login shell" -msgstr "To jest powłoka logowania" +msgstr "" #: /tmp/fish/implicit/share/completions/su.fish:2 msgid "Pass command to shell" msgstr "" #: /tmp/fish/implicit/share/completions/su.fish:3 -#, fuzzy msgid "Pass -f to the shell" -msgstr "Opuść powłokę" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:1 msgid "Make a completion for a subcommand" @@ -52397,9 +51708,8 @@ msgid "Restore pristine working copy file (undo most local edits)." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:33 -#, fuzzy msgid "Print the status of working copy files and directories." -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:34 msgid "Update the working copy to a different URL." @@ -52430,9 +51740,8 @@ msgid "Do not cache authentication tokens" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:41 -#, fuzzy msgid "Do no interactive prompting" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:42 msgid "" @@ -53020,9 +52329,8 @@ msgid "Mount directories as overlayfs in the container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:30 -#, fuzzy msgid "Pass environment variables to init in the container" -msgstr "Zmienna środowiskowa TERM ustawiona jest do" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:31 msgid "Share the system with the host [See Man Page]" @@ -53166,9 +52474,8 @@ msgid "Reblock while reading" msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:16 -#, fuzzy msgid "Print directory names" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:17 msgid "Archive file" @@ -53268,9 +52575,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:44 #: /tmp/fish/implicit/share/completions/tar.fish:45 -#, fuzzy msgid "Do not sort file arguments" -msgstr "printf: brak wystarczających argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:46 msgid "Preserve file ownership" @@ -53352,9 +52658,8 @@ msgid "The role to set the termite window to report itself with" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:5 -#, fuzzy msgid "Set the termite window's title" -msgstr "Ustaw kolor terminala" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:6 msgid "Tell termite to change to when launching" @@ -53446,9 +52751,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:9 #: /tmp/fish/implicit/share/completions/terraform.fish:26 #: /tmp/fish/implicit/share/completions/terraform.fish:84 -#, fuzzy msgid "Limit the number of concurrent operations" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:10 #: /tmp/fish/implicit/share/completions/terraform.fish:27 @@ -53516,9 +52820,8 @@ msgid "Don't ask for input for destroy confirmation" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:33 -#, fuzzy msgid "Environment management" -msgstr "Zmienna środowiskowa TERM ustawiona jest do" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:34 msgid "List environments" @@ -53760,18 +53063,16 @@ msgid "Left integer not equal to right integer" msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:15 -#, fuzzy msgid "File is block device" -msgstr "Nie określono bloków" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:16 msgid "File is character device" msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:17 -#, fuzzy msgid "File is directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:18 msgid "File exists" @@ -53995,9 +53296,8 @@ msgid "Delete one or more snapshots" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:24 -#, fuzzy msgid "Print information about destinations" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:25 msgid "Turn off automatic backups" @@ -54033,9 +53333,8 @@ msgid "Print paths for all snapshots" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:33 -#, fuzzy msgid "Print the path to the current machine directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:34 msgid "Removes a backup destination" @@ -54110,9 +53409,8 @@ msgid "connected clients" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:3 -#, fuzzy msgid "window panes" -msgstr "Zmiana rozmiaru okna" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:4 msgid "Force tmux to assume the terminal supports 256 colours" @@ -54123,9 +53421,8 @@ msgid "Like -2, but indicates that the terminal supports 88 colours" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:6 -#, fuzzy msgid "Behave as a login shell" -msgstr "To jest powłoka logowania" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:7 msgid "Set the quiet server option" @@ -54144,9 +53441,8 @@ msgid "Report the tmux version" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:11 -#, fuzzy msgid "Execute command using the default shell" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:13 msgid "Specify the name of the server socket to use" @@ -54251,9 +53547,8 @@ msgid "save msgs in status bar in per-client msg log" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:38 -#, fuzzy msgid "execute commands from path" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:39 msgid "start tmux server if not running; do not create a session" @@ -54303,9 +53598,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:51 #: /tmp/fish/implicit/share/completions/tmux.fish:74 -#, fuzzy msgid "bind key to command" -msgstr "Zakończ zestaw komend" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:52 msgid "bind for command mode instead of normal mode" @@ -54325,15 +53619,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:56 #: /tmp/fish/implicit/share/completions/tmux.fish:58 -#, fuzzy msgid "list all key bindings" -msgstr "Steruj przypisaniami klawiszy fish'a" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:57 #: /tmp/fish/implicit/share/completions/tmux.fish:68 -#, fuzzy msgid "key table" -msgstr "Wykonywalny" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:59 msgid "reset terminal state" @@ -54357,9 +53649,8 @@ msgid "unbind the command bound to key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:65 -#, fuzzy msgid "remove all key bindings" -msgstr "Steruj przypisaniami klawiszy fish'a" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:66 msgid "binding for command mode" @@ -54370,15 +53661,13 @@ msgid "command bound to key without a prefix (if any) removed" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:69 -#, fuzzy msgid "Set or unset an environment variable" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:70 #: /tmp/fish/implicit/share/completions/tmux.fish:75 -#, fuzzy msgid "global environment" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:71 msgid "remove from environment before starting a new process" @@ -54629,9 +53918,8 @@ msgid "List session information from the server" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:31 -#, fuzzy msgid "List statistical information from the server" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:32 msgid "List all torrents" @@ -54690,9 +53978,8 @@ msgid "Try to download the specified files last" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:47 -#, fuzzy msgid "Set the maximum number of peers" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:48 msgid "Remove the current torrents" @@ -54735,14 +54022,12 @@ msgid "Remove a tracker from a torrent" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:58 -#, fuzzy msgid "Start the current torrents" -msgstr "Zatrzymaj obecnie używaną funkcję" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:59 -#, fuzzy msgid "Stop the current torrents" -msgstr "Zatrzymaj obecnie używaną funkcję" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:60 msgid "Start added torrents paused" @@ -54869,9 +54154,8 @@ msgid "Displays or changes the API endpoint" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:11 -#, fuzzy msgid "Show or modify build environment variables" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:12 msgid "Helps you out when in dire need of information" @@ -55006,9 +54290,8 @@ msgid "List directories only" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:3 -#, fuzzy msgid "Follow symbolic links like directories" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:4 msgid "Print the full path prefix for each file" @@ -55332,9 +54615,8 @@ msgid "Suppress function and builtin lookup" msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:4 -#, fuzzy msgid "Print command type" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:5 msgid "Print path to command, or nothing if name is not a command" @@ -55399,19 +54681,16 @@ msgid "Set SMART data for a drive" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:15 -#, fuzzy msgid "Object to get information about" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:16 -#, fuzzy msgid "Block device to get information about" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:17 -#, fuzzy msgid "Drive to get information about" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:18 msgid "Filesystem type to use" @@ -55619,23 +54898,20 @@ msgid "Print kernel version" msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:13 -#, fuzzy msgid "Print machine name" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:14 -#, fuzzy msgid "Print processor" -msgstr "Proces potomny" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:15 msgid "Print hardware platform" msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:16 -#, fuzzy msgid "Print operating system" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/unexpand.fish:1 msgid "convert all blanks, instead of just initial blanks" @@ -55726,9 +55002,8 @@ msgid "Override cache method for a specified overlay" msgstr "" #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:2 -#, fuzzy msgid "Be verbose (default)" -msgstr "(domyślne)" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:3 msgid "Call wget as the given USER" @@ -55804,9 +55079,8 @@ msgid "Change user's password file comment" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:3 -#, fuzzy msgid "Change user's login directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:4 msgid "Date on which the user account will be disabled" @@ -55841,9 +55115,8 @@ msgid "Allow non-unique UID" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:13 -#, fuzzy msgid "Apply changes in this directory" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:14 msgid "The name of the user's new login shell" @@ -55954,9 +55227,8 @@ msgid "Shuts down the running machine" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:21 -#, fuzzy msgid "Force shut down" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:22 msgid "Initializes the Vagrant environment" @@ -56513,28 +55785,24 @@ msgid "be quiet and make the output more parseable" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:12 -#, fuzzy msgid "set the registry directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:13 -#, fuzzy msgid "set the addons source directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:14 -#, fuzzy msgid "set the addons target directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:15 msgid "increase verbosity" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:16 -#, fuzzy msgid "set the system-wide target directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:17 msgid "set target directory to the system-wide one" @@ -56549,9 +55817,8 @@ msgid "Source file after the first file has been read" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:3 -#, fuzzy msgid "Execute Ex command before loading any vimrc" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:4 msgid "Use device as terminal (Amiga only)" @@ -56590,9 +55857,8 @@ msgid "Set the cursor to tag" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:13 -#, fuzzy msgid "Terminal name" -msgstr "Terminal zawieszony" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:14 msgid "Use alternative vimrc" @@ -56757,9 +56023,8 @@ msgid "Set server name" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:59 -#, fuzzy msgid "Print version information and exit" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:60 msgid "Run gvim in another window (GTK GUI only)" @@ -56891,9 +56156,8 @@ msgid "Remove packages listed in a file" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:33 -#, fuzzy msgid "Search for a file within installed packages" -msgstr "Szukaj określonego ciągu znaków w liście" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:34 #: /tmp/fish/implicit/share/completions/wajig.fish:115 @@ -57122,9 +56386,8 @@ msgid "Convert a RedHat .rpm file to a Debian .deb file" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:94 -#, fuzzy msgid "Search for packages containing listed words" -msgstr "Szukaj określonego ciągu znaków w liście" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:95 msgid "Find local Debian archives suitable for sources.list" @@ -57266,14 +56529,12 @@ msgid "Pass command to exec instead of \"sh -c\"" msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:1 -#, fuzzy msgid "Print byte counts" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:2 -#, fuzzy msgid "Print character counts" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:3 msgid "Print newline counts" @@ -57284,9 +56545,8 @@ msgid "Print length of longest line" msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:5 -#, fuzzy msgid "Print word counts" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:1 msgid "Number sets BitsPerPixel value" @@ -57431,9 +56691,8 @@ msgid "Go to background immediately after startup" msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:4 -#, fuzzy msgid "Execute command as if part of .wgetrc" -msgstr "Wykonaj komendę jeżeli poprzednia komenda zakończy się niepowodzeniem" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:5 msgid "Log all messages to logfile" @@ -57862,9 +57121,8 @@ msgid "Print time of last boot" msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:3 -#, fuzzy msgid "Print dead processes" -msgstr "Proces potomny" +msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:4 msgid "Print line of headings" @@ -57875,9 +57133,8 @@ msgid "Print idle time" msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:6 -#, fuzzy msgid "Print login process" -msgstr "Proces potomny" +msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:7 msgid "Canonicalize hostnames via DNS" @@ -57896,9 +57153,8 @@ msgid "Print all login names and number of users logged on" msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:11 -#, fuzzy msgid "Print current runlevel" -msgstr "Wypisz obecnie uruchomione zadania" +msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:12 msgid "Print name, line, and time" @@ -58108,9 +57364,8 @@ msgid "set/list network variables" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:28 -#, fuzzy msgid "get network variables" -msgstr "Operuj zmiennymi środowiskowymi" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:29 msgid "save the current configuration" @@ -58210,9 +57465,8 @@ msgid "Print the command line on the standard error output before executing it" msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:15 -#, fuzzy msgid "Exit if the size is exceeded" -msgstr "Przekroczony limit rozmiaru pliku" +msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:16 msgid "Run up to max-procs processes at a time" @@ -58457,9 +57711,8 @@ msgid "Show the main window" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:1 -#, fuzzy msgid "Set the initial window geometry" -msgstr "Ustaw kolor terminala" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:2 msgid "Set the window title" @@ -58486,9 +57739,8 @@ msgid "Set the color for background outside the page area" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:8 -#, fuzzy msgid "Set the initial zoom factor" -msgstr "Ustaw kolor terminala" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:9 msgid "Start in continuous view mode" @@ -58785,9 +58037,8 @@ msgid "Don't define a primary output" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:43 -#, fuzzy msgid "Print current screen configuration" -msgstr "Wypisz obecnie uruchomione zadania" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:44 msgid "" @@ -58942,9 +58193,8 @@ msgid "Do not detach from the controlling terminal" msgstr "" #: /tmp/fish/implicit/share/completions/xsel.fish:17 -#, fuzzy msgid "Print informative messages" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:1 msgid "Never highlight the text cursor" @@ -59211,9 +58461,8 @@ msgid "Use pseudo-terminal's sense of the stty erase value" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:67 -#, fuzzy msgid "Force insert mode" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:68 msgid "Treat C1 control characters as printable" @@ -59464,9 +58713,8 @@ msgid "Test the integrity of compressed files" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:4 -#, fuzzy msgid "Print information about compressed files" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:5 msgid "Don't delete the input files" @@ -59605,9 +58853,8 @@ msgid "Show some statistics about your packages" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:29 -#, fuzzy msgid "Force color" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:30 msgid "Force installation or updates" @@ -59878,9 +59125,8 @@ msgid "Set maximum delay between commands" msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:18 -#, fuzzy msgid "Run commands from cache" -msgstr "Uruchom komendę w obecnym procesie" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:20 msgid "Specify installroot" @@ -59945,32 +59191,28 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:2 #: /tmp/fish/implicit/share/completions/zpool.fish:2 -#, fuzzy msgid "Display a help message" -msgstr "Wypisz argumenty" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:3 -#, fuzzy msgid "Create a volume or filesystem" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:4 msgid "Destroy a dataset" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:5 -#, fuzzy msgid "Create a snapshot" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:6 msgid "Roll back a filesystem to a previous snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:7 -#, fuzzy msgid "Create a clone of a snapshot" -msgstr "Stwórz blok kodu" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:8 msgid "" @@ -60079,9 +59321,8 @@ msgid "Volume size" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:35 -#, fuzzy msgid "Create a sparse volume" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:36 msgid "Blocksize" @@ -60096,14 +59337,12 @@ msgid "Recursively destroy all dependents" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:39 -#, fuzzy msgid "Force unmounting" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:41 -#, fuzzy msgid "Print machine-parsable verbose information" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:43 msgid "Defer snapshot deletion" @@ -60199,9 +59438,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:80 #: /tmp/fish/implicit/share/completions/zfs.fish:95 #: /tmp/fish/implicit/share/completions/zpool.fish:66 -#, fuzzy msgid "Print parsable (exact) values for numbers" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:69 #: /tmp/fish/implicit/share/completions/zfs.fish:97 @@ -60232,9 +59470,8 @@ msgid "Fields to display" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:79 -#, fuzzy msgid "Property source to display" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:82 msgid "Property to get" @@ -60257,9 +59494,8 @@ msgid "Upgrade all eligible filesystems" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:90 -#, fuzzy msgid "Upgrade to the specified version" -msgstr "Szukaj określonego ciągu znaków w liście" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:91 msgid "Filesystem to upgrade" @@ -60295,9 +59531,8 @@ msgid "Temporary mount point property" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:104 -#, fuzzy msgid "Report progress" -msgstr "Proces potomny" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:105 msgid "Mount all available ZFS filesystems" @@ -60355,9 +59590,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:119 #: /tmp/fish/implicit/share/completions/zfs.fish:128 -#, fuzzy msgid "Generate a deduplicated stream" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:120 #: /tmp/fish/implicit/share/completions/zfs.fish:129 @@ -60371,36 +59605,31 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:122 #: /tmp/fish/implicit/share/completions/zfs.fish:131 -#, fuzzy msgid "Print verbose information about the stream in a machine-parsable format" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:123 -#, fuzzy msgid "Generate compressed stream" -msgstr "Zwróć losową liczbę" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:125 #: /tmp/fish/implicit/share/completions/zfs.fish:133 -#, fuzzy msgid "Include dataset properties" -msgstr "Katalog" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:126 #: /tmp/fish/implicit/share/completions/zfs.fish:134 -#, fuzzy msgid "Print verbose information about the stream" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:135 msgid "Dataset to send" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:136 -#, fuzzy msgid "" "Print verbose information about the stream and the time spent processing it" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:137 msgid "Dry run: do not actually receive the stream" @@ -60642,9 +59871,8 @@ msgid "Exclude extra file attributes" msgstr "" #: /tmp/fish/implicit/share/completions/zip.fish:26 -#, fuzzy msgid "Store symbolic links as links" -msgstr "Pętla nawiązań symbolicznych" +msgstr "" #: /tmp/fish/implicit/share/completions/zip.fish:27 msgid "PKZIP recursion" @@ -60676,9 +59904,8 @@ msgid "Clear devices errors in pool" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:6 -#, fuzzy msgid "Create a new storage pool" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:7 msgid "Destroy a storage pool" @@ -60701,9 +59928,8 @@ msgid "Get one or several pool properties" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:12 -#, fuzzy msgid "Display pool command history" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:13 msgid "List importable pools, or import some" @@ -60722,9 +59948,8 @@ msgid "List pools with health status and space usage" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:17 -#, fuzzy msgid "Take the specified devices offline" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:18 msgid "Bring the specified devices back online" @@ -60791,9 +60016,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:101 #: /tmp/fish/implicit/share/completions/zpool.fish:128 #: /tmp/fish/implicit/share/completions/zpool.fish:136 -#, fuzzy msgid "Resolve device path symbolic links" -msgstr "Nawiązanie symboliczne" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:32 #: /tmp/fish/implicit/share/completions/zpool.fish:93 @@ -60830,9 +60054,8 @@ msgid "Virtual device to operate on" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:40 -#, fuzzy msgid "Initiate recovery mode" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:41 #: /tmp/fish/implicit/share/completions/zpool.fish:85 @@ -60893,9 +60116,8 @@ msgid "Physical device to detach" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:58 -#, fuzzy msgid "Print verbose event information" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:60 msgid "Output appended data as the log grows" @@ -60930,23 +60152,20 @@ msgid "Also display internal events" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:72 -#, fuzzy msgid "Display log records using long format" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:73 msgid "Pool to get command history of" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:74 -#, fuzzy msgid "Read configuration from specified cache file" -msgstr "Zmień katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:75 -#, fuzzy msgid "Search for devices or files in specified directory" -msgstr "Nawiązanie symboliczne do katalogu" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:76 msgid "List or import destroyed pools only (requires -f for importation)" @@ -60962,14 +60181,12 @@ msgid "Properties of the imported pool" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:79 -#, fuzzy msgid "Force import" -msgstr "Wymuszono zatrzymanie" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:80 -#, fuzzy msgid "Recovery mode" -msgstr "Tylko dla zadań interaktywnych" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:81 msgid "Search for and import all pools found" @@ -61011,9 +60228,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:95 #: /tmp/fish/implicit/share/completions/zpool.fish:104 -#, fuzzy msgid "Print verbose statistics" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:96 msgid "Pool to retrieve I/O stats from" @@ -61024,9 +60240,8 @@ msgid "Treat exported or foreign devices as inactive" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:98 -#, fuzzy msgid "Device to clear ZFS label information from" -msgstr "Zwróć informacje o fish" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:106 msgid "Pool to list properties of" @@ -61131,9 +60346,8 @@ msgid "Display upgradeable ZFS versions" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:146 -#, fuzzy msgid "Upgrade to the specified legacy version" -msgstr "Szukaj określonego ciągu znaków w liście" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:2 msgid "Repo" @@ -62116,18 +61330,13 @@ msgstr "" msgid "Manage abbreviations using new fish 3.0 scheme." msgstr "" -#: /tmp/fish/implicit/share/functions/abbr_old.fish:1 -msgid "Manage abbreviations using old fish 2.x scheme." -msgstr "" - #: /tmp/fish/implicit/share/functions/alias.fish:1 msgid "Creates a function wrapping a command" msgstr "" #: /tmp/fish/implicit/share/functions/cdh.fish:1 -#, fuzzy msgid "Menu based cd command" -msgstr "Stan Komenda" +msgstr "" #: /tmp/fish/implicit/share/functions/contains_seq.fish:1 msgid "Return true if array contains a sequence" @@ -62138,9 +61347,8 @@ msgid "Print the current directory history (the prev and next lists)" msgstr "" #: /tmp/fish/implicit/share/functions/dirs.fish:1 -#, fuzzy msgid "Print directory stack" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/functions/down-or-search.fish:1 msgid "" @@ -62152,10 +61360,6 @@ msgstr "" msgid "Edit the command buffer in an external editor" msgstr "" -#: /tmp/fish/implicit/share/functions/eval.fish:1 -msgid "Evaluate parameters as a command" -msgstr "" - #: /tmp/fish/implicit/share/functions/_.fish:1 msgid "Alias for the gettext command" msgstr "" @@ -62172,14 +61376,6 @@ msgstr "" msgid "Return 0 if the current token has an open single-quote" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_abook_formats.fish:1 -msgid "Complete abook formats" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_ant_targets.fish:1 -msgid "Print list of targets from build.xml and imported files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_atool_archive_contents.fish:1 msgid "List archive contents" msgstr "" @@ -62321,9 +61517,8 @@ msgid "Complete ftp, pftp" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:2 -#, fuzzy msgid "Hostname" -msgstr "Nazwa procesu" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:3 msgid "Use only IPv4 to contact any host" @@ -62438,9 +61633,8 @@ msgid "Scale image files to use up to number percent of the page" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:17 -#, fuzzy msgid "Set the number of characters per inch to use" -msgstr "Wylicz liczbę argumentów" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:18 msgid "Set the number of lines per inch to use" @@ -62530,10 +61724,6 @@ msgstr "" msgid "Complete by list of running processes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_setxkbmap.fish:1 -msgid "Complete setxkb options" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:1 msgid "common completions for ssh commands" msgstr "" @@ -62574,25 +61764,10 @@ msgstr "" msgid "Complete subcommand" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_subcommand_root.fish:1 -msgid "" -"Run the __fish_complete_subcommand function using a PATH containing /sbin " -"and /usr/sbin" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_suffix.fish:1 msgid "Complete using files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_svn_diff.fish:1 -msgid "Complete \"svn diff\" arguments" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_complete_unrar.fish:1 -msgid "Peek inside of archives and list all files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_user_at_hosts.fish:1 msgid "Print list host-names with user@" msgstr "" @@ -62601,10 +61776,6 @@ msgstr "" msgid "Print a list of local users, with the real user name as a description" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_wvdial_peers.fish:1 -msgid "Complete wvdial peers" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 msgid "Completes with ZFS mountpoint properties" msgstr "" @@ -62676,7 +61847,6 @@ msgid "Checks if a specific option has been given in the current commandline" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_crux_packages.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_prt_packages.fish:1 msgid "Obtain a list of installed packages" msgstr "" @@ -62704,57 +61874,47 @@ msgstr "" msgid "Command used to find descriptions for commands" msgstr "" -#: /tmp/fish/implicit/share/functions/fish_fallback_prompt.fish:1 -msgid "" -"A simple fallback prompt without too much color or special characters for " -"linux VTs" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:1 +msgid "Helper function for fish_git_prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_filter_ant_targets.fish:1 -msgid "Display targets within an ant build.xml file" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:1 -msgid "Helper function for __fish_git_prompt" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:2 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:2 msgid "Prompt function for Git" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:3 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:3 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has staged " +"fish_git_prompt helper, tells whether or not the current branch has staged " "files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:4 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:4 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has " +"fish_git_prompt helper, tells whether or not the current branch has " "tracked, modified files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:5 -msgid "__fish_git_prompt helper, returns the current Git operation and branch" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:5 +msgid "fish_git_prompt helper, returns the current Git operation and branch" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:6 -msgid "__fish_git_prompt helper, checks char variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:6 +msgid "fish_git_prompt helper, checks char variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:7 -msgid "__fish_git_prompt helper, checks color variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:7 +msgid "fish_git_prompt helper, checks color variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:8 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:8 msgid "Event handler, repaints prompt when functionality changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:9 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:9 msgid "Event handler, repaints prompt when any color changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:10 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:10 msgid "Event handler, repaints prompt when any char changes" msgstr "" @@ -62817,9 +61977,8 @@ msgid "Move the last element of a directory history from src to dest" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_no_arguments.fish:1 -#, fuzzy msgid "Internal fish function" -msgstr "Niedozwolona instrukcja" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_not_contain_opt.fish:1 msgid "Checks that a specific option is not in the current command line" @@ -62829,31 +61988,14 @@ msgstr "" msgid "Paginate the current command using the users default pager" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_ports_dirs.fish:1 -msgid "Obtain a list of ports local collections" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_abook_emails.fish:1 -msgid "Print email addresses (abook)" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_addresses.fish:1 msgid "Print a list of known network addresses" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_arch_daemons.fish:1 -#, fuzzy -msgid "Print arch daemons" -msgstr "Wypisz argumenty" - #: /tmp/fish/implicit/share/functions/__fish_print_commands.fish:1 msgid "Print a list of documented fish commands" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_debian_services.fish:1 -msgid "Prints services installed" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_encodings.fish:1 msgid "Complete using available character encodings" msgstr "" @@ -62862,16 +62004,9 @@ msgstr "" msgid "Print a list of all known filesystem types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_function_prototypes.fish:1 -msgid "" -"Prints the names of all function prototypes found in the headers in the " -"current directory" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_groups.fish:1 -#, fuzzy msgid "Print a list of local groups" -msgstr "Zwraca sformatowany tekst" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_help.fish:1 msgid "Print help message for the specified fish function or builtin" @@ -62890,12 +62025,7 @@ msgid "Print lpr options" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_lpr_printers.fish:1 -#, fuzzy msgid "Print lpr printers" -msgstr "Wypisz argumenty" - -#: /tmp/fish/implicit/share/functions/__fish_print_lsblk_columns.fish:1 -msgid "Print available lsblk columns" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_mounted.fish:1 @@ -62922,73 +62052,27 @@ msgstr "" msgid "Print directories where desktop files are stored" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_desktop_file_ids.fish:1 -msgid "Print all available xdg desktop file IDs" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 msgid "Print XDG mime types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_modes.fish:1 -#, fuzzy -msgid "Print xrandr modes" -msgstr "Wypisz argumenty" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_outputs.fish:1 -#, fuzzy -msgid "Print xrandr outputs" -msgstr "Wypisz argumenty" - #: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 msgid "Print X windows" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_bookmarks.fish:1 -msgid "Lists ZFS bookmarks, if the feature is enabled" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_filesystems.fish:1 -msgid "Lists ZFS filesystems" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_zfs_snapshots.fish:1 msgid "Lists ZFS snapshots" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_volumes.fish:1 -msgid "Lists ZFS volumes" -msgstr "" - #: /tmp/fish/implicit/share/functions/fish_prompt.fish:1 msgid "Write out the prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_prt_no_subcommand.fish:1 -msgid "Test if prt-get has yet to be given the command" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_ports.fish:1 -msgid "Obtain a list of ports" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_package.fish:1 -msgid "Test if prt-get should have packages as potential completion" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_port.fish:1 -msgid "Test if prt-get should have ports as potential completion" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:1 #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:2 msgid "Show current path" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_sgrep.fish:1 -msgid "Call grep without honoring GREP_OPTIONS settings" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_shared_key_bindings.fish:1 msgid "Bindings shared between emacs and vi mode" msgstr "" @@ -63009,18 +62093,13 @@ msgstr "" msgid "Call systemctl with some options from the current commandline" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_test_arg.fish:1 -msgid "Test if the token under the cursor matches the specified wildcard" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_toggle_comment_commandline.fish:1 msgid "Comment/uncomment the current command" msgstr "" #: /tmp/fish/implicit/share/functions/fish_update_completions.fish:1 -#, fuzzy msgid "Update man-page based completions" -msgstr "Edytuj sugestie do określonej komendy" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_use_subcommand.fish:1 msgid "Test if a non-switch argument has been given in the current commandline" @@ -63039,9 +62118,8 @@ msgid "vi-like key bindings for fish" msgstr "" #: /tmp/fish/implicit/share/functions/funced.fish:1 -#, fuzzy msgid "Edit function definition" -msgstr "'return' poza definicją funkcji" +msgstr "" #: /tmp/fish/implicit/share/functions/funcsave.fish:1 msgid "Save the current definition of all specified functions to file" @@ -63076,9 +62154,8 @@ msgstr "" #: /tmp/fish/implicit/share/functions/ls.fish:1 #: /tmp/fish/implicit/share/functions/ls.fish:2 #: /tmp/fish/implicit/share/functions/ls.fish:3 -#, fuzzy msgid "List contents of directory" -msgstr "Zwróć katalog roboczy" +msgstr "" #: /tmp/fish/implicit/share/functions/man.fish:1 msgid "Format and display the on-line manual pages" @@ -63127,9 +62204,8 @@ msgid "print the resolved path [command grealpath]" msgstr "" #: /tmp/fish/implicit/share/functions/realpath.fish:3 -#, fuzzy msgid "return an absolute path without symlinks" -msgstr "Zamień ścieżkę na ścieżkę bezwzględną bez nawiązań symbolicznych" +msgstr "" #: /tmp/fish/implicit/share/functions/seq.fish:1 msgid "Print sequences of numbers" @@ -63188,18 +62264,14 @@ msgstr "" #~ msgid "getopt_long() unexpectedly returned zero\n" #~ msgstr "getopt_long() nieoczekiwanie zwrócił 0\n" -#, fuzzy #~ msgid "terminal_give_to_job(): Could not send job %d ('%ls') to foreground" #~ msgstr "Nie można przenieść zadania %d ('%ls') na pierwszy plan" -#, fuzzy #~ msgid "funced: You must specify one function name" #~ msgstr "Oczekiwano dokładnie jednej nazwy funkcji" -#, fuzzy #~ msgid "%s: Expected function name\\n" #~ msgstr "%s: Oczekiwano nazwy funkcji" -#, fuzzy #~ msgid "%ls: Invalid combination of options,\\n%ls\\n" #~ msgstr "%ls: Nieprawidłowa kombinacja opcji,\\n%ls\\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 4e3ce749c..bfc7b3c5f 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -20,18 +20,16 @@ msgstr "" "X-Generator: Poedit 1.8.4\n" #: src/autoload.cpp:96 -#, fuzzy, c-format +#, c-format msgid "" "Could not autoload item '%ls', it is already being autoloaded. This is a " "circular dependency in the autoloading scripts, please remove it." msgstr "" -"Não foi possível carregar o item “%ls” automaticamente, ele já está sendo " -"carregado automaticamente. " #: src/builtin_argparse.cpp:36 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid option spec '%ls' at char '%lc'\n" -msgstr "%ls: Opção inválida '%ls' at char '%lc'\n" +msgstr "" #: src/builtin_argparse.cpp:129 #, c-format @@ -39,14 +37,14 @@ msgid "%ls: Mutually exclusive flags '%ls' and `%ls` seen\n" msgstr "" #: src/builtin_argparse.cpp:160 -#, fuzzy, c-format +#, c-format msgid "%ls: exclusive flag string '%ls' is not valid\n" -msgstr "%ls: Valor semeado “%ls” não é um número válido\n" +msgstr "" #: src/builtin_argparse.cpp:176 -#, fuzzy, c-format +#, c-format msgid "%ls: exclusive flag '%ls' is not valid\n" -msgstr "%ls: Valor semeado “%ls” não é um número válido\n" +msgstr "" #: src/builtin_argparse.cpp:196 #, c-format @@ -85,14 +83,14 @@ msgid "%ls: No option specs were provided\n" msgstr "" #: src/builtin_argparse.cpp:391 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid --min-args value '%ls'\n" -msgstr "%ls: Nome inválido de variável “%ls”\n" +msgstr "" #: src/builtin_argparse.cpp:401 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid --max-args value '%ls'\n" -msgstr "%ls: Nome inválido de variável “%ls”\n" +msgstr "" #: src/builtin_bg.cpp:23 #, c-format @@ -114,9 +112,9 @@ msgid "%ls: There are no suitable jobs\n" msgstr "%ls: Não há tarefas adequadas\n" #: src/builtin_bg.cpp:80 src/builtin_disown.cpp:82 src/builtin_wait.cpp:147 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is not a valid job specifier\n" -msgstr "%ls: “%ls” não é um nome válido para variável\n" +msgstr "" #: src/builtin_bg.cpp:95 src/builtin_disown.cpp:89 src/builtin_wait.cpp:163 #, c-format @@ -124,24 +122,24 @@ msgid "%ls: Could not find job '%d'\n" msgstr "" #: src/builtin_bind.cpp:141 -#, fuzzy, c-format +#, c-format msgid "%ls: No key with name '%ls' found\n" -msgstr "%ls: No key with name “%ls” found\n" +msgstr "" #: src/builtin_bind.cpp:143 -#, fuzzy, c-format +#, c-format msgid "%ls: Key with name '%ls' does not have any mapping\n" -msgstr "%ls: Key with name “%ls” does not have any mapping\n" +msgstr "" #: src/builtin_bind.cpp:146 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown error trying to bind to key named '%ls'\n" -msgstr "%ls: Unknown error trying to bind to key named “%ls”\n" +msgstr "" #: src/builtin_bind.cpp:239 -#, fuzzy, c-format +#, c-format msgid "%ls: No binding found for key '%ls'\n" -msgstr "%s: No description for type %s\n" +msgstr "" #: src/builtin_bind.cpp:242 #, c-format @@ -199,29 +197,29 @@ msgid "%ls: Could not set PWD variable\n" msgstr "%ls: Não é possível modificar a variável PWD\n" #: src/builtin_commandline.cpp:344 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown input function '%ls'" -msgstr "%ls: Unknown input function “%ls”" +msgstr "" #: src/builtin_complete.cpp:183 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid token '%ls'\n" -msgstr "%ls: Opção inválida -- %lc\n" +msgstr "" #: src/builtin_complete.cpp:203 -#, fuzzy, c-format +#, c-format msgid "%ls: -s requires a non-empty string\n" -msgstr "%ls: Nome da variável não pode ser a string vazia\n" +msgstr "" #: src/builtin_complete.cpp:211 -#, fuzzy, c-format +#, c-format msgid "%ls: -l requires a non-empty string\n" -msgstr "%ls: Nome da variável não pode ser a string vazia\n" +msgstr "" #: src/builtin_complete.cpp:219 -#, fuzzy, c-format +#, c-format msgid "%ls: -o requires a non-empty string\n" -msgstr "%ls: Nome da variável não pode ser a string vazia\n" +msgstr "" #: src/builtin_contains.cpp:75 #, c-format @@ -243,9 +241,9 @@ msgid "%ls: Not inside of loop\n" msgstr "%ls: Não está dentro de laço\n" #: src/builtin.cpp:372 -#, fuzzy, c-format +#, c-format msgid "%ls: Command not valid at an interactive prompt\n" -msgstr "%ls: Do no interactive prompting\n" +msgstr "" #: src/builtin.cpp:410 src/builtin.cpp:460 msgid "Test a condition" @@ -323,9 +321,8 @@ msgid "Count the number of arguments" msgstr "Conta o número de argumentos" #: src/builtin.cpp:430 -#, fuzzy msgid "Remove job from job list" -msgstr "Read job from file" +msgstr "" #: src/builtin.cpp:431 msgid "Print arguments" @@ -384,9 +381,8 @@ msgid "Print currently running jobs" msgstr "Imprime as tarefas em execução" #: src/builtin.cpp:445 -#, fuzzy msgid "Evaluate math expressions" -msgstr "Evaluate expression" +msgstr "" #: src/builtin.cpp:446 msgid "Negate exit status of job" @@ -496,43 +492,41 @@ msgstr "" "está sob controle de tarefas\n" #: src/builtin_function.cpp:68 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown signal '%ls'" -msgstr "%ls: Sinal desconhecido “%ls”" +msgstr "" #: src/builtin_function.cpp:113 -#, fuzzy, c-format +#, c-format msgid "%ls: Cannot find calling job for event handler" -msgstr "%ls: Não é possível encontrar tarefa para o manipulador de eventos" +msgstr "" #: src/builtin_function.cpp:121 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid process id '%ls'" -msgstr "%ls: ID de processo inválido '%ls'" +msgstr "" #: src/builtin_function.cpp:179 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected function name" -msgstr "%ls: Esperava nome de função" +msgstr "" #: src/builtin_function.cpp:185 -#, fuzzy, c-format +#, c-format msgid "%ls: Illegal function name '%ls'" -msgstr "%ls: Nome de função ilegal “%ls”" +msgstr "" #: src/builtin_function.cpp:192 -#, fuzzy, c-format +#, c-format msgid "" "%ls: The name '%ls' is reserved,\n" "and can not be used as a function name" msgstr "" -"%ls: O nome “%ls” é reservado,\n" -"e não pode ser usado como um nome de função" #: src/builtin_function.cpp:239 -#, fuzzy, c-format +#, c-format msgid "%ls: Unexpected positional argument '%ls'" -msgstr "%s: Esperava argumento -- %s\\n" +msgstr "" #: src/builtin_functions.cpp:275 src/builtin.h:38 #, c-format @@ -550,9 +544,9 @@ msgid "%ls: Function '%ls' does not exist\n" msgstr "%ls: Função “%ls” não existe\n" #: src/builtin_functions.cpp:307 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected exactly one function name for --details\n" -msgstr "%ls: Esperava exatamente um nome de função\n" +msgstr "" #: src/builtin_functions.cpp:342 #, c-format @@ -584,9 +578,9 @@ msgid "%ls: you cannot use any options with the %ls command\n" msgstr "" #: src/builtin_history.cpp:163 -#, fuzzy, c-format +#, c-format msgid "%ls: max value '%ls' is not a valid number\n" -msgstr "%ls: Valor semeado “%ls” não é um número válido\n" +msgstr "" #: src/builtin_history.cpp:261 msgid "builtin history delete only supports --exact\n" @@ -613,9 +607,8 @@ msgid "stopped" msgstr "parado" #: src/builtin_jobs.cpp:67 -#, fuzzy msgid "running" -msgstr "running" +msgstr "" #: src/builtin_jobs.cpp:76 msgid "Group\n" @@ -635,9 +628,9 @@ msgid "%ls: There are no jobs\n" msgstr "%ls: Não há tarefas\n" #: src/builtin_math.cpp:44 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is not a valid scale value\n" -msgstr "%ls: “%ls” não é um nome válido para variável\n" +msgstr "" #: src/builtin_math.cpp:148 #, c-format @@ -650,14 +643,13 @@ msgid "More than %d var names in math expression." msgstr "" #: src/builtin_math.cpp:194 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid expression: %ls\n" -msgstr "%ls: ID de processo inválido '%ls'\n" +msgstr "" #: src/builtin_printf.cpp:243 -#, fuzzy msgid "Number out of range" -msgstr "Number of top servers" +msgstr "" #: src/builtin_printf.cpp:249 #, c-format @@ -714,9 +706,9 @@ msgid "%ls: You can't specify both -p and -P\n" msgstr "" #: src/builtin_realpath.cpp:44 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid path: %ls\n" -msgstr "%ls: Estado inválido: %ls\n" +msgstr "" #: src/builtin_return.cpp:100 #, c-format @@ -734,9 +726,9 @@ msgid "%ls: Expected an argument\n" msgstr "%ls: Esperava um argumento\n" #: src/builtin_set.cpp:62 -#, fuzzy, c-format +#, c-format msgid "%ls: Warning: $%ls entry \"%ls\" is not valid (%s)\n" -msgstr "%ls: Valor semeado $%ls “%ls” não é um número válido (%s)\n" +msgstr "" #: src/builtin_set.cpp:64 #, c-format @@ -749,14 +741,14 @@ msgid "%ls: You provided %d indexes but %d values\n" msgstr "" #: src/builtin_set.cpp:66 -#, fuzzy, c-format +#, c-format msgid "%ls: Erase needs a variable name\n" -msgstr "%ls: Erase needs a variable name\n" +msgstr "" #: src/builtin_set.cpp:67 -#, fuzzy, c-format +#, c-format msgid "%ls: Array index out of bounds\n" -msgstr "%ls: Índice do array fora dos limites\n" +msgstr "" #: src/builtin_set.cpp:69 #, c-format @@ -771,24 +763,24 @@ msgid "%ls: Tried to change the read-only variable '%ls'\n" msgstr "%ls: Tentou mudar a variável somente leitura “%ls”\n" #: src/builtin_set.cpp:310 -#, fuzzy, c-format +#, c-format msgid "%ls: Tried to set the special variable '%ls' with the wrong scope\n" -msgstr "%ls: Tentou mudar a variável somente leitura “%ls”\n" +msgstr "" #: src/builtin_set.cpp:317 -#, fuzzy, c-format +#, c-format msgid "%ls: Tried to set the special variable '%ls' to an invalid value\n" -msgstr "%ls: Tentou mudar a variável somente leitura “%ls”\n" +msgstr "" #: src/builtin_set.cpp:355 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid index starting at '%ls'\n" -msgstr "%ls: Invalid index starting at “%ls”\n" +msgstr "" #: src/builtin_set.cpp:537 -#, fuzzy, c-format +#, c-format msgid "$%ls: not set in %ls scope\n" -msgstr "$%ls: Não está dentro de laço %ls\n" +msgstr "" #: src/builtin_set.cpp:542 msgid "exported" @@ -804,14 +796,14 @@ msgid "$%ls: set in %ls scope, %ls, with %d elements\n" msgstr "" #: src/builtin_set.cpp:554 -#, fuzzy, c-format +#, c-format msgid "$%ls[%d]: length=%d value=|%ls|\n" -msgstr "$%ls[%d]: length=%d value=|%ls|\n" +msgstr "" #: src/builtin_set.cpp:578 -#, fuzzy, c-format +#, c-format msgid "$%ls: invalid var name\n" -msgstr "$%ls: Estado inválido\n" +msgstr "" #: src/builtin_set.cpp:584 #, c-format @@ -834,9 +826,9 @@ msgid "%ls: Error while reading file '%ls'\n" msgstr "%ls: Erro ao ler o arquivo “%ls”\n" #: src/builtin_status.cpp:155 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid level value '%ls'\n" -msgstr "%ls: Nome inválido de variável “%ls”\n" +msgstr "" #: src/builtin_status.cpp:276 msgid "This is a login shell\n" @@ -868,9 +860,8 @@ msgid "Standard input" msgstr "Entrada padrão" #: src/builtin_status.cpp:320 -#, fuzzy msgid "Not a function" -msgstr "função" +msgstr "" #: src/builtin_string.cpp:39 #, c-format @@ -878,68 +869,68 @@ msgid "%ls: Expected argument\n" msgstr "%ls: Esperava argumento\n" #: src/builtin_string.cpp:160 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid escape style '%ls'\n" -msgstr "%ls: Invalid index starting at “%ls”\n" +msgstr "" #: src/builtin_string.cpp:238 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid length value '%ls'\n" -msgstr "%ls: Nome inválido de variável “%ls”\n" +msgstr "" #: src/builtin_string.cpp:258 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid max value '%ls'\n" -msgstr "%ls: Nome inválido de variável “%ls”\n" +msgstr "" #: src/builtin_string.cpp:275 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid count value '%ls'\n" -msgstr "%ls: Nome inválido de variável “%ls”\n" +msgstr "" #: src/builtin_string.cpp:321 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid start value '%ls'\n" -msgstr "%ls: Invalid index starting at “%ls”\n" +msgstr "" #: src/builtin_string.cpp:743 -#, fuzzy, c-format +#, c-format msgid "%ls: Regular expression compile error: %ls\n" -msgstr "%ls: Não é possível compilar a expressão regular com erro %ls\n" +msgstr "" #: src/builtin_string.cpp:782 -#, fuzzy, c-format +#, c-format msgid "%ls: Regular expression match error: %ls\n" -msgstr "%ls: Não é possível compilar a expressão regular com erro %ls\n" +msgstr "" #: src/builtin_string.cpp:787 -#, fuzzy, c-format +#, c-format msgid "%ls: Regular expression internal error\n" -msgstr "%ls: Não é possível compilar a expressão regular com erro\n" +msgstr "" #: src/builtin_string.cpp:903 msgid "--entire and --index are mutually exclusive" msgstr "" #: src/builtin_string.cpp:1055 -#, fuzzy, c-format +#, c-format msgid "%ls: Regular expression substitute error: %ls\n" -msgstr "%ls: Não é possível compilar a expressão regular com erro %ls\n" +msgstr "" #: src/builtin_test.cpp:608 -#, fuzzy, c-format +#, c-format msgid "invalid integer '%ls'" -msgstr "precisão inválida: %ls" +msgstr "" #: src/builtin_ulimit.cpp:285 -#, fuzzy, c-format +#, c-format msgid "%ls: New limit cannot be an empty string\n" -msgstr "%ls: Nome da variável não pode ser a string vazia\n" +msgstr "" #: src/builtin_ulimit.cpp:297 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid limit '%ls'\n" -msgstr "%ls: Nome inválido de variável “%ls”\n" +msgstr "" #: src/common.cpp:1551 msgid "Current terminal parameters have rows and/or columns set to zero." @@ -963,9 +954,9 @@ msgid "This is a bug. Break on bugreport to debug." msgstr "" #: src/common.cpp:1782 -#, fuzzy, c-format +#, c-format msgid "If you can reproduce it, please send a bug report to %s." -msgstr "If this error can be reproduced, please send a bug report to %s." +msgstr "" #: src/common.cpp:1792 msgid "empty" @@ -982,9 +973,8 @@ msgid "Variable: %ls" msgstr "Variável: %ls" #: src/env.cpp:242 -#, fuzzy msgid "Tried to pop empty environment stack." -msgstr "Tentou tirar de uma pilha de ambiente vazia." +msgstr "" #: src/env.cpp:537 #, c-format @@ -997,35 +987,31 @@ msgid "Could not set up terminal using the fallback terminal type '%s'." msgstr "" #: src/env.cpp:574 -#, fuzzy msgid "Could not set up terminal." -msgstr "Não foi possível preparar terminal" +msgstr "" #: src/env.cpp:576 -#, fuzzy msgid "TERM environment variable not set." -msgstr "Handle environment variables" +msgstr "" #: src/env.cpp:578 -#, fuzzy, c-format +#, c-format msgid "TERM environment variable set to '%ls'." -msgstr "TERM environment variable set to '%ls'." +msgstr "" #: src/env.cpp:579 -#, fuzzy msgid "Check that this terminal type is supported on this system." -msgstr "Verifique se seu tipo de terminal é suportado neste sistema" +msgstr "" #: src/env.cpp:673 -#, fuzzy msgid "" "Could not determine current working directory. Is your locale set correctly?" -msgstr "Print the current working directory, shortend to fit the prompt" +msgstr "" #: src/env_universal_common.cpp:461 -#, fuzzy, c-format +#, c-format msgid "Unable to write to universal variables file '%ls': %s" -msgstr "Incapaz de expandir o nome da variável “%ls”: %s" +msgstr "" #: src/env_universal_common.cpp:481 #, c-format @@ -1033,9 +1019,9 @@ msgid "Unable to rename file from '%ls' to '%ls': %s" msgstr "" #: src/env_universal_common.cpp:533 -#, fuzzy, c-format +#, c-format msgid "Unable to open temporary file '%ls': %s" -msgstr "Incapaz de expandir o nome da variável “%ls”: %s" +msgstr "" #: src/env_universal_common.cpp:543 #, c-format @@ -1043,9 +1029,9 @@ msgid "Locking the universal var file took too long (%.3f seconds)." msgstr "" #: src/env_universal_common.cpp:595 -#, fuzzy, c-format +#, c-format msgid "Unable to open universal variable file '%ls': %s" -msgstr "Incapaz de expandir o nome da variável “%ls”: %s" +msgstr "" #: src/env_universal_common.cpp:970 #, c-format @@ -1068,59 +1054,58 @@ msgid "Unable to memory map shared memory object with path '%s': %s" msgstr "" #: src/env_universal_common.cpp:1396 -#, fuzzy, c-format +#, c-format msgid "Unable to make a pipe for universal variables using '%ls': %s" -msgstr "Incapaz de expandir o nome da variável “%ls”: %s" +msgstr "" #: src/env_universal_common.cpp:1405 -#, fuzzy, c-format +#, c-format msgid "Unable to open a pipe for universal variables using '%ls': %s" -msgstr "Incapaz de expandir o nome da variável “%ls”: %s" +msgstr "" #: src/event.cpp:119 -#, fuzzy, c-format +#, c-format msgid "signal handler for %ls (%ls)" -msgstr "signal handler for %ls (%ls)" +msgstr "" #: src/event.cpp:124 -#, fuzzy, c-format +#, c-format msgid "handler for variable '%ls'" -msgstr "handler for variable “%ls”" +msgstr "" #: src/event.cpp:129 -#, fuzzy, c-format +#, c-format msgid "exit handler for process %d" -msgstr "exit handler for process %d" +msgstr "" #: src/event.cpp:134 src/event.cpp:145 -#, fuzzy, c-format +#, c-format msgid "exit handler for job %d, '%ls'" -msgstr "exit handler for job %d, “%ls”" +msgstr "" #: src/event.cpp:137 -#, fuzzy, c-format +#, c-format msgid "exit handler for job with process group %d" -msgstr "exit handler for job with process group %d" +msgstr "" #: src/event.cpp:148 -#, fuzzy, c-format +#, c-format msgid "exit handler for job with job id %d" -msgstr "exit handler for job with job id %d" +msgstr "" #: src/event.cpp:153 -#, fuzzy, c-format +#, c-format msgid "handler for generic event '%ls'" -msgstr "handler for generic event “%ls”" +msgstr "" #: src/event.cpp:157 -#, fuzzy, c-format +#, c-format msgid "Unknown event type '0x%x'" -msgstr "Unknown event type '0x%x'" +msgstr "" #: src/event.cpp:403 -#, fuzzy msgid "Signal list overflow. Signals have been ignored." -msgstr "Signal list overflow. Signals have been ignored." +msgstr "" #: src/exec.cpp:45 #, c-format @@ -1164,9 +1149,8 @@ msgid "Job: %ls" msgstr "Tarefa: %ls" #: src/expand.cpp:67 -#, fuzzy msgid "Shell process" -msgstr "Processo shell" +msgstr "" #: src/expand.cpp:70 msgid "Last background job" @@ -1178,18 +1162,17 @@ msgid "Unexpected failure to convert pid '%ls' to integer\n" msgstr "" #: src/expand.cpp:984 -#, fuzzy msgid "Mismatched brackets" -msgstr "Erro de parênteses" +msgstr "" #: src/expand.cpp:1063 msgid "Too much data emitted by command substitution so it was discarded\n" msgstr "" #: src/fish.cpp:275 src/fish_indent.cpp:419 -#, fuzzy, c-format +#, c-format msgid "Invalid value '%s' for debug-level flag" -msgstr "Invalid value “%s” for debug level switch" +msgstr "" #: src/fish.cpp:302 #, c-format @@ -1197,9 +1180,9 @@ msgid "%s, version %s\n" msgstr "%s, versão %s\n" #: src/fish.cpp:316 src/fish_indent.cpp:434 -#, fuzzy, c-format +#, c-format msgid "Invalid value '%s' for debug-stack-frames flag" -msgstr "Invalid value “%s” for debug level switch" +msgstr "" #: src/fish.cpp:366 msgid "Can not use the no-execute mode when running an interactive session" @@ -1229,9 +1212,8 @@ msgid "Opening \"%s\" failed: %s\n" msgstr "" #: src/fish_indent.cpp:469 -#, fuzzy msgid "Too many arguments\n" -msgstr "Too many arguments\n" +msgstr "" #: src/fish_key_reader.cpp:241 #, c-format @@ -1260,9 +1242,9 @@ msgid "" msgstr "" #: src/io.cpp:57 -#, fuzzy, c-format +#, c-format msgid "An error occured while reading output from code block on fd %d" -msgstr "Ocorreu um erro ao ler saída de bloco de código %d" +msgstr "" #: src/output.cpp:559 #, c-format @@ -1343,9 +1325,8 @@ msgid "function invocation block" msgstr "bloco de chamada de função" #: src/parser.cpp:48 -#, fuzzy msgid "function invocation block with no variable shadowing" -msgstr "bloco de chamada de função sem mascaramento de variáveis" +msgstr "" #: src/parser.cpp:51 msgid "'switch' block" @@ -1368,27 +1349,26 @@ msgid "block created by the . builtin" msgstr "bloco criado pelo builtin ." #: src/parser.cpp:66 -#, fuzzy msgid "event handler block" -msgstr "bloco gerenciador de evento" +msgstr "" #: src/parser.cpp:69 msgid "unknown/invalid block" msgstr "bloco desconhecido/inválido" #: src/parser.cpp:306 -#, fuzzy, c-format +#, c-format msgid "Could not write profiling information to file '%s'" -msgstr "Could not write profiling information to file “%s”" +msgstr "" #: src/parser.cpp:308 msgid "Time\tSum\tCommand\n" msgstr "Tempo\tSoma\tComando\n" #: src/parser.cpp:366 -#, fuzzy, c-format +#, c-format msgid "in event handler: %ls\n" -msgstr "no gerenciador de evento: %ls\n" +msgstr "" #: src/parser.cpp:385 #, c-format @@ -1451,14 +1431,13 @@ msgid "The '%ls' command can not be used in a pipeline" msgstr "O comand “%ls” não pode ser usado em pipe" #: src/parse_util.cpp:32 -#, fuzzy, c-format +#, c-format msgid "The '%ls' command can not be used immediately after a backgrounded job" -msgstr "O comand “%ls” não pode ser usado em pipe" +msgstr "" #: src/parse_util.cpp:36 -#, fuzzy msgid "Backgrounded commands can not be used as conditionals" -msgstr "This command can not be used in a pipeline" +msgstr "" #: src/path.cpp:25 #, c-format @@ -1466,9 +1445,9 @@ msgid "Error while searching for command '%ls'" msgstr "Erro ao procurar por comando “%ls”" #: src/path.cpp:276 -#, fuzzy, c-format +#, c-format msgid "Unable to locate the %ls directory." -msgstr "Unable to locate the %ls directory." +msgstr "" #: src/path.cpp:277 #, c-format @@ -1481,9 +1460,9 @@ msgid "Unable to locate %ls directory derived from $%ls: '%ls'." msgstr "" #: src/path.cpp:283 -#, fuzzy, c-format +#, c-format msgid "The error was '%s'." -msgstr "Tokenizer error: “%ls”" +msgstr "" #: src/path.cpp:284 #, c-format @@ -1504,9 +1483,9 @@ msgid "Job %d, " msgstr "" #: src/proc.cpp:587 -#, fuzzy, c-format +#, c-format msgid "%ls: %ls'%ls' terminated by signal %ls (%ls)" -msgstr "%ls: Tarefa %d, “%ls” terminado pelo sinal %ls (%ls)" +msgstr "" #: src/proc.cpp:595 #, c-format @@ -1518,9 +1497,9 @@ msgid "An error occured while reading output from code block" msgstr "Ocorreu um erro ao ler saída de bloco de código" #: src/proc.cpp:856 -#, fuzzy, c-format +#, c-format msgid "Could not send job %d ('%ls') with pgid %d to foreground" -msgstr "Não foi possível enviar tarefa %d (“%ls”) para primeiro plano pgid %d" +msgstr "" #: src/proc.cpp:885 #, c-format @@ -1579,24 +1558,18 @@ msgid "Pop null reader block" msgstr "" #: src/reader.cpp:2160 -#, fuzzy msgid "There are still jobs active:\n" -msgstr "Não há tarefas adequadas\n" +msgstr "" #: src/reader.cpp:2161 -#, fuzzy msgid "" "\n" " PID Command\n" msgstr "" -"\n" -" Comando\n" #: src/reader.cpp:2170 -#, fuzzy msgid "A second attempt to exit will terminate them.\n" msgstr "" -"Há tarefas paradas. Uma segunda tentativa de sair forçará seu término.\n" #: src/reader.cpp:2171 msgid "" @@ -1800,9 +1773,8 @@ msgid "Unexpected end of string, square brackets do not match" msgstr "Final inesperado de string, colchetes não batem" #: src/tokenizer.cpp:35 -#, fuzzy msgid "Unexpected end of string, incomplete escape sequence" -msgstr "Final inesperado de string, aspas não batem" +msgstr "" #: src/tokenizer.cpp:38 msgid "Invalid input/output redirection" @@ -1915,9 +1887,9 @@ msgid "getcwd() failed with errno %d/%s" msgstr "" #: src/builtin.h:35 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected argument for option %ls\n" -msgstr "%ls: Esperava um argumento, obteve %d\n" +msgstr "" #: src/builtin.h:41 #, c-format @@ -1944,34 +1916,34 @@ msgid "%ls: Unknown option '%ls'\n" msgstr "%ls: Opção desconhecida “%ls”\n" #: src/builtin.h:54 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected %d args, got %d\n" -msgstr "%ls: Esperava %d argumento, obteve %d\n" +msgstr "" #: src/builtin.h:55 -#, fuzzy, c-format +#, c-format msgid "%ls %ls: Expected %d args, got %d\n" -msgstr "%ls %ls: Esperava %d argumento, obteve %d\n" +msgstr "" #: src/builtin.h:56 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected at least %d args, got only %d\n" -msgstr "%ls: Esperava %d argumento, obteve %d\n" +msgstr "" #: src/builtin.h:57 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected at most %d args, got %d\n" -msgstr "%ls: Esperava %d argumento, obteve %d\n" +msgstr "" #: src/builtin.h:60 -#, fuzzy, c-format +#, c-format msgid "%ls: Variable name '%ls' is not valid. See `help identifiers`.\n" -msgstr "%ls: Valor semeado “%ls” não é um número válido\n" +msgstr "" #: src/builtin.h:63 -#, fuzzy, c-format +#, c-format msgid "%ls: mode name '%ls' is not valid. See `help identifiers`.\n" -msgstr "%ls: Valor semeado “%ls” não é um número válido\n" +msgstr "" #: src/builtin.h:66 #, c-format @@ -1984,14 +1956,14 @@ msgid "%ls: Argument '%ls' is not a number\n" msgstr "%ls: Argumento “%ls” não é número\n" #: src/builtin.h:72 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected a subcommand to follow the command\n" -msgstr "%ls: Esperava um argumento, obteve\n" +msgstr "" #: src/builtin.h:73 -#, fuzzy, c-format +#, c-format msgid "%ls: Subcommand '%ls' is not valid\n" -msgstr "%ls: “%ls” não é um arquivo\n" +msgstr "" #: src/builtin.h:76 #, c-format @@ -2044,24 +2016,21 @@ msgid "Illegal file descriptor in redirection '%ls'" msgstr "Descritor de arquivo ilegal na redireção “%ls”" #: src/parse_constants.h:248 -#, fuzzy, c-format +#, c-format msgid "No matches for wildcard '%ls'. See `help expand`." -msgstr "Não há combinações para curinga “%ls”." +msgstr "" #: src/parse_constants.h:251 -#, fuzzy msgid "'break' while not inside of loop" -msgstr "Comando break fora de loop" +msgstr "" #: src/parse_constants.h:254 -#, fuzzy msgid "'continue' while not inside of loop" -msgstr "Comando continue fora de loop" +msgstr "" #: src/parse_constants.h:257 -#, fuzzy msgid "'return' outside of function definition" -msgstr "Comando builtin “return” fora de definição de função" +msgstr "" #: src/parse_constants.h:262 #, c-format @@ -2130,16 +2099,14 @@ msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:1 #: /tmp/fish/explicit/share/completions/emerge.fish:4 -#, fuzzy msgid "All base system packages" -msgstr "Erase built packages" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:2 #: /tmp/fish/explicit/share/completions/emerge.fish:5 #: /tmp/fish/explicit/share/completions/emerge.fish:6 -#, fuzzy msgid "All packages in world" -msgstr "Sync packages installed" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:3 #: /tmp/fish/implicit/share/completions/aura.fish:90 @@ -2150,9 +2117,8 @@ msgstr "Sync packages installed" #: /tmp/fish/implicit/share/completions/pacman.fish:55 #: /tmp/fish/implicit/share/completions/yaourt.fish:69 #: /tmp/fish/implicit/share/completions/yaourt.fish:76 -#, fuzzy msgid "Installed package" -msgstr "Install new package" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:7 msgid "Packages that are linked to preserved libs" @@ -2167,88 +2133,72 @@ msgid "Usage overview of emerge" msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:10 -#, fuzzy msgid "Help on subject system" -msgstr "Help section" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:11 -#, fuzzy msgid "Help on subject config" -msgstr "Help section" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:12 -#, fuzzy msgid "Help on subject sync" -msgstr "Help section" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:13 -#, fuzzy msgid "Use colors in output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:14 -#, fuzzy msgid "Don't use colors in output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:15 -#, fuzzy msgid "Pull in build time dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/explicit/share/completions/emerge.fish:16 -#, fuzzy msgid "Don't pull in build time dependencies" -msgstr "Don't automatically fulfill dependencies" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:1 -#, fuzzy msgid "list all packages owning file(s)" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:2 msgid "check MD5sums and timestamps of package" msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:3 -#, fuzzy msgid "list all packages depending on specified package" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:4 -#, fuzzy msgid "display a dependency tree for package" -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:5 -#, fuzzy msgid "list files owned by package" -msgstr "List files in package" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:6 -#, fuzzy msgid "list all packages with specified useflag" -msgstr "Query an (uninstalled) package in specified file" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:7 -#, fuzzy msgid "list all packages matching pattern" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:8 -#, fuzzy msgid "print size of files contained in package" -msgstr "Display the trigger scripts contained in the package" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:9 -#, fuzzy msgid "display USE flags for package" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:10 -#, fuzzy msgid "print full path to ebuild for package" -msgstr "Print full path of source" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:1 msgid "Build a gem from a gemspec" @@ -2259,48 +2209,40 @@ msgid "Adjust RubyGems certificate settings" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:3 -#, fuzzy msgid "Check installed gems" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:4 -#, fuzzy msgid "Cleanup old versions of installed gems in the local repository" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:5 -#, fuzzy msgid "Display the contents of the installed gems" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:6 -#, fuzzy msgid "Show the dependencies of an installed gem" -msgstr "Don't check dependencies before uninstalling the packages" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:7 -#, fuzzy msgid "Display RubyGems environmental information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:8 -#, fuzzy msgid "Provide help on the 'gem' command" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:9 -#, fuzzy msgid "Install a gem into the local repository" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:10 msgid "Display all gems whose name starts with STRING" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:11 -#, fuzzy msgid "Query gem information in local or remote repositories" -msgstr "Display information about a local or remote item" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:12 msgid "Generates RDoc for pre-installed gems" @@ -2311,28 +2253,24 @@ msgid "Display all gems whose name contains STRING" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:14 -#, fuzzy msgid "Display gem specification (in yaml)" -msgstr "Display the last modification time of file" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:15 -#, fuzzy msgid "Uninstall a gem from the local repository" -msgstr "Remove an entry from the repository" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:16 -#, fuzzy msgid "Unpack an installed gem to the current directory" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:17 msgid "Update the named gem (or all installed gems) in the local repository" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:18 -#, fuzzy msgid "display the remote gem servers" -msgstr "File to grab servers" +msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:19 msgid "show some examples of usage" @@ -2355,14 +2293,12 @@ msgid "Enables an existing service" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:4 -#, fuzzy msgid "Disables an existing service" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:5 -#, fuzzy msgid "Removes the specified service name from the service cache" -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:6 msgid "Forces an existing service to start" @@ -2389,14 +2325,12 @@ msgid "Prints a description of a domain or service" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:12 -#, fuzzy msgid "Prints information about the service cache" -msgstr "Output extra information about the work being done" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:13 -#, fuzzy msgid "Prints which services are disabled" -msgstr "Print service status" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:14 msgid "" @@ -2405,14 +2339,12 @@ msgid "" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:15 -#, fuzzy msgid "Prints port information about a process" -msgstr "Give more information during processing" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:16 -#, fuzzy msgid "Prints port information about the host" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:17 msgid "Resolves a port name from a process to an endpoint in launchd" @@ -2423,9 +2355,8 @@ msgid "Reads or modifies launchd's resource limits" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:19 -#, fuzzy msgid "Prints performance statistics for a service" -msgstr "Write prototypes to file" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:20 msgid "" @@ -2437,18 +2368,16 @@ msgid "Modifies persistent configuration parameters for launchd domains" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:22 -#, fuzzy msgid "Dumps launchd state to stdout" -msgstr "Decompress to stdout" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:23 msgid "Dumps the jetsam properties category for all services" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:24 -#, fuzzy msgid "Initiates a system reboot of the specified type" -msgstr "Show filesystems of specified type" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:25 msgid "Brings the system up from single-user mode with a console shell" @@ -2463,24 +2392,20 @@ msgid "Unloads a service or directory of services" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:28 -#, fuzzy msgid "Unloads the specified service name" -msgstr "Use specified keyserver" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:29 -#, fuzzy msgid "Lists information about services" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:30 -#, fuzzy msgid "Starts the specified service" -msgstr "Use specified keyserver" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:31 -#, fuzzy msgid "Stops the specified service if it is running" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:32 msgid "" @@ -2505,9 +2430,8 @@ msgid "Execute a program in the bootstrap context of a given user" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:37 -#, fuzzy msgid "Submit a basic job from the command line" -msgstr "Obtém ou altera o buffer da linha de comando" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:38 msgid "Prints the PID of the launchd controlling the session" @@ -2518,28 +2442,24 @@ msgid "Prints the UID of the current launchd session" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:40 -#, fuzzy msgid "Prints the name of the current launchd session" -msgstr "Pula o restante da iteração atual do laço mais interno" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:41 -#, fuzzy msgid "Prints a description of an error" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:42 msgid "Prints the launchd variant" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:43 -#, fuzzy msgid "Prints the launchd version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:44 -#, fuzzy msgid "Prints the usage for a given subcommand" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:1 #: /tmp/fish/explicit/share/completions/mdadm.fish:2 @@ -2548,9 +2468,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:3 #: /tmp/fish/explicit/share/completions/mdadm.fish:4 -#, fuzzy msgid "Use last 1.x format superblock" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:5 msgid "Use 1.0 format superblock" @@ -2579,9 +2498,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:11 #: /tmp/fish/explicit/share/completions/mdadm.fish:12 #: /tmp/fish/explicit/share/completions/mdadm.fish:13 -#, fuzzy msgid "Stripped volume (RAID 0)" -msgstr "Specify conffile" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:14 #: /tmp/fish/explicit/share/completions/mdadm.fish:15 @@ -2619,9 +2537,8 @@ msgid "Pseudo RAID layer for single device (akin faulty RAID 1)" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:28 -#, fuzzy msgid "Container" -msgstr "Set context size" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:29 msgid "Alias of left-asymmetric" @@ -2644,9 +2561,8 @@ msgid "Alias of write-transient" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:34 -#, fuzzy msgid "Alias of read-transient" -msgstr "Nome alternativo para atrm" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:35 msgid "Alias of write-persistent" @@ -2657,60 +2573,50 @@ msgid "Alias of read-persistent" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:37 -#, fuzzy msgid "Alias of read-fixable" -msgstr "File is readable" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:38 -#, fuzzy msgid "Use standard format (default)" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:39 -#, fuzzy msgid "Use a non-partitionable array" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:40 #: /tmp/fish/explicit/share/completions/mdadm.fish:41 #: /tmp/fish/explicit/share/completions/mdadm.fish:42 -#, fuzzy msgid "Use a partitionable array" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:43 msgid "Remove superblock misalignement from SPARC kernel 2.2" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:44 -#, fuzzy msgid "Correct superblock summaries" -msgstr "Update sources" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:45 -#, fuzzy msgid "Update array UUID" -msgstr "Update sources" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:46 -#, fuzzy msgid "Update array name" -msgstr "Service name" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:47 -#, fuzzy msgid "Update array nodes" -msgstr "Update sources" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:48 -#, fuzzy msgid "Update array homehost" -msgstr "Update sources" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:49 -#, fuzzy msgid "Update array cluster name" -msgstr "Service name" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:50 msgid "Mark the array as dirty, thus forcing resync" @@ -2721,18 +2627,16 @@ msgid "Reverse superblock endianness" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:52 -#, fuzzy msgid "Refresh device size" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:53 msgid "Assume bitmap absence" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:54 -#, fuzzy msgid "Reserve space for bad block list" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:55 msgid "Free reserved space for bad block list" @@ -2747,9 +2651,8 @@ msgid "Reset preferred minor to current one" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:58 -#, fuzzy msgid "Abort currently running actions" -msgstr "Imprime as tarefas em execução" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:59 msgid "Abort currently running actions, prevent their restart" @@ -2760,108 +2663,89 @@ msgid "Scrub the array (i.e. check constistency)" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:61 -#, fuzzy msgid "Check, then resync" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/explicit/share/completions/set.fish:1 -#, fuzzy msgid "Locale" -msgstr "Locale" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:1 #: /tmp/fish/explicit/share/completions/telnet.fish:6 -#, fuzzy msgid "Specifies an 8-bit data path" -msgstr "Specifies an 8-bit data path" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:2 -#, fuzzy msgid "Do not try to negotiate TELNET BINARY option" -msgstr "Do not try to negotiate TELNET BINARY option" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:3 -#, fuzzy msgid "Stops any character from being recognized as an escape character" -msgstr "Stops any character from being recognized as an escape character" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:4 -#, fuzzy msgid "Use local Kerberos authentication, if possible" -msgstr "Use local Kerberos authentication, if possible" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:5 -#, fuzzy msgid "Specifies no automatic login to remote system" -msgstr "Specifies no automatic login to remote system" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:7 -#, fuzzy msgid "Attempt automatic login" -msgstr "Attempt automatic login" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:8 -#, fuzzy msgid "Disables reading user's .telnetrc" -msgstr "Disables reading user's .telnetrc" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:9 -#, fuzzy msgid "Sets debug mode" -msgstr "Sets debug mode" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:10 -#, fuzzy msgid "Sets IP TOS" -msgstr "Sets IP TOS" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:11 -#, fuzzy msgid "Disables specified type of authentication" -msgstr "Disables specified type of authentication" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:12 msgid "User login" msgstr "Login do usuário" #: /tmp/fish/explicit/share/completions/telnet.fish:13 -#, fuzzy msgid "Log to tracefile" -msgstr "Log to tracefile" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:14 -#, fuzzy msgid "Turn on encryption" -msgstr "Turn on encryption" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:15 -#, fuzzy msgid "User interface similar to rlogin" -msgstr "User interface similar to rlogin" +msgstr "" #: /tmp/fish/explicit/share/completions/telnet.fish:16 -#, fuzzy msgid "Use Kerberos realm for authentication" -msgstr "Use Kerberos realm for authentication" +msgstr "" #: /tmp/fish/explicit/share/completions/update-eix-remote.fish:1 msgid "Remove all temporarily added virtual overlays from the eix database" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:1 -#, fuzzy msgid "ZFS filesystem" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:2 -#, fuzzy msgid "ZFS filesystem snapshot" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:3 -#, fuzzy msgid "ZFS block storage device" -msgstr "File is block device" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:4 msgid "ZFS snapshot bookmark" @@ -2872,14 +2756,12 @@ msgid "Any ZFS dataset" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:6 -#, fuzzy msgid "Dataset-specific value" -msgstr "Use specific conffile" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:7 -#, fuzzy msgid "Default ZFS value" -msgstr "Set date" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:8 msgid "Value inherited from parent dataset" @@ -2890,19 +2772,16 @@ msgid "Value received by 'zfs receive'" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:10 -#, fuzzy msgid "Value valid for the current mount" -msgstr "Sets an index list for the next track" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:11 -#, fuzzy msgid "Read-only value" -msgstr "Read only" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:12 -#, fuzzy msgid "Dataset full name" -msgstr "Service name" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:13 #: /tmp/fish/explicit/share/completions/zpool.fish:2 @@ -2910,15 +2789,13 @@ msgstr "Service name" #: /tmp/fish/implicit/share/completions/minikube.fish:26 #: /tmp/fish/implicit/share/completions/minikube.fish:27 #: /tmp/fish/implicit/share/completions/minikube.fish:28 -#, fuzzy msgid "Property" -msgstr "Set property" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:14 #: /tmp/fish/explicit/share/completions/zpool.fish:3 -#, fuzzy msgid "Property value" -msgstr "Set property" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:15 #: /tmp/fish/explicit/share/completions/zpool.fish:4 @@ -2926,24 +2803,20 @@ msgid "Property value origin" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:16 -#, fuzzy msgid "Identity type" -msgstr "Arquivo de identificação" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:17 -#, fuzzy msgid "Identity name" -msgstr "Arquivo de identificação" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:18 -#, fuzzy msgid "Space usage" -msgstr "Show source package" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:19 -#, fuzzy msgid "Space quota" -msgstr "Set quote char" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:20 msgid "POSIX user" @@ -2963,14 +2836,12 @@ msgid "POSIX group" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:24 -#, fuzzy msgid "Samba group" -msgstr "Select by group" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:26 -#, fuzzy msgid "Also needs the permission to be allowed" -msgstr "Selects how passphrases are mangled" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:27 msgid "" @@ -3007,9 +2878,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:37 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:26 -#, fuzzy msgid "Volume block size" -msgstr "Set block size" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:38 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:1 @@ -3019,9 +2889,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:39 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:2 -#, fuzzy msgid "Update access time on read" -msgstr "Keep access time" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:40 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:3 @@ -3030,27 +2899,23 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:41 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:4 -#, fuzzy msgid "Data checksum" -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:42 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:5 -#, fuzzy msgid "Compression algorithm" -msgstr "Use specified compression algorithm" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:43 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:6 -#, fuzzy msgid "Number of copies of data" -msgstr "Number all lines" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:44 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:7 -#, fuzzy msgid "Deduplication" -msgstr "Remove non-duplicate lines" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:45 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:2 @@ -3061,21 +2926,18 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:46 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:3 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:9 -#, fuzzy msgid "Can contained executables be executed" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:47 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:10 -#, fuzzy msgid "Max number of filesystems and volumes" -msgstr "Maximum number of nested blocks reached." +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:48 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:11 -#, fuzzy msgid "Mountpoint" -msgstr "Ponto de montagem" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:49 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:12 @@ -3089,22 +2951,19 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:51 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:14 -#, fuzzy msgid "Max number of snapshots" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:52 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:4 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:15 -#, fuzzy msgid "Read-only" -msgstr "Read only" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:53 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:16 -#, fuzzy msgid "Suggest block size" -msgstr "Set block size" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:54 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:17 @@ -3149,9 +3008,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:62 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:25 -#, fuzzy msgid "Hide .zfs directory" -msgstr "File is directory" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:63 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:26 @@ -3160,9 +3018,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:64 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:27 -#, fuzzy msgid "Volume logical size" -msgstr "Set block size" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:65 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:38 @@ -3201,9 +3058,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:79 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:35 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:45 -#, fuzzy msgid "On-disk version of filesystem" -msgstr "Armazenar apenas arquivos novos" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:71 #: /tmp/fish/explicit/share/completions/zfs.fish:80 @@ -3218,9 +3074,8 @@ msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:10 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:37 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:47 -#, fuzzy msgid "Extended attributes" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:73 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:39 @@ -3235,9 +3090,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:78 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:44 -#, fuzzy msgid "Hide volume snapshots" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:82 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:30 @@ -3252,9 +3106,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:84 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:1 -#, fuzzy msgid "Unicode normalization" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:85 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:2 @@ -3265,30 +3118,25 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:87 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:8 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:9 -#, fuzzy msgid "Case sensitivity" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:88 -#, fuzzy msgid "Space properties" -msgstr "Set property" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:89 #: /tmp/fish/explicit/share/completions/zfs.fish:90 -#, fuzzy msgid "Dataset name" -msgstr "Set volume name" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:1 -#, fuzzy msgid "Pool full name" -msgstr "Print filename" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:5 -#, fuzzy msgid "Mirror of at least two devices" -msgstr "Copy module file to stdout" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:6 #: /tmp/fish/explicit/share/completions/zpool.fish:7 @@ -3308,14 +3156,12 @@ msgid "Pseudo vdev for pool hot spares" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:11 -#, fuzzy msgid "SLOG device" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:12 -#, fuzzy msgid "L2ARC device" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:13 msgid "Physically allocated space" @@ -3325,9 +3171,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:15 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:1 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:2 -#, fuzzy msgid "Available space" -msgstr "Variável" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:16 msgid "System boot partition size" @@ -3338,9 +3183,8 @@ msgid "Usage percentage of pool" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:18 -#, fuzzy msgid "Deduplication ratio" -msgstr "Read/Write mode" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:19 msgid "Amount of uninitialized space within the pool" @@ -3363,9 +3207,8 @@ msgid "Pool GUID" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:24 -#, fuzzy msgid "Current pool health" -msgstr "Show source package" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:25 msgid "Total pool space" @@ -3381,21 +3224,18 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:28 #: /tmp/fish/explicit/share/completions/zpool.fish:29 -#, fuzzy msgid "Alternate root directory" -msgstr "Directory" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:30 #: /tmp/fish/explicit/share/completions/zpool.fish:31 -#, fuzzy msgid "Import pool in read-only mode" -msgstr "Read only" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:32 #: /tmp/fish/explicit/share/completions/zpool.fish:33 -#, fuzzy msgid "Automatic pool expansion on LUN growing" -msgstr "Automatic line ending processing" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:34 #: /tmp/fish/explicit/share/completions/zpool.fish:35 @@ -3407,9 +3247,8 @@ msgid "Default bootable dataset" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:37 -#, fuzzy msgid "Pool configuration cache" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:38 msgid "Comment about the pool" @@ -3432,28 +3271,24 @@ msgid "Display snapshots even if 'zfs list' does not use '-t'" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:43 -#, fuzzy msgid "On-disk version of pool" -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:44 msgid "%sEnable the %s feature\\n" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:45 -#, fuzzy msgid "All properties" -msgstr "Display font properties" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:1 -#, fuzzy msgid "%s: Could not figure out what to do!\\n" -msgstr "%ls: Não foi possível encontrar o diretório home" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:2 -#, fuzzy msgid "%s %s: Requires at least two arguments\\n" -msgstr "%s: Opção requer argumento -- %s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:3 #: /tmp/fish/explicit/share/functions/abbr.fish:5 @@ -3463,74 +3298,30 @@ msgid "%s %s: Abbreviation %s cannot have spaces in the word\\n" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:4 -#, fuzzy msgid "%s %s: Expected one argument\\n" -msgstr "%s %s: Esperava um argumento\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:6 #: /tmp/fish/explicit/share/functions/abbr.fish:10 -#, fuzzy msgid "%s %s: No abbreviation named %s\\n" -msgstr "%s %s: Unknown option “%s”\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:7 -#, fuzzy msgid "%s %s: Requires exactly two arguments\\n" -msgstr "%s %s: Opção requer argumento\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:11 -#, fuzzy msgid "%s %s: Abbreviation %s already exists, cannot rename %s\\n" -msgstr "%s %s: Função “%s” já existe. Não é possivel criar cópia “%s”\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:12 #: /tmp/fish/explicit/share/functions/abbr.fish:13 -#, fuzzy msgid "%s %s: Unexpected argument -- '%s'\\n" -msgstr "%s %s: Esperava argumento -- '%s'\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:1 -#, fuzzy -msgid "%s: invalid option -- %s\\n" -msgstr "%s: Opção inválida -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:2 -msgid "%s: %s cannot be specified along with %s\\n" msgstr "" -#: /tmp/fish/explicit/share/functions/abbr_old.fish:3 -#, fuzzy -msgid "%s: option requires an argument -- %s\\n" -msgstr "%s: Opção requer argumento -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:4 -#, fuzzy -msgid "%s: Unexpected argument -- %s\\n" -msgstr "%s: Esperava argumento -- %s\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:5 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:8 -msgid "%s: abbreviation cannot have spaces in the key\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:6 -msgid "%s: abbreviation must have a value\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:7 -msgid "%s: abbreviation '%s' already exists, cannot rename\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:9 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:10 -#, fuzzy -msgid "%s: no such abbreviation '%s'\\n" -msgstr "%s: Unknown option “%s”\\n" - #: /tmp/fish/explicit/share/functions/alias.fish:1 -#, fuzzy msgid "%s: Name cannot be empty\\n" -msgstr "%s: Nome da variável não pode ser a string vazia\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/alias.fish:2 msgid "%s: Body cannot be empty\\n" @@ -3574,27 +3365,16 @@ msgid "Ignoring the output of your editor since its exit status was non-zero" msgstr "" #: /tmp/fish/explicit/share/functions/edit_command_buffer.fish:4 -#, fuzzy msgid "or the file was empty" -msgstr "Treat absent files as empty" - -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:2 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:3 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:4 -#: /tmp/fish/explicit/share/functions/__fish_complete_unrar.fish:1 -msgid "%s\\tArchived file\\n" msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:3 -#, fuzzy msgid "Achieved compression ratio" -msgstr "Print compression ratios" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:4 -#, fuzzy msgid "Dataset creation time" -msgstr "Compare month names" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:5 msgid "Snapshot clones" @@ -3610,9 +3390,8 @@ msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:8 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:9 -#, fuzzy msgid "Logical total space" -msgstr "Log to tracefile" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:10 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:11 @@ -3620,14 +3399,12 @@ msgid "Logical used space" msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:12 -#, fuzzy msgid "Is currently mounted?" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:13 -#, fuzzy msgid "Source snapshot" -msgstr "Force yes" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:14 msgid "Token for interrupted reception resumption" @@ -3635,19 +3412,16 @@ msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:15 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:16 -#, fuzzy msgid "Total space" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:17 -#, fuzzy msgid "Achieved compression ratio of referenced space" -msgstr "Display the session key used for one message" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:18 -#, fuzzy msgid "Total lower-level snapshots" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:19 #: /tmp/fish/implicit/share/completions/zfs.fish:71 @@ -3704,24 +3478,20 @@ msgid "%sMax usage by group %s\\n" msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:3 -#, fuzzy msgid "Allow overlay mount" -msgstr "Read only" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:4 -#, fuzzy msgid "SELinux context for the child filesystem" -msgstr "Update only the database, not the filesystem" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:5 -#, fuzzy msgid "SELinux context for the filesystem being mounted" -msgstr "Update only the database, not the filesystem" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:6 -#, fuzzy msgid "SELinux context for unlabeled files" -msgstr "Don't exit on unreadable files" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:7 msgid "SELinux context for the root inode of the filesystem" @@ -3733,14 +3503,12 @@ msgstr "Bem-vindo ao fish, o friendly interactive shell" #: /tmp/fish/explicit/share/functions/fish_md5.fish:1 #: /tmp/fish/explicit/share/functions/fish_md5.fish:2 -#, fuzzy msgid "%s: Too many arguments %s\\n" -msgstr "%s: Too many arguments %s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_move_last.fish:1 -#, fuzzy msgid "Hit end of history…\\n" -msgstr "Hit end of history…\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/fish_opt.fish:1 msgid "%s: The --short flag is required and must be a single character\\n" @@ -3763,9 +3531,8 @@ msgid "Package" msgstr "Pacote" #: /tmp/fish/explicit/share/functions/fish_update_completions.fish:1 -#, fuzzy msgid "python executable not found" -msgstr "Do not execute remote command" +msgstr "" #: /tmp/fish/explicit/share/functions/funced.fish:2 msgid "Editing failed or was cancelled" @@ -3780,23 +3547,20 @@ msgid "Edit the file again\\? [Y/n]" msgstr "Editar o arquivo novamente\\? [S/n]" #: /tmp/fish/explicit/share/functions/funced.fish:5 -#, fuzzy msgid "Cancelled function editing" -msgstr "Editar definição de função" +msgstr "" #: /tmp/fish/explicit/share/functions/funcsave.fish:1 msgid "%s: Could not create configuration directory\\n" msgstr "%ls: Não foi possível encontrar o diretório home" #: /tmp/fish/explicit/share/functions/funcsave.fish:2 -#, fuzzy msgid "%s: Unknown function '%s'\\n" -msgstr "%s: Unknown option “%s”\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/help.fish:1 -#, fuzzy msgid "%s: Could not find a web browser.\\n" -msgstr "%s: Could not find a web browser.\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/help.fish:3 msgid "help: Help is being displayed in your default browser.\\n" @@ -3824,47 +3588,41 @@ msgid "" msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:5 -#, fuzzy msgid "Command history cleared!" -msgstr "Command to run" +msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:6 msgid "You did not say 'yes' so I will not clear your command history\\n" msgstr "" #: /tmp/fish/explicit/share/functions/isatty.fish:1 -#, fuzzy msgid "%s: Too many arguments" -msgstr "%s: Too many arguments" +msgstr "" #: /tmp/fish/explicit/share/functions/nextd.fish:1 #: /tmp/fish/explicit/share/functions/prevd.fish:1 -#, fuzzy msgid "%s: The number of positions to skip must be a non-negative integer\\n" -msgstr "%s: The number of positions to skip must be a non-negative integer\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/open.fish:1 msgid "No open utility found. Try installing \"xdg-open\" or \"xdg-utils\"." msgstr "" #: /tmp/fish/explicit/share/functions/popd.fish:1 -#, fuzzy msgid "%s: Directory stack is empty…\\n" -msgstr "%s: Directory stack is empty..." +msgstr "" #: /tmp/fish/explicit/share/functions/psub.fish:1 -#, fuzzy msgid "%s: Not inside of command substitution" -msgstr "%s: na substituição de comando" +msgstr "" #: /tmp/fish/explicit/share/functions/realpath.fish:1 msgid "%s: These flags are not allowed by fish realpath: '%s'" msgstr "" #: /tmp/fish/explicit/share/functions/seq.fish:1 -#, fuzzy msgid "%s: Expected 1, 2 or 3 arguments, got %d\\n" -msgstr "%s: Expected 1, 2 or 3 arguments, got %d\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/seq.fish:2 msgid "%s: '%s' is not a number\\n" @@ -3872,57 +3630,49 @@ msgstr "%s: “%s” não é um número\\n" #: /tmp/fish/explicit/share/functions/setenv.fish:1 #: /tmp/fish/explicit/share/functions/umask.fish:3 -#, fuzzy msgid "%s: Too many arguments\\n" -msgstr "%s: Too many arguments\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/setenv.fish:2 msgid "%s: Variable name must contain alphanumeric characters\\n" msgstr "" #: /tmp/fish/explicit/share/functions/type.fish:1 -#, fuzzy msgid "%s is a function with definition\\n" -msgstr "%ls: Missing function definition information." +msgstr "" #: /tmp/fish/explicit/share/functions/type.fish:2 msgid "function" msgstr "função" #: /tmp/fish/explicit/share/functions/type.fish:3 -#, fuzzy msgid "%s is a builtin\\n" -msgstr "%s is a builtin\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/type.fish:4 -#, fuzzy msgid "builtin" -msgstr "builtin\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/type.fish:5 -#, fuzzy msgid "%s is %s\\n" -msgstr "%s is %s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/type.fish:6 msgid "file" msgstr "arquivo" #: /tmp/fish/explicit/share/functions/type.fish:7 -#, fuzzy msgid "%s: Could not find '%s'\\n" -msgstr "%s: Could not find “%s”\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/umask.fish:1 #: /tmp/fish/explicit/share/functions/umask.fish:2 -#, fuzzy msgid "%s: Invalid mask '%s'\\n" -msgstr "%s: Invalid mask “%s”\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/_validate_int.fish:1 -#, fuzzy msgid "%s: Value '%s' for flag '%s' is not an integer\\n" -msgstr "%s: “%s” não é um número %s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/_validate_int.fish:2 msgid "%s: Value '%s' for flag '%s' less than min allowed of '%s'\\n" @@ -3937,22 +3687,16 @@ msgid "%s: Unknown option %s\\n" msgstr "%s: Opção desconhecida %s\\n" #: /tmp/fish/explicit/share/functions/vared.fish:2 -#, fuzzy msgid "" "%s: %s is an array variable. Use %svared%s %s[n]%s to edit the n:th element " "of %s\\n" msgstr "" -"%s: %s is an array variable. Use %svared%s %s[n]%s to edit the n:th element " -"of %s\\n" #: /tmp/fish/explicit/share/functions/vared.fish:3 -#, fuzzy msgid "" "%s: Expected exactly one argument, got %s.\\n\\nSynopsis:\\n\\t%svared%s " "VARIABLE\\n" msgstr "" -"%s: Expected exactly one argument, got %s.\\n\\nSynopsis:\\n\\t%svared%s " -"VARIABLE\\n" #: /tmp/fish/implicit/share/config.fish:1 msgid "Update PATH when fish_user_paths changes" @@ -3968,9 +3712,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/a2enconf.fish:1 #: /tmp/fish/implicit/share/completions/a2enmod.fish:1 #: /tmp/fish/implicit/share/completions/a2ensite.fish:1 -#, fuzzy msgid "Don't show informative messages" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/a2disconf.fish:2 #: /tmp/fish/implicit/share/completions/a2dismod.fish:2 @@ -3979,24 +3722,20 @@ msgid "Purge all traces of module" msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:1 -#, fuzzy msgid "Add abbreviation" -msgstr "Manual sections" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:2 -#, fuzzy msgid "Erase abbreviation" -msgstr "Manual sections" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:3 -#, fuzzy msgid "Print all abbreviations" -msgstr "Manual sections" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:4 -#, fuzzy msgid "Print all abbreviation names" -msgstr "Imprimir todos os nomes" +msgstr "" #: /tmp/fish/implicit/share/completions/abbr.fish:5 #: /tmp/fish/implicit/share/completions/help.fish:11 @@ -4007,24 +3746,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:1 #: /tmp/fish/implicit/share/completions/grub-install.fish:32 -#, fuzzy msgid "Show usage" -msgstr "Show source package" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:2 -#, fuzzy msgid "Use an alternative configuration file" -msgstr "Set configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:3 -#, fuzzy msgid "Use an alternative addressbook file" -msgstr "Use pattern from file" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:4 -#, fuzzy msgid "Make a query for mutt" -msgstr "File descriptor for input" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:5 msgid "Read email message from stdin and add the sender" @@ -4039,138 +3774,113 @@ msgid "Convert address book files" msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:8 -#, fuzzy msgid "Input file format" -msgstr "Extra full format" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:9 -#, fuzzy msgid "Output file format" -msgstr "Output file" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:10 -#, fuzzy msgid "Input file (default: stdin)" -msgstr "Open file in default application" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:11 -#, fuzzy msgid "Output file (default: stdout)" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/abook.fish:12 -#, fuzzy msgid "Print available formats" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/acat.fish:1 #: /tmp/fish/implicit/share/completions/als.fish:1 #: /tmp/fish/implicit/share/completions/aunpack.fish:1 -#, fuzzy msgid "Archive content" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/accept.fish:1 #: /tmp/fish/implicit/share/completions/cupsaccept.fish:1 -#, fuzzy msgid "Accept reason" -msgstr "Accept protocols" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:1 #: /tmp/fish/implicit/share/completions/grep.fish:23 #: /tmp/fish/implicit/share/completions/sort.fish:3 -#, fuzzy msgid "Ignore case" -msgstr "Ignore case" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:2 -#, fuzzy msgid "Ignore case when pattern contains no uppercase" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:3 -#, fuzzy msgid "Don't ignore case" -msgstr "Don't recurse" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:4 -#, fuzzy msgid "Invert match" -msgstr "Invert the sense of matching" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:5 -#, fuzzy msgid "Match only whole words" -msgstr "Only whole matching words" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:6 -#, fuzzy msgid "Quote all metacharacters" -msgstr "Use backslash escaped characters" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:7 -#, fuzzy msgid "Only print line(s) NUM of each file" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:8 -#, fuzzy msgid "Only print filenames containing matches" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:9 -#, fuzzy msgid "Only print filenames with no matches" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:10 msgid "Output the evaluation of Perl expression for each line" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:11 -#, fuzzy msgid "Output the part of line matching pattern" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:12 -#, fuzzy msgid "Print all lines" -msgstr "Imprimir todos os nomes" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:13 -#, fuzzy msgid "Specify pattern explicitly" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:14 -#, fuzzy msgid "Stop searching in each file after NUM matches" -msgstr "Stop reading after NUM matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:15 -#, fuzzy msgid "Stop searching after first match" -msgstr "Stop reading after NUM matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:16 -#, fuzzy msgid "Print the filename for each match" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:17 -#, fuzzy msgid "Suppress the prefixing filename on output" -msgstr "Supress printing filename" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:18 -#, fuzzy msgid "Show number of lines matching per file" -msgstr "See who is watching a file" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:19 -#, fuzzy msgid "Show column number of first match" -msgstr "Show commandname of each job" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:20 msgid "Don't show column number of first match" @@ -4178,40 +3888,34 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:21 #: /tmp/fish/implicit/share/completions/grep.fish:1 -#, fuzzy msgid "Print NUM lines of trailing context" -msgstr "Print NUM lines of trailing context" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:22 #: /tmp/fish/implicit/share/completions/grep.fish:3 -#, fuzzy msgid "Print NUM lines of leading context" -msgstr "Print NUM lines of leading context" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:23 #: /tmp/fish/implicit/share/completions/grep.fish:4 -#, fuzzy msgid "Print NUM lines of context" -msgstr "Print NUM lines of context" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:24 msgid "Print null byte as separator between filenames" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:25 -#, fuzzy msgid "Suppress error messages about file errors" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:26 -#, fuzzy msgid "Pipes all ack output through command" -msgstr "Pipe output through specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:27 -#, fuzzy msgid "Do not send output through a pager" -msgstr "Pass the output through “pr”" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:28 msgid "Prints a filename heading above file's results" @@ -4222,9 +3926,8 @@ msgid "Don't print a filename heading above file's results" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:30 -#, fuzzy msgid "Print a break between results" -msgstr "Wait time between retries" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:31 msgid "Don't print a break between results" @@ -4239,23 +3942,20 @@ msgid "No filename heading and no line breaks between results" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:34 -#, fuzzy msgid "Highlight the matching text" -msgstr "Hilight one search target" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:35 msgid "Don't highlight the matching text" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:36 -#, fuzzy msgid "Set the color for filenames" -msgstr "Print only rcs filename" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:37 -#, fuzzy msgid "Set the color for matches" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:38 msgid "Set the color for line numbers" @@ -4266,14 +3966,12 @@ msgid "Flush output immediately" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:40 -#, fuzzy msgid "Only print the files selected" -msgstr "Only print unique lines" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:41 -#, fuzzy msgid "Only select files matching pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:42 msgid "Sort the found files lexically" @@ -4284,38 +3982,32 @@ msgid "Show which types each file has" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:44 -#, fuzzy msgid "Read the list of files to search from file" -msgstr "Read log message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:45 msgid "Read the list of files to search from STDIN" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:46 -#, fuzzy msgid "Ignore directory" -msgstr "Include directory" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:47 -#, fuzzy msgid "Don't ignore directory" -msgstr "Muda diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:48 -#, fuzzy msgid "Add filter for ignoring files" -msgstr "Name directory for working files" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:49 -#, fuzzy msgid "Recurse into subdirectories" -msgstr "Recurse into subdir" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:50 -#, fuzzy msgid "No descending into subdirectories" -msgstr "Add contents of subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:51 #: /tmp/fish/implicit/share/completions/file.fish:7 @@ -4334,83 +4026,70 @@ msgid "Don't follow symlinks" msgstr "Não segue links simbólicos" #: /tmp/fish/implicit/share/completions/ack.fish:53 -#, fuzzy msgid "Include only recognized files" -msgstr "Include only the following names" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:54 -#, fuzzy msgid "Include only X files" -msgstr "Include only the following names" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:55 msgid "Replaces definition of type" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:56 -#, fuzzy msgid "Specify definition of type" -msgstr "Specify destination email" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:57 -#, fuzzy msgid "Removes all filters associated with type" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:58 -#, fuzzy msgid "Ignores environment variables and ackrc files" -msgstr "Ignore environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:59 -#, fuzzy msgid "Specifies location of ackrc file" -msgstr "Specifiy config file" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:60 -#, fuzzy msgid "Ignore default definitions ack includes" -msgstr "Ignore externals definitions" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:61 -#, fuzzy msgid "Outputs default ackrc" -msgstr "Output default action for mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:62 #: /tmp/fish/implicit/share/completions/udisksctl.fish:1 #: /tmp/fish/implicit/share/completions/udisksctl.fish:2 -#, fuzzy msgid "Shows help" -msgstr "Mostra tudo" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:63 -#, fuzzy msgid "Shows all known types" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:64 msgid "Dump information on which options are loaded" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:65 -#, fuzzy msgid "Forces ack to treat input as a pipe" -msgstr "Expect to receive input from a pipe" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:66 msgid "Forces ack to treat input as tty" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:67 -#, fuzzy msgid "Shows man page" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:68 -#, fuzzy msgid "Displays version and copyright" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:69 msgid "Bill the Cat" @@ -4421,34 +4100,28 @@ msgid "The warning admiral" msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:1 -#, fuzzy msgid "Show battery information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:2 -#, fuzzy msgid "Suppress battery information" -msgstr "Suppress informational output" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:3 -#, fuzzy msgid "Show thermal information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:4 -#, fuzzy msgid "Suppress thermal information" -msgstr "Suppress informational output" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:5 -#, fuzzy msgid "Show ac adapter information" -msgstr "Show apropos information" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:6 -#, fuzzy msgid "Suppress ac-adapter information" -msgstr "Suppress informational output" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:7 msgid "Show every device, overrides above options" @@ -4604,9 +4277,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:11 #: /tmp/fish/implicit/share/completions/zcat.fish:2 #: /tmp/fish/implicit/share/completions/zip.fish:30 -#, fuzzy msgid "Display help and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/acpi.fish:15 #: /tmp/fish/implicit/share/completions/dmesg.fish:17 @@ -4618,14 +4290,12 @@ msgstr "Display help and exit" #: /tmp/fish/implicit/share/completions/timeout.fish:5 #: /tmp/fish/implicit/share/completions/watch.fish:12 #: /tmp/fish/implicit/share/completions/xgettext.fish:39 -#, fuzzy msgid "Output version information and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:1 -#, fuzzy msgid "Test if adb has yet to be given the subcommand" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:2 msgid "Run adb devices and parse output" @@ -4648,29 +4318,24 @@ msgid "Communicate with emulator" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:7 -#, fuzzy msgid "Connect to device" -msgstr "Action for devices" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:8 -#, fuzzy msgid "Disconnect from device" -msgstr "Action for devices" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:9 -#, fuzzy msgid "List all connected devices" -msgstr "Print important dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:10 -#, fuzzy msgid "Copy file to device" -msgstr "Copy module file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:11 -#, fuzzy msgid "Copy file from device" -msgstr "Extrair arquivos do arquivo de lista" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:12 msgid "Copy host->device only if changed" @@ -4689,52 +4354,44 @@ msgid "View device log" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:16 -#, fuzzy msgid "Install package" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:17 -#, fuzzy msgid "Uninstall package" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:18 msgid "List PIDs of processes hosting a JDWP transport" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:19 -#, fuzzy msgid "Port forwarding" -msgstr "Dynamic port forwarding" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:20 -#, fuzzy msgid "Return bugreport information" -msgstr "Não mostra grupo" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:21 -#, fuzzy msgid "Perform device backup" -msgstr "Perform delinking" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:22 -#, fuzzy msgid "Restore device from backup" -msgstr "Forçar cópia completa de segurança" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:23 -#, fuzzy msgid "Show adb version" -msgstr "Ordena por versão" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:24 msgid "Show adb help" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:25 -#, fuzzy msgid "Block until device is online" -msgstr "Dispositivo bloco" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:26 msgid "Ensure that there is a server running" @@ -4753,24 +4410,20 @@ msgid "Reboots the device, optionally into the bootloader or recovery program" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:30 -#, fuzzy msgid "Prints state of the device" -msgstr "Print important dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:31 -#, fuzzy msgid "Prints serial number of the device" -msgstr "Mostra inode dos arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:32 -#, fuzzy msgid "Prints device path" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:33 -#, fuzzy msgid "Continuously print the device status" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:34 msgid "Restart the adbd daemon with root permissions" @@ -4789,9 +4442,8 @@ msgid "Run PPP over USB" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:38 -#, fuzzy msgid "Sideloads the given package" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:39 msgid "Kick current connection from host side and make it reconnect." @@ -4802,46 +4454,40 @@ msgid "Forward-lock the app" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:41 -#, fuzzy msgid "Reinstall the app keeping its data" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:42 msgid "Install on SD card instead of internal storage" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:43 -#, fuzzy msgid "Algorithm name" -msgstr "MAC algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:44 msgid "Hex-encoded key" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:45 -#, fuzzy msgid "Hex-encoded iv" -msgstr "Rename stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:46 -#, fuzzy msgid "Keep the data and cache directories" -msgstr "Do not create a hierarchy of directories" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:47 msgid "Also list device qualifiers" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:48 -#, fuzzy msgid "Device to disconnect" -msgstr "Device section" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:49 -#, fuzzy msgid "File to write backup data to" -msgstr "Edit the patch bundle description" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:50 msgid "Enable backup of the .apks themselves" @@ -4869,14 +4515,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:56 -#, fuzzy msgid "Back up all installed applications" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:57 -#, fuzzy msgid "Include system applications in -all (default)" -msgstr "Install documentation files (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:58 msgid "Exclude system applications in -all" @@ -4887,9 +4531,8 @@ msgid "Package(s) to backup" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:60 -#, fuzzy msgid "List all forward socket connections" -msgstr "Lista ou remove funções" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:61 msgid "Fails the forward if local is already forwarded" @@ -4900,9 +4543,8 @@ msgid "Remove a specific forward socket connection" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:63 -#, fuzzy msgid "Remove all forward socket connections" -msgstr "Remotely forwarded ports" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:64 msgid "Kick current connection from device side and make it reconnect." @@ -4912,9 +4554,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:28 #: /tmp/fish/implicit/share/completions/apt-cdrom.fish:11 #: /tmp/fish/implicit/share/completions/apt-config.fish:5 -#, fuzzy msgid "Specify config file" -msgstr "Specify config file" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:2 msgid "Do not run passwd to set the password" @@ -4934,9 +4575,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:5 -#, fuzzy msgid "Set the gecos field for the new entry generated" -msgstr "Set the pre-gap size for the next track" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:6 msgid "" @@ -4951,14 +4591,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:8 -#, fuzzy msgid "Display brief instructions" -msgstr "Display compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:9 -#, fuzzy msgid "Use specified directory as the user's home directory" -msgstr "Use specified key as the key to sign with" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:10 msgid "" @@ -4973,9 +4611,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:12 -#, fuzzy msgid "Do not create the home directory, even if it doesni't exist" -msgstr "Do not create a hierarchy of directories" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:13 msgid "Suppress informational messages, only show warnings and errors" @@ -4990,9 +4627,8 @@ msgid "Create a system user or group" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:16 -#, fuzzy msgid "Force the new userid to be the given number" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:17 msgid "" @@ -5011,9 +4647,8 @@ msgid "Add new user to extra groups defined in the configuration file" msgstr "" #: /tmp/fish/implicit/share/completions/adduser.fish:20 -#, fuzzy msgid "Display version and copyright information" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:1 msgid "Save current driver state" @@ -5032,18 +4667,16 @@ msgid "Try to restore control elements as much as possible" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:5 -#, fuzzy msgid "Ignore missing soundcards" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:6 msgid "Do not restore mismatching control elements" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:7 -#, fuzzy msgid "Do not init if restore fails" -msgstr "Do not print lines without delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:8 msgid "Initialize all devices to a default state" @@ -5062,44 +4695,36 @@ msgid "Notify daemon to do an operation" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:12 -#, fuzzy msgid "Monitor events" -msgstr "Monitor user" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:13 -#, fuzzy msgid "Show available flags and commands" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:14 -#, fuzzy msgid "Make output a bit more verbose" -msgstr "Make output a valid ed script" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:15 -#, fuzzy msgid "Print alsactl version number" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:16 -#, fuzzy msgid "Select the configuration file to use" -msgstr "List of rpm configuration files" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:17 -#, fuzzy msgid "Use a lock file" -msgstr "Use 1B block size" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:18 -#, fuzzy msgid "Do not use a lock file" -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:19 -#, fuzzy msgid "Select the state lock file path" -msgstr "Select the last NUMBER patches" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:20 msgid "Save restore and init state to this file" @@ -5110,33 +4735,28 @@ msgid "Remove runstate file at first" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:22 -#, fuzzy msgid "Set environment variable" -msgstr "Modifica variáveis de ambiente" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:23 -#, fuzzy msgid "The configuration file for init" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:24 msgid "The store period in seconds for the daemon command" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:25 -#, fuzzy msgid "The PID file to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:26 -#, fuzzy msgid "Run the task in background" -msgstr "Executar tarefa em segundo plano" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:27 -#, fuzzy msgid "Use syslog for messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:28 msgid "Set the process priority (see 'man nice')" @@ -5162,86 +4782,72 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:2 #: /tmp/fish/implicit/share/completions/mocha.fish:1 #: /tmp/fish/implicit/share/completions/modinfo.fish:11 -#: /tmp/fish/implicit/share/completions/netcat.fish:7 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:1 #: /tmp/fish/implicit/share/completions/poweroff.fish:1 #: /tmp/fish/implicit/share/completions/terraform.fish:2 #: /tmp/fish/implicit/share/completions/yast2.fish:2 -#, fuzzy msgid "Show help" -msgstr "Mostra tudo" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:2 -#, fuzzy msgid "Soundcard number or id to use" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:3 -#, fuzzy msgid "Mixer device to control" -msgstr "Division control" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:4 -#, fuzzy msgid "Starting view mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:5 -#, fuzzy msgid "Toggle the using of colors" -msgstr "Toggle printing of remote hostname" +msgstr "" #: /tmp/fish/implicit/share/completions/alsamixer.fish:6 msgid "Mixer abstraction level" msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:1 -#, fuzzy msgid "this help" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:2 -#, fuzzy msgid "select the card" -msgstr "Select by command" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:3 msgid "select the device, default 'default'" msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:4 -#, fuzzy msgid "debug mode" -msgstr "Debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:5 msgid "do not perform range checking" msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:6 -#, fuzzy msgid "print version of this program" -msgstr "Specify users for query" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:7 -#, fuzzy msgid "be quiet" -msgstr "Run quietly" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:8 -#, fuzzy msgid "show also inactive controls" -msgstr "Force interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:9 -#, fuzzy msgid "select abstraction level" -msgstr "Select an action" +msgstr "" #: /tmp/fish/implicit/share/completions/amixer.fish:10 -#, fuzzy msgid "Read and execute commands from stdin sequentially" -msgstr "Execute command as if part of .wgetrc" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:1 #: /tmp/fish/implicit/share/completions/compare.fish:1 @@ -5425,9 +5031,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:21 #: /tmp/fish/implicit/share/completions/display.fish:23 -#, fuzzy msgid "Displayed image cannot be modified" -msgstr "Display $ at end of line" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:22 #: /tmp/fish/implicit/share/completions/compare.fish:18 @@ -5486,9 +5091,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:50 #: /tmp/fish/implicit/share/completions/montage.fish:40 #: /tmp/fish/implicit/share/completions/stream.fish:14 -#, fuzzy msgid "Monitor progress " -msgstr "Monitor user" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:28 msgid "Seconds to pause before reanimating" @@ -5523,9 +5127,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:60 #: /tmp/fish/implicit/share/completions/montage.fish:47 #: /tmp/fish/implicit/share/completions/stream.fish:16 -#, fuzzy msgid "Suppress all warning messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:32 #: /tmp/fish/implicit/share/completions/compare.fish:28 @@ -5637,9 +5240,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:80 #: /tmp/fish/implicit/share/completions/montage.fish:68 #: /tmp/fish/implicit/share/completions/stream.fish:27 -#, fuzzy msgid "Print detailed information about the image" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:42 #: /tmp/fish/implicit/share/completions/display.fish:49 @@ -5687,9 +5289,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:8 #: /tmp/fish/implicit/share/completions/montage.fish:23 #: /tmp/fish/implicit/share/completions/stream.fish:8 -#, fuzzy msgid "Extract area from image [geometry]" -msgstr "Extrair arquivos do arquivo de lista" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:48 #: /tmp/fish/implicit/share/completions/composite.fish:60 @@ -5754,17 +5355,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:56 #: /tmp/fish/implicit/share/completions/display.fish:88 #: /tmp/fish/implicit/share/completions/montage.fish:92 -#, fuzzy msgid "Merge a sequence of images" -msgstr "Print name, not number" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:57 #: /tmp/fish/implicit/share/completions/display.fish:89 #: /tmp/fish/implicit/share/completions/mogrify.fish:33 #: /tmp/fish/implicit/share/completions/montage.fish:77 -#, fuzzy msgid "Flatten a sequence of images" -msgstr "Print name, not number" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:58 #: /tmp/fish/implicit/share/completions/compare.fish:40 @@ -5775,9 +5374,8 @@ msgstr "Print name, not number" #: /tmp/fish/implicit/share/completions/import.fish:65 #: /tmp/fish/implicit/share/completions/montage.fish:100 #: /tmp/fish/implicit/share/completions/stream.fish:29 -#, fuzzy msgid "Display copious debugging information [events]" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:59 #: /tmp/fish/implicit/share/completions/compare.fish:41 @@ -5788,9 +5386,8 @@ msgstr "Display update information" #: /tmp/fish/implicit/share/completions/import.fish:53 #: /tmp/fish/implicit/share/completions/montage.fish:101 #: /tmp/fish/implicit/share/completions/stream.fish:30 -#, fuzzy msgid "Print program options" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:60 #: /tmp/fish/implicit/share/completions/compare.fish:42 @@ -5866,9 +5463,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:11 #: /tmp/fish/implicit/share/completions/xz.fish:36 #: /tmp/fish/implicit/share/completions/yaourt.fish:12 -#, fuzzy msgid "Display help" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:4 #: /tmp/fish/implicit/share/completions/base64.fish:5 @@ -5876,50 +5472,41 @@ msgstr "Display man page" #: /tmp/fish/implicit/share/completions/lscpu.fish:9 #: /tmp/fish/implicit/share/completions/netctl.fish:2 #: /tmp/fish/implicit/share/completions/xz.fish:38 -#, fuzzy msgid "Display version" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:5 -#, fuzzy msgid "Enable colored output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:6 #: /tmp/fish/implicit/share/completions/magento.fish:25 -#, fuzzy msgid "Disable colored output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:7 -#, fuzzy msgid "Modify or list configuration items" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:8 -#, fuzzy msgid "Set config item" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:9 -#, fuzzy msgid "Get config item" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:10 -#, fuzzy msgid "Delete config item" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:11 -#, fuzzy msgid "List config items" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:12 -#, fuzzy msgid "Edit config items" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:13 msgid "Reduce duplication in node_modules in current directory" @@ -5948,9 +5535,8 @@ msgid "Open a package's homepage in the default browser" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:19 -#, fuzzy msgid "Print URL instead of opening" -msgstr "Link files instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:20 msgid "Output featured packages as JSON array" @@ -5959,37 +5545,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:21 #: /tmp/fish/implicit/share/completions/apm.fish:45 #: /tmp/fish/implicit/share/completions/apm.fish:73 -#, fuzzy msgid "Only list themes" -msgstr "Lista as chaves" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:22 msgid "Only list packages/themes compatible with specified Atom version" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:23 -#, fuzzy msgid "Generates code scaffolding for theme or package" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:24 msgid "Path to the package or theme template" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:25 -#, fuzzy msgid "Generates a basic package" -msgstr "Generate a new key pair" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:26 -#, fuzzy msgid "Generates a basic theme" -msgstr "Generate master file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:27 -#, fuzzy msgid "Generates a basic language package" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:28 msgid "Convert TextMate bundle/theme" @@ -6005,25 +5586,21 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:31 #: /tmp/fish/implicit/share/completions/apm.fish:52 -#, fuzzy msgid "Show verbose debug information" -msgstr "Show apropos information" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:32 -#, fuzzy msgid "Specify text file containing packages to install" -msgstr "List of packages to install" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:33 -#, fuzzy msgid "Do not install dev dependencies" -msgstr "Don't automatically fulfill dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:34 #: /tmp/fish/implicit/share/completions/apm.fish:51 -#, fuzzy msgid "Only install packages/themes compatible with specified Atom version" -msgstr "Query an (uninstalled) package in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:35 msgid "Set npm log level to silent" @@ -6042,51 +5619,44 @@ msgid "Link to ~/.atom/dev/packages" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:39 -#, fuzzy msgid "List all installed and bundled packages" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:40 msgid "Print packages one per line with no formatting" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:41 -#, fuzzy msgid "Include dev packages" -msgstr "Install new package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:42 -#, fuzzy msgid "Only list installed packages/themes" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:43 msgid "Output all packages as a JSON object" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:44 -#, fuzzy msgid "Include linked packages" -msgstr "Install new package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:46 -#, fuzzy msgid "Only list packages" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:47 msgid "Save Atom API token to keychain" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:48 -#, fuzzy msgid "Specify API token" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:49 -#, fuzzy msgid "Upgrade out of date packages" -msgstr "Upgrade source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:50 msgid "Output outdated packages as JSON array" @@ -6097,56 +5667,48 @@ msgid "Confirm before installing updates" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:54 -#, fuzzy msgid "List but don't install the outdated packages" -msgstr "List installed source package\\(s\\)" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:55 -#, fuzzy msgid "Publish new version of package in current working directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:56 msgid "Semantic version category for new version" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:57 -#, fuzzy msgid "Specify a tag to publish" -msgstr "Specify man path" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:58 -#, fuzzy msgid "Specify a new name for the package" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:59 msgid "Rebuild modules installed in node_modules in current working directory" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:60 -#, fuzzy msgid "Rebuild module cache for installed packages" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:61 -#, fuzzy msgid "Search for Atom packages/themes in the atom.io registry" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:62 msgid "Output matching packages as JSON array" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:63 -#, fuzzy msgid "Search only non-theme packages" -msgstr "Search in all man pages" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:64 -#, fuzzy msgid "Search only themes" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:65 msgid "View information about package/theme in the atom.io registry" @@ -6157,46 +5719,40 @@ msgid "Output as JSON array" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:67 -#, fuzzy msgid "Show latest version compatible with specified Atom version" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:68 msgid "Star the given packages on https://atom.io" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:69 -#, fuzzy msgid "Star all packages in ~/.atom/packages" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:70 -#, fuzzy msgid "List or install starred Atom packages and themes" -msgstr "List installed source package\\(s\\)" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:71 msgid "Output packages as JSON array" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:72 -#, fuzzy msgid "Install the starred packages" -msgstr "Instalar os pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:74 msgid "GitHub username to show starred packages for" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:75 -#, fuzzy msgid "Runs the package's tests contained within the spec directory" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:76 -#, fuzzy msgid "Path to atom command" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:77 msgid "Delete the symlink in ~/.atom/packages for the package" @@ -6211,9 +5767,8 @@ msgid "Remove published package or version from the atom.io registry" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:82 -#, fuzzy msgid "Do not prompt for confirmation" -msgstr "Do not prompt for an expiration time" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:83 msgid "Unstar given packages on https://atom.io" @@ -6313,43 +5868,36 @@ msgid "Display version and exit" msgstr "Mostra a versão e sai" #: /tmp/fish/implicit/share/completions/apm.fish:85 -#, fuzzy msgid "Print APM info" -msgstr "Print APM info" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:86 -#, fuzzy msgid "Print time remaining" -msgstr "Print time remaining" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:87 -#, fuzzy msgid "Monitor status info" -msgstr "Monitor status info" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:88 -#, fuzzy msgid "Request APM standby mode" -msgstr "Request APM standby mode" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:89 -#, fuzzy msgid "Request APM suspend mode" -msgstr "Request APM suspend mode" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:90 -#, fuzzy msgid "APM status debugging info" -msgstr "APM status debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/apropos.fish:1 msgid "whatis entry" msgstr "whatis entry" #: /tmp/fish/implicit/share/completions/apropos.fish:3 -#, fuzzy msgid "Print debugging info" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/apropos.fish:4 #: /tmp/fish/implicit/share/completions/apt-file.fish:7 @@ -6389,135 +5937,111 @@ msgid "Verbose mode" msgstr "Modo detalhado" #: /tmp/fish/implicit/share/completions/apropos.fish:5 -#, fuzzy msgid "Keyword as regex" -msgstr "Keyword as regex" +msgstr "" #: /tmp/fish/implicit/share/completions/apropos.fish:6 -#, fuzzy msgid "Keyword as wildcards" -msgstr "Keyword as wildcards" +msgstr "" #: /tmp/fish/implicit/share/completions/apropos.fish:7 -#, fuzzy msgid "Keyword as exactly match" -msgstr "Keyword as exactly match" +msgstr "" #: /tmp/fish/implicit/share/completions/apropos.fish:8 -#, fuzzy msgid "Search for other system" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/apropos.fish:9 -#, fuzzy msgid "Specify man path" -msgstr "Specify man path" +msgstr "" #: /tmp/fish/implicit/share/completions/apropos.fish:10 -#, fuzzy msgid "Specify a configuration file" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:2 -#, fuzzy msgid "Update list of packages" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:3 #: /tmp/fish/implicit/share/completions/pkg.fish:42 -#, fuzzy msgid "Upgrade packages" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:4 -#, fuzzy msgid "Rebuild your system" -msgstr "Rebuild your system" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:5 -#, fuzzy msgid "Build and install a new package" -msgstr "Build and install a new package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:6 -#, fuzzy msgid "Download and extract a source" -msgstr "Download and extract a source" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:7 -#, fuzzy msgid "Info on a package" -msgstr "Info on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:8 #: /tmp/fish/implicit/share/completions/zypper.fish:19 -#, fuzzy msgid "Remove packages" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:9 -#, fuzzy msgid "Erase built packages" -msgstr "Erase built packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:10 -#, fuzzy msgid "Build source without install" -msgstr "Build source without install" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:11 -#, fuzzy msgid "Clean source directories" -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:12 -#, fuzzy msgid "Update source and rebuild" -msgstr "Update source and rebuild" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:13 msgid "Update the repository" msgstr "Atualizar o repositório" #: /tmp/fish/implicit/share/completions/apt-build.fish:14 -#, fuzzy msgid "Do not use gcc wrapper" -msgstr "Do not use gcc wrapper" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:15 -#, fuzzy msgid "Remove build-dep" -msgstr "Remove build-dep" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:16 -#, fuzzy msgid "Do not download source" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:17 -#, fuzzy msgid "Specify build-dir" -msgstr "Specify build-dir" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:18 #: /tmp/fish/implicit/share/completions/npm.fish:56 -#, fuzzy msgid "Rebuild a package" -msgstr "Rebuild a package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:19 -#, fuzzy msgid "Rebuild and install an installed package" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:20 msgid "Use to build" msgstr "Use to build" #: /tmp/fish/implicit/share/completions/apt-build.fish:21 -#, fuzzy msgid "Apply patch" -msgstr "Apply patch" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:22 msgid "Prefix to strip on patch" @@ -6526,113 +6050,93 @@ msgstr "Prefix to strip on patch" #: /tmp/fish/implicit/share/completions/apt-build.fish:23 #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:20 #: /tmp/fish/implicit/share/completions/yum.fish:12 -#, fuzzy msgid "Assume yes to all questions" -msgstr "Assume yes to all questions" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:24 #: /tmp/fish/implicit/share/completions/apt-get.fish:35 -#, fuzzy msgid "Use purge instead of remove" -msgstr "Use label instead of filename in output" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:25 msgid "Do not run update" msgstr "Do not run update" #: /tmp/fish/implicit/share/completions/apt-build.fish:26 -#, fuzzy msgid "Specify sources.list file" -msgstr "Specify sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:2 -#, fuzzy msgid "Build apt cache" -msgstr "Build apt cache" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:3 -#, fuzzy msgid "Show package info" -msgstr "Show package info" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:4 -#, fuzzy msgid "Show cache statistics" -msgstr "Show cache statistics" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:5 -#, fuzzy msgid "Show source package" -msgstr "Show source package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:6 -#, fuzzy msgid "Show packages in cache" -msgstr "Show packages in cache" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:7 -#, fuzzy msgid "Print available list" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:8 -#, fuzzy msgid "List unmet dependencies in cache" -msgstr "List unmet dependencies in cache" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:9 -#, fuzzy msgid "Display package record" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:10 -#, fuzzy msgid "Search packagename by REGEX" -msgstr "Search packagename by REGEX" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:11 msgid "Search full package name" msgstr "Search full package name" #: /tmp/fish/implicit/share/completions/apt-cache.fish:12 -#, fuzzy msgid "Search packagename only" -msgstr "Search packagename only" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:13 -#, fuzzy msgid "List dependencies for the package" -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:14 -#, fuzzy msgid "List reverse dependencies for the package" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:15 -#, fuzzy msgid "Print package name by prefix" -msgstr "Print package name by prefix" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:16 -#, fuzzy msgid "Generate dotty output for packages" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:17 -#, fuzzy msgid "Debug preferences file" -msgstr "Debug preferences file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:18 -#, fuzzy msgid "Select file to store package cache" -msgstr "Select file to store package cache" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:19 -#, fuzzy msgid "Select file to store source cache" -msgstr "Select file to store source cache" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:20 #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:9 @@ -6648,64 +6152,55 @@ msgstr "Select file to store source cache" #: /tmp/fish/implicit/share/completions/valgrind.fish:5 #: /tmp/fish/implicit/share/completions/wget.fish:8 #: /tmp/fish/implicit/share/completions/zip.fish:12 -#, fuzzy msgid "Quiet mode" -msgstr "Quiet mode" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:21 -#, fuzzy msgid "Print important dependencies" -msgstr "Print important dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:22 -#, fuzzy msgid "Print full records" -msgstr "Print full records" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:23 -#, fuzzy msgid "Auto-gen package cache" -msgstr "Auto-gen package cache" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:24 msgid "Print all names" msgstr "Imprimir todos os nomes" #: /tmp/fish/implicit/share/completions/apt-cache.fish:25 -#, fuzzy msgid "Dep and rdep recursive" -msgstr "Dep and rdep recursive" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:26 -#, fuzzy msgid "Limit to installed" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:29 #: /tmp/fish/implicit/share/completions/apt-cdrom.fish:12 #: /tmp/fish/implicit/share/completions/apt-config.fish:6 #: /tmp/fish/implicit/share/completions/apt-extracttemplates.fish:4 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:9 -#, fuzzy msgid "Specify options" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:30 #: /tmp/fish/implicit/share/completions/apt.fish:2 #: /tmp/fish/implicit/share/completions/apt-get.fish:2 #: /tmp/fish/implicit/share/completions/apt-mark.fish:2 -#, fuzzy msgid "Test if apt command should have packages as potential completion" -msgstr "Test if apt command should have packages as potential completion" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cdrom.fish:2 msgid "Add new disc to source list" msgstr "Adicionar novo disco para a lista de fontes" #: /tmp/fish/implicit/share/completions/apt-cdrom.fish:3 -#, fuzzy msgid "Report identity of disc" -msgstr "Report identity of disc" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cdrom.fish:4 #: /tmp/fish/implicit/share/completions/fusermount.fish:1 @@ -6715,23 +6210,20 @@ msgid "Mount point" msgstr "Ponto de montagem" #: /tmp/fish/implicit/share/completions/apt-cdrom.fish:5 -#, fuzzy msgid "Rename a disc" -msgstr "Rename a disc" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cdrom.fish:6 -#, fuzzy msgid "No mounting" -msgstr "No mounting" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cdrom.fish:7 msgid "Fast copy" msgstr "Cópia rápida" #: /tmp/fish/implicit/share/completions/apt-cdrom.fish:8 -#, fuzzy msgid "Thorough package scan" -msgstr "Thorough package scan" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cdrom.fish:9 msgid "No changes" @@ -6742,44 +6234,36 @@ msgid "Access config file from shell" msgstr "Access config file from shell" #: /tmp/fish/implicit/share/completions/apt-config.fish:3 -#, fuzzy msgid "Dump contents of config file" -msgstr "Dump contents of config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-extracttemplates.fish:2 -#, fuzzy msgid "Set temp dir" -msgstr "Set temp dir" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-extracttemplates.fish:3 -#, fuzzy msgid "Specifiy config file" -msgstr "Specifiy config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:2 -#, fuzzy msgid "Resync package contents from source" -msgstr "Resync package contents from source" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:3 -#, fuzzy msgid "Search package containing pattern" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:4 -#, fuzzy msgid "List contents of a package matching pattern" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:5 -#, fuzzy msgid "Remove all gz files from cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:6 -#, fuzzy msgid "Set cache dir" -msgstr "Set cache dir" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:8 msgid "Use cdrom-mount-point" @@ -6787,53 +6271,44 @@ msgstr "Use cdrom-mount-point" #: /tmp/fish/implicit/share/completions/apt-file.fish:9 #: /tmp/fish/implicit/share/completions/apt-file.fish:15 -#, fuzzy msgid "Do not expand pattern" -msgstr "Do not expand pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:10 -#, fuzzy msgid "Pattern is regexp" -msgstr "Pattern is regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:12 -#, fuzzy msgid "Set arch" -msgstr "Set arch" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:13 -#, fuzzy msgid "Set sources.list file" -msgstr "Set sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:14 -#, fuzzy msgid "Only display package name" -msgstr "Only display package name" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-file.fish:16 -#, fuzzy msgid "Run in dummy mode" -msgstr "Run in dummy mode" +msgstr "" #: /tmp/fish/implicit/share/completions/apt.fish:1 #: /tmp/fish/implicit/share/completions/apt-get.fish:1 #: /tmp/fish/implicit/share/completions/apt-mark.fish:1 -#, fuzzy msgid "Test if apt has yet to be given the subcommand" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/apt.fish:3 #: /tmp/fish/implicit/share/completions/snap.fish:2 -#, fuzzy msgid "Test if given subcommand is used" -msgstr "Test if aptitude has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/apt.fish:7 #: /tmp/fish/implicit/share/completions/git.fish:4 -#, fuzzy msgid "Set a configuration option" -msgstr "Set a config option" +msgstr "" #: /tmp/fish/implicit/share/completions/apt.fish:8 #: /tmp/fish/implicit/share/completions/hugo.fish:1 @@ -6845,149 +6320,122 @@ msgid "Configuration file" msgstr "Arquivo de configuração" #: /tmp/fish/implicit/share/completions/apt.fish:9 -#, fuzzy msgid "Target release" -msgstr "Target line" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:2 -#, fuzzy msgid "Generate package from source" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:3 -#, fuzzy msgid "Generate source index file" -msgstr "Generate source index file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:4 -#, fuzzy msgid "Generate contents file" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:5 -#, fuzzy msgid "Generate release file" -msgstr "Generate release file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:6 -#, fuzzy msgid "Remove records" -msgstr "Remove records" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:7 -#, fuzzy msgid "Generate MD5 sums" -msgstr "Generate MD5 sums" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:8 -#, fuzzy msgid "Use a binary db" -msgstr "Use a binary db" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:10 -#, fuzzy msgid "Perform delinking" -msgstr "Perform delinking" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:11 -#, fuzzy msgid "Perform contents generation" -msgstr "Perform contents generation" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:12 msgid "Use source override" msgstr "Use source override" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:13 -#, fuzzy msgid "Make caching db readonly" -msgstr "Make caching db readonly" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:15 -#, fuzzy msgid "Use config file" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:16 #: /tmp/fish/implicit/share/completions/apt-sortpkgs.fish:5 #: /tmp/fish/implicit/share/completions/composer.fish:7 -#, fuzzy msgid "Set config options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:5 -#, fuzzy msgid "Update sources" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:6 -#, fuzzy msgid "Upgrade or install newest packages" -msgstr "Upgrade or install newest packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:7 -#, fuzzy msgid "Use with dselect front-end" -msgstr "Use with dselect front-end" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:8 -#, fuzzy msgid "Distro upgrade" -msgstr "Distro upgrade" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:9 msgid "Install one or more packages" msgstr "Instalar um ou mais pacotes" #: /tmp/fish/implicit/share/completions/apt-get.fish:10 -#, fuzzy msgid "Display changelog of one or more packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:11 -#, fuzzy msgid "Remove and purge one or more packages" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:12 -#, fuzzy msgid "Remove one or more packages" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:13 -#, fuzzy msgid "Fetch source packages" -msgstr "Fetch source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:14 -#, fuzzy msgid "Install/remove packages for dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:15 -#, fuzzy msgid "Update cache and check dependencies" -msgstr "Update cache and check dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:16 -#, fuzzy msgid "Clean local caches and packages" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:17 -#, fuzzy msgid "Clean packages no longer be downloaded" -msgstr "Clean packages no longer be downloaded" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:18 -#, fuzzy msgid "Remove automatically installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:19 -#, fuzzy msgid "Do not install recommended packages" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:20 #: /tmp/fish/implicit/share/completions/aptitude.fish:28 @@ -7008,32 +6456,28 @@ msgid "Disable downloading packages" msgstr "Disable downloading packages" #: /tmp/fish/implicit/share/completions/apt-get.fish:25 -#, fuzzy msgid "Perform a simulation" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:26 msgid "Automatic yes to prompts" msgstr "Automatic yes to prompts" #: /tmp/fish/implicit/share/completions/apt-get.fish:27 -#, fuzzy msgid "Show upgraded packages" -msgstr "Do not upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:28 -#, fuzzy msgid "Show full versions for packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:29 msgid "Compile source packages" msgstr "Compile source packages" #: /tmp/fish/implicit/share/completions/apt-get.fish:30 -#, fuzzy msgid "Install recommended packages" -msgstr "Install source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:31 msgid "Ignore package Holds" @@ -7048,14 +6492,12 @@ msgid "Force yes" msgstr "Force yes" #: /tmp/fish/implicit/share/completions/apt-get.fish:34 -#, fuzzy msgid "Print the URIs" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:36 -#, fuzzy msgid "Reinstall packages" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:37 msgid "Erase obsolete files" @@ -7095,43 +6537,37 @@ msgstr "Ignore non-authenticated packages" #: /tmp/fish/implicit/share/completions/apt-get.fish:47 #: /tmp/fish/implicit/share/completions/apt-mark.fish:13 -#, fuzzy msgid "Specify a config file" -msgstr "Specify a config file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:48 #: /tmp/fish/implicit/share/completions/apt-mark.fish:14 -#, fuzzy msgid "Set a config option" -msgstr "Set a config option" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:1 -#, fuzzy msgid "Test if aptitude has yet to be given the subcommand" -msgstr "Test if aptitude has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:2 -#, fuzzy msgid "Test if aptitude command should have packages as potential completion" -msgstr "Test if aptitude command should have packages as potential completion" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:4 msgid "Display a brief help message. Identical to the help action" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:5 -#, fuzzy msgid "Remove any cached packages which can no longer be downloaded" -msgstr "Clean packages no longer be downloaded" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:6 msgid "Remove all downloaded .deb files from the package cache directory" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:7 -#, fuzzy msgid "Forget all internal information about what packages are 'new'" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:8 msgid "Cancel all scheduled actions on all packages" @@ -7142,24 +6578,20 @@ msgid "Update the list of available packages from the apt sources" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:10 -#, fuzzy msgid "Upgrade installed packages to their most recent version" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:11 -#, fuzzy msgid "Download and displays the Debian changelog for the packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:12 -#, fuzzy msgid "Upgrade, removing or installing packages as necessary" -msgstr "Upgrade or install newest packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:13 -#, fuzzy msgid "Download the packages to the current directory" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:14 msgid "Forbid the upgrade to a particular version" @@ -7174,47 +6606,40 @@ msgid "Install the packages" msgstr "Instalar os pacotes" #: /tmp/fish/implicit/share/completions/aptitude.fish:17 -#, fuzzy msgid "Cancel any scheduled actions on the packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:18 -#, fuzzy msgid "Mark packages as automatically installed" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:19 msgid "Remove and delete all associated configuration and data files" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:20 -#, fuzzy msgid "Reinstall the packages" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:21 -#, fuzzy msgid "Remove the packages" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:22 -#, fuzzy msgid "Display detailed information about the packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:23 msgid "Consider the packages by future upgrade commands" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:24 -#, fuzzy msgid "Mark packages as manually installed" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:25 -#, fuzzy msgid "Search for packages matching one of the patterns" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:26 msgid "Display brief summary of the available commands and options" @@ -7225,23 +6650,20 @@ msgid "Show explanations of automatic installations and removals" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:30 -#, fuzzy msgid "Purge packages that are not required by any installed package" -msgstr "Query packages that are triggered by the specified packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:31 msgid "Always display a prompt" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:32 -#, fuzzy msgid "Do not treat recommendations as dependencies" -msgstr "Don't ask for extra dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:33 -#, fuzzy msgid "Treat recommendations as dependencies" -msgstr "Correct broken dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:34 msgid "Don't perform the actions. Just show them" @@ -7256,37 +6678,32 @@ msgid "Suppress incremental progress indicators" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:37 -#, fuzzy msgid "Show which versions of packages will be installed" -msgstr "List of packages to install" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:38 -#, fuzzy msgid "Display extra information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:39 -#, fuzzy msgid "Display the version of aptitude and compile information" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:40 msgid "Start up the visual interface and display its preview screen" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:41 -#, fuzzy msgid "Assume the answer yes for all question prompts" -msgstr "Assume yes to all questions" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:42 msgid "Show how much disk space will be used or freed" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:43 -#, fuzzy msgid "Specify the format to be used by the search command" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:44 msgid "Set the release from which packages should be installed" @@ -7297,9 +6714,8 @@ msgid "Specify the order for the output from the search command" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:46 -#, fuzzy msgid "Set a configuration file option directly" -msgstr "Read user config files from named directory" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:47 msgid "Specify the display width for the output from the search command" @@ -7310,84 +6726,68 @@ msgid "Add a new key" msgstr "Adicionar uma nova chave" #: /tmp/fish/implicit/share/completions/apt-key.fish:2 -#, fuzzy msgid "Remove a key" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-key.fish:3 -#, fuzzy msgid "List trusted keys" -msgstr "List trusted keys" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:2 -#, fuzzy msgid "Set severity" -msgstr "Set severity" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:3 -#, fuzzy msgid "Tags you want to see" -msgstr "Tags you want to see" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:4 -#, fuzzy msgid "Bug-status you want to see" -msgstr "Bug-status you want to see" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:5 -#, fuzzy msgid "Ignore bugs in your system" -msgstr "Ignore bugs in your system" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:6 -#, fuzzy msgid "Ignore newer bugs than upgrade packages" -msgstr "Ignore newer bugs than upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:7 -#, fuzzy msgid "Bugs for downgrade packages" -msgstr "Bugs for downgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:8 -#, fuzzy msgid "Bug Tracking system" -msgstr "Bug Tracking system" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:9 -#, fuzzy msgid "Specify port for web interface" -msgstr "Specify port for web interface" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:10 -#, fuzzy msgid "Use daily bug report" -msgstr "Use daily bug report" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:11 -#, fuzzy msgid "Use the raw index.db" -msgstr "Use the raw index.db" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:12 -#, fuzzy msgid "Specify index dir" -msgstr "Specify index dir" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:13 -#, fuzzy msgid "Specify Pin-Priority value" -msgstr "Specify Pin-Priority value" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:14 -#, fuzzy msgid "Specify the title of rss" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:15 -#, fuzzy msgid "Retrieve fresh bugs" -msgstr "Retrieve fresh bugs" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:16 #: /tmp/fish/implicit/share/completions/aura.fish:31 @@ -7395,33 +6795,28 @@ msgstr "Retrieve fresh bugs" #: /tmp/fish/implicit/share/completions/pacman.fish:25 #: /tmp/fish/implicit/share/completions/scp.fish:7 #: /tmp/fish/implicit/share/completions/yaourt.fish:39 -#, fuzzy msgid "Do not display progress bar" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:17 -#, fuzzy msgid "Specify local cache dir" -msgstr "Specify local cache dir" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:18 -#, fuzzy msgid "Specify the expire cache timer" -msgstr "Specify the expire cache timer" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:19 msgid "Specify apt config file" msgstr "Specify apt config file" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:21 -#, fuzzy msgid "Assume no to all questions" -msgstr "Assume no to all questions" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:22 -#, fuzzy msgid "List bugs from packages" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:23 msgid "List bugs in rss format" @@ -7432,35 +6827,29 @@ msgid "Read filenames from pipe" msgstr "Read filenames from pipe" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:4 -#, fuzzy msgid "Select frontend interface" -msgstr "Select frontend interface" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:5 #: /tmp/fish/implicit/share/completions/darcs.fish:749 -#, fuzzy msgid "Specify email address" -msgstr "Specify email address" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:6 -#, fuzzy msgid "Ask confirmation" -msgstr "Ask confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:7 -#, fuzzy msgid "Display all changelogs" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:8 -#, fuzzy msgid "Avoid changelogs from db in named file" -msgstr "Avoid changelogs from db in named file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:9 -#, fuzzy msgid "Select display" -msgstr "X server display" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:10 msgid "Insert header" @@ -7468,87 +6857,72 @@ msgstr "Inserir cabeçalho" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:11 #: /tmp/fish/implicit/share/completions/ps.fish:40 -#, fuzzy msgid "Display debug info" -msgstr "Display debug info" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:12 -#, fuzzy msgid "Select an option profile" -msgstr "Select an option profile" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:5 -#, fuzzy msgid "Mark a package as automatically installed" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:6 -#, fuzzy msgid "Mark a package as manually installed" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:7 msgid "Hold a package, prevent automatic installation or removal" msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:8 -#, fuzzy msgid "Cancel a hold on a package" -msgstr "Info on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:9 -#, fuzzy msgid "Show automatically installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:10 -#, fuzzy msgid "Show manually installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:11 -#, fuzzy msgid "Show held packages" -msgstr "Show upgraded packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:15 -#, fuzzy msgid "Write package statistics to a file" -msgstr "Write prototypes to file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:1 -#, fuzzy msgid "Generate master file" -msgstr "Generate release file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:2 msgid "Alias for 'get'" msgstr "Alias for “get”" #: /tmp/fish/implicit/share/completions/apt-move.fish:3 -#, fuzzy msgid "Move packages to local tree" -msgstr "Move packages to local tree" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:4 -#, fuzzy msgid "Delete obsolete package files" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:5 -#, fuzzy msgid "Build new local files" -msgstr "Build new local files" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:6 -#, fuzzy msgid "Rebuild index files" -msgstr "Rebuild index files" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:7 -#, fuzzy msgid "Move packages from cache to local mirror" -msgstr "Move packages from cache to local mirror" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:8 msgid "Alias for 'move delete packages'" @@ -7559,112 +6933,92 @@ msgid "Alias for 'update'" msgstr "Nome alternativo para “update”" #: /tmp/fish/implicit/share/completions/apt-move.fish:10 -#, fuzzy msgid "Download package missing from mirror" -msgstr "Download package missing from mirror" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:11 -#, fuzzy msgid "Sync packages installed" -msgstr "Sync packages installed" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:13 -#, fuzzy msgid "Move file specified on commandline" -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:14 -#, fuzzy msgid "List packages that may serve as input to mirrorbin or mirrorsource" -msgstr "List packages that may serve as input to mirrorbin or mirrorsource" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:15 -#, fuzzy msgid "Fetch package from STDIN" -msgstr "Fetch package from STDIN" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:16 -#, fuzzy msgid "Fetch source package from STDIN" -msgstr "Fetch source package from STDIN" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:17 -#, fuzzy msgid "Process all packages" -msgstr "Process all packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:18 msgid "Use specific conffile" msgstr "Use specific conffile" #: /tmp/fish/implicit/share/completions/apt-move.fish:19 -#, fuzzy msgid "Force deletion" -msgstr "Force deletion" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:20 -#, fuzzy msgid "Suppresses normal output" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-move.fish:21 -#, fuzzy msgid "Test run" -msgstr "Test run" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:4 -#, fuzzy msgid "No message to STDOUT" -msgstr "No message to STDOUT" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:5 -#, fuzzy msgid "Recurse into subdir" -msgstr "Recurse into subdir" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:6 -#, fuzzy msgid "Dir to import" -msgstr "Dir to import" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:7 msgid "Change to user" msgstr "Alterar para usuário" #: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:8 -#, fuzzy msgid "Debug level[default 0]" -msgstr "Debug level[default 0]" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:2 -#, fuzzy msgid "Show build dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:3 -#, fuzzy msgid "Generate a dotty graph" -msgstr "Generate a dotty graph" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:4 -#, fuzzy msgid "Show state of dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:5 -#, fuzzy msgid "List packages depending on" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:6 -#, fuzzy msgid "Comma-separated list of dependency types to follow recursively" -msgstr "Comma-separated list of dependancy types to follow recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:7 -#, fuzzy msgid "Comma-separated list of dependency types to show" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:8 msgid "" @@ -7677,114 +7031,94 @@ msgid "Comma-separated list of package installation states to show" msgstr "Comma-separated list of package installation states to show" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:10 -#, fuzzy msgid "Display man page" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-setup.fish:1 msgid "Probe a CD" msgstr "Probe a CD" #: /tmp/fish/implicit/share/completions/apt-setup.fish:2 -#, fuzzy msgid "Run in non-interactive mode" -msgstr "Run in noninteractive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-source.fish:2 #: /tmp/fish/implicit/share/completions/apt-show-source.fish:3 #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:9 #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:10 -#, fuzzy msgid "Read package from file" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-source.fish:4 #: /tmp/fish/implicit/share/completions/apt-show-source.fish:5 #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:11 #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:12 -#, fuzzy msgid "Specify APT list dir" -msgstr "Specify APT list dir" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-source.fish:6 -#, fuzzy msgid "List PKG info" -msgstr "List PKG info" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-source.fish:8 -#, fuzzy msgid "Print all source packages with version" -msgstr "Print all source packages with version" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:2 -#, fuzzy msgid "Print PKG versions" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:3 -#, fuzzy msgid "Using regex" -msgstr "Using regex" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:4 -#, fuzzy msgid "Print only upgradeable packages" -msgstr "Print only upgradeable packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:5 -#, fuzzy msgid "Print all versions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:6 -#, fuzzy msgid "Print package name/distro" -msgstr "Print package name/distro" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:7 -#, fuzzy msgid "Print verbose info" -msgstr "Print verbose info" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:8 -#, fuzzy msgid "Init or update cache only" -msgstr "Init or update cache only" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-sortpkgs.fish:2 -#, fuzzy msgid "Use source index field" -msgstr "Use source index field" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-sortpkgs.fish:4 -#, fuzzy msgid "Specify conffile" -msgstr "Specify conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:2 -#, fuzzy msgid "Debian distribution" -msgstr "Debian distribution" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:3 -#, fuzzy msgid "Servers in the areas" -msgstr "Servers in the areas" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:4 -#, fuzzy msgid "Conf file" -msgstr "Arquivo de configuração" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:5 -#, fuzzy msgid "Finish after number of servers" -msgstr "Finish after number of servers" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:6 -#, fuzzy msgid "File to grab servers" -msgstr "File for server response" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:7 msgid "File as input" @@ -7795,151 +7129,125 @@ msgid "Mirror-list file" msgstr "Mirror-list file" #: /tmp/fish/implicit/share/completions/apt-spy.fish:9 -#, fuzzy msgid "Output sources.list file" -msgstr "Set sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:10 msgid "Use proxy server" msgstr "Utilizar servidor proxy" #: /tmp/fish/implicit/share/completions/apt-spy.fish:11 -#, fuzzy msgid "Comma separated country list" -msgstr "Comma separated country list" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:12 -#, fuzzy msgid "How long in sec to download" -msgstr "How long in sec to download" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:13 -#, fuzzy msgid "Custom URL to get mirror list" -msgstr "Custom URL to get mirror list" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:14 msgid "Write top servers to file" msgstr "Write top servers to file" #: /tmp/fish/implicit/share/completions/apt-spy.fish:15 -#, fuzzy msgid "Number of top servers" -msgstr "Number of top servers" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:16 -#, fuzzy msgid "Update mirror list" -msgstr "Update mirror list" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:17 msgid "Version number" msgstr "Número da versão" #: /tmp/fish/implicit/share/completions/apt-src.fish:2 -#, fuzzy msgid "Update list of source packages" -msgstr "Update list of source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:3 -#, fuzzy msgid "Install source packages" -msgstr "Install source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:4 -#, fuzzy msgid "Upgrade source packages" -msgstr "Upgrade source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:5 -#, fuzzy msgid "Remove source packages" -msgstr "Remove source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:6 #: /tmp/fish/implicit/share/completions/apt-src.fish:13 -#, fuzzy msgid "Build source packages" -msgstr "Build source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:7 -#, fuzzy msgid "Clean source packages" -msgstr "Clean source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:8 -#, fuzzy msgid "Detect known source tree" -msgstr "Detect known source tree" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:9 -#, fuzzy msgid "List installed source package\\(s\\)" -msgstr "List installed source package\\(s\\)" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:10 -#, fuzzy msgid "Root source tree" -msgstr "Root source tree" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:11 -#, fuzzy msgid "Version of source package" -msgstr "Version of source package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:12 -#, fuzzy msgid "Name of the source package" -msgstr "Name of the source package" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:14 -#, fuzzy msgid "Install after build" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:15 -#, fuzzy msgid "Patch local changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:16 -#, fuzzy msgid "Specify a dir" -msgstr "Specify a dir" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:17 msgid "Run on current dir" msgstr "Run on current dir" #: /tmp/fish/implicit/share/completions/apt-src.fish:18 -#, fuzzy msgid "Omit debian version" -msgstr "Omit debian version" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:19 -#, fuzzy msgid "Do not del built files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:20 -#, fuzzy msgid "Do not del source files" -msgstr "Do not del source files" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:21 -#, fuzzy msgid "Source tree version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:22 -#, fuzzy msgid "Output to /dev/null" -msgstr "Output to /dev/null" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:23 -#, fuzzy msgid "Output trace" -msgstr "Output trace" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:3 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:3 @@ -7948,21 +7256,18 @@ msgstr "Removable medium" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:4 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:4 -#, fuzzy msgid "Select an action" -msgstr "Select an action" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:5 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:5 -#, fuzzy msgid "List of packages to install" -msgstr "Sync packages installed" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:6 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:6 -#, fuzzy msgid "Fix broken option" -msgstr "Fix broken option" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:7 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:7 @@ -7982,79 +7287,65 @@ msgid "Reject protocols" msgstr "Reject protocols" #: /tmp/fish/implicit/share/completions/arc.fish:1 -#, fuzzy msgid "Debugging command" -msgstr "Debugger command" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:2 #: /tmp/fish/implicit/share/completions/arc.fish:4 -#, fuzzy msgid "Don't use color or style for output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:3 -#, fuzzy msgid "Always use fromatting" -msgstr "Always reformat" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:5 -#, fuzzy msgid "Specify which libraies to load" -msgstr "Specify sendmail command" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:6 -#, fuzzy msgid "Specify the Conduit URI" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:7 -#, fuzzy msgid "Specify the Conduit token" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:8 -#, fuzzy msgid "Force a version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:9 -#, fuzzy msgid "Sets the timeout" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:10 -#, fuzzy msgid "Sets a config" -msgstr "Set a config option" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:11 -#, fuzzy msgid "Skip the working copy configuration file" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:12 -#, fuzzy msgid "Use provided file instead of ~/.arcrc" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:13 -#, fuzzy msgid "Implements shell completion" -msgstr "Do not use file completion" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:14 msgid "Current term in the argument list being completed" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:15 -#, fuzzy msgid "Reads an arc configuration option" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:16 -#, fuzzy msgid "Show detailed information about options" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:17 msgid "Download a file to local disk" @@ -8065,9 +7356,8 @@ msgid "Save the file with a specific name rather than the default" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:19 -#, fuzzy msgid "Write file to stdout instead of to disk" -msgstr "Link files instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:20 msgid "List your open Differential revisions" @@ -8082,14 +7372,12 @@ msgid "Override configured lint engine for this project" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:23 -#, fuzzy msgid "Apply patches suggested by lint to the working copy" -msgstr "Display unrecorded changes in the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:24 -#, fuzzy msgid "Set minimum message severity" -msgstr "Set severity" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:25 #: /tmp/fish/implicit/share/completions/arc.fish:176 @@ -8097,14 +7385,12 @@ msgid "Never apply patches suggested by lint" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:26 -#, fuzzy msgid "Lint changes since a specific revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:27 -#, fuzzy msgid "Output the linter results to a file" -msgstr "Output rss-data to file" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:28 msgid "Show all lint warnings, not just those on changed lines" @@ -8116,9 +7402,8 @@ msgid "When linting git repositories, amend HEAD with all patches" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:30 -#, fuzzy msgid "Lint all files in the project" -msgstr "Treat all files as text" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:31 msgid "Specify how results will be displayed" @@ -8142,9 +7427,8 @@ msgid "In the first form, list objects you've flagged" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:36 -#, fuzzy msgid "Edit the flag on an object" -msgstr "Edit the long comment by default" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:37 msgid "Set the color of a flag" @@ -8155,14 +7439,12 @@ msgid "Delete the flag on an object" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:39 -#, fuzzy msgid "Set the note on a flag" -msgstr "Muda a cor do terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:40 -#, fuzzy msgid "Export the local changeset to a file" -msgstr "Write prototypes to file" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:41 msgid "Export change as a unified patch" @@ -8186,9 +7468,8 @@ msgid "Export from Differential diff" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:46 -#, fuzzy msgid "Export from a Differential revision" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:47 msgid "Open a file or object in your web browser" @@ -8223,9 +7504,8 @@ msgid "what they do and which versions are installed" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:55 -#, fuzzy msgid "Search for linters" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:56 msgid "Show detailed information, including options" @@ -8240,24 +7520,20 @@ msgid "Stop tracking work in Phrequent" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:59 -#, fuzzy msgid "A note to attach to the tracked time" -msgstr "IP to report to the tracker" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:60 -#, fuzzy msgid "Create an alias" -msgstr "Create archive" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:61 -#, fuzzy msgid "Sets an arc configuration option" -msgstr "Set a config option" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:62 -#, fuzzy msgid "Set a local config value instead of a user one" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:63 msgid "Start tracking work in Phrequent" @@ -8272,9 +7548,8 @@ msgid "Provide a comment with your status change" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:66 -#, fuzzy msgid "Show available status options and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:67 msgid "Publish an accepted revision after review" @@ -8297,9 +7572,8 @@ msgid "When updating the feature branch, use rebase instead of merge" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:72 -#, fuzzy msgid "Use squash strategy" -msgstr "Use fast setting" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:73 msgid "Keep the feature branch" @@ -8323,18 +7597,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:78 #: /tmp/fish/implicit/share/completions/arc.fish:86 -#, fuzzy msgid "Use the message from a specific revision" -msgstr "Update the working copy to a different URL" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:79 msgid "Show which commits will be selected" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:80 -#, fuzzy msgid "Print base commit only and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:81 #: /tmp/fish/implicit/share/completions/arc.fish:173 @@ -8342,9 +7614,8 @@ msgid "Additional rules for determining base revision" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:82 -#, fuzzy msgid "Specify the end of the commit range to select" -msgstr "Set the end of file string to eof-str" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:83 msgid "Show committed and abandoned revisions" @@ -8352,109 +7623,92 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:84 #: /tmp/fish/implicit/share/completions/arc.fish:114 -#, fuzzy msgid "Alias for arc feature" -msgstr "Nome alternativo para atrm" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:85 -#, fuzzy msgid "Amend the working copy" -msgstr "Imprime o diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:87 -#, fuzzy msgid "Show the amended commit message" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:88 -#, fuzzy msgid "Upgrade arcanist and libphutil to the latest versions" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:89 -#, fuzzy msgid "Shows the help" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:90 -#, fuzzy msgid "Print detailed information about each command" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:91 msgid "Share and grab text using the Paste application" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:92 -#, fuzzy msgid "Language for syntax highlighting" -msgstr "No search highlighting" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:93 -#, fuzzy msgid "Output in JSON format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:94 -#, fuzzy msgid "Title for the paste" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:95 msgid "Commit a revision which has been accepted by a reviewer" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:96 -#, fuzzy msgid "Commit a specific revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:97 msgid "Show the command which would be issued" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:98 -#, fuzzy msgid "Apply changes to the working copy" -msgstr "Display unrecorded changes in the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:99 -#, fuzzy msgid "Do not run any sanity checks" -msgstr "Do not run update" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:101 -#, fuzzy msgid "Do not commit the changes" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:102 -#, fuzzy msgid "Update the local working copy before applying the patch" -msgstr "Update the working copy to a different URL" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:103 msgid "Apply changes from a git patch file or unified patch file" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:104 -#, fuzzy msgid "Apply changes from an arc bundlej" -msgstr "Apply patches (from an email bundle) to the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:105 -#, fuzzy msgid "Do not apply dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:106 msgid "Apply changes from a Differential diff" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:107 -#, fuzzy msgid "Do not create a branch" -msgstr "Do not write mtab" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:108 msgid "Apply changes from a Differential revision" @@ -8477,28 +7731,24 @@ msgid "Output upload information in JSON format" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:113 -#, fuzzy msgid "Mark the file as temporary" -msgstr "Use file as terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:115 msgid "There's only one way to find out" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:116 -#, fuzzy msgid "Show blame for the lines you changed" -msgstr "Show help for the fish shell" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:117 -#, fuzzy msgid "Cover changes since a specific revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:118 -#, fuzzy msgid "Close a revision" -msgstr "Unlock a revision" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:119 msgid "Do not print a success message" @@ -8538,9 +7788,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:128 #: /tmp/fish/implicit/share/completions/arc.fish:140 -#, fuzzy msgid "Specify the output format" -msgstr "Specify output format" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:129 msgid "Include closed and abandoned revisions" @@ -8563,43 +7812,37 @@ msgid "Show a detailed coverage report on the CLI" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:134 -#, fuzzy msgid "Record a copy of the test results on the specified build target" -msgstr "Cache test results in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:135 -#, fuzzy msgid "Use uglier formatting" -msgstr "Use unified format" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:136 msgid "Run unit tests covering changes since a specific revision" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:137 -#, fuzzy msgid "Run every test" -msgstr "Reverse results" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:138 msgid "Report results in JSON format" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:139 -#, fuzzy msgid "Always enable coverage information" -msgstr "Always reformat" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:141 #: /tmp/fish/implicit/share/completions/arc.fish:184 -#, fuzzy msgid "Always disable coverage information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:142 -#, fuzzy msgid "Backouts on a previous commit" -msgstr "Executa comando se o comando anterior falhou" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:143 msgid "Make a raw Conduit method call" @@ -8610,9 +7853,8 @@ msgid "Generate a Differential diff or revision from local changes" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:145 -#, fuzzy msgid "Generate diff by executing a specified command" -msgstr "Interactive mode after executing commands" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:146 msgid "Attempt to convert non UTF-8 hunks into specified encoding" @@ -8627,33 +7869,28 @@ msgid "When creating a revision, add reviewers" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:149 -#, fuzzy msgid "Do not copy changes to the staging area" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:150 -#, fuzzy msgid "Read diff from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:151 -#, fuzzy msgid "Suppress warning about uncommitted changes" -msgstr "Suppress the warning about “using insecure memory”" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:152 msgid "Read revision information from file" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:153 -#, fuzzy msgid "Do not run lint" -msgstr "Do not run update" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:154 -#, fuzzy msgid "Use the specified message when updating a revision" -msgstr "Use specified message digest algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:155 msgid "Create or update a revision without requesting a code review" @@ -8664,14 +7901,12 @@ msgid "After creating a diff or revision, open it in a web browser" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:157 -#, fuzzy msgid "Always create a new revision" -msgstr "Force new revision" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:158 -#, fuzzy msgid "Disable lint cache" -msgstr "Disable server-side cache" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:159 msgid "Read revision information from a specific commit" @@ -8682,9 +7917,8 @@ msgid "Only generate a diff, without running lint, unit tests, or other" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:161 -#, fuzzy msgid "Do not upload binaries" -msgstr "Do not load init files" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:162 msgid "only create a diff" @@ -8695,19 +7929,16 @@ msgid "Apply patches suggested by lint" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:165 -#, fuzzy msgid "Specify the end of the commit range" -msgstr "Specify commit message" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:166 -#, fuzzy msgid "When creating a revision, try to use the working copy commit" -msgstr "Bring changes from the repository into the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:167 -#, fuzzy msgid "Create a diff with a few lines of context." -msgstr "Print NUM lines of context" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:168 msgid "Require excuse for lint advice in addition to lint warnings and errors" @@ -8718,9 +7949,8 @@ msgid "Emit machine-readable JSON" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:170 -#, fuzzy msgid "Always update a specific revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:171 msgid "Ignore unsound test failures without prompting" @@ -8731,43 +7961,36 @@ msgid "Provide a prepared in advance excuse for any lints/tests" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:174 -#, fuzzy msgid "Never amend commits in the working copy with lint patches" -msgstr "Save changes in the working copy to the repository as a patch" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:175 msgid "Automatically add all unstaged and uncommitted" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:177 -#, fuzzy msgid "Edit revision information" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:178 -#, fuzzy msgid "Do not run unit tests" -msgstr "Do not run update" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:179 -#, fuzzy msgid "Raise all lint warnings" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:181 -#, fuzzy msgid "Only run lint and unit tests" -msgstr "Only print duplicates" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:182 -#, fuzzy msgid "Skip checks for untracked files in the working copy" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:183 -#, fuzzy msgid "Display only new lint messages" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:185 msgid "Create or update a libphutil library" @@ -8794,90 +8017,76 @@ msgid "Force the library map to be updated" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:191 -#, fuzzy msgid "Set the library name" -msgstr "Service name" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:192 -#, fuzzy msgid "Shows the current version of arcanist" -msgstr "Show the log messages for a set of revision(s) and/or file(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/arp.fish:2 msgid "Numerical address" msgstr "Numerical address" #: /tmp/fish/implicit/share/completions/arp.fish:3 -#, fuzzy msgid "Class of hw type" -msgstr "Class of hw type" +msgstr "" #: /tmp/fish/implicit/share/completions/arp.fish:4 -#, fuzzy msgid "Show arp entries" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/arp.fish:5 -#, fuzzy msgid "Remove an entry for hostname" -msgstr "Remove an entry for hostname" +msgstr "" #: /tmp/fish/implicit/share/completions/arp.fish:6 msgid "Use hardware address" msgstr "Use hardware address" #: /tmp/fish/implicit/share/completions/arp.fish:7 -#, fuzzy msgid "Select interface" -msgstr "Select interface" +msgstr "" #: /tmp/fish/implicit/share/completions/arp.fish:8 -#, fuzzy msgid "Manually create ARP address" -msgstr "Manually create ARP address" +msgstr "" #: /tmp/fish/implicit/share/completions/arp.fish:9 -#, fuzzy msgid "Take addr from filename, default /etc/ethers" -msgstr "Take addr from filename, default /etc/ethers" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:1 -#, fuzzy msgid "Omit false conditionals" -msgstr "Testa uma condição" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:2 -#, fuzzy msgid "Omit debugging directives" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:3 -#, fuzzy msgid "Include general information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:4 msgid "Include high-level source" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:5 -#, fuzzy msgid "Include assembly" -msgstr "Include path" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:6 msgid "Include macro expansions" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:7 -#, fuzzy msgid "Omit forms processing" -msgstr "Print login process" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:8 -#, fuzzy msgid "Include symbols" -msgstr "Exceto arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:9 msgid "Initially turn on alternate macro syntax" @@ -8888,24 +8097,20 @@ msgid "Compress DWARF debug sections using zlib" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:11 -#, fuzzy msgid "Don't compress DWARF debug sections" -msgstr "Don't execute scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:12 -#, fuzzy msgid "Produce assembler debugging messages" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:13 -#, fuzzy msgid "Remap debug information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:14 -#, fuzzy msgid "Redefine symbols" -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:15 msgid "Require executable stack for this object" @@ -8932,173 +8137,146 @@ msgid "Skip whitespace and comment preprocessing" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:21 -#, fuzzy msgid "Generate debugging information" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:22 -#, fuzzy msgid "Generate STABS debugging information" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:23 msgid "Generate STABS debug info with GNU extensions" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:24 -#, fuzzy msgid "Generate DWARF2 debugging information" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:25 msgid "Generate per-function section names for DWARF line information" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:26 -#, fuzzy msgid "Set the hash table size close" -msgstr "Set the native character set" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:27 -#, fuzzy msgid "Show help message and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:28 -#, fuzzy msgid "Show target specific options" -msgstr "Edita compleções específicas para um comando" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:29 -#, fuzzy msgid "Add DIR to search list for .include directives" -msgstr "Replace include directories" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:30 -#, fuzzy msgid "Don't warn about signed overflow" -msgstr "Only print duplicates" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:31 msgid "Warn when differences altered for long displacements" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:32 -#, fuzzy msgid "Keep local symbols" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:33 msgid "Assemble in MRI compatibility mode" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:34 -#, fuzzy msgid "Write dependency information in given file" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:35 -#, fuzzy msgid "Do not pad the end of sections to alignment boundaries" -msgstr "Do not add the default keyrings to the list of keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:36 -#, fuzzy msgid "Set object-file output file name" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:37 -#, fuzzy msgid "Fold data section into text section" -msgstr "Exceção de ponto flutuante" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:38 msgid "Prefer smaller memory use" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:39 -#, fuzzy msgid "Print various measured statistics from execution" -msgstr "Write prototypes to file" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:40 -#, fuzzy msgid "Strip local absolute symbols" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:41 msgid "Use same format as native assembler when possible" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:42 -#, fuzzy msgid "Print assembler version number and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:43 #: /tmp/fish/implicit/share/completions/gunzip.fish:8 #: /tmp/fish/implicit/share/completions/gzip.fish:8 -#, fuzzy msgid "Suppress warnings" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:44 -#, fuzzy msgid "Don't suppress warnings" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:45 -#, fuzzy msgid "Treat warnings as errors" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:46 -#, fuzzy msgid "Generate object file even after errors" -msgstr "Generate a dotty graph" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:47 -#, fuzzy msgid "Read option from given file" -msgstr "Load cookies from file" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:48 -#, fuzzy msgid "Print assembler version number" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:49 msgid "Don't optimize code alignment" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:50 -#, fuzzy msgid "Quieten some warnings" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:51 -#, fuzzy msgid "Generate 32 bits code" -msgstr "Generate a new key pair" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:52 -#, fuzzy msgid "Generate 64 bits code" -msgstr "Generate a new key pair" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:53 -#, fuzzy msgid "Generate x32 code" -msgstr "Generate a new key pair" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:54 msgid "Encode SSE instructions with VEX prefix" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:55 -#, fuzzy msgid "Check SSE instructions" -msgstr "Instrução ilegal" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:56 msgid "Check operand combinations for validity" @@ -9121,14 +8299,12 @@ msgid "Encode EVEX instructions with specific EVEX.RC" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:61 -#, fuzzy msgid "Use specfied mnemonic" -msgstr "Use specified queue" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:62 -#, fuzzy msgid "Use specfied syntax" -msgstr "Use specified queue" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:63 msgid "Support pseudo index registers" @@ -9147,19 +8323,16 @@ msgid "Add BND prefix for all valid branches" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:67 -#, fuzzy msgid "Disable branch optimization for shared code" -msgstr "Control creation of sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:68 -#, fuzzy msgid "Strip all lock prefixes" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:70 -#, fuzzy msgid "Generate relax relocations" -msgstr "Generate source index file" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:71 msgid "Accept only AMD64 ISA" @@ -9170,23 +8343,20 @@ msgid "Accept only Intel64 ISA" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:73 -#, fuzzy msgid "Optimize for given CPU" -msgstr "Optimize the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:1 -#, fuzzy msgid "Checkout package" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:2 msgid "Show the full history of the target, with file diffs" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:3 -#, fuzzy msgid "Put the source files in current directory" -msgstr "Read files under each directory" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:4 msgid "Collect garbage" @@ -9197,84 +8367,71 @@ msgid "Report approximate disk usage" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:7 -#, fuzzy msgid "List all known packages" -msgstr "Instalar novo pacote" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:8 msgid "List the architectures the targets are available for" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:9 -#, fuzzy msgid "List locally tracked packages" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:10 msgid "List repos the targets exist in" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:11 -#, fuzzy msgid "Show revision history of the target" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:12 -#, fuzzy msgid "Show condensed revision history" -msgstr "Show differences between revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:13 msgid "Show the target's PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:14 -#, fuzzy msgid "Update given targets" -msgstr "Update interval" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:15 -#, fuzzy msgid "Remove target from local repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/atd.fish:1 -#, fuzzy msgid "Limiting load factor" -msgstr "Limiting load factor" +msgstr "" #: /tmp/fish/implicit/share/completions/atd.fish:2 -#, fuzzy msgid "Minimum interval in seconds" -msgstr "Minimum interval in seconds" +msgstr "" #: /tmp/fish/implicit/share/completions/atd.fish:3 #: /tmp/fish/implicit/share/completions/make.fish:4 #: /tmp/fish/implicit/share/completions/sylpheed.fish:2 -#, fuzzy msgid "Debug mode" -msgstr "Debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/atd.fish:4 -#, fuzzy msgid "Process at queue only once" -msgstr "Process at queue only once" +msgstr "" #: /tmp/fish/implicit/share/completions/at.fish:2 #: /tmp/fish/implicit/share/completions/atq.fish:2 -#, fuzzy msgid "Use specified queue" -msgstr "Use specified queue" +msgstr "" #: /tmp/fish/implicit/share/completions/at.fish:3 -#, fuzzy msgid "Send mail to user" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/at.fish:4 -#, fuzzy msgid "Read job from file" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/at.fish:5 msgid "Alias for atq" @@ -9286,33 +8443,28 @@ msgstr "Nome alternativo para atrm" #: /tmp/fish/implicit/share/completions/at.fish:7 #: /tmp/fish/implicit/share/completions/climate.fish:11 -#, fuzzy msgid "Show the time" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/at.fish:8 -#, fuzzy msgid "Print the jobs listed" -msgstr "Print the jobs listed" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:1 -#, fuzzy msgid "Run in development mode." -msgstr "Run in login mode" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:2 msgid "Keep the browser process in the foreground." msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:3 -#, fuzzy msgid "Print usage message." -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:4 -#, fuzzy msgid "Log all output to file." -msgstr "Log input to file" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:5 msgid "Open a new window." @@ -9341,9 +8493,8 @@ msgid "Run the specified specs and exit with error code on failures." msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:11 -#, fuzzy msgid "Print the version." -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:12 msgid "Wait for window to be closed before returning." @@ -9354,34 +8505,28 @@ msgid "Manage file archives of various types" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:2 -#, fuzzy msgid "list files in archive (als)" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:3 -#, fuzzy msgid "extract files from archive (aunpack)" -msgstr "Extract from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:4 -#, fuzzy msgid "extract archive to specified directory" -msgstr "Restrict wildcards to specified directory" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:5 -#, fuzzy msgid "create archive (apack)" -msgstr "Create archive" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:6 -#, fuzzy msgid "extract file to standard out (acat)" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:7 -#, fuzzy msgid "generate a diff between two archives (adiff)" -msgstr "Create a diff between two versions of the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:8 msgid "repack archives to a different format (arepack)" @@ -9396,9 +8541,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tee.fish:3 #: /tmp/fish/implicit/share/completions/tr.fish:5 #: /tmp/fish/implicit/share/completions/unexpand.fish:5 -#, fuzzy msgid "display this help and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:10 #: /tmp/fish/implicit/share/completions/dd.fish:2 @@ -9413,14 +8557,12 @@ msgstr "Display help and exit" #: /tmp/fish/implicit/share/completions/tee.fish:4 #: /tmp/fish/implicit/share/completions/tr.fish:6 #: /tmp/fish/implicit/share/completions/unexpand.fish:6 -#, fuzzy msgid "output version information and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:11 -#, fuzzy msgid "execute command above for each file specified" -msgstr "Execute command as if part of .wgetrc" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:12 msgid "override archive format (see below)" @@ -9435,66 +8577,56 @@ msgid "always create subdirectory when extracting" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:15 -#, fuzzy msgid "allow overwriting of local files" -msgstr "Build new local files" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:16 -#, fuzzy msgid "decrease verbosity level by one" -msgstr "Output sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:17 -#, fuzzy msgid "increase verbosity level by one" -msgstr "Increment the misc debug level by one" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:18 msgid "specify verbosity (0, 1 or 2)" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:19 -#, fuzzy msgid "send output through pager" -msgstr "Pass the output through “pr”" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:20 msgid "filenames from standard in are null-byte separated" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:21 -#, fuzzy msgid "explain what is being done by atool" -msgstr "Explain what is done" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:22 msgid "simulation mode - no filesystem changes are made" msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:23 -#, fuzzy msgid "override a configuration option (KEY=VALUE)" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/atool.fish:24 -#, fuzzy msgid "load configuration defaults from file" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:1 -#, fuzzy msgid "Synchronize AUR packages" -msgstr "Show upgraded packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:2 -#, fuzzy msgid "Save and restore package state" -msgstr "Clean source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:3 -#, fuzzy msgid "Package cache actions" -msgstr "Manual sections" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:4 #: /tmp/fish/implicit/share/completions/pacaur.fish:1 @@ -9503,23 +8635,20 @@ msgstr "Manual sections" #: /tmp/fish/implicit/share/completions/pacman.fish:3 #: /tmp/fish/implicit/share/completions/yaourt.fish:1 #: /tmp/fish/implicit/share/completions/yaourt.fish:4 -#, fuzzy msgid "Modify the package database" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:5 msgid "Pacman log actions" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:6 -#, fuzzy msgid "Build packages from ABS" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:7 -#, fuzzy msgid "Operate on orphan packages" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:8 #: /tmp/fish/implicit/share/completions/pacaur.fish:2 @@ -9528,55 +8657,48 @@ msgstr "Update list of packages" #: /tmp/fish/implicit/share/completions/pacman.fish:4 #: /tmp/fish/implicit/share/completions/yaourt.fish:2 #: /tmp/fish/implicit/share/completions/yaourt.fish:5 -#, fuzzy msgid "Query the package database" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:9 #: /tmp/fish/implicit/share/completions/pacaur.fish:6 #: /tmp/fish/implicit/share/completions/pacman.fish:5 #: /tmp/fish/implicit/share/completions/yaourt.fish:6 -#, fuzzy msgid "Remove packages from the system" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:10 #: /tmp/fish/implicit/share/completions/pacaur.fish:7 #: /tmp/fish/implicit/share/completions/pacman.fish:6 #: /tmp/fish/implicit/share/completions/yaourt.fish:7 -#, fuzzy msgid "Synchronize packages" -msgstr "Show upgraded packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:11 #: /tmp/fish/implicit/share/completions/pacaur.fish:8 #: /tmp/fish/implicit/share/completions/pacman.fish:7 #: /tmp/fish/implicit/share/completions/yaourt.fish:8 -#, fuzzy msgid "Check dependencies" -msgstr "Correct broken dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:12 #: /tmp/fish/implicit/share/completions/pacaur.fish:9 #: /tmp/fish/implicit/share/completions/pacman.fish:8 #: /tmp/fish/implicit/share/completions/yaourt.fish:9 -#, fuzzy msgid "Upgrade or add a local package" -msgstr "Upgrade source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:13 msgid "Show settings while running" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:14 -#, fuzzy msgid "Do not use powerpill" -msgstr "Do not use gcc wrapper" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:15 -#, fuzzy msgid "Show available languages" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:16 msgid "View pacman.conf" @@ -9602,58 +8724,51 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:23 #: /tmp/fish/implicit/share/completions/pacman.fish:14 #: /tmp/fish/implicit/share/completions/yaourt.fish:20 -#, fuzzy msgid "Output more status messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:22 #: /tmp/fish/implicit/share/completions/pacaur.fish:24 #: /tmp/fish/implicit/share/completions/pacman.fish:15 #: /tmp/fish/implicit/share/completions/yaourt.fish:21 -#, fuzzy msgid "Alternate architecture" -msgstr "Create archive" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:23 #: /tmp/fish/implicit/share/completions/pacaur.fish:25 #: /tmp/fish/implicit/share/completions/pacman.fish:16 #: /tmp/fish/implicit/share/completions/yaourt.fish:22 -#, fuzzy msgid "Alternative package cache location" -msgstr "Auto-gen package cache" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:24 #: /tmp/fish/implicit/share/completions/pacaur.fish:26 #: /tmp/fish/implicit/share/completions/pacman.fish:17 #: /tmp/fish/implicit/share/completions/tmux.fish:12 #: /tmp/fish/implicit/share/completions/yaourt.fish:23 -#, fuzzy msgid "Alternate config file" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:25 #: /tmp/fish/implicit/share/completions/pacaur.fish:27 #: /tmp/fish/implicit/share/completions/pacman.fish:18 #: /tmp/fish/implicit/share/completions/yaourt.fish:24 -#, fuzzy msgid "Display debug messages" -msgstr "Display debug info" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:26 #: /tmp/fish/implicit/share/completions/pacaur.fish:28 #: /tmp/fish/implicit/share/completions/pacman.fish:19 #: /tmp/fish/implicit/share/completions/yaourt.fish:25 -#, fuzzy msgid "GPG directory to verify signatures" -msgstr "Options for verifying signatures" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:27 #: /tmp/fish/implicit/share/completions/pacaur.fish:30 #: /tmp/fish/implicit/share/completions/pacman.fish:21 #: /tmp/fish/implicit/share/completions/yaourt.fish:27 -#, fuzzy msgid "Specify alternative log file" -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:28 #: /tmp/fish/implicit/share/completions/pacaur.fish:31 @@ -9666,9 +8781,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:45 #: /tmp/fish/implicit/share/completions/pacman.fish:23 #: /tmp/fish/implicit/share/completions/yaourt.fish:37 -#, fuzzy msgid "Skip [all] dependency checks" -msgstr "Don't do a dependency check" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:30 #: /tmp/fish/implicit/share/completions/pacaur.fish:46 @@ -9681,9 +8795,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:48 #: /tmp/fish/implicit/share/completions/pacman.fish:26 #: /tmp/fish/implicit/share/completions/yaourt.fish:40 -#, fuzzy msgid "Do not execute install script" -msgstr "Don't execute post scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:33 #: /tmp/fish/implicit/share/completions/pacaur.fish:49 @@ -9696,9 +8809,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:50 #: /tmp/fish/implicit/share/completions/pacman.fish:28 #: /tmp/fish/implicit/share/completions/yaourt.fish:42 -#, fuzzy msgid "Specify printf-like format" -msgstr "Specify output format" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:35 #: /tmp/fish/implicit/share/completions/pacaur.fish:51 @@ -9717,9 +8829,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacman.fish:63 #: /tmp/fish/implicit/share/completions/yaourt.fish:44 #: /tmp/fish/implicit/share/completions/yaourt.fish:92 -#, fuzzy msgid "Mark PACKAGE as explicitly installed" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:37 #: /tmp/fish/implicit/share/completions/pacaur.fish:53 @@ -9746,9 +8857,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:56 #: /tmp/fish/implicit/share/completions/pacman.fish:34 #: /tmp/fish/implicit/share/completions/yaourt.fish:48 -#, fuzzy msgid "Do not reinstall up-to-date targets" -msgstr "Do not run update" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:41 #: /tmp/fish/implicit/share/completions/pacaur.fish:57 @@ -9761,17 +8871,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:58 #: /tmp/fish/implicit/share/completions/pacman.fish:36 #: /tmp/fish/implicit/share/completions/yaourt.fish:50 -#, fuzzy msgid "Display all packages in GROUP" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:43 #: /tmp/fish/implicit/share/completions/pacaur.fish:59 #: /tmp/fish/implicit/share/completions/pacman.fish:37 #: /tmp/fish/implicit/share/completions/yaourt.fish:51 -#, fuzzy msgid "Display information on PACKAGE" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:44 #: /tmp/fish/implicit/share/completions/aura.fish:53 @@ -9781,31 +8889,27 @@ msgstr "Display change information for the package" #: /tmp/fish/implicit/share/completions/pacman.fish:73 #: /tmp/fish/implicit/share/completions/yaourt.fish:52 #: /tmp/fish/implicit/share/completions/yaourt.fish:102 -#, fuzzy msgid "Show less information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:45 #: /tmp/fish/implicit/share/completions/pacaur.fish:61 #: /tmp/fish/implicit/share/completions/pacman.fish:39 #: /tmp/fish/implicit/share/completions/yaourt.fish:53 -#, fuzzy msgid "Search packages for regexp" -msgstr "Search packagename only" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:46 msgid "Remove packages only needed during installation" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:47 -#, fuzzy msgid "View package dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:48 -#, fuzzy msgid "View package information" -msgstr "Show package info" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:49 msgid "Show PKGBUILD diffs" @@ -9816,63 +8920,52 @@ msgid "View the packages's PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:51 -#, fuzzy msgid "Show makepkg output" -msgstr "Display help and debug options" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:52 -#, fuzzy msgid "Build dependencies from ABS" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:54 -#, fuzzy msgid "Search AUR by string matching" -msgstr "Recurse, search file matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:55 -#, fuzzy msgid "Upgrade all installed AUR packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:56 -#, fuzzy msgid "Download the source tarball" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:57 -#, fuzzy msgid "Ignore given comma-separated packages" -msgstr "Ignore non-authenticated packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:58 -#, fuzzy msgid "Specify a build location" -msgstr "Specify debugging options" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:59 -#, fuzzy msgid "User to build as" -msgstr "Use to build" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:60 msgid "Run customizepkg before build" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:61 -#, fuzzy msgid "Include -git/-svn/etc packages" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:62 -#, fuzzy msgid "Prompt for PKGBUILD editing" -msgstr "Prompt for an expiration time" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:63 -#, fuzzy msgid "Ignore architecture checking" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:64 msgid "Sort alphabetically" @@ -9895,25 +8988,21 @@ msgid "Restores a record kept with -B" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:69 -#, fuzzy msgid "Backup to directory" -msgstr "Target directory" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:70 -#, fuzzy msgid "Save this many versions" -msgstr "Ordena por versão" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:71 #: /tmp/fish/implicit/share/completions/aura.fish:73 -#, fuzzy msgid "Search via regex" -msgstr "Pattern is a regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:72 -#, fuzzy msgid "Show package history" -msgstr "Show package info" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:74 msgid "Search ABS by regex" @@ -9933,14 +9022,12 @@ msgid "Download fresh copy of the package list" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:77 -#, fuzzy msgid "Sync the given to local ABS tree" -msgstr "Move packages to local tree" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:79 -#, fuzzy msgid "Uninstall orphan packages" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:80 #: /tmp/fish/implicit/share/completions/pacaur.fish:62 @@ -9953,17 +9040,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:63 #: /tmp/fish/implicit/share/completions/pacman.fish:41 #: /tmp/fish/implicit/share/completions/yaourt.fish:60 -#, fuzzy msgid "List only non-explicit packages (dependencies)" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:82 #: /tmp/fish/implicit/share/completions/pacaur.fish:64 #: /tmp/fish/implicit/share/completions/pacman.fish:42 #: /tmp/fish/implicit/share/completions/yaourt.fish:61 -#, fuzzy msgid "List only explicitly installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:83 #: /tmp/fish/implicit/share/completions/pacaur.fish:65 @@ -9976,25 +9061,22 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:66 #: /tmp/fish/implicit/share/completions/pacman.fish:44 #: /tmp/fish/implicit/share/completions/yaourt.fish:63 -#, fuzzy msgid "List all files owned by PACKAGE" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:85 #: /tmp/fish/implicit/share/completions/pacaur.fish:67 #: /tmp/fish/implicit/share/completions/pacman.fish:45 #: /tmp/fish/implicit/share/completions/yaourt.fish:64 -#, fuzzy msgid "List all packages not in the database" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:86 #: /tmp/fish/implicit/share/completions/pacaur.fish:68 #: /tmp/fish/implicit/share/completions/pacman.fish:46 #: /tmp/fish/implicit/share/completions/yaourt.fish:65 -#, fuzzy msgid "Search for the package that owns FILE" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:87 #: /tmp/fish/implicit/share/completions/pacaur.fish:69 @@ -10007,33 +9089,29 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:70 #: /tmp/fish/implicit/share/completions/pacman.fish:48 #: /tmp/fish/implicit/share/completions/yaourt.fish:67 -#, fuzzy msgid "List only unrequired packages" -msgstr "Print only upgradeable packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:89 #: /tmp/fish/implicit/share/completions/pacaur.fish:71 #: /tmp/fish/implicit/share/completions/pacman.fish:49 #: /tmp/fish/implicit/share/completions/yaourt.fish:68 -#, fuzzy msgid "List only out-of-date packages" -msgstr "Print only upgradeable packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:91 #: /tmp/fish/implicit/share/completions/pacaur.fish:73 #: /tmp/fish/implicit/share/completions/pacman.fish:51 #: /tmp/fish/implicit/share/completions/yaourt.fish:72 -#, fuzzy msgid "Also remove packages depending on PACKAGE" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:92 #: /tmp/fish/implicit/share/completions/pacaur.fish:74 #: /tmp/fish/implicit/share/completions/pacman.fish:52 #: /tmp/fish/implicit/share/completions/yaourt.fish:73 -#, fuzzy msgid "Ignore file backup designations" -msgstr "Ignore externals definitions" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:93 #: /tmp/fish/implicit/share/completions/pacaur.fish:75 @@ -10053,33 +9131,29 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:78 #: /tmp/fish/implicit/share/completions/pacman.fish:56 #: /tmp/fish/implicit/share/completions/yaourt.fish:77 -#, fuzzy msgid "Remove [all] packages from cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:97 #: /tmp/fish/implicit/share/completions/pacaur.fish:79 #: /tmp/fish/implicit/share/completions/pacman.fish:57 #: /tmp/fish/implicit/share/completions/yaourt.fish:78 -#, fuzzy msgid "List all packages in REPOSITORY" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:98 #: /tmp/fish/implicit/share/completions/pacaur.fish:80 #: /tmp/fish/implicit/share/completions/pacman.fish:58 #: /tmp/fish/implicit/share/completions/yaourt.fish:79 -#, fuzzy msgid "Upgrade all packages that are out of date" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:99 #: /tmp/fish/implicit/share/completions/pacaur.fish:82 #: /tmp/fish/implicit/share/completions/pacman.fish:60 #: /tmp/fish/implicit/share/completions/yaourt.fish:81 -#, fuzzy msgid "Only download the target packages" -msgstr "Disable downloading packages" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:101 #: /tmp/fish/implicit/share/completions/aura.fish:102 @@ -10089,9 +9163,8 @@ msgstr "Disable downloading packages" #: /tmp/fish/implicit/share/completions/pacman.fish:76 #: /tmp/fish/implicit/share/completions/yaourt.fish:104 #: /tmp/fish/implicit/share/completions/yaourt.fish:105 -#, fuzzy msgid "Package file" -msgstr "Pacote" +msgstr "" #: /tmp/fish/implicit/share/completions/awk.fish:1 msgid "" @@ -10130,9 +9203,8 @@ msgid "Input_file Read a list of already existing known bad blocks" msgstr "" #: /tmp/fish/implicit/share/completions/badblocks.fish:5 -#, fuzzy msgid "Output_file Write the list of bad blocks to the specified file" -msgstr "Define a lista de preferências padrão como a string especificada" +msgstr "" #: /tmp/fish/implicit/share/completions/badblocks.fish:6 msgid "" @@ -10176,9 +9248,8 @@ msgid "Wrap encoded line after given number of caracters (default 76)" msgstr "" #: /tmp/fish/implicit/share/completions/bc.fish:1 -#, fuzzy msgid "Force interactive mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/bc.fish:2 msgid "Define math library" @@ -10205,33 +9276,28 @@ msgid "Seems mode: goes back to the first directory containing string" msgstr "" #: /tmp/fish/implicit/share/completions/bd.fish:3 -#, fuzzy msgid "Case insensitive move (implies seems mode)" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:1 msgid "Show unavailable key bindings/erase all bindings" msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:2 -#, fuzzy msgid "Erase mode" -msgstr "Modo detalhado" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:3 -#, fuzzy msgid "Print names of available functions" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:5 -#, fuzzy msgid "Specify key name, not sequence" -msgstr "Specify date range for query" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:6 -#, fuzzy msgid "Print names of available keys" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:7 msgid "Add to named bind mode" @@ -10242,15 +9308,13 @@ msgid "Change current bind mode to named mode" msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:9 -#, fuzzy msgid "Key name" -msgstr "nome" +msgstr "" #: /tmp/fish/implicit/share/completions/bind.fish:10 #: /tmp/fish/implicit/share/completions/commandline.fish:17 -#, fuzzy msgid "Function name" -msgstr "Function" +msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:1 msgid "Specify a prefix to use for all bison output file names" @@ -10290,9 +9354,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:9 -#, fuzzy msgid "Specify the name outfile for the parser file" -msgstr "Specifies the number of data bytes to be sent" +msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:10 msgid "" @@ -10313,9 +9376,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:13 -#, fuzzy msgid "Print the version number of bison and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/bison.fish:14 msgid "Print a summary of the options to bison and exit" @@ -10338,28 +9400,24 @@ msgid "Create a global (manually erased) event block" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:1 -#, fuzzy msgid "Check formula" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:2 -#, fuzzy msgid "Create a binary package" -msgstr "Info on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:3 -#, fuzzy msgid "Output developer debug information" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:4 msgid "Do not bump the bottle revision number" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:5 -#, fuzzy msgid "Write bottle block to a Ruby source file" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:6 msgid "Write bottle block to formula file" @@ -10370,14 +9428,12 @@ msgid "Merge multiple bottle outputs" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:8 -#, fuzzy msgid "Display formula" -msgstr "Display summary" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:9 -#, fuzzy msgid "Remove old installed versions" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:10 msgid "Remove out-of-date keg-only brews as well" @@ -10389,9 +9445,8 @@ msgid "Show what files would be removed" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:13 -#, fuzzy msgid "Scrub the cache" -msgstr "Build apt cache" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:14 msgid "Create new formula from URL" @@ -10406,14 +9461,12 @@ msgid "Use template for Autotools-style build" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:17 -#, fuzzy msgid "Don't download URL" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:18 -#, fuzzy msgid "Override name autodetection" -msgstr "Override framerate" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:19 msgid "Override version autodetection" @@ -10424,24 +9477,20 @@ msgid "Summarize specified formulae in one line" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:21 -#, fuzzy msgid "Search names and descriptions" -msgstr "Set function description" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:22 -#, fuzzy msgid "Search only names" -msgstr "Search in all man pages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:23 -#, fuzzy msgid "Search only descriptions" -msgstr "Set function description" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:24 -#, fuzzy msgid "Show a formula's dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:25 msgid "Show only 1 level down" @@ -10452,33 +9501,28 @@ msgid "Show in topological order" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:27 -#, fuzzy msgid "Show dependencies as tree" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:28 -#, fuzzy msgid "Show dependencies for all formulae" -msgstr "Don't check dependencies before uninstalling the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:29 -#, fuzzy msgid "Show dependencies for installed formulae" -msgstr "Don't check dependencies before uninstalling the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:30 msgid "Determine installation prefix for non-brew software" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:31 -#, fuzzy msgid "Set name of package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:32 -#, fuzzy msgid "Set version of package" -msgstr "Version of source package" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:33 msgid "Check your system for problems" @@ -10489,9 +9533,8 @@ msgid "Open brew/formula for editing" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:35 -#, fuzzy msgid "Download source for formula" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:36 msgid "Remove a previously cached version and re-fetch" @@ -10502,48 +9545,42 @@ msgid "Download the HEAD version from a VCS" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:38 -#, fuzzy msgid "Also download dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:39 msgid "Make HEAD checkout verbose" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:40 -#, fuzzy msgid "Fetch source package instead of bottle" -msgstr "Fetch source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:42 msgid "Open brew/formula's homepage" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:43 -#, fuzzy msgid "Display information about formula" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:44 -#, fuzzy msgid "Display info for all formulae" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:45 msgid "Open the GitHub History page for formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:46 -#, fuzzy msgid "Install formula" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:47 #: /tmp/fish/implicit/share/completions/prt-get.fish:35 #: /tmp/fish/implicit/share/completions/prt-get.fish:94 -#, fuzzy msgid "Force install" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:48 msgid "If install fails, open shell in temp directory" @@ -10554,9 +9591,8 @@ msgid "skip installing any dependencies of any kind" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:50 -#, fuzzy msgid "Attempt to compile using the specified compiler" -msgstr "Output profiling information to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:51 msgid "Compile from source even if a bottle is provided" @@ -10575,18 +9611,16 @@ msgid "Download and patch formula, then open a shell" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:55 -#, fuzzy msgid "Force the specified build environment" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:56 msgid "Optimize for a generic CPU architecture" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:57 -#, fuzzy msgid "Optimize for the specified CPU architecture" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:58 msgid "Symlink installed formula" @@ -10594,9 +9628,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:59 #: /tmp/fish/implicit/share/completions/brew.fish:60 -#, fuzzy msgid "Overwrite existing files" -msgstr "Do not overwrite newer files" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:61 #: /tmp/fish/implicit/share/completions/brew.fish:62 @@ -10617,9 +9650,8 @@ msgid "Link .app bundles into ~/Applications instead" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:67 -#, fuzzy msgid "List all installed formula" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:68 #: /tmp/fish/implicit/share/completions/brew.fish:71 @@ -10628,9 +9660,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:69 #: /tmp/fish/implicit/share/completions/brew.fish:72 -#, fuzzy msgid "Show the version number" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:70 #: /tmp/fish/implicit/share/completions/brew.fish:73 @@ -10638,9 +9669,8 @@ msgid "Show the versions of pinned formulae" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:74 -#, fuzzy msgid "Show log for formula" -msgstr "Short format" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:75 #: /tmp/fish/implicit/share/completions/brew.fish:77 @@ -10652,9 +9682,8 @@ msgid "formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:76 -#, fuzzy msgid "Check formula for missing dependencies" -msgstr "Ask for extra dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:78 msgid "Display install options for formula" @@ -10669,33 +9698,28 @@ msgid "Show options for all formulae" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:81 -#, fuzzy msgid "Show options for all installed formulae" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:83 msgid "Show formula that have updated versions" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:84 -#, fuzzy msgid "Display only names" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:85 -#, fuzzy msgid "Pin the specified formulae to their current versions" -msgstr "Adiciona o arquivo especificado à lista atual de chaveiros" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:87 -#, fuzzy msgid "Remove dead symlinks" -msgstr "Remove source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:88 -#, fuzzy msgid "Search for formula by name" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:89 #: /tmp/fish/implicit/share/completions/brew.fish:91 @@ -10724,14 +9748,12 @@ msgid "Gracefully restart a service" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:97 -#, fuzzy msgid "Start a service" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:98 -#, fuzzy msgid "Stop a service" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:100 msgid "All Services" @@ -10742,9 +9764,8 @@ msgid "Instantiate a Homebrew build enviornment" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:102 -#, fuzzy msgid "Use stdenv instead of superenv" -msgstr "Use purge instead of remove" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:103 msgid "Tap a new formula repository on GitHub" @@ -10759,16 +9780,14 @@ msgid "Run tests for formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:107 -#, fuzzy msgid "Uninstall formula" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:108 #: /tmp/fish/implicit/share/completions/brew.fish:109 #: /tmp/fish/implicit/share/completions/brew.fish:110 -#, fuzzy msgid "Delete all installed versions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:111 msgid "Unlink formula" @@ -10783,19 +9802,16 @@ msgid "Remove links from ~/Applications created by brew linkapps" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:114 -#, fuzzy msgid "Extract source code" -msgstr "Specify record type" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:115 -#, fuzzy msgid "Unpin specified formulae" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:116 -#, fuzzy msgid "Remove a tapped repository" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:117 msgid "Fetch newest version of Homebrew and formulas" @@ -10806,28 +9822,24 @@ msgid "Use git pull --rebase" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:119 -#, fuzzy msgid "Upgrade outdated brews" -msgstr "Upgrade source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:120 msgid "Show formulas that depend on specified formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:121 -#, fuzzy msgid "List only installed formulae" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:122 -#, fuzzy msgid "Resolve more than one level of dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:123 -#, fuzzy msgid "Print version number of brew" -msgstr "Mostra inode dos arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:124 msgid "Show Homebrew a summary of the build environment" @@ -10838,75 +9850,64 @@ msgid "Display where Homebrew's .git directory is located" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:126 -#, fuzzy msgid "Show Homebrew and system configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:127 -#, fuzzy msgid "Display Homebrew's install path" -msgstr "Display compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:128 -#, fuzzy msgid "Display formula's install path" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:129 -#, fuzzy msgid "Display Homebrew's download cache" -msgstr "Disable downloading packages" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:130 msgid "Display the file or directory used to cache formula" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:131 -#, fuzzy msgid "Display Homebrew's Cellar path" -msgstr "Display compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:132 msgid "Display formula's install path in Cellar" msgstr "" #: /tmp/fish/implicit/share/completions/builtin.fish:2 -#, fuzzy msgid "Print names of all existing builtins" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:1 -#, fuzzy msgid "Test if bundle has been given no subcommand" -msgstr "Test if aptitude has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:2 -#, fuzzy msgid "Test if bundle has been given a specific subcommand" -msgstr "Test if aptitude has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:3 msgid "Specify the number of times you wish to attempt network commands" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:4 -#, fuzzy msgid "Disable colorization in output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:5 msgid "Enable verbose output mode" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:6 -#, fuzzy msgid "Display a help page" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:7 -#, fuzzy msgid "Prints version information" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:8 #: /tmp/fish/implicit/share/completions/bundle.fish:40 @@ -10915,19 +9916,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:9 #: /tmp/fish/implicit/share/completions/bundle.fish:57 -#, fuzzy msgid "The location of the Gemfile bundler should use" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:10 -#, fuzzy msgid "The location to install the gems in the bundle to" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:11 -#, fuzzy msgid "Installs the gems in the bundle to the system location" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:12 msgid "A space-separated list of groups to skip installing" @@ -10968,14 +9966,12 @@ msgid "Do not update the cache in vendor/cache with the newly bundled gems" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:21 -#, fuzzy msgid "Do not print progress information to stdout" -msgstr "Don't print group information" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:22 -#, fuzzy msgid "Run bundle clean automatically after install" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:23 #: /tmp/fish/implicit/share/completions/bundle.fish:30 @@ -10984,9 +9980,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:24 #: /tmp/fish/implicit/share/completions/bundle.fish:89 -#, fuzzy msgid "Do not remove stale gems from the cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:25 msgid "Do not allow the Gemfile.lock to be updated after this install" @@ -10994,9 +9989,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:26 #: /tmp/fish/implicit/share/completions/bundle.fish:41 -#, fuzzy msgid "Update dependencies to their latest versions" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:27 msgid "The name of a :git or :path source used in the Gemfile" @@ -11011,14 +10005,12 @@ msgid "Only output warnings and errors" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:31 -#, fuzzy msgid "Specify the number of jobs to run in parallel" -msgstr "Specifies the number of data bytes to be sent" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:32 -#, fuzzy msgid "Update a specific group" -msgstr "Use a specified tag" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:33 msgid "" @@ -11027,14 +10019,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:34 -#, fuzzy msgid "Install the binstubs of the listed gem" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:35 -#, fuzzy msgid "Binstub destination directory (default bin)" -msgstr "Install documentation files (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:36 msgid "Overwrite existing binstubs if they exist" @@ -11054,28 +10044,24 @@ msgid "Describe available tasks or one specific task" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:42 -#, fuzzy msgid "Package .gem files into the vendor/cache directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:44 -#, fuzzy msgid "Specify and read configuration options for bundler" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:45 msgid "Check bundler requirements for your application" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:46 -#, fuzzy msgid "Show all of the gems in the current bundle" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:47 -#, fuzzy msgid "Show the source location of a particular gem in the bundle" -msgstr "Show the process id of each process in the job" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:48 #: /tmp/fish/implicit/share/completions/bundle.fish:64 @@ -11093,9 +10079,8 @@ msgid "Generate a visual representation of your dependencies" msgstr "Gerar uma representação visual de suas dependências" #: /tmp/fish/implicit/share/completions/bundle.fish:52 -#, fuzzy msgid "Generate a simple Gemfile" -msgstr "Generate master file" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:53 #: /tmp/fish/implicit/share/completions/bundle.fish:78 @@ -11104,9 +10089,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:54 #: /tmp/fish/implicit/share/completions/bundle.fish:83 -#, fuzzy msgid "Displays platform compatibility information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:55 #: /tmp/fish/implicit/share/completions/bundle.fish:85 @@ -11124,9 +10108,8 @@ msgid "Specify a path other than the system default (BUNDLE_PATH or GEM_HOME)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:59 -#, fuzzy msgid "Lock the Gemfile" -msgstr "Log to tracefile" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:60 #: /tmp/fish/implicit/share/completions/bundle.fish:62 @@ -11141,9 +10124,8 @@ msgid "List the paths of all gems required by your Gemfile" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:65 -#, fuzzy msgid "Check for newer pre-release gems" -msgstr "Check for memory leaks" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:66 msgid "Check against a specific source" @@ -11162,9 +10144,8 @@ msgid "The name to use for the generated file (see format option)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:73 -#, fuzzy msgid "Show each gem version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:74 msgid "Show the version of each required dependency" @@ -11175,9 +10156,8 @@ msgid "Output a specific format (png, jpg, svg, dot, …)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:76 -#, fuzzy msgid "Generate a simple Gemfile, placed in the current directory" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:77 msgid "Use a specified .gemspec to create the Gemfile" @@ -11192,18 +10172,16 @@ msgid "Generate a test directory for your library (rspec or minitest)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:81 -#, fuzzy msgid "Path to your editor" -msgstr "Set source directory" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:82 msgid "Generate the boilerplate for C extension code" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:84 -#, fuzzy msgid "Only display Ruby directive information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:86 msgid "Only print out changes, do not actually clean gems" @@ -11222,14 +10200,12 @@ msgid "Include all sources (including path and git)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:91 -#, fuzzy msgid "Prints the license of all gems in the bundle" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:92 -#, fuzzy msgid "Print information about the environment Bundler is running under" -msgstr "Output extra information about the work being done" +msgstr "" #: /tmp/fish/implicit/share/completions/bunzip2.fish:1 msgid "Decompress to stdout" @@ -11245,9 +10221,8 @@ msgstr "Overwrite" #: /tmp/fish/implicit/share/completions/bunzip2.fish:3 #: /tmp/fish/implicit/share/completions/bzip2.fish:5 -#, fuzzy msgid "Do not overwrite" -msgstr "Don't overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/bunzip2.fish:4 #: /tmp/fish/implicit/share/completions/bzcat.fish:1 @@ -11269,9 +10244,8 @@ msgid "Print license" msgstr "Print license" #: /tmp/fish/implicit/share/completions/busctl.fish:1 -#, fuzzy msgid "Suppress message payload display" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:2 msgid "Show a flat list instead of a tree" @@ -11282,9 +10256,8 @@ msgid "Activate the peer if necessary" msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:4 -#, fuzzy msgid "Only show unique (:X.Y) names" -msgstr "Only print unique lines" +msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:5 msgid "Only show well-known names" @@ -11301,9 +10274,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bzip2.fish:1 #: /tmp/fish/implicit/share/completions/gunzip.fish:1 #: /tmp/fish/implicit/share/completions/gzip.fish:1 -#, fuzzy msgid "Compress to stdout" -msgstr "Decompress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/bzip2.fish:2 msgid "Compress file" @@ -11328,28 +10300,24 @@ msgid "Large block size" msgstr "Large block size" #: /tmp/fish/implicit/share/completions/bzr.fish:2 -#, fuzzy msgid "List all help topics" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:3 -#, fuzzy msgid "List all commands" -msgstr "Disable this command" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:4 -#, fuzzy msgid "Help about supported formats" -msgstr "Formato separado por vírgula" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:5 msgid "Help about current supported formats" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:6 -#, fuzzy msgid "How to specify revisions in bzr" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:7 msgid "Show bug tracker settings in bzr" @@ -11372,14 +10340,12 @@ msgid "Never change revnos or the existing log. Append revisions to it only" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:12 -#, fuzzy msgid "Make a copy of another branch" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:13 -#, fuzzy msgid "Proceed even if directory exits" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:14 msgid "Create a stacked branch referring to the source branch" @@ -11394,9 +10360,8 @@ msgid "Switch the checkout in the current directory to the new branch" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:17 -#, fuzzy msgid "Hard-link working tree files where possible" -msgstr "Bring work tree in sync with repository" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:18 msgid "Bind new branch to from location" @@ -11407,33 +10372,28 @@ msgid "Create a branch without a working-tree" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:20 -#, fuzzy msgid "Make files or directories versioned" -msgstr "Place files or directories under version control" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:21 -#, fuzzy msgid "Don't recursively add the contents of directories" -msgstr "Don't add contents of subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:22 -#, fuzzy msgid "Ignore a file or pattern" -msgstr "Ignorar todos os espaços em branco" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:23 msgid "Display the default ignore rules that bzr uses" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:24 -#, fuzzy msgid "Move or rename a versioned file" -msgstr "Do not create file" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:25 -#, fuzzy msgid "Automatically guess renames" -msgstr "Automatic yes to prompts" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:26 msgid "" @@ -11442,41 +10402,36 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:27 -#, fuzzy msgid "Summarize changes in working copy" -msgstr "Recursively clean up the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:28 msgid "Use short status indicators" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:29 -#, fuzzy msgid "Only show versioned files" -msgstr "Armazenar apenas arquivos novos" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:30 -#, fuzzy msgid "Don't show pending merges" -msgstr "Don't strip leading /" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:31 msgid "Do not mark object type using indicator" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:32 -#, fuzzy msgid "Show internal object ids" -msgstr "Display help and debug options" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:33 msgid "Show detailed diffs" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:34 -#, fuzzy msgid "Pull in changes from another branch" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:35 msgid "" @@ -11485,9 +10440,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:36 -#, fuzzy msgid "Remember the specified location as a default" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:37 msgid "Merge even if the destination tree has uncommitted changes" @@ -11503,35 +10457,30 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:40 -#, fuzzy msgid "Show base revision text in conflicts" -msgstr "Show last revision where each line was modified" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:41 msgid "Instead of merging, show a diff of the merge" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:42 -#, fuzzy msgid "Select changes interactively" -msgstr "Select interface" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:43 -#, fuzzy msgid "" "Branch to merge into, rather than the one containing the working directory" -msgstr "Record an inverse patch without changing the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:44 #: /tmp/fish/implicit/share/completions/bzr.fish:45 -#, fuzzy msgid "Select changes introduced by the specified revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:46 -#, fuzzy msgid "Save some or all changes" -msgstr "Make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:47 msgid "" @@ -11540,18 +10489,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:48 -#, fuzzy msgid "Take commit message from this file" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:49 msgid "Do not consider changes made to a given path" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:50 -#, fuzzy msgid "Description of the new revision" -msgstr "Description of this completions" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:51 msgid "Set the author's name, if it's different from the commiter" @@ -11570,9 +10517,8 @@ msgid "Mark a bug as being fixed by this revision" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:55 -#, fuzzy msgid "Refuse to commit if there are unknown files in the working tree" -msgstr "Display unrecorded changes in the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:56 msgid "" @@ -11603,14 +10549,12 @@ msgid "Mail the request to this address" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:62 -#, fuzzy msgid "Use the specified output format" -msgstr "Use the portable output format" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:63 -#, fuzzy msgid "Do not include a bundle in the merge directive" -msgstr "Do not include subdirectory size" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:64 msgid "" @@ -11623,50 +10567,41 @@ msgid "Do not include a preview patch in the merge directive" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:66 -#, fuzzy msgid "Show history of changes" -msgstr "Show source package" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:67 -#, fuzzy msgid "Validate storage" -msgstr "Validate" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:68 -#, fuzzy msgid "Check the working tree related to the current directory" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:69 -#, fuzzy msgid "Check the repository related to the current directory" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:70 -#, fuzzy msgid "Check the branch related to the current directory" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:71 -#, fuzzy msgid "Show usage message and options" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:72 #: /tmp/fish/implicit/share/completions/git.fish:382 -#, fuzzy msgid "Show help message" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:73 -#, fuzzy msgid "Only displays errors and warnings" -msgstr "Downgrade some errors to warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:74 -#, fuzzy msgid "Display more information" -msgstr "List inode information" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:75 msgid "Show what would be done" @@ -11731,18 +10666,16 @@ msgstr "" # proc.cpp:1279 # proc.cpp:1305 #: /tmp/fish/implicit/share/completions/caddy.fish:14 -#, fuzzy msgid "Process log file" -msgstr "Ponteiro de lista de processo" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:15 msgid "Path to write pid file" msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:16 -#, fuzzy msgid "List installed plugins" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:17 msgid "Default port" @@ -11761,14 +10694,12 @@ msgid "Hostname for which to revoke the certificate" msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:21 -#, fuzzy msgid "Root path of default site" -msgstr "Don't set default repository" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:22 -#, fuzzy msgid "Type of server to run" -msgstr "Write top servers to file" +msgstr "" #: /tmp/fish/implicit/share/completions/caddy.fish:23 msgid "Parse the Caddyfile but do not start the server" @@ -11783,9 +10714,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:10 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:2 #: /tmp/fish/implicit/share/completions/s3cmd.fish:128 -#, fuzzy msgid "Show version" -msgstr "Ordena por versão" +msgstr "" #: /tmp/fish/implicit/share/completions/caffeinate.fish:1 msgid "Create an assertion to prevent the display from sleeping" @@ -11808,9 +10738,8 @@ msgid "Create an assertion to declare that user is active" msgstr "" #: /tmp/fish/implicit/share/completions/caffeinate.fish:6 -#, fuzzy msgid "Specifies the timeout value in seconds" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/caffeinate.fish:7 msgid "Waits for the process with the specified PID to exit" @@ -11821,29 +10750,24 @@ msgid "Cancel jobs owned by username" msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:1 -#, fuzzy msgid "Show Help" -msgstr "Show time type" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:3 -#, fuzzy msgid "Update before running" -msgstr "Update source and rebuild" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:4 -#, fuzzy msgid "List feeds" -msgstr "Lista as chaves" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:5 -#, fuzzy msgid "Show number of new items" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:6 -#, fuzzy msgid "Show number of new items for feed" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:7 msgid "Feed" @@ -11862,63 +10786,52 @@ msgid "Add feed" msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:11 -#, fuzzy msgid "Set configuration directory" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:12 #: /tmp/fish/implicit/share/completions/pine.fish:10 -#, fuzzy msgid "Set configuration file" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:13 -#, fuzzy msgid "Set client log file" -msgstr "Set tag file" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:14 -#, fuzzy msgid "Set feed directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:15 -#, fuzzy msgid "Set script directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:1 #: /tmp/fish/implicit/share/completions/light.fish:2 #: /tmp/fish/implicit/share/completions/rustc.fish:1 -#, fuzzy msgid "Print version info and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:2 -#, fuzzy msgid "List installed commands" -msgstr "Disable this command" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:3 #: /tmp/fish/implicit/share/completions/rustc.fish:2 -#, fuzzy msgid "Use verbose output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:4 -#, fuzzy msgid "No output printed to stdout" -msgstr "Copy module file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:5 -#, fuzzy msgid "Don't build documentation for dependencies" -msgstr "Don't automatically fulfill dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:6 -#, fuzzy msgid "Specify a vcs to use" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:7 msgid "Opens the docs in a browser after the operation" @@ -11933,9 +10846,8 @@ msgid "Login of a user to remove as an owner" msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:10 -#, fuzzy msgid "Don't verify the contents by building them" -msgstr "Don't verify time attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:11 msgid "Ignore warnings about a lack of human-usable metadata" @@ -11974,9 +10886,8 @@ msgid "Path or URL to SRT or VTT file" msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:5 -#, fuzzy msgid "Set subtitles font scale" -msgstr "Subtitle file" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:6 msgid "Set subtitles font RGBA color" @@ -11987,15 +10898,13 @@ msgid "Specify port to be used for serving subtitles" msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:8 -#, fuzzy msgid "Set local IP" -msgstr "Set block size" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:9 #: /tmp/fish/implicit/share/completions/pv.fish:12 -#, fuzzy msgid "No output" -msgstr "Saída de vídeo" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:10 msgid "Explicitly set the mime-type" @@ -12019,37 +10928,32 @@ msgid "Play in random order" msgstr "Play in random order" #: /tmp/fish/implicit/share/completions/castnow.fish:15 -#, fuzzy msgid "List all files in directories recursively" -msgstr "Lista subdiretórios recursivamente" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:16 -#, fuzzy msgid "Set at which the volume changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:17 msgid "Specify port to be used for serving local file" msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:18 -#, fuzzy msgid "Specify port to be used for serving transcoded file" -msgstr "Specify port for web interface" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:19 -#, fuzzy msgid "Specify port to be used for serving torrented file" -msgstr "Specify port for web interface" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:20 msgid "Specify port to be used for serving file read from stdin" msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:21 -#, fuzzy msgid "Execute key command(s)" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/castnow.fish:22 msgid "Exit when playback begins or --command completes" @@ -12111,9 +11015,8 @@ msgid "Set TAO (Track At Once) writing mode" msgstr "Set TAO (Track At Once) writing mode" #: /tmp/fish/implicit/share/completions/cdrecord.fish:14 -#, fuzzy msgid "Set RAW writing mode" -msgstr "Set TAO (Track At Once) writing mode" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:15 msgid "Select Set RAW writing, the preferred raw writing mode" @@ -12166,9 +11069,8 @@ msgstr "" "the SCSI driver" #: /tmp/fish/implicit/share/completions/cdrecord.fish:25 -#, fuzzy msgid "Load the media and exit" -msgstr "Load the media, lock the door and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:26 msgid "Load the media, lock the door and exit" @@ -12215,9 +11117,8 @@ msgid "Allows the user to manually select a driver for the device" msgstr "Allows the user to manually select a driver for the device" #: /tmp/fish/implicit/share/completions/cdrecord.fish:37 -#, fuzzy msgid "Set driver specific options" -msgstr "Edita compleções específicas para um comando" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:38 msgid "" @@ -12446,9 +11347,8 @@ msgstr "Output diagnostic for changed files" #: /tmp/fish/implicit/share/completions/chgrp.fish:2 #: /tmp/fish/implicit/share/completions/chown.fish:2 -#, fuzzy msgid "Dereference symbolic links" -msgstr "Dereferense symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/chgrp.fish:3 #: /tmp/fish/implicit/share/completions/chown.fish:3 @@ -12462,9 +11362,8 @@ msgstr "Change from owner/group" #: /tmp/fish/implicit/share/completions/chgrp.fish:5 #: /tmp/fish/implicit/share/completions/chown.fish:5 -#, fuzzy msgid "Suppress errors" -msgstr "Supress errors" +msgstr "" #: /tmp/fish/implicit/share/completions/chgrp.fish:6 #: /tmp/fish/implicit/share/completions/chown.fish:6 @@ -12491,29 +11390,25 @@ msgid "Do not treat / specially (the default)" msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:3 -#, fuzzy msgid "Fail to operate recursively on /" -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:4 #: /tmp/fish/implicit/share/completions/readlink.fish:5 -#, fuzzy msgid "Suppress most error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:5 -#, fuzzy msgid "Output a diagnostic for every file processed" -msgstr "Output diagnostic for every file" +msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:6 msgid "Use RFILEs mode instead of MODE values" msgstr "" #: /tmp/fish/implicit/share/completions/chmod.fish:7 -#, fuzzy msgid "Change files and directories recursively" -msgstr "List subdirectory recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/chown.fish:11 #: /tmp/fish/implicit/share/completions/chown.fish:12 @@ -12522,34 +11417,28 @@ msgid "Username" msgstr "Nome do usuário" #: /tmp/fish/implicit/share/completions/chsh.fish:1 -#, fuzzy msgid "Specify your login shell" -msgstr "Specify email address" +msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:2 -#, fuzzy msgid "Display help and exit\t" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:4 -#, fuzzy msgid "List available shells and exit" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:2 -#, fuzzy msgid "Update your climate install" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:3 -#, fuzzy msgid "uninstall climate" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:4 -#, fuzzy msgid "Show climate version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:5 msgid "Get the weather" @@ -12557,23 +11446,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:6 #: /tmp/fish/implicit/share/completions/climate.fish:7 -#, fuzzy msgid "Display remaining battery" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:8 msgid "Lock computer" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:9 -#, fuzzy msgid "Shutdown the computer" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:10 -#, fuzzy msgid "Restart the computer" -msgstr "Set start chapter" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:12 msgid "Put a console clock in the top right corner" @@ -12588,68 +11474,56 @@ msgid "A stopwatch" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:15 -#, fuzzy msgid "Pipe output to ix.io" -msgstr "Acrescentar saída a arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:16 -#, fuzzy msgid "Find the biggest files recursively" -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:17 -#, fuzzy msgid "Find the biggest directories" -msgstr "Prune empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:18 -#, fuzzy msgid "Find directory size" -msgstr "Do not include subdirectory size" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:19 -#, fuzzy msgid "Remove empty directories" -msgstr "Prune empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:20 -#, fuzzy msgid "Extract any given archive" -msgstr "Extract from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:21 -#, fuzzy msgid "Report duplicate files in a directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:22 -#, fuzzy msgid "Count the number of occurences" -msgstr "Print number of occurences" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:23 -#, fuzzy msgid "Monitor file for changes" -msgstr "Make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:24 -#, fuzzy msgid "Search for the given pattern recursively" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:25 -#, fuzzy msgid "Replace all occurences" -msgstr "Replace include directories" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:26 msgid "Create a ramfs of size (in MB) at path" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:27 -#, fuzzy msgid "Test your network speed" -msgstr "Tags you want to see" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:28 msgid "Retrieve your local ip address" @@ -12664,52 +11538,44 @@ msgid "Retrieve your public ip address" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:31 -#, fuzzy msgid "List open ports" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:32 -#, fuzzy msgid "Edit the hosts file" -msgstr "Escreve para o arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:33 -#, fuzzy msgid "http-server serving the current directory" -msgstr "Read files under each directory" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:34 msgid "Determine if server is up" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:35 -#, fuzzy msgid "Download file from server" -msgstr "Edit files in place" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:36 -#, fuzzy msgid "Download dir from server" -msgstr "Download and extract a source" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:37 -#, fuzzy msgid "Upload to server" -msgstr "Utilizar servidor proxy" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:38 -#, fuzzy msgid "Mount a remote path" -msgstr "Do not sign the patch" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:39 msgid "Unmount a ssh mount" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:40 -#, fuzzy msgid "Undo the latest commit" -msgstr "Run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:41 msgid "Reset local repo to match remote" @@ -12720,28 +11586,24 @@ msgid "Seset local repo to match remote" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:43 -#, fuzzy msgid "List all branches" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:44 -#, fuzzy msgid "Calculate the repo size" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:45 msgid "Calculate total contribution for a user" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:46 -#, fuzzy msgid "Display a performance overview" -msgstr "Display font properties" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:47 -#, fuzzy msgid "Find memory used" -msgstr "Reduce memory usage" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:48 msgid "Find disk used" @@ -12756,18 +11618,16 @@ msgid "Find the trash size" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:51 -#, fuzzy msgid "Empty the trash" -msgstr "Sai do shell" +msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:1 msgid "Combine sets of lines from two files using boolean operations" msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:2 -#, fuzzy msgid "Output lines that are in both files" -msgstr "Output rss-data to file" +msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:3 msgid "Output lines that are inf file1 but not in file2" @@ -12782,9 +11642,8 @@ msgid "Output lines that are in either file1 or file2, but not in both files" msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:6 -#, fuzzy msgid "Read file from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/command.fish:2 msgid "Print the file that would be executed" @@ -12835,23 +11694,20 @@ msgid "Inject readline functions to reader" msgstr "Inject readline functions to reader" #: /tmp/fish/implicit/share/completions/commandline.fish:11 -#, fuzzy msgid "Print each token on a separate line" -msgstr "Print length of longest line" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:12 -#, fuzzy msgid "Specify command to operate on" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:13 msgid "Set/get cursor position, not buffer contents" msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:14 -#, fuzzy msgid "Print the line that the cursor is on" -msgstr "Print messages about what the program is doing" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:15 msgid "Return true if performing a history search" @@ -12910,9 +11766,8 @@ msgid "Measure differences between images with this metric [type]" msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:23 -#, fuzzy msgid "Get the passphrase from this file [filename]" -msgstr "Lê senha a partir do descritor de arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:24 #: /tmp/fish/implicit/share/completions/display.fish:32 @@ -12931,9 +11786,8 @@ msgid "JPEG/MIFF/PNG compression level [value]" msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:34 -#, fuzzy msgid "Search for subimage" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:36 #: /tmp/fish/implicit/share/completions/composite.fish:74 @@ -12951,9 +11805,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:34 #: /tmp/fish/implicit/share/completions/stream.fish:33 #: /tmp/fish/implicit/share/completions/terraform.fish:1 -#, fuzzy msgid "Print version information" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/compare.fish:44 #: /tmp/fish/implicit/share/completions/composite.fish:39 @@ -12972,14 +11825,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:73 #: /tmp/fish/implicit/share/completions/montage.fish:59 #: /tmp/fish/implicit/share/completions/stream.fish:25 -#, fuzzy msgid "Declare the image as modified" -msgstr "Pretend file is modified" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:1 -#, fuzzy msgid "Command to add completion to" -msgstr "Path to add completion to" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:2 msgid "Path to add completion to" @@ -13022,14 +11873,12 @@ msgid "Option list is not complete" msgstr "Option list is not complete" #: /tmp/fish/implicit/share/completions/complete.fish:12 -#, fuzzy msgid "Remove completion" -msgstr "Remove property" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:14 -#, fuzzy msgid "Print all completions for the specified commandline" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:15 msgid "" @@ -13040,24 +11889,20 @@ msgstr "" "status" #: /tmp/fish/implicit/share/completions/complete.fish:16 -#, fuzzy msgid "Inherit completions from the specified command" -msgstr "Pipe output through specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:1 -#, fuzzy msgid "User script" -msgstr "Extract script" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:2 -#, fuzzy msgid "Short information about Composer" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:3 -#, fuzzy msgid "Create an archive of this composer package" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:4 #: /tmp/fish/implicit/share/completions/composer.fish:15 @@ -13070,14 +11915,12 @@ msgid "Clears composer's internal package cache." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:8 -#, fuzzy msgid "Create new project from a package into given directory." -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:9 -#, fuzzy msgid "Shows which packages depend on the given package" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:10 msgid "Diagnoses the system to identify common errors." @@ -13085,9 +11928,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:11 #: /tmp/fish/implicit/share/completions/composer.fish:12 -#, fuzzy msgid "Dumps the autoloader" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:13 #, sh-format @@ -13095,14 +11937,12 @@ msgid "Allows running commands in the global composer dir ($COMPOSER_HOME)." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:14 -#, fuzzy msgid "Displays help for a command" -msgstr "Displays usage information for command" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:16 -#, fuzzy msgid "Creates a basic composer.json file in current directory." -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:17 msgid "" @@ -13111,19 +11951,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:18 -#, fuzzy msgid "Show information about licenses of dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:19 -#, fuzzy msgid "Lists commands" -msgstr "Process command" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:20 -#, fuzzy msgid "Removes a package from the require or require-dev" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:21 msgid "Adds required packages to your composer.json and installs them" @@ -13135,25 +11972,21 @@ msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:23 #: /tmp/fish/implicit/share/completions/npm.fish:34 -#, fuzzy msgid "Search for packages" -msgstr "Fetch source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:24 #: /tmp/fish/implicit/share/completions/composer.fish:25 -#, fuzzy msgid "Updates composer.phar to the latest version." -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:26 -#, fuzzy msgid "Show information about packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:27 -#, fuzzy msgid "Show a list of locally modified packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:28 msgid "" @@ -13166,23 +11999,20 @@ msgid "Validates a composer.json" msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:30 -#, fuzzy msgid "Shows which packages cause the given package to be installed" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:31 -#, fuzzy msgid "Shows which packages prevent the given package from being installed" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:32 msgid "Displays composer's help." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:33 -#, fuzzy msgid "Do not output any message." -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:34 msgid "" @@ -13191,9 +12021,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:35 -#, fuzzy msgid "Display composer's application version." -msgstr "Display compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:36 msgid "Force ANSI output." @@ -13204,14 +12033,12 @@ msgid "Disable ANSI output." msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:38 -#, fuzzy msgid "Do not ask any interactive question." -msgstr "Do no interactive prompting" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:39 -#, fuzzy msgid "Display timing and memory usage information." -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:40 msgid "If specified, use the given directory as working directory." @@ -13237,15 +12064,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:5 #: /tmp/fish/implicit/share/completions/mogrify.fish:15 #: /tmp/fish/implicit/share/completions/montage.fish:11 -#, fuzzy msgid "Annotate image with comment [string]" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:8 #: /tmp/fish/implicit/share/completions/montage.fish:12 -#, fuzzy msgid "Composite operator [operator]" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:13 #: /tmp/fish/implicit/share/completions/convert.fish:24 @@ -13302,9 +12127,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:30 #: /tmp/fish/implicit/share/completions/mogrify.fish:57 #: /tmp/fish/implicit/share/completions/montage.fish:43 -#, fuzzy msgid "Font point size [value]" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:32 #: /tmp/fish/implicit/share/completions/convert.fish:57 @@ -13317,9 +12141,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:62 #: /tmp/fish/implicit/share/completions/import.fish:36 #: /tmp/fish/implicit/share/completions/mogrify.fish:64 -#, fuzzy msgid "Image scene number [value]" -msgstr "Compare general numeric value" +msgstr "" #: /tmp/fish/implicit/share/completions/composite.fish:43 msgid "Repeat composite operation across and down image" @@ -13422,9 +12245,8 @@ msgid "Swap two images in the image sequence [indexes]" msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:4 -#, fuzzy msgid "Cache test results in specified file" -msgstr "Cache test results in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:5 msgid "Cache test results in file config.cache" @@ -13435,9 +12257,8 @@ msgid "Do not create output files" msgstr "Do not create output files" #: /tmp/fish/implicit/share/completions/configure.fish:7 -#, fuzzy msgid "Set source directory" -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:8 msgid "Architecture-independent install directory" @@ -13448,9 +12269,8 @@ msgid "Architecture-dependent install directory" msgstr "Architecture-dependent install directory" #: /tmp/fish/implicit/share/completions/configure.fish:10 -#, fuzzy msgid "Configure for building on BUILD" -msgstr "Configure for building compilers for TARGET" +msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:11 msgid "Cross-compile to build programs to run on HOST" @@ -13465,9 +12285,8 @@ msgid "Shows if the system is online or offline" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:2 -#, fuzzy msgid "Display technologies" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:3 msgid "Get System Clock Properties" @@ -13478,23 +12297,20 @@ msgid "Enables given technology or offline mode" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:5 -#, fuzzy msgid "Disables given technology or offline mode" -msgstr "Disable import of site module" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:6 msgid "Enable, disable tethering, set SSID and passphrase for wifi" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:7 -#, fuzzy msgid "Display services" -msgstr "Mostra contexto de segurança" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:8 -#, fuzzy msgid "Display peers" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:9 msgid "Scans for new services for given technology" @@ -13509,24 +12325,20 @@ msgid "Disconnect a given service or peer" msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:12 -#, fuzzy msgid "Set service configuration options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:13 -#, fuzzy msgid "Monitor signals from interfaces" -msgstr "Do not use X interface" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:14 -#, fuzzy msgid "Display VPN connections" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:15 -#, fuzzy msgid "Enable or disable a session" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/connmanctl.fish:16 msgid "(Un)Register a Peer Service" @@ -13556,9 +12368,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:7 #: /tmp/fish/implicit/share/completions/mogrify.fish:5 -#, fuzzy msgid "Background color [color]" -msgstr "Alterar cor de fundo" +msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:8 #: /tmp/fish/implicit/share/completions/mogrify.fish:6 @@ -13640,14 +12451,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:51 #: /tmp/fish/implicit/share/completions/identify.fish:18 #: /tmp/fish/implicit/share/completions/mogrify.fish:56 -#, fuzzy msgid "Efficiently determine image attributes" -msgstr "Exclude extra file attributes" +msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:53 -#, fuzzy msgid "Maximum number of significant digits to print [value]" -msgstr "Maximum number of connections to allow" +msgstr "" #: /tmp/fish/implicit/share/completions/convert.fish:54 #: /tmp/fish/implicit/share/completions/mogrify.fish:58 @@ -13813,135 +12622,35 @@ msgstr "" msgid "Enhance or reduce the image contrast" msgstr "" -#: /tmp/fish/implicit/share/completions/cower.fish:1 -#, fuzzy -msgid "Show output in a more script friendly format" -msgstr "Output profiling information to specified file" - -#: /tmp/fish/implicit/share/completions/cower.fish:2 -#, fuzzy -msgid "Download [twice to fetch dependencies]" -msgstr "Show state of dependencies" - -#: /tmp/fish/implicit/share/completions/cower.fish:3 -msgid "Show info for target [twice for more details]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:4 -#, fuzzy -msgid "Search for packages by maintainer" -msgstr "Search package containing pattern" - -#: /tmp/fish/implicit/share/completions/cower.fish:5 -#, fuzzy -msgid "Search for packages by name" -msgstr "Search full package name" - -#: /tmp/fish/implicit/share/completions/cower.fish:6 -#, fuzzy -msgid "Check AUR packages for updates" -msgstr "Create compressed patches" - -#: /tmp/fish/implicit/share/completions/cower.fish:7 -#, fuzzy -msgid "Use colored output" -msgstr "Use colors" - -#: /tmp/fish/implicit/share/completions/cower.fish:8 -#, fuzzy -msgid "Show debug output" -msgstr "Turn on debug output" - -#: /tmp/fish/implicit/share/completions/cower.fish:9 -#, fuzzy -msgid "Overwrite existing files when downloading" -msgstr "Overwrite modified files with clean copies" - -#: /tmp/fish/implicit/share/completions/cower.fish:10 -#, fuzzy -msgid "Print formatted" -msgstr "Imprime texto formatado" - -#: /tmp/fish/implicit/share/completions/cower.fish:11 -#, fuzzy -msgid "Display help and quit" -msgstr "Display help and exit" - -#: /tmp/fish/implicit/share/completions/cower.fish:12 -#, fuzzy -msgid "Ignore a package upgrade" -msgstr "Ignore package Holds" - -#: /tmp/fish/implicit/share/completions/cower.fish:13 -#, fuzzy -msgid "Ignore a binary repo when checking for updates" -msgstr "Ignore ancestry when calculating merge" - -#: /tmp/fish/implicit/share/completions/cower.fish:14 -#, fuzzy -msgid "Specify a delimiter for list formatters" -msgstr "Specify directory for rpm database" - -#: /tmp/fish/implicit/share/completions/cower.fish:15 -#, fuzzy -msgid "Output less" -msgstr "Output file" - -#: /tmp/fish/implicit/share/completions/cower.fish:16 -#, fuzzy -msgid "Download targets to DIR" -msgstr "Don't unlock targets" - -#: /tmp/fish/implicit/share/completions/cower.fish:17 -#, fuzzy -msgid "Limit the number of threads created [10]" -msgstr "Only print number of matches" - -#: /tmp/fish/implicit/share/completions/cower.fish:18 -#, fuzzy -msgid "Curl timeout in seconds" -msgstr "Minimum interval in seconds" - -#: /tmp/fish/implicit/share/completions/cower.fish:19 -#, fuzzy -msgid "Output more" -msgstr "Output trace" - #: /tmp/fish/implicit/share/completions/cowsay.fish:1 #: /tmp/fish/implicit/share/completions/cowthink.fish:1 -#, fuzzy msgid "Specify eye string" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:2 #: /tmp/fish/implicit/share/completions/cowthink.fish:2 -#, fuzzy msgid "Specify cow file" -msgstr "Specify conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:4 #: /tmp/fish/implicit/share/completions/cowthink.fish:4 -#, fuzzy msgid "List all cowfiles" -msgstr "Listar arquivos swap" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:5 #: /tmp/fish/implicit/share/completions/cowthink.fish:5 -#, fuzzy msgid "No word wrapping" -msgstr "Flood ping" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:6 #: /tmp/fish/implicit/share/completions/cowthink.fish:6 -#, fuzzy msgid "Specify tounge string" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:7 #: /tmp/fish/implicit/share/completions/cowthink.fish:7 -#, fuzzy msgid "Column width" -msgstr "Line width" +msgstr "" #: /tmp/fish/implicit/share/completions/cowsay.fish:8 #: /tmp/fish/implicit/share/completions/cowthink.fish:8 @@ -13985,9 +12694,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cupsdisable.fish:1 #: /tmp/fish/implicit/share/completions/cupsenable.fish:1 -#, fuzzy msgid "Cancels all jobs on the named destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/cupsdisable.fish:2 #: /tmp/fish/implicit/share/completions/cupsenable.fish:2 @@ -14000,9 +12708,8 @@ msgid "Releases pending jobs for printing" msgstr "" #: /tmp/fish/implicit/share/completions/cupsdisable.fish:4 -#, fuzzy msgid "Disable reason" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/cupsenable.fish:4 msgid "Cancel reason" @@ -14010,212 +12717,176 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cupsreject.fish:1 #: /tmp/fish/implicit/share/completions/reject.fish:1 -#, fuzzy msgid "Reject reason" -msgstr "Reject protocols" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:1 -#, fuzzy msgid "Output byte range" -msgstr "Output byte range" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:2 -#, fuzzy msgid "Output character range" -msgstr "Output character range" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:3 -#, fuzzy msgid "Select field delimiter" -msgstr "Select field delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:4 -#, fuzzy msgid "Select fields" -msgstr "Select fields" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:5 -#, fuzzy msgid "Don't split multi byte characters" -msgstr "Dont split mutibyte characters" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:6 -#, fuzzy msgid "Do not print lines without delimiter" -msgstr "Do not print lines without delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/cut.fish:7 msgid "Select output delimiter" msgstr "Select output delimiter" #: /tmp/fish/implicit/share/completions/cvs.fish:1 -#, fuzzy msgid "Displays usage information for command." -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:2 -#, fuzzy msgid "Cause CVS to be really quiet." -msgstr "Cause CVS to be really quiet" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:3 -#, fuzzy msgid "Cause CVS to be somewhat quiet." -msgstr "Cause CVS to be somewhat quiet" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:4 -#, fuzzy msgid "Make checked-out files read-only." -msgstr "Make checked-out files read-only" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:5 -#, fuzzy msgid "Make checked-out files read-write (default)." -msgstr "Make checked-out files read-write (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:6 msgid "Do not execute anything that will change the disk." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:7 -#, fuzzy msgid "Show trace of program execution -- try with -n." -msgstr "Show trace of program execution -- try with -n" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:8 msgid "Assume repository is read-only, such as CDROM" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:9 -#, fuzzy msgid "CVS version and copyright." -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:10 -#, fuzzy msgid "Use 'tmpdir' for temporary files." -msgstr "Use tmpdir for temporary files" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:11 -#, fuzzy msgid "Use 'editor' for editing log information." -msgstr "Use editor for editing log information" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:13 -#, fuzzy msgid "Do not use the ~/.cvsrc file." -msgstr "Do not use the ~/.cvsrc file" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:14 -#, fuzzy msgid "Request compression level '#' for net traffic." -msgstr "Compression level for net traffic" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:15 -#, fuzzy msgid "Encrypt all net traffic." -msgstr "Encrypt all net traffic" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:16 -#, fuzzy msgid "Authenticate all net traffic." -msgstr "Authenticate all net traffic" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:17 -#, fuzzy msgid "Use IPv4 addresses only." -msgstr "Somente endereços IPv4" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:18 -#, fuzzy msgid "Use IPv6 addresses only." -msgstr "Somente endereços IPv6" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:19 -#, fuzzy msgid "Set CVS user variable." -msgstr "Set CVS user variable" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:20 msgid "Add a new file/directory to the repository" msgstr "Adicionar um novo arquivo/diretório ao repositório" #: /tmp/fish/implicit/share/completions/cvs.fish:21 -#, fuzzy msgid "Administration front end for rcs" -msgstr "Administration front end for rcs" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:22 -#, fuzzy msgid "Show last revision where each line was modified" -msgstr "Show last revision where each line was modified" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:23 -#, fuzzy msgid "Checkout sources for editing" -msgstr "Checkout sources for editing" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:24 msgid "Check files into the repository" msgstr "Verificar arquivos no repositório" #: /tmp/fish/implicit/share/completions/cvs.fish:25 -#, fuzzy msgid "Show differences between revisions" -msgstr "Show differences between revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:26 -#, fuzzy msgid "Get ready to edit a watched file" -msgstr "Get ready to edit a watched file" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:27 -#, fuzzy msgid "See who is editing a watched file" -msgstr "See who is editing a watched file" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:28 -#, fuzzy msgid "Export sources from CVS, similar to checkout" -msgstr "Export sources from CVS, similar to checkout" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:29 -#, fuzzy msgid "Show repository access history" -msgstr "Show repository access history" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:30 -#, fuzzy msgid "Import sources into CVS, using vendor branches" -msgstr "Import sources into CVS, using vendor branches" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:31 -#, fuzzy msgid "Create a CVS repository if it doesn't exist" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:32 msgid "Kerberos server mode" msgstr "Kerberos server mode" #: /tmp/fish/implicit/share/completions/cvs.fish:33 -#, fuzzy msgid "Print out history information for files" -msgstr "Print out history information for a module" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:34 msgid "Prompt for password for authenticating server" msgstr "Prompt for password for authenticating server" #: /tmp/fish/implicit/share/completions/cvs.fish:35 -#, fuzzy msgid "Removes entry in .cvspass for remote repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:36 -#, fuzzy msgid "List files available from CVS" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:37 msgid "Password server mode" @@ -14226,27 +12897,24 @@ msgid "Show last revision where each line of module was modified" msgstr "Show last revision where each line of module was modified" #: /tmp/fish/implicit/share/completions/cvs.fish:39 -#, fuzzy msgid "Create 'patch' format diffs between releases" -msgstr "Create patch format diffs between releases" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:40 msgid "Indicate that a Module is no longer in use" msgstr "Indicate that a Module is no longer in use" #: /tmp/fish/implicit/share/completions/cvs.fish:41 -#, fuzzy msgid "Remove an entry from the repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:42 msgid "Print out history information for a module" msgstr "Print out history information for a module" #: /tmp/fish/implicit/share/completions/cvs.fish:43 -#, fuzzy msgid "List files in a module" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:44 msgid "Add a symbolic tag to a module" @@ -14265,23 +12933,20 @@ msgid "Add a symbolic tag to checked out version of files" msgstr "Add a symbolic tag to checked out version of files" #: /tmp/fish/implicit/share/completions/cvs.fish:48 -#, fuzzy msgid "Undo an edit command" -msgstr "Do not execute commands" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:49 msgid "Bring work tree in sync with repository" msgstr "Bring work tree in sync with repository" #: /tmp/fish/implicit/share/completions/cvs.fish:50 -#, fuzzy msgid "Show current CVS version(s)" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:51 -#, fuzzy msgid "Set watches" -msgstr "Set arch" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:52 msgid "See who is watching a file" @@ -14300,9 +12965,8 @@ msgid "Append (comma-separated) user names to access list." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:56 -#, fuzzy msgid "Append another file's access list." -msgstr "Append new files" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:57 msgid "[rev] Set default branch (highest branch on trunk if omitted)." @@ -14317,14 +12981,12 @@ msgid "[users] Remove (comma-separated) user names from access list" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:60 -#, fuzzy msgid "Run interactively." -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:61 -#, fuzzy msgid "Set keyword substitution mode:" -msgstr "Set the default keyword substitution" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:62 msgid "[rev] Lock revision (latest revision on branch," @@ -14335,9 +12997,8 @@ msgid "Set strict locking." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:64 -#, fuzzy msgid "Replace revision's log message." -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:65 msgid "Tag branch or revision. If :rev is omitted," @@ -14348,28 +13009,24 @@ msgid "Same as -n except override existing tag." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:67 -#, fuzzy msgid "Delete (outdate) specified range of revisions:" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:68 -#, fuzzy msgid "Run quietly." -msgstr "Run quietly" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:69 msgid "Set revision state (latest revision on branch," msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:70 -#, fuzzy msgid "[file] Get descriptive text from file (stdin if omitted)." -msgstr "Write descriptive text from a file into RCS" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:71 -#, fuzzy msgid "-string Set descriptive text." -msgstr "Write descriptive text into RCS" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:72 msgid "[rev] Unlock the revision (latest revision on branch," @@ -14398,9 +13055,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:259 #: /tmp/fish/implicit/share/completions/cvs.fish:267 #: /tmp/fish/implicit/share/completions/cvs.fish:278 -#, fuzzy msgid "Process directories recursively." -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:76 #: /tmp/fish/implicit/share/completions/cvs.fish:205 @@ -14409,27 +13065,23 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:77 #: /tmp/fish/implicit/share/completions/cvs.fish:206 -#, fuzzy msgid "Annotate binary files." -msgstr "Annotate binary files" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:78 #: /tmp/fish/implicit/share/completions/cvs.fish:207 -#, fuzzy msgid "Annotate file as of specified revision/tag." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:79 #: /tmp/fish/implicit/share/completions/cvs.fish:208 -#, fuzzy msgid "Annotate file as of specified date." -msgstr "Show filesystems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:80 #: /tmp/fish/implicit/share/completions/cvs.fish:272 -#, fuzzy msgid "Reset any sticky tags/date/kopts." -msgstr "Reset sticky tags/dates/k-opts" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:81 #: /tmp/fish/implicit/share/completions/cvs.fish:148 @@ -14440,9 +13092,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:198 #: /tmp/fish/implicit/share/completions/cvs.fish:241 #: /tmp/fish/implicit/share/completions/cvs.fish:273 -#, fuzzy msgid "Prune empty directories." -msgstr "Prune empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:84 msgid "\"cat\" the module database." @@ -14461,9 +13112,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:102 #: /tmp/fish/implicit/share/completions/cvs.fish:150 #: /tmp/fish/implicit/share/completions/cvs.fish:211 -#, fuzzy msgid "Local directory only, not recursive" -msgstr "Lista subdiretórios recursivamente" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:87 #: /tmp/fish/implicit/share/completions/cvs.fish:152 @@ -14505,24 +13155,21 @@ msgid "Check for valid edits before committing." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:97 -#, fuzzy msgid "Local directory only (not recursive)." -msgstr "Lista subdiretórios recursivamente" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:98 msgid "Force the file to be committed; disables recursion." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:99 -#, fuzzy msgid "Read the log message from file." -msgstr "Read log message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:100 #: /tmp/fish/implicit/share/completions/cvs.fish:180 -#, fuzzy msgid "Log message." -msgstr "Replace a log message" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:101 msgid "Commit to this branch or trunk revision." @@ -14530,9 +13177,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:104 #: /tmp/fish/implicit/share/completions/cvs.fish:218 -#, fuzzy msgid "Specify keyword expansion mode." -msgstr "Specify kernel version" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:105 msgid "Diff revision for date against working file." @@ -14555,46 +13201,38 @@ msgid "--ignore-case Consider upper- and lower-case to be the same." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:110 -#, fuzzy msgid "--ignore-all-space Ignore all white space." -msgstr "Ignorar todos os espaços em branco" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:111 -#, fuzzy msgid "--ignore-space-change Ignore changes in the amount of white space." -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:112 -#, fuzzy msgid "--ignore-blank-lines Ignore changes whose lines are all blank." -msgstr "Ignore changes whose lines match the REGEX" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:113 -#, fuzzy msgid "--ignore-matching-lines=RE Ignore changes whose lines all match RE." -msgstr "Ignore changes whose lines match the REGEX" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:114 -#, fuzzy msgid "Binary Read and write data in binary mode." -msgstr "Read and write all files in binary mode" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:115 -#, fuzzy msgid "--text Treat all files as text." -msgstr "Treat all files as text" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:116 -#, fuzzy msgid "" "-C NUM --context[=NUM] Output NUM (default 2) lines of copied context." -msgstr "Output NUM lines of copied context" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:117 -#, fuzzy msgid "" "-U NUM --unified[=NUM] Output NUM (default 2) lines of unified context." -msgstr "Output NUM lines of unified context" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:118 msgid "UM Use NUM context lines." @@ -14605,37 +13243,32 @@ msgid "--label LABEL Use LABEL instead of file name." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:120 -#, fuzzy msgid "--show-c-function Show which C function each change is in." -msgstr "Identify the C function each change is in" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:121 msgid "--show-function-line=RE Show the most recent line matching RE." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:122 -#, fuzzy msgid "Brief Output only whether files differ." -msgstr "Output only whether the files differ" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:123 -#, fuzzy msgid "--ed Output an ed script." -msgstr "Make output a valid ed script" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:124 msgid "--forward-ed Output something like an ed script in forward order." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:125 -#, fuzzy msgid "--rcs Output an RCS format diff." -msgstr "Output a normal diff" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:126 -#, fuzzy msgid "--side-by-side Output in two columns." -msgstr "Saída em duas colunas" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:127 msgid "--width=NUM Output at most NUM (default 130) characters per line." @@ -14664,18 +13297,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:134 -#, fuzzy msgid "--expand-tabs Expand tabs to spaces in output." -msgstr "Expand tabs to spaces" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:135 msgid "--initial-tab Make tabs line up by prepending a tab." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:136 -#, fuzzy msgid "--new-file Treat absent files as empty." -msgstr "Treat absent files as empty" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:137 msgid "--report-identical-files Report when two files are the same." @@ -14686,9 +13317,8 @@ msgid "Horizon-lines=NUM Keep NUM lines of the common prefix and suffix." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:139 -#, fuzzy msgid "--minimal Try hard to find a smaller set of changes." -msgstr "Try to find a smaller set of changes" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:140 msgid "" @@ -14700,18 +13330,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:266 #: /tmp/fish/implicit/share/completions/cvs.fish:270 #: /tmp/fish/implicit/share/completions/cvs.fish:286 -#, fuzzy msgid "Local directory only, not recursive." -msgstr "Lista subdiretórios recursivamente" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:142 #: /tmp/fish/implicit/share/completions/cvs.fish:147 #: /tmp/fish/implicit/share/completions/cvs.fish:151 #: /tmp/fish/implicit/share/completions/cvs.fish:271 #: /tmp/fish/implicit/share/completions/cvs.fish:287 -#, fuzzy msgid "Process directories recursively (default)." -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:143 msgid "Specify action to register for temporary watch, one of:" @@ -14728,14 +13356,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:146 #: /tmp/fish/implicit/share/completions/cvs.fish:223 #: /tmp/fish/implicit/share/completions/cvs.fish:258 -#, fuzzy msgid "Process this directory only (not recursive)." -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:153 -#, fuzzy msgid "Export tagged revisions." -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:154 msgid "Export revisions as of date." @@ -14750,27 +13376,24 @@ msgid "Use RCS kopt -k option on checkout." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:157 -#, fuzzy msgid "Produce report on all TAGs" -msgstr "Report on all tags" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:158 msgid "Committed (Modified) files" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:159 -#, fuzzy msgid "Checked out modules" -msgstr "Report on checked-out modules" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:160 msgid "Look for specified module (repeatable)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:161 -#, fuzzy msgid "Extract by record type" -msgstr "Specify record type" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:162 msgid "Everything (same as -x, but all record types)" @@ -14785,14 +13408,12 @@ msgid "Last modified (committed or modified report)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:165 -#, fuzzy msgid "Working directory must match" -msgstr "Print directory stack" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:166 -#, fuzzy msgid "Since date (Many formats)" -msgstr "Profile data format" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:167 msgid "Back to record with str in module/file/repos field" @@ -14835,56 +13456,47 @@ msgid "When importing new files, mark their trunk revisions as dead." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:177 -#, fuzzy msgid "Set default RCS keyword substitution mode." -msgstr "Set the default keyword substitution" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:178 #: /tmp/fish/implicit/share/completions/cvs.fish:284 -#, fuzzy msgid "More files to ignore (! to reset)." -msgstr "Files to ignore during import" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:179 -#, fuzzy msgid "Vendor branch id." -msgstr "Multiple vendor branch" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:181 #: /tmp/fish/implicit/share/completions/cvs.fish:285 -#, fuzzy msgid "Wrappers specification line." -msgstr "Display the last modification time of file" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:183 #: /tmp/fish/implicit/share/completions/cvs.fish:226 -#, fuzzy msgid "Only list revisions on the default branch." -msgstr "Print info about revision on default branch" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:184 #: /tmp/fish/implicit/share/completions/cvs.fish:227 -#, fuzzy msgid "Only print header." -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:185 #: /tmp/fish/implicit/share/completions/cvs.fish:228 -#, fuzzy msgid "Only print name of RCS file." -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:186 #: /tmp/fish/implicit/share/completions/cvs.fish:229 -#, fuzzy msgid "Only print header and descriptive text." -msgstr "Write descriptive text into RCS" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:187 #: /tmp/fish/implicit/share/completions/cvs.fish:230 -#, fuzzy msgid "Do not list tags." -msgstr "Do not write mtab" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:188 #: /tmp/fish/implicit/share/completions/cvs.fish:231 @@ -14898,27 +13510,23 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:190 #: /tmp/fish/implicit/share/completions/cvs.fish:233 -#, fuzzy msgid "This option." -msgstr "Config option" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:191 #: /tmp/fish/implicit/share/completions/cvs.fish:234 -#, fuzzy msgid "[revisions]" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:192 #: /tmp/fish/implicit/share/completions/cvs.fish:235 -#, fuzzy msgid "A semicolon-separated list of dates" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:193 #: /tmp/fish/implicit/share/completions/cvs.fish:236 -#, fuzzy msgid "Only list revisions with specified states." -msgstr "Monta partição com etiqueta especificada" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:194 #: /tmp/fish/implicit/share/completions/cvs.fish:237 @@ -14927,9 +13535,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:195 #: /tmp/fish/implicit/share/completions/cvs.fish:238 -#, fuzzy msgid "Show dead revisions (with tag when specified)." -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:196 #: /tmp/fish/implicit/share/completions/cvs.fish:239 @@ -14938,21 +13545,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:197 #: /tmp/fish/implicit/share/completions/cvs.fish:240 -#, fuzzy msgid "Display all details." -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:199 #: /tmp/fish/implicit/share/completions/cvs.fish:242 -#, fuzzy msgid "List recursively." -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:200 #: /tmp/fish/implicit/share/completions/cvs.fish:243 -#, fuzzy msgid "Show files with revision or tag." -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:201 #: /tmp/fish/implicit/share/completions/cvs.fish:244 @@ -14969,14 +13573,12 @@ msgid "Date [-r rev2 | -D date2] modules…" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:213 -#, fuzzy msgid "Context diffs (default)" -msgstr "Use context diff format" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:214 -#, fuzzy msgid "Unidiff format." -msgstr "Use unidiff format" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:215 msgid "Short patch - one liner per file." @@ -14987,9 +13589,8 @@ msgid "Top two diffs - last change made to the file." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:217 -#, fuzzy msgid "Use RCS Version vers for keyword expansion." -msgstr "Specify kernel version" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:219 msgid "Date." @@ -15000,14 +13601,12 @@ msgid "Revision - symbolic or numeric." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:221 -#, fuzzy msgid "Delete the given directory." -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:222 -#, fuzzy msgid "Delete the file before removing it." -msgstr "Re-package the files before erasing" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:245 msgid "Clear tag from removed files that would not otherwise be tagged." @@ -15034,15 +13633,13 @@ msgid "Move tag if it already exists." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:252 -#, fuzzy msgid "No execution of 'tag program'." -msgstr "Don't run any tag programs" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:254 #: /tmp/fish/implicit/share/completions/cvs.fish:268 -#, fuzzy msgid "Existing revision/tag." -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:255 #: /tmp/fish/implicit/share/completions/cvs.fish:269 @@ -15054,19 +13651,16 @@ msgid "Verbose format; includes tag information for the file" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:262 -#, fuzzy msgid "Check that working files are unmodified." -msgstr "Check out a working copy from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:274 -#, fuzzy msgid "Overwrite locally modified files with clean repository copies." -msgstr "Overwrite modified files with clean copies" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:275 -#, fuzzy msgid "Build directories, like checkout does." -msgstr "Lista diretórios, não seu conteúdo" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:279 msgid "Send updates to standard output (avoids stickiness)." @@ -15081,9 +13675,8 @@ msgid "Set date to update from (is sticky)." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:288 -#, fuzzy msgid "Specify what actions, one of: " -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:1 msgid "Build for 32-bit Cygwin" @@ -15094,39 +13687,32 @@ msgid "Build for 64-bit Cygwin" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:3 -#, fuzzy msgid "Enable debugging messages" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:4 -#, fuzzy msgid "Cygport file" -msgstr "Compress file" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:5 -#, fuzzy msgid "Download all sources" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:6 -#, fuzzy msgid "Download missing sources" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:7 -#, fuzzy msgid "Prepare source directory" -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:8 -#, fuzzy msgid "Build software" -msgstr "Build apt cache" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:9 -#, fuzzy msgid "Run test suite" -msgstr "Run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:10 msgid "Install into DESTDIR and run post-installation steps" @@ -15137,62 +13723,52 @@ msgid "Run post-installation steps" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:12 -#, fuzzy msgid "List package files" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:13 -#, fuzzy msgid "List debug package files" -msgstr "List bugs from packages" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:14 -#, fuzzy msgid "Show dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:15 -#, fuzzy msgid "Show packaging info" -msgstr "Show package info" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:16 msgid "Show project homepage URL" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:17 -#, fuzzy msgid "Create packages, marked as test" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:18 -#, fuzzy msgid "Create packages" -msgstr "Erase package" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:19 -#, fuzzy msgid "Create source patches" -msgstr "Clean source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:20 -#, fuzzy msgid "Upload finished packages" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:21 -#, fuzzy msgid "Upload packages without marking !ready" -msgstr "Rebuild a package" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:22 msgid "Send announcement email" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:23 -#, fuzzy msgid "Delete working directory" -msgstr "Muda diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:24 msgid "Same as prep build inst pkg" @@ -15203,110 +13779,92 @@ msgid "Darcs repo" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:2 -#, fuzzy msgid "Set the specified option" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:3 -#, fuzzy msgid "Display help about darcs and darcs commands" -msgstr "Displays usage information for command" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:4 msgid "Add one or more new files or directories" msgstr "Adicionar um ou mais novos arquivos ou diretórios" #: /tmp/fish/implicit/share/completions/darcs.fish:5 -#, fuzzy msgid "Remove files from version control" -msgstr "Place files or directories under version control" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:6 -#, fuzzy msgid "Move or rename files" -msgstr "Do not create file" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:7 msgid "Substitute one word for another" msgstr "Substitue uma palavra por outra" #: /tmp/fish/implicit/share/completions/darcs.fish:8 -#, fuzzy msgid "Discard unrecorded changes" -msgstr "Display unrecorded changes in the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:9 -#, fuzzy msgid "Undo the last revert (may fail if changes after the revert)" -msgstr "Undo the last revert (may fail if changes after the revert)" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:10 -#, fuzzy msgid "List unrecorded changes in the working tree" -msgstr "Display unrecorded changes in the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:11 -#, fuzzy msgid "Create a patch from unrecorded changes" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:12 -#, fuzzy msgid "Remove recorded patches without changing the working copy" -msgstr "Remove recorded patches without changing the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:13 -#, fuzzy msgid "Improve a patch before it leaves your repository" -msgstr "Replace a recorded patch with a better version" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:14 -#, fuzzy msgid "Mark unresolved conflicts in working tree, for manual resolution" -msgstr "Mark any conflicts to the working copy for manual resolution" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:15 msgid "Name the current repository state for future reference" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:16 -#, fuzzy msgid "Set a preference (test, predist, boringfile or binariesfile)" -msgstr "Set a value for a preference (test, predist, ...)" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:17 -#, fuzzy msgid "Create a diff between two versions of the repository" -msgstr "Create a diff between two versions of the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:18 -#, fuzzy msgid "List patches in the repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:19 -#, fuzzy msgid "Display which patch last modified something" -msgstr "Display which patch last modified something" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:20 -#, fuzzy msgid "Create a distribution tarball" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:21 -#, fuzzy msgid "Locate the most recent version lacking an error" -msgstr "Locate the most recent version lacking an error" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:22 msgid "Show information which is stored by darcs" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:23 -#, fuzzy msgid "Copy and apply patches from another repository to this one" -msgstr "Copy and apply patches from another repository to this one" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:24 msgid "Delete selected patches from the repository. (UNSAFE!)" @@ -15317,14 +13875,12 @@ msgid "Record a new patch reversing some recorded changes" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:26 -#, fuzzy msgid "Copy and apply patches from this repository to another one" -msgstr "Copy and apply patches from this repository to another one" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:27 -#, fuzzy msgid "Send by email a bundle of one or more patches" -msgstr "Send by email a bundle of one or more patches" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:403 msgid "Path to a version-controlled boring file" @@ -15338,75 +13894,65 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:439 #: /tmp/fish/implicit/share/completions/darcs.fish:847 #: /tmp/fish/implicit/share/completions/darcs.fish:880 -#, fuzzy msgid "Select changes up to a patch matching PATTERN" -msgstr "Select changes up to a patch matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:406 #: /tmp/fish/implicit/share/completions/darcs.fish:440 #: /tmp/fish/implicit/share/completions/darcs.fish:848 #: /tmp/fish/implicit/share/completions/darcs.fish:881 -#, fuzzy msgid "Select changes up to a patch matching REGEXP" -msgstr "Select changes up to a patch matching REGEXP" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:407 #: /tmp/fish/implicit/share/completions/darcs.fish:441 -#, fuzzy msgid "Select changes up to a tag matching REGEXP" -msgstr "Select changes up to a tag matching REGEXP" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:408 #: /tmp/fish/implicit/share/completions/darcs.fish:442 #: /tmp/fish/implicit/share/completions/darcs.fish:619 #: /tmp/fish/implicit/share/completions/darcs.fish:657 -#, fuzzy msgid "Select changes starting with a patch matching PATTERN" -msgstr "Select changes starting with a patch matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:409 #: /tmp/fish/implicit/share/completions/darcs.fish:443 #: /tmp/fish/implicit/share/completions/darcs.fish:620 #: /tmp/fish/implicit/share/completions/darcs.fish:658 -#, fuzzy msgid "Select changes starting with a patch matching REGEXP" -msgstr "Select changes starting with a patch matching REGEXP" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:410 #: /tmp/fish/implicit/share/completions/darcs.fish:444 #: /tmp/fish/implicit/share/completions/darcs.fish:621 #: /tmp/fish/implicit/share/completions/darcs.fish:659 -#, fuzzy msgid "Select changes starting with a tag matching REGEXP" -msgstr "Select changes starting with a tag matching REGEXP" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:411 #: /tmp/fish/implicit/share/completions/darcs.fish:495 #: /tmp/fish/implicit/share/completions/darcs.fish:520 -#, fuzzy msgid "Select a single patch matching PATTERN" -msgstr "Select patch matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:412 #: /tmp/fish/implicit/share/completions/darcs.fish:496 #: /tmp/fish/implicit/share/completions/darcs.fish:521 -#, fuzzy msgid "Select a single patch matching REGEXP" -msgstr "Select patch matching REGEXP" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:413 #: /tmp/fish/implicit/share/completions/darcs.fish:445 #: /tmp/fish/implicit/share/completions/darcs.fish:622 #: /tmp/fish/implicit/share/completions/darcs.fish:660 -#, fuzzy msgid "Select the last NUMBER patches" -msgstr "Select the last NUMBER patches" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:414 #: /tmp/fish/implicit/share/completions/darcs.fish:446 -#, fuzzy msgid "Select a range of patches" -msgstr "Select the last NUMBER patches" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:415 msgid "Specify diff command (ignores --diff-opts)" @@ -15421,9 +13967,8 @@ msgid "Pass -u option to diff" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:418 -#, fuzzy msgid "Output patch in diff's dumb format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:419 #: /tmp/fish/implicit/share/completions/darcs.fish:463 @@ -15441,9 +13986,8 @@ msgstr "Output in ISO 8601 format" #: /tmp/fish/implicit/share/completions/darcs.fish:936 #: /tmp/fish/implicit/share/completions/darcs.fish:969 #: /tmp/fish/implicit/share/completions/darcs.fish:989 -#, fuzzy msgid "Specify the repository directory in which to run" -msgstr "Specify the repository directory in which to run" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:420 #: /tmp/fish/implicit/share/completions/darcs.fish:524 @@ -15452,9 +13996,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:421 #: /tmp/fish/implicit/share/completions/darcs.fish:525 -#, fuzzy msgid "Do patch application on disk [DEFAULT]" -msgstr "Fail on patches that create conflicts [DEFAULT]" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:422 #: /tmp/fish/implicit/share/completions/darcs.fish:466 @@ -15474,9 +14017,8 @@ msgstr "Fail on patches that create conflicts [DEFAULT]" #: /tmp/fish/implicit/share/completions/darcs.fish:972 #: /tmp/fish/implicit/share/completions/darcs.fish:990 #: /tmp/fish/implicit/share/completions/darcs.fish:1010 -#, fuzzy msgid "Disable this command" -msgstr "Set prompt command" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:423 #: /tmp/fish/implicit/share/completions/darcs.fish:467 @@ -15518,9 +14060,8 @@ msgstr "Shows brief description of command and its arguments" #: /tmp/fish/implicit/share/completions/darcs.fish:974 #: /tmp/fish/implicit/share/completions/darcs.fish:992 #: /tmp/fish/implicit/share/completions/darcs.fish:1012 -#, fuzzy msgid "Give only debug output" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:425 #: /tmp/fish/implicit/share/completions/darcs.fish:469 @@ -15540,9 +14081,8 @@ msgstr "Turn on debug output" #: /tmp/fish/implicit/share/completions/darcs.fish:975 #: /tmp/fish/implicit/share/completions/darcs.fish:993 #: /tmp/fish/implicit/share/completions/darcs.fish:1013 -#, fuzzy msgid "Give debug and verbose output" -msgstr "Give human readable output" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:426 #: /tmp/fish/implicit/share/completions/darcs.fish:470 @@ -15583,9 +14123,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:977 #: /tmp/fish/implicit/share/completions/darcs.fish:995 #: /tmp/fish/implicit/share/completions/darcs.fish:1015 -#, fuzzy msgid "Give verbose output" -msgstr "Neither verbose nor quiet output" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:428 #: /tmp/fish/implicit/share/completions/darcs.fish:472 @@ -15647,9 +14186,8 @@ msgstr "Neither verbose nor quiet output" #: /tmp/fish/implicit/share/completions/darcs.fish:980 #: /tmp/fish/implicit/share/completions/darcs.fish:998 #: /tmp/fish/implicit/share/completions/darcs.fish:1018 -#, fuzzy msgid "Provide debugging timings information" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:431 #: /tmp/fish/implicit/share/completions/darcs.fish:481 @@ -15690,9 +14228,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:982 #: /tmp/fish/implicit/share/completions/darcs.fish:1001 #: /tmp/fish/implicit/share/completions/darcs.fish:1026 -#, fuzzy msgid "Don't run posthook command" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:433 #: /tmp/fish/implicit/share/completions/darcs.fish:483 @@ -15775,9 +14312,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:986 #: /tmp/fish/implicit/share/completions/darcs.fish:1005 #: /tmp/fish/implicit/share/completions/darcs.fish:1030 -#, fuzzy msgid "Don't run prehook command" -msgstr "Do not execute remote command" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:437 #: /tmp/fish/implicit/share/completions/darcs.fish:487 @@ -15827,9 +14363,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:661 #: /tmp/fish/implicit/share/completions/darcs.fish:695 #: /tmp/fish/implicit/share/completions/darcs.fish:741 -#, fuzzy msgid "Select patches matching PATTERN" -msgstr "Select patches matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:448 #: /tmp/fish/implicit/share/completions/darcs.fish:564 @@ -15837,9 +14372,8 @@ msgstr "Select patches matching PATTERN" #: /tmp/fish/implicit/share/completions/darcs.fish:662 #: /tmp/fish/implicit/share/completions/darcs.fish:696 #: /tmp/fish/implicit/share/completions/darcs.fish:742 -#, fuzzy msgid "Select patches matching REGEXP" -msgstr "Select patches matching REGEXP" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:449 #: /tmp/fish/implicit/share/completions/darcs.fish:565 @@ -15847,18 +14381,16 @@ msgstr "Select patches matching REGEXP" #: /tmp/fish/implicit/share/completions/darcs.fish:663 #: /tmp/fish/implicit/share/completions/darcs.fish:697 #: /tmp/fish/implicit/share/completions/darcs.fish:743 -#, fuzzy msgid "Select tags matching REGEXP" -msgstr "Select tags matching REGEXP" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:450 msgid "Return only NUMBER results" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:451 -#, fuzzy msgid "Show only changes to specified files" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:452 msgid "Show changes to all files [DEFAULT]" @@ -15884,14 +14416,12 @@ msgid "Give human-readable output" msgstr "Give human-readable output" #: /tmp/fish/implicit/share/completions/darcs.fish:456 -#, fuzzy msgid "Number the changes" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:457 -#, fuzzy msgid "Output count of changes" -msgstr "Output diagnostic for changed files" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:458 #: /tmp/fish/implicit/share/completions/darcs.fish:489 @@ -15899,9 +14429,8 @@ msgstr "Output diagnostic for changed files" #: /tmp/fish/implicit/share/completions/darcs.fish:632 #: /tmp/fish/implicit/share/completions/darcs.fish:708 #: /tmp/fish/implicit/share/completions/darcs.fish:761 -#, fuzzy msgid "Summarize changes" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:459 #: /tmp/fish/implicit/share/completions/darcs.fish:490 @@ -15913,18 +14442,16 @@ msgid "Don't summarize changes" msgstr "Don't summarize changes" #: /tmp/fish/implicit/share/completions/darcs.fish:460 -#, fuzzy msgid "Show changes in reverse order" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:461 msgid "Show changes in the usual order [DEFAULT]" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:462 -#, fuzzy msgid "Specify the repository URL" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:464 #: /tmp/fish/implicit/share/completions/darcs.fish:566 @@ -15963,9 +14490,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:867 #: /tmp/fish/implicit/share/completions/darcs.fish:902 #: /tmp/fish/implicit/share/completions/darcs.fish:1020 -#, fuzzy msgid "Don't use SSH ControlMaster feature [DEFAULT]" -msgstr "Don't use experimental date appending trick. [DEFAULT]" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:477 #: /tmp/fish/implicit/share/completions/darcs.fish:607 @@ -15984,9 +14510,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:869 #: /tmp/fish/implicit/share/completions/darcs.fish:904 #: /tmp/fish/implicit/share/completions/darcs.fish:1022 -#, fuzzy msgid "Disable HTTP pipelining" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:479 #: /tmp/fish/implicit/share/completions/darcs.fish:609 @@ -15995,9 +14520,8 @@ msgstr "Disable warnings about MFC" #: /tmp/fish/implicit/share/completions/darcs.fish:870 #: /tmp/fish/implicit/share/completions/darcs.fish:905 #: /tmp/fish/implicit/share/completions/darcs.fish:1023 -#, fuzzy msgid "Don't use patch caches" -msgstr "Don't use batch mode" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:480 #: /tmp/fish/implicit/share/completions/darcs.fish:610 @@ -16014,32 +14538,28 @@ msgid "Output patch in a darcs-specific format similar to diff -u" msgstr "Output patch in a darcs-specific format similar to diff -u" #: /tmp/fish/implicit/share/completions/darcs.fish:492 -#, fuzzy msgid "Output patch in darcs' usual format" -msgstr "Output patch in a darcs-specific format similar to diff -u" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:497 #: /tmp/fish/implicit/share/completions/darcs.fish:522 #: /tmp/fish/implicit/share/completions/darcs.fish:849 #: /tmp/fish/implicit/share/completions/darcs.fish:882 -#, fuzzy msgid "Select tag matching REGEXP" -msgstr "Select tag matching REGEXP" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:498 #: /tmp/fish/implicit/share/completions/darcs.fish:523 -#, fuzzy msgid "Select one patch" -msgstr "Select an action" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:499 msgid "Specify hash of creator patch (see docs)" msgstr "Specify hash of creator patch (see docs)" #: /tmp/fish/implicit/share/completions/darcs.fish:518 -#, fuzzy msgid "Name of version" -msgstr "Nome do cliente" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:553 #: /tmp/fish/implicit/share/completions/darcs.fish:602 @@ -16051,9 +14571,8 @@ msgid "Make scripts executable" msgstr "Make scripts executable" #: /tmp/fish/implicit/share/completions/darcs.fish:568 -#, fuzzy msgid "Mark conflicts [DEFAULT]" -msgstr "Mark conflicts" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:569 #: /tmp/fish/implicit/share/completions/darcs.fish:805 @@ -16062,15 +14581,13 @@ msgstr "Allow conflicts, but don't mark them" #: /tmp/fish/implicit/share/completions/darcs.fish:570 #: /tmp/fish/implicit/share/completions/darcs.fish:807 -#, fuzzy msgid "Filter out any patches that would create conflicts" -msgstr "Fail on patches that create conflicts [DEFAULT]" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:571 #: /tmp/fish/implicit/share/completions/darcs.fish:808 -#, fuzzy msgid "Use external tool to merge conflicts" -msgstr "Use external tool to merge conflicts" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:572 #: /tmp/fish/implicit/share/completions/darcs.fish:672 @@ -16098,9 +14615,8 @@ msgstr "Don't actually take the action" #: /tmp/fish/implicit/share/completions/darcs.fish:626 #: /tmp/fish/implicit/share/completions/darcs.fish:698 #: /tmp/fish/implicit/share/completions/darcs.fish:744 -#, fuzzy msgid "Don't automatically fulfill dependencies" -msgstr "Don't automatically fulfill dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:579 #: /tmp/fish/implicit/share/completions/darcs.fish:627 @@ -16137,19 +14653,16 @@ msgstr "Don't set default repository" #: /tmp/fish/implicit/share/completions/darcs.fish:584 #: /tmp/fish/implicit/share/completions/darcs.fish:713 #: /tmp/fish/implicit/share/completions/darcs.fish:768 -#, fuzzy msgid "Do not check if repositories are unrelated" -msgstr "Do not store directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:594 -#, fuzzy msgid "Take intersection of all repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:595 -#, fuzzy msgid "Take union of all repositories [DEFAULT]" -msgstr "Set default repository [DEFAULT]" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:596 msgid "Take complement of repositories (in order listed)" @@ -16160,9 +14673,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:685 #: /tmp/fish/implicit/share/completions/darcs.fish:830 #: /tmp/fish/implicit/share/completions/darcs.fish:952 -#, fuzzy msgid "Create compressed patches" -msgstr "Don't create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:598 #: /tmp/fish/implicit/share/completions/darcs.fish:725 @@ -16174,9 +14686,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:646 #: /tmp/fish/implicit/share/completions/darcs.fish:828 #: /tmp/fish/implicit/share/completions/darcs.fish:970 -#, fuzzy msgid "Don't trust the file modification times" -msgstr "Don't extract modification time" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:600 #: /tmp/fish/implicit/share/completions/darcs.fish:647 @@ -16188,9 +14699,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:601 #: /tmp/fish/implicit/share/completions/darcs.fish:726 #: /tmp/fish/implicit/share/completions/darcs.fish:781 -#, fuzzy msgid "Specify the remote repository URL to work with" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:603 #: /tmp/fish/implicit/share/completions/darcs.fish:648 @@ -16208,14 +14718,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:666 #: /tmp/fish/implicit/share/completions/darcs.fish:750 -#, fuzzy msgid "Specify author id" -msgstr "Specify author id" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:667 -#, fuzzy msgid "Name of patch" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:668 msgid "Edit the long comment by default" @@ -16248,15 +14756,13 @@ msgstr "Sign the patch with your gpg key" #: /tmp/fish/implicit/share/completions/darcs.fish:704 #: /tmp/fish/implicit/share/completions/darcs.fish:757 -#, fuzzy msgid "Sign the patch with a given keyid" -msgstr "Sign the patch with a given keyid" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:705 #: /tmp/fish/implicit/share/completions/darcs.fish:758 -#, fuzzy msgid "Sign the patch using openssl with a given private key" -msgstr "Sign the patch using openssl with a given private key" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:723 #: /tmp/fish/implicit/share/completions/darcs.fish:899 @@ -16269,34 +14775,28 @@ msgid "Don't use sudo to apply as another user [DEFAULT]" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:751 -#, fuzzy msgid "Specify destination email" -msgstr "Specify destination email" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:752 -#, fuzzy msgid "Mail results to additional EMAIL(s)" -msgstr "Mail results to additional EMAIL(s). Requires --reply" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:753 -#, fuzzy msgid "Specify mail subject" -msgstr "Specify makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:754 -#, fuzzy msgid "Specify in-reply-to header" -msgstr "Specify index dir" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:755 -#, fuzzy msgid "Specify output filename" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:763 -#, fuzzy msgid "Edit the patch bundle description" -msgstr "Edit the patch bundle description" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:767 #: /tmp/fish/implicit/share/completions/darcs.fish:827 @@ -16308,9 +14808,8 @@ msgid "Give patch name and comment in file" msgstr "Give patch name and comment in file" #: /tmp/fish/implicit/share/completions/darcs.fish:779 -#, fuzzy msgid "Delete the logfile when done" -msgstr "Delete the logfile when done" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:780 msgid "Keep the logfile when done [DEFAULT]" @@ -16325,9 +14824,8 @@ msgid "Verify that the patch was signed by a key in PUBRING" msgstr "Verify that the patch was signed by a key in PUBRING" #: /tmp/fish/implicit/share/completions/darcs.fish:798 -#, fuzzy msgid "Verify using openSSL with authorized keys from file KEYS" -msgstr "Verify using openSSL with authorized keys from specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:799 msgid "Don't verify patch signature" @@ -16342,23 +14840,20 @@ msgid "Equivalent to --dont-allow-conflicts, for backwards compatibility" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:823 -#, fuzzy msgid "Reply to email-based patch using FROM address" -msgstr "Reply to email-based patch using FROM address" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:824 -#, fuzzy msgid "Mail results to additional EMAIL(s). Requires --reply" -msgstr "Mail results to additional EMAIL(s). Requires --reply" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:825 msgid "Forward unsigned messages without extra header" msgstr "Forward unsigned messages without extra header" #: /tmp/fish/implicit/share/completions/darcs.fish:826 -#, fuzzy msgid "Don't forward unsigned messages without extra header [DEFAULT]" -msgstr "Forward unsigned messages without extra header" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:842 #: /tmp/fish/implicit/share/completions/darcs.fish:1008 @@ -16375,21 +14870,18 @@ msgid "Get patch files only as needed" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:845 -#, fuzzy msgid "Don't save patch files in the repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:846 #: /tmp/fish/implicit/share/completions/darcs.fish:963 -#, fuzzy msgid "Get a complete copy of the repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:850 #: /tmp/fish/implicit/share/completions/darcs.fish:883 -#, fuzzy msgid "Version specified by the context in FILENAME" -msgstr "Send to context stored in FILENAME" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:855 #: /tmp/fish/implicit/share/completions/darcs.fish:885 @@ -16414,14 +14906,12 @@ msgid "Minimal features. What older repos use" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:937 -#, fuzzy msgid "Reorder the patches in the repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:938 -#, fuzzy msgid "Specify a sibling directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:939 msgid "Relink random internal data to a sibling" @@ -16440,9 +14930,8 @@ msgid "Optimize hashed pristine layout" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:953 -#, fuzzy msgid "Uncompress patches" -msgstr "Don't create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:1 msgid "Read the value of a key" @@ -16457,45 +14946,38 @@ msgid "Write a new value to a key" msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:4 -#, fuzzy msgid "Delete a key or an entire directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:5 msgid "Compile a binary database from keyfiles" msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:6 -#, fuzzy msgid "Update the system dconf databases" -msgstr "Update list of source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:7 -#, fuzzy msgid "Watch a key or directory for changes" -msgstr "Name directory for working files" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:8 -#, fuzzy msgid "Dump an entire subpath to stdout" -msgstr "Decompress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/dconf.fish:9 -#, fuzzy msgid "Populate a subpath from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/dd.fish:1 #: /tmp/fish/implicit/share/completions/emacs.fish:52 #: /tmp/fish/implicit/share/completions/hg.fish:15 -#, fuzzy msgid "display help and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dd.fish:3 -#, fuzzy msgid "Complete dd operands" -msgstr "Compare FILE1 to all operands" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:1 msgid "Restricts preferences operations to the current logged-in host" @@ -16514,42 +14996,36 @@ msgid "Writes domain or or a key in the domain" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:5 -#, fuzzy msgid "String as the value for the given key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:6 msgid "Raw data bytes for given key" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:7 -#, fuzzy msgid "Integer as the value for the given key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:8 msgid "Floating point number as the value for the given key" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:9 -#, fuzzy msgid "Boolean as the value for the given key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:10 -#, fuzzy msgid "Date as the value for the given key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:11 -#, fuzzy msgid "Array as the value for the given key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:12 -#, fuzzy msgid "Add new elements to the end of an array" -msgstr "Add text to the end of the selected area" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:13 msgid "Add a dictionary to domain" @@ -16560,9 +15036,8 @@ msgid "Add new key/value pairs to a dictionary" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:15 -#, fuzzy msgid "Shows the type for the given domain, key" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:16 msgid "Renames old_key to new_key" @@ -16573,57 +15048,48 @@ msgid "Deletes domain or a key in the domain" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:18 -#, fuzzy msgid "Prints the names of all domains in the users defaults system" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:19 msgid "Searches for word in domain names, keys, and values" msgstr "" #: /tmp/fish/implicit/share/completions/defaults.fish:20 -#, fuzzy msgid "Prints a list of possible command formats" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:1 -#, fuzzy msgid "Include empty file systems" -msgstr "Include empty filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:2 -#, fuzzy msgid "Print file system type" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:3 -#, fuzzy msgid "Excluded file system type" -msgstr "Excluded filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/df.fish:4 -#, fuzzy msgid "Show all file systems" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:1 -#, fuzzy msgid "Background immediately" -msgstr "Go to background immediately after startup" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:2 -#, fuzzy msgid "Use given script" -msgstr "Update interval" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:3 msgid "Generate an RFC 4361 compliant clientid" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:4 -#, fuzzy msgid "Echo debug messages to stderr & syslog" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:5 msgid "Use last acquired lease if cannot obtain one" @@ -16634,28 +15100,24 @@ msgid "Use last acquired lease if cannot obtain one even if expired" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:7 -#, fuzzy msgid "Push given value the environment" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:8 -#, fuzzy msgid "Reapply configuration for each interface" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:9 msgid "Request DHCP server to update DNS using FQDN instead of hostname" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:10 -#, fuzzy msgid "Specify config to load instead of /etc/dhcpcd.conf" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:11 -#, fuzzy msgid "Send hostname to DHCP server" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:12 msgid "Send given clientid" @@ -16666,47 +15128,40 @@ msgid "Override DHCPv4 vendorclassid field sent" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:14 -#, fuzzy msgid "Writes to specfied log file instead of syslog" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:15 msgid "Release lease and de-configure interface" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:16 -#, fuzzy msgid "Request specific lease time in secs" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:17 -#, fuzzy msgid "Start dhcpcd in Master mode" -msgstr "Start interface" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:18 msgid "Set prefered interface based on given rank (lowest wins)" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:19 -#, fuzzy msgid "Reload config and rebind specified interface" -msgstr "Set source address to specified interface address" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:20 -#, fuzzy msgid "Renew existing addresses on specified interface" -msgstr "Set source address to specified interface address" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:21 -#, fuzzy msgid "Request DHCP option" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:22 -#, fuzzy msgid "Keep configuration even when dhcpcd exits" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:23 msgid "Request given address in DHCP DISCOVER message" @@ -16717,19 +15172,16 @@ msgid "Request given address in DHCP INFORM message" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:25 -#, fuzzy msgid "Perform DHCPv6 Information Request" -msgstr "Requisição de informação" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:26 -#, fuzzy msgid "Configure static DHCP value" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:27 -#, fuzzy msgid "Timeout after seconds" -msgstr "Minimum interval in seconds" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:28 msgid "Tag DHCPv4 message with given userclass" @@ -16744,9 +15196,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:8 #: /tmp/fish/implicit/share/completions/pv.fish:33 #: /tmp/fish/implicit/share/completions/subl.fish:9 -#, fuzzy msgid "Show version and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:31 #: /tmp/fish/implicit/share/completions/dhcpcd.fish:32 @@ -16762,29 +15213,24 @@ msgid "Allow reboot after secs" msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:1 -#, fuzzy msgid "Ignore case differences" -msgstr "Ignore case differences" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:2 -#, fuzzy msgid "Ignore case when comparing file names" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:3 -#, fuzzy msgid "Consider case when comparing file names" -msgstr "Consider case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:4 -#, fuzzy msgid "Ignore changes due to tab expansion" -msgstr "Ignore changes due to tab expansion" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:5 -#, fuzzy msgid "Ignore changes in the amount of white space" -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:6 msgid "Ignore all white space" @@ -16792,9 +15238,8 @@ msgstr "Ignorar todos os espaços em branco" #: /tmp/fish/implicit/share/completions/diff.fish:7 #: /tmp/fish/implicit/share/completions/git.fish:327 -#, fuzzy msgid "Ignore changes whose lines are all blank" -msgstr "Ignore changes whose lines are all blank" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:8 msgid "Ignore changes whose lines match the REGEX" @@ -16802,47 +15247,40 @@ msgstr "Ignore changes whose lines match the REGEX" #: /tmp/fish/implicit/share/completions/diff.fish:9 #: /tmp/fish/implicit/share/completions/git.fish:323 -#, fuzzy msgid "Treat all files as text" -msgstr "Treat all files as text" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:10 -#, fuzzy msgid "Recursively compare subdirectories" -msgstr "Recursively compare subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:11 -#, fuzzy msgid "Treat absent files as empty" -msgstr "Treat absent files as empty" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:12 msgid "Output NUM lines of copied context" msgstr "Output NUM lines of copied context" #: /tmp/fish/implicit/share/completions/diff.fish:13 -#, fuzzy msgid "Output 3 lines of copied context" -msgstr "Output 3 lines of copied context" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:14 msgid "Output NUM lines of unified context" msgstr "Output NUM lines of unified context" #: /tmp/fish/implicit/share/completions/diff.fish:15 -#, fuzzy msgid "Output 3 lines of unified context" -msgstr "Output 3 lines of unified context" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:16 -#, fuzzy msgid "Output only whether the files differ" -msgstr "Output only whether the files differ" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:17 -#, fuzzy msgid "Output a normal diff" -msgstr "Output a normal diff" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:18 msgid "Output in two columns" @@ -16853,23 +15291,20 @@ msgid "Output at most NUM print columns" msgstr "Output at most NUM print columns" #: /tmp/fish/implicit/share/completions/diff.fish:20 -#, fuzzy msgid "Try to find a smaller set of changes" -msgstr "Try to find a smaller set of changes" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:21 -#, fuzzy msgid "Compare FILE1 to all operands" -msgstr "Compare FILE2 to all operands" +msgstr "" #: /tmp/fish/implicit/share/completions/diff.fish:22 msgid "Compare FILE2 to all operands" msgstr "Compare FILE2 to all operands" #: /tmp/fish/implicit/share/completions/diff.fish:23 -#, fuzzy msgid "Pass the output through 'pr'" -msgstr "Pass the output through “pr”" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:1 msgid "Use IPv4 query transport only" @@ -16888,43 +15323,36 @@ msgid "Bind to source address/port" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:5 -#, fuzzy msgid "Specify batch mode file" -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:6 -#, fuzzy msgid "Specify query class" -msgstr "Specify the proxy password" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:7 -#, fuzzy msgid "Specify TSIG key file" -msgstr "Specify makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:8 msgid "specify named base64 TSIG key" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:9 -#, fuzzy msgid "Specify port number" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:10 -#, fuzzy msgid "Specify query name" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:11 -#, fuzzy msgid "Specify query type" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:12 -#, fuzzy msgid "Reverse lookup" -msgstr "Inverte a ordem" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:13 #: /tmp/fish/implicit/share/completions/killall.fish:10 @@ -16932,17 +15360,15 @@ msgstr "Inverte a ordem" #: /tmp/fish/implicit/share/completions/lsof.fish:1 #: /tmp/fish/implicit/share/completions/lua.fish:5 #: /tmp/fish/implicit/share/completions/wicd-cli.fish:1 -#, fuzzy msgid "Print help and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:14 #: /tmp/fish/implicit/share/completions/feh.fish:55 #: /tmp/fish/implicit/share/completions/fuser.fish:12 #: /tmp/fish/implicit/share/completions/tree.fish:43 -#, fuzzy msgid "Print version and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:15 msgid "TCP mode" @@ -16965,9 +15391,8 @@ msgid "Deprecated, treated as a synonym for +[no]search" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:20 -#, fuzzy msgid "Recursive mode" -msgstr "Secure mode" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:21 msgid "Dont revert to TCP for TC responses." @@ -17010,9 +15435,8 @@ msgid "Control display of question" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:31 -#, fuzzy msgid "Control display of answer" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:32 msgid "Control display of authority" @@ -17039,14 +15463,12 @@ msgid "Set or clear all display flags" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:38 -#, fuzzy msgid "Print question before sending" -msgstr "Print line of headings" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:39 -#, fuzzy msgid "Search all authoritative nameservers" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:40 msgid "ID responders in short answers" @@ -17057,9 +15479,8 @@ msgid "Trace delegation down from root" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:42 -#, fuzzy msgid "Request DNSSEC records" -msgstr "Remove records" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:43 msgid "Request Name Server ID" @@ -17074,19 +15495,16 @@ msgid "AXFR prints only one soa record" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:46 -#, fuzzy msgid "Set number of UDP attempts" -msgstr "Set number of audio channels" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:47 -#, fuzzy msgid "Set number of UDP retries" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:48 -#, fuzzy msgid "Set query timeout" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:49 msgid "Set EDNS0 Max UDP packet size" @@ -17097,9 +15515,8 @@ msgid "Set NDOTS value" msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:51 -#, fuzzy msgid "Set EDNS version" -msgstr "Ordena por versão" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:1 msgid "List disks" @@ -17108,27 +15525,24 @@ msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:2 #: /tmp/fish/implicit/share/completions/diskutil.fish:4 #: /tmp/fish/implicit/share/completions/diskutil.fish:8 -#, fuzzy msgid "Return a property list" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:3 msgid "Get detailed information about a specific whole disk or partition" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:5 -#, fuzzy msgid "Process all disks" -msgstr "Process all packages" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:6 msgid "Continuously display system-wide disk manipulation activity" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:7 -#, fuzzy msgid "Show the file system personalities available" -msgstr "Show filesystems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:9 msgid "Unmount a single volume" @@ -17147,18 +15561,16 @@ msgid "Mount a single volume" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:13 -#, fuzzy msgid "Specify mount point" -msgstr "Specify a non-mountpoint dir" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:14 msgid "Mount an entire disk (all mountable volumes)" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:15 -#, fuzzy msgid "Rename a volume" -msgstr "Rename module" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:16 msgid "Enable journaling on an HFS+ volume" @@ -17177,9 +15589,8 @@ msgid "Enable ownership of a volume" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:20 -#, fuzzy msgid "Disable ownership of a volume" -msgstr "Disable import of site module" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:21 msgid "Verify the file system data structures of a volume" @@ -17198,9 +15609,8 @@ msgid "Repair the partition map layout of a whole disk" msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:25 -#, fuzzy msgid "Erase an existing disk" -msgstr "Create any missing directories" +msgstr "" #: /tmp/fish/implicit/share/completions/diskutil.fish:26 msgid "Write out a new empty file system volume" @@ -17274,15 +15684,13 @@ msgid "Exit program when this window id is destroyed [id]" msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:53 -#, fuzzy msgid "Write image to a file [filename]" -msgstr "Write size for all files" +msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:54 #: /tmp/fish/implicit/share/completions/montage.fish:72 -#, fuzzy msgid "Automagically orient image" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:62 msgid "Straighten an image [threshold]" @@ -17311,9 +15719,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:69 #: /tmp/fish/implicit/share/completions/montage.fish:79 -#, fuzzy msgid "Flop image in the horizontal direction" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/display.fish:70 #: /tmp/fish/implicit/share/completions/montage.fish:80 @@ -17349,14 +15756,12 @@ msgid "Threshold the image [value]" msgstr "" #: /tmp/fish/implicit/share/completions/dlocate.fish:1 -#, fuzzy msgid "ls -ldF all files in the package" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/dlocate.fish:2 -#, fuzzy msgid "du -sck all files in the package" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:1 msgid "Clear the kernel ring buffer" @@ -17379,15 +15784,12 @@ msgid "Enable printing messages to console" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:6 -#, fuzzy msgid "Use the file instead of the kernel log buffer" msgstr "" -"Usa o arquivo especificado em vez do banco de dados de confiança padrão" #: /tmp/fish/implicit/share/completions/dmesg.fish:7 -#, fuzzy msgid "Restrict output to defined facilities" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:8 #: /tmp/fish/implicit/share/completions/m4.fish:1 @@ -17395,124 +15797,104 @@ msgstr "Escreve a saída no arquivo especificado" #: /tmp/fish/implicit/share/completions/timeout.fish:4 #: /tmp/fish/implicit/share/completions/watch.fish:11 #: /tmp/fish/implicit/share/completions/xgettext.fish:38 -#, fuzzy msgid "Display this help and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:9 -#, fuzzy msgid "Display kernel messages" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:10 -#, fuzzy msgid "Restrict output to defined levels" -msgstr "Redirecionar saída para arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:11 msgid "Set level of messages printed to console" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:12 -#, fuzzy msgid "Print the raw message buffer" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:13 msgid "Buffer size to query the kernel ring buffer" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:14 -#, fuzzy msgid "Show human readable timestamp " -msgstr "Tamanhos entendíveis para humanos" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:15 msgid "Don't print messages timestamp" msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:16 -#, fuzzy msgid "Display userspace messages" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/dmesg.fish:18 msgid "Decode facility and level to readable string" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:1 -#, fuzzy msgid "Install .deb package" -msgstr "Instalar novo pacote" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:2 -#, fuzzy msgid "Unpack .deb package" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:3 -#, fuzzy msgid "Configure package" -msgstr "Compile source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:4 -#, fuzzy msgid "Remove package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:5 -#, fuzzy msgid "Purge package" -msgstr "Erase package" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:6 -#, fuzzy msgid "Verify contents of package" -msgstr "Don't verify dependencies of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:7 msgid "Continue on all problems" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:8 -#, fuzzy msgid "Build package from directory" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:9 -#, fuzzy msgid "List contents of .deb" -msgstr "List contents of directory" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:10 -#, fuzzy msgid "Show .deb information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:11 -#, fuzzy msgid "List packages matching pattern" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:12 -#, fuzzy msgid "List contents of packages" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:13 -#, fuzzy msgid "Print status of package" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:14 -#, fuzzy msgid "Search for packages containing file" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:3 -#, fuzzy msgid "Set configuration frontend" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:4 msgid "Set priority threshold" @@ -17527,24 +15909,20 @@ msgid "Show only unseen question" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:7 -#, fuzzy msgid "Reconfigure also inconsistent packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:8 -#, fuzzy msgid "Prevent reloading templates" -msgstr "Prepend string to relative links" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:1 -#, fuzzy msgid "Get current status of the dropboxd" -msgstr "Nega estado de saída da tarefa" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:2 -#, fuzzy msgid "Provide help" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:3 msgid "Return 1 if dropbox is running" @@ -17571,14 +15949,12 @@ msgid "Get current sync status of one or more files" msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:9 -#, fuzzy msgid "List directory contents with current sync status" -msgstr "List directory entries in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:10 -#, fuzzy msgid "Ignores/excludes a directory from syncing" -msgstr "Ignore specified number of directory components" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:11 msgid "Enables or disables LAN sync" @@ -17595,24 +15971,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:14 -#, fuzzy msgid "Do not ignore entries starting with ." -msgstr "Ignora arquivos terminados com ~" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:15 -#, fuzzy msgid "Prints a list of directories currently excluded from syncing" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:16 -#, fuzzy msgid "Adds one or more directories to the exclusion list" -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:17 -#, fuzzy msgid "Removes one or more directories from the exclusion list" -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:1 msgid "Write size for all files" @@ -17671,62 +16043,53 @@ msgid "Display only a total for each argument" msgstr "Display only a total for each argument" #: /tmp/fish/implicit/share/completions/du.fish:14 -#, fuzzy msgid "Skip other file systems" -msgstr "Skip other filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:15 -#, fuzzy msgid "Exclude files that match pattern in file" -msgstr "Exclude files thet match pattern in file" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:16 #: /tmp/fish/implicit/share/completions/ncdu.fish:5 -#, fuzzy msgid "Exclude files that match pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:17 -#, fuzzy msgid "Recursion limit" -msgstr "Recursion limit" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:1 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:13 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:14 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:15 #: /tmp/fish/implicit/share/completions/netctl.fish:17 -#, fuzzy msgid "Profile" -msgstr "Conf file" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:2 msgid "Get usage help text" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:3 -#, fuzzy msgid "Creates a configuration profile" -msgstr "Set configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:4 msgid "Backup with pre/post script execution" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:5 -#, fuzzy msgid "Backup without executing pre/post scripts" -msgstr "Don't execute post scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:6 -#, fuzzy msgid "Execute /pre script" -msgstr "Don't execute pre scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:7 -#, fuzzy msgid "Execute /post script" -msgstr "Don't execute post scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:8 msgid "Force full backup" @@ -17787,73 +16150,60 @@ msgid "Don" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:22 -#, fuzzy msgid "Output verbosity level" -msgstr "Output sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:1 -#, fuzzy msgid "Do not output a newline" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:2 -#, fuzzy msgid "Do not separate arguments with spaces" -msgstr "Do not export variable to subprocess" +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:3 -#, fuzzy msgid "Disable backslash escapes" -msgstr "Use backslash escaped characters" +msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:4 -#, fuzzy msgid "Enable backslash escapes" -msgstr "Use backslash escaped characters" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:1 -#, fuzzy msgid "Show a help screen and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:3 -#, fuzzy msgid "Dump variables to stdout" -msgstr "Decompress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:4 -#, fuzzy msgid "Dump default values of variables to stdout" -msgstr "Copy module file to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:5 -#, fuzzy msgid "Print non-matching entries first" -msgstr "Print first non-matching file" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:6 msgid "Don't read unguessable slots of installed packages (toggle)" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:7 -#, fuzzy msgid "Always read slots of installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:8 -#, fuzzy msgid "(no) output (toggle)" -msgstr "Acrescentar saída a arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:9 -#, fuzzy msgid "Don't use ANSI color codes" -msgstr "Don't use batch mode" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:10 -#, fuzzy msgid "Force colorful output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:11 msgid "Compact search results (toggle)" @@ -17872,9 +16222,8 @@ msgid "Print available versions line-by-line (toggle)" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:15 -#, fuzzy msgid "Format string for normal output" -msgstr "Parada para saída de terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:16 msgid "Format string for compact output" @@ -17885,24 +16234,20 @@ msgid "Format string for verbose output" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:18 -#, fuzzy msgid "Next expression only matches installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:19 -#, fuzzy msgid "Match packages installed in several versions" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:20 -#, fuzzy msgid "Match duplicated packages" -msgstr "Fetch source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:21 -#, fuzzy msgid "Match packages with duplicated versions" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:22 msgid "Match packages with a nontrivial slot" @@ -17913,19 +16258,16 @@ msgid "Match packages with two different slots" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:24 -#, fuzzy msgid "Match packages without best slotted version" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:25 -#, fuzzy msgid "Match packages from overlays" -msgstr "Fetch package from STDIN" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:26 -#, fuzzy msgid "Match packages with obsolete entries" -msgstr "Move packages to local tree" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:27 msgid "Invert the expression (toggle)" @@ -17936,62 +16278,52 @@ msgid "Use input from pipe of emerge -pv" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:29 -#, fuzzy msgid "Search the description field" -msgstr "Set function description" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:30 -#, fuzzy msgid "Search the category and name fields" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:31 -#, fuzzy msgid "Search the category field" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:32 -#, fuzzy msgid "Search the name field (default)" -msgstr "Select entire command line (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:33 -#, fuzzy msgid "Search the homepage field" -msgstr "Read log message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:34 -#, fuzzy msgid "Search the license field" -msgstr "Use source index field" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:35 msgid "Search the provides field" msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:36 -#, fuzzy msgid "Pattern is a regexp (default)" -msgstr "Pattern is a regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:37 -#, fuzzy msgid "Pattern is the exact string" -msgstr "Pattern is a fixed string" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:38 -#, fuzzy msgid "Pattern is a wildcards-pattern" -msgstr "Pattern is a fixed string" +msgstr "" #: /tmp/fish/implicit/share/completions/eix.fish:39 msgid "Use fuzzy-search with the given max. levenshtein-distance (default: 2)" msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:1 -#, fuzzy msgid "Ignore all previous options" -msgstr "Ignore externals definitions" +msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:2 msgid "Only show differences to the previously saved database and exit" @@ -18011,9 +16343,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:6 -#, fuzzy msgid "Update database only and show differences" -msgstr "Update cache and check dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:7 msgid "Do not call gensync (and the !commands in /etc/eix-sync.conf)" @@ -18052,26 +16383,22 @@ msgid "Really recreate the dep-cache (rm -rf /var/cache/edb/dep/*) (default)" msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:16 -#, fuzzy msgid "Do not really recreate the dep-cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/eix-sync.fish:17 -#, fuzzy msgid "Show a short help text and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:1 #: /tmp/fish/implicit/share/completions/iex.fish:1 -#, fuzzy msgid "Prints version and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:2 #: /tmp/fish/implicit/share/completions/iex.fish:2 -#, fuzzy msgid "Evaluates the given command" -msgstr "Evaluate parameters as a command" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:3 #: /tmp/fish/implicit/share/completions/iex.fish:3 @@ -18080,9 +16407,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:4 #: /tmp/fish/implicit/share/completions/iex.fish:4 -#, fuzzy msgid "Finds and executes the given script" -msgstr "Don't execute preun scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:5 #: /tmp/fish/implicit/share/completions/iex.fish:5 @@ -18101,9 +16427,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:8 #: /tmp/fish/implicit/share/completions/iex.fish:8 -#, fuzzy msgid "Start the given app and its dependencies" -msgstr "Print important dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:9 #: /tmp/fish/implicit/share/completions/iex.fish:9 @@ -18140,14 +16465,12 @@ msgid "Does not halt the Erlang VM after execution" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:1 -#, fuzzy msgid "do not do interactive display; implies -q" -msgstr "Do no interactive prompting" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:2 -#, fuzzy msgid "change to directory DIR" -msgstr "Muda diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:3 msgid "start a server in the background" @@ -18174,9 +16497,8 @@ msgid "do not load loadup.el into bare Emacs" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:9 -#, fuzzy msgid "do not load site-start.el" -msgstr "Do not load init files" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:10 msgid "do not add site-lisp directories to load-path" @@ -18212,9 +16534,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:18 #: /tmp/fish/implicit/share/completions/emacs.fish:19 -#, fuzzy msgid "evaluate Emacs Lisp expression EXPR" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:20 #: /tmp/fish/implicit/share/completions/emacs.fish:21 @@ -18227,14 +16548,12 @@ msgid "call Emacs Lisp function FUNC with no arguments" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:23 -#, fuzzy msgid "insert contents of FILE into current buffer" -msgstr "List contents of directory" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:24 -#, fuzzy msgid "exit without asking for confirmation" -msgstr "Ask for confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:25 msgid "load Emacs Lisp FILE using the load function" @@ -18245,23 +16564,20 @@ msgid "override color mode for character terminals" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:28 -#, fuzzy msgid "window background color" -msgstr "Alterar cor de fundo" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:29 msgid "disable many display features; used for debugging Emacs" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:30 -#, fuzzy msgid "main border color" -msgstr "Alterar cor de fundo" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:31 -#, fuzzy msgid "width of main border" -msgstr "Show changes in reverse order" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:32 msgid "color of the Emacs cursor indicating point" @@ -18272,9 +16588,8 @@ msgid "default font; must be fixed-width" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:34 -#, fuzzy msgid "window foreground color" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:35 msgid "make the first frame high as the screen" @@ -18322,9 +16637,8 @@ msgid "title for initial Emacs frame" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:46 -#, fuzzy msgid "disable blinking cursor" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:47 msgid "switch foreground and background" @@ -18335,45 +16649,36 @@ msgid "enable vertical scroll bars" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:50 -#, fuzzy msgid "set additional X resources" -msgstr "Requer um comando adicional" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:51 -#, fuzzy msgid "set parent window" -msgstr "Select root window" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:1 #: /tmp/fish/implicit/share/completions/equery.fish:1 -#, fuzzy msgid "" "Prints completions for installed packages on the system from /var/db/pkg" msgstr "" -"Prints completions for installed packages on the system from /var/db/pkg" #: /tmp/fish/implicit/share/completions/emerge.fish:2 #: /tmp/fish/implicit/share/completions/equery.fish:2 -#, fuzzy msgid "" "Prints completions for all available packages on the system from /usr/portage" msgstr "" -"Prints completions for installed packages on the system from /var/db/pkg" #: /tmp/fish/implicit/share/completions/emerge.fish:3 -#, fuzzy msgid "" "Tests if emerge command should have an installed package as potential " "completion" -msgstr "Test if emerge command should have packages as potential completion" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:4 -#, fuzzy msgid "" "Print completions for all packages including the version compare if that is " "already typed" msgstr "" -"Prints completions for installed packages on the system from /var/db/pkg" #: /tmp/fish/implicit/share/completions/emerge.fish:5 msgid "Synchronize the portage tree" @@ -18384,14 +16689,12 @@ msgid "Get informations to include in bug reports" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:7 -#, fuzzy msgid "Displays the version number of emerge" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:8 -#, fuzzy msgid "Displays help information for emerge" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:9 msgid "Remove packages that will not affect the functionality of the system" @@ -18407,45 +16710,36 @@ msgid "WARNING: Delete all packages that are neither deps nor in world" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:12 -#, fuzzy msgid "Process all meta-cache files" -msgstr "Process all packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:13 -#, fuzzy msgid "WARNING: Remove all but the latest version of package" msgstr "" -"Removes all but the most recently installed version of a package from your " -"system" #: /tmp/fish/implicit/share/completions/emerge.fish:14 msgid "Check and update the dependency cache" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:15 -#, fuzzy msgid "Resume the last merge operation" -msgstr "Resumes the last merge operation" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:16 -#, fuzzy msgid "Search for matches in the portage tree" msgstr "" -"Searches for matches of the supplied string in the current local portage tree" #: /tmp/fish/implicit/share/completions/emerge.fish:17 msgid "Search for matches in package names and descriptions" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:18 -#, fuzzy msgid "WARNING: Remove the given package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:19 -#, fuzzy msgid "Update the given package" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:20 msgid "Sort flag lists alphabetically" @@ -18460,41 +16754,36 @@ msgid "Build a binary package additionally" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:23 -#, fuzzy msgid "Only build a binary package" -msgstr "Rebuild a package" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:24 msgid "Show changelog of package. Use with --pretend" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:25 -#, fuzzy msgid "Toggle colorized output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:26 msgid "Align output. Use with --pretend" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:27 -#, fuzzy msgid "Run in debug mode" -msgstr "Run in dummy mode" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:28 msgid "Consider the whole dependency tree" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:29 -#, fuzzy msgid "Reinstall all world packages" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:30 -#, fuzzy msgid "Only download the packages but don't install them" -msgstr "Orders the package listing by install time" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:31 msgid "Same as --fetchonly and grab all potential files" @@ -18513,118 +16802,100 @@ msgid "Ignore EMERGE_DEFAULT_OPTS" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:35 -#, fuzzy msgid "Include installed packages with changed USE flags" -msgstr "Query an (uninstalled) package in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:36 -#, fuzzy msgid "Disregard merge records" -msgstr "Disregard ignores" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:37 -#, fuzzy msgid "Don't merge dependencies" -msgstr "Don't ask for extra dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:38 -#, fuzzy msgid "Skip already installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:39 -#, fuzzy msgid "Disable the spinner" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:40 -#, fuzzy msgid "Don't add packages to world" -msgstr "Sync packages installed" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:41 -#, fuzzy msgid "Only merge dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:42 msgid "Display what would be done without doing it" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:43 -#, fuzzy msgid "Use a condensed output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:44 msgid "Remove the first package in the resume list. Use with --resume" msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:45 -#, fuzzy msgid "Show the dependency tree" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:46 -#, fuzzy msgid "Use binary package if available" -msgstr "Build index if unavailable" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:47 -#, fuzzy msgid "Only use binary packages" -msgstr "Only accept source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:48 -#, fuzzy msgid "Run in verbose mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/emerge.fish:49 -#, fuzzy msgid "Toggle build time dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:1 msgid "Unmount when idle for specified MINUTES" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:2 -#, fuzzy msgid "Run in the foreground" -msgstr "Envia tarefa para primeiro plano" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:3 msgid "Verbose messages when run foreground" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:4 -#, fuzzy msgid "Run in single threaded mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:5 msgid "Enables debugging within the FUSE library" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:6 -#, fuzzy msgid "Return data even from corrupted files" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:7 msgid "Make files public to all other users" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:8 -#, fuzzy msgid "Mount the filesystem on-demand" -msgstr "Mount filesystems in fstab" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:9 -#, fuzzy msgid "Produce encrypted view of plain files" -msgstr "Produce sample configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:10 msgid "Use standard options when creating filesystem" @@ -18635,23 +16906,20 @@ msgid "Pass on options to FUSE" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:12 -#, fuzzy msgid "Don't use the default FUSE flags" -msgstr "Don't set default repository" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:13 msgid "Get password from an external program" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:14 -#, fuzzy msgid "Read password from standard input" -msgstr "Ler senha a partir do ARQUIVO" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:15 -#, fuzzy msgid "Turn off key validation checking" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/entr.fish:1 msgid "" @@ -18664,14 +16932,12 @@ msgid "Clears the screen before running the utility" msgstr "" #: /tmp/fish/implicit/share/completions/entr.fish:4 -#, fuzzy msgid "Output version information" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:1 -#, fuzzy msgid "Redefine variable" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:2 #: /tmp/fish/implicit/share/completions/nice.fish:1 @@ -18680,22 +16946,18 @@ msgid "Command" msgstr "Command" #: /tmp/fish/implicit/share/completions/env.fish:3 -#, fuzzy msgid "Start with an empty environment" -msgstr "Tentou tirar de uma pilha de ambiente vazia." +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:4 -#, fuzzy msgid "Remove variable from the environment" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:3 -#, fuzzy msgid "" "Prints completions for all available categories on the system from /usr/" "portage" msgstr "" -"Prints completions for installed packages on the system from /var/db/pkg" #: /tmp/fish/implicit/share/completions/equery.fish:4 msgid "causes minimal output to be emitted" @@ -18706,14 +16968,12 @@ msgid "turns off colours" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:6 -#, fuzzy msgid "displays a help summary" -msgstr "Display summary" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:7 -#, fuzzy msgid "displays the equery version" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:8 msgid "turns off pipe detection" @@ -18732,42 +16992,36 @@ msgid "stop when first match found" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:12 -#, fuzzy msgid "search in all available packages (slow)" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:13 -#, fuzzy msgid "search direct dependencies only (default)" -msgstr "List dependencies of module" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:14 msgid "search indirect dependencies (very slow)" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:15 -#, fuzzy msgid "do not show USE flags" -msgstr "Do not show flags" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:16 -#, fuzzy msgid "do not use fancy formatting" -msgstr "Não pôde obter informação do usuário" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:17 -#, fuzzy msgid "output the timestamp of each file" -msgstr "Output content of files/URLs" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:18 msgid "output the md5sum of each file" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:19 -#, fuzzy msgid "output the type of each file" -msgstr "Output content of files/URLs" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:20 msgid "filter output based on files type or path (comma separated list)" @@ -18775,15 +17029,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:21 #: /tmp/fish/implicit/share/completions/equery.fish:25 -#, fuzzy msgid "search installed packages (default)" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:22 #: /tmp/fish/implicit/share/completions/equery.fish:26 -#, fuzzy msgid "do not search installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:23 #: /tmp/fish/implicit/share/completions/equery.fish:27 @@ -18804,89 +17056,75 @@ msgid "list only those packages that exactly match" msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:31 -#, fuzzy msgid "only list installed duplicate packages" -msgstr "List installed source package\\(s\\)" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:32 -#, fuzzy msgid "report size in bytes" -msgstr "Show sizes in gigabytes" +msgstr "" #: /tmp/fish/implicit/share/completions/equery.fish:33 -#, fuzzy msgid "include non-installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:1 msgid "The page of the document to display" msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:2 -#, fuzzy msgid "Run evince in fullscreen mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:3 -#, fuzzy msgid "Run evince in presentation mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:4 msgid "Run evince as a previewer" msgstr "" #: /tmp/fish/implicit/share/completions/evince.fish:5 -#, fuzzy msgid "X display to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:1 -#, fuzzy msgid "Test if exercism has yet to be given the subcommand" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:3 -#, fuzzy msgid "turn on verbose logging" -msgstr "List users logged in" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:4 #: /tmp/fish/implicit/share/completions/exercism.fish:19 #: /tmp/fish/implicit/share/completions/ninja.fish:8 #: /tmp/fish/implicit/share/completions/quilt.fish:1 -#, fuzzy msgid "show help" -msgstr "Mostra tudo" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:5 -#, fuzzy msgid "print the version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:6 -#, fuzzy msgid "Writes config values to a JSON file." -msgstr "Write top servers to file" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:7 -#, fuzzy msgid "Outputs useful debug information." -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:8 -#, fuzzy msgid "Downloads a solution given the ID of the latest iteration." -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:9 msgid "Fetches the next unsubmitted problem in each track." msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:10 -#, fuzzy msgid "Lists the available problems for a language track, given its ID." -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:11 msgid "" @@ -18913,18 +17151,16 @@ msgid "Submits a new iteration to a problem on exercism.io." msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:16 -#, fuzzy msgid "Lists the available language tracks." -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:17 msgid "REMOVED" msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:18 -#, fuzzy msgid "Upgrades the CLI to the latest released version." -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/exit.fish:2 msgid "Quit with normal exit status" @@ -18943,9 +17179,8 @@ msgid "have tabs NUMBER characters apart, not 8" msgstr "" #: /tmp/fish/implicit/share/completions/expand.fish:3 -#, fuzzy msgid "use comma separated list of explicit tab positions" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:1 msgid "create a backup of one or several jails" @@ -18964,9 +17199,8 @@ msgid "jail" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:3 -#, fuzzy msgid "manage specific jails" -msgstr "Use specific conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:5 msgid "attach your console to a running jail" @@ -18985,19 +17219,16 @@ msgid "dump diffs between jail initialisation and freeze time into a flavour" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:12 -#, fuzzy msgid "create the basejail from binary packages" -msgstr "Info on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:13 -#, fuzzy msgid "list all jails" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:14 -#, fuzzy msgid "restart a running jail" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:16 msgid "create new jails from archived versions" @@ -19008,34 +17239,29 @@ msgid "create a snapshot of a jail" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:19 -#, fuzzy msgid "start a jail" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:21 -#, fuzzy msgid "stop a running jail" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:23 msgid "check for reasons for the jails to fail" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:24 -#, fuzzy msgid "create or update the basejail from source" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:1 #: /tmp/fish/implicit/share/completions/pkgfile.fish:2 -#, fuzzy msgid "show this help message and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:2 -#, fuzzy msgid "print detailed info about command NAME" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:3 msgid "formats --list, choices: short, normal, nested" @@ -19050,9 +17276,8 @@ msgid "Force sudo password prompt up-front" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:6 -#, fuzzy msgid "print list of possible commands and exit" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:7 msgid "comma separated KEY=VALUE pairs to set Fab env vars" @@ -19064,14 +17289,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:9 #: /tmp/fish/implicit/share/completions/pkgfile.fish:1 -#, fuzzy msgid "show program's version number and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:10 -#, fuzzy msgid "don't user the running SSH agent" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:11 msgid "forward local agent to remote end" @@ -19082,14 +17305,12 @@ msgid "abort instead of prompting (for password, host, etc)" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:13 -#, fuzzy msgid "specify location of config file to use" -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:14 -#, fuzzy msgid "Color error output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:15 msgid "do not load user known_hosts file" @@ -19108,9 +17329,8 @@ msgid "gateway host to connect through" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:19 -#, fuzzy msgid "Use GSS-API authentication" -msgstr "Force pseudo-tty allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:20 msgid "Delegate GSS-API client credentials or not" @@ -19121,14 +17341,12 @@ msgid "Perform GSS-API Key Exchange and user authentication" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:22 -#, fuzzy msgid "comma-separated list of output levels to hide" -msgstr "Formato separado por vírgula" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:23 -#, fuzzy msgid "comma-separated list of hosts to operate on" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:24 msgid "path to SSH private key file. May be repeated." @@ -19151,14 +17369,12 @@ msgid "make M attempts to connect before giving up" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:29 -#, fuzzy msgid "do not use pseudo-terminal in run/sudo" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:30 -#, fuzzy msgid "password for use with authentication and/or sudo" -msgstr "Prompt for password for authenticating server" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:31 msgid "default to parallel execution method" @@ -19169,9 +17385,8 @@ msgid "SSH connection port" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:33 -#, fuzzy msgid "reject unknown hosts" -msgstr "Opção desconhecida: " +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:34 msgid "password for use with sudo only" @@ -19182,42 +17397,36 @@ msgid "load system known_hosts file before reading user known_hosts" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:36 -#, fuzzy msgid "comma-separated list of roles to operate on" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:37 msgid "specify a new shell, defaults to '/bin/bash -l -c'" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:38 -#, fuzzy msgid "comma-separated list of output levels to show" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:39 msgid "skip over hosts that can't be reached" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:40 -#, fuzzy msgid "skip over unknown tasks" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:41 -#, fuzzy msgid "Path to SSH config file" -msgstr "Prepend string to relative links" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:42 -#, fuzzy msgid "set connection timeout to N seconds" -msgstr "Set the connect timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:43 -#, fuzzy msgid "set remote command timeout to N seconds" -msgstr "Set the default SCSI command timeout value to # seconds" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:44 msgid "username to use when connecting to remote hosts" @@ -19228,19 +17437,16 @@ msgid "warn, instead of abort, when commands fail" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:46 -#, fuzzy msgid "comma-separated list of hosts to exclude" -msgstr "Formato separado por vírgula" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:47 -#, fuzzy msgid "number of concurrent processes to use in parallel mode" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:1 -#, fuzzy msgid "Specify a shell command as action to perform on the image" -msgstr "Specify root directory for rpm operations" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:2 msgid "Zoom pictures to screen size" @@ -19267,33 +17473,28 @@ msgid "Exit feh after one loop through the slideshow" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:8 -#, fuzzy msgid "Draw the defined actions" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:9 -#, fuzzy msgid "Display some EXIF information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:10 -#, fuzzy msgid "Draw filename" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:11 msgid "Show overlay texts on semi-transparent background" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:12 -#, fuzzy msgid "Set global font" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:13 -#, fuzzy msgid "Add given path as directory to search fonts" -msgstr "Display the session key used for one message" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:14 msgid "Disable antialiasing for zooming, bg settings, etc." @@ -19308,32 +17509,28 @@ msgid "Limit window size. Format: [w x h] [+ x + y]" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:17 -#, fuzzy msgid "Hide pointer" -msgstr "Job list pointer" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:18 msgid "Use style as background for transparent image parts" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:19 -#, fuzzy msgid "Enable index mode" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:20 -#, fuzzy msgid "Show image information based on given format" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:21 msgid "Execute given command line and display its output" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:22 -#, fuzzy msgid "Keep files fetched using HTTP" -msgstr "Recurse, skip file matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:23 msgid "Disable strict hostname and peer checking with HTTPS" @@ -19368,14 +17565,12 @@ msgid "Only show image which are larger then given size" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:31 -#, fuzzy msgid "Enable montage mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:32 -#, fuzzy msgid "Disable slideshow mode" -msgstr "Disable the use of cookies" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:33 msgid "Don't jump to first image after resorting filelist" @@ -19390,37 +17585,32 @@ msgid "Don't limit window to screen size" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:36 -#, fuzzy msgid "Disable Xinerama support" -msgstr "Disable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:37 -#, fuzzy msgid "Save files to given directory" -msgstr "Read files under each directory" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:38 msgid "Preload images" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:39 -#, fuzzy msgid "Don't report non-fatal errors" -msgstr "Don't continue after an error" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:40 msgid "Randomize file list before displaying" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:41 -#, fuzzy msgid "Recursivly expand any directory" -msgstr "Recursively compare subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:42 -#, fuzzy msgid "Don't recursively expand any directory (default)" -msgstr "Install documentation files (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:43 msgid "Reload filelist after given time in second" @@ -19449,23 +17639,20 @@ msgid "Sort file list with given parameter" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:49 -#, fuzzy msgid "Start the filelist at given filename" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:50 -#, fuzzy msgid "Load options from given config file" -msgstr "Load cookies from file" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:51 msgid "Set given title for window opended from thumbnail mode" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:52 -#, fuzzy msgid "Set window title" -msgstr "Select window by id" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:53 msgid "Just print names of images that can't be loaded by imlib2" @@ -19492,9 +17679,8 @@ msgid "Limit montage's height" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:61 -#, fuzzy msgid "Limit montage's width" -msgstr "Line width" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:62 msgid "Save created montage to given file" @@ -19525,9 +17711,8 @@ msgid "Set font to print title on index" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:69 -#, fuzzy msgid "Center file on background" -msgstr "Envia tarefa para segundo plano" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:70 msgid "Fit file into background by zooming until image fits" @@ -19548,47 +17733,40 @@ msgid "Tile image if too small for screen" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:74 -#, fuzzy msgid "Do not write a ~/.fehbg file" -msgstr "Do not overwrite newer files" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:1 -#, fuzzy msgid "Select font" -msgstr "Select an action" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:2 -#, fuzzy msgid "Change font directory" -msgstr "Muda diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:3 -#, fuzzy msgid "Center output horizontally" -msgstr "Numeric output only" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:4 msgid "Make output flush-left" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:5 -#, fuzzy msgid "Make output flush-right" -msgstr "Make output a valid ed script" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:6 msgid "Set justification according to text direction" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:7 -#, fuzzy msgid "Set output to terminal width" -msgstr "Never write output to terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:8 -#, fuzzy msgid "Set output width" -msgstr "Select output delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:10 msgid "Put FIGlet back to normal" @@ -19599,9 +17777,8 @@ msgid "Switch to German (ISO 646-DE) character set" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:12 -#, fuzzy msgid "Turns off German character set processing" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:13 msgid "Add given control file" @@ -19620,33 +17797,28 @@ msgid "Specify layout mode between 1 and 63" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:21 -#, fuzzy msgid "Print version and copyright" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:22 -#, fuzzy msgid "Print information given infocode" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:23 -#, fuzzy msgid "Print left-to-right" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:24 msgid "Print right-to-left" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:25 -#, fuzzy msgid "Print with default text direction" -msgstr "Imprime o diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:1 -#, fuzzy msgid "Do not prepend filenames to output lines" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:2 msgid "Print the parsed form of the magic file" @@ -19657,18 +17829,16 @@ msgid "Write an output file containing a pre-parsed version of file" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:4 -#, fuzzy msgid "Do not follow symlinks" -msgstr "Não segue links simbólicos" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:5 msgid "Output mime type strings instead human readable strings" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:6 -#, fuzzy msgid "Don't stop at the first match" -msgstr "Do not sign the patch" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:8 msgid "Flush stdout after checking each file" @@ -19691,9 +17861,8 @@ msgid "Read block and character device files too" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:13 -#, fuzzy msgid "Print the version of the program and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:14 msgid "Try to look inside compressed files" @@ -19701,9 +17870,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:15 #: /tmp/fish/implicit/share/completions/gv.fish:33 -#, fuzzy msgid "Print a help message and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:16 msgid "Read the names of the files to be examined from a file" @@ -19714,14 +17882,12 @@ msgid "Use other string as result field separator instead of :" msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:18 -#, fuzzy msgid "Alternate list of files containing magic numbers" -msgstr "Display the trigger scripts contained in the package" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:1 -#, fuzzy msgid "Never follow symlinks" -msgstr "Never follow symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:3 msgid "" @@ -19734,9 +17900,8 @@ msgid "Measure from the beginning of today rather than from 24 hours ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:5 -#, fuzzy msgid "Process subdirectories before the directory itself" -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:7 msgid "" @@ -19746,9 +17911,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:8 #: /tmp/fish/implicit/share/completions/zfs.fish:66 #: /tmp/fish/implicit/share/completions/zfs.fish:76 -#, fuzzy msgid "Maximum recursion depth" -msgstr "Maximum resident set size" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:9 msgid "Do not apply any tests or actions at levels less than specified level" @@ -19769,28 +17933,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:13 -#, fuzzy msgid "Specify regular expression type" -msgstr "Specify kernel version" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:15 -#, fuzzy msgid "Turn warnings on" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:16 -#, fuzzy msgid "Turn warnings off" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:17 msgid "File last accessed specified number of minutes ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:18 -#, fuzzy msgid "File last accessed more recently than file was modified" -msgstr "Show last revision where each line was modified" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:19 msgid "File last accessed specified number of days ago" @@ -19814,29 +17974,24 @@ msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:24 #: /tmp/fish/implicit/share/completions/test.fish:31 -#, fuzzy msgid "File is executable" -msgstr "File is writable" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:25 -#, fuzzy msgid "Always false" -msgstr "Always reformat" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:26 -#, fuzzy msgid "File is on filesystem of specified type" -msgstr "Show filesystems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:27 -#, fuzzy msgid "Numeric group id of file" -msgstr "Numeric output only" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:28 -#, fuzzy msgid "Group name of file" -msgstr "Mostra inode dos arquivos" +msgstr "" # Notas: # Adicionar nota @@ -19844,19 +17999,16 @@ msgstr "Mostra inode dos arquivos" # Caminhos: # share/functions/__fish_complete_ls.fish:49 #: /tmp/fish/implicit/share/completions/find.fish:29 -#, fuzzy msgid "File is symlink matching specified case insensitive pattern" -msgstr "Não lista entradas com o padrão especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:30 -#, fuzzy msgid "File name matches case insensitive pattern" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:31 -#, fuzzy msgid "File has specified inode number" -msgstr "Filtrar pelo programa especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:32 msgid "File path matches case insensitive pattern" @@ -19867,32 +18019,28 @@ msgid "File name matches case insensetive regex" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:34 -#, fuzzy msgid "File has specified number of links" -msgstr "Compare only specified number of characters" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:35 -#, fuzzy msgid "File is symlink matching specified pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:36 msgid "File last modified specified number of minutes ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:37 -#, fuzzy msgid "File last modified more recently than file was modified" -msgstr "Show last revision where each line was modified" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:38 msgid "File last modified specified number of days ago" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:39 -#, fuzzy msgid "File name matches pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:40 msgid "No user corresponds to file's numeric user ID" @@ -19903,44 +18051,36 @@ msgid "No group corresponds to file's numeric group ID" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:42 -#, fuzzy msgid "File path matches pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:43 -#, fuzzy msgid "Files has specified permissions set" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:44 -#, fuzzy msgid "File name matches regex" -msgstr "Ignore changes matching regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:45 -#, fuzzy msgid "File refers to the same inode as specified file" -msgstr "Exceto arquivos listados no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:46 -#, fuzzy msgid "File uses specified units of space" -msgstr "Show filesystems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:47 -#, fuzzy msgid "Always true" -msgstr "Sempre" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:48 -#, fuzzy msgid "File is of specified type" -msgstr "Show filesystems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:49 -#, fuzzy msgid "File's owner has specified numeric user ID" -msgstr "File owned by effective user ID" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:50 msgid "" @@ -19949,9 +18089,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:51 -#, fuzzy msgid "File's owner" -msgstr "File is socket" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:52 msgid "" @@ -19960,51 +18099,44 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:53 -#, fuzzy msgid "File's security context matches specified pattern" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:54 -#, fuzzy msgid "Delete selected files" -msgstr "Delete selection" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:55 -#, fuzzy msgid "Execute specified command for each located file" -msgstr "Executa comando se o comando anterior falhou" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:56 msgid "Execute specified command for each located file, in the files directory" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:57 -#, fuzzy msgid "List file in ls -dils format, write to specified file" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:58 -#, fuzzy msgid "Print full file names into specified file" -msgstr "Output profiling information to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:59 msgid "Print null separated full file names into specified file" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:60 -#, fuzzy msgid "Print formated data into specified file" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:61 msgid "Execute specified command for each located file after asking user" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:62 -#, fuzzy msgid "Print full file names" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:63 msgid "" @@ -20013,33 +18145,28 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:64 -#, fuzzy msgid "Print null separated full file names" -msgstr "Print only rcs filename" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:65 -#, fuzzy msgid "Print formated data" -msgstr "Imprime texto formatado" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:66 msgid "Do not recurse unless -depth is specified" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:67 -#, fuzzy msgid "Exit at once" -msgstr "Sai do shell" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:68 -#, fuzzy msgid "List file in ls -dils format" -msgstr "List bugs in rss format" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:69 -#, fuzzy msgid "Negate result of action" -msgstr "Nega estado de saída da tarefa" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:70 msgid "Result is only true if both previous and next action are true" @@ -20070,9 +18197,8 @@ msgid "Output profiling information to specified file" msgstr "" #: /tmp/fish/implicit/share/completions/fish.fish:8 -#, fuzzy msgid "Run with the specified verbosity level" -msgstr "Output sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:3 msgid "Do not indent output, only reformat into one job per line" @@ -20083,9 +18209,8 @@ msgid "Colorize the output using ANSI escape sequences" msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:5 -#, fuzzy msgid "Output in HTML format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:6 #: /tmp/fish/implicit/share/completions/sort.fish:15 @@ -20093,28 +18218,24 @@ msgid "Write to file" msgstr "Escreve para o arquivo" #: /tmp/fish/implicit/share/completions/fish_indent.fish:7 -#, fuzzy msgid "Enable debug at specified verbosity level" -msgstr "Output sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:8 msgid "Specify how many stack frames to display in debug messages" msgstr "" #: /tmp/fish/implicit/share/completions/fish_indent.fish:9 -#, fuzzy msgid "Dump information about parsed statements to stderr" -msgstr "Display information about a local or remote item" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:1 -#, fuzzy msgid "Show the flac version number" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:2 -#, fuzzy msgid "Show this screen" -msgstr "Mostra tudo" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:3 msgid "Show detailed explanation of usage and options" @@ -20133,28 +18254,24 @@ msgid "Same as -d except an analysis file is written" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:7 -#, fuzzy msgid "Write output to stdout" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:8 msgid "Do not write runtime encode/decode statistics" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:9 -#, fuzzy msgid "Do not print anything including errors" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:10 -#, fuzzy msgid "Force overwriting of output files" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:11 -#, fuzzy msgid "Force the output file name" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:12 msgid "Prepend STRING to output names" @@ -20181,18 +18298,16 @@ msgid "Serial number to use for the FLAC stream" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:18 -#, fuzzy msgid "Include residual signal in text output" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:19 msgid "Generate gnuplot files of residual distribution" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:20 -#, fuzzy msgid "Continue decoding through stream errors" -msgstr "Continue after an error" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:21 msgid "Set the beginning and ending cuepoints to decode [#.#][-[#.#]]" @@ -20223,9 +18338,8 @@ msgid "Add a Vorbis comment FIELD=VALUE; may appear multiple times" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:28 -#, fuzzy msgid "Read tags from file" -msgstr "Read URLs from file" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:29 msgid "Add seek point(s) {#|X|#x|#s}" @@ -20274,9 +18388,8 @@ msgid "Synonymous with -l 12 -b 4608 -m -e -r 6" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:42 -#, fuzzy msgid "Specify blocksize in samples" -msgstr "Specify sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:43 msgid "Try mid-side coding for each frame" @@ -20299,9 +18412,8 @@ msgid "Exhaustively search LP coeff quantization" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:48 -#, fuzzy msgid "Specify precision in bits" -msgstr "Specify revision states" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:49 msgid "Set [min,]max residual partition order" @@ -20313,14 +18425,12 @@ msgid "Set byte order for samples" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:52 -#, fuzzy msgid "Number of channels" -msgstr "Set number of audio channels" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:53 -#, fuzzy msgid "Number of bits per sample" -msgstr "Number of top servers" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:54 msgid "Sample rate in Hz" @@ -20332,9 +18442,8 @@ msgid "Sign of samples" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:57 -#, fuzzy msgid "Size of the raw input in bytes" -msgstr "Show changes in reverse order" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:58 msgid "Force decoding to AIFF format" @@ -20349,9 +18458,8 @@ msgid "No adaptive mid-side coding for all frames" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:61 -#, fuzzy msgid "Don't continue decoding through stream errors" -msgstr "Don't continue after an error" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:62 msgid "Don't delete after a successful encode/decode" @@ -20390,9 +18498,8 @@ msgid "Don't generate gnuplot files of residual distribution" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:71 -#, fuzzy msgid "Don't include residual signal in text output" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:72 msgid "Don't align multiple files on sector boundaries" @@ -20403,14 +18510,12 @@ msgid "Write runtime encode/decode statistics" msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:74 -#, fuzzy msgid "Don't force overwriting of output files" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/flac.fish:75 -#, fuzzy msgid "Don't verify a correct encoding" -msgstr "Don't verify package or header digests when reading" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:1 msgid "Install an application or runtime from a remote" @@ -20421,33 +18526,28 @@ msgid "Update an installed application or runtime" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:3 -#, fuzzy msgid "Uninstall an installed application or runtime" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:4 -#, fuzzy msgid "List installed apps and/or runtimes" -msgstr "List installed source package\\(s\\)" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:5 msgid "Show info for installed app or runtime" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:6 -#, fuzzy msgid "Run an application" -msgstr "Open file in default application" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:7 -#, fuzzy msgid "Override permissions for an application" -msgstr "Open file in default application" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:8 -#, fuzzy msgid "Specify default version to run" -msgstr "Specify users for query" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:9 msgid "Enter the namespace of a running application" @@ -20462,57 +18562,48 @@ msgid "Revoke access to a specific file" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:12 -#, fuzzy msgid "Show information about a specific file" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:13 -#, fuzzy msgid "List exported files" -msgstr "Listar arquivos swap" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:14 -#, fuzzy msgid "Add a new remote repository (by URL)" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:15 msgid "Modify properties of a configured remote" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:16 -#, fuzzy msgid "Delete a configured remote" -msgstr "lista redes configuradas" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:17 -#, fuzzy msgid "List all configured remotes" -msgstr "lista redes configuradas" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:18 -#, fuzzy msgid "List contents of a configured remote" -msgstr "List contents of directory" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:19 -#, fuzzy msgid "Initialize a directory for building" -msgstr "File descriptor for input" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:20 -#, fuzzy msgid "Run a build command inside the build dir" -msgstr "Executa um comando builtin em vez de uma função" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:21 msgid "Finish a build dir for export" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:22 -#, fuzzy msgid "Export a build dir to a repository" -msgstr "Adicionar um novo arquivo/diretório ao repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:23 msgid "Create a bundle file from a build directory" @@ -20527,14 +18618,12 @@ msgid "Sign an application or runtime" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:26 -#, fuzzy msgid "Update the summary file in a repository" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:1 -#, fuzzy msgid "Add files to checkout" -msgstr "Append files to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:2 #: /tmp/fish/implicit/share/completions/fossil.fish:8 @@ -20546,17 +18635,15 @@ msgstr "Append files to archive" #: /tmp/fish/implicit/share/completions/fossil.fish:202 #: /tmp/fish/implicit/share/completions/fossil.fish:211 #: /tmp/fish/implicit/share/completions/fossil.fish:300 -#, fuzzy msgid "Case insensitive file matching" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:3 #: /tmp/fish/implicit/share/completions/fossil.fish:9 #: /tmp/fish/implicit/share/completions/fossil.fish:78 #: /tmp/fish/implicit/share/completions/fossil.fish:130 -#, fuzzy msgid "Include dotfiles" -msgstr "Exceto arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:4 #: /tmp/fish/implicit/share/completions/fossil.fish:5 @@ -20564,14 +18651,12 @@ msgstr "Exceto arquivo" #: /tmp/fish/implicit/share/completions/fossil.fish:11 #: /tmp/fish/implicit/share/completions/fossil.fish:79 #: /tmp/fish/implicit/share/completions/fossil.fish:131 -#, fuzzy msgid "Files to ignore" -msgstr "Specify files to ignore" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:7 -#, fuzzy msgid "Remove and add files to checkout" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:12 #: /tmp/fish/implicit/share/completions/fossil.fish:82 @@ -20583,80 +18668,66 @@ msgid "Display actions without running" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:13 -#, fuzzy msgid "Check all repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:14 -#, fuzzy msgid "List changes" -msgstr "Sem alterações" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:15 #: /tmp/fish/implicit/share/completions/fossil.fish:16 -#, fuzzy msgid "Ignore repository" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:17 -#, fuzzy msgid "Display locations" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:18 -#, fuzzy msgid "Pull repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:19 -#, fuzzy msgid "Push repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:20 -#, fuzzy msgid "Rebuild repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:21 -#, fuzzy msgid "Sync repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:22 -#, fuzzy msgid "Shows file modifications" -msgstr "Show last modification only" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:23 -#, fuzzy msgid "Show file versions" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:24 -#, fuzzy msgid "List all analyzed versions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:25 #: /tmp/fish/implicit/share/completions/fossil.fish:137 -#, fuzzy msgid "Limit analyzed versions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:26 msgid "Find regressions" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:27 -#, fuzzy msgid "Identify version as not working" -msgstr "Identify as agent-string" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:28 -#, fuzzy msgid "Identify version as working" -msgstr "Identify as agent-string" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:29 #: /tmp/fish/implicit/share/completions/fossil.fish:39 @@ -20669,14 +18740,12 @@ msgid "Show log of bisects in check-in order" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:31 -#, fuzzy msgid "Skip version" -msgstr "Ordena por versão" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:32 -#, fuzzy msgid "Show bisect options" -msgstr "Display help and debug options" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:33 #: /tmp/fish/implicit/share/completions/fossil.fish:36 @@ -20698,9 +18767,8 @@ msgid "List versions between bad and good" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:41 -#, fuzzy msgid "Don't show anything" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:42 msgid "Reinitialize bisect" @@ -20709,69 +18777,57 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:44 #: /tmp/fish/implicit/share/completions/fossil.fish:45 #: /tmp/fish/implicit/share/completions/fossil.fish:46 -#, fuzzy msgid "Show all versions" -msgstr "Display help and debug options" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:47 -#, fuzzy msgid "Undo latest bad/good command." -msgstr "Finaliza um bloco de comandos" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:48 #: /tmp/fish/implicit/share/completions/git.fish:88 -#, fuzzy msgid "Create a new branch" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:49 -#, fuzzy msgid "Create new branch" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:50 -#, fuzzy msgid "Make branch local" -msgstr "Make variable scope local" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:51 -#, fuzzy msgid "Set background color" -msgstr "Alterar cor de fundo" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:52 #: /tmp/fish/implicit/share/completions/fossil.fish:106 -#, fuzzy msgid "Don't sign the branch with GPG" -msgstr "Do not sign the patch" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:53 #: /tmp/fish/implicit/share/completions/fossil.fish:155 -#, fuzzy msgid "Override date" -msgstr "Override framerate" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:54 -#, fuzzy msgid "Override user" -msgstr "Override framerate" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:55 -#, fuzzy msgid "List branches" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:56 #: /tmp/fish/implicit/share/completions/fossil.fish:57 -#, fuzzy msgid "Show all branches" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:58 #: /tmp/fish/implicit/share/completions/fossil.fish:59 -#, fuzzy msgid "Show closed branches" -msgstr "Show upgraded packages" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:60 #: /tmp/fish/implicit/share/completions/fossil.fish:62 @@ -20781,39 +18837,33 @@ msgstr "Show upgraded packages" #: /tmp/fish/implicit/share/completions/fossil.fish:177 #: /tmp/fish/implicit/share/completions/fossil.fish:180 #: /tmp/fish/implicit/share/completions/fossil.fish:267 -#, fuzzy msgid "Run command on repository" -msgstr "Executa um comando como o processo atual" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:61 -#, fuzzy msgid "Print a file" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:63 #: /tmp/fish/implicit/share/completions/fossil.fish:140 -#, fuzzy msgid "Print specific revision" -msgstr "Print only given revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:64 -#, fuzzy msgid "List local changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:65 #: /tmp/fish/implicit/share/completions/fossil.fish:128 #: /tmp/fish/implicit/share/completions/fossil.fish:263 -#, fuzzy msgid "Display absolute paths" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:66 #: /tmp/fish/implicit/share/completions/fossil.fish:132 #: /tmp/fish/implicit/share/completions/fossil.fish:264 -#, fuzzy msgid "Display relative paths" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:67 #: /tmp/fish/implicit/share/completions/fossil.fish:265 @@ -20821,34 +18871,28 @@ msgid "Verify file status using SHA1" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:68 -#, fuzzy msgid "Identify the repository if there are changes" -msgstr "Identify the C function each change is in" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:69 -#, fuzzy msgid "Say (none) if there are no changes" -msgstr "Try to find a smaller set of changes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:70 -#, fuzzy msgid "Checkout version" -msgstr "Ordena por versão" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:71 -#, fuzzy msgid "Version to check out" -msgstr "Version of source package" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:72 -#, fuzzy msgid "Ignore edited files" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:73 -#, fuzzy msgid "Ignore missing content" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:74 msgid "Only update the manifest" @@ -20856,14 +18900,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:75 #: /tmp/fish/implicit/share/completions/fossil.fish:302 -#, fuzzy msgid "Update to latest version" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:76 -#, fuzzy msgid "Delete all extra files" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:80 #: /tmp/fish/implicit/share/completions/fossil.fish:212 @@ -20871,24 +18913,20 @@ msgid "Files to clean without prompting" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:81 -#, fuzzy msgid "Remove without prompting" -msgstr "Remove property" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:83 -#, fuzzy msgid "Only remove Fossil temporary files" -msgstr "Use tmpdir for temporary files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:84 -#, fuzzy msgid "Show removed files" -msgstr "Do not create file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:85 -#, fuzzy msgid "Clone repository" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:86 #: /tmp/fish/implicit/share/completions/fossil.fish:154 @@ -20904,9 +18942,8 @@ msgid "Use SSL identity" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:89 -#, fuzzy msgid "Create new revision" -msgstr "Force new revision" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:91 msgid "Allow unresolved merge conflicts" @@ -20949,38 +18986,32 @@ msgid "Use a delta manifest" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:101 -#, fuzzy msgid "Commit comment" -msgstr "Comentário" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:102 -#, fuzzy msgid "Read commit comment from a file" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:103 -#, fuzzy msgid "Mimetype of commit comment" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:105 -#, fuzzy msgid "Omit all warnings" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:107 -#, fuzzy msgid "Don't sync the changes" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:108 msgid "Assign a tag to the checkin" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:109 -#, fuzzy msgid "Show differences" -msgstr "Ignore case differences" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:110 #: /tmp/fish/implicit/share/completions/fossil.fish:165 @@ -20989,38 +19020,32 @@ msgid "Binary files glob pattern" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:111 -#, fuzzy msgid "Show diff of branch" -msgstr "Show hierarchy" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:112 -#, fuzzy msgid "Show file names only" -msgstr "Log to file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:113 -#, fuzzy msgid "Context lines" -msgstr "Set context size" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:114 -#, fuzzy msgid "Include binary files" -msgstr "Annotate binary files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:115 msgid "Select revision to compare with" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:116 -#, fuzzy msgid "Use internal diff logic" -msgstr "Undo an edit command" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:117 -#, fuzzy msgid "Side-by-side diff" -msgstr "Use side-by-side format" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:118 msgid "Launch GUI" @@ -21031,76 +19056,64 @@ msgid "Select revision to compare to" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:120 -#, fuzzy msgid "Unified diff" -msgstr "Use unified format" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:121 -#, fuzzy msgid "Output complete text" -msgstr "Output mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:122 -#, fuzzy msgid "Line width in side-by-side diff" -msgstr "Set column width for side-by-side format" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:123 -#, fuzzy msgid "Export repository to git" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:124 msgid "Export rids of exported data to file" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:125 -#, fuzzy msgid "Read rids of data to ignore from file" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:127 msgid "Show files that aren't part of checkout" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:133 -#, fuzzy msgid "Print complete file history" -msgstr "Print only file info" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:134 -#, fuzzy msgid "Display one-line summary" -msgstr "Display summary" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:136 -#, fuzzy msgid "Select log mode (default)" -msgstr "Select entire command line (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:138 -#, fuzzy msgid "Skip changes" -msgstr "Sem alterações" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:139 -#, fuzzy msgid "Select print mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:141 -#, fuzzy msgid "Select status mode" -msgstr "Select a method" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:143 msgid "Show main and auxiliary commands" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:144 -#, fuzzy msgid "Show test commands only" -msgstr "Do not execute commands" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:145 msgid "Show auxilary commands only" @@ -21111,44 +19124,37 @@ msgid "Show list of web UI pages" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:147 -#, fuzzy msgid "Import repository from git" -msgstr "Compress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:148 -#, fuzzy msgid "Allow importing into existing repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:149 -#, fuzzy msgid "Provide information about object" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:151 #: /tmp/fish/implicit/share/completions/fossil.fish:170 -#, fuzzy msgid "Show extra information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:152 -#, fuzzy msgid "Create a repository" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:153 -#, fuzzy msgid "Copy settings from repository" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:156 msgid "Make JSON request" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:158 -#, fuzzy msgid "List files" -msgstr "Listar arquivos swap" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:159 #: /tmp/fish/implicit/share/completions/fossil.fish:163 @@ -21160,29 +19166,24 @@ msgstr "Listar arquivos swap" #: /tmp/fish/implicit/share/completions/git.fish:246 #: /tmp/fish/implicit/share/completions/git.fish:295 #: /tmp/fish/implicit/share/completions/git.fish:296 -#, fuzzy msgid "Tag" -msgstr "Target" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:160 -#, fuzzy msgid "Show commit time" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:161 -#, fuzzy msgid "Provide extra information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:162 -#, fuzzy msgid "Merge commits" -msgstr "Merge sorted files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:164 -#, fuzzy msgid "Use baseline" -msgstr "Use fast setting" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:167 msgid "Allow empty merge" @@ -21193,14 +19194,12 @@ msgid "Close merged branch" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:171 -#, fuzzy msgid "Move file" -msgstr "Arquivo tar" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:173 -#, fuzzy msgid "Open repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:174 msgid "Only modify manifest" @@ -21211,55 +19210,45 @@ msgid "Allow opening inside an opened repository" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:176 -#, fuzzy msgid "Pull from a repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:178 #: /tmp/fish/implicit/share/completions/fossil.fish:181 -#, fuzzy msgid "Pull private branches" -msgstr "Multiple vendor branch" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:179 -#, fuzzy msgid "Push into a repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:182 -#, fuzzy msgid "Rebuild a repository" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:183 -#, fuzzy msgid "Compute clusters" -msgstr "Compress faster" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:184 -#, fuzzy msgid "Compress database" -msgstr "Comprime dados" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:185 -#, fuzzy msgid "Force rebuild even with errors" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:186 -#, fuzzy msgid "Skip BLOB table verification" -msgstr "Skip the signature verification step" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:187 -#, fuzzy msgid "Set the database pagesize" -msgstr "Set the native character set" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:188 -#, fuzzy msgid "Scan in random order" -msgstr "Play in random order" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:189 msgid "Run VACUUM" @@ -21278,34 +19267,28 @@ msgid "Set Write-Ahead-Log journalling" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:193 -#, fuzzy msgid "Show statistics" -msgstr "Show cache statistics" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:194 -#, fuzzy msgid "Default server URL" -msgstr "Set referer URL" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:195 -#, fuzzy msgid "Revert a commit" -msgstr "Report on each commit" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:197 -#, fuzzy msgid "Revert back to given revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:198 -#, fuzzy msgid "Remove a file from repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:199 -#, fuzzy msgid "Remove files from this checkout" -msgstr "Place files or directories under version control" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:200 msgid "Skip removing files from this checkout" @@ -21316,19 +19299,16 @@ msgid "Display actions without runing" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:203 -#, fuzzy msgid "Manage settings" -msgstr "Manual sections" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:204 -#, fuzzy msgid "Log accesses" -msgstr "Replace a log message" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:205 -#, fuzzy msgid "Allow symbolic links" -msgstr "Always follow symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:206 msgid "Allow automatically filling CAPTCHA" @@ -21343,9 +19323,8 @@ msgid "Pull list of shunned references from server" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:209 -#, fuzzy msgid "Automatically sync the repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:213 msgid "Sign commits using GPG" @@ -21364,23 +19343,20 @@ msgid "Allow binary files to be diffed" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:217 -#, fuzzy msgid "External diff command" -msgstr "Undo an edit command" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:218 -#, fuzzy msgid "Disallow pushing to the repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:219 msgid "Text editor for writing check-in comments" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:220 -#, fuzzy msgid "List of empty directories" -msgstr "Prune empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:221 msgid "Non-UTF-8 files glob pattern" @@ -21403,9 +19379,8 @@ msgid "Send login credentials using HTTPS" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:226 -#, fuzzy msgid "Files to ignore glob pattern" -msgstr "Files to ignore during import" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:227 msgid "Files to keep when cleaning" @@ -21428,14 +19403,12 @@ msgid "HTTP request size limit" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:232 -#, fuzzy msgid "Use modification times" -msgstr "Change modification time" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:233 -#, fuzzy msgid "PGP command" -msgstr "Job command" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:234 msgid "HTTP proxy URL" @@ -21446,9 +19419,8 @@ msgid "Report relative paths" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:236 -#, fuzzy msgid "Compute checksums over all files" -msgstr "Write size for all files" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:237 msgid "Allow users to register themselves" @@ -21463,14 +19435,12 @@ msgid "Location of SSL CA root certificates" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:240 -#, fuzzy msgid "SSL private certificate path" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:241 -#, fuzzy msgid "Allow Tcl scripting" -msgstr "Tcl section" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:242 msgid "Tcl initialization script" @@ -21481,49 +19451,42 @@ msgid "TH1 initialization script" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:244 -#, fuzzy msgid "Web browser name" -msgstr "Service name" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:245 msgid "Set globally" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:246 -#, fuzzy msgid "Run SQL commands" -msgstr "Fim de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:247 msgid "Manage stashes" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:248 -#, fuzzy msgid "Save current changes" -msgstr "Make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:249 #: /tmp/fish/implicit/share/completions/fossil.fish:250 -#, fuzzy msgid "Stash comment" -msgstr "Comentário" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:251 -#, fuzzy msgid "List all stashes" -msgstr "Imprimir todos os nomes" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:252 #: /tmp/fish/implicit/share/completions/fossil.fish:253 -#, fuzzy msgid "Show information about files" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:254 -#, fuzzy msgid "Show stash contents" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:255 msgid "Pop last stash" @@ -21547,19 +19510,16 @@ msgid "Forget ALL stashes" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:261 -#, fuzzy msgid "Compare stash" -msgstr "Compare month names" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:262 -#, fuzzy msgid "Show status" -msgstr "Show threads" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:266 -#, fuzzy msgid "Sync with a repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:268 msgid "Sync private branches" @@ -21570,9 +19530,8 @@ msgid "Manage tags" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:270 -#, fuzzy msgid "Add tag to check-in" -msgstr "Taint checking" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:271 msgid "Add raw tag" @@ -21583,19 +19542,16 @@ msgid "Propagate tag" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:273 -#, fuzzy msgid "Remove tag from check-in" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:275 -#, fuzzy msgid "Remove raw tag" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:276 -#, fuzzy msgid "Find tag" -msgstr "Edit tag" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:277 msgid "Find raw tag" @@ -21606,70 +19562,57 @@ msgid "Find tag type" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:279 -#, fuzzy msgid "Limit number of tags" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:281 #: /tmp/fish/implicit/share/completions/git.fish:293 -#, fuzzy msgid "List tags" -msgstr "Edit tag" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:282 -#, fuzzy msgid "List raw tags" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:283 -#, fuzzy msgid "Show timeline" -msgstr "Show time type" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:284 -#, fuzzy msgid "Limit timeline entries" -msgstr "Wait time between retries" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:285 -#, fuzzy msgid "Output only event type" -msgstr "Output mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:286 -#, fuzzy msgid "Output list of files changed" -msgstr "Output 3 lines of unified context" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:287 -#, fuzzy msgid "Open web UI" -msgstr "Open file" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:288 -#, fuzzy msgid "Start web server" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:289 -#, fuzzy msgid "Enable automatic login for localhost" -msgstr "Enable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:290 -#, fuzzy msgid "Only listen on localhost" -msgstr "Only print locations" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:291 -#, fuzzy msgid "Port to listen on" -msgstr "Minimum port to listen to" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:292 -#, fuzzy msgid "Trace TH1 execution" -msgstr "Force deletion" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:293 msgid "Use base URL" @@ -21688,34 +19631,28 @@ msgid "Use SCGI rather than HTTP" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:297 -#, fuzzy msgid "Undo the changes" -msgstr "Mudança de tamanho de janela" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:299 -#, fuzzy msgid "Update version" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:301 -#, fuzzy msgid "Print debug information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:304 -#, fuzzy msgid "Print information about all files" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:305 -#, fuzzy msgid "Print fossil version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:306 -#, fuzzy msgid "Print version of optional features" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:307 #: /tmp/fish/implicit/share/completions/gpasswd.fish:3 @@ -21733,25 +19670,21 @@ msgstr "Ignore all version information" #: /tmp/fish/implicit/share/completions/rejmerge.fish:3 #: /tmp/fish/implicit/share/completions/root.fish:6 #: /tmp/fish/implicit/share/completions/zypper.fish:4 -#, fuzzy msgid "Print help" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:1 #: /tmp/fish/implicit/share/completions/funcsave.fish:1 -#, fuzzy msgid "Save function" -msgstr "Erase function" +msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:2 -#, fuzzy msgid "Open function in external editor" -msgstr "Specify external editor" +msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:3 -#, fuzzy msgid "Edit in interactive mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:1 #: /tmp/fish/implicit/share/completions/functions.fish:5 @@ -21786,14 +19719,12 @@ msgid "Make the function a variable update event handler" msgstr "Make the function a variable update event handler" #: /tmp/fish/implicit/share/completions/function.fish:8 -#, fuzzy msgid "Make the function a generic event handler" -msgstr "Make the function a signal event handler" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:9 -#, fuzzy msgid "Specify named arguments" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:10 msgid "Do not shadow variable scope of calling function" @@ -21808,9 +19739,8 @@ msgid "Erase function" msgstr "Erase function" #: /tmp/fish/implicit/share/completions/functions.fish:3 -#, fuzzy msgid "Show hidden functions" -msgstr "Mostra tudo" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:6 msgid "Test if function is defined" @@ -21821,24 +19751,20 @@ msgid "List the names of the functions, but not their definition" msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:8 -#, fuzzy msgid "Copy the specified function to the specified new name" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:9 -#, fuzzy msgid "Display information about the function" -msgstr "Display $ at end of line" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:10 -#, fuzzy msgid "Print more output" -msgstr "Print word counts" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:1 -#, fuzzy msgid "Show all files specified on the command line" -msgstr "Add specified file to the current list of keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:2 msgid "Kill processes, accessing the file" @@ -21865,14 +19791,12 @@ msgid "Kill only processes which have write access" msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:8 -#, fuzzy msgid "Slect a different namespace" -msgstr "Select frontend interface" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:9 -#, fuzzy msgid "Silent operation" -msgstr "Foreground operation" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:10 msgid "Append the user name of the process owner to each PID" @@ -21907,14 +19831,12 @@ msgid "Lazy unmount" msgstr "Lazy unmount" #: /tmp/fish/implicit/share/completions/gcc.fish:1 -#, fuzzy msgid "Standard mode" -msgstr "Standard mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:2 -#, fuzzy msgid "Place output in file" -msgstr "Acrescentar saída a arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:3 msgid "" @@ -21924,9 +19846,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:4 -#, fuzzy msgid "Use specified version of the C++ ABI" -msgstr "Use specified compression algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:5 #: /tmp/fish/implicit/share/completions/gcc.fish:481 @@ -22002,20 +19923,18 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:18 -#, fuzzy msgid "Display the version number and copyrights of the invoked GCC" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:19 msgid "In C mode, support all ISO C90 programs" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:20 -#, fuzzy msgid "" "Do not recognize \"asm\", \"inline\" or \"typeof\" as a keyword, so that " "code can use these words as identifiers" -msgstr "Do not recognize asm, inline or typeof keywords" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:21 #: /tmp/fish/implicit/share/completions/gcc.fish:22 @@ -22029,9 +19948,8 @@ msgid "Assert that compilation takes place in a hosted environment" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:24 -#, fuzzy msgid "Assert that compilation takes place in a freestanding environment" -msgstr "Assert freestanding environment" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:25 msgid "Accept some non-standard constructs used in Microsoft header files" @@ -22076,9 +19994,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:37 -#, fuzzy msgid "Turn off all access checking" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:38 msgid "" @@ -22133,9 +20050,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:48 -#, fuzzy msgid "Don’t emit code for implicit instantiations of inline templates, either" -msgstr "Do not emit code for implicit inline templates" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:49 msgid "" @@ -22167,10 +20083,9 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:54 -#, fuzzy msgid "" "Downgrade some diagnostics about nonconformant code from errors to warnings" -msgstr "Downgrade some errors to warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:55 msgid "Enable automatic template instantiation at link time" @@ -22189,11 +20104,10 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:58 -#, fuzzy msgid "" "Do not emit the extra code to use the routines specified in the C++ ABI for " "thread-safe initialization of local statics" -msgstr "Do not emit code for thread-safe initialization of local statics" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:59 msgid "" @@ -22209,9 +20123,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:61 -#, fuzzy msgid "Do not use weak symbol support, even if it is provided by the linker" -msgstr "Do not use weak symbol support" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:62 msgid "" @@ -22379,9 +20292,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:92 -#, fuzzy msgid "Warn if a \"@selector(" -msgstr "Write selection" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:93 msgid "" @@ -23100,24 +21012,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:239 -#, fuzzy msgid "Optimize even more" -msgstr "Optimize the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:240 -#, fuzzy msgid "Optimize yet more" -msgstr "Optimize the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:241 -#, fuzzy msgid "Do not optimize" -msgstr "Não ordena" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:242 -#, fuzzy msgid "Optimize for size" -msgstr "Optimize the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:243 msgid "" @@ -23157,9 +21065,8 @@ msgid "Don’t pay attention to the \"inline\" keyword" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:250 -#, fuzzy msgid "Integrate all simple functions into their callers" -msgstr "Inject readline functions to reader" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:251 msgid "" @@ -23320,9 +21227,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:280 -#, fuzzy msgid "Perform cross-jumping transformation" -msgstr "Perform contents generation" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:281 msgid "Attempt to transform conditional jumps into branch-less equivalents" @@ -23801,9 +21707,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:380 -#, fuzzy msgid "Pass option as an option to the preprocessor" -msgstr "Do not use integrated preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:381 msgid "Predefine name as a macro, with definition 1" @@ -23826,17 +21731,14 @@ msgid "Do not predefine any system-specific or GCC-specific macros" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:385 -#, fuzzy msgid "" "Add the directory dir to the list of directories to be searched for header " "files" msgstr "" -"Sets a list of directories to search for photo viewers and keyserver helpers" #: /tmp/fish/implicit/share/completions/gcc.fish:386 -#, fuzzy msgid "Write output to file" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:387 msgid "Turns on all optional warnings which are desirable for normal code" @@ -23973,9 +21875,8 @@ msgid "Specify the standard to which the code should conform" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:419 -#, fuzzy msgid "Split the include path" -msgstr "Include path" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:420 msgid "Do not search the standard system directories for header files" @@ -24035,9 +21936,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:432 -#, fuzzy msgid "Accept universal character names in identifiers" -msgstr "Accept $ in identifiers" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:433 msgid "" @@ -24096,9 +21996,8 @@ msgid "Inhibit generation of linemarkers in the output from the preprocessor" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:445 -#, fuzzy msgid "Do not discard comments" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:446 msgid "Do not discard comments, including during macro expansion" @@ -24111,9 +22010,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:448 -#, fuzzy msgid "Process trigraph sequences" -msgstr "Process at queue only once" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:449 msgid "" @@ -24267,9 +22165,8 @@ msgid "Compile code for little endian mode" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:486 -#, fuzzy msgid "Compile code for big endian mode" -msgstr "Compiler debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:487 msgid "Prepend the name of the cpu to all public symbol names" @@ -24289,9 +22186,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:493 -#, fuzzy msgid "Generate code for the specified ABI" -msgstr "Create window on the specified display" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:494 msgid "" @@ -24490,9 +22386,8 @@ msgid "Change only the low 8 bits of the stack pointer" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:532 -#, fuzzy msgid "Assume int to be 8 bit integer" -msgstr "Left integer not equal to right integer" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:533 #: /tmp/fish/implicit/share/completions/gcc.fish:818 @@ -24528,9 +22423,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:539 -#, fuzzy msgid "Assume that the program is arbitrarily large" -msgstr "Assume data type for binary files" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:540 #: /tmp/fish/implicit/share/completions/gcc.fish:909 @@ -24554,9 +22448,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:547 #: /tmp/fish/implicit/share/completions/gcc.fish:743 #: /tmp/fish/implicit/share/completions/gcc.fish:744 -#, fuzzy msgid "Generate code for the specified architecture" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:548 #: /tmp/fish/implicit/share/completions/gcc.fish:549 @@ -24730,9 +22623,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:591 -#, fuzzy msgid "Produce a Mach-o bundle format file" -msgstr "Produce sample configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:592 msgid "" @@ -24969,38 +22861,32 @@ msgid "Change ABI to use double word insns" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:698 -#, fuzzy msgid "Do not use double word instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:699 -#, fuzzy msgid "Use floating point double instructions" -msgstr "Exceção de ponto flutuante" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:700 -#, fuzzy msgid "Do not use floating point double instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:701 -#, fuzzy msgid "Use media instructions" -msgstr "Instrução ilegal" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:702 -#, fuzzy msgid "Do not use media instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:703 msgid "Use multiply and add/subtract instructions" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:704 -#, fuzzy msgid "Do not use multiply and add/subtract instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:705 msgid "" @@ -25063,48 +22949,40 @@ msgid "Use all eight media accumulator registers" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:717 -#, fuzzy msgid "Pack VLIW instructions" -msgstr "Instrução ilegal" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:718 -#, fuzzy msgid "Do not pack VLIW instructions" -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:719 msgid "Do not mark ABI switches in e_flags" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:720 -#, fuzzy msgid "Enable the use of conditional-move instructions (default)" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:721 -#, fuzzy msgid "Disable the use of conditional-move instructions" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:722 -#, fuzzy msgid "Enable the use of conditional set instructions (default)" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:723 -#, fuzzy msgid "Disable the use of conditional set instructions" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:724 -#, fuzzy msgid "Enable the use of conditional execution (default)" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:725 -#, fuzzy msgid "Disable the use of conditional execution" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:726 msgid "Run a pass to pack branches into VLIW instructions (default)" @@ -25128,9 +23006,8 @@ msgid "Enable nested conditional execution optimizations (default)" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:731 -#, fuzzy msgid "Disable nested conditional execution optimizations" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:732 msgid "" @@ -25164,9 +23041,8 @@ msgid "Generate code for the H8/300H" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:738 -#, fuzzy msgid "Generate code for the H8S" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:739 msgid "Generate code for the H8S and H8/300H in the normal mode" @@ -25254,14 +23130,12 @@ msgid "Generate the predefine, \"_SIO\", for server IO" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:764 -#, fuzzy msgid "Use GNU ld specific options" -msgstr "Edita compleções específicas para um comando" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:765 -#, fuzzy msgid "Use HP ld specific options" -msgstr "Edita compleções específicas para um comando" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:766 msgid "Generate code that uses long call sequences" @@ -25303,9 +23177,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:776 #: /tmp/fish/implicit/share/completions/gcc.fish:777 -#, fuzzy msgid "A deprecated synonym for -mtune" -msgstr "Synonym for -i" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:778 #: /tmp/fish/implicit/share/completions/gcc.fish:779 @@ -25477,16 +23350,14 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:828 -#, fuzzy msgid "Generate code for a big endian target" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:829 #: /tmp/fish/implicit/share/completions/gcc.fish:939 #: /tmp/fish/implicit/share/completions/gcc.fish:940 -#, fuzzy msgid "Generate code for a little endian target" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:830 #: /tmp/fish/implicit/share/completions/gcc.fish:831 @@ -25525,9 +23396,8 @@ msgid "Generate code that uses a single constant global pointer value" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:842 -#, fuzzy msgid "Generate code that is self-relocatable" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:843 msgid "" @@ -25610,19 +23480,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:866 -#, fuzzy msgid "Generate code for the M32R/2" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:867 -#, fuzzy msgid "Generate code for the M32R/X" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:868 -#, fuzzy msgid "Generate code for the M32R" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:869 msgid "" @@ -25710,39 +23577,33 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:885 #: /tmp/fish/implicit/share/completions/gcc.fish:886 -#, fuzzy msgid "Generate output for a 68000" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:887 #: /tmp/fish/implicit/share/completions/gcc.fish:888 -#, fuzzy msgid "Generate output for a 68020" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:889 msgid "Generate output containing 68881 instructions for floating point" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:890 -#, fuzzy msgid "Generate output for a 68030" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:891 -#, fuzzy msgid "Generate output for a 68040" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:892 -#, fuzzy msgid "Generate output for a 68060" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:893 -#, fuzzy msgid "Generate output for a CPU32" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:894 msgid "Generate output for a 520X \"coldfire\" family cpu" @@ -25762,14 +23623,12 @@ msgid "Consider type \"int\" to be 16 bits wide, like \"short int\"" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:899 -#, fuzzy msgid "Do not use the bit-field instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:900 -#, fuzzy msgid "Do use the bit-field instructions" -msgstr "Do not use builtin functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:901 msgid "" @@ -25818,21 +23677,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:912 #: /tmp/fish/implicit/share/completions/gcc.fish:913 -#, fuzzy msgid "Generate output for a 68HC11" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:914 #: /tmp/fish/implicit/share/completions/gcc.fish:915 -#, fuzzy msgid "Generate output for a 68HC12" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:916 #: /tmp/fish/implicit/share/completions/gcc.fish:917 -#, fuzzy msgid "Generate output for a 68HCS12" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:918 msgid "" @@ -25877,9 +23733,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:931 #: /tmp/fish/implicit/share/completions/gcc.fish:932 -#, fuzzy msgid "Always treat bit-fields as int-sized" -msgstr "All bitfields are unsigned" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:933 #: /tmp/fish/implicit/share/completions/gcc.fish:934 @@ -25888,9 +23743,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:935 #: /tmp/fish/implicit/share/completions/gcc.fish:936 -#, fuzzy msgid "Emit callgraph information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:937 #: /tmp/fish/implicit/share/completions/gcc.fish:938 @@ -25903,9 +23757,8 @@ msgid "Generate code for the 210 processor" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:943 -#, fuzzy msgid "Generate big-endian code" -msgstr "Generate a new key pair" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:944 msgid "Generate little-endian code" @@ -25995,9 +23848,8 @@ msgid "Use floating-point coprocessor instructions" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:970 -#, fuzzy msgid "Do not use floating-point coprocessor instructions" -msgstr "Do not emit out-of-line code for inline functions" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:971 msgid "" @@ -26093,9 +23945,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:998 #: /tmp/fish/implicit/share/completions/gcc.fish:999 -#, fuzzy msgid "Disable (do not disable) use of the \"jal\" instruction" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1000 #: /tmp/fish/implicit/share/completions/gcc.fish:1001 @@ -26299,9 +24150,8 @@ msgid "Use hardware FPP floating point" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1055 -#, fuzzy msgid "Do not use hardware floating point" -msgstr "Do not use file completion" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1056 msgid "Return floating-point results in ac0 (fr0 in Unix assembler syntax)" @@ -26356,9 +24206,8 @@ msgid "Use \"abshi2\" pattern" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1072 -#, fuzzy msgid "Do not use \"abshi2\" pattern" -msgstr "Do not expand pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1073 msgid "Pretend that branches are expensive" @@ -26373,9 +24222,8 @@ msgid "Generate code for a system with split I&D" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1076 -#, fuzzy msgid "Generate code for a system without split I&D" -msgstr "Generate XML formatted output" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1077 msgid "Use Unix assembler syntax" @@ -26584,9 +24432,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1191 #: /tmp/fish/implicit/share/completions/gcc.fish:1195 #: /tmp/fish/implicit/share/completions/gcc.fish:1196 -#, fuzzy msgid "On System V" -msgstr "Subsystem" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1146 #: /tmp/fish/implicit/share/completions/gcc.fish:1147 @@ -26800,29 +24647,24 @@ msgid "These arguments always have to be used in conjunction" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1231 -#, fuzzy msgid "Generate code for the SH1" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1232 -#, fuzzy msgid "Generate code for the SH2" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1233 -#, fuzzy msgid "Generate code for the SH2e" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1234 -#, fuzzy msgid "Generate code for the SH3" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1235 -#, fuzzy msgid "Generate code for the SH3e" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1236 msgid "Generate code for the SH4 without a floating-point unit" @@ -26841,9 +24683,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1239 -#, fuzzy msgid "Generate code for the SH4" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1240 msgid "" @@ -26864,9 +24705,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1243 -#, fuzzy msgid "Generate code for the SH4a" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1244 msgid "" @@ -26890,9 +24730,8 @@ msgid "Use 32-bit offsets in \"switch\" tables" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1250 -#, fuzzy msgid "Enable the use of the instruction \"fmovd\"" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1251 #: /tmp/fish/implicit/share/completions/gcc.fish:1252 @@ -27080,18 +24919,16 @@ msgid "This is a synonym for -pthreads" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1300 -#, fuzzy msgid "Create a shared object" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1301 msgid "Identify the versions of each tool used by the compiler, in a \"" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1302 -#, fuzzy msgid "Refrain from adding \"" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1304 #: /tmp/fish/implicit/share/completions/gcc.fish:1305 @@ -27146,10 +24983,9 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1320 #: /tmp/fish/implicit/share/completions/gcc.fish:1321 -#, fuzzy msgid "" "Enable (disable) the use of the single instruction repeat instruction RPTS" -msgstr "Disable the use of the modification detection code" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1322 #: /tmp/fish/implicit/share/completions/gcc.fish:1323 @@ -27282,9 +25118,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1356 #: /tmp/fish/implicit/share/completions/gcc.fish:1357 -#, fuzzy msgid "Control the treatment of literal pools" -msgstr "Control creation of sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1358 #: /tmp/fish/implicit/share/completions/gcc.fish:1359 @@ -27372,9 +25207,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1376 -#, fuzzy msgid "Ignore the #ident directive" -msgstr "Ignore zero block in archive" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1377 msgid "Don’t output a \"" @@ -27478,14 +25312,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:1 -#, fuzzy msgid "List all options, with brief explanations" -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:2 -#, fuzzy msgid "Read symbol table from file file" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:3 msgid "Enable writing into executable and core files" @@ -27506,24 +25338,21 @@ msgid "Use file file as a core dump to examine" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:7 -#, fuzzy msgid "Execute GDB commands from file file" -msgstr "Execute command as if part of .wgetrc" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:8 msgid "Add directory to the path to search for source files" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:9 -#, fuzzy msgid "Do not execute commands from any .gdbinit files" -msgstr "Do not execute commands" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:11 #: /tmp/fish/implicit/share/completions/root.fish:1 -#, fuzzy msgid "Run in batch mode" -msgstr "Run in dummy mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:12 msgid "" @@ -27554,14 +25383,12 @@ msgid "Run GDB using a text (console) user interface" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:1 -#, fuzzy msgid "Print usage informations and quit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:2 -#, fuzzy msgid "Print the version and quit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:3 msgid "Use URL as the remote source for gems" @@ -27572,42 +25399,36 @@ msgid "Use the given HTTP proxy for remote operations" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:5 -#, fuzzy msgid "Use no HTTP proxy for remote operations" -msgstr "Specify root directory for rpm operations" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:6 -#, fuzzy msgid "Get help on this command" -msgstr "Set prompt command" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:7 -#, fuzzy msgid "Set the verbose level of output" -msgstr "Reset verbose level to 0" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:8 -#, fuzzy msgid "Use this config file instead of default" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:9 msgid "Show stack backtrace on errors" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:10 -#, fuzzy msgid "Turn on Ruby debugging" -msgstr "Turn of demangling" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:11 msgid "Add a trusted certificate" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:12 -#, fuzzy msgid "List trusted certificates" -msgstr "List trusted keys" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:13 msgid "Remove trusted certificates containing STRING" @@ -27622,9 +25443,8 @@ msgid "Certificate for --sign command" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:16 -#, fuzzy msgid "Private key for --sign command" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:17 msgid "Sign a certificate with my key and certificate" @@ -27635,38 +25455,32 @@ msgid "Verify gem file against its internal checksum" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:19 -#, fuzzy msgid "Report 'unmanaged' or rogue files in the gem repository" -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:20 msgid "Run unit tests for gem" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:21 -#, fuzzy msgid "Specify version for which to run unit tests" -msgstr "Specify the repository directory in which to run" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:22 -#, fuzzy msgid "Don't really cleanup" -msgstr "Don't really uninstall anything" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:23 -#, fuzzy msgid "List the files inside a Gem" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:24 -#, fuzzy msgid "Specify version for gem to view" -msgstr "Specify users for query" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:25 -#, fuzzy msgid "Search for gems under specific paths" -msgstr "Set driver specific options" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:26 msgid "Be verbose when showing status" @@ -27674,28 +25488,24 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:27 #: /tmp/fish/implicit/share/completions/gem.fish:82 -#, fuzzy msgid "Specify version of gem to uninstall" -msgstr "List of packages to install" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:28 -#, fuzzy msgid "Include reverse dependencies in the output" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:29 -#, fuzzy msgid "Don't include reverse dependencies in the output" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:30 msgid "Pipe Format (name --version ver)" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:31 -#, fuzzy msgid "Specify version of gem to install" -msgstr "List of packages to install" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:32 #: /tmp/fish/implicit/share/completions/gem.fish:51 @@ -27753,9 +25563,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:41 #: /tmp/fish/implicit/share/completions/gem.fish:90 -#, fuzzy msgid "Don't force gem to install, bypassing dependency checks" -msgstr "Don't do a dependency check" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:42 #: /tmp/fish/implicit/share/completions/gem.fish:91 @@ -27764,27 +25573,23 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:43 #: /tmp/fish/implicit/share/completions/gem.fish:92 -#, fuzzy msgid "Don't run unit tests prior to installation" -msgstr "Don't check for sufficient disk space before installation" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:44 #: /tmp/fish/implicit/share/completions/gem.fish:93 -#, fuzzy msgid "Use bin wrappers for executables" -msgstr "File is executable" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:45 #: /tmp/fish/implicit/share/completions/gem.fish:94 -#, fuzzy msgid "Don't use bin wrappers for executables" -msgstr "Don't make scripts executable" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:46 #: /tmp/fish/implicit/share/completions/gem.fish:95 -#, fuzzy msgid "Specify gem trust policy" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:47 #: /tmp/fish/implicit/share/completions/gem.fish:96 @@ -27799,16 +25604,14 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:49 #: /tmp/fish/implicit/share/completions/gem.fish:55 #: /tmp/fish/implicit/share/completions/gem.fish:66 -#, fuzzy msgid "Display detailed information of gem(s)" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:50 #: /tmp/fish/implicit/share/completions/gem.fish:56 #: /tmp/fish/implicit/share/completions/gem.fish:67 -#, fuzzy msgid "Don't display detailed information of gem(s)" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:54 msgid "Name of gem(s) to query on matches the provided REGEXP" @@ -27835,37 +25638,32 @@ msgid "Don't include RI generated documents" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:65 -#, fuzzy msgid "Specify version of gem to rdoc" -msgstr "Specify users for query" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:71 -#, fuzzy msgid "Specify version of gem to examine" -msgstr "Specify destination email" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:75 msgid "Output specifications for all versions of the gem" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:76 -#, fuzzy msgid "Uninstall all matching versions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:77 -#, fuzzy msgid "Don't uninstall all matching versions" -msgstr "Don't really uninstall anything" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:78 msgid "Ignore dependency requirements while uninstalling" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:79 -#, fuzzy msgid "Don't ignore dependency requirements while uninstalling" -msgstr "Don't check dependencies before uninstalling the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:80 msgid "Uninstall applicable executables without confirmation" @@ -27884,9 +25682,8 @@ msgid "Update the RubyGems system software" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:1 -#, fuzzy msgid "Display the manual of a git command" -msgstr "Displays usage information for command" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:3 msgid "Run as if git was started in this directory" @@ -27901,19 +25698,16 @@ msgid "Print the path to the html documentation" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:7 -#, fuzzy msgid "Print the path to the man documentation" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:8 -#, fuzzy msgid "Print the path to the info documentation" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:9 -#, fuzzy msgid "Pipe output into a pager" -msgstr "Acrescentar saída a arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:10 #: /tmp/fish/implicit/share/completions/journalctl.fish:6 @@ -27922,29 +25716,24 @@ msgstr "Acrescentar saída a arquivo" #: /tmp/fish/implicit/share/completions/systemctl.fish:41 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:5 #: /tmp/fish/implicit/share/completions/timedatectl.fish:9 -#, fuzzy msgid "Do not pipe output into a pager" -msgstr "Could not open tty for pager" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:11 -#, fuzzy msgid "Set the path to the repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:12 -#, fuzzy msgid "Set the path to the working tree" -msgstr "Set the speed factor of the writing process to #" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:13 -#, fuzzy msgid "Set the namespace" -msgstr "Definir nome do volume" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:14 -#, fuzzy msgid "Treat the repository as bare" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:15 msgid "Do not use replacement refs to replace git objects" @@ -27963,14 +25752,12 @@ msgid "Don't treat pathspecs as globs" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:19 -#, fuzzy msgid "Match pathspecs case-insensitively" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:20 -#, fuzzy msgid "Download objects and refs from another repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:21 msgid "Remote" @@ -28001,9 +25788,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:276 #: /tmp/fish/implicit/share/completions/mdadm.fish:12 #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:1 -#, fuzzy msgid "Be quiet" -msgstr "Run quietly" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:24 #: /tmp/fish/implicit/share/completions/git.fish:41 @@ -28015,9 +25801,8 @@ msgstr "Run quietly" #: /tmp/fish/implicit/share/completions/prt-get.fish:53 #: /tmp/fish/implicit/share/completions/prt-get.fish:111 #: /tmp/fish/implicit/share/completions/xz.fish:32 -#, fuzzy msgid "Be verbose" -msgstr "Do not overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:25 #: /tmp/fish/implicit/share/completions/git.fish:215 @@ -28076,10 +25861,9 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:38 -#, fuzzy msgid "" "Use this option to set the path to the temporary directory used for rewriting" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:39 msgid "" @@ -28088,44 +25872,36 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:40 -#, fuzzy msgid "Manage set of tracked repositories" -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:42 -#, fuzzy msgid "Adds a new remote" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:43 -#, fuzzy msgid "Removes a remote" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:44 -#, fuzzy msgid "Shows a remote" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:45 -#, fuzzy msgid "Deletes all stale tracking branches" -msgstr "Delete the logfile when done" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:46 -#, fuzzy msgid "Fetches updates" -msgstr "Fetch source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:47 -#, fuzzy msgid "Renames a remote" -msgstr "Rename module" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:48 -#, fuzzy msgid "Sets the default branch for a remote" -msgstr "Output default action for mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:49 msgid "Changes URLs for a remote" @@ -28191,23 +25967,20 @@ msgid "Generate a diffstat, showing the number of changed lines of each file" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:66 -#, fuzzy msgid "Shows the commits on branches" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:67 msgid "Rev" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:68 -#, fuzzy msgid "Add file contents to the index" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:69 -#, fuzzy msgid "Don't actually add the file(s)" -msgstr "Don't actually take the action" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:71 msgid "Allow adding otherwise ignored files" @@ -28215,23 +25988,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:72 #: /tmp/fish/implicit/share/completions/git.fish:259 -#, fuzzy msgid "Interactive mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:73 msgid "Interactively choose hunks to stage" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:74 -#, fuzzy msgid "Manually create a patch" -msgstr "Manually create ARP address" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:75 -#, fuzzy msgid "Only match tracked files" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:76 msgid "Match files both in working tree and index" @@ -28260,14 +26030,12 @@ msgid "Checkout and switch to a branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:82 -#, fuzzy msgid "Local Branch" -msgstr "Logical and" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:83 -#, fuzzy msgid "Remote Branch" -msgstr "Rename a disc" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:84 #: /tmp/fish/implicit/share/completions/git.fish:245 @@ -28279,14 +26047,12 @@ msgid "Track a new branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:90 -#, fuzzy msgid "Keep staged changes" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:91 -#, fuzzy msgid "Keep unmerged changes" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:92 msgid "Apply a patch on a git index file and a working tree" @@ -28301,43 +26067,36 @@ msgid "Find the change that introduced a bug by binary search" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:95 -#, fuzzy msgid "List, create, or delete branches" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:97 -#, fuzzy msgid "Delete branch" -msgstr "Delete from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:98 -#, fuzzy msgid "Force deletion of branch" -msgstr "Force deletion" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:99 -#, fuzzy msgid "Rename branch" -msgstr "Rename a disc" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:100 -#, fuzzy msgid "Force renaming branch" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:101 -#, fuzzy msgid "Lists both local and remote branches" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:102 msgid "Track remote branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:103 -#, fuzzy msgid "Do not track remote branch" -msgstr "Do not execute remote command" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:104 msgid "Set remote branch to track" @@ -28377,67 +26136,56 @@ msgid "Fast-forward if possible" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:115 -#, fuzzy msgid "Clone a repository into a new directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:116 -#, fuzzy msgid "Copy files instead of using hardlinks" -msgstr "Link files instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:117 msgid "Operate quietly and do not report progress" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:118 -#, fuzzy msgid "Provide more information on what is going on" -msgstr "Give more information during processing" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:119 msgid "No checkout of HEAD is performed after the clone is complete" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:120 -#, fuzzy msgid "Make a bare Git repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:121 -#, fuzzy msgid "Set up a mirror of the source repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:122 -#, fuzzy msgid "Use a specific name of the remote instead of the default" msgstr "" -"Usa o arquivo especificado em vez do banco de dados de confiança padrão" #: /tmp/fish/implicit/share/completions/git.fish:123 msgid "Use a specific branch instead of the one used by the cloned repository" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:124 -#, fuzzy msgid "Truncate the history to a specified number of revisions" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:125 -#, fuzzy msgid "Initialize all submodules within the cloned repository" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:126 -#, fuzzy msgid "Record changes to the repository" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:127 -#, fuzzy msgid "Amend the log message of the last commit" -msgstr "Read log message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:128 msgid "Fixup commit to be used with rebase --autosquash" @@ -28448,14 +26196,12 @@ msgid "Show changes between commits, commit and working tree, etc" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:131 -#, fuzzy msgid "Show diff of changes in the index" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:132 -#, fuzzy msgid "Compare two paths on the filesystem" -msgstr "Compare archive and filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:134 msgid "Open diffs in a visual tool" @@ -28466,9 +26212,8 @@ msgid "Visually show diff of changes in the index" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:138 -#, fuzzy msgid "Print lines matching a pattern" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:139 msgid "Create an empty git repository or reinitialize an existing one" @@ -28487,14 +26232,12 @@ msgid "Continue listing file history beyond renames" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:144 -#, fuzzy msgid "Don't print ref names" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:145 -#, fuzzy msgid "Print out ref names" -msgstr "Print kernel name" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:146 msgid "Print ref name by which each commit was reached" @@ -28505,9 +26248,8 @@ msgid "Limit the number of commits before starting to show the commit output" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:148 -#, fuzzy msgid "Skip given number of commits" -msgstr "Mostra inode dos arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:149 #: /tmp/fish/implicit/share/completions/git.fish:150 @@ -28516,9 +26258,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:151 #: /tmp/fish/implicit/share/completions/git.fish:152 -#, fuzzy msgid "Show commits older than specified date" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:153 msgid "Limit commits from given author" @@ -28533,9 +26274,8 @@ msgid "Limit commits to ones with reflog entries matching given pattern" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:156 -#, fuzzy msgid "Limit commits with message that match given pattern" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:157 msgid "Limit commits to ones that match all given --grep" @@ -28546,23 +26286,20 @@ msgid "Limit commits to ones with message that don't match --grep" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:159 -#, fuzzy msgid "Case insensitive match" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:160 msgid "Patterns are basic regular expressions (default)" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:161 -#, fuzzy msgid "Patterns are extended regular expressions" -msgstr "Pattern is extended regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:162 -#, fuzzy msgid "Patterns are fixed strings" -msgstr "Pattern is a fixed string" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:163 msgid "Patterns are Perl-compatible regular expressions" @@ -28573,9 +26310,8 @@ msgid "Stop when given path disappears from tree" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:165 -#, fuzzy msgid "Print only merge commits" -msgstr "Print only left column" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:166 msgid "Don't print commits with more than one parent" @@ -28635,9 +26371,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:178 -#, fuzzy msgid "Do not include refs matching given glob pattern" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:179 msgid "" @@ -28646,14 +26381,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:180 -#, fuzzy msgid "Ignore invalid object names" -msgstr "Ignore environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:181 -#, fuzzy msgid "Read commits from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:182 msgid "Mark equivalent commits with = and inequivalent with +" @@ -28672,9 +26405,8 @@ msgid "Autocommit the merge" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:188 -#, fuzzy msgid "Don't autocommit the merge" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:189 msgid "Edit auto-generated merge message" @@ -28705,23 +26437,20 @@ msgid "Don't populate the log message with one-line descriptions" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:196 -#, fuzzy msgid "Show diffstat of the merge" -msgstr "Mostra horário de modificação" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:197 msgid "Don't show diffstat of the merge" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:198 -#, fuzzy msgid "Squash changes from other branch as a single commit" -msgstr "Bring changes from the repository into the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:199 -#, fuzzy msgid "Don't squash changes" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:202 #: /tmp/fish/implicit/share/completions/git.fish:219 @@ -28734,23 +26463,20 @@ msgid "Force no progress status" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:204 -#, fuzzy msgid "Set the commit message" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:205 -#, fuzzy msgid "Abort the current conflict resolution process" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:206 msgid "Run merge conflict resolution tools to resolve merge conflicts" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:207 -#, fuzzy msgid "Use specific merge resolution program" -msgstr "Use specified message digest algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:209 msgid "Move or rename a file, a directory, or a symlink" @@ -28765,26 +26491,22 @@ msgid "Fetch from and merge with another repository or a local branch" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:214 -#, fuzzy msgid "Fetch all remotes" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:217 -#, fuzzy msgid "Keep downloaded pack" -msgstr "Disable downloading packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:218 -#, fuzzy msgid "Disable automatic tag following" -msgstr "Disable automtic buffer allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:220 #: /tmp/fish/implicit/share/completions/git.fish:223 #: /tmp/fish/implicit/share/completions/git.fish:243 -#, fuzzy msgid "Remote alias" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:222 msgid "Update remote refs along with associated objects" @@ -28815,9 +26537,8 @@ msgid "Push all refs under refs/" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:231 -#, fuzzy msgid "Delete all listed refs from the remote repository" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:232 msgid "Push all refs under refs/tags" @@ -28832,9 +26553,8 @@ msgid "Do everything except actually send the updates" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:235 -#, fuzzy msgid "Produce machine-readable output" -msgstr "Give human-readable output" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:236 msgid "Force update of remote refs" @@ -28854,14 +26574,12 @@ msgid "Forward-port local commits to the updated upstream head" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:247 -#, fuzzy msgid "Restart the rebasing process" -msgstr "Automatic line ending processing" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:248 -#, fuzzy msgid "Abort the rebase operation" -msgstr "Force name/rev association" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:249 msgid "Keep the commits that don't cahnge anything" @@ -28876,9 +26594,8 @@ msgid "Use merging strategies to rebase" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:254 -#, fuzzy msgid "Show diffstat of the rebase" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:255 msgid "Don't show diffstat of the rebase" @@ -28893,18 +26610,16 @@ msgid "Don't allow the pre-rebase hook to run" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:258 -#, fuzzy msgid "Force the rebase" -msgstr "Force new revision" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:260 msgid "Try to recreate merges" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:261 -#, fuzzy msgid "Rebase all reachable commits" -msgstr "Report on each commit" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:262 msgid "Automatic squashing" @@ -28915,38 +26630,32 @@ msgid "No automatic squashing" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:264 -#, fuzzy msgid "No fast-forward" -msgstr "Set date forward" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:265 -#, fuzzy msgid "Reset current HEAD to the specified state" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:266 -#, fuzzy msgid "Reset files in working directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:270 msgid "Reflog" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:271 -#, fuzzy msgid "Revert an existing commit" -msgstr "Report on each commit" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:272 -#, fuzzy msgid "Remove files from the working tree and from the index" -msgstr "Remove files after adding to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:273 -#, fuzzy msgid "Keep local copies" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:274 msgid "Exit with a zero status even if no files matched" @@ -28970,14 +26679,12 @@ msgid "Dry run" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:279 -#, fuzzy msgid "Show the working tree status" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:280 -#, fuzzy msgid "Give the output in the short-format" -msgstr "Give output suitable for get --context" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:281 msgid "Show the branch and tracking info even in short-format" @@ -28996,9 +26703,8 @@ msgid "The untracked files handling mode" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:285 -#, fuzzy msgid "Ignore changes to submodules" -msgstr "Ignore changes in case" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:286 msgid "Create, list, delete or verify a tag object signed with GPG" @@ -29009,14 +26715,12 @@ msgid "Make an unsigned, annotated tag object" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:289 -#, fuzzy msgid "Make a GPG-signed tag" -msgstr "Make a signature" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:290 -#, fuzzy msgid "Remove a tag" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:291 msgid "Verify signature of a tag" @@ -29031,19 +26735,16 @@ msgid "List tags that contain a commit" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:297 -#, fuzzy msgid "Stash away changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:298 -#, fuzzy msgid "List stashes" -msgstr "Lista as chaves" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:299 -#, fuzzy msgid "Show the changes recorded in the stash" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:300 msgid "Apply and remove a single stashed state" @@ -29054,47 +26755,40 @@ msgid "Apply a single stashed state" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:302 -#, fuzzy msgid "Remove all stashed states" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:303 -#, fuzzy msgid "Remove a single stashed state from the stash list" -msgstr "Remove a given entry from the --group list" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:304 -#, fuzzy msgid "Create a stash" -msgstr "Create archive" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:305 msgid "Save a new stash" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:306 -#, fuzzy msgid "Create a new branch from a stash" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:307 -#, fuzzy msgid "Set and read git configuration variables" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:308 -#, fuzzy msgid "Generate patch series to send upstream" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:310 msgid "Generate plain patches without diffstat" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:311 -#, fuzzy msgid "Suppress diff output" -msgstr "Suppress informational output" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:312 msgid "Spend more time to create smaller diffs" @@ -29117,18 +26811,16 @@ msgid "Show number of added/deleted lines in decimal notation" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:317 -#, fuzzy msgid "Output only last line of the stat" -msgstr "Output only first of equal lines" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:318 msgid "Output a condensed summary of extended header information" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:319 -#, fuzzy msgid "Disable rename detection" -msgstr "Don't trust the file modification times" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:320 msgid "Show full blob object names" @@ -29143,24 +26835,20 @@ msgid "Also inspect unmodified files as source for a copy" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:324 -#, fuzzy msgid "Ignore changes in whitespace at EOL" -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:325 -#, fuzzy msgid "Ignore changes in amount of whitespace" -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:326 -#, fuzzy msgid "Ignore whitespace when comparing lines" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:328 -#, fuzzy msgid "Show whole surrounding functions of changes" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:329 msgid "Allow an external diff helper to be executed" @@ -29197,9 +26885,8 @@ msgid "Initialize, update or inspect submodules" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:337 -#, fuzzy msgid "Add a submodule" -msgstr "Add a symbolic tag to a module" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:338 msgid "Show submodule status" @@ -29211,28 +26898,24 @@ msgid "Initialize all submodules" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:340 -#, fuzzy msgid "Update all submodules" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:341 -#, fuzzy msgid "Show commit summary" -msgstr "Print summary" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:342 -#, fuzzy msgid "Run command on each submodule" -msgstr "Run commands from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:343 msgid "Sync submodules' URL with .gitmodules" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:344 -#, fuzzy msgid "Only print error messages" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:346 msgid "Checkout the superproject's commit on a detached HEAD in the submodule" @@ -29268,9 +26951,8 @@ msgid "Also add ignored submodule path" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:353 -#, fuzzy msgid "Remove even with local changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:354 msgid "Use the commit stored in the index" @@ -29281,23 +26963,20 @@ msgid "Compare the commit in the index with submodule HEAD" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:356 -#, fuzzy msgid "Traverse submodules recursively" -msgstr "Descend recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:357 msgid "Show logs with difference each commit introduces" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:358 -#, fuzzy msgid "Remove untracked files from the working tree" -msgstr "Place files or directories under version control" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:359 -#, fuzzy msgid "Force run" -msgstr "Saída forçada" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:360 msgid "Show what would be done and clean files interactively" @@ -29320,46 +26999,40 @@ msgid "Remove ignored files, as well" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:365 -#, fuzzy msgid "Remove only ignored files" -msgstr "Freshen: only changed files" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:366 -#, fuzzy msgid "Show what revision and author last modified each line of a file" -msgstr "Show last revision where each line was modified" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:367 msgid "Show blank SHA-1 for boundary commits" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:368 -#, fuzzy msgid "Do not treat root commits as boundaries" -msgstr "Do not execute remote command" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:369 msgid "Include additional statistics" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:370 -#, fuzzy msgid "Annotate only the given line range" -msgstr "Annotate every line" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:371 msgid "Show long rev" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:372 -#, fuzzy msgid "Show raw timestamp" -msgstr "Show time type" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:373 -#, fuzzy msgid "Use revisions from named file instead of calling rev-list" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:374 msgid "Walk history forward instead of backward" @@ -29370,23 +27043,20 @@ msgid "Show in a format designed for machine consumption" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:376 -#, fuzzy msgid "Show the porcelain format" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:377 -#, fuzzy msgid "Show the result incrementally" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:378 msgid "Instead of working tree, use the contents of the named file" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:379 -#, fuzzy msgid "Specifies the format used to output dates" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:380 msgid "Detect moved or copied lines within a file" @@ -29399,62 +27069,52 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:383 -#, fuzzy msgid "Use the same output mode as git-annotate" -msgstr "Use the portable output format" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:384 -#, fuzzy msgid "Show the filename in the original commit" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:385 msgid "Show the line number in the original commit" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:386 -#, fuzzy msgid "Suppress the author name and timestamp from the output" -msgstr "Allow subkeys that have a timestamp from the future" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:387 msgid "Show the author email instead of author name" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:388 -#, fuzzy msgid "Ignore whitespace changes" -msgstr "Ignore whitespace" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:389 -#, fuzzy msgid "Custom command" -msgstr "Job command" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:1 -#, fuzzy msgid "Comma-separated list of analyses to perform" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:2 -#, fuzzy msgid "Show examples in command line mode" -msgstr "Select entire command line (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:3 -#, fuzzy msgid "Go root directory" -msgstr "Directory" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:4 -#, fuzzy msgid "Print HTML in command-line mode" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:5 -#, fuzzy msgid "HTTP service address" -msgstr "Numerical address" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:6 msgid "httptest.NewServer serves on this address and blocks" @@ -29481,9 +27141,8 @@ msgid "Link identifiers to their declarations" msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:12 -#, fuzzy msgid "Maximum number of full text search results shown" -msgstr "Maximum number of log entries" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:13 msgid "Regular expression matching note markers to show" @@ -29506,9 +27165,8 @@ msgid "Print (exported) source in command-line mode" msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:18 -#, fuzzy msgid "Tab width" -msgstr "Line width" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:19 msgid "Directory containing alternate template files" @@ -29523,52 +27181,44 @@ msgid "Print HTML for named URL" msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:23 -#, fuzzy msgid "Write index to a file" -msgstr "Escreve para o arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:24 msgid "Zip file providing the file system to serve" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:1 -#, fuzzy msgid "Complete go build commands" -msgstr "Compare FILE1 to all operands" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:2 -#, fuzzy msgid "force rebuild" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:3 -#, fuzzy msgid "print the commands but do not run them" -msgstr "Print quoted commands to stderr, do not run" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:4 msgid "number parallel builds (default=#cpus)" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:5 -#, fuzzy msgid "enable data race detection" -msgstr "Delete selection" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:6 -#, fuzzy msgid "print packages being built" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:7 -#, fuzzy msgid "print and preserve work directory" -msgstr "Imprime o diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:8 -#, fuzzy msgid "print the commands" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:9 msgid "c compiler flags" @@ -29599,19 +27249,16 @@ msgid "build tags" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:16 -#, fuzzy msgid "Complete go" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:17 -#, fuzzy msgid "compile packages and dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:18 -#, fuzzy msgid "remove object files" -msgstr "Erase obsolete files" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:19 msgid "" @@ -29620,9 +27267,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:20 -#, fuzzy msgid "print the remove commands it would execute, but not run them" -msgstr "Print quoted commands to stderr, do not run" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:21 msgid "" @@ -29640,100 +27286,83 @@ msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:24 #: /tmp/fish/implicit/share/completions/go.fish:29 -#, fuzzy msgid "prints commands that would be executed" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:25 #: /tmp/fish/implicit/share/completions/go.fish:30 #: /tmp/fish/implicit/share/completions/go.fish:53 -#, fuzzy msgid "prints commands as they are executed" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:26 -#, fuzzy msgid "print Go environment information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:27 -#, fuzzy msgid "run go tool fix on packages" -msgstr "Info on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:28 -#, fuzzy msgid "run gofmt on package sources" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:31 -#, fuzzy msgid "download and install packages and dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:32 -#, fuzzy msgid "stop after downloading the packages; don't install" -msgstr "Disable downloading packages" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:33 msgid "run fix tool on packages before resolving dependencies or building" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:34 -#, fuzzy msgid "update remote packages" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:35 -#, fuzzy msgid "get help on topic" -msgstr "Set prompt command" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:36 #: /tmp/fish/implicit/share/completions/go.fish:48 -#, fuzzy msgid "target tool" -msgstr "Target line" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:37 -#, fuzzy msgid "compile and install packages and dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:38 -#, fuzzy msgid "list packages" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:39 -#, fuzzy msgid "tolerate erroneous packages" -msgstr "Clean source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:40 -#, fuzzy msgid "pass in template for formatting" -msgstr "Specifies line formatting" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:41 -#, fuzzy msgid "print in JSON format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:42 -#, fuzzy msgid "list of build tags" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:43 msgid "compile and run Go program" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:44 -#, fuzzy msgid "test packages" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:45 msgid "compile the test binary to pkg.test but do not run it" @@ -29744,41 +27373,34 @@ msgid "install dependent packages, but don't run tests" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:47 -#, fuzzy msgid "run specified go tool" -msgstr "Repair the corrupted repository" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:49 -#, fuzzy msgid "print the command that would be executed but not execute it" msgstr "" -"Print the command line on the standard error output before executing it" #: /tmp/fish/implicit/share/completions/go.fish:50 -#, fuzzy msgid "print Go version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:51 -#, fuzzy msgid "vet packages" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:52 msgid "print the command that would be executed" msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:1 -#, fuzzy msgid "Write cpu profile to this file" -msgstr "Write top servers to file" +msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:2 #: /tmp/fish/implicit/share/completions/goimports.fish:1 #: /tmp/fish/implicit/share/completions/gorename.fish:1 -#, fuzzy msgid "Display diffs instead of rewriting files" -msgstr "Display date for each line in file" +msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:3 msgid "Report all errors (not just the first 10 on different lines)" @@ -29793,9 +27415,8 @@ msgid "Rewrite rule (e.g., 'a[b:len(a)] -> a[b:]')" msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:6 -#, fuzzy msgid "Simplify code" -msgstr "Specify conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/gofmt.fish:7 #: /tmp/fish/implicit/share/completions/goimports.fish:5 @@ -29803,9 +27424,8 @@ msgid "Write result to (source) file instead of stdout" msgstr "" #: /tmp/fish/implicit/share/completions/goimports.fish:2 -#, fuzzy msgid "Report all errors" -msgstr "Report on all tags" +msgstr "" #: /tmp/fish/implicit/share/completions/goimports.fish:3 msgid "List files whose formatting differs from goimport's" @@ -29836,43 +27456,36 @@ msgid "Identifier to be renamed" msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:5 -#, fuzzy msgid "Show usage message" -msgstr "Replace a log message" +msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:6 msgid "File and byte offset of identifier to be renamed" msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:7 -#, fuzzy msgid "Build tag" -msgstr "Build apt cache" +msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:8 -#, fuzzy msgid "New name for identifier" -msgstr "Accept $ in identifiers" +msgstr "" #: /tmp/fish/implicit/share/completions/gorename.fish:9 -#, fuzzy msgid "Print verbose information" -msgstr "Print verbose info" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:1 -#, fuzzy msgid "Add user to group" -msgstr "Add label to output" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:2 -#, fuzzy msgid "Remove user from group" -msgstr "Remove all entries from the --group list" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:4 -#, fuzzy msgid "Remove the GROUP's password" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/gpasswd.fish:5 msgid "Restrict access to GROUP to its members" @@ -29887,14 +27500,12 @@ msgid "set the list of administrators for GROUP" msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:1 -#, fuzzy msgid "Complete using gpg user ids" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:2 -#, fuzzy msgid "Complete using gpg key ids" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:3 msgid "" @@ -29927,9 +27538,8 @@ msgid "Store only (make a simple RFC1991 packet)" msgstr "Store only (make a simple RFC1991 packet)" #: /tmp/fish/implicit/share/completions/gpg.fish:10 -#, fuzzy msgid "Decrypt specified file or stdin" -msgstr "Criptografa para o id de usuário especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:11 msgid "Assume specified file or stdin is sigfile and verify it" @@ -29982,9 +27592,8 @@ msgstr "List all keys with their fingerprints" #: /tmp/fish/implicit/share/completions/gpg.fish:22 #: /tmp/fish/implicit/share/completions/signify.fish:2 -#, fuzzy msgid "Generate a new key pair" -msgstr "Generate a new key pair" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:23 msgid "Present a menu which enables you to do all key related tasks" @@ -30238,9 +27847,8 @@ msgstr "" "keys" #: /tmp/fish/implicit/share/completions/gpg.fish:81 -#, fuzzy msgid "Specify trust model" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:82 msgid "Select how to display key IDs" @@ -30275,11 +27883,9 @@ msgid "The command line that should be run to view a photo ID" msgstr "O comando para abrir uma fotografia" #: /tmp/fish/implicit/share/completions/gpg.fish:90 -#, fuzzy msgid "" "Sets a list of directories to search for photo viewers and keyserver helpers" msgstr "" -"Sets a list of directories to search for photo viewers and keyserver helpers" #: /tmp/fish/implicit/share/completions/gpg.fish:91 msgid "" @@ -30618,9 +28224,8 @@ msgstr "" "Do not create an internal pool file for quicker generation of random numbers" #: /tmp/fish/implicit/share/completions/gpg.fish:165 -#, fuzzy msgid "Reset verbose level to 0" -msgstr "Reset verbose level to 0" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:166 msgid "Suppress the initial copyright message" @@ -30701,9 +28306,8 @@ msgstr "" "Changes the behaviour of some commands. This is like --dry-run but different" #: /tmp/fish/implicit/share/completions/gpg.fish:181 -#, fuzzy msgid "Display the session key used for one message" -msgstr "Display the session key used for one message" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:182 msgid "Don't use the public key but the specified session key" @@ -30777,62 +28381,52 @@ msgid "Set the list of default preferences to the specified string" msgstr "Define a lista de preferências padrão como a string especificada" #: /tmp/fish/implicit/share/completions/gphoto2.fish:1 -#, fuzzy msgid "Print complete help message on program usage" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:2 -#, fuzzy msgid "Print short message on program usage" -msgstr "Print messages about what the program is doing" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:3 -#, fuzzy msgid "Turn on debugging" -msgstr "Turn of demangling" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:4 -#, fuzzy msgid "Name of file to write debug info to" -msgstr "Use *.inf files to overwrite audio options" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:5 -#, fuzzy msgid "Quiet output (default=verbose)" -msgstr "Select output delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:6 msgid "Hook script to call after downloads, captures, etc." msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:7 -#, fuzzy msgid "Send file to stdout" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:8 -#, fuzzy msgid "Print filesize before data" -msgstr "Print file size, not disk usage" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:9 msgid "List auto-detected cameras" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:10 -#, fuzzy msgid "Show EXIF information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:11 -#, fuzzy msgid "Show info" -msgstr "Mostra tudo" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:12 -#, fuzzy msgid "Show summary" -msgstr "Print summary" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:13 msgid "Show camera driver manual" @@ -30843,76 +28437,64 @@ msgid "About the camera driver manual" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:15 -#, fuzzy msgid "Show storage information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:16 -#, fuzzy msgid "gPhoto shell" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:18 -#, fuzzy msgid "List supported camera models" -msgstr "List trusted keys" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:19 -#, fuzzy msgid "List supported port devices" -msgstr "Print important dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:20 msgid "Display camera/driver abilities" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:21 -#, fuzzy msgid "Specify device port" -msgstr "Specify a dir" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:22 -#, fuzzy msgid "Specify serial transfer speed" -msgstr "Specify sendmail command" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:23 -#, fuzzy msgid "Specify camera model" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:24 msgid "(expert only) Override USB IDs" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:25 -#, fuzzy msgid "List configuration tree" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:26 -#, fuzzy msgid "Dump full configuration tree" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:27 -#, fuzzy msgid "Get configuration value" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:28 msgid "Set configuration value or index in choices" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:29 -#, fuzzy msgid "Set configuration value index in choices" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:30 -#, fuzzy msgid "Set configuration value" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:31 msgid "Wait for event(s) from camera" @@ -30927,18 +28509,16 @@ msgid "Capture a quick preview" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:34 -#, fuzzy msgid "Set bulb exposure time in seconds" -msgstr "Maximum amount of cpu time in seconds" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:35 msgid "Set number of frames to capture (default=infinite)" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:36 -#, fuzzy msgid "Set capture interval in seconds" -msgstr "Minimum interval in seconds" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:37 msgid "Reset capture interval on signal (default=no)" @@ -30953,9 +28533,8 @@ msgid "Capture an image and download it" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:40 -#, fuzzy msgid "Capture a movie" -msgstr "TV capture mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:41 msgid "Capture an audio clip" @@ -30966,39 +28545,32 @@ msgid "Wait for shutter release on the camera and download" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:43 -#, fuzzy msgid "List folders in folder" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:44 -#, fuzzy msgid "List files in folder" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:45 -#, fuzzy msgid "Create a directory" -msgstr "Muda diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:46 -#, fuzzy msgid "Remove a directory" -msgstr "Remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:47 -#, fuzzy msgid "Display number of files" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:48 -#, fuzzy msgid "Get files given in range" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:49 -#, fuzzy msgid "Get all files from folder" -msgstr "Extrair arquivos do arquivo de lista" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:50 msgid "Get thumbnails given in range" @@ -31017,9 +28589,8 @@ msgid "Get all metadata from folder" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:54 -#, fuzzy msgid "Upload metadata for file" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:55 msgid "Get raw data given in range" @@ -31034,14 +28605,12 @@ msgid "Get audio data given in range" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:58 -#, fuzzy msgid "Get all audio data from folder" -msgstr "Play audio from file" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:59 -#, fuzzy msgid "Delete files given in range" -msgstr "Create file with name as given in data" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:60 msgid "Delete all files in folder (--no-recurse by default)" @@ -31052,9 +28621,8 @@ msgid "Upload a file to camera" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:62 -#, fuzzy msgid "Specify a filename or filename pattern" -msgstr "Specify filenames to be filtered" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:63 msgid "Specify camera folder (default=\"/\")" @@ -31069,14 +28637,12 @@ msgid "No recursion (default for deletion)" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:66 -#, fuzzy msgid "Process new files only" -msgstr "Process binary file as text" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:67 -#, fuzzy msgid "Overwrite files without asking" -msgstr "Never overwrite files with same name" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:1 msgid "Print annotated source" @@ -31095,23 +28661,20 @@ msgid "Display summary" msgstr "Display summary" #: /tmp/fish/implicit/share/completions/gprof.fish:5 -#, fuzzy msgid "Search directories for source" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:6 msgid "No annotated source" msgstr "No annotated source" #: /tmp/fish/implicit/share/completions/gprof.fish:7 -#, fuzzy msgid "Print full path of source" -msgstr "Print full path of source" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:8 -#, fuzzy msgid "Print flat profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:9 msgid "No flat profile" @@ -31158,9 +28721,8 @@ msgid "Set demangling style" msgstr "Set demangling style" #: /tmp/fish/implicit/share/completions/gprof.fish:20 -#, fuzzy msgid "Turn of demangling" -msgstr "Turn off FTP globbing" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:21 msgid "Supress static functions" @@ -31171,18 +28733,16 @@ msgid "Ignore symbols not known to be functions" msgstr "Ignore symbols not known to be functions" #: /tmp/fish/implicit/share/completions/gprof.fish:23 -#, fuzzy msgid "Delete arcs from callgraph" -msgstr "Delete arcs from callgraph" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:24 msgid "Line by line profiling" msgstr "Line by line profiling" #: /tmp/fish/implicit/share/completions/gprof.fish:25 -#, fuzzy msgid "Supress output when executed less than specified times" -msgstr "Supress output when executed less than specified times" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:26 msgid "Only propagate times for matching symbols" @@ -31201,37 +28761,32 @@ msgid "Specify debugging options" msgstr "Specify debugging options" #: /tmp/fish/implicit/share/completions/gprof.fish:32 -#, fuzzy msgid "Profile data format" -msgstr "Profile data format" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:33 msgid "Print summary" msgstr "Print summary" #: /tmp/fish/implicit/share/completions/gradle.fish:2 -#, fuzzy msgid "Don't rebuild dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:3 -#, fuzzy msgid "Specify build file" -msgstr "Specify build-dir" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:4 -#, fuzzy msgid "Specify settings file" -msgstr "Specify config file" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:5 msgid "Only relevent project are configured" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:6 -#, fuzzy msgid "Specify console output type" -msgstr "Specify output format" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:7 msgid "Continue task execution after failure" @@ -31242,9 +28797,8 @@ msgid "Set system property of the JVM" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:9 -#, fuzzy msgid "Log in debug mode" -msgstr "Compiler debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:10 msgid "Uses Gradle Daemon to run build" @@ -31255,56 +28809,48 @@ msgid "Uses Gradle Daemon in foreground" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:12 -#, fuzzy msgid "Specify gradle user home directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:13 msgid "Launch Gradle GUI" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:14 -#, fuzzy msgid "Specify an initialization script" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:15 -#, fuzzy msgid "Set log level to info" -msgstr "Set error level" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:16 -#, fuzzy msgid "Include specified build in composite" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:17 msgid "Runs build with all task actions disabled" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:18 -#, fuzzy msgid "Configure number of concurrent workers" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:19 -#, fuzzy msgid "Don't use deamon" -msgstr "Don't use batch mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:20 -#, fuzzy msgid "Don't use network resources" -msgstr "Do not use integrated preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:21 msgid "Set project property for build script" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:22 -#, fuzzy msgid "Specify start directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:23 msgid "Build project in parallel" @@ -31315,9 +28861,8 @@ msgid "Profile build execution time" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:25 -#, fuzzy msgid "Specify project cache directory" -msgstr "Specify local cache dir" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:26 msgid "Only log erros" @@ -31328,14 +28873,12 @@ msgid "Force build script recompiling" msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:28 -#, fuzzy msgid "Refresh state of dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:29 -#, fuzzy msgid "Ignore previously cached dependencies" -msgstr "Correct broken dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:30 msgid "Print out full stacktrace for all exceptions" @@ -31369,44 +28912,37 @@ msgstr "" #: /tmp/fish/implicit/share/completions/rfkill.fish:2 #: /tmp/fish/implicit/share/completions/tmutil.fish:51 #: /tmp/fish/implicit/share/completions/xdg-mime.fish:13 -#, fuzzy msgid "Print version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/gradle.fish:36 msgid "Specify task to be excluded from execution" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:2 -#, fuzzy msgid "Process binary file as text" -msgstr "Process binary file as text" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:5 -#, fuzzy msgid "Print byte offset of matches" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:6 -#, fuzzy msgid "Assume data type for binary files" -msgstr "Assume data type for binary files" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:7 -#, fuzzy msgid "Colour output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:8 #: /tmp/fish/implicit/share/completions/jq.fish:10 -#, fuzzy msgid "Color output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:9 -#, fuzzy msgid "Only print number of matches" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:10 msgid "Action for devices" @@ -31417,168 +28953,138 @@ msgid "Action for directories" msgstr "Action for directories" #: /tmp/fish/implicit/share/completions/grep.fish:12 -#, fuzzy msgid "Pattern is extended regexp" -msgstr "Pattern is extended regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:13 -#, fuzzy msgid "Pattern is a regexp" -msgstr "Pattern is a regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:14 msgid "Read pattern list from file. Skip files whose base name matches list" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:15 -#, fuzzy msgid "Exclude matching directories from recursive searches" -msgstr "Search directories for source" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:16 -#, fuzzy msgid "Pattern is a fixed string" -msgstr "Pattern is a fixed string" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:17 -#, fuzzy msgid "Use patterns from a file" -msgstr "Use pattern from file" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:18 -#, fuzzy msgid "Pattern is basic regex" -msgstr "Pattern is basic regex" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:19 -#, fuzzy msgid "Print filename" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:20 -#, fuzzy msgid "Suppress printing filename" -msgstr "Supress printing filename" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:22 -#, fuzzy msgid "Skip binary files" -msgstr "Skip binary files" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:24 -#, fuzzy msgid "Print first non-matching file" -msgstr "Print first non-matching file" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:25 -#, fuzzy msgid "Print first matching file" -msgstr "Print first matching file" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:26 -#, fuzzy msgid "Stop reading after NUM matches" -msgstr "Stop reading after NUM matches" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:27 -#, fuzzy msgid "Use the mmap system call to read input" -msgstr "Use the mmap system call to read input" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:28 -#, fuzzy msgid "Print line number" -msgstr "Print linenumber" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:29 -#, fuzzy msgid "Show only matching part" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:30 -#, fuzzy msgid "Rename stdin" -msgstr "Rename stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:31 -#, fuzzy msgid "Use line buffering" -msgstr "Use line buffering" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:32 -#, fuzzy msgid "Pattern is a Perl regexp (PCRE) string" -msgstr "Pattern is a regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:33 #: /tmp/fish/implicit/share/completions/grep.fish:34 -#, fuzzy msgid "Do not write anything" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:35 #: /tmp/fish/implicit/share/completions/grep.fish:36 -#, fuzzy msgid "Read files under each directory, recursively" -msgstr "List subdirectory recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:37 -#, fuzzy msgid "Search only files matching PATTERN" -msgstr "Recurse, search file matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:38 -#, fuzzy msgid "Skip files matching PATTERN" -msgstr "Recurse, skip file matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:39 -#, fuzzy msgid "Suppress error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:40 msgid "Ensure first character of actual line content lies on a tab stop" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:41 -#, fuzzy msgid "Treat files as binary" -msgstr "Treat files as binary" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:42 -#, fuzzy msgid "Report Unix-style byte offsets" -msgstr "Report Unix-style byte offsets" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:44 -#, fuzzy msgid "Invert the sense of matching" -msgstr "Invert the sense of matching" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:45 -#, fuzzy msgid "Only whole matching words" -msgstr "Only whole matching words" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:46 -#, fuzzy msgid "Only whole matching lines" -msgstr "Only whole matching lines" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:47 -#, fuzzy msgid "Ignore case (deprecated: use -i instead)" -msgstr "Ignore case differences" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:48 msgid "Treat input as a set of zero-terminated lines" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:49 -#, fuzzy msgid "Output a zero byte after filename" -msgstr "Output a zero byte after filename" +msgstr "" #: /tmp/fish/implicit/share/completions/groupadd.fish:1 msgid "Exit with success status if the specified group already exists" @@ -31590,9 +29096,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/groupadd.fish:3 #: /tmp/fish/implicit/share/completions/useradd.fish:4 -#, fuzzy msgid "Display help message and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/groupadd.fish:4 #: /tmp/fish/implicit/share/completions/useradd.fish:7 @@ -31725,53 +29230,44 @@ msgid "Check if given file is BIOS bootsector" msgstr "" #: /tmp/fish/implicit/share/completions/grub-file.fish:32 -#, fuzzy msgid "Display usage and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:1 -#, fuzzy msgid "Compress GRUB files" -msgstr "Compress file" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:2 -#, fuzzy msgid "Use image and modules under given directory" -msgstr "Read files under each directory" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:3 -#, fuzzy msgid "Install given fonts" -msgstr "Install new package" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:4 -#, fuzzy msgid "Install only given modules and their dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:5 msgid "Embed given file as public key for signature checking" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:6 -#, fuzzy msgid "Use translations under given directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:7 -#, fuzzy msgid "Install only given locales" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:8 -#, fuzzy msgid "Preload specfied modules" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:9 -#, fuzzy msgid "Install given theme" -msgstr "Install new package" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:11 msgid "Make drive also bootable as floppy" @@ -31782,24 +29278,20 @@ msgid "Install GRUB images under DIR/grub" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:13 -#, fuzzy msgid "Set bootloader ID" -msgstr "Set block size" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:14 -#, fuzzy msgid "Choose compression to use for core image" -msgstr "Display the session key used for one message" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:15 -#, fuzzy msgid "Set disk module to use" -msgstr "Select how to display key IDs" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:16 -#, fuzzy msgid "Use given directory as the EFI System Partition root" -msgstr "Use specified key as the key to sign with" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:17 msgid "Install even if problems are detected" @@ -31814,24 +29306,20 @@ msgid "Use given color for label background" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:20 -#, fuzzy msgid "Use given color for label" -msgstr "Print only rcs filename" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:21 -#, fuzzy msgid "Use given file for label" -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:22 -#, fuzzy msgid "Use given directory for PPC Mac install" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:23 -#, fuzzy msgid "Do not install bootsector" -msgstr "Do not load init files" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:24 msgid "Don't update the boot-device/Boot* NVRAM variables" @@ -31842,23 +29330,20 @@ msgid "Don't apply any reed-solomon codes when embedding core.img" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:26 -#, fuzzy msgid "Set product version" -msgstr "Output sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:27 -#, fuzzy msgid "Delete device map if it already exists" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:28 msgid "The installation is removable" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:29 -#, fuzzy msgid "Do not probe for filesystems" -msgstr "Stay in local filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:30 msgid "Install GRUB for given platform" @@ -31869,37 +29354,32 @@ msgid "Print the grunt version. Combine with --verbose for more info" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:1 -#, fuzzy msgid "Print the version information" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:2 -#, fuzzy msgid "Specify a custom schemas directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:3 msgid "Get the value of a key" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:4 -#, fuzzy msgid "Determine if a key is writable" -msgstr "File is writable" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:5 msgid "Determine the valid value range of a key" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:6 -#, fuzzy msgid "Print the description of a key" -msgstr "Output description of mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:7 -#, fuzzy msgid "Set the value of a key" -msgstr "Set the misc debug value to #" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:8 msgid "Reset a key to its default value" @@ -31914,24 +29394,20 @@ msgid "List all installed, non-relocatable schemas" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:11 -#, fuzzy msgid "List all installed, relocatable schemas" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:12 -#, fuzzy msgid "List all keys in a schema" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:13 -#, fuzzy msgid "List all children of a schema" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:14 -#, fuzzy msgid "List keys and values, recursively" -msgstr "Lista subdiretórios recursivamente" +msgstr "" #: /tmp/fish/implicit/share/completions/gunzip.fish:4 #: /tmp/fish/implicit/share/completions/gzip.fish:4 @@ -31950,15 +29426,13 @@ msgstr "Save/restore filename" #: /tmp/fish/implicit/share/completions/gunzip.fish:9 #: /tmp/fish/implicit/share/completions/gzip.fish:9 -#, fuzzy msgid "Recurse directories" -msgstr "Recurse directories" +msgstr "" #: /tmp/fish/implicit/share/completions/gunzip.fish:10 #: /tmp/fish/implicit/share/completions/gzip.fish:10 -#, fuzzy msgid "Suffix" -msgstr "Suffix" +msgstr "" #: /tmp/fish/implicit/share/completions/gunzip.fish:12 #: /tmp/fish/implicit/share/completions/gzip.fish:12 @@ -31970,19 +29444,16 @@ msgid "Display document using only black and white" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:2 -#, fuzzy msgid "Display document without colors" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:3 -#, fuzzy msgid "Display document as usual" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:4 -#, fuzzy msgid "Start ghostscript in safe mode" -msgstr "Standard mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:5 msgid "Do not start ghostscript in safe mode" @@ -32034,23 +29505,20 @@ msgid "The page should not be centered automatically" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:17 -#, fuzzy msgid "Selects the paper size to be used" -msgstr "Selects how passphrases are mangled" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:18 -#, fuzzy msgid "Sets the orientation of the page" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:19 msgid "Selects the scale N, or arbitrary scale f.f" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:20 -#, fuzzy msgid "Selects the scale base N" -msgstr "Select time style" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:21 msgid "Interchange the meaning of the orientations landscape and seascape" @@ -32062,14 +29530,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:23 -#, fuzzy msgid "Use antialiasing" -msgstr "Use fast setting" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:24 -#, fuzzy msgid "Do not use antialiasing" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:25 msgid "Dsc comments are respected" @@ -32092,9 +29558,8 @@ msgid "Use backing pixmap" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:30 -#, fuzzy msgid "Do not use backing pixmap" -msgstr "Do not use gcc wrapper" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:31 msgid "Watch the document file for changes" @@ -32105,9 +29570,8 @@ msgid "Do not watch the document file for changes" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:34 -#, fuzzy msgid "Print a usage message and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:35 msgid "Fit the size of the window to the size of the page" @@ -32118,9 +29582,8 @@ msgid "Do not fit the size of the window to the size of the page" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:37 -#, fuzzy msgid "Set geometry" -msgstr "Set severity" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:38 msgid "Read and use additional resources from FILE (higher priority)" @@ -32147,14 +29610,12 @@ msgid "Start in fullscreen mode (needs support from WM)" msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:44 -#, fuzzy msgid "Presentation mode " -msgstr "Question mode" +msgstr "" #: /tmp/fish/implicit/share/completions/gv.fish:45 -#, fuzzy msgid "Show gv version and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/gzip.fish:14 msgid "Use fast setting" @@ -32165,27 +29626,24 @@ msgid "Use high compression setting" msgstr "Use high compression setting" #: /tmp/fish/implicit/share/completions/helm.fish:1 -#, fuzzy msgid "Enable verbose output" -msgstr "Mostra saída com dired" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:2 msgid "Location of your Helm config" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:3 -#, fuzzy msgid "Address of tiller" -msgstr "Erro de fronteira de endereço (Falha de segmentação)" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:4 msgid "Name of the kubeconfig context to use" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:5 -#, fuzzy msgid "More information about a command" -msgstr "Display information about a local or remote item" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:6 msgid "The named Helm starter scaffold" @@ -32209,9 +29667,8 @@ msgid "Prevent hooks from running during deletion" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:10 -#, fuzzy msgid "Remove the release from the store" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:11 #: /tmp/fish/implicit/share/completions/helm.fish:13 @@ -32224,9 +29681,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:12 #: /tmp/fish/implicit/share/completions/helm.fish:14 -#, fuzzy msgid "Verify the packages against signatures" -msgstr "Verificar a integridade do pacote" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:15 #: /tmp/fish/implicit/share/completions/helm.fish:32 @@ -32252,52 +29708,45 @@ msgid "Directory into which the chart is expanded" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:21 -#, fuzzy msgid "Verify the package against its signature" -msgstr "Verificar a integridade do pacote" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:22 #: /tmp/fish/implicit/share/completions/helm.fish:35 #: /tmp/fish/implicit/share/completions/helm.fish:47 #: /tmp/fish/implicit/share/completions/helm.fish:87 -#, fuzzy msgid "Chart version" -msgstr "Ordena por versão" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:24 #: /tmp/fish/implicit/share/completions/helm.fish:68 #: /tmp/fish/implicit/share/completions/helm.fish:76 -#, fuzzy msgid "Revision" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:25 msgid "Dump all (computed) values" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:27 -#, fuzzy msgid "Maximum number of revision to include in history" -msgstr "Maximum number of open file descriptors" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:28 msgid "Use the canary tiller image" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:29 -#, fuzzy msgid "Do not install tiller" -msgstr "Do not load init files" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:30 -#, fuzzy msgid "Do not install local or remote" -msgstr "Display information about a local or remote item" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:31 -#, fuzzy msgid "Override tiller image" -msgstr "Override framerate" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:33 #: /tmp/fish/implicit/share/completions/helm.fish:38 @@ -32309,25 +29758,21 @@ msgid "Verify the provenance data for this chart" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:37 -#, fuzzy msgid "Simulate an install" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:39 -#, fuzzy msgid "Release name" -msgstr "Set volume name" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:40 -#, fuzzy msgid "Specify template used to name the release" -msgstr "Specify commit message" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:41 #: /tmp/fish/implicit/share/completions/helm.fish:82 -#, fuzzy msgid "Namespace" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:42 msgid "Prevent hooks from running during install" @@ -32339,83 +29784,69 @@ msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:44 #: /tmp/fish/implicit/share/completions/helm.fish:84 -#, fuzzy msgid "Set values on the command line" -msgstr "Obtém ou altera o buffer da linha de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:45 #: /tmp/fish/implicit/share/completions/helm.fish:85 -#, fuzzy msgid "Specify values in a YAML file" -msgstr "Specify a config file" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:46 -#, fuzzy msgid "Verify the package before installing it" -msgstr "Verificar a integridade do pacote" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:48 -#, fuzzy msgid "Fail on lint warnings" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:49 -#, fuzzy msgid "Show all releases" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:50 -#, fuzzy msgid "Sort by release date" -msgstr "Ordena por tamanho" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:51 -#, fuzzy msgid "Show deleted releases" -msgstr "Show upgraded packages" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:52 -#, fuzzy msgid "Show releases that are currently being deleted" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:53 -#, fuzzy msgid "Show deployed releases" -msgstr "Show upgraded packages" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:54 -#, fuzzy msgid "Show failed releases" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:55 -#, fuzzy msgid "Maximum number of releases to fetch" -msgstr "Maximum number of nested blocks reached." +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:56 msgid "Next release name in the list" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:57 -#, fuzzy msgid "Reverse the sort order" -msgstr "Inverte a ordem" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:58 -#, fuzzy msgid "Output short listing format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:59 msgid "Name of the key to use when signing" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:61 -#, fuzzy msgid "Save packaged chart to local chart repository" -msgstr "Move packages to local tree" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:62 msgid "Use a PGP private key to sign this package" @@ -32426,19 +29857,16 @@ msgid "Raise error if repo is already registered" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:64 -#, fuzzy msgid "Merge the generated index into the given index" -msgstr "Search the keyserver for the given names" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:65 -#, fuzzy msgid "URL of chart repository" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:66 -#, fuzzy msgid "Repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:69 msgid "Simulate a rollback" @@ -32449,14 +29877,12 @@ msgid "Prevent hooks from running during rollback" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:71 -#, fuzzy msgid "Use regular expressions for searching" -msgstr "Use high compression setting" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:72 -#, fuzzy msgid "Show the long listing" -msgstr "Show the time" +msgstr "" # Notas: # Adicionar nota @@ -32465,18 +29891,16 @@ msgstr "Show the time" # proc.cpp:1279 # proc.cpp:1305 #: /tmp/fish/implicit/share/completions/helm.fish:73 -#, fuzzy msgid "Address to listen on" -msgstr "Ponteiro de lista de processo" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:74 msgid "Path from which to serve charts" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:79 -#, fuzzy msgid "Simulate an upgrade" -msgstr "Distro upgrade" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:80 msgid "Run an install if the release don't exists" @@ -32491,14 +29915,12 @@ msgid "Verify the provenance of the chart before upgrading" msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:89 -#, fuzzy msgid "Show the client version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:90 -#, fuzzy msgid "Show the server version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:1 #: /tmp/fish/implicit/share/completions/help.fish:68 @@ -32506,136 +29928,113 @@ msgid "Autosuggestions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:2 -#, fuzzy msgid "Builtin commands" -msgstr "Process command" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:3 msgid "Cartesian Products" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:4 -#, fuzzy msgid "Setting syntax highlighting colors" -msgstr "Help on setting syntax highlighting colors" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:5 msgid "Combining different expansions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:6 -#, fuzzy msgid "How tab-completion works" -msgstr "Help on how tab-completion works" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:7 -#, fuzzy msgid "Useful functions for writing completions" -msgstr "Use function keys for commands" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:8 -#, fuzzy msgid "Writing your own completions" -msgstr "Description of this completions" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:9 -#, fuzzy msgid "Where to put completions" -msgstr "Description of this completions" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:10 msgid "Debugging fish scripts" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:12 -#, fuzzy msgid "Command line editor" -msgstr "Command to run" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:13 -#, fuzzy msgid "Emacs mode commands" -msgstr "Finaliza um bloco de comandos" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:14 -#, fuzzy msgid "Escaping characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:15 -#, fuzzy msgid "Event handlers" -msgstr "bloco gerenciador de evento" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:16 #: /tmp/fish/implicit/share/completions/help.fish:25 -#, fuzzy msgid "Parameter expansion (Globbing)" -msgstr "Help on parameter expansion (Globbing)" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:17 -#, fuzzy msgid "Brace expansion {a,b,c}" -msgstr "Help on brace expansion {a,b,c}" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:18 -#, fuzzy msgid "Command substitution" -msgstr "na substituição de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:19 -#, fuzzy msgid "Command substitution (SUBCOMMAND)" -msgstr "Help on command substitution (SUBCOMMAND)" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:20 -#, fuzzy msgid "Home directory expansion ~USER" -msgstr "Help on home directory expansion ~USER" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:21 -#, fuzzy msgid "Index range expansion" -msgstr "Ignore changes due to tab expansion" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:22 -#, fuzzy msgid "Process expansion %JOB" -msgstr "Help on process expansion %JOB" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:24 -#, fuzzy msgid "Wildcard expansion *.*" -msgstr "Help on wildcard expansion *.*" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:26 -#, fuzzy msgid "Configurable greeting" -msgstr "Compile source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:27 msgid "Help on how to reuse previously entered commands" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:28 -#, fuzzy msgid "Searchable history" -msgstr "Show package info" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:29 -#, fuzzy msgid "Shell variable and function names" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:30 -#, fuzzy msgid "Initialization files" -msgstr "Name directory for working files" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:31 -#, fuzzy msgid "Introduction" -msgstr "Instrução ilegal" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:32 msgid "Common issues with fish" @@ -32650,9 +30049,8 @@ msgid "Copy and paste (Kill Ring)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:35 -#, fuzzy msgid "Further help and development" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:36 msgid "Multiline editing" @@ -32667,136 +30065,113 @@ msgid "Piping" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:39 -#, fuzzy msgid "Programmable prompt" -msgstr "Verbose prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:40 msgid "Quotes" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:41 -#, fuzzy msgid "Input/Output (IO) redirection" -msgstr "Redireção inválida de entrada/saída" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:42 -#, fuzzy msgid "Shared bindings" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:43 msgid "Introduction to the fish syntax" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:44 -#, fuzzy msgid "Background jobs" -msgstr "Última tarefa em segundo plano" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:45 -#, fuzzy msgid "Conditional execution of code and flow control" -msgstr "Executa condicionalmente um bloco de comandos" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:46 #: /tmp/fish/implicit/share/completions/help.fish:74 -#, fuzzy msgid "Functions" -msgstr "Function" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:47 -#, fuzzy msgid "Autoloading functions" -msgstr "função" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:48 msgid "Defining aliases" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:49 -#, fuzzy msgid "Job control" -msgstr "Controle de tarefa" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:50 -#, fuzzy msgid "Some common words" -msgstr "Fim de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:51 -#, fuzzy msgid "Programmable title" -msgstr "Program section" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:52 -#, fuzzy msgid "Shell variables" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:53 msgid "Arrays" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:54 -#, fuzzy msgid "Variables for changing highlighting colors" -msgstr "Help on setting syntax highlighting colors" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:55 -#, fuzzy msgid "Exporting variables" -msgstr "Export variable to subprocess" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:56 -#, fuzzy msgid "Variable scope for functions" -msgstr "Erase function" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:57 -#, fuzzy msgid "Locale variables" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:58 -#, fuzzy msgid "Variable scope" -msgstr "Variável" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:59 -#, fuzzy msgid "Special variables" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:60 -#, fuzzy msgid "The status variable" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:61 -#, fuzzy msgid "More on universal variables" -msgstr "Help on environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:62 -#, fuzzy msgid "Vi mode commands" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:63 -#, fuzzy msgid "Command mode" -msgstr "Command" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:64 -#, fuzzy msgid "Insert mode" -msgstr "Inserir cabeçalho" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:65 -#, fuzzy msgid "Visual mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:66 msgid "Tutorial" @@ -32811,23 +30186,20 @@ msgid "Combiners (And, Or, Not)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:70 -#, fuzzy msgid "Command Substitutions" -msgstr "na substituição de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:71 msgid "Conditionals (If, Else, Switch)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:72 -#, fuzzy msgid "Exit Status" -msgstr "Nega estado de saída da tarefa" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:73 -#, fuzzy msgid "Exports (Shell Variables)" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:75 msgid "Getting Help" @@ -32838,34 +30210,28 @@ msgid "Learning fish" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:77 -#, fuzzy msgid "Lists" -msgstr "Edit tag" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:78 -#, fuzzy msgid "Loops" -msgstr "Loop script" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:79 -#, fuzzy msgid "Ready for more?" -msgstr "Read only" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:81 -#, fuzzy msgid "Pipes and Redirections" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:82 -#, fuzzy msgid "Prompt" -msgstr "Prompt string" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:83 -#, fuzzy msgid "Running Commands" -msgstr "Fim de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:84 msgid "Separating Commands (Semicolon)" @@ -32876,24 +30242,20 @@ msgid "Startup (Where's .bashrc?)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:86 -#, fuzzy msgid "Syntax Highlighting" -msgstr "No search highlighting" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:87 -#, fuzzy msgid "Tab Completions" -msgstr "Remove property" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:88 -#, fuzzy msgid "Universal Variables" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:89 -#, fuzzy msgid "Variables" -msgstr "Variável" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:90 msgid "Why fish?" @@ -32904,9 +30266,8 @@ msgid "Wildcards" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:1 -#, fuzzy msgid "list installed addons" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:2 msgid "manage apps (create, destroy)" @@ -32925,9 +30286,8 @@ msgid "manage custom domains" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:6 -#, fuzzy msgid "display logs for an app" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:7 msgid "manage dynos (dynos, workers)" @@ -32967,9 +30327,8 @@ msgid "list commands and display help" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:16 -#, fuzzy msgid "manage authentication keys" -msgstr "Don't cache auth tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:18 msgid "manage maintenance mode for an app" @@ -32992,9 +30351,8 @@ msgid "manage plugins to the heroku gem" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:23 -#, fuzzy msgid "list available regions" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:24 msgid "manage the stack for an app" @@ -33005,14 +30363,12 @@ msgid "check status of heroku platform" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:26 -#, fuzzy msgid "update the heroku client" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:27 -#, fuzzy msgid "display version" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:28 msgid "" @@ -33033,28 +30389,24 @@ msgid "open an addon's documentation in your browser" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:32 -#, fuzzy msgid "downgrade an existing addon" -msgstr "Atualizar um pacote existente" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:33 -#, fuzzy msgid "list all available addons" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:34 msgid "open an addon's dashboard in your browser" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:35 -#, fuzzy msgid "uninstall one or more addons" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:36 -#, fuzzy msgid "upgrade an existing addon" -msgstr "Atualizar um pacote existente" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:37 msgid "the org to list the apps for" @@ -33077,9 +30429,8 @@ msgid " permanently destroy an app (--app APP)" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:42 -#, fuzzy msgid "show detailed app information" -msgstr "Show apropos information" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:43 msgid " add yourself to an organization app (--app APP)" @@ -33110,18 +30461,16 @@ msgid "log in with your heroku credentials" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:50 -#, fuzzy msgid "clear local authentication credentials" -msgstr "Don't cache auth tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:51 msgid "display your api token" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:52 -#, fuzzy msgid "display your heroku email address" -msgstr "File to grab servers" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:53 msgid "output config vars in shell format" @@ -33129,9 +30478,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:54 #: /tmp/fish/implicit/share/completions/heroku.fish:55 -#, fuzzy msgid "display a config value for an app" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:56 #: /tmp/fish/implicit/share/completions/heroku.fish:57 @@ -33140,9 +30488,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:58 #: /tmp/fish/implicit/share/completions/heroku.fish:59 -#, fuzzy msgid "unset one or more config vars" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:60 msgid "add a custom domain to an app" @@ -33158,18 +30505,16 @@ msgid "remove a custom domain from an app" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:64 -#, fuzzy msgid "the number of lines to display" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:65 msgid "only display logs from the given process" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:66 -#, fuzzy msgid "only display logs from the given source" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:67 msgid "continually stream logs" @@ -33184,29 +30529,24 @@ msgid "cancel an in-progress backup or restore (default newest)" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:70 -#, fuzzy msgid "capture a new backup" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:71 -#, fuzzy msgid "delete a backup" -msgstr "Delete from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:72 -#, fuzzy msgid "downloads database backup" -msgstr "Download and extract a source" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:73 -#, fuzzy msgid "get information about a specific backup" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:74 -#, fuzzy msgid "restore a backup (default latest) to a database" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:75 msgid "schedule daily backups for given database" @@ -33250,9 +30590,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:88 #: /tmp/fish/implicit/share/completions/heroku.fish:89 -#, fuzzy msgid "view detailed information for a release" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:90 #: /tmp/fish/implicit/share/completions/heroku.fish:91 @@ -33260,9 +30599,8 @@ msgid "roll back to an older release" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:92 -#, fuzzy msgid "specify dyno size" -msgstr "Specify config file" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:93 msgid "open a remote console session (with optional COMMAND)" @@ -33293,43 +30631,36 @@ msgid "repository root directory or name of overlay bundle file" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:2 -#, fuzzy msgid "change working directory" -msgstr "Muda diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:3 msgid "do not prompt, automatically pick the first choice for all prompts" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:4 -#, fuzzy msgid "suppress output" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:5 -#, fuzzy msgid "enable additional output" -msgstr "Mostra saída com dired" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:6 -#, fuzzy msgid "set/override config option" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:7 -#, fuzzy msgid "enable debugging output" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:8 -#, fuzzy msgid "start debugger" -msgstr "Start debugger on error" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:9 -#, fuzzy msgid "set the charset encoding" -msgstr "Force encoding" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:10 msgid "set the charset encoding mode" @@ -33340,14 +30671,12 @@ msgid "always print a traceback on exception" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:12 -#, fuzzy msgid "time how long the command takes" -msgstr "Obtém ou altera o buffer da linha de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:13 -#, fuzzy msgid "print command execution profile" -msgstr "Select an option profile" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:16 msgid "consider hidden changesets" @@ -33384,9 +30713,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:453 #: /tmp/fish/implicit/share/completions/hg.fish:460 #: /tmp/fish/implicit/share/completions/hg.fish:495 -#, fuzzy msgid "include names matching the given patterns" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:20 #: /tmp/fish/implicit/share/completions/hg.fish:26 @@ -33411,9 +30739,8 @@ msgstr "Insert modules matching the given wildcard" #: /tmp/fish/implicit/share/completions/hg.fish:454 #: /tmp/fish/implicit/share/completions/hg.fish:461 #: /tmp/fish/implicit/share/completions/hg.fish:496 -#, fuzzy msgid "exclude names matching the given patterns" -msgstr "List all modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:21 #: /tmp/fish/implicit/share/completions/hg.fish:48 @@ -33423,9 +30750,8 @@ msgstr "List all modules matching the given wildcard" #: /tmp/fish/implicit/share/completions/hg.fish:287 #: /tmp/fish/implicit/share/completions/hg.fish:430 #: /tmp/fish/implicit/share/completions/hg.fish:497 -#, fuzzy msgid "recurse into subrepositories" -msgstr "Recurse into subdir" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:22 #: /tmp/fish/implicit/share/completions/hg.fish:27 @@ -33487,9 +30813,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:518 #: /tmp/fish/implicit/share/completions/hg.fish:523 #: /tmp/fish/implicit/share/completions/hg.fish:524 -#, fuzzy msgid "operate on patch repository" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:24 #: /tmp/fish/implicit/share/completions/hg.fish:213 @@ -33497,23 +30822,20 @@ msgid "guess renamed files by similarity (0<=s<=100)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:29 -#, fuzzy msgid "annotate the specified revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:30 -#, fuzzy msgid "don't follow copies and renames" -msgstr "Include only the following names" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:31 #: /tmp/fish/implicit/share/completions/hg.fish:128 #: /tmp/fish/implicit/share/completions/hg.fish:145 #: /tmp/fish/implicit/share/completions/hg.fish:165 #: /tmp/fish/implicit/share/completions/hg.fish:328 -#, fuzzy msgid "treat all files as text" -msgstr "Treat all files as text" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:32 #: /tmp/fish/implicit/share/completions/hg.fish:171 @@ -33521,9 +30843,8 @@ msgid "list the author (long with -v)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:33 -#, fuzzy msgid "list the filename" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:34 #: /tmp/fish/implicit/share/completions/hg.fish:172 @@ -33531,14 +30852,12 @@ msgid "list the date (short with -q)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:35 -#, fuzzy msgid "list the revision number (default)" -msgstr "Edit the long comment by default" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:36 -#, fuzzy msgid "list the changeset" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:37 msgid "show line number at the first appearance" @@ -33549,60 +30868,52 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:333 #: /tmp/fish/implicit/share/completions/hg.fish:396 #: /tmp/fish/implicit/share/completions/hg.fish:431 -#, fuzzy msgid "ignore white space when comparing lines" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:39 #: /tmp/fish/implicit/share/completions/hg.fish:134 -#, fuzzy msgid "changes in the amount of white space" -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:40 #: /tmp/fish/implicit/share/completions/hg.fish:135 #: /tmp/fish/implicit/share/completions/hg.fish:335 #: /tmp/fish/implicit/share/completions/hg.fish:398 #: /tmp/fish/implicit/share/completions/hg.fish:433 -#, fuzzy msgid "ignore changes whose lines are all blank" -msgstr "Ignore changes whose lines are all blank" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:44 msgid "do not pass files through decoders" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:45 -#, fuzzy msgid "directory prefix for files in archive" -msgstr "Arquivo inicial" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:46 -#, fuzzy msgid "revision to distribute" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:47 -#, fuzzy msgid "type of distribution to create" -msgstr "Type of L1 instruction cache" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:52 msgid "merge with old dirstate parent after backout" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:53 -#, fuzzy msgid "revision to backout" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:54 #: /tmp/fish/implicit/share/completions/hg.fish:160 #: /tmp/fish/implicit/share/completions/hg.fish:269 #: /tmp/fish/implicit/share/completions/hg.fish:452 -#, fuzzy msgid "specify merge tool" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:57 #: /tmp/fish/implicit/share/completions/hg.fish:112 @@ -33612,9 +30923,8 @@ msgstr "Specify trust model" #: /tmp/fish/implicit/share/completions/hg.fish:394 #: /tmp/fish/implicit/share/completions/hg.fish:408 #: /tmp/fish/implicit/share/completions/hg.fish:426 -#, fuzzy msgid "use text as commit message" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:58 #: /tmp/fish/implicit/share/completions/hg.fish:113 @@ -33624,9 +30934,8 @@ msgstr "Read commit message from file" #: /tmp/fish/implicit/share/completions/hg.fish:395 #: /tmp/fish/implicit/share/completions/hg.fish:409 #: /tmp/fish/implicit/share/completions/hg.fish:427 -#, fuzzy msgid "read commit message from file" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:59 #: /tmp/fish/implicit/share/completions/hg.fish:114 @@ -33634,9 +30943,8 @@ msgstr "Read commit message from file" #: /tmp/fish/implicit/share/completions/hg.fish:211 #: /tmp/fish/implicit/share/completions/hg.fish:428 #: /tmp/fish/implicit/share/completions/hg.fish:513 -#, fuzzy msgid "record the specified date as commit date" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:60 #: /tmp/fish/implicit/share/completions/hg.fish:115 @@ -33644,9 +30952,8 @@ msgstr "Help for the specified command" #: /tmp/fish/implicit/share/completions/hg.fish:212 #: /tmp/fish/implicit/share/completions/hg.fish:429 #: /tmp/fish/implicit/share/completions/hg.fish:514 -#, fuzzy msgid "record the specified user as committer" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:62 msgid "reset bisect state" @@ -33657,9 +30964,8 @@ msgid "mark changeset good" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:64 -#, fuzzy msgid "mark changeset bad" -msgstr "Make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:65 msgid "skip testing changeset" @@ -33674,9 +30980,8 @@ msgid "use command to check changeset state" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:68 -#, fuzzy msgid "do not update to target" -msgstr "Do not upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:70 #: /tmp/fish/implicit/share/completions/ifdown.fish:2 @@ -33687,9 +30992,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:71 #: /tmp/fish/implicit/share/completions/hg.fish:126 #: /tmp/fish/implicit/share/completions/hg.fish:522 -#, fuzzy msgid "revision" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:72 msgid "delete a given bookmark" @@ -33721,23 +31025,20 @@ msgid "run even when the destination is unrelated" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:82 -#, fuzzy msgid "a changeset intended to be added to the destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:83 msgid "a specific branch you would like to bundle" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:84 -#, fuzzy msgid "a base changeset assumed to be available at the destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:85 -#, fuzzy msgid "bundle all changesets in the repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:86 msgid "bundle compression type to use (default: bzip2)" @@ -33752,9 +31053,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:305 #: /tmp/fish/implicit/share/completions/hg.fish:314 #: /tmp/fish/implicit/share/completions/hg.fish:324 -#, fuzzy msgid "specify ssh command to use" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:88 #: /tmp/fish/implicit/share/completions/hg.fish:104 @@ -33765,9 +31065,8 @@ msgstr "Pass command to shell" #: /tmp/fish/implicit/share/completions/hg.fish:306 #: /tmp/fish/implicit/share/completions/hg.fish:315 #: /tmp/fish/implicit/share/completions/hg.fish:325 -#, fuzzy msgid "specify hg command to run on the remote side" -msgstr "Specify root directory for rpm operations" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:89 msgid "do not verify server certificate (ignoring web.cacerts" @@ -33775,37 +31074,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:91 #: /tmp/fish/implicit/share/completions/hg.fish:142 -#, fuzzy msgid "print output to file with formatted name" -msgstr "Redirecionar saída para arquivo se o arquivo não existe" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:92 -#, fuzzy msgid "print the given revision" -msgstr "Print only given revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:93 msgid "apply any matching decode filter" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:97 -#, fuzzy msgid "the clone will include an empty working copy (only a repository)" -msgstr "Check out a working copy from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:98 msgid "revision, tag or branch to check out" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:99 -#, fuzzy msgid "include the specified changeset" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:100 -#, fuzzy msgid "clone only the specified branch" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:101 #: /tmp/fish/implicit/share/completions/hg.fish:320 @@ -33839,20 +31133,17 @@ msgid "mark a branch as closed, hiding it from the branch list" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:108 -#, fuzzy msgid "amend the parent of the working directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:109 #: /tmp/fish/implicit/share/completions/hg.fish:423 -#, fuzzy msgid "use the secret phase for committing" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:118 -#, fuzzy msgid "untrusted configuration options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:120 msgid "record a copy that has already occurred" @@ -33864,9 +31155,8 @@ msgid "forcibly copy over an existing managed file" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:127 -#, fuzzy msgid "change made by revision" -msgstr "Manual sections" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:129 #: /tmp/fish/implicit/share/completions/hg.fish:146 @@ -33878,9 +31168,8 @@ msgstr "Manual sections" #: /tmp/fish/implicit/share/completions/hg.fish:357 #: /tmp/fish/implicit/share/completions/hg.fish:387 #: /tmp/fish/implicit/share/completions/hg.fish:400 -#, fuzzy msgid "use git extended diff format" -msgstr "Use context diff format" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:130 #: /tmp/fish/implicit/share/completions/hg.fish:147 @@ -33890,9 +31179,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:131 #: /tmp/fish/implicit/share/completions/hg.fish:331 -#, fuzzy msgid "show which function each change is in" -msgstr "Identify the C function each change is in" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:132 #: /tmp/fish/implicit/share/completions/hg.fish:332 @@ -33901,9 +31189,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:136 #: /tmp/fish/implicit/share/completions/hg.fish:336 -#, fuzzy msgid "number of lines of context to show" -msgstr "Print NUM lines of context" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:137 #: /tmp/fish/implicit/share/completions/hg.fish:225 @@ -33918,14 +31205,12 @@ msgid "against the second parent" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:144 -#, fuzzy msgid "revisions to export" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:152 -#, fuzzy msgid "revisions to graft" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:153 msgid "resume interrupted graft" @@ -33933,34 +31218,28 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:154 #: /tmp/fish/implicit/share/completions/hg.fish:204 -#, fuzzy msgid "invoke editor on commit messages" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:155 -#, fuzzy msgid "append graft info to log message" -msgstr "Specify email address" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:156 -#, fuzzy msgid "the current date as commit date" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:157 -#, fuzzy msgid "the current user as committer" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:163 -#, fuzzy msgid "end fields with NUL" -msgstr "tamanho de campo inválido" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:164 -#, fuzzy msgid "print all revisions that match" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:166 #: /tmp/fish/implicit/share/completions/hg.fish:244 @@ -33968,18 +31247,16 @@ msgid "follow changeset history, or file history across copies and renames" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:167 -#, fuzzy msgid "ignore case when matching" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:168 msgid "print only filenames and revisions that match" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:169 -#, fuzzy msgid "print matching line numbers" -msgstr "Print linenumber" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:170 msgid "only search files changed within revision range" @@ -34002,38 +31279,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:259 #: /tmp/fish/implicit/share/completions/hg.fish:282 #: /tmp/fish/implicit/share/completions/hg.fish:290 -#, fuzzy msgid "display using template map file" -msgstr "Display all matches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:180 #: /tmp/fish/implicit/share/completions/hg.fish:228 #: /tmp/fish/implicit/share/completions/hg.fish:260 #: /tmp/fish/implicit/share/completions/hg.fish:283 #: /tmp/fish/implicit/share/completions/hg.fish:291 -#, fuzzy msgid "display with template" -msgstr "Display all matches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:182 -#, fuzzy msgid "only help for extensions" -msgstr "Disable all GNU extensions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:183 -#, fuzzy msgid "show only help for commands" -msgstr "Use function keys for commands" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:184 -#, fuzzy msgid "show topics matching keyword" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:185 -#, fuzzy msgid "read history edits from the specified file" -msgstr "Lê entrada de usuário a partir do descritor de arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:186 msgid "continue an edit already in progress" @@ -34048,63 +31319,52 @@ msgid "abort an edit in progress" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:189 -#, fuzzy msgid "changesets not found in destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:190 -#, fuzzy msgid "force outgoing even for unrelated repositories" -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:191 -#, fuzzy msgid "first revision to be edited" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:193 -#, fuzzy msgid "identify the specified revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:194 -#, fuzzy msgid "show local revision number" -msgstr "Show record number" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:195 -#, fuzzy msgid "show global revision id" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:196 -#, fuzzy msgid "show branch" -msgstr "Show hierarchy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:197 -#, fuzzy msgid "show tags" -msgstr "Show threads" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:198 msgid "show bookmarks" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:203 -#, fuzzy msgid "directory strip option for patch" -msgstr "Prefix to strip on patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:205 -#, fuzzy msgid "don't commit, just update the working directory" -msgstr "Imprime o diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:206 -#, fuzzy msgid "apply patch without touching the working directory" -msgstr "Record an inverse patch without changing the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:207 msgid "apply patch to the nodes from which it was generated" @@ -34124,9 +31384,8 @@ msgid "show newest record first" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:217 -#, fuzzy msgid "file to store the bundles into" -msgstr "Edit the patch bundle description" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:218 msgid "a remote changeset intended to be added" @@ -34145,35 +31404,30 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:221 #: /tmp/fish/implicit/share/completions/hg.fish:253 #: /tmp/fish/implicit/share/completions/hg.fish:276 -#, fuzzy msgid "show patch" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:223 #: /tmp/fish/implicit/share/completions/hg.fish:255 #: /tmp/fish/implicit/share/completions/hg.fish:278 -#, fuzzy msgid "limit number of changes displayed" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:224 #: /tmp/fish/implicit/share/completions/hg.fish:256 #: /tmp/fish/implicit/share/completions/hg.fish:279 -#, fuzzy msgid "do not show merges" -msgstr "Do not show flags" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:226 #: /tmp/fish/implicit/share/completions/hg.fish:258 #: /tmp/fish/implicit/share/completions/hg.fish:281 -#, fuzzy msgid "show the revision DAG" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:238 -#, fuzzy msgid "search the repository as it is in REV" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:239 #: /tmp/fish/implicit/share/completions/hg.fish:492 @@ -34181,61 +31435,52 @@ msgid "end filenames with NUL, for use with xargs" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:240 -#, fuzzy msgid "print complete paths from the filesystem root" -msgstr "Update only the database, not the filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:245 -#, fuzzy msgid "show revisions matching date spec" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:246 -#, fuzzy msgid "show copied files" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:247 msgid "do case-insensitive search for a given text" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:248 -#, fuzzy msgid "show the specified revision or range" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:249 msgid "include revisions where files were removed" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:250 -#, fuzzy msgid "revisions committed by user" -msgstr "Histórico de funções executadas pelo usuário" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:251 -#, fuzzy msgid "show changesets within the given named branch" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:252 msgid "do not display revision or any of its ancestors" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:264 -#, fuzzy msgid "revision to display" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:265 -#, fuzzy msgid "list files from all revisions" -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:267 -#, fuzzy msgid "revision to merge" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:268 msgid "review revisions to merge (no merge is performed)" @@ -34243,9 +31488,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:272 #: /tmp/fish/implicit/share/completions/hg.fish:310 -#, fuzzy msgid "a changeset intended to be included in the destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:275 #: /tmp/fish/implicit/share/completions/hg.fish:312 @@ -34253,9 +31497,8 @@ msgid "a specific branch you would like to push" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:289 -#, fuzzy msgid "show parents of the specified revision" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:294 msgid "set changeset phase to public" @@ -34274,9 +31517,8 @@ msgid "allow to move boundary backward" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:298 -#, fuzzy msgid "target revision" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:300 msgid "update to new branch head if changesets were pulled" @@ -34295,9 +31537,8 @@ msgid "bookmark to pull" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:309 -#, fuzzy msgid "force push" -msgstr "Force yes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:311 msgid "bookmark to push" @@ -34309,9 +31550,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:318 #: /tmp/fish/implicit/share/completions/hg.fish:418 -#, fuzzy msgid "show only the preceding applied patch" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:319 #: /tmp/fish/implicit/share/completions/hg.fish:367 @@ -34319,45 +31559,38 @@ msgstr "Show only matching part" #: /tmp/fish/implicit/share/completions/hg.fish:416 #: /tmp/fish/implicit/share/completions/hg.fish:417 #: /tmp/fish/implicit/share/completions/hg.fish:419 -#, fuzzy msgid "print first line of patch header" -msgstr "Print line of headings" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:321 -#, fuzzy msgid "do not update the new working directories" -msgstr "Imprime o diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:323 -#, fuzzy msgid "location of source patch repository" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:327 -#, fuzzy msgid "keep patch file" -msgstr "Archive file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:334 #: /tmp/fish/implicit/share/completions/hg.fish:397 #: /tmp/fish/implicit/share/completions/hg.fish:432 -#, fuzzy msgid "ignore changes in the amount of white space" -msgstr "Ignore changes in the amount of white space" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:340 msgid "finish all applied changesets" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:341 -#, fuzzy msgid "edit patch header" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:342 -#, fuzzy msgid "keep folded patch files" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:345 #: /tmp/fish/implicit/share/completions/hg.fish:369 @@ -34366,58 +31599,50 @@ msgid "tolerate non-conflicting local changes" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:346 -#, fuzzy msgid "overwrite any local changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:347 #: /tmp/fish/implicit/share/completions/hg.fish:371 #: /tmp/fish/implicit/share/completions/hg.fish:379 #: /tmp/fish/implicit/share/completions/hg.fish:459 -#, fuzzy msgid "do not save backup copies of files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:348 -#, fuzzy msgid "all patches and guards" -msgstr "Sync packages installed" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:349 msgid "drop all guards" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:350 -#, fuzzy msgid "import file in patch directory" -msgstr "Link simbólico para diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:351 -#, fuzzy msgid "name of patch file" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:352 -#, fuzzy msgid "overwrite existing files" -msgstr "Do not overwrite newer files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:353 msgid "place existing revisions under mq control" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:355 -#, fuzzy msgid "qpush after importing" -msgstr "Options for importing keys" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:356 #: /tmp/fish/implicit/share/completions/hg.fish:386 #: /tmp/fish/implicit/share/completions/hg.fish:399 #: /tmp/fish/implicit/share/completions/hg.fish:511 -#, fuzzy msgid "edit commit message" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:358 #: /tmp/fish/implicit/share/completions/hg.fish:388 @@ -34444,53 +31669,44 @@ msgid "interactively record a new patch" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:368 -#, fuzzy msgid "pop all patches" -msgstr "Answer yes to all patches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:370 -#, fuzzy msgid "forget any local changes to patched files" -msgstr "Get ready to edit a watched file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:374 -#, fuzzy msgid "apply on top of local changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:375 -#, fuzzy msgid "apply the target patch to its recorded parent" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:376 -#, fuzzy msgid "list patch name in commit text" -msgstr "Give patch name and comment in file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:377 -#, fuzzy msgid "apply all patches" -msgstr "Apply patch" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:378 msgid "reorder patch series and apply only the patch" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:380 -#, fuzzy msgid "list all available queues" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:381 -#, fuzzy msgid "print name of active queue" -msgstr "Print number of occurences" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:382 -#, fuzzy msgid "create new queue" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:383 msgid "rename active queue" @@ -34529,14 +31745,12 @@ msgid "interactively select changes to refresh" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:411 -#, fuzzy msgid "disable all guards" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:412 -#, fuzzy msgid "list all guards in series file" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:413 msgid "pop to before first guarded applied patch" @@ -34547,19 +31761,16 @@ msgid "pop, then reapply patches" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:415 -#, fuzzy msgid "print patches not in series" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:422 -#, fuzzy msgid "amend the parent of the working dir" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:436 -#, fuzzy msgid "record delete for missing files" -msgstr "Name directory for working files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:437 msgid "remove (and delete) file even if added or modified" @@ -34574,9 +31785,8 @@ msgid "select all unresolved files" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:448 -#, fuzzy msgid "list state of files needing merge" -msgstr "Display the trigger scripts contained in the package" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:449 msgid "mark files as resolved" @@ -34597,23 +31807,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:457 #: /tmp/fish/implicit/share/completions/hg.fish:521 -#, fuzzy msgid "tipmost revision matching date" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:458 -#, fuzzy msgid "revert to the specified revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:465 msgid "name of access log file to write to" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:466 -#, fuzzy msgid "run server in background" -msgstr "Executar tarefa em segundo plano" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:467 msgid "used internally by daemon mode" @@ -34636,9 +31843,8 @@ msgid "prefix path to serve from (default: server root)" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:472 -#, fuzzy msgid "name to show in web pages (default: working directory)" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:473 msgid "name of the hgweb config file (see \"hg help hgweb\")" @@ -34650,9 +31856,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:475 #: /tmp/fish/implicit/share/completions/hg.fish:476 -#, fuzzy msgid "for remote clients" -msgstr "List or remove functions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:477 msgid "web templates to use" @@ -34667,34 +31872,28 @@ msgid "use IPv6 in addition to IPv4" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:480 -#, fuzzy msgid "SSL certificate file" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:482 -#, fuzzy msgid "show status of all files" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:483 -#, fuzzy msgid "show only modified files" -msgstr "Download only diff file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:484 -#, fuzzy msgid "show only added files" -msgstr "Freshen: only changed files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:485 -#, fuzzy msgid "show only removed files" -msgstr "Do not create file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:486 -#, fuzzy msgid "show only deleted (but tracked) files" -msgstr "Do not del source files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:487 msgid "show only files without changes" @@ -34705,29 +31904,24 @@ msgid "show only unknown (not tracked) files" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:489 -#, fuzzy msgid "show only ignored files" -msgstr "Freshen: only changed files" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:491 -#, fuzzy msgid "show source of copied files" -msgstr "Use source index field" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:493 -#, fuzzy msgid "show difference from revision" -msgstr "Show differences between revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:494 -#, fuzzy msgid "list the changed files of a revision" -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:499 -#, fuzzy msgid "strip specified revision" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:500 msgid "force removal of changesets, discard uncommitted changes" @@ -34750,74 +31944,62 @@ msgid "check for push and pull" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:507 -#, fuzzy msgid "force tag" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:508 msgid "make the tag local" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:509 -#, fuzzy msgid "revision to tag" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:510 -#, fuzzy msgid "remove a tag" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:512 -#, fuzzy msgid "use as commit message" -msgstr "Read commit message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:517 msgid "update to new branch head if changesets were unbundled" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:519 -#, fuzzy msgid "discard uncommitted changes (no backup)" -msgstr "Display unrecorded changes in the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:520 -#, fuzzy msgid "update across branches if no uncommitted changes" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:1 -#, fuzzy msgid "Output file in given format" -msgstr "Output profiling information to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:2 -#, fuzzy msgid "Specify tab length" -msgstr "Specify line-length" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:3 -#, fuzzy msgid "Name of the input file" -msgstr "Name of the source package" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:4 -#, fuzzy msgid "Name of the output file" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:5 #: /tmp/fish/implicit/share/completions/hugo.fish:57 #: /tmp/fish/implicit/share/completions/tex.fish:10 -#, fuzzy msgid "Output directory" -msgstr "Output mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:6 -#, fuzzy msgid "Set type of the source code" -msgstr "Name of the source package" +msgstr "" #: /tmp/fish/implicit/share/completions/highlight.fish:7 msgid "Highlight style" @@ -34830,9 +32012,8 @@ msgstr "Update interval" #: /tmp/fish/implicit/share/completions/htop.fish:2 #: /tmp/fish/implicit/share/completions/htop.fish:3 -#, fuzzy msgid "Start htop in monochrome mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:4 #: /tmp/fish/implicit/share/completions/mkdosfs.fish:22 @@ -34840,117 +32021,96 @@ msgstr "Start in folder index" #: /tmp/fish/implicit/share/completions/pv.fish:32 #: /tmp/fish/implicit/share/completions/s3cmd.fish:41 #: /tmp/fish/implicit/share/completions/subl.fish:8 -#, fuzzy msgid "Show help and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:5 -#, fuzzy msgid "Show only given PIDs" -msgstr "Show history for all users" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:6 -#, fuzzy msgid "Monitor given user" -msgstr "Monitor user" +msgstr "" #: /tmp/fish/implicit/share/completions/htop.fish:7 -#, fuzzy msgid "Sort column" -msgstr "Lista por colunas" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:2 #: /tmp/fish/implicit/share/completions/s3cmd.fish:127 -#, fuzzy msgid "Debug output" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:3 -#, fuzzy msgid "Enable logging" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:4 -#, fuzzy msgid "Log file" -msgstr "Log to tracefile" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:6 #: /tmp/fish/implicit/share/completions/iptables.fish:25 #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:18 #: /tmp/fish/implicit/share/completions/s3cmd.fish:126 -#, fuzzy msgid "Verbose output" -msgstr "Verbose prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:7 -#, fuzzy msgid "Verbose logging" -msgstr "List users logged in" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:8 -#, fuzzy msgid "Hostname and path to the root" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:9 -#, fuzzy msgid "Include content marked as draft" -msgstr "Include directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:10 -#, fuzzy msgid "Include expired content" -msgstr "Include directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:11 -#, fuzzy msgid "Include content with publishdate in the future" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:12 -#, fuzzy msgid "Cache directory" -msgstr "Muda diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:13 msgid "Canonicalize all relative URLs using baseurl" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:14 -#, fuzzy msgid "Remove files from destination not found in static directories" -msgstr "Place files or directories under version control" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:15 -#, fuzzy msgid "Content directory" -msgstr "Muda diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:16 -#, fuzzy msgid "Destination directory" -msgstr "Create any missing directories" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:17 -#, fuzzy msgid "Do not build 404 page" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:18 -#, fuzzy msgid "Disable different kinds of pages" -msgstr "Control creation of sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:19 -#, fuzzy msgid "Do not build RSS files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:20 -#, fuzzy msgid "Do not build sitemap files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:21 msgid "Add Git revision, date and author info to the pages" @@ -34965,29 +32125,24 @@ msgid "Help for hugo" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:24 -#, fuzzy msgid "Print missing translations" -msgstr "Print compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:25 -#, fuzzy msgid "Ignore the cache directory" -msgstr "Include directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:26 -#, fuzzy msgid "Layout directory" -msgstr "Output mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:27 -#, fuzzy msgid "Do not sync permission mode of files" -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:28 -#, fuzzy msgid "Do not sync modification time of files" -msgstr "Ordena por hora de modificação" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:29 msgid "Pluralize titles in lists using inflect" @@ -34999,29 +32154,25 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:31 #: /tmp/fish/implicit/share/completions/hugo.fish:45 -#, fuzzy msgid "Render to memory" -msgstr "Reduce memory usage" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:32 #: /tmp/fish/implicit/share/completions/hugo.fish:58 #: /tmp/fish/implicit/share/completions/hugo.fish:92 #: /tmp/fish/implicit/share/completions/hugo.fish:103 -#, fuzzy msgid "Source directory" -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:33 #: /tmp/fish/implicit/share/completions/hugo.fish:46 -#, fuzzy msgid "Display memory and timing of different steps of the program" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:34 #: /tmp/fish/implicit/share/completions/hugo.fish:47 -#, fuzzy msgid "Display metrics about template executions" -msgstr "Display $ at end of line" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:35 #: /tmp/fish/implicit/share/completions/hugo.fish:48 @@ -35029,24 +32180,20 @@ msgid "Calculate some improvement hints when combined with --templateMetrics" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:36 -#, fuzzy msgid "Theme to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:37 -#, fuzzy msgid "Themes directory" -msgstr "Remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:38 -#, fuzzy msgid "Use /filename.html instead of /filename/" -msgstr "Use purge instead of remove" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:39 -#, fuzzy msgid "Watch filesystem for changes and recreate as needed" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:40 msgid "Benchmark Hugo by building the site a number of times" @@ -35057,23 +32204,20 @@ msgid "Number of times to build the site" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:42 -#, fuzzy msgid "CPU profile file" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:43 msgid "Help for benchmark" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:44 -#, fuzzy msgid "Memory profile file" -msgstr "Do not create file" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:49 -#, fuzzy msgid "Perform some verification checks" -msgstr "Perform contents generation" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:50 msgid "Help for check" @@ -35084,34 +32228,28 @@ msgid "Check system ulimit settings" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:52 -#, fuzzy msgid "Help for ulimit" -msgstr "Recursion limit" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:53 -#, fuzzy msgid "Print the site configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:54 -#, fuzzy msgid "Help for config" -msgstr "Help section" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:55 -#, fuzzy msgid "Convert the content to different formats" -msgstr "Don't add contents of subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:56 -#, fuzzy msgid "Help for convert" -msgstr "Nome alternativo para atq" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:59 -#, fuzzy msgid "Enable less safe operations" -msgstr "Disable multi-threaded operation" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:60 msgid "Convert front matter to JSON" @@ -35138,14 +32276,12 @@ msgid "Help for toYAML" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:66 -#, fuzzy msgid "Print Hugo version and environment info" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:67 -#, fuzzy msgid "Help for env" -msgstr "Nome alternativo para atq" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:68 msgid "Collection of several useful generators" @@ -35160,18 +32296,16 @@ msgid "Generate shell autocompletion script for Hugo" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:71 -#, fuzzy msgid "Autocompletion file" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:72 msgid "Help for autocomplete" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:73 -#, fuzzy msgid "Autocompletion type" -msgstr "Path to add completion to" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:74 msgid "Generate CSS stylesheet for the Chroma code highlighter" @@ -35182,199 +32316,168 @@ msgid "Help for chromastyles" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:76 -#, fuzzy msgid "Style used for highlighting lines" -msgstr "No search highlighting" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:77 -#, fuzzy msgid "Style used for line numbers" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:78 msgid "Highlighter style" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:79 -#, fuzzy msgid "Generate Markdown documentation for the Hugo CLI" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:80 -#, fuzzy msgid "Doc directory" -msgstr "Diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:81 msgid "Help for doc" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:82 -#, fuzzy msgid "Generate man pages for the Hugo CLI" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:83 -#, fuzzy msgid "Man pages directory" -msgstr "Muda diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:84 -#, fuzzy msgid "Help for man" -msgstr "Short format" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:85 -#, fuzzy msgid "Import your site from others" -msgstr "Compress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:86 -#, fuzzy msgid "Help for import" -msgstr "Dir to import" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:87 msgid "Import from Jekyll" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:88 -#, fuzzy msgid "Allow import into non-empty target directory" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:89 msgid "Help for jekyll" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:90 -#, fuzzy msgid "List various types of content" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:91 -#, fuzzy msgid "Help for list" -msgstr "Diretório de usuário para %ls" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:93 -#, fuzzy msgid "List all drafts" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:94 msgid "Help for drafts" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:95 -#, fuzzy msgid "List all expired posts" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:96 -#, fuzzy msgid "Help for expired" -msgstr "Temporizador expirado" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:97 -#, fuzzy msgid "List all posts dated in the future" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:98 -#, fuzzy msgid "Help for future" -msgstr "Nome alternativo para atrm" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:99 -#, fuzzy msgid "Create new content" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:100 -#, fuzzy msgid "Editor to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:101 msgid "Help for new" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:102 -#, fuzzy msgid "Content type to create" -msgstr "Concatenate output to file" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:104 -#, fuzzy msgid "Create a new site" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:105 -#, fuzzy msgid "Create site inside non-empty directory" -msgstr "Create any missing directories" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:106 msgid "Config and front matter format" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:107 -#, fuzzy msgid "Help for site" -msgstr "Diretório de usuário para %ls" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:108 -#, fuzzy msgid "Create a new theme" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:109 -#, fuzzy msgid "Help for theme" -msgstr "Search for other system" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:110 -#, fuzzy msgid "Start high performance web server" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:111 -#, fuzzy msgid "Append port to baseurl" -msgstr "Append input to selection" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:112 msgid "Interface to which the server will bind" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:113 -#, fuzzy msgid "Enable full re-renders on changes" -msgstr "Make no changes" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:114 msgid "Watch without enabling live browser reload on rebuild" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:115 -#, fuzzy msgid "Help for server" -msgstr "Utilizar servidor proxy" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:116 -#, fuzzy msgid "Port for live reloading" -msgstr "Dynamic port forwarding" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:117 msgid "Interval to poll memory usage" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:118 -#, fuzzy msgid "Memory usage log file" -msgstr "Erase obsolete files" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:119 msgid "Navigate to changed content file on live browser reload" @@ -35389,9 +32492,8 @@ msgid "Port on which the server will listen" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:122 -#, fuzzy msgid "Render to destination directory" -msgstr "Create any missing directories" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:123 msgid "Reset the content draft status" @@ -35402,57 +32504,48 @@ msgid "Help for undraft" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:125 -#, fuzzy msgid "Print the version number of Hugo" -msgstr "Print linenumber" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:126 -#, fuzzy msgid "Help for version" -msgstr "Nome do cliente" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:1 msgid "Only send ipc message and suppress output" msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:2 -#, fuzzy msgid "Display version number and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:4 -#, fuzzy msgid "Set socket" -msgstr "Soquete" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:5 -#, fuzzy msgid "Specify ipc message type" -msgstr "Specify email address" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:1 -#, fuzzy msgid "Convert from specified encoding" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:2 -#, fuzzy msgid "Convert to specified encoding" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:3 -#, fuzzy msgid "List known coded character sets" -msgstr "Set the native character set" +msgstr "" #: /tmp/fish/implicit/share/completions/iconv.fish:4 msgid "Output file" msgstr "Output file" #: /tmp/fish/implicit/share/completions/iconv.fish:5 -#, fuzzy msgid "Print progress information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:2 #: /tmp/fish/implicit/share/completions/mogrify.fish:4 @@ -35473,9 +32566,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:26 -#, fuzzy msgid "Display the number of unique colors in the image" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/identify.fish:30 msgid "Replace each pixel with its complementary color" @@ -35490,9 +32582,8 @@ msgid "Print all group ids" msgstr "Print all group ids" #: /tmp/fish/implicit/share/completions/id.fish:3 -#, fuzzy msgid "Print name, not number" -msgstr "Print linenumber" +msgstr "" #: /tmp/fish/implicit/share/completions/id.fish:4 msgid "Print real ID, not effective" @@ -35513,14 +32604,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/ifconfig.fish:1 -#, fuzzy msgid "Stop interface" -msgstr "Stop interface" +msgstr "" #: /tmp/fish/implicit/share/completions/ifconfig.fish:2 -#, fuzzy msgid "Start interface" -msgstr "Start interface" +msgstr "" #: /tmp/fish/implicit/share/completions/ifconfig.fish:3 #: /tmp/fish/implicit/share/completions/ifdown.fish:1 @@ -35533,131 +32622,108 @@ msgid "Reports interface existence via return code" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:2 -#, fuzzy msgid "Print out the whole config of iface" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:3 msgid "Print out yes or no according to existence" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:4 -#, fuzzy msgid "Print out the address" -msgstr "Print important dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:5 -#, fuzzy msgid "Print netmask" -msgstr "Print tally" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:6 -#, fuzzy msgid "Print network address" -msgstr "Print network node hostname" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:7 -#, fuzzy msgid "Print broadcast" -msgstr "Print processor" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:8 -#, fuzzy msgid "Print mtu" -msgstr "Print tally" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:9 -#, fuzzy msgid "Print out the hardware address" -msgstr "Use hardware address" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:10 -#, fuzzy msgid "Print flags" -msgstr "Print filename" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:11 -#, fuzzy msgid "Print all statistics on input" -msgstr "Write prototypes to file" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:12 -#, fuzzy msgid "Print # of in packets" -msgstr "Print login process" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:13 -#, fuzzy msgid "Print # of in bytes" -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:14 -#, fuzzy msgid "Print # of in errors" -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:15 -#, fuzzy msgid "Print # of in drops" -msgstr "Print APM info" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:16 -#, fuzzy msgid "Print # of in fifo overruns" -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:17 -#, fuzzy msgid "Print # of in compress" -msgstr "Print login process" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:18 -#, fuzzy msgid "Print # of in multicast" -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:19 -#, fuzzy msgid "Print all statistics on output" -msgstr "Print word counts" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:20 -#, fuzzy msgid "Print # of out packets" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:21 -#, fuzzy msgid "Print # of out bytes" -msgstr "Print time of last boot" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:22 -#, fuzzy msgid "Print # of out errors" -msgstr "Print full records" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:23 -#, fuzzy msgid "Print # of out drops" -msgstr "Print full records" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:24 msgid "Print # of out fifo overruns" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:25 -#, fuzzy msgid "Print # of out collisions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:26 msgid "Print # of out carrier loss" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:27 -#, fuzzy msgid "Print # of out multicast" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:28 msgid "Print # of incoming bytes per second" @@ -35668,9 +32734,8 @@ msgid "Print # of outgoing bytes per second" msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:2 -#, fuzzy msgid "Include window border in the output image" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:10 msgid "Obtain image by descending window hierarchy" @@ -35702,27 +32767,24 @@ msgid "Seconds delay between snapshots [value]" msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:37 -#, fuzzy msgid "Select image from root window" -msgstr "Select root window" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:40 msgid "Operate silently, i.e. don't ring any bells " msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:41 -#, fuzzy msgid "Number of screen snapshots [value]" -msgstr "Number all lines" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:47 msgid "Constant, Edge, Mirror, or Tile [method]" msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:48 -#, fuzzy msgid "Select window with this id or name [id]" -msgstr "Select window by name" +msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:52 msgid "Preferred size or location of the image [geometry]" @@ -35734,78 +32796,64 @@ msgid "Make this color transparent within the image [color]" msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:1 -#, fuzzy msgid "Start the service" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:2 -#, fuzzy msgid "Stop the service" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:3 -#, fuzzy msgid "Restart the service" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:4 -#, fuzzy msgid "Reload Configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:5 -#, fuzzy msgid "Force reloading configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/invoke-rc.d.fish:6 -#, fuzzy msgid "Print the status of the service" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:1 -#, fuzzy msgid "Read commands from file or stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:2 -#, fuzzy msgid "Don't terminate on errors in batch mode" -msgstr "Be tolerant of errors in commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:3 -#, fuzzy msgid "Print the version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:4 -#, fuzzy msgid "Output more information" -msgstr "List inode information" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:5 -#, fuzzy msgid "Output more detailed information" -msgstr "List inode information" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:6 -#, fuzzy msgid "Specify maximum number of loops for 'ip addr flush'" -msgstr "Specifies the number of data bytes to be sent" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:7 msgid "The protocol family to use" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:8 -#, fuzzy msgid "Short for --family inet" -msgstr "Short format" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:9 -#, fuzzy msgid "Short for --family inet6" -msgstr "Short format" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:10 msgid "Short for --family bridge" @@ -35824,23 +32872,20 @@ msgid "Short for --family link" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:14 -#, fuzzy msgid "Output on one line" -msgstr "Output only first of equal lines" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:15 msgid "Resolve names and print them instead of addresses" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:16 -#, fuzzy msgid "Use specified network namespace" -msgstr "Usa servidor de chaves especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:17 -#, fuzzy msgid "Execute command for all objects" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:1 msgid "Create a set identified with SETNAME" @@ -35851,9 +32896,8 @@ msgid "Add a given entry to a SET" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:3 -#, fuzzy msgid "Delete an entry from a SET" -msgstr "Apaga um item do histórico" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:4 msgid "Test whether an entry is in a set" @@ -35861,87 +32905,73 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:5 #: /tmp/fish/implicit/share/completions/ipset.fish:6 -#, fuzzy msgid "Destroy the specified set or all sets" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:7 msgid "a" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:9 -#, fuzzy msgid "Output format to the list command" -msgstr "Set prompt command" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:10 -#, fuzzy msgid "Suppress any output" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:11 msgid "Enforce name lookup" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:12 -#, fuzzy msgid "List just the names of the sets" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:13 -#, fuzzy msgid "List the set names and headers" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:14 -#, fuzzy msgid "Filename instead of stdout" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:1 -#, fuzzy msgid "Append rules to the end of a chain" -msgstr "Append files to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:2 msgid "Check whether a matching rule exists in a chain" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:3 -#, fuzzy msgid "Delete rules from a chain" -msgstr "Delete from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:4 #: /tmp/fish/implicit/share/completions/iptables.fish:20 -#, fuzzy msgid "Specify the target of a rule" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:5 -#, fuzzy msgid "Specify a match to use" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:6 -#, fuzzy msgid "Insert rules in the beginning of a chain" -msgstr "Invert the sense of matching" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:7 -#, fuzzy msgid "Replace a rule in a chain" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:8 -#, fuzzy msgid "List all rules in a chain" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:9 -#, fuzzy msgid "Print all rules in a chain." -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:10 msgid "Delete ALL rules in a chain" @@ -35952,9 +32982,8 @@ msgid "Zero the packet and byte counters in chains" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:12 -#, fuzzy msgid "Create a new user-defined chain by the given name" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:13 msgid "Delete the optional user-defined chain specified" @@ -35973,14 +33002,12 @@ msgid "The protocol of the rule or of the packet to check" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:18 -#, fuzzy msgid "Source specification" -msgstr "Force name/rev association" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:19 -#, fuzzy msgid "Destination specification" -msgstr "especificação de conversão inválida" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:21 msgid "Interface via which a packet was received" @@ -36004,14 +33031,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:27 #: /tmp/fish/implicit/share/completions/pv.fish:11 -#, fuzzy msgid "Numeric output" -msgstr "Numeric output only" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:28 -#, fuzzy msgid "Expand numbers" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:29 msgid "When listing rules, add line numbers" @@ -36022,9 +33047,8 @@ msgid "The table to operate on" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:31 -#, fuzzy msgid "Use this command to load modules" -msgstr "Use to build" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:2 msgid "Automock all files by default" @@ -36043,9 +33067,8 @@ msgid "Whether to use the transform cache" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:6 -#, fuzzy msgid "Disable the cache" -msgstr "Disable server-side cache" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:7 msgid "The directory where Jest should store its dependency information" @@ -36060,9 +33083,8 @@ msgid "Automatically clear mock calls and instances every test" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:10 -#, fuzzy msgid "Alias for --coverage" -msgstr "Nome alternativo para atq" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:11 msgid "" @@ -36078,14 +33100,12 @@ msgid "Forces test results output color highlighting" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:14 -#, fuzzy msgid "Alias for --color" -msgstr "Nome alternativo para atq" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:15 -#, fuzzy msgid "The path to a jest config file" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:16 msgid "" @@ -36098,9 +33118,8 @@ msgid "The directory where Jest should output its coverage files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:18 -#, fuzzy msgid "Pattern of files to ignore" -msgstr "Specify files to ignore" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:19 msgid "A list of reporter names that Jest uses when writing coverage reports" @@ -36113,24 +33132,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:21 -#, fuzzy msgid "Print debugging info about your jest config" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:22 -#, fuzzy msgid "The test environment used for all tests" -msgstr "Modifica variáveis de ambiente" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:23 -#, fuzzy msgid "Use this flag to show full diffs instead of a patch" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:24 -#, fuzzy msgid "Find related tests for a list of source files" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:25 msgid "Force Jest to exit after all tests have completed running" @@ -36145,9 +33160,8 @@ msgid "A JSON string with map of variables for the haste module system" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:28 -#, fuzzy msgid "Prints the test results in JSON" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:29 msgid "Will run all tests affected by file changes in the last commit made" @@ -36166,9 +33180,8 @@ msgid "Maps code coverage reports against original source code" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:33 -#, fuzzy msgid "Specifies the maximum number of workers" -msgstr "Set the maximum fuzz factor" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:34 msgid "Directory names to be searched recursively up from the requiring module" @@ -36185,27 +33198,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:37 -#, fuzzy msgid "Modules to ignore" -msgstr "Specify files to ignore" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:38 msgid "An alternative API to setting the NODE_PATH env variable" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:39 -#, fuzzy msgid "Disables stack trace in test results output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:40 msgid "Activates notifications for test results" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:41 -#, fuzzy msgid "Run tests based on the changed files" -msgstr "Run in login mode" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:42 msgid "A file where to write test results" @@ -36224,9 +33234,8 @@ msgid "A list of custom reporters for the test suite" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:46 -#, fuzzy msgid "Automatically reset mock state between every test" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:47 msgid "Whatever to reset the module registry for every test" @@ -36237,18 +33246,16 @@ msgid "A JSON string which allows the use of a custom resolver" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:49 -#, fuzzy msgid "The root directory that Jest should scan for tests and modules within" -msgstr "Specify the repository directory in which to run" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:50 msgid "Paths to directories that Jest should use to search for files in" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:51 -#, fuzzy msgid "Run all tests serially in the current process" -msgstr "Executa um comando como o processo atual" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:52 msgid "The paths to modules to configure the testing environment" @@ -36259,55 +33266,48 @@ msgid "The path to a module to configure the testing framework" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:54 -#, fuzzy msgid "Print your jest config and then exits" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:55 -#, fuzzy msgid "Prevent tests from printing messages through the console" -msgstr "Send error messages through syslog" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:56 msgid "Snapshot serializer modules Jest should use for snapshot testing" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:57 -#, fuzzy msgid "Alias for --env" -msgstr "Nome alternativo para atq" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:58 msgid "The glob patterns Jest uses to detect test files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:59 -#, fuzzy msgid "Run only tests with a name that matches the regex pattern" -msgstr "Exclude files thet match pattern in file" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:60 msgid "Paths to skip" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:61 -#, fuzzy msgid "Regex for test paths" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:62 msgid "The regexp pattern Jest uses to detect test files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:63 -#, fuzzy msgid "Allows the use of a custom results processor" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:64 -#, fuzzy msgid "Allows to specify a custom test runner" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:65 msgid "This option sets the URL for the jsdom environment" @@ -36337,9 +33337,8 @@ msgid "Use this flag to re-record snapshots" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:71 -#, fuzzy msgid "Divert all output to stderr" -msgstr "Audio output" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:72 msgid "Display individual test results with the test suite hierarchy" @@ -36348,18 +33347,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:73 #: /tmp/fish/implicit/share/completions/snap.fish:15 #: /tmp/fish/implicit/share/completions/vagrant.fish:3 -#, fuzzy msgid "Print the version and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:74 msgid "Watch files for changes and rerun tests related to changed files" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:75 -#, fuzzy msgid "Watch files for changes and rerun all tests" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:76 msgid "Whether to use watchman for file crawling" @@ -36370,29 +33367,24 @@ msgid "Disable using watchman for file crawling" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:1 -#, fuzzy msgid "Enable debugger" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:2 -#, fuzzy msgid "Output usage information" -msgstr "Não pôde obter informação do usuário" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:3 -#, fuzzy msgid "Output version number" -msgstr "Número da versão" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:4 -#, fuzzy msgid "Create a new JHipster application" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:5 -#, fuzzy msgid "Deploy the current application to AWS" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:6 msgid "Create pipeline scripts for popular CI tools" @@ -36419,28 +33411,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:11 -#, fuzzy msgid "Create a JDL file from the existing entities" -msgstr "Remove files after adding to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:12 -#, fuzzy msgid "Deploy the current application to Heroku" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:13 msgid "Create entities from the JDL file passed in argument" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:14 -#, fuzzy msgid "Display information about your current project and system" -msgstr "Display information about a local or remote item" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:15 -#, fuzzy msgid "Deploy the current application to Kubernetes" -msgstr "Don't cache auth tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:16 msgid "" @@ -36449,38 +33437,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:17 -#, fuzzy msgid "Deploy the current application to OpenShift" -msgstr "Display version and supported algorithms, and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:18 -#, fuzzy msgid "Deploy the current application to Rancher" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:19 -#, fuzzy msgid "Create a new JHipster server-side application" -msgstr "Create a new directory under version control" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:20 -#, fuzzy msgid "Create a new Spring service bean" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:21 msgid "Upgrade the JHipster version and the generated application" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:22 -#, fuzzy msgid "Print command completion script" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/jobs.fish:2 -#, fuzzy msgid "Show the process id of each process in the job" -msgstr "Show the process id of each process in the job" +msgstr "" #: /tmp/fish/implicit/share/completions/jobs.fish:3 msgid "Show group id of job" @@ -36503,43 +33485,36 @@ msgid "OR" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:4 -#, fuzzy msgid "Prints a short help text and exits" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:5 -#, fuzzy msgid "Prints a short version string and exits" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:7 -#, fuzzy msgid "Show all fields in full" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:8 -#, fuzzy msgid "Show live tail of entries" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:9 -#, fuzzy msgid "Controls the number of journal lines" -msgstr "Conta o número de argumentos" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:10 msgid "Show all lines, even in follow mode" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:11 -#, fuzzy msgid "Controls the formatting" -msgstr "Não pôde obter informação do usuário" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:12 -#, fuzzy msgid "Suppress warning about normal user" -msgstr "Suppress the warning about “using insecure memory”" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:13 msgid "Show entries interleaved from all journals" @@ -36550,9 +33525,8 @@ msgid "Show data only from a certain boot" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:15 -#, fuzzy msgid "Show data only of the specified unit" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:16 msgid "Filter by priority" @@ -36571,28 +33545,24 @@ msgid "Entries on or older than DATE" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:20 -#, fuzzy msgid "Print all possible data values" -msgstr "Print as little as possible" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:21 -#, fuzzy msgid "Specify journal directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:22 msgid "Generate a new 128 bit ID" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:23 -#, fuzzy msgid "Show internal header information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:24 -#, fuzzy msgid "Shows the current disk usage" -msgstr "Show source package" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:25 msgid "Generate Forward Secure Sealing key pair" @@ -36603,41 +33573,36 @@ msgid "Change interval for the sealing" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:27 -#, fuzzy msgid "Check journal for internal consistency" -msgstr "Check the repository for consistency" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:28 msgid "Specifies FSS key for --verify" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:1 -#, fuzzy msgid "Output version and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:2 msgid "Use application/json-seq MIME type scheme" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:3 -#, fuzzy msgid "Parse input in streaming fasion" -msgstr "Print only given revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:4 msgid "Run filter just once in large array" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:5 -#, fuzzy msgid "Don't parse as JSON but as string" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:6 -#, fuzzy msgid "Ignore input and treat it as null" -msgstr "Force input to be treated as HTML" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:7 msgid "Don't pretty-print JSON" @@ -36648,19 +33613,16 @@ msgid "Use a tab for indentation instead of 2 spaces" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:9 -#, fuzzy msgid "Use given number of spaces for indentation" -msgstr "Use Kerberos realm for authentication" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:11 -#, fuzzy msgid "Don't color output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:12 -#, fuzzy msgid "Replace UTF-8 characters with escape sequences" -msgstr "Mostra caracteres não imprimíveis com '?'" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:13 msgid "Flush output after each JSON object is printed" @@ -36679,64 +33641,52 @@ msgid "Raw ouput without newlines" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:17 -#, fuzzy msgid "Read filter from file" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:18 -#, fuzzy msgid "Prepend given directory to search modules" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:19 -#, fuzzy msgid "Set exit status" -msgstr "Nega estado de saída da tarefa" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:20 -#, fuzzy msgid "Set variable" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:21 -#, fuzzy msgid "Set JSON-encoded variable" -msgstr "Set CVS user variable" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:22 -#, fuzzy msgid "Read JSON in file and bind to given variable" -msgstr "Lê uma linha de entrada e a coloca em variáveis" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:23 -#, fuzzy msgid "Read JSON in file and bind to given variable [see man]" -msgstr "Lê uma linha de entrada e a coloca em variáveis" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:24 -#, fuzzy msgid "Run tests in given file" -msgstr "Run in login mode" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:1 -#, fuzzy msgid "List available modules" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:2 -#, fuzzy msgid "Show author information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:3 -#, fuzzy msgid "Show license information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:4 -#, fuzzy msgid "Set a language" -msgstr "Subtitle language" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:5 msgid "Don't show main window" @@ -36751,29 +33701,24 @@ msgid "Icon for the module" msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:8 -#, fuzzy msgid "Title for the window" -msgstr "Select root window" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:9 -#, fuzzy msgid "Show version information and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/kcmshell5.fish:10 -#, fuzzy msgid "Show help information and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:1 -#, fuzzy msgid "List all devices" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:2 -#, fuzzy msgid "List available (paired and reachable) devices" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:3 msgid "" @@ -36794,9 +33739,8 @@ msgid "Find the said device by ringing it." msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:7 -#, fuzzy msgid "Stop pairing to a said device" -msgstr "Stop and then start service" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:8 msgid "Sends a ping to said device" @@ -36807,74 +33751,60 @@ msgid "Same as ping but you can set the message to display" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:10 -#, fuzzy msgid "Share a file to a said device" -msgstr "Pretend file is modified" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:11 -#, fuzzy msgid "Display the notifications on a said device" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:12 -#, fuzzy msgid "Lock the specified device" -msgstr "Use specified keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:13 -#, fuzzy msgid "Sends an SMS. Requires destination" -msgstr "Remove completion" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:14 -#, fuzzy msgid "Phone number to send the message" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:15 -#, fuzzy msgid "Device ID" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:16 -#, fuzzy msgid "Device Name" -msgstr "Service name" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:17 -#, fuzzy msgid "Get encryption info about said device" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:18 -#, fuzzy msgid "Lists remote commands and their ids" -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:19 -#, fuzzy msgid "Executes a remote command by id" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:20 -#, fuzzy msgid "Displays this help." -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:21 -#, fuzzy msgid "Displays version information." -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:22 -#, fuzzy msgid "Show author information." -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:23 -#, fuzzy msgid "Show license information." -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:24 msgid "The base file name of the desktop entry for this application." @@ -36919,9 +33849,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/killall.fish:11 -#, fuzzy msgid "List names of available signals and exit" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/completions/killall.fish:12 msgid "Case sensitive argument match for processed" @@ -36944,14 +33873,12 @@ msgid "Limit to processes matching specified PROCNAME" msgstr "" #: /tmp/fish/implicit/share/completions/killall.fish:18 -#, fuzzy msgid "Do not skip zombies" -msgstr "Don't skip boring files" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:1 -#, fuzzy msgid "Test if kitchen has yet to be given the main command" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:2 #: /tmp/fish/implicit/share/completions/kitchen.fish:3 @@ -36959,9 +33886,8 @@ msgid "Describe available commands or one specific command" msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:4 -#, fuzzy msgid "Lists one or more instances" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:5 msgid "List the name of each instance only, one per line" @@ -36973,9 +33899,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:2 #: /tmp/fish/implicit/share/completions/latexmk.fish:32 -#, fuzzy msgid "never use bibtex" -msgstr "Don't verify user attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:3 msgid "use bibtex when needed, but only if the bib files exist" @@ -36990,9 +33915,8 @@ msgid "Set contrast or intensity of banner" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:6 -#, fuzzy msgid "Set scale for banner" -msgstr "Set date forward" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:7 msgid "list commands used by latexmk for processing files" @@ -37019,14 +33943,12 @@ msgid "Do NOT change to directory of source file when processing it" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:13 -#, fuzzy msgid "Show list of dependent files after processing" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:14 -#, fuzzy msgid "Do not show list of dependent files" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:15 msgid "" @@ -37039,9 +33961,8 @@ msgid "Filter to apply to dvi file" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:17 -#, fuzzy msgid "generate dvi" -msgstr "Mostra saída com dired" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:18 msgid "turn off required dvi" @@ -37052,9 +33973,8 @@ msgid "Execute specified Perl code (as part of latexmk start-up code)" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:20 -#, fuzzy msgid "force continued processing past errors" -msgstr "Force to continue on some errors" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:21 msgid "turn off forced continuing processing past errors" @@ -37069,23 +33989,20 @@ msgid "process regardless of file timestamps" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:24 -#, fuzzy msgid "Turn off -g" -msgstr "Turn off FTP globbing" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:25 -#, fuzzy msgid "print help" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:26 msgid "set basename of output file(s) to STRING" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:27 -#, fuzzy msgid "force landscape mode" -msgstr "Use ansi mode" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:28 msgid "turn off -l" @@ -37112,9 +34029,8 @@ msgid "omit automatic reading of system, user and project rc files" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:35 -#, fuzzy msgid "set name of directory for output files" -msgstr "File descriptor for input" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:36 msgid "generate pdf by pdflatex" @@ -37137,14 +34053,12 @@ msgid "turn off pdf" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:41 -#, fuzzy msgid "generate postscript" -msgstr "Don't execute post scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:42 -#, fuzzy msgid "turn off postscript" -msgstr "Run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:43 msgid "Filter to apply to postscript file" @@ -37171,9 +34085,8 @@ msgid "preview document" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:49 -#, fuzzy msgid "turn off preview mode" -msgstr "Turn on autosplit mode" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:50 msgid "preview document and continuously update" @@ -37189,9 +34102,8 @@ msgid "silence progress messages from called programs" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:53 -#, fuzzy msgid "Read custom RC file" -msgstr "Read URLs from file" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:54 msgid "Use -recorder option for (pdf)latex" @@ -37206,14 +34118,12 @@ msgid "Show list of rules after processing" msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:57 -#, fuzzy msgid "Do not show list of rules after processing" -msgstr "Do not use integrated preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:59 -#, fuzzy msgid "show CPU time used" -msgstr "Show time type" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:60 msgid "don't show CPU time used" @@ -37229,9 +34139,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:63 #: /tmp/fish/implicit/share/completions/latexmk.fish:65 -#, fuzzy msgid "display program version" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/latexmk.fish:64 msgid "display usual progress messages from called programs" @@ -37266,23 +34175,20 @@ msgid "Write the classpath of the current project to output-file." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:3 -#, fuzzy msgid "Remove all files from project's target-path." -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:4 msgid "Compile Clojure source into .class files." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:5 -#, fuzzy msgid "Build jar and deploy to remote repository." -msgstr "Adicionar um novo arquivo/diretório ao repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:6 -#, fuzzy msgid "Show details about dependencies." -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:7 msgid "Higher-order task to perform other tasks in succession." @@ -37293,18 +34199,16 @@ msgid "Display a list of tasks or help for a given task or subtask." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:9 -#, fuzzy msgid "Install current project to the local repository." -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:10 msgid "Package up all the project's files into a jar file." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:11 -#, fuzzy msgid "Compile Java source files." -msgstr "Compile source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:12 msgid "Start a Light Table client for this project" @@ -37343,9 +34247,8 @@ msgid "List all available profiles or display one if given an argument." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:21 -#, fuzzy msgid "Run the project's tests." -msgstr "Run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:22 msgid "Run a task without nesting the project's JVM inside Leiningen's." @@ -37364,9 +34267,8 @@ msgid "Upgrade Leiningen to specified version or latest stable." msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:26 -#, fuzzy msgid "Print version for Leiningen and the current JVM." -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/lein.fish:27 msgid "Apply the given task with the profile(s) specified." @@ -37377,9 +34279,8 @@ msgid "Search after end of screen" msgstr "Search after end of screen" #: /tmp/fish/implicit/share/completions/less.fish:3 -#, fuzzy msgid "Buffer space" -msgstr "Buffer space" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:4 msgid "Disable automtic buffer allocation" @@ -37442,14 +34343,12 @@ msgid "Display status column" msgstr "Display status column" #: /tmp/fish/implicit/share/completions/less.fish:19 -#, fuzzy msgid "Specify key bindings file" -msgstr "Specify a config file" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:21 -#, fuzzy msgid "Prompt with percentage" -msgstr "Prompt string" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:22 msgid "Verbose prompt" @@ -37502,9 +34401,8 @@ msgid "Multiple blank lines sqeezed" msgstr "Multiple blank lines sqeezed" #: /tmp/fish/implicit/share/completions/less.fish:36 -#, fuzzy msgid "Do not fold long lines" -msgstr "Do not fold long lines" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:37 msgid "Edit tag" @@ -37563,14 +34461,12 @@ msgid "Characters to scroll on left/right arrows" msgstr "Characters to scroll on left/right arrows" #: /tmp/fish/implicit/share/completions/light.fish:3 -#, fuzzy msgid "Get value (default)" -msgstr "(padrão)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:4 -#, fuzzy msgid "Set value" -msgstr "Set date" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:5 msgid "Add value" @@ -37581,9 +34477,8 @@ msgid "Subtract value" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:7 -#, fuzzy msgid "List controllers" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:8 msgid "Restore brightness" @@ -37594,100 +34489,85 @@ msgid "Save brightness" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:10 -#, fuzzy msgid "Brightness (default)" -msgstr "(padrão)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:11 -#, fuzzy msgid "Maximum brightness" -msgstr "Maximium iterations" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:12 msgid "Minimum cap" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:13 -#, fuzzy msgid "Selects controller automatically (default)" -msgstr "Select entire command line (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:14 -#, fuzzy msgid "Specify controller to use" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:15 -#, fuzzy msgid "Interpret & output values in percent" -msgstr "Interpret the patch file as an ed script" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:16 msgid "Interpret & output values in raw mode" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:17 -#, fuzzy msgid "Sets the verbosity level" -msgstr "Output sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:1 -#, fuzzy msgid "Make symbolic links instead of hard links" -msgstr "Make symbolic links instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:2 #: /tmp/fish/implicit/share/completions/ln.fish:3 -#, fuzzy msgid "Make a backup of each existing destination file" -msgstr "Make backup of each existing destination file" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:4 msgid "Allow superuser to attempt to hard link directories" msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:5 -#, fuzzy msgid "Remove existing destination files" -msgstr "Make backup of each existing destination file" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:6 -#, fuzzy msgid "Prompt whether to remove destinations" -msgstr "Prompt for whether to edit the long comment" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:7 -#, fuzzy msgid "Dereference TARGETs that are symbolic links" -msgstr "Dereferense symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:8 msgid "Treat symlink to directory as if it were a file" msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:9 -#, fuzzy msgid "Make hard links directly to symbolic links" -msgstr "Never follow symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:10 -#, fuzzy msgid "Override the usual ~ backup suffix" -msgstr "Use suffix as the simple backup suffix" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:11 msgid "Specify the DIRECTORY in which to create the links" msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:12 -#, fuzzy msgid "Treat LINK_NAME as a normal file" -msgstr "Treat DEST as a normal file" +msgstr "" #: /tmp/fish/implicit/share/completions/ln.fish:13 -#, fuzzy msgid "Print name of each linked file" -msgstr "Print name, line, and time" +msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:1 #: /tmp/fish/implicit/share/completions/timedatectl.fish:4 @@ -37709,30 +34589,26 @@ msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:4 #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:37 #: /tmp/fish/implicit/share/completions/timedatectl.fish:7 -#, fuzzy msgid "Print a short help text and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:5 #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:38 #: /tmp/fish/implicit/share/completions/timedatectl.fish:8 -#, fuzzy msgid "Print a short version string and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:1 msgid "Match all non-option arguments" msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:2 -#, fuzzy msgid "Match against the base name of the file" -msgstr "Update only the database, not the filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:3 -#, fuzzy msgid "Print only the number of matches found" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:4 msgid "Use different DATABASE file[s]" @@ -37748,19 +34624,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:7 #: /tmp/fish/implicit/share/completions/locate.fish:8 -#, fuzzy msgid "Treat broken symbolic links as if they were existing" -msgstr "Make symbolic links instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:9 -#, fuzzy msgid "Ignore case distinctions" -msgstr "Ignore case differences" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:10 -#, fuzzy msgid "Limit the number of matches" -msgstr "Only print number of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:11 msgid "Use ASCII NUL as a separator" @@ -37775,20 +34648,17 @@ msgid "Match against the whole name of the file" msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:14 -#, fuzzy msgid "The pattern is a regular expression" -msgstr "Pattern is a regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:15 -#, fuzzy msgid "Print a summary of the options and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:16 #: /tmp/fish/implicit/share/completions/xmms.fish:11 -#, fuzzy msgid "Print the version number and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/logkeys.fish:1 msgid "Starts the keylogging daemon" @@ -37803,9 +34673,8 @@ msgid "Set ouput LOGFILE" msgstr "" #: /tmp/fish/implicit/share/completions/logkeys.fish:4 -#, fuzzy msgid "Use file as input KEYMAP" -msgstr "File as input" +msgstr "" #: /tmp/fish/implicit/share/completions/logkeys.fish:5 msgid "Use DEVICE as keyboard input" @@ -37848,9 +34717,8 @@ msgid "Sets a standard System V interface script or PPD file " msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:4 -#, fuzzy msgid "Deletes the named option from printer" -msgstr "Apaga um item do histórico" +msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:5 msgid "" @@ -37871,9 +34739,8 @@ msgid "Enables the destination and accepts jobs" msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:9 -#, fuzzy msgid "Provides a textual location of the destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/lpadmin.fish:10 msgid "Specifies a PostScript Printer Description file to use with the printer" @@ -37941,18 +34808,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:1 -#, fuzzy msgid "Prints files to the named printer" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:2 msgid "Specifies an existing job to modify" msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:3 -#, fuzzy msgid "Sets the number of copies to print from 1 to 100" -msgstr "Specifies the number of data bytes to be sent" +msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:4 msgid "Sets the job priority from 1 (lowest) to 100 (highest)" @@ -37964,18 +34829,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:6 #: /tmp/fish/implicit/share/completions/lpr.fish:2 -#, fuzzy msgid "Sets the job name" -msgstr "Definir nome do volume" +msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:7 msgid "Specifies when the job should be printed" msgstr "" #: /tmp/fish/implicit/share/completions/lp.fish:8 -#, fuzzy msgid "Specify the page ranges" -msgstr "Specify the http username" +msgstr "" #: /tmp/fish/implicit/share/completions/lpinfo.fish:1 msgid "Shows a \"long\" listing of devices or drivers" @@ -37988,18 +34851,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpinfo.fish:3 -#, fuzzy msgid "" "Specifies a comma-separated list of device or PPD schemes that " "should be excluded from the results" -msgstr "Specify a comma-separated list of directories you wish to exclude" +msgstr "" #: /tmp/fish/implicit/share/completions/lpinfo.fish:4 -#, fuzzy msgid "" "Specifies a comma-separated list of device or PPD schemes that should be " "included in the results" -msgstr "Specify a comma-separated list of directories you wish to exclude" +msgstr "" #: /tmp/fish/implicit/share/completions/lpinfo.fish:5 msgid "Specifies the language to match when listing drivers with the -m option" @@ -38019,45 +34880,40 @@ msgid "Specifies the timeout when listing devices with the -v option (sec)" msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:1 -#, fuzzy msgid "Sets the user default printer" -msgstr "Use the default key as default recipient" +msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:2 msgid "Lists the printer specific options and their current settings" msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:3 -#, fuzzy msgid "Specifies a new option for the named destination" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:4 msgid "Sets the destination and instance for any options that follow" msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:5 -#, fuzzy msgid "Removes the specified option for the named destination" -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/lpoptions.fish:6 msgid "Removes the options for the named destination and instance" msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:1 -#, fuzzy msgid "Change CUPS digest password" -msgstr "Muda diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:2 msgid "Add password" msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:3 -#, fuzzy msgid "Remove password" -msgstr "Remove records" +msgstr "" #: /tmp/fish/implicit/share/completions/lppasswd.fish:4 msgid "Specify the group other, than default system group" @@ -38069,14 +34925,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:1 #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:6 -#, fuzzy msgid "Specifies an alternate server" -msgstr "Specify X server" +msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:3 -#, fuzzy msgid "Disables banner printing" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:4 msgid "" @@ -38092,9 +34946,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:6 -#, fuzzy msgid "Hold job for printing" -msgstr "Format for printing" +msgstr "" #: /tmp/fish/implicit/share/completions/lpr.fish:7 msgid "" @@ -38106,14 +34959,12 @@ msgid "Show the server hostname and port" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:2 -#, fuzzy msgid "Shows the ranking of print jobs" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:3 -#, fuzzy msgid "Specifies which jobs to show" -msgstr "Specify sendmail command" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:4 msgid "Shows the accepting state of selected printer queues" @@ -38126,18 +34977,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:6 -#, fuzzy msgid "Shows the current default destination" -msgstr "Pára a função em execução" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:7 msgid "Shows a long listing of printers, classes, or jobs" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:8 -#, fuzzy msgid "Shows the jobs queue on the specified destinations" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:9 msgid "Shows the printers and whether or not they are enabled for printing" @@ -38152,120 +35001,100 @@ msgid "Shows a status summary, including the default destination" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:12 -#, fuzzy msgid "Shows all status information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:13 -#, fuzzy msgid "Shows a list of print jobs queued by the specified users" msgstr "" -"Define a lista de preferências de assinatura como a string especificada" #: /tmp/fish/implicit/share/completions/lpstat.fish:14 msgid "Shows the printers and what device they are attached to" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:1 -#, fuzzy msgid "print all devices" -msgstr "Imprimir todos os nomes" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:2 msgid "print SIZE in bytes rather than in human readable format" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:3 -#, fuzzy msgid "don't print slaves or holders" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:4 -#, fuzzy msgid "print discard capabilities" -msgstr "Set playlist" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:5 msgid "exclude devices by major number (default: RAM disks)" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:6 -#, fuzzy msgid "output info about filesystems" -msgstr "Stay in local filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:7 -#, fuzzy msgid "usage information (this)" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:8 msgid "use ascii characters only" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:9 -#, fuzzy msgid "output info about permissions" -msgstr "Extract all permissions" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:10 -#, fuzzy msgid "don't print headings" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:11 -#, fuzzy msgid "output columns" -msgstr "Saída em duas colunas" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:12 -#, fuzzy msgid "use key='value' output format" -msgstr "Use the portable output format" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:13 -#, fuzzy msgid "use raw output format" -msgstr "Use the portable output format" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:14 msgid "output info about topology" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:15 -#, fuzzy msgid "use list format ouput" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:1 -#, fuzzy msgid "Print both online and offline CPUs" -msgstr "Print name, line, and time" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:2 -#, fuzzy msgid "Print online CPUs only" -msgstr "Print newline counts" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:3 -#, fuzzy msgid "Print offline CPUs only" -msgstr "Print newline counts" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:4 -#, fuzzy msgid "Print out an extended readable format" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:5 -#, fuzzy msgid "Print out a parseble format" -msgstr "Profiling output format" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:6 -#, fuzzy msgid "Use specified directory as system root" -msgstr "Use specified key as the key to sign with" +msgstr "" #: /tmp/fish/implicit/share/completions/lscpu.fish:7 msgid "Print hexadecimal masks rather thans lists of CPUs" @@ -38335,9 +35164,8 @@ msgstr "Mostra tudo exceto . e .." #: /tmp/fish/implicit/share/completions/ls.fish:42 #: /tmp/fish/implicit/share/completions/ls.fish:70 #: /tmp/fish/implicit/share/completions/ls.fish:79 -#, fuzzy msgid "Append filetype indicator" -msgstr "Adiciona indicador de tipo de arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:18 #: /tmp/fish/implicit/share/completions/ls.fish:73 @@ -38376,9 +35204,8 @@ msgid "Print size of files" msgstr "Mostra tamanhos de arquivos" #: /tmp/fish/implicit/share/completions/ls.fish:28 -#, fuzzy msgid "Group directories before files" -msgstr "Copy directories recursively" +msgstr "" # Notas: # Adicionar nota @@ -38424,9 +35251,8 @@ msgid "Generate dired output" msgstr "Mostra saída com dired" #: /tmp/fish/implicit/share/completions/ls.fish:38 -#, fuzzy msgid "List format" -msgstr "Formato longo" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:39 msgid "Long format, full-iso time" @@ -38437,9 +35263,8 @@ msgid "Don't print group information" msgstr "Não mostra grupo" #: /tmp/fish/implicit/share/completions/ls.fish:43 -#, fuzzy msgid "Skip entries matching pattern" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:44 #: /tmp/fish/implicit/share/completions/ls.fish:67 @@ -38519,9 +35344,8 @@ msgid "Causes list selections to be ANDed" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:3 -#, fuzzy msgid "Use alternative name list file" -msgstr "Set namelist file" +msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:4 msgid "Avoid kernel functions that might block: lstat, readlink, stat" @@ -38548,9 +35372,8 @@ msgid "use of device cache file" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:9 -#, fuzzy msgid "select by group (^ - negates)" -msgstr "Select by group" +msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:10 msgid "Convert UIDs to login names" @@ -38561,18 +35384,16 @@ msgid "Select or exclude processes by pid" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:12 -#, fuzzy msgid "Print PPID" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:13 msgid "Produce terse output (pids only, no header)" msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:14 -#, fuzzy msgid "select by user (^ - negates)" -msgstr "Select by user" +msgstr "" #: /tmp/fish/implicit/share/completions/lsusb.fish:1 msgid "Increase verbosity (show descriptors)" @@ -38602,52 +35423,44 @@ msgid "Show version of program" msgstr "" #: /tmp/fish/implicit/share/completions/lsusb.fish:7 -#, fuzzy msgid "Show usage and help" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:1 -#, fuzzy msgid "Execute string" -msgstr "Link para executável" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:2 -#, fuzzy msgid "Require library" -msgstr "Require parameter" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:3 -#, fuzzy msgid "Enter interactive mode after executing script" -msgstr "Interactive mode after executing commands" +msgstr "" #: /tmp/fish/implicit/share/completions/lua.fish:6 msgid "Execute stdin and stop handling options" msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:1 -#, fuzzy msgid "Show command executions" -msgstr "Show commandname of each job" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:2 msgid "Installs [file] to ~/Library/LaunchAgents or /Library/LaunchAgents" msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:3 -#, fuzzy msgid "Show the list of installed agents" -msgstr "Don't check dependencies before uninstalling the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:4 -#, fuzzy msgid "Start the first matching agent" -msgstr "Print first matching file" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:5 -#, fuzzy msgid "Stop the first matching agent" -msgstr "Print first matching file" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:6 msgid "Stop and start the first matching agent" @@ -38662,29 +35475,25 @@ msgid "Opens the launchctl daemon file in the default editor" msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:9 -#, fuzzy msgid "Service" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:10 #: /tmp/fish/implicit/share/completions/lunchy.fish:12 -#, fuzzy msgid "Persist command" -msgstr "Process command" +msgstr "" #: /tmp/fish/implicit/share/completions/lunchy.fish:11 msgid "Force start (disabled) agents" msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:1 -#, fuzzy msgid "Test if lxc has yet to be given the command" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:2 -#, fuzzy msgid "Manage configuration." -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:3 msgid "Copy containers within or in between lxd instances." @@ -38695,9 +35504,8 @@ msgid "Delete containers or snapshots." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:5 -#, fuzzy msgid "Execute the specified command in a container." -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:6 msgid "Manage files on a container." @@ -38708,9 +35516,8 @@ msgid "Check if the LXD instance is up." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:8 -#, fuzzy msgid "Print help." -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:9 msgid "Manipulate container images." @@ -38729,14 +35536,12 @@ msgid "Launch a container from a particular image." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:13 -#, fuzzy msgid "Lists the available resources." -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:14 -#, fuzzy msgid "Prints all the subcommands help." -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:15 msgid "Monitor activity on the LXD server." @@ -38747,27 +35552,24 @@ msgid "Move containers within or in between lxd instances." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:17 -#, fuzzy msgid "Manage networks." -msgstr "Adicionar uma rede" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:18 msgid "Changes state of one or more containers to pause." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:19 -#, fuzzy msgid "Manage configuration profiles." -msgstr "Set configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:20 msgid "Publish containers as images." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:21 -#, fuzzy msgid "Manage remote LXD servers." -msgstr "File to grab servers" +msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:22 msgid "Changes state of one or more containers to restart." @@ -38790,24 +35592,20 @@ msgid "Changes state of one or more containers to stop." msgstr "" #: /tmp/fish/implicit/share/completions/lxc.fish:27 -#, fuzzy msgid "Prints the version number of this client tool." -msgstr "Mostra inode dos arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:1 -#, fuzzy msgid "print this help and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:2 -#, fuzzy msgid "print version and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:3 -#, fuzzy msgid "use specified profile" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/lxpanel.fish:4 msgid "set log level 0-5. 0 - none 5 - chatty" @@ -38826,9 +35624,8 @@ msgid "Force a 'm4_' prefix to all builtins" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:6 -#, fuzzy msgid "Suppress some warnings for builtins" -msgstr "Supress printing filename" +msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:7 msgid "" @@ -38852,9 +35649,8 @@ msgid "Undefine NAME" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:12 -#, fuzzy msgid "Suppress all GNU extensions" -msgstr "Disable all GNU extensions" +msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:13 msgid "Set symbol lookup hash table size [509]" @@ -38869,9 +35665,8 @@ msgid "Produce a frozen state on FILE at end" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:16 -#, fuzzy msgid "Reload a frozen state from FILE at start" -msgstr "Read the patch from patchfile" +msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:17 msgid "Set debug level (no FLAGS implies 'aeq')" @@ -38886,9 +35681,8 @@ msgid "Restrict macro tracing size" msgstr "" #: /tmp/fish/implicit/share/completions/m4.fish:20 -#, fuzzy msgid "Trace NAME when it is defined" -msgstr "Test if function is defined" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:2 #: /tmp/fish/implicit/share/completions/systemctl.fish:38 @@ -38899,46 +35693,40 @@ msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:3 #: /tmp/fish/implicit/share/completions/systemctl.fish:39 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:3 -#, fuzzy msgid "Print a short help and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:4 #: /tmp/fish/implicit/share/completions/pactl.fish:9 #: /tmp/fish/implicit/share/completions/systemctl.fish:40 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:4 -#, fuzzy msgid "Print a short version and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:6 #: /tmp/fish/implicit/share/completions/systemctl.fish:22 -#, fuzzy msgid "Do not print header and footer" -msgstr "Dont print header" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:7 msgid "Don't ask for password for privileged operations" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:8 -#, fuzzy msgid "List running machines" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:9 -#, fuzzy msgid "List startable machine images" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:10 msgid "Also show machines starting with a '.'" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:11 -#, fuzzy msgid "Show information about machine" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:12 msgid "Do not ellipsize process tree entries" @@ -38953,28 +35741,24 @@ msgid "Formatting of journal output" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:15 -#, fuzzy msgid "Show properties of machines" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:16 -#, fuzzy msgid "Limit to certain properties" -msgstr "Disable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:17 msgid "Show all properties, even if not set" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:18 -#, fuzzy msgid "Start machine" -msgstr "Print machine name" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:19 -#, fuzzy msgid "Login to a machine" -msgstr "Log to tracefile" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:20 msgid "Enable machine to start at boot" @@ -38985,9 +35769,8 @@ msgid "Disable machine from starting at boot" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:22 -#, fuzzy msgid "Poweroff machine" -msgstr "Falha de energia" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:23 msgid "Reboot machine" @@ -38998,52 +35781,44 @@ msgid "Terminate machine (without shutting down)" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:25 -#, fuzzy msgid "Send signal to process in a machine" -msgstr "Bind address on local machine" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:26 msgid "Choose who to send the signal to" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:27 -#, fuzzy msgid "Signal to send" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:28 -#, fuzzy msgid "Bind-mount a directory to a machine" -msgstr "Bind address on local machine" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:29 -#, fuzzy msgid "Create destination directory" -msgstr "Create any missing directories" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:30 -#, fuzzy msgid "Apply read-only mount" -msgstr "Read only" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:31 msgid "Copy file or directory to a machine" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:32 -#, fuzzy msgid "Copy file or directory from a machine" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:33 -#, fuzzy msgid "Open a shell on a machine" -msgstr "Bind address on local machine" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:34 -#, fuzzy msgid "Show a list of locally installed machines" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:35 msgid "Show information about machine images (human-readable)" @@ -39054,43 +35829,36 @@ msgid "Show properties of machine images (machine-readable)" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:37 -#, fuzzy msgid "Clone a machine image" -msgstr "Print machine name" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:38 -#, fuzzy msgid "Rename a machine image" -msgstr "Print machine name" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:39 -#, fuzzy msgid "Mark or unmark machine image as read-only" -msgstr "Make caching db readonly" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:40 -#, fuzzy msgid "Remove machine images" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:41 msgid "Set size limit for machine image" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:42 -#, fuzzy msgid "Download a .tar container image" -msgstr "Download only tar file" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:43 -#, fuzzy msgid "Download a .raw container image" -msgstr "Download only tar file" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:44 -#, fuzzy msgid "Download a .dkr container image" -msgstr "Download only tar file" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:45 msgid "Import a .tar container image" @@ -39109,105 +35877,88 @@ msgid "Export a .raw container image" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:49 -#, fuzzy msgid "Specify compression format" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:50 -#, fuzzy msgid "Show running downloads, imports and exports" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:51 msgid "Abort running downloads, imports or exports" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:52 -#, fuzzy msgid "Verify image with specified method" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:53 msgid "Verify image (not available for dkr)" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:54 -#, fuzzy msgid "Specify index server" -msgstr "Specify X server" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:55 -#, fuzzy msgid "Overwrite existing machine image" -msgstr "Atualizar um pacote existente" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:1 -#, fuzzy msgid "Shows all available URL protocols" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:2 -#, fuzzy msgid "Lists all Magento modules" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:3 -#, fuzzy msgid "Lists all indexer modes" -msgstr "Print raw entry names" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:4 -#, fuzzy msgid "Shows all available packing modes" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:5 msgid "Shows all IDEs supported by magento" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:6 -#, fuzzy msgid "Shows all available magento tests" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:7 -#, fuzzy msgid "Shows all available magento theme areas" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:8 msgid "Shows all existing magento languages" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:9 -#, fuzzy msgid "Shows all available source theme file types" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:10 -#, fuzzy msgid "Shows all available deploy modes" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:11 -#, fuzzy msgid "Shows all available cache types" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:12 -#, fuzzy msgid "Shows all available verbosity levels" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:13 -#, fuzzy msgid "Shows all available output formats" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:14 -#, fuzzy msgid "Lists magento commands" -msgstr "Disable this command" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:15 msgid "Checks that prompt is not inside of magento command" @@ -39215,9 +35966,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:16 #: /tmp/fish/implicit/share/completions/p4.fish:23 -#, fuzzy msgid "Checks if prompt is in a specific command" -msgstr "Test if aptitude has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:17 #: /tmp/fish/implicit/share/completions/p4.fish:24 @@ -39226,100 +35976,84 @@ msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:18 #: /tmp/fish/implicit/share/completions/p4.fish:25 -#, fuzzy msgid "Adds a specific option for a command" -msgstr "Use function keys for commands" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:19 msgid "Checks if a parameter has been given already" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:20 -#, fuzzy msgid "Show help for a command" -msgstr "Set prompt command" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:21 -#, fuzzy msgid "Do not output any message" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:22 msgid "Increase verbosity: 1 for normal, 2 for verbose and 3 for debug" msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:24 -#, fuzzy msgid "Force colored output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/magento.fish:26 -#, fuzzy msgid "Don't ask any interactive question" -msgstr "Do no interactive prompting" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:1 -#, fuzzy msgid "Define" -msgstr "Define" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:2 -#, fuzzy msgid "Include directory" -msgstr "Include directory" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:3 -#, fuzzy msgid "Replace include directories" -msgstr "Replace include directories" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:4 msgid "Append dependencies to makefile" msgstr "Append dependencies to makefile" #: /tmp/fish/implicit/share/completions/makedepend.fish:5 -#, fuzzy msgid "Specify makefile" -msgstr "Specify makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:6 -#, fuzzy msgid "Prepend file to input" -msgstr "Prepend file to input" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:7 -#, fuzzy msgid "Object file suffix" -msgstr "Object file suffix" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:8 -#, fuzzy msgid "Object file prefix" -msgstr "Object file prefix" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:9 -#, fuzzy msgid "Starting string delimiter" -msgstr "Starting string delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:10 -#, fuzzy msgid "Line width" -msgstr "Line width" +msgstr "" #: /tmp/fish/implicit/share/completions/makedepend.fish:12 msgid "Warn about multiple inclusion" msgstr "Warn about multiple inclusion" #: /tmp/fish/implicit/share/completions/make.fish:1 -#, fuzzy msgid "Target" -msgstr "Target" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:2 -#, fuzzy msgid "Use file as makefile" -msgstr "Use file as makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:3 #: /tmp/fish/implicit/share/completions/tar.fish:15 @@ -39332,14 +36066,12 @@ msgid "Environment before makefile" msgstr "Environment before makefile" #: /tmp/fish/implicit/share/completions/make.fish:7 -#, fuzzy msgid "Search directory for makefile" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:8 -#, fuzzy msgid "Number of concurrent jobs" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:9 msgid "Continue after an error" @@ -39354,9 +36086,8 @@ msgid "Do not execute commands" msgstr "Do not execute commands" #: /tmp/fish/implicit/share/completions/make.fish:12 -#, fuzzy msgid "Ignore specified file" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:13 msgid "Print database" @@ -39379,127 +36110,108 @@ msgid "Touch files, don't run commands" msgstr "Touch files, don't run commands" #: /tmp/fish/implicit/share/completions/make.fish:20 -#, fuzzy msgid "Print working directory" -msgstr "Imprime o diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:21 -#, fuzzy msgid "Pretend file is modified" -msgstr "Pretend file is modified" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:1 -#, fuzzy msgid "Ignore missing or incomplete arch field" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:2 msgid "Clean up work files after build" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:3 -#, fuzzy msgid "Use alternate config " -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:4 -#, fuzzy msgid "Do not perform dependency checks" -msgstr "Don't do a dependency check" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:5 -#, fuzzy msgid "Do not extract source files" -msgstr "Do not del source files" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:6 msgid "Only perform integrity checks" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:7 -#, fuzzy msgid "Force rebuild of the package" -msgstr "Rebuild a package" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:8 -#, fuzzy msgid "Generate integrity checks" -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:9 -#, fuzzy msgid "Do not perform integrity checks" -msgstr "Do not use integrated preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:10 -#, fuzzy msgid "Do not verify checksums" -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:11 -#, fuzzy msgid "Do not verify PGP signatures" -msgstr "Don't verify patch signature" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:12 -#, fuzzy msgid "Display syntax and command line options" -msgstr "Display $ at end of line" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:13 msgid "No automatic bump of pkgver" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:14 -#, fuzzy msgid "Install the package after build" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:15 msgid "Enable makepkg build logging" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:16 -#, fuzzy msgid "Disable color in output messages" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:17 -#, fuzzy msgid "Only download and extract files" -msgstr "Download and extract a source" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:18 msgid "Use alternative " msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:19 -#, fuzzy msgid "Remove installed deps after build" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:20 msgid "Repackage without rebuilding" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:21 -#, fuzzy msgid "Install missing dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:22 msgid "Build a source-only tarball for AUR" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:23 -#, fuzzy msgid "Display the version and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:24 -#, fuzzy msgid "Remove the srcdir before building the package" -msgstr "Don't check dependencies before uninstalling the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:25 msgid "Build a source-only GPL tarball for AUR" @@ -39514,23 +36226,20 @@ msgid "Run the check function in the PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:28 -#, fuzzy msgid "Do not create the archive" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:29 msgid "Do not run the check function in the PKGBUILD" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:30 -#, fuzzy msgid "Sign the resulting package with gpg" -msgstr "Sign the patch with your gpg key" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:31 -#, fuzzy msgid "Do not create a signature for the package" -msgstr "Do not fail if signature is older than key" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:32 msgid "Specify a to use when signing" @@ -39549,19 +36258,16 @@ msgid "Passed to pacman: Install as dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:36 -#, fuzzy msgid "Passed to pacman: Do not display a progress bar" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:37 -#, fuzzy msgid "List all packages that would be built" -msgstr "Query an (uninstalled) package in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:38 -#, fuzzy msgid "Print SRCINFO to stdout" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:1 msgid "Program section" @@ -39624,14 +36330,12 @@ msgid "Pager" msgstr "Pager" #: /tmp/fish/implicit/share/completions/man.fish:17 -#, fuzzy msgid "Manual sections" -msgstr "Local section" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:18 -#, fuzzy msgid "Display all matches" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:19 msgid "Always reformat" @@ -39691,47 +36395,40 @@ msgid "Force color mode" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:4 -#, fuzzy msgid "Specify a different color set" -msgstr "Specify record separator" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:5 -#, fuzzy msgid "Specify a name of skin" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:6 -#, fuzzy msgid "Disable mouse support" -msgstr "Enable suspension support" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:7 msgid "Start the internal editor with FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:8 -#, fuzzy msgid "Display the compiled-in search paths" -msgstr "Display compression ratios" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:9 -#, fuzzy msgid "Display extended info about compiled-in paths" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:10 -#, fuzzy msgid "Display configure options" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:11 msgid "Reset softkeys to their default" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:12 -#, fuzzy msgid "Specify a keymap FILE" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:13 msgid "Use default hardcoded keys" @@ -39742,9 +36439,8 @@ msgid "Save the ftpfs dialog with the server in FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:15 -#, fuzzy msgid "Print the last working directory to FILE" -msgstr "Imprime o diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:16 msgid "Set alternative mode drawing of frameworks" @@ -39755,23 +36451,20 @@ msgid "Use the TERMCAP variable for terminal info" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:18 -#, fuzzy msgid "Disable use of the concurrent shell" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:19 -#, fuzzy msgid "Enable use of the concurrent shell" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:20 msgid "Start the internal viewer with FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:21 -#, fuzzy msgid "Display the version of the program" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:22 msgid "Force xterm mode" @@ -39786,18 +36479,16 @@ msgid "Compute and check message digest" msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:2 -#, fuzzy msgid "Read in binary mode" -msgstr "Standard mode" +msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:3 msgid "Read sums from files and check them" msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:4 -#, fuzzy msgid "Read in text mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:7 msgid "Warn about improperly formatted checksum lines" @@ -39808,9 +36499,8 @@ msgid "With --check, exit non-zero for any invalid input" msgstr "" #: /tmp/fish/implicit/share/completions/md5sum.fish:9 -#, fuzzy msgid "Display help text" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:1 msgid "Assemble a pre-existing array" @@ -39821,14 +36511,12 @@ msgid "Build a legacy array without superblocks" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:3 -#, fuzzy msgid "Create a new array" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:4 -#, fuzzy msgid "Select monitor mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:5 msgid "Change the size or shape of an active array" @@ -39839,14 +36527,12 @@ msgid "Manage devices in array, and possibly start it" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:7 -#, fuzzy msgid "Start all auto-detected arrays" -msgstr "Restricted mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:9 -#, fuzzy msgid "Display more detailed help" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:11 #: /tmp/fish/implicit/share/completions/obnam.fish:47 @@ -39855,165 +36541,136 @@ msgid "Be more verbose" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:13 -#, fuzzy msgid "Force operation" -msgstr "Foreground operation" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:14 -#, fuzzy msgid "Specify config file or directory" -msgstr "Specify config file" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:15 -#, fuzzy msgid "Scan for missing information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:16 -#, fuzzy msgid "Set metadata style to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:17 msgid "Provide home host identity" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:18 -#, fuzzy msgid "Give name format preference" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:19 -#, fuzzy msgid "Give cluster name" -msgstr "Service name" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:20 -#, fuzzy msgid "Specify the number of active devices" -msgstr "Specify users for query" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:21 -#, fuzzy msgid "Specify the number of spare devices" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:22 -#, fuzzy msgid "Specify the space to use from each drive" -msgstr "Specify root directory for rpm operations" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:23 -#, fuzzy msgid "Specify the size made available on the array" -msgstr "Specifies the number of data bytes to be sent" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:24 -#, fuzzy msgid "Specify the chunk size" -msgstr "Specify APT list dir" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:25 -#, fuzzy msgid "Specify rounding factor" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:26 -#, fuzzy msgid "Specify RAID level" -msgstr "Specify X server" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:27 -#, fuzzy msgid "Specify data layout" -msgstr "Specify line-length" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:28 -#, fuzzy msgid "Specify file for write-intent bitmap" -msgstr "Specify port for web interface" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:29 -#, fuzzy msgid "Specify chunksize of bitmap" -msgstr "Specify sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:30 -#, fuzzy msgid "Prefer reading from other devices than these" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:31 -#, fuzzy msgid "Enable writes on array or device" -msgstr "File is character device" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:32 -#, fuzzy msgid "Disable writes on array" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:33 -#, fuzzy msgid "Enable write-behind mode" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:34 msgid "Assume the array is clean" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:35 -#, fuzzy msgid "Use this file as a backup" -msgstr "Use file as makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:36 -#, fuzzy msgid "Specify start of array data" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:37 msgid "Resume frozen --grow command" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:38 -#, fuzzy msgid "Set array name" -msgstr "Service name" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:39 -#, fuzzy msgid "Run array despite warnings" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:40 -#, fuzzy msgid "Give instruction for device file" -msgstr "Action for devices" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:41 -#, fuzzy msgid "Add devices to array" -msgstr "Dispositivo bloco" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:42 -#, fuzzy msgid "Specify max nodes in the cluster" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:43 -#, fuzzy msgid "Specify journal device for RAID-4/5/6 array" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:44 msgid "UUID of array to assemble" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:45 -#, fuzzy msgid "Minor number of array device" -msgstr "Mostra inode dos arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:46 msgid "Refuse to start without all drives" @@ -40024,38 +36681,32 @@ msgid "Do not ask for backup file, unavailable" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:48 -#, fuzzy msgid "Update superblock properties" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:49 -#, fuzzy msgid "Freeze --grow command" -msgstr "Select by command" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:50 -#, fuzzy msgid "Test mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:51 -#, fuzzy msgid "Hot-add listed devices" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:52 msgid "Re-add a previously removed device" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:53 -#, fuzzy msgid "Hot-add listed devices as spare" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:54 -#, fuzzy msgid "Remove listed inactive devices" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:55 msgid "Mark listed devices as faulty" @@ -40070,56 +36721,48 @@ msgid "Give devices as replacement" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:58 -#, fuzzy msgid "Confirm existence of device" -msgstr "Action for devices" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:59 msgid "Examine device for md use" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:60 -#, fuzzy msgid "Print details on array" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:61 -#, fuzzy msgid "Print details on platform capabilities" -msgstr "Set playlist" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:62 msgid "Format data output as key=value pairs" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:63 -#, fuzzy msgid "Print content of device metadata" -msgstr "Print important dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:64 msgid "Fix examination for buggy SPARC 2.2 kernel RAID" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:65 -#, fuzzy msgid "Print report about bitmap" -msgstr "Print time of last boot" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:66 -#, fuzzy msgid "List recorded bad blocks" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:67 -#, fuzzy msgid "Dump metadata to directory" -msgstr "Target directory" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:68 -#, fuzzy msgid "Restore metadata from directory" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:69 msgid "Deactivate array" @@ -40130,28 +36773,24 @@ msgid "Erase possible superblock" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:71 -#, fuzzy msgid "Delete subarray" -msgstr "Delete from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:72 -#, fuzzy msgid "Update subarray" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:73 -#, fuzzy msgid "Wait for pending operations" -msgstr "Foreground operation" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:74 msgid "Mark array as clean ASAP" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:75 -#, fuzzy msgid "Set sync action for md devices" -msgstr "Action for devices" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:76 msgid "Rebuild /run/mdadm/map" @@ -40168,9 +36807,8 @@ msgstr "" # proc.cpp:1279 # proc.cpp:1305 #: /tmp/fish/implicit/share/completions/mdadm.fish:78 -#, fuzzy msgid "Mail address to send alerts to" -msgstr "Ponteiro de lista de processo" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:79 msgid "Program to run in case of an event" @@ -40201,25 +36839,21 @@ msgid "Check arrays only once" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:86 -#, fuzzy msgid "Do not move spares between arrays" -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:87 -#, fuzzy msgid "Be more concise" -msgstr "Do not overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:1 #: /tmp/fish/implicit/share/completions/mdbook.fish:4 -#, fuzzy msgid "Prints help" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:2 -#, fuzzy msgid "Prints version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:3 msgid "Build book from markdown files" @@ -40230,9 +36864,8 @@ msgid "Create boilerplate structure and files in directory" msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:6 -#, fuzzy msgid "Skip confirmation prompts" -msgstr "Ask confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:7 msgid "Copy default theme into source folder" @@ -40255,85 +36888,72 @@ msgid "Test that code samples compile" msgstr "" #: /tmp/fish/implicit/share/completions/mdbook.fish:12 -#, fuzzy msgid "Watch file changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:2 -#, fuzzy msgid "Ignore unknown options" -msgstr "Opção desconhecida: " +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:3 -#, fuzzy msgid "Do not reveal the resulting package in the Finder" -msgstr "Do not pad the following tracks - the default" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:4 msgid "Avoid restricted operations such as heap" msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:5 -#, fuzzy msgid "Skip gathering system.log" -msgstr "Skip other filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:6 -#, fuzzy msgid "Prints version of mddiagnose" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:7 msgid "Minimal report" msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:8 -#, fuzzy msgid "Evaluate indexing information for path" -msgstr "List inode information" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:9 -#, fuzzy msgid "Evaluate permissions information for path" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:10 -#, fuzzy msgid "Write the diagnostic to the specified path" -msgstr "Create window on the specified display" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:1 -#, fuzzy msgid "Fetches the value of the specified attribute" -msgstr "Don't preserve the specified attributes" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:2 msgid "Query only reports matching items count" msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:3 -#, fuzzy msgid "Search only within given directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:4 msgid "Query should stay active" msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:5 -#, fuzzy msgid "Search on file name only" -msgstr "Search packagename only" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:6 -#, fuzzy msgid "Reprint results on live update" -msgstr "Print flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:7 -#, fuzzy msgid "Show contents of smart folder" -msgstr "List contents of directory" +msgstr "" #: /tmp/fish/implicit/share/completions/mdfind.fish:8 msgid "Use NUL (\\0) as a path separator, for use with xargs -0" @@ -40352,53 +36972,45 @@ msgid "Import files using the listed plugin" msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:2 -#, fuzzy msgid "Print timing information for this run" -msgstr "Print out history information for a module" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:3 -#, fuzzy msgid "Print out the list of all of the attributes and exit" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:4 -#, fuzzy msgid "Print out the schema file and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:5 msgid "Ask the server to reimport files for UTIs claimed by the listed plugin" msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:6 -#, fuzzy msgid "Print out performance information gathered during the run" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:7 -#, fuzzy msgid "Print the list of installed importers and exit" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:8 #: /tmp/fish/implicit/share/completions/pkg-config.fish:7 -#, fuzzy msgid "Print debugging information" -msgstr "Print debugging info" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:9 msgid "Dont send the imported attributes to the data store" msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:10 -#, fuzzy msgid "Wait for the specified interval between scanning files" -msgstr "Wait specified interval of seconds between sending each packet" +msgstr "" #: /tmp/fish/implicit/share/completions/mdimport.fish:11 -#, fuzzy msgid "Write the imported attributes to a file" -msgstr "Write prototypes to file" +msgstr "" #: /tmp/fish/implicit/share/completions/mdls.fish:1 msgid "Print only the matching metadata attribute value" @@ -40413,9 +37025,8 @@ msgid "Sets a marker string to be used when a requested attribute is null" msgstr "" #: /tmp/fish/implicit/share/completions/mdls.fish:4 -#, fuzzy msgid "Output attributes in XML format to file" -msgstr "Output rss-data to file" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:1 msgid "Publish metadata" @@ -40430,14 +37041,12 @@ msgid "Disable Spotlight activity for volume" msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:4 -#, fuzzy msgid "Erase and rebuild index" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:5 -#, fuzzy msgid "Print indexing status" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:6 msgid "Resolve files from file id with an optional volume path or device id" @@ -40448,14 +37057,12 @@ msgid "Apply command to all volumes" msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:8 -#, fuzzy msgid "Apply command to all stores on the specified volume" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/mdutil.fish:9 -#, fuzzy msgid "Display verbose information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:1 msgid "Log to standard error as well as files" @@ -40466,9 +37073,8 @@ msgid "When logging hits line file:N, emit a stack trace (default :0)" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:3 -#, fuzzy msgid "Write log files in this directory" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:4 msgid "Log to standard error instead of files" @@ -40483,15 +37089,12 @@ msgid "Logs at or above this threshold go to stderr (default 2)" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:7 -#, fuzzy msgid "Log level for logs" -msgstr "Diretório de usuário para" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:8 -#, fuzzy msgid "Comma-separated list of pattern=N settings for file-filtered logging" msgstr "" -"Comma-separated list of package installation states to follow recursively" #: /tmp/fish/implicit/share/completions/minikube.fish:9 msgid "Disable the addon w/ADDON_NAME within minikube" @@ -40549,9 +37152,8 @@ msgid "Unsets an individual value in a minikube config file" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:24 -#, fuzzy msgid "Display values currently set in the minikube config file" -msgstr "Display all currently defined trap handlers" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:29 msgid "Go template format string for the config view output" @@ -40562,18 +37164,16 @@ msgid "Display the kubernetes dashboard URL instead of opening it" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:31 -#, fuzzy msgid "Add machine IP to NO_PROXY environment variable" -msgstr "Modifica variáveis de ambiente" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:32 msgid "Force environment to be configured for a specified shell" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:33 -#, fuzzy msgid "Unset variables" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:35 msgid "List the URLs for the services in local cluster" @@ -40666,9 +37266,8 @@ msgid "The CIDR to be used for the VM" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:56 -#, fuzzy msgid "The KVM network name" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:57 msgid "The hyperv virtual switch name" @@ -40680,15 +37279,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:1 #: /tmp/fish/implicit/share/completions/mix.fish:58 -#, fuzzy msgid "Starts all registered apps" -msgstr "Restricted mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:2 #: /tmp/fish/implicit/share/completions/mix.fish:59 -#, fuzzy msgid "Lists all archives" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:3 #: /tmp/fish/implicit/share/completions/mix.fish:60 @@ -40697,69 +37294,58 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:4 #: /tmp/fish/implicit/share/completions/mix.fish:61 -#, fuzzy msgid "Installs an archive locally" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:5 #: /tmp/fish/implicit/share/completions/mix.fish:62 -#, fuzzy msgid "Uninstalls archives" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:6 #: /tmp/fish/implicit/share/completions/mix.fish:63 -#, fuzzy msgid "Deletes generated application files" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:7 #: /tmp/fish/implicit/share/completions/mix.fish:64 -#, fuzzy msgid "Executes the given command" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:8 #: /tmp/fish/implicit/share/completions/mix.fish:65 -#, fuzzy msgid "Compiles source files" -msgstr "Compile source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:9 #: /tmp/fish/implicit/share/completions/mix.fish:66 -#, fuzzy msgid "Lists dependencies and their status" -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:10 #: /tmp/fish/implicit/share/completions/mix.fish:67 -#, fuzzy msgid "Deletes the given dependencies' files" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:11 #: /tmp/fish/implicit/share/completions/mix.fish:68 -#, fuzzy msgid "Compiles dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:12 #: /tmp/fish/implicit/share/completions/mix.fish:69 -#, fuzzy msgid "Gets all out of date dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:13 #: /tmp/fish/implicit/share/completions/mix.fish:70 -#, fuzzy msgid "Unlocks the given dependencies" -msgstr "Correct broken dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:14 #: /tmp/fish/implicit/share/completions/mix.fish:71 -#, fuzzy msgid "Updates the given dependencies" -msgstr "Update cache and check dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:15 #: /tmp/fish/implicit/share/completions/mix.fish:72 @@ -40773,15 +37359,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:17 #: /tmp/fish/implicit/share/completions/mix.fish:74 -#, fuzzy msgid "Prints help information for tasks" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:18 #: /tmp/fish/implicit/share/completions/mix.fish:75 -#, fuzzy msgid "Loads and persists the given configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:19 #: /tmp/fish/implicit/share/completions/mix.fish:76 @@ -40790,9 +37374,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:20 #: /tmp/fish/implicit/share/completions/mix.fish:77 -#, fuzzy msgid "Installs Hex locally" -msgstr "Instalar novo pacote" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:21 #: /tmp/fish/implicit/share/completions/mix.fish:78 @@ -40806,9 +37389,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:23 #: /tmp/fish/implicit/share/completions/mix.fish:80 -#, fuzzy msgid "Creates a new Elixir project" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:24 #: /tmp/fish/implicit/share/completions/mix.fish:81 @@ -40817,9 +37399,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:25 #: /tmp/fish/implicit/share/completions/mix.fish:82 -#, fuzzy msgid "Runs the given file or expression" -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:26 #: /tmp/fish/implicit/share/completions/mix.fish:83 @@ -40827,24 +37408,20 @@ msgid "Runs a project's tests" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:27 -#, fuzzy msgid "specify input directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:28 -#, fuzzy msgid "specify output file name" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:29 -#, fuzzy msgid "skip compilation" -msgstr "Ask confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:30 -#, fuzzy msgid "Clean everything, including dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:31 #: /tmp/fish/implicit/share/completions/mix.fish:48 @@ -40875,9 +37452,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:37 -#, fuzzy msgid "loads the given configuration file" -msgstr "Produce sample configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:38 msgid "evaluates the given code" @@ -40896,14 +37472,12 @@ msgid "does not compile even if files require compilation" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:42 -#, fuzzy msgid "does not check dependencies" -msgstr "Update cache and check dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:43 -#, fuzzy msgid "does not halt the system after running the command" -msgstr "Do not fixate the disk after writing the tracks" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:44 msgid "does not start applications after compilation" @@ -40926,29 +37500,24 @@ msgid "do not start applications after compilation" msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:51 -#, fuzzy msgid "disable color in the output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:52 -#, fuzzy msgid "enable color in the output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:53 -#, fuzzy msgid "include tests that match the filter" -msgstr "Exclude files thet match pattern in file" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:54 -#, fuzzy msgid "exclude tests that match the filter" -msgstr "Exclude files thet match pattern in file" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:55 -#, fuzzy msgid "run only tests that match the filter" -msgstr "Exclude files thet match pattern in file" +msgstr "" #: /tmp/fish/implicit/share/completions/mix.fish:56 msgid "seeds the random number generator used to randomize test order" @@ -40959,9 +37528,8 @@ msgid "set the timeout for the tests" msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:1 -#, fuzzy msgid "Output version" -msgstr "Output sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:2 #: /tmp/fish/implicit/share/completions/mkdir.fish:6 @@ -40975,9 +37543,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:4 #: /tmp/fish/implicit/share/completions/mkdir.fish:8 -#, fuzzy msgid "Print a message for each created directory" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdir.fish:9 msgid "" @@ -40985,97 +37552,80 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:1 -#, fuzzy msgid "Disable alignment" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:2 -#, fuzzy msgid "Use Atari variation" -msgstr "Use primary selection" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:3 msgid "Select location of backup sector" msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:4 -#, fuzzy msgid "Check for bad blocks" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:5 -#, fuzzy msgid "Create file given as device" -msgstr "Pretend file is modified" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:6 -#, fuzzy msgid "Specify drive number" -msgstr "Specify a dir" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:7 -#, fuzzy msgid "Specify number of FATs" -msgstr "Specify trust model" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:8 -#, fuzzy msgid "Specify FAT size" -msgstr "Specify APT list dir" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:9 -#, fuzzy msgid "Specify number of hidden sectors" -msgstr "Specify users for query" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:10 -#, fuzzy msgid "Specify volume ID" -msgstr "Specify conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:11 msgid "Force to use entire disk" msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:12 -#, fuzzy msgid "Read bad blocks list from given file" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:13 -#, fuzzy msgid "Specify file containing non bootable message" -msgstr "Specify commit message" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:14 -#, fuzzy msgid "Specify media type" -msgstr "Specify man path" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:15 -#, fuzzy msgid "Specify volume name" -msgstr "Definir nome do volume" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:16 -#, fuzzy msgid "Specify number of entries available in root directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:17 -#, fuzzy msgid "Specify number of reserved sectors" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:18 -#, fuzzy msgid "Specify number of sector per cluster" -msgstr "Specifies the number of data bytes to be sent" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:19 -#, fuzzy msgid "Specify number of bytes per logical sector" -msgstr "Specifies the number of data bytes to be sent" +msgstr "" #: /tmp/fish/implicit/share/completions/mkdosfs.fish:21 msgid "Use constants for randomly generated data" @@ -41094,9 +37644,8 @@ msgid "Set directory as the location where the initramfs is built" msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:4 -#, fuzzy msgid "Generate a CPIO image as filename" -msgstr "Generate master file" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:5 msgid "Output help for a hook" @@ -41111,9 +37660,8 @@ msgid "Use kernelversion, instead of the current running kernel" msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:8 -#, fuzzy msgid "List all available hooks" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:9 msgid "Display modules found via autodetection" @@ -41121,9 +37669,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:10 #: /tmp/fish/implicit/share/completions/rc-service.fish:4 -#, fuzzy msgid "Disable color output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:11 msgid "Process all presets contained in /etc/mkinitcpio.d" @@ -41134,9 +37681,8 @@ msgid "Build initramfs image(s) according to specified preset" msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:13 -#, fuzzy msgid "Specifies the root directory to find modules in" -msgstr "Specify the repository directory in which to run" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:14 msgid "Skip hooks when generating the image" @@ -41153,37 +37699,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:17 #: /tmp/fish/implicit/share/completions/mvn.fish:34 #: /tmp/fish/implicit/share/completions/termite.fish:2 -#, fuzzy msgid "Display version information" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/mkinitcpio.fish:19 msgid "Override the compression method with the compress program" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:1 -#, fuzzy msgid "Show version information" -msgstr "Show apropos information" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:3 msgid "Extract tracks to external files" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:4 -#, fuzzy msgid "Extract tags as XML" -msgstr "Extract to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:5 -#, fuzzy msgid "Extract attachments" -msgstr "Extract from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:6 -#, fuzzy msgid "Extract chapters as XML" -msgstr "Extract all permissions" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:7 msgid "Extract chapters and tags as CUE sheet" @@ -41194,14 +37735,12 @@ msgid "Extract timecodes of a track as timecode v2 file" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:9 -#, fuzzy msgid "Extract cue information as text file" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:10 -#, fuzzy msgid "Parse the whole file instead of relying on the index" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:11 #: /tmp/fish/implicit/share/completions/rsync.fish:1 @@ -41210,28 +37749,24 @@ msgid "Increase verbosity" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:12 -#, fuzzy msgid "Suppress status output" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:13 msgid "Force the translations for 'code' to be used" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:14 -#, fuzzy msgid "Charset for strings on the command line" -msgstr "Obtém ou altera o buffer da linha de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:15 -#, fuzzy msgid "Outputs messages in specified charset" -msgstr "Output profiling information to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:16 -#, fuzzy msgid "Redirect all messages into a file" -msgstr "Append all messages to logfile" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:17 msgid "Convert text subtitles to a charset" @@ -41246,9 +37781,8 @@ msgid "Keep only the BlockAdditions up to the specified level" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:20 -#, fuzzy msgid "Extract the data to a raw file" -msgstr "Extrair arquivos do arquivo de lista" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:21 msgid "Extract the data to a raw file including the CodecPrivate as header" @@ -41259,15 +37793,13 @@ msgid "Exports the chapter information in a simple format" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:23 -#, fuzzy msgid "Uses the chapter names of the specified language" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:2 #: /tmp/fish/implicit/share/completions/yarn.fish:2 -#, fuzzy msgid "output the version number" -msgstr "Número da versão" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:3 msgid "force all tests to take a callback (async) or return a promise" @@ -41282,23 +37814,20 @@ msgid "force disabling of colors" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:6 -#, fuzzy msgid "enable growl notification support" -msgstr "Enable suspension support" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:7 msgid " reporter-specific options" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:8 -#, fuzzy msgid "specify the reporter to use" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:9 -#, fuzzy msgid "sort test files" -msgstr "Listar arquivos swap" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:10 msgid "bail after first test failure" @@ -41309,18 +37838,16 @@ msgid "enable node's debugger, synonym for node --debug" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:12 -#, fuzzy msgid "only run tests matching " -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:13 msgid "only run tests containing " msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:14 -#, fuzzy msgid "expose gc extension" -msgstr "Ordena por extensão" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:15 msgid "inverts --grep and --fgrep matches" @@ -41343,18 +37870,16 @@ msgid "specify user-interface (bdd|tdd|qunit|exports)" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:20 -#, fuzzy msgid "watch files for changes" -msgstr "Patch local changes" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:21 msgid "check for global variable leaks" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:22 -#, fuzzy msgid "display the full stack trace" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:23 msgid "use the given module(s) to compile files" @@ -41383,18 +37908,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:29 -#, fuzzy msgid "include ICU data" -msgstr "Include path" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:30 msgid "display actual/expected differences inline within each string" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:31 -#, fuzzy msgid "display available interfaces" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:32 msgid "silence deprecation warnings" @@ -41410,9 +37933,8 @@ msgid "disables timeouts, given implicitly with --debug" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:35 -#, fuzzy msgid "specify opts path" -msgstr "Specify man path" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:36 msgid "enable perf linux profiler (basic support)" @@ -41427,14 +37949,12 @@ msgid "Time events including external callbacks" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:39 -#, fuzzy msgid "include sub directories" -msgstr "Do not include subdirectory size" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:40 -#, fuzzy msgid "display available reporters" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:41 msgid "set numbers of time to retry a failed test case" @@ -41445,62 +37965,52 @@ msgid "throw an exception anytime a deprecated function is used" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:43 -#, fuzzy msgid "trace function calls" -msgstr "Erase function" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:44 -#, fuzzy msgid "show stack traces on deprecations" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:45 -#, fuzzy msgid "enforce strict mode" -msgstr "Restricted mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:46 msgid "additional extensions to monitor with --watch" msgstr "" #: /tmp/fish/implicit/share/completions/mocha.fish:47 -#, fuzzy msgid "wait for async suite definition" -msgstr "Editar definição de função" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:1 -#, fuzzy msgid "Print program version and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:2 -#, fuzzy msgid "Print usage and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:3 -#, fuzzy msgid "Turn on logging to a file" -msgstr "Run in login mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:4 -#, fuzzy msgid "Run only the server" -msgstr "Options for the keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:5 msgid "Run server in foreground, log to stdout" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:6 -#, fuzzy msgid "Use the specified sound driver" -msgstr "Usa servidor de chaves especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:7 -#, fuzzy msgid "Start in MusicDir" -msgstr "Standard mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:8 msgid "" @@ -41513,9 +38023,8 @@ msgid "Add the files given on command line to the queue" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:10 -#, fuzzy msgid "Clear the playlist and exit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:11 msgid "Start playing from the first item on the playlist" @@ -41538,9 +38047,8 @@ msgid "Play previous song" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:16 -#, fuzzy msgid "Shutdown the server" -msgstr "Options for the keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:17 msgid "" @@ -41548,19 +38056,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:18 -#, fuzzy msgid "Use the specified config file instead of the default" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:19 msgid "NAME=VALUE Override configuration option NAME with VALUE" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:20 -#, fuzzy msgid "Use the specified MOC directory instead of the default" msgstr "" -"Usa o arquivo especificado em vez do banco de dados de confiança padrão" #: /tmp/fish/implicit/share/completions/mocp.fish:21 msgid "Pause" @@ -41591,18 +38096,16 @@ msgid "Use ASCII characters to draw lines" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:28 -#, fuzzy msgid "Print the information about the currently played file" -msgstr "Output extra information about the work being done" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:29 msgid "Print the formatted information about the currently played file" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:30 -#, fuzzy msgid "Alias for -a" -msgstr "Nome alternativo para atq" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:31 msgid "Seek by N seconds (can be negative)" @@ -41613,53 +38116,44 @@ msgid "N{%,s} Jump to some position of the current track" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:33 -#, fuzzy msgid "Turn on a control" -msgstr "Warning control" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:34 -#, fuzzy msgid "Turn off a control" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:35 -#, fuzzy msgid "Toggle a control" -msgstr "Testa uma condição" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:1 -#, fuzzy msgid "Print only 'author'" -msgstr "Mostra autor" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:2 -#, fuzzy msgid "Print only 'description'" -msgstr "Set function description" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:3 -#, fuzzy msgid "Print only 'license'" -msgstr "Print license" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:4 -#, fuzzy msgid "Print only 'parm'" -msgstr "Print only rcs filename" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:5 -#, fuzzy msgid "Print only 'filename'" -msgstr "Print only rcs filename" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:6 msgid "Use \\0 instead of \\n" msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:7 -#, fuzzy msgid "Print only provided FIELD" -msgstr "Print only file info" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:9 msgid "Use DIR as filesystem root for /lib/modules" @@ -41691,28 +38185,24 @@ msgid "Remove modules" msgstr "Remove modules" #: /tmp/fish/implicit/share/completions/modprobe.fish:10 -#, fuzzy msgid "Ignore all version information" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:11 -#, fuzzy msgid "Ignore version magic information" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:12 msgid "Ignore module interface version" msgstr "Ignore module interface version" #: /tmp/fish/implicit/share/completions/modprobe.fish:13 -#, fuzzy msgid "List all modules matching the given wildcard" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:14 -#, fuzzy msgid "Insert modules matching the given wildcard" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:15 msgid "Restrict wildcards to specified directory" @@ -41723,9 +38213,8 @@ msgid "Send error messages through syslog" msgstr "Send error messages through syslog" #: /tmp/fish/implicit/share/completions/modprobe.fish:17 -#, fuzzy msgid "Specify kernel version" -msgstr "Specify X server" +msgstr "" #: /tmp/fish/implicit/share/completions/modprobe.fish:18 msgid "List dependencies of module" @@ -41765,9 +38254,8 @@ msgid "Adaptively resize image with data dependent triangulation [geometry]" msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:89 -#, fuzzy msgid "Automatically orient image" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/montage.fish:10 msgid "Alternate image colorsapce [type]" @@ -41812,9 +38300,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/montage.fish:76 -#, fuzzy msgid "Set the image size [geometry]" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/montage.fish:82 msgid "Simulate a Polaroid picture [angle]" @@ -41880,9 +38367,8 @@ msgid "Use a particular server-side UDP port or port range" msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:4 -#, fuzzy msgid "Mount file systems in fstab" -msgstr "Mount filesystems in fstab" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:5 msgid "Fork process for each mount" @@ -41901,19 +38387,16 @@ msgid "Do not write mtab" msgstr "Do not write mtab" #: /tmp/fish/implicit/share/completions/mount.fish:9 -#, fuzzy msgid "Tolerate sloppy mount options" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:10 -#, fuzzy msgid "Read only" -msgstr "Read only" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:11 -#, fuzzy msgid "Read/Write mode" -msgstr "Read/Write mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mount.fish:12 msgid "Mount partition with specified label" @@ -41965,9 +38448,8 @@ msgid "Full screen" msgstr "Full screen" #: /tmp/fish/implicit/share/completions/mplayer.fish:10 -#, fuzzy msgid "Set playlist" -msgstr "Set system" +msgstr "" #: /tmp/fish/implicit/share/completions/mplayer.fish:11 msgid "Audio language" @@ -42006,9 +38488,8 @@ msgid "Override framerate" msgstr "Override framerate" #: /tmp/fish/implicit/share/completions/mplayer.fish:20 -#, fuzzy msgid "Build index if unavailable" -msgstr "Rebuild index files" +msgstr "" #: /tmp/fish/implicit/share/completions/mplayer.fish:21 msgid "Load index from file" @@ -42023,9 +38504,8 @@ msgid "Rebuild index and save to file" msgstr "Rebuild index and save to file" #: /tmp/fish/implicit/share/completions/mplayer.fish:24 -#, fuzzy msgid "Seek to given time position" -msgstr "Seek to given time position" +msgstr "" #: /tmp/fish/implicit/share/completions/mplayer.fish:25 msgid "TV capture mode" @@ -42058,56 +38538,48 @@ msgid "Audio output" msgstr "Saída de áudio" #: /tmp/fish/implicit/share/completions/msgfmt.fish:1 -#, fuzzy msgid "Add specified directory to list for input files search" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:2 -#, fuzzy msgid "Generate a Java ResourceBundle class" -msgstr "Generate source index file" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:3 msgid "Like --java, and assume Java2 (JDK 1.2 or higher)" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:4 -#, fuzzy msgid "Generate a .NET .dll file" -msgstr "Generate master file" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:5 -#, fuzzy msgid "Generate a .NET .resources file" -msgstr "Generate source index file" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:6 -#, fuzzy msgid "Generate a tcl/msgcat .msg file" -msgstr "Generate master file" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:7 -#, fuzzy msgid "Generate a Qt .qm file" -msgstr "Generate master file" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:9 msgid "Enable strict Uniforum mode" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:10 -#, fuzzy msgid "Resource name" -msgstr "Set volume name" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:11 msgid "Locale name, either language or language_COUNTRY" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:12 -#, fuzzy msgid "Base directory for output" -msgstr "File descriptor for input" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:13 msgid "Input files are in Java .properties syntax" @@ -42145,9 +38617,8 @@ msgid "Check presence of keyboard accelerators for menu items" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:21 -#, fuzzy msgid "Use fuzzy entries in output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:22 msgid "Alignment" @@ -42162,9 +38633,8 @@ msgid "Print statistics about translations" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:27 -#, fuzzy msgid "Increase verbosity level" -msgstr "Output sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:1 #: /tmp/fish/implicit/share/completions/mutt.fish:16 @@ -42177,24 +38647,20 @@ msgid "Specify a blind-carbon-copy (BCC) recipient" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:3 -#, fuzzy msgid "Print the value of all configuration options to stdout" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:5 -#, fuzzy msgid "Bypass the system configuration file" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:6 -#, fuzzy msgid "Resume a postponed message" -msgstr "Replace a log message" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:7 -#, fuzzy msgid "Open a mailbox in read-only mode" -msgstr "Open folder read-only" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:8 msgid "Display the Mutt version number and compile-time definitions" @@ -42229,9 +38695,8 @@ msgid "Run command after processing of initialization files" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:18 -#, fuzzy msgid "Specify which mailbox to load" -msgstr "Specify sendmail command" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:19 msgid "Specify an initialization file to read instead of ~/.muttrc" @@ -42246,19 +38711,16 @@ msgid "Specify a file to include into the body of a message" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:22 -#, fuzzy msgid "Specify a default mailbox type" -msgstr "Specify destination email" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:23 -#, fuzzy msgid "Query a configuration variables value" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:24 -#, fuzzy msgid "Specify the subject of the message" -msgstr "Specify commit message" +msgstr "" #: /tmp/fish/implicit/share/completions/mv.fish:1 msgid "Make backup of each existing destination file" @@ -42269,18 +38731,16 @@ msgid "Do not prompt before overwriting" msgstr "Do not prompt before overwriting" #: /tmp/fish/implicit/share/completions/mv.fish:4 -#, fuzzy msgid "Answer for overwrite questions" -msgstr "Answer for overwrite questions" +msgstr "" #: /tmp/fish/implicit/share/completions/mv.fish:5 msgid "Remove trailing slashes from source" msgstr "Remove trailing slashes from source" #: /tmp/fish/implicit/share/completions/mv.fish:6 -#, fuzzy msgid "Backup suffix" -msgstr "Backup suffix" +msgstr "" #: /tmp/fish/implicit/share/completions/mv.fish:7 msgid "Target directory" @@ -42301,9 +38761,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:3 -#, fuzzy msgid "Run in non-interactive (batch) mode" -msgstr "Run in noninteractive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:4 msgid "The id of the build strategy to use." @@ -42325,14 +38784,12 @@ msgid "Ineffective, only kept for backward compatibility" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:8 -#, fuzzy msgid "Define a system property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:9 -#, fuzzy msgid "Produce execution error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:10 msgid "Encrypt master security password" @@ -42365,9 +38822,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:17 #: /tmp/fish/implicit/share/completions/ruby-build.fish:5 -#, fuzzy msgid "Display help information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:18 msgid "Log file to where all build output will go." @@ -42380,9 +38836,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:20 -#, fuzzy msgid "Do not recurse into sub-projects" -msgstr "Do not export variable to subprocess" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:23 msgid "Suppress SNAPSHOT updates" @@ -42400,14 +38855,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:26 -#, fuzzy msgid "Quiet output - only show errors" -msgstr "Force to continue on some errors" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:27 -#, fuzzy msgid "Resume reactor from specified project" -msgstr "Restrict wildcards to specified directory" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:28 msgid "Alternate path for the user settings file" @@ -42432,9 +38885,8 @@ msgid "Display version information WITHOUT stopping build" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:35 -#, fuzzy msgid "Produce execution debug output" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:36 msgid "Comma-delimited list of profiles to activate" @@ -42457,9 +38909,8 @@ msgid "Run surefire tests with debugging on port 5005" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:41 -#, fuzzy msgid "Skip Javadoc generation" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:42 msgid "" @@ -42498,14 +38949,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:48 -#, fuzzy msgid "Installs the artifact in the remote repository." -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:49 -#, fuzzy msgid "Deploys an artifact to remote repository." -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:50 msgid "" @@ -42534,9 +38983,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:55 -#, fuzzy msgid "Installs a file in the local repository." -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:56 msgid "" @@ -42742,19 +39190,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:92 -#, fuzzy msgid "Generate a changelog report." -msgstr "Create summary change report" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:93 -#, fuzzy msgid "Generate a file activity report." -msgstr "Generate a dotty graph" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:94 -#, fuzzy msgid "Generate a developer activity report." -msgstr "Generate a dotty graph" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:95 msgid "" @@ -43011,9 +39456,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:139 -#, fuzzy msgid "Creates a PMD report." -msgstr "Create summary change report" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:140 msgid "Generates the Project Continuous Integration System report." @@ -43047,9 +39491,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:147 -#, fuzzy msgid "Generates the project index page." -msgstr "Generate source index file" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:148 msgid "Generates the Project Issue Tracking report." @@ -43112,9 +39555,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:161 -#, fuzzy msgid "Generate Ant build files." -msgstr "Generate contents file" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:162 msgid "Clean all Ant build files." @@ -43186,9 +39628,8 @@ msgid "Build a JAR from the current Archetype project." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:173 -#, fuzzy msgid "Updates the local catalog" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:174 msgid "" @@ -43363,9 +39804,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:194 -#, fuzzy msgid "Displays the list of dependencies for this project." -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:195 msgid "" @@ -43388,9 +39828,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:198 -#, fuzzy msgid "Goal that resolves the project dependencies from the repository." -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:199 msgid "" @@ -43398,14 +39837,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:200 -#, fuzzy msgid "Goal that resolves the project source dependencies from the repository." -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:201 -#, fuzzy msgid "Displays the dependency tree for this project." -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:202 msgid "" @@ -43559,9 +39996,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:228 -#, fuzzy msgid "Apply one or more patches to project sources." -msgstr "Adicionar um ou mais novos arquivos ou diretórios" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:229 msgid "" @@ -43608,9 +40044,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:237 -#, fuzzy msgid "Generates a HelpMojo class." -msgstr "Generate source index file" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:238 msgid "" @@ -43732,23 +40167,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:254 -#, fuzzy msgid "Display the modification status of the files in the configured scm url." -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:255 -#, fuzzy msgid "Branch the project." -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:256 msgid "Validate scm connection string." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:257 -#, fuzzy msgid "Commit changes to the configured scm url." -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:258 msgid "" @@ -43763,9 +40195,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:260 -#, fuzzy msgid "Add a file set to the project." -msgstr "Adicionar um novo arquivo/diretório ao repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:261 msgid "Mark a set of files for deletion." @@ -43786,14 +40217,12 @@ msgid "Get a fresh copy of the latest source from the configured scm url." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:265 -#, fuzzy msgid "Tag the project." -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:266 -#, fuzzy msgid "Edit/lock a set of files." -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:267 msgid "This mojo will fail the build if there is any local modifications" @@ -43838,9 +40267,8 @@ msgid "Empty goal, provided only to set loose the lifecycle." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:276 -#, fuzzy msgid "Copies artifacts from one repository to another repository." -msgstr "Copy and apply patches from this repository to another one" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:277 msgid "" @@ -43898,19 +40326,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:285 -#, fuzzy msgid "Generates MyEclipse configuration files" -msgstr "Set configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:286 -#, fuzzy msgid "Deletes configuration files used by MyEclipse" -msgstr "Set configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:287 -#, fuzzy msgid "Generates the rad-6 configuration files." -msgstr "Set configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:288 msgid "" @@ -43919,9 +40344,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:289 -#, fuzzy msgid "Removes the not-available marker files from the repository." -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:290 msgid "" @@ -44173,9 +40597,8 @@ msgid "Weaves all main classes." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:335 -#, fuzzy msgid "Create eclipse configuration of aspectJ" -msgstr "Set configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:336 msgid "" @@ -44761,9 +41184,8 @@ msgid "Create webstartable binaries for a 'nbm-application'." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:434 -#, fuzzy msgid "Generate a report from the Clirr output." -msgstr "Generate XML formatted output" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:435 msgid "Check for compatibility between two arbitrary artifact sets." @@ -44894,9 +41316,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:459 -#, fuzzy msgid "Create a CodeNarc Report." -msgstr "Create summary change report" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:460 msgid "" @@ -45003,9 +41424,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:477 -#, fuzzy msgid "Prints the configuration settings." -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:478 msgid "Creates the HTML report for a test run based on XSLT." @@ -45152,9 +41572,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:500 -#, fuzzy msgid "Add more resource directories to the POM." -msgstr "Adicionar um ou mais novos arquivos ou diretórios" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:501 msgid "Store the maven core version in a property maven.version." @@ -45165,9 +41584,8 @@ msgid "Attach additional artifacts to be installed and deployed." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:503 -#, fuzzy msgid "Add test source directories to the POM." -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:504 msgid "" @@ -45198,14 +41616,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:508 -#, fuzzy msgid "Add more source directories to the POM." -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:509 -#, fuzzy msgid "Add more test resource directories to the POM." -msgstr "Adicionar um ou mais novos arquivos ou diretórios" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:510 msgid "" @@ -45289,9 +41705,8 @@ msgid "Runs nodetool repair on a Cassandra instance." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:526 -#, fuzzy msgid "Executes cql statements from maven." -msgstr "Execute argument as command" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:528 msgid "Runs nodetool flush on a Cassandra instance." @@ -45515,9 +41930,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:567 -#, fuzzy msgid "Display all available licenses." -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:568 msgid "Displays all the available comment style to box file headers." @@ -45627,9 +42041,8 @@ msgid "Executes SQL against a database." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:585 -#, fuzzy msgid "List all files in the archive." -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:586 msgid "" @@ -45646,9 +42059,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:588 -#, fuzzy msgid "Remove a set of files from an existing archive." -msgstr "Remove files after adding to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:589 msgid "Copy a set of files in and out of an existing archive." @@ -45695,9 +42107,8 @@ msgid "Displays any updates of the project's parent project" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:598 -#, fuzzy msgid "Displays all plugins that have newer versions available." -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:599 msgid "" @@ -45762,9 +42173,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:610 -#, fuzzy msgid "Sets the parent version to the latest parent version." -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:611 msgid "Sets properties to the latest versions of specific artifacts." @@ -45788,9 +42198,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:615 #: /tmp/fish/implicit/share/completions/mvn.fish:618 -#, fuzzy msgid "Replaces any version with the latest version." -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:616 msgid "" @@ -45837,9 +42246,8 @@ msgid "Move files from a virtual file system to another" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:626 -#, fuzzy msgid "Remove files from a virtual file system" -msgstr "Place files or directories under version control" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:627 msgid "" @@ -45868,9 +42276,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:631 #: /tmp/fish/implicit/share/completions/mvn.fish:643 -#, fuzzy msgid "Closes a Nexus staging repository." -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:632 msgid "" @@ -45939,9 +42346,8 @@ msgid "Starts the App Engine development server and does not wait." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:646 -#, fuzzy msgid "Start the specified backend." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:647 msgid "Stops the App Engine development server." @@ -45952,9 +42358,8 @@ msgid "Roll back a previously in-progress update." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:649 -#, fuzzy msgid "Start the specified module version." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:650 msgid "Change the default version, but more gently than set_default_version." @@ -45973,9 +42378,8 @@ msgid "Debug the specified VM Runtime instance." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:654 -#, fuzzy msgid "Set the default serving version." -msgstr "Set default file permission mask" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:655 msgid "Runs the datanucleus enhancer." @@ -45993,9 +42397,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:658 -#, fuzzy msgid "Configure the specified backend." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:659 msgid "Update application cron jobs." @@ -46006,9 +42409,8 @@ msgid "Runs the App Engine development server." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:661 -#, fuzzy msgid "Delete the specified backend." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:662 msgid "Update the specified backend or all backends." @@ -46023,9 +42425,8 @@ msgid "Update application task queue definitions." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:665 -#, fuzzy msgid "Stop the specified module version." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:666 msgid "Rollback an in-progress update." @@ -46040,9 +42441,8 @@ msgid "App Engine endpoints get-discovery-doc command." msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:669 -#, fuzzy msgid "Stop the specified backend." -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:670 msgid "Creates an Android Archive (aar) file. " @@ -46416,9 +42816,8 @@ msgid "Finishes a hotfix" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:728 -#, fuzzy msgid "Finishes a feature branch" -msgstr "Lines after EOF are blank" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:729 msgid "" @@ -46426,9 +42825,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:730 -#, fuzzy msgid "Starts a release" -msgstr "Start interface" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:731 msgid "Starts a feature branch" @@ -46453,161 +42851,60 @@ msgid "Run an executable archive application." msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:1 -#, fuzzy msgid "displays this help text" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:3 msgid "show mount point directories with a 'D'" msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:4 -#, fuzzy msgid "show the mode bits of each file" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:5 -#, fuzzy msgid "show owner and group name of each file" -msgstr "Show commandname of each job" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:6 msgid "use a long listing format (-m -o -v)" msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:7 -#, fuzzy msgid "don't follow symlinks" -msgstr "Não segue links simbólicos" +msgstr "" #: /tmp/fish/implicit/share/completions/namei.fish:8 msgid "vertical align of modes and owners" msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:1 -#, fuzzy msgid "Perform the reverse operation" -msgstr "Perform contents generation" +msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:2 -#, fuzzy msgid "Specifies the name of the character encoding" -msgstr "Set the native character set" +msgstr "" #: /tmp/fish/implicit/share/completions/native2ascii.fish:3 msgid "Pass \"option\" to JVM" msgstr "" #: /tmp/fish/implicit/share/completions/ncdu.fish:2 -#, fuzzy msgid "Quiet mode. Refresh interval 2 seconds" -msgstr "Minimum interval in seconds" +msgstr "" #: /tmp/fish/implicit/share/completions/ncdu.fish:4 -#, fuzzy msgid "Same filesystem" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/ncdu.fish:6 -#, fuzzy msgid "Exclude files that match any pattern in file" -msgstr "Exclude files thet match pattern in file" - -#: /tmp/fish/implicit/share/completions/netcat.fish:1 -#, fuzzy -msgid "Remote hostname" -msgstr "Remove an entry for hostname" - -#: /tmp/fish/implicit/share/completions/netcat.fish:2 -msgid "Same as -e, but use /bin/sh" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:3 -msgid "Program to execute after connection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:4 -#, fuzzy -msgid "Allow broadcasts" -msgstr "Allow pinging a broadcast address" - -#: /tmp/fish/implicit/share/completions/netcat.fish:5 -msgid "Source-routing hop points" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:6 -msgid "Source-routing pointer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:8 -msgid "Delay interval for lines sent, ports scaned" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:9 -#, fuzzy -msgid "Set keepalive option" -msgstr "Set a config option" - -#: /tmp/fish/implicit/share/completions/netcat.fish:10 -msgid "Listen mode, acts as a server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:11 -#, fuzzy -msgid "Numeric-only IP addresses, no DNS" -msgstr "Numerical address" - -#: /tmp/fish/implicit/share/completions/netcat.fish:12 -msgid "Hex dump of traffic" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:13 -#, fuzzy -msgid "Local port number" -msgstr "Show record number" - -#: /tmp/fish/implicit/share/completions/netcat.fish:14 -msgid "Randomize local and remote ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:15 -msgid "Quit after EOF on stdin and delay of secs" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:16 -#, fuzzy -msgid "Local source address" -msgstr "Root source tree" - -#: /tmp/fish/implicit/share/completions/netcat.fish:17 -msgid "Answer Telnet negotiation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:18 -msgid "UDP Mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:19 -msgid "Verbose, use twice to be more verbose" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:20 -msgid "Timeout for connects and final net reads" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:21 -#, fuzzy -msgid "Set Type of Service" -msgstr "Stop service" - -#: /tmp/fish/implicit/share/completions/netcat.fish:22 -msgid "No I/O - used for scanning" msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:3 -#, fuzzy msgid "List all available profiles for automatic selection" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:4 msgid "Start automatic profile selection on interface" @@ -46634,57 +42931,48 @@ msgid "Enable all profiles for automatic selection" msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:10 -#, fuzzy msgid "Disable all profiles for automatic selection" -msgstr "Disable automtic buffer allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:11 -#, fuzzy msgid "Check whether specified profile is active" -msgstr "Use specified string as comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl-auto.fish:12 msgid "Check whether specified profile is enabled" msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:3 -#, fuzzy msgid "List available profiles" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:4 msgid "Save which profiles are active" msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:5 -#, fuzzy msgid "Load saved profiles" -msgstr "Load index from file" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:6 -#, fuzzy msgid "Stops all profiles" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:7 -#, fuzzy msgid "Start a profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:8 -#, fuzzy msgid "Stop a profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:9 -#, fuzzy msgid "Restart a profile" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:10 -#, fuzzy msgid "Switch to a profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:11 msgid "Show runtime status of a profile" @@ -46707,9 +42995,8 @@ msgid "Check whether the unit is enabled" msgstr "" #: /tmp/fish/implicit/share/completions/netctl.fish:16 -#, fuzzy msgid "Open the specified profile in an editor" -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/nextd.fish:1 #: /tmp/fish/implicit/share/completions/prevd.fish:1 @@ -46721,14 +43008,12 @@ msgid "Add specified amount to niceness value" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:1 -#, fuzzy msgid "change to specified directory" -msgstr "Restrict wildcards to specified directory" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:2 -#, fuzzy msgid "specify build file [default=build.ninja]" -msgstr "Specify build-dir" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:3 msgid "dry run" @@ -46739,9 +43024,8 @@ msgid "show all command lines while building" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:5 -#, fuzzy msgid "number of jobs to run in parallel [default derived from CPUs]" -msgstr "Specifies the number of data bytes to be sent" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:6 msgid "do not start if load average > N" @@ -46752,18 +43036,16 @@ msgid "keep going until N jobs fail [default=1]" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:9 -#, fuzzy msgid "enable debugging, specify debug mode" -msgstr "Debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:10 msgid "adjust warnings, specify flags" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:11 -#, fuzzy msgid "print ninja version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:1 msgid "use STYLE for numbering body lines" @@ -46782,9 +43064,8 @@ msgid "use STYLE for numbering header lines" msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:5 -#, fuzzy msgid "line number increment at each line" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:6 msgid "group of NUMBER empty lines counted as one" @@ -46815,47 +43096,40 @@ msgid "add STRING after (possible) line number" msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:13 -#, fuzzy msgid "first line number on each logical page" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:14 msgid "use NUMBER columns for line numbers" msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:1 -#, fuzzy msgid "Output is terse" -msgstr "Output trace" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:2 -#, fuzzy msgid "Output is pretty" -msgstr "Output mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:3 msgid "Switch between tabular and multiline mode" msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:4 -#, fuzzy msgid "Whether to use colors in output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:5 -#, fuzzy msgid "Specify the output fields" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/nmcli.fish:6 -#, fuzzy msgid "Whether to escape \":\" and \"\\" -msgstr "Whether to check hashes on disk" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:1 -#, fuzzy msgid "Display debugger-only symbols" -msgstr "Display debug info" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:2 #: /tmp/fish/implicit/share/completions/nm.fish:10 @@ -46863,27 +43137,24 @@ msgid "Print name of the input file before every symbol" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:3 -#, fuzzy msgid "Do not demangle low-level symbol names" -msgstr "Do not mangle From-field of email headers" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:4 msgid "Display dynamic symbols instead of normal symbols" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:5 -#, fuzzy msgid "Display only defined symbols" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:6 msgid "Use the output format FORMAT. The default is \"bsd\"" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:7 -#, fuzzy msgid "Display only external symbols" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:8 msgid "" @@ -46891,47 +43162,40 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:9 -#, fuzzy msgid "Sort symbols numerically by address" -msgstr "Numerical address" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:11 -#, fuzzy msgid "Do not sort the symbols" -msgstr "Do not use weak symbol support" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:12 msgid "Same as --format=posix" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:13 -#, fuzzy msgid "Reverse the sense of the sort" -msgstr "Invert the sense of matching" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:14 -#, fuzzy msgid "Load the specified plugin" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:15 -#, fuzzy msgid "Print size of defined symbols" -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:16 msgid "Include index for symbols from archive members" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:17 -#, fuzzy msgid "Sort symbols by size" -msgstr "Ordena por tamanho" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:18 -#, fuzzy msgid "Include special symbols in the output" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:19 msgid "Display synthetic symbols as well" @@ -46946,34 +43210,28 @@ msgid "Specify the target object format as BFDNAME" msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:22 -#, fuzzy msgid "Display only undefined symbols" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:23 -#, fuzzy msgid "Display this information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/nm.fish:24 -#, fuzzy msgid "Display this program's version number" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:1 -#, fuzzy msgid "Print node's version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:2 -#, fuzzy msgid "Evaluate script" -msgstr "Extract script" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:3 -#, fuzzy msgid "Print result of --eval" -msgstr "Print flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:4 msgid "Always enter the REPL even if stdin does not appear to be a terminal" @@ -46984,18 +43242,16 @@ msgid "Silence deprecation warnings" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:6 -#, fuzzy msgid "Show stack traces on deprecations" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:7 msgid "Throw errors on deprecations" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:8 -#, fuzzy msgid "Print v8 command line options" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:9 msgid "Set max v8 stack size (bytes)" @@ -47744,18 +44000,16 @@ msgid "Minimal logging (no API, code, GC, suspect, or handles samples)" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:175 -#, fuzzy msgid "Log all events to the log file" -msgstr "Log all messages to logfile" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:176 msgid "Activate runtime system %Log call" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:177 -#, fuzzy msgid "Log API events to the log file" -msgstr "Log all messages to logfile" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:178 msgid "Log code events to the log file without profiling" @@ -47774,9 +44028,8 @@ msgid "log positions of (de)serialized objects in the snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:182 -#, fuzzy msgid "Log suspect operations" -msgstr "Opções de montagem" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:183 msgid "Log statistical profiling information (implies --log-code)" @@ -47806,9 +44059,8 @@ msgid "Update sliding state window counters" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:189 -#, fuzzy msgid "Specify the name of the log file" -msgstr "Specify commit message" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:190 msgid "Enable low-level linux profiler" @@ -47819,76 +44071,63 @@ msgid "Complete the commandline using npm's 'completion' tool" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:2 -#, fuzzy msgid "Manipulates package's cache" -msgstr "Auto-gen package cache" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:3 -#, fuzzy msgid "Add the specified package to the local cache" -msgstr "Add specified file to the current list of keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:4 msgid "Delete data out of the cache folder" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:5 -#, fuzzy msgid "Show the data in the cache" -msgstr "Show packages in cache" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:6 -#, fuzzy msgid "Manage the npm configuration files" -msgstr "Set configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:7 #: /tmp/fish/implicit/share/completions/npm.fish:14 -#, fuzzy msgid "Sets the config key to the value" -msgstr "Set the connect timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:8 #: /tmp/fish/implicit/share/completions/npm.fish:13 -#, fuzzy msgid "Echo the config value to stdout" -msgstr "Send the ownertrust values to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:9 -#, fuzzy msgid "Deletes the key from all configuration files" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:10 #: /tmp/fish/implicit/share/completions/npm.fish:11 -#, fuzzy msgid "Show all the config settings" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:12 -#, fuzzy msgid "Opens the config file in an editor" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:15 -#, fuzzy msgid "install a package" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:16 -#, fuzzy msgid "Save to devDependencies in package.json" -msgstr "Don't verify dependencies of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:17 -#, fuzzy msgid "Save to dependencies in package.json" -msgstr "Don't verify dependencies of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:18 -#, fuzzy msgid "Install package globally" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:19 #: /tmp/fish/implicit/share/completions/pkg.fish:25 @@ -47896,9 +44135,8 @@ msgstr "Instalar pacotes" #: /tmp/fish/implicit/share/completions/prt-get.fish:24 #: /tmp/fish/implicit/share/completions/prt-get.fish:84 #: /tmp/fish/implicit/share/completions/yum.fish:29 -#, fuzzy msgid "List installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:20 msgid "" @@ -47906,58 +44144,48 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:21 -#, fuzzy msgid "Show information in JSON format" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:22 -#, fuzzy msgid "Show extended information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:23 msgid "Show parseable output instead of tree view" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:24 -#, fuzzy msgid "Max display depth of the dependency tree" -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:25 -#, fuzzy msgid "Manage package owners" -msgstr "Ignore package Holds" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:26 -#, fuzzy msgid "List package owners" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:27 -#, fuzzy msgid "Add a new owner to package" -msgstr "Adicionar um novo serviço" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:28 -#, fuzzy msgid "Remove an owner from package" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:29 -#, fuzzy msgid "remove package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:30 -#, fuzzy msgid "remove global package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:31 -#, fuzzy msgid "Package will be removed from your dependencies" -msgstr "Gerar uma representação visual de suas dependências" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:32 msgid "Package will be removed from your devDependencies" @@ -47974,51 +44202,44 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:36 -#, fuzzy msgid "Update package(s)" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:37 -#, fuzzy msgid "Update global package(s)" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:38 msgid "Add a registry user account" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:39 -#, fuzzy msgid "Display npm bin folder" -msgstr "Display debug info" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:40 msgid "Bugs for a package in a web browser maybe" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:41 -#, fuzzy msgid "Reduce duplication" -msgstr "Remove non-duplicate lines" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:42 -#, fuzzy msgid "Deprecate a version of a package" -msgstr "Version of source package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:43 msgid "Docs for a package in a web browser maybe" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:44 -#, fuzzy msgid "Edit an installed package" -msgstr "Install new package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:45 -#, fuzzy msgid "Browse an installed package" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:46 msgid "Frequently Asked Questions" @@ -48033,97 +44254,80 @@ msgid "View registry info" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:50 -#, fuzzy msgid "Symlink a package folder" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:51 -#, fuzzy msgid "Check for outdated packages" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:52 -#, fuzzy msgid "Create a tarball from a package" -msgstr "Info on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:53 -#, fuzzy msgid "Display NPM prefix" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:54 -#, fuzzy msgid "Remove extraneous packages" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:55 -#, fuzzy msgid "Publish a package" -msgstr "Rebuild a package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:57 -#, fuzzy msgid "Display npm root" -msgstr "Display font properties" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:58 msgid "Run arbitrary package scripts" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:59 -#, fuzzy msgid "Lock down dependency versions" -msgstr "Don't do a dependency check" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:60 -#, fuzzy msgid "Mark your favorite packages" -msgstr "Clean source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:61 msgid "View packages marked as favorites" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:62 -#, fuzzy msgid "Start a package" -msgstr "Erase package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:63 -#, fuzzy msgid "Stop a package" -msgstr "Info on a package" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:64 -#, fuzzy msgid "Add a package as a git submodule" -msgstr "Add a symbolic tag to a module" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:65 -#, fuzzy msgid "Test a package" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:66 -#, fuzzy msgid "Remove a package from the registry" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:67 -#, fuzzy msgid "Remove star from a package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:68 -#, fuzzy msgid "Bump a package version" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:69 -#, fuzzy msgid "Display npm username" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/nvram.fish:1 msgid "Use XML format for reading and writing variables" @@ -48146,121 +44350,100 @@ msgid "Delete all of the firmware variable" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:1 -#, fuzzy msgid "Display archive header information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:2 -#, fuzzy msgid "Display contents of the overall file header" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:3 msgid "Display object format specific file header contents" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:4 -#, fuzzy msgid "Display object format specific contents" -msgstr "Mostra contexto de segurança" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:5 -#, fuzzy msgid "Display contents of section headers" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:6 -#, fuzzy msgid "Display content of section headers" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:7 -#, fuzzy msgid "Display the contents of all headers" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:8 -#, fuzzy msgid "Display assembler contents of executable sections" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:9 -#, fuzzy msgid "Display assembler contents of all sections" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:10 msgid "Intermix source code with disassembly" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:11 -#, fuzzy msgid "Display full contents of all sections requested" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:12 -#, fuzzy msgid "Display debug information in object file" -msgstr "Display status information on checked out files" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:13 -#, fuzzy msgid "Display debug information using ctags style" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:14 -#, fuzzy msgid "Display (in raw form) any STABS info in file" -msgstr "Display date for each line in file" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:15 -#, fuzzy msgid "Display DWARF info in file" -msgstr "Display date for each line in file" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:16 -#, fuzzy msgid "Display contents of symbol table(s)" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:17 -#, fuzzy msgid "Display contents of dynamic symbol table" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:18 -#, fuzzy msgid "Display relocation entries in file" -msgstr "Delete entries in zipfile" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:19 -#, fuzzy msgid "Display dynamic relocation entries in file" -msgstr "Display date for each line in file" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:20 -#, fuzzy msgid "Display version number" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:21 msgid "List object formats and architectures supported" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:23 -#, fuzzy msgid "Specify target object format" -msgstr "Specify output format" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:24 -#, fuzzy msgid "Specify target architecture" -msgstr "Specify the http username" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:25 -#, fuzzy msgid "Only display information for given section" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:26 msgid "Pass given options on to disassembler" @@ -48287,9 +44470,8 @@ msgid "Add given directory to search list from source files" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:32 -#, fuzzy msgid "Include line numbers and filenames in output" -msgstr "Use label instead of filename in output" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:33 msgid "Include file offsets when displaying information" @@ -48328,9 +44510,8 @@ msgid "Don't display hex alongside symbolic disassembly" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:42 -#, fuzzy msgid "Display specified number of bytes on single line for -d" -msgstr "Display line number for each line" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:43 msgid "Add offset to all displayed section address" @@ -48345,73 +44526,60 @@ msgid "Add given prefix to absolute paths for -S" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:46 -#, fuzzy msgid "Strip initial directory names for -S" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:47 -#, fuzzy msgid "Do not display DIEs at given depth or greater" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:48 -#, fuzzy msgid "Display DIEs starting with given number" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:49 msgid "Make additional dwarf internal consistency checks" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:1 -#, fuzzy msgid "Add a key to the repository" -msgstr "Adicionar uma chave criptografada ao repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:2 -#, fuzzy msgid "Backup data to repository" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:3 -#, fuzzy msgid "List clients and their keys in the repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:4 -#, fuzzy msgid "List clients using the repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:5 -#, fuzzy msgid "Show difference between two generations" -msgstr "Show differences between revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:6 -#, fuzzy msgid "Dump (some) data structures from a repository" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:7 -#, fuzzy msgid "Force a locked repository to be open" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:8 -#, fuzzy msgid "Forget (remove) specified backup generations" -msgstr "Remove completion" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:9 -#, fuzzy msgid "Verify internal consistency of backup repository" -msgstr "Check the entire repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:10 -#, fuzzy msgid "List backup generations for client" -msgstr "Remove completion" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:11 msgid "List generation ids for client" @@ -48422,57 +44590,48 @@ msgid "Print help, including hidden subcommands" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:14 -#, fuzzy msgid "List contents of a generation in kdirstat cache format" -msgstr "List contents of directory using long format" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:15 -#, fuzzy msgid "List error codes and explanations" -msgstr "Do not print explanations" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:16 -#, fuzzy msgid "List available repository formats" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:17 msgid "List keys and repository toplevels they are used in" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:18 -#, fuzzy msgid "List repository toplevel directories and their keys" -msgstr "Lista diretórios, não seu conteúdo" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:19 -#, fuzzy msgid "List contents of a generation" -msgstr "List contents of directory" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:20 msgid "Mount a backup repository as a FUSE filesystem" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:21 -#, fuzzy msgid "Check if the most recent generation is recent enough" -msgstr "Locate the most recent version lacking an error" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:22 -#, fuzzy msgid "Remove client and its key from repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:23 -#, fuzzy msgid "Remove a key from the repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:24 -#, fuzzy msgid "Restore some or all files from a generation" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:25 msgid "Verify that live data and backed up data match" @@ -48487,18 +44646,16 @@ msgid "Do not restore setuid/setgid bits in restored files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:28 -#, fuzzy msgid "Use CHECKSUM algorithm" -msgstr "MAC algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:29 msgid "Name of client" msgstr "Nome do cliente" #: /tmp/fish/implicit/share/completions/obnam.fish:30 -#, fuzzy msgid "Compress repository with" -msgstr "Compress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:31 msgid "For --nagios-last-backup-age: maximum age" @@ -48509,23 +44666,20 @@ msgid "Dump metadata about files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:33 -#, fuzzy msgid "Do not dump metadata about files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:34 -#, fuzzy msgid "Generate man page" -msgstr "Generate a new key pair" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:35 msgid "Which generation to restore" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:36 -#, fuzzy msgid "Show this help message and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:37 msgid "Policy for what generations to keep when forgetting." @@ -48536,19 +44690,16 @@ msgid "Wait TIMEOUT seconds for an existing lock" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:39 -#, fuzzy msgid "Write output to FILE instead of STDOUT" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:40 -#, fuzzy msgid "Do not actually change anything" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:41 -#, fuzzy msgid "Actually commit changes" -msgstr "Summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:42 msgid "Show only errors, no progress updates" @@ -48559,23 +44710,20 @@ msgid "Show errors and progress updates" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:44 -#, fuzzy msgid "Name of backup repository" -msgstr "Repair the corrupted repository" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:45 -#, fuzzy msgid "Use FORMAT for new repositories" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:46 msgid "Where to restore / mount to" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:48 -#, fuzzy msgid "Do not be verbose" -msgstr "Do not overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:49 msgid "Verify N files randomly from the backup" @@ -48583,9 +44731,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:50 #: /tmp/fish/implicit/share/completions/transmission-remote.fish:72 -#, fuzzy msgid "Show version number and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:51 msgid "For nagios-last-backup-age: maximum age" @@ -48596,29 +44743,25 @@ msgid "Make a checkpoint after a given SIZE" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:53 -#, fuzzy msgid "Deduplicate mode" -msgstr "Read/Write mode" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:54 msgid "REGEXP for pathnames to exclude" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:55 -#, fuzzy msgid "Exclude directories tagged as cache" -msgstr "Search directories for source" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:56 -#, fuzzy msgid "Include directories tagged as cache" -msgstr "Include directory" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:57 #: /tmp/fish/implicit/share/completions/rsync.fish:77 -#, fuzzy msgid "Read exclude patterns from FILE" -msgstr "Read the patch from patchfile" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:58 msgid "REGEXP for pathnames to include, even if matches --exclude" @@ -48633,19 +44776,16 @@ msgid "Omit checkpoint generations at the end of backup" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:61 -#, fuzzy msgid "Do not follow mount points" -msgstr "Do not fold long lines" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:62 -#, fuzzy msgid "Follow mount points" -msgstr "Mount point" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:63 -#, fuzzy msgid "What to backup" -msgstr "Go to background" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:64 msgid "Put small files directly into the B-tree" @@ -48656,34 +44796,28 @@ msgid "No not put small files into the B-tree" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:66 -#, fuzzy msgid "Add FILE to config files" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:67 -#, fuzzy msgid "Write out the current configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:68 -#, fuzzy msgid "Write out setting names" -msgstr "Write out the prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:69 -#, fuzzy msgid "Show all options" -msgstr "Display help and debug options" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:70 -#, fuzzy msgid "List config files" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:71 -#, fuzzy msgid "Clear list of configuration files to read" -msgstr "List of rpm configuration files" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:72 msgid "Artificially crash the program after COUNTER files" @@ -48694,9 +44828,8 @@ msgid "Pretend it is TIMESTAMP" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:74 -#, fuzzy msgid "Simulate failures for files that match REGEXP" -msgstr "Select patch matching REGEXP" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:75 msgid "FILENAME pattern for trace debugging" @@ -48707,19 +44840,16 @@ msgid "PGP key with which to encrypt" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:77 -#, fuzzy msgid "Home directory for GPG" -msgstr "File descriptor for input" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:78 -#, fuzzy msgid "Show additional user IDs" -msgstr "Show history for all users" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:79 -#, fuzzy msgid "Do not show additional user IDs" -msgstr "Do not store directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:80 msgid "PGP key id" @@ -48730,9 +44860,8 @@ msgid "Size of symmetric key" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:82 -#, fuzzy msgid "Use /dev/urandom instead of /dev/random" -msgstr "Use purge instead of remove" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:83 msgid "Use default /dev/random" @@ -48747,89 +44876,74 @@ msgid "fsck should not try to fix problems" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:86 -#, fuzzy msgid "Ignore chunks when checking integrity" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:87 msgid "Check chunks when checking integrity" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:88 -#, fuzzy msgid "Do not check data for cient NAME" -msgstr "Do not store directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:89 -#, fuzzy msgid "Check only the last generation" -msgstr "Resumes the last merge operation" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:90 #: /tmp/fish/implicit/share/completions/obnam.fish:100 -#, fuzzy msgid "Check all generations" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:91 #: /tmp/fish/implicit/share/completions/obnam.fish:92 -#, fuzzy msgid "fsck should remove unused chunks" -msgstr "Remove source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:93 -#, fuzzy msgid "Do not check checksums of files" -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:94 -#, fuzzy msgid "Check checksums of files" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:95 -#, fuzzy msgid "Do not check directories" -msgstr "Do not store directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:96 -#, fuzzy msgid "Check directories" -msgstr "Recurse directories" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:97 -#, fuzzy msgid "Do not check files" -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:98 -#, fuzzy msgid "Check files" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:99 -#, fuzzy msgid "Do not check any generations" -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:101 -#, fuzzy msgid "Do not check per-client B-trees" -msgstr "Do not print tags" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:102 msgid "Check per-client B-trees" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:103 -#, fuzzy msgid "Do not check shared B-trees" -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:104 -#, fuzzy msgid "Check shared B-trees" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:105 msgid "Write log to FILE or syslog" @@ -48876,9 +44990,8 @@ msgid "Chunk id level size" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:116 -#, fuzzy msgid "Depth of chunk id mapping" -msgstr "Depth of call chain" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:117 msgid "Chunk id mapping lowest bits skip" @@ -48889,9 +45002,8 @@ msgid "Size of LRU cache for B-tree nodes" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:119 -#, fuzzy msgid "Size of B-tree nodes on disk" -msgstr "Show changes in reverse order" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:120 msgid "Length of upload queue for B-tree nodes" @@ -48918,9 +45030,8 @@ msgid "Use only paramiko, no openssh" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:126 -#, fuzzy msgid "Use openssh if available" -msgstr "Build index if unavailable" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:127 msgid "Executable to be used instead of \"ssh\"" @@ -48939,28 +45050,24 @@ msgid "FILENAME of the known_hosts file" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:1 -#, fuzzy msgid "Produce no output to stderr" -msgstr "Audio output" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:2 -#, fuzzy msgid "Print this help text" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:3 -#, fuzzy msgid "Print the version number" -msgstr "Print linenumber" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:4 msgid "Set bits/sample for raw input. Default is 16" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:5 -#, fuzzy msgid "Set number of channels for raw input" -msgstr "Set number of audio channels" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:6 msgid "Set samples/sec for raw input" @@ -48979,9 +45086,8 @@ msgid "Enable the bitrate management engine" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:10 -#, fuzzy msgid "Specify a minimum bitrate (in kbps)" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:11 msgid "Specify a maximum bitrate in kbps" @@ -48992,18 +45098,16 @@ msgid "option=value Sets an advanced encoder option to the given value" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:13 -#, fuzzy msgid "Specify quality" -msgstr "Specify a dir" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:14 msgid "Resample input data to sampling rate n (Hz)" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:15 -#, fuzzy msgid "Specify a serial number for the stream" -msgstr "Specify date range for query" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:16 msgid "" @@ -49020,9 +45124,8 @@ msgid "Produce filenames as this string" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:19 -#, fuzzy msgid "Remove the specified characters from parameters" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:20 msgid "Replace characters removed by --name-remove" @@ -49033,57 +45136,49 @@ msgid "Add the given string as an extra comment" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:22 -#, fuzzy msgid "Date for track" -msgstr "Set format" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:23 -#, fuzzy msgid "Track number" -msgstr "Número da versão" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:24 msgid "Title of track" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:25 -#, fuzzy msgid "Name of album" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:26 -#, fuzzy msgid "Name of artist" -msgstr "Name of patch" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:27 msgid "Genre of track" msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:1 -#, fuzzy msgid "Display the manual for an OPAM command." -msgstr "Displays usage information for command" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:2 #: /tmp/fish/implicit/share/completions/opam.fish:58 -#, fuzzy msgid "Show version information." -msgstr "Show apropos information" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:4 msgid "Compatibility mode with OPAM 1.0" msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:5 -#, fuzzy msgid "Print debug message on stdout." -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:6 -#, fuzzy msgid "Print the git version if it exists and exit." -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:7 msgid "Do not use the external aspcud solver, even if available." @@ -49094,9 +45189,8 @@ msgid "Do not install base packages (useful for testing purposes)." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:9 -#, fuzzy msgid "Be quiet when installing a new compiler." -msgstr "Build and install a new package" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:10 msgid "Use ROOT as the current root path." @@ -49113,9 +45207,8 @@ msgid "Use SWITCH as the current compiler switch." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:13 -#, fuzzy msgid "Be more verbose." -msgstr "Do not overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:14 msgid "" @@ -49124,23 +45217,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:15 -#, fuzzy msgid "Display configuration options for packages." -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:16 -#, fuzzy msgid "Enable all the global and user configuration options." -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:17 msgid "Use csh-compatible mode for configuring OPAM." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:18 -#, fuzzy msgid "Name of the configuration file to update instead of ~/." -msgstr "List of rpm configuration files" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:19 msgid "Backward-compatible option, equivalent to opam config env." @@ -49151,14 +45241,12 @@ msgid "Use fish-compatible mode for configuring OPAM." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:21 -#, fuzzy msgid "Enable all the global configuration options." -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:22 -#, fuzzy msgid "List the current configuration." -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:23 msgid "Do not load the auto-completion scripts in the environment." @@ -49173,9 +45261,8 @@ msgid "Modify ~/. profile (or ~/." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:27 -#, fuzzy msgid "Recursive query." -msgstr "Recursively copy" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:28 msgid "Display environment variables as an s-expression." @@ -49186,9 +45273,8 @@ msgid "Use sh-compatible mode for configuring OPAM." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:30 -#, fuzzy msgid "Enable all the user configuration options." -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:31 msgid "Use zsh-compatible mode for configuring OPAM. DOMAINS." @@ -49239,81 +45325,68 @@ msgid "returns assembly compile options." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:41 -#, fuzzy msgid "returns bytecode linking options." -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:42 msgid "Prints a summary of your setup, useful for bug-reports." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:43 -#, fuzzy msgid "Display help about OPAM and OPAM commands." -msgstr "Displays usage information for command" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:44 msgid "Initialize OPAM state." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:45 -#, fuzzy msgid "Install a list of packages." -msgstr "Instalar os pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:46 -#, fuzzy msgid "Display the list of available packages." -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:47 -#, fuzzy msgid "Pin a given package to a specific version." -msgstr "Print all source packages with version" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:48 -#, fuzzy msgid "Reinstall a list of packages." -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:49 -#, fuzzy msgid "Remove a list of packages." -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:50 -#, fuzzy msgid "Manage OPAM repositories." -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:51 -#, fuzzy msgid "Search into the package list." -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:52 -#, fuzzy msgid "Display information about specific packages." -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:53 msgid "Manage multiple installation of compilers." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:54 -#, fuzzy msgid "Update the list of available packages." -msgstr "Update list of source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:55 -#, fuzzy msgid "Upgrade the installed package to latest version." -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:56 -#, fuzzy msgid "Administration tool for local repositories." -msgstr "Display information about a local or remote item" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:57 msgid "Show this help in format FMT (pager, plain or groff)." @@ -49324,33 +45397,28 @@ msgid "Check a local repo for errors." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:60 -#, fuzzy msgid "Add external dependencies." -msgstr "Ask for extra dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:61 -#, fuzzy msgid "Initialize a repo for serving files." -msgstr "Name directory for working files" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:62 -#, fuzzy msgid "Compute statistics." -msgstr "Show cache statistics" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:5 -#, fuzzy msgid "Prints the list of all defined branches on the server" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:6 msgid "Lists perforce users suitable for list of completions" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:7 -#, fuzzy msgid "Lists current user's workspaces" -msgstr "List bugs from packages" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:8 msgid "Lists all changelists for current user" @@ -49363,23 +45431,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:10 -#, fuzzy msgid "Lists all changelists with *shelved* files" -msgstr "Query an (uninstalled) package in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:11 -#, fuzzy msgid "Lists p4 commands" -msgstr "Lista por colunas" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:12 msgid "Lists environment variables that can be consumed by perforce" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:13 -#, fuzzy msgid "Lists all of available file modes" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:17 msgid "Values for --parallel option in various commands" @@ -49480,21 +45545,18 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:43 -#, fuzzy msgid "Displays the version of the p4 application and exits." -msgstr "Display version and supported algorithms, and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/p4.fish:44 -#, fuzzy msgid "Displays basic usage information and exits." -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:3 #: /tmp/fish/implicit/share/completions/yaourt.fish:3 #: /tmp/fish/implicit/share/completions/yaourt.fish:14 -#, fuzzy msgid "Manage .pac* files" -msgstr "Handle sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:10 #: /tmp/fish/implicit/share/completions/pacman.fish:9 @@ -49503,87 +45565,74 @@ msgid "Query the files database" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:13 -#, fuzzy msgid "(AUR) Search for packages" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:14 -#, fuzzy msgid "(AUR) Show info for packages" -msgstr "Show source package" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:15 msgid "(AUR) Clone the packages' build files and build them" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:16 -#, fuzzy msgid "(AUR) Clone build files, build and install packages" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:17 -#, fuzzy msgid "(AUR) Check foreign packages for updates" -msgstr "Exclude specified package from updates" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:18 -#, fuzzy msgid "(AUR) Update foreign packages" -msgstr "Update list of source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:19 msgid "(AUR) Clone the packages' build files" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:20 -#, fuzzy msgid "Download dependencies recursively" -msgstr "Copy directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:29 #: /tmp/fish/implicit/share/completions/pacman.fish:20 #: /tmp/fish/implicit/share/completions/yaourt.fish:26 -#, fuzzy msgid "Hook file directory" -msgstr "File is directory" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:32 msgid "Apply only for AUR targets" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:33 -#, fuzzy msgid "Apply only for specified repo" -msgstr "Criptografa para o id de usuário especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:34 -#, fuzzy msgid "Edit build files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:35 -#, fuzzy msgid "Do not edit build files" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:36 -#, fuzzy msgid "Always rebuild packages" -msgstr "Erase built packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:37 -#, fuzzy msgid "Redirect output to the log in the clone directory" -msgstr "Redirecionar saída para arquivo se o arquivo não existe" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:38 msgid "Point at a domain other than the default aur.archlinux.org" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:39 -#, fuzzy msgid "Use devel packages" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:40 msgid "Ignore all results marked as out of date" @@ -49602,16 +45651,14 @@ msgid "Sort descending by key" msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:44 -#, fuzzy msgid "Search by field" -msgstr "Select fields" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:81 #: /tmp/fish/implicit/share/completions/pacman.fish:59 #: /tmp/fish/implicit/share/completions/yaourt.fish:80 -#, fuzzy msgid "Also downgrade packages" -msgstr "Bugs for downgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:86 #: /tmp/fish/implicit/share/completions/pacman.fish:64 @@ -49628,9 +45675,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:94 #: /tmp/fish/implicit/share/completions/yaourt.fish:95 #: /tmp/fish/implicit/share/completions/yaourt.fish:99 -#, fuzzy msgid "List files owned by given packages" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:89 #: /tmp/fish/implicit/share/completions/pacaur.fish:90 @@ -49641,9 +45687,8 @@ msgstr "List files in package" #: /tmp/fish/implicit/share/completions/yaourt.fish:96 #: /tmp/fish/implicit/share/completions/yaourt.fish:97 #: /tmp/fish/implicit/share/completions/yaourt.fish:100 -#, fuzzy msgid "Search packages for matching files" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:91 #: /tmp/fish/implicit/share/completions/pacman.fish:69 @@ -49654,48 +45699,41 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:94 #: /tmp/fish/implicit/share/completions/pacman.fish:72 #: /tmp/fish/implicit/share/completions/yaourt.fish:101 -#, fuzzy msgid "Search for packages that include the given files" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:96 #: /tmp/fish/implicit/share/completions/yaourt.fish:103 -#, fuzzy msgid "Show in machine readable format" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman.fish:74 msgid "Show in machine readable format: repo\\0pkgname\\0pkgver\\0path\\n" msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:1 -#, fuzzy msgid "Add or update keys from " -msgstr "Load cookies from file" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:2 -#, fuzzy msgid "Use an alternate config " -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:3 -#, fuzzy msgid "Remove the from the keyring" -msgstr "Remove key from the public keyring" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:4 -#, fuzzy msgid "Export to stdout" -msgstr "Extract to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:5 msgid "Present a menu on specified " msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:6 -#, fuzzy msgid "List a fingerprint for each specified " -msgstr "Listar todos os arquivos em cada pacote selecionado" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:7 msgid "Alternate home for GnuPG" @@ -49718,19 +45756,16 @@ msgid "Initialize the keyring" msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:12 -#, fuzzy msgid "Use the specified " -msgstr "Usa servidor de chaves especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:13 -#, fuzzy msgid "Lists all or specified from the keyring" -msgstr "Export all or the given keys from all keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:14 -#, fuzzy msgid "Same as --list-keys, but with signatures" -msgstr "Same as --list-keys, but the signatures are listed too" +msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:15 msgid "Locally sign the given " @@ -49757,9 +45792,8 @@ msgid "Verify the given file" msgstr "" #: /tmp/fish/implicit/share/completions/pacman-key.fish:21 -#, fuzzy msgid "Displays the program version" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/pacmd.fish:1 msgid "Resume" @@ -49774,78 +45808,64 @@ msgid "Show statistics about memory usage" msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:2 -#, fuzzy msgid "Show info about the daemon" -msgstr "Display help and debug options" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:3 -#, fuzzy msgid "Show all loaded things of the specified type" -msgstr "Show filesystems of specified type" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:4 -#, fuzzy msgid "Show shorter output" -msgstr "Parada para saída de terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:5 msgid "Ask the daemon to exit" msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:6 -#, fuzzy msgid "Upload a file to the sample cache" -msgstr "Select file to store source cache" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:7 -#, fuzzy msgid "Play a sample from the cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:8 -#, fuzzy msgid "Remove a sample from the cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/pactl.fish:10 -#, fuzzy msgid "Print help text and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:1 -#, fuzzy msgid "Set an alternate database location" -msgstr "Set a state attribute for a revision" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:2 -#, fuzzy msgid "Colorize output" -msgstr "Wide output" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:3 -#, fuzzy msgid "Limit the depth of recursion" -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:4 -#, fuzzy msgid "Generate output for graphviz's dot" -msgstr "Generate dotty output for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:5 -#, fuzzy msgid "Display this help message" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:6 -#, fuzzy msgid "Enable linear output" -msgstr "Mostra saída com dired" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:7 -#, fuzzy msgid "Show reverse dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:8 msgid "Search sync DBs instead of local" @@ -49856,9 +45876,8 @@ msgid "Show dependencies with no duplicates (implies -l)" msgstr "" #: /tmp/fish/implicit/share/completions/pactree.fish:10 -#, fuzzy msgid "Set an alternate configuration file" -msgstr "Set global configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:1 msgid "" @@ -49893,9 +45912,8 @@ msgid "Change to the directory dir immediately" msgstr "Change to the directory dir immediately" #: /tmp/fish/implicit/share/completions/patch.fish:8 -#, fuzzy msgid "Use the #ifdef…#endif construct to mark changes" -msgstr "Use the #ifdef ... #endif construct to mark changes" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:9 msgid "" @@ -49934,9 +45952,8 @@ msgstr "" "or when a file is under ClearCase control and does not exist" #: /tmp/fish/implicit/share/completions/patch.fish:16 -#, fuzzy msgid "Read the patch from patchfile" -msgstr "Read package from file" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:17 msgid "" @@ -50005,9 +46022,8 @@ msgid "Use method to determine backup file names" msgstr "Use method to determine backup file names" #: /tmp/fish/implicit/share/completions/patch.fish:32 -#, fuzzy msgid "Output extra information about the work being done" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/patch.fish:33 msgid "Set internal debugging flags of interest only to patch patchers" @@ -50034,14 +46050,12 @@ msgstr "" "given in context diff headers, UTC, GMT" #: /tmp/fish/implicit/share/completions/pbget.fish:1 -#, fuzzy msgid "Use the ABS tree" -msgstr "Use no pristine tree" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:2 -#, fuzzy msgid "Set the desired package architecture" -msgstr "Select file to store package cache" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:3 msgid "Search the AUR" @@ -50052,19 +46066,16 @@ msgid "Only search the AUR" msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:5 -#, fuzzy msgid "Set the output directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:6 -#, fuzzy msgid "Display this message" -msgstr "Display all matches" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:7 -#, fuzzy msgid "Search for upgradable packages" -msgstr "Print only upgradeable packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:8 msgid "Search the ABS testing branches" @@ -50111,9 +46122,8 @@ msgid "Keep text in content stream order" msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:11 -#, fuzzy msgid "Generate simple HTML file" -msgstr "Generate master file" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:12 msgid "Generate XHTML bounding boxes" @@ -50124,9 +46134,8 @@ msgid "Sets encoding for the output [UTF-8]" msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:14 -#, fuzzy msgid "Lists the available encodings" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:15 msgid "Sets the end-of-line convention" @@ -50137,49 +46146,41 @@ msgid "Don't insert page breaks" msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:17 -#, fuzzy msgid "Specify owner password for the PDF" -msgstr "Specify a password" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:18 -#, fuzzy msgid "Specify user password for the PDF" -msgstr "Specify a password" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:19 #: /tmp/fish/implicit/share/completions/xpdf.fish:28 -#, fuzzy msgid "Don't print any messages or errors" -msgstr "Don't run any tag programs" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:20 -#, fuzzy msgid "Print copyright and version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/pdftotext.fish:21 #: /tmp/fish/implicit/share/completions/xpdf.fish:31 -#, fuzzy msgid "Print usage information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:1 #: /tmp/fish/implicit/share/completions/ruby.fish:1 -#, fuzzy msgid "Specify record separator" -msgstr "Specify record separator" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:2 #: /tmp/fish/implicit/share/completions/ruby.fish:2 -#, fuzzy msgid "Turn on autosplit mode" -msgstr "Turn on autosplit mode" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:3 #: /tmp/fish/implicit/share/completions/ruby.fish:3 -#, fuzzy msgid "Check syntax" -msgstr "Check syntax" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:4 msgid "Control Unicode features" @@ -50227,9 +46228,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:15 #: /tmp/fish/implicit/share/completions/ruby.fish:5 -#, fuzzy msgid "Debugger" -msgstr "Debugger" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:16 msgid "Debugger, with threads" @@ -50241,18 +46241,16 @@ msgstr "Debug option" #: /tmp/fish/implicit/share/completions/perl.fish:18 #: /tmp/fish/implicit/share/completions/ruby.fish:6 -#, fuzzy msgid "Execute command" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:19 msgid "Execute command, enable optional features" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:20 -#, fuzzy msgid "Disable sitecustomize.pl" -msgstr "Disable the use of cookies" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:21 #: /tmp/fish/implicit/share/completions/ruby.fish:8 @@ -50271,31 +46269,26 @@ msgstr "Include path" #: /tmp/fish/implicit/share/completions/perl.fish:25 #: /tmp/fish/implicit/share/completions/ruby.fish:11 -#, fuzzy msgid "Automatic line ending processing" -msgstr "Automatic line ending processing" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:26 -#, fuzzy msgid "Require module" -msgstr "Require file" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:27 -#, fuzzy msgid "Use module" -msgstr "Unsafe mode" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:28 #: /tmp/fish/implicit/share/completions/ruby.fish:12 -#, fuzzy msgid "Loop script" -msgstr "Loop script" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:30 #: /tmp/fish/implicit/share/completions/ruby.fish:15 -#, fuzzy msgid "Define custom switches" -msgstr "Define custom switches" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:32 msgid "Taint checking, but only with warnings" @@ -50303,63 +46296,53 @@ msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:33 #: /tmp/fish/implicit/share/completions/ruby.fish:17 -#, fuzzy msgid "Taint checking" -msgstr "Taint checking" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:34 msgid "Dump core" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:35 -#, fuzzy msgid "Unsafe mode" -msgstr "Unsafe mode" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:37 -#, fuzzy msgid "Display configuration and exit" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:38 -#, fuzzy msgid "Show warnings" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:39 -#, fuzzy msgid "Force warnings" -msgstr "Supress warnings" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:40 -#, fuzzy msgid "Disable warnings" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:41 #: /tmp/fish/implicit/share/completions/ruby.fish:21 -#, fuzzy msgid "Extract script" -msgstr "Extract script" +msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:1 msgid "Show a filter parameter by modifier" msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:2 -#, fuzzy msgid "Flush filter params specified by mod" -msgstr "Compare only specified number of characters" +msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:3 -#, fuzzy msgid "Table command" -msgstr "Set prompt command" +msgstr "" #: /tmp/fish/implicit/share/completions/pgrep.fish:1 -#, fuzzy msgid "Output delimiter" -msgstr "Select output delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/pgrep.fish:2 msgid "List the process name as well as the process ID" @@ -50374,9 +46357,8 @@ msgid "Open file" msgstr "Open file" #: /tmp/fish/implicit/share/completions/pine.fish:4 -#, fuzzy msgid "Start in folder index" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/pine.fish:5 msgid "Initial set of keystrokes" @@ -50403,9 +46385,8 @@ msgid "Set global configuration file" msgstr "Set global configuration file" #: /tmp/fish/implicit/share/completions/pine.fish:12 -#, fuzzy msgid "Restricted mode" -msgstr "Restricted mode" +msgstr "" #: /tmp/fish/implicit/share/completions/pine.fish:13 msgid "Enable suspension support" @@ -50500,9 +46481,8 @@ msgstr "" "interface" #: /tmp/fish/implicit/share/completions/ping.fish:19 -#, fuzzy msgid "Specifies the number of data bytes to be sent" -msgstr "Specifies the number of data bytes to be sent" +msgstr "" #: /tmp/fish/implicit/share/completions/ping.fish:20 msgid "Set socket buffer size" @@ -50537,14 +46517,12 @@ msgid "Time to wait for a response, in seconds" msgstr "Time to wait for a response, in seconds" #: /tmp/fish/implicit/share/completions/pinky.fish:1 -#, fuzzy msgid "produce long format output for the specified USERs" -msgstr "Escreve lo no descritor de arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/pinky.fish:2 -#, fuzzy msgid "omit the user's home directory and shell in long format" -msgstr "List contents of directory using long format" +msgstr "" #: /tmp/fish/implicit/share/completions/pinky.fish:3 msgid "omit the user's project file in long format" @@ -50575,58 +46553,49 @@ msgid "omit the user's full name, remote host and idle time in short format" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:1 -#, fuzzy msgid "failsafe to overwrite" -msgstr "Log to file, overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:2 #: /tmp/fish/implicit/share/completions/pkg_delete.fish:3 -#, fuzzy msgid "Turn on stats" -msgstr "Warning control" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:3 -#, fuzzy msgid "Automated package installation" -msgstr "Don't change the package installation order" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:5 -#, fuzzy msgid "Update packages" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:6 msgid "Fuzzy match" msgstr "" #: /tmp/fish/implicit/share/completions/pkgadd.fish:1 -#, fuzzy msgid "Upgrade" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgadd.fish:2 msgid "Force installation, overwriting" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:1 -#, fuzzy msgid "Print versions of the specified libraries" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:2 -#, fuzzy msgid "Display the version of pkg-config and quit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:3 -#, fuzzy msgid "Displays a help message and quit" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:4 -#, fuzzy msgid "Print message when errors occur" -msgstr "Work silently, unless an error occurs" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:5 msgid "Stay quiet when errors occur" @@ -50645,9 +46614,8 @@ msgid "This prints the -I part of \"--cflags\"." msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:10 -#, fuzzy msgid "Print link flags" -msgstr "Print line of headings" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:11 msgid "This prints the -L/-R part of \"--libs\"." @@ -50670,14 +46638,12 @@ msgid "Returns a list of all variables defined in the package" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:16 -#, fuzzy msgid "Return success if any -uninstalled packages are used" -msgstr "Query an (uninstalled) package in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:17 -#, fuzzy msgid "Test if a package has at most the specified version" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:18 msgid "Test if a package has at least this version" @@ -50688,9 +46654,8 @@ msgid "Test if a package has exactly this version" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:20 -#, fuzzy msgid "Test if a package exists" -msgstr "Verificar a integridade do pacote" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:21 msgid "Output libraries suitable for static linking" @@ -50701,23 +46666,20 @@ msgid "List all modules found in the pkg-config path" msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:23 -#, fuzzy msgid "List all modules the given packages provides" -msgstr "List capabilities this package provides" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:24 -#, fuzzy msgid "List all modules the given packages requires" -msgstr "List capabilities this package provides" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg-config.fish:25 msgid "List all modules the given packages requires for static linking" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_delete.fish:2 -#, fuzzy msgid "Delete unsed deps" -msgstr "Delete selection" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:3 msgid "only show files in a {s}bin/ directory. Works with -s, -l" @@ -50728,38 +46690,32 @@ msgid "make searches case sensitive" msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:5 -#, fuzzy msgid "allow the use of * and ? as wildcards" -msgstr "Do not expand pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:6 -#, fuzzy msgid "allow the use of regex in searches" -msgstr "Never allow the use of specified cipher algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:7 -#, fuzzy msgid "search only in the specified repository" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:8 -#, fuzzy msgid "enable verbose output" -msgstr "Mostra saída com dired" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:9 -#, fuzzy msgid "provides information about the package owning a file" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:10 msgid "list files of a given package; similar to \"pacman -Ql\"" msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:11 -#, fuzzy msgid "search which package owns a file" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgfile.fish:12 msgid "" @@ -50768,19 +46724,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:2 -#, fuzzy msgid "Show debug information" -msgstr "Show whatis information" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:3 -#, fuzzy msgid "List subcommands" -msgstr "Lista por colunas" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:4 -#, fuzzy msgid "Set configuration option" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:5 msgid "Run sanity test" @@ -50795,19 +46748,16 @@ msgid "Run package manager within chroot" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:8 -#, fuzzy msgid "Install packages in specified root" -msgstr "Query an (uninstalled) package in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:9 -#, fuzzy msgid "Use configuration file" -msgstr "Arquivo de configuração" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:10 -#, fuzzy msgid "Set repository configuration directory" -msgstr "Não foi possível encontrar o diretório home" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:11 msgid "Use IPv4" @@ -50818,64 +46768,53 @@ msgid "Use IPv6" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:13 -#, fuzzy msgid "Display help for command" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:14 -#, fuzzy msgid "Install package file" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:15 -#, fuzzy msgid "Modify annotations on packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:16 -#, fuzzy msgid "Audit installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:17 -#, fuzzy msgid "Delete unneeded packages" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:18 msgid "Dump package database" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:19 -#, fuzzy msgid "Check installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:20 -#, fuzzy msgid "Clean local cache" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:21 -#, fuzzy msgid "Convert package from pkg_add format" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:22 -#, fuzzy msgid "Create a package" -msgstr "Erase package" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:23 #: /tmp/fish/implicit/share/completions/pkg.fish:31 -#, fuzzy msgid "Remove a package" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:24 -#, fuzzy msgid "Download a remote package" -msgstr "Download and extract a source" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:26 #: /tmp/fish/implicit/share/completions/zypper.fish:3 @@ -50884,45 +46823,37 @@ msgid "Install packages" msgstr "Instalar pacotes" #: /tmp/fish/implicit/share/completions/pkg.fish:27 -#, fuzzy msgid "Prevent package modification" -msgstr "Print package name/distro" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:28 -#, fuzzy msgid "List package manager plugins" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:29 #: /tmp/fish/implicit/share/completions/rpm.fish:95 -#, fuzzy msgid "Query installed packages" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:30 -#, fuzzy msgid "Register a package in a database" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:32 -#, fuzzy msgid "Create package repository" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:33 -#, fuzzy msgid "Query information for remote repositories" -msgstr "Display information about a local or remote item" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:34 -#, fuzzy msgid "Find packages" -msgstr "Upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:35 -#, fuzzy msgid "Modify package information in database" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:36 msgid "Open a SQLite shell" @@ -50933,36 +46864,32 @@ msgid "Display packages linking to shared library" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:38 -#, fuzzy msgid "Display package statistics" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:39 msgid "Stop preventing package modification" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:40 -#, fuzzy msgid "Update remote repositories" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:41 msgid "Display UPDATING entries" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:43 -#, fuzzy msgid "Show package versions" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:44 msgid "Check which package provides a file" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:45 -#, fuzzy msgid "Mark packages as automatic" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:46 msgid "Force installation even when installed" @@ -50970,207 +46897,171 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:47 #: /tmp/fish/implicit/share/completions/pkg.fish:61 -#, fuzzy msgid "Disable installation scripts" -msgstr "Disable pseudo-tty allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:48 #: /tmp/fish/implicit/share/completions/pkg.fish:62 -#, fuzzy msgid "Force installation with missing dependencies" -msgstr "Don't do a dependency check" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:49 -#, fuzzy msgid "Force quiet output" -msgstr "Saída forçada" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:50 -#, fuzzy msgid "Do not make changes" -msgstr "Don't summarize changes" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:51 -#, fuzzy msgid "Assume yes when asked for confirmation" -msgstr "Ask for confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:52 -#, fuzzy msgid "Delete all cached packages" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:53 -#, fuzzy msgid "Delete all installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:54 -#, fuzzy msgid "Case sensitive packages" -msgstr "Erase built packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:55 -#, fuzzy msgid "Disable deinstallation scripts" -msgstr "Disable pseudo-tty allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:56 -#, fuzzy msgid "Force package removal" -msgstr "Ignore package Holds" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:57 msgid "Treat the package name as shell glob" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:58 -#, fuzzy msgid "Case insensitive packages" -msgstr "Case insensitive" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:59 -#, fuzzy msgid "Remove recursively" -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:60 msgid "Treat the package name as regular expression" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:63 -#, fuzzy msgid "Do not perform actual installation" -msgstr "Don't check for sufficient disk space before installation" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:64 -#, fuzzy msgid "Reinstall packages required by this package" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:65 -#, fuzzy msgid "Use only a given repository" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:66 -#, fuzzy msgid "Do not automatically update database" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:67 -#, fuzzy msgid "Force a full download of a repository" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:2 -#, fuzzy msgid "Package whose files to list" -msgstr "Re-package the files before erasing" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:3 -#, fuzzy msgid "Print the package owning file matching pattern" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:4 -#, fuzzy msgid "Print footprint for file" -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:5 -#, fuzzy msgid "Specify alternative installation root" -msgstr "Specify installroot" +msgstr "" #: /tmp/fish/implicit/share/completions/pkginfo.fish:6 -#, fuzzy msgid "Print version of pkgutils" -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:1 -#, fuzzy msgid "Install with pkgadd after build" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:2 msgid "Upgrade with pkgadd after build" msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:3 -#, fuzzy msgid "Search and build packages recursively" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:4 -#, fuzzy msgid "Download the sources" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:5 -#, fuzzy msgid "Only download the sources" -msgstr "Do not download source" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:6 -#, fuzzy msgid "Check if the package is uptodate" -msgstr "Exclude specified package from updates" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:7 #: /tmp/fish/implicit/share/completions/prt-get.fish:39 #: /tmp/fish/implicit/share/completions/prt-get.fish:98 -#, fuzzy msgid "Update footprint" -msgstr "Update mirror list" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:8 #: /tmp/fish/implicit/share/completions/prt-get.fish:40 #: /tmp/fish/implicit/share/completions/prt-get.fish:99 -#, fuzzy msgid "Ignore footprint" -msgstr "Ignore errors" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:9 #: /tmp/fish/implicit/share/completions/prt-get.fish:37 #: /tmp/fish/implicit/share/completions/prt-get.fish:96 -#, fuzzy msgid "Update md5sum" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:10 #: /tmp/fish/implicit/share/completions/prt-get.fish:38 #: /tmp/fish/implicit/share/completions/prt-get.fish:97 -#, fuzzy msgid "Ignore md5sum" -msgstr "Ignore case" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:11 -#, fuzzy msgid "Do not strip executables" -msgstr "Make scripts executable" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:12 #: /tmp/fish/implicit/share/completions/prt-get.fish:36 #: /tmp/fish/implicit/share/completions/prt-get.fish:95 -#, fuzzy msgid "Force rebuild" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:13 -#, fuzzy msgid "Remove package and sources" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:14 -#, fuzzy msgid "Keep working dir" -msgstr "Muda diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:15 -#, fuzzy msgid "Use another config" -msgstr "Use pattern from file" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgrm.fish:1 msgid "Package to remove" @@ -51200,14 +47091,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/poff.fish:6 -#, fuzzy msgid "Displays help information" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/poff.fish:7 -#, fuzzy msgid "Prints the version and exits" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:1 msgid "run 'make config' for all ports (overrides -G)." @@ -51250,9 +47139,8 @@ msgid "recurse dependencies thoroughly, using all-depends-list." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:11 -#, fuzzy msgid "verbose output." -msgstr "Verbose prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:12 msgid "save old shared libraries before deinstall [-R]… [See Man Page]" @@ -51263,9 +47151,8 @@ msgid "interactive update mode -- ask whether to rebuild ports." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:14 -#, fuzzy msgid "no cleaning of distfiles." -msgstr "Control creation of sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:15 msgid "always clean distfiles." @@ -51300,9 +47187,8 @@ msgid "use the INDEX for status, but double-check with the port." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:23 -#, fuzzy msgid "do not try to use /usr/ports." -msgstr "Do not try to use the GnuPG-Agent" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:24 msgid "delete ports that are build-only dependencies a… [See Man Page]" @@ -51321,18 +47207,16 @@ msgid "fail if no package is available." msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:28 -#, fuzzy msgid "use packages for all build dependencies." -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:29 msgid "use package if newer than installed even if the… [See Man Page]" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:30 -#, fuzzy msgid "fetch package even if it already exists locally." -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:31 msgid "where local packages can be found, will fall ba… [See Man Page]" @@ -51379,32 +47263,28 @@ msgid "answer yes to all user prompts for the features… [See Man Page]" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:42 -#, fuzzy msgid "display help message." -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:43 msgid "display the version number El ENVIRONMENT The d… [See Man Page]" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:44 -#, fuzzy msgid "Ports Directory" -msgstr "Directory" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:45 msgid "Installed Package" msgstr "Pacote instalado" #: /tmp/fish/implicit/share/completions/ports.fish:1 -#, fuzzy msgid "Update ports" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/ports.fish:2 -#, fuzzy msgid "List ports" -msgstr "Dir to import" +msgstr "" #: /tmp/fish/implicit/share/completions/ports.fish:3 msgid "List version diffs between local and installed ports" @@ -51431,14 +47311,12 @@ msgid "Just write wtmp record" msgstr "" #: /tmp/fish/implicit/share/completions/poweroff.fish:7 -#, fuzzy msgid "Don't write wtmp record" -msgstr "Don't remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/poweroff.fish:8 -#, fuzzy msgid "Don't send wall message" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:2 #: /tmp/fish/implicit/share/completions/prt-get.fish:62 @@ -51450,15 +47328,13 @@ msgstr "Porta" #: /tmp/fish/implicit/share/completions/prt-get.fish:3 #: /tmp/fish/implicit/share/completions/prt-get.fish:64 -#, fuzzy msgid "Install listed ports" -msgstr "Install new package" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:4 #: /tmp/fish/implicit/share/completions/prt-get.fish:65 -#, fuzzy msgid "Install listed ports and their deps" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:5 #: /tmp/fish/implicit/share/completions/prt-get.fish:66 @@ -51467,33 +47343,28 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:6 #: /tmp/fish/implicit/share/completions/prt-get.fish:67 -#, fuzzy msgid "Update listed packages" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:7 #: /tmp/fish/implicit/share/completions/prt-get.fish:68 -#, fuzzy msgid "Remove listed packages" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:8 #: /tmp/fish/implicit/share/completions/prt-get.fish:69 -#, fuzzy msgid "Update all outdated installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:9 #: /tmp/fish/implicit/share/completions/prt-get.fish:70 -#, fuzzy msgid "Do not update this in sysup" -msgstr "Do not propagate times for matching symbols" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:10 #: /tmp/fish/implicit/share/completions/prt-get.fish:71 -#, fuzzy msgid "Remove this from lock" -msgstr "Remove source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:11 #: /tmp/fish/implicit/share/completions/prt-get.fish:72 @@ -51502,9 +47373,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:12 #: /tmp/fish/implicit/share/completions/prt-get.fish:73 -#, fuzzy msgid "Search for an expr in port names" -msgstr "Prompt for an expiration time" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:13 #: /tmp/fish/implicit/share/completions/prt-get.fish:74 @@ -51513,22 +47383,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:14 #: /tmp/fish/implicit/share/completions/prt-get.fish:75 -#, fuzzy msgid "Print info on a port" -msgstr "Print time of last boot" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:15 #: /tmp/fish/implicit/share/completions/prt-get.fish:76 -#, fuzzy msgid "Search for a pattern in the footprints in the ports tree" msgstr "" -"Searches for matches of the supplied string in the current local portage tree" #: /tmp/fish/implicit/share/completions/prt-get.fish:16 #: /tmp/fish/implicit/share/completions/prt-get.fish:77 -#, fuzzy msgid "Print the path of a port" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:17 #: /tmp/fish/implicit/share/completions/prt-get.fish:78 @@ -51537,15 +47403,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:18 #: /tmp/fish/implicit/share/completions/prt-get.fish:79 -#, fuzzy msgid "Print a list of deps for the listed ports" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:19 #: /tmp/fish/implicit/share/completions/prt-get.fish:80 -#, fuzzy msgid "Print a simple list of deps for the listed ports" -msgstr "Print suppressions for detected errors" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:20 #: /tmp/fish/implicit/share/completions/prt-get.fish:81 @@ -51553,56 +47417,47 @@ msgid "Print a deptree for the port" msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:21 -#, fuzzy msgid "List ports in multiple directories" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:22 #: /tmp/fish/implicit/share/completions/prt-get.fish:82 -#, fuzzy msgid "List all the ports" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:23 #: /tmp/fish/implicit/share/completions/prt-get.fish:83 -#, fuzzy msgid "Print formatted list of ports" -msgstr "Imprime texto formatado" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:25 #: /tmp/fish/implicit/share/completions/prt-get.fish:85 -#, fuzzy msgid "List installed packages which have no dependent packages" -msgstr "List packages on which this package depends" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:26 -#, fuzzy msgid "Check if a port is installed" -msgstr "Query installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:27 #: /tmp/fish/implicit/share/completions/prt-get.fish:86 -#, fuzzy msgid "Print the version of an installed package" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:28 #: /tmp/fish/implicit/share/completions/prt-get.fish:87 -#, fuzzy msgid "Print the listing of the directory of a port" -msgstr "Imprime o diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:29 #: /tmp/fish/implicit/share/completions/prt-get.fish:88 -#, fuzzy msgid "Print a file in a port to stdout" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:30 #: /tmp/fish/implicit/share/completions/prt-get.fish:89 -#, fuzzy msgid "Edit a file in a port" -msgstr "Edit files in-place" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:31 #: /tmp/fish/implicit/share/completions/prt-get.fish:90 @@ -51611,44 +47466,37 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:32 #: /tmp/fish/implicit/share/completions/prt-get.fish:91 -#, fuzzy msgid "Print the configuration of prt-get" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:33 #: /tmp/fish/implicit/share/completions/prt-get.fish:92 -#, fuzzy msgid "Show the current version of prt-get" -msgstr "Show the log messages for a set of revision(s) and/or file(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:34 #: /tmp/fish/implicit/share/completions/prt-get.fish:93 -#, fuzzy msgid "Create a cache for prt-get" -msgstr "Create summary change report" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:41 #: /tmp/fish/implicit/share/completions/prt-get.fish:100 -#, fuzzy msgid "No stripping" -msgstr "Prompt string" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:42 #: /tmp/fish/implicit/share/completions/prt-get.fish:101 -#, fuzzy msgid "Keep work directory" -msgstr "Muda diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:43 #: /tmp/fish/implicit/share/completions/prt-get.fish:102 -#, fuzzy msgid "Ignore the listed ports" -msgstr "Ignore first line of input" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:44 -#, fuzzy msgid "Use cache" -msgstr "Set cache dir" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:46 #: /tmp/fish/implicit/share/completions/prt-get.fish:104 @@ -51667,27 +47515,23 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:49 #: /tmp/fish/implicit/share/completions/prt-get.fish:107 -#, fuzzy msgid "Ignore default config file" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:50 #: /tmp/fish/implicit/share/completions/prt-get.fish:108 -#, fuzzy msgid "Prepend string to config file" -msgstr "Prepend string to relative links" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:51 #: /tmp/fish/implicit/share/completions/prt-get.fish:109 -#, fuzzy msgid "Append string to config file" -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:52 #: /tmp/fish/implicit/share/completions/prt-get.fish:110 -#, fuzzy msgid "Overrirde config file with string" -msgstr "Overwrite modified files with clean copies" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:54 #: /tmp/fish/implicit/share/completions/prt-get.fish:112 @@ -51706,21 +47550,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:57 #: /tmp/fish/implicit/share/completions/prt-get.fish:115 -#, fuzzy msgid "Prefer higher version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:58 #: /tmp/fish/implicit/share/completions/prt-get.fish:116 -#, fuzzy msgid "Override prefer-higher" -msgstr "Override framerate" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:59 #: /tmp/fish/implicit/share/completions/prt-get.fish:117 -#, fuzzy msgid "Use alternative config file" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:60 #: /tmp/fish/implicit/share/completions/prt-get.fish:118 @@ -51729,9 +47570,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:61 #: /tmp/fish/implicit/share/completions/prt-get.fish:119 -#, fuzzy msgid "Write output to log file" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:1 #: /tmp/fish/implicit/share/completions/ps.fish:5 @@ -51802,9 +47642,8 @@ msgid "Add column for security data" msgstr "Add column for security data" #: /tmp/fish/implicit/share/completions/ps.fish:19 -#, fuzzy msgid "Show different scheduler information for the -l option" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:20 msgid "Full format" @@ -51831,9 +47670,8 @@ msgid "Wide output" msgstr "Wide output" #: /tmp/fish/implicit/share/completions/ps.fish:29 -#, fuzzy msgid "Set screen width" -msgstr "Assume screen width" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:30 msgid "Include dead child process data" @@ -51844,34 +47682,28 @@ msgid "Repead header lines, one per page" msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:32 -#, fuzzy msgid "Print no headers" -msgstr "Print line of headings" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:33 -#, fuzzy msgid "Set screen height" -msgstr "Set severity" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:34 -#, fuzzy msgid "Spericy sorting order" -msgstr "Set mail sort order" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:35 -#, fuzzy msgid "Show threads. With LWP/NLWP" -msgstr "Show threads" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:36 -#, fuzzy msgid "Show threads. With SPID" -msgstr "Show threads" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:37 -#, fuzzy msgid "Show threads after processes" -msgstr "Stop after preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:1 msgid "database name to connect to" @@ -51882,51 +47714,44 @@ msgid "run only single command (SQL or internal) and exit" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:3 -#, fuzzy msgid "execute commands from file, then exit" -msgstr "Execute command as if part of .wgetrc" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:4 -#, fuzzy msgid "list available databases, then exit" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:5 msgid "do not read startup file (~/.psqlrc)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:6 -#, fuzzy msgid "execute command file as a single transaction" -msgstr "Execute command as if part of .wgetrc" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:7 -#, fuzzy msgid "show this help, then exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:8 -#, fuzzy msgid "output version information, then exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:9 msgid "echo all input from script" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:10 -#, fuzzy msgid "echo commands sent to server" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:11 msgid "display queries that internal commands generate" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:12 -#, fuzzy msgid "send session log to file" -msgstr "Save session cookies" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:13 msgid "disable enhanced command line editing (readline)" @@ -51949,9 +47774,8 @@ msgid "single-line mode (end of line terminates SQL command)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:18 -#, fuzzy msgid "unaligned table output mode" -msgstr "Give human readable output" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:19 msgid "HTML table output mode" @@ -51962,18 +47786,16 @@ msgid "set printing option VAR to ARG (see \\pset command)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:21 -#, fuzzy msgid "print rows only" -msgstr "Print verbose info" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:22 msgid "set HTML table tag attributes (e.g., width, border)" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:23 -#, fuzzy msgid "turn on expanded table output" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:24 msgid "set field separator (default: '|')" @@ -51992,14 +47814,12 @@ msgid "database server port" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:28 -#, fuzzy msgid "database user name" -msgstr "Service name" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:29 -#, fuzzy msgid "never prompt for password" -msgstr "Never prompt before removal" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:30 msgid "force password prompt (should happen automatically)" @@ -52014,47 +47834,40 @@ msgid "Turn progress bar on" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:2 -#, fuzzy msgid "Show timer" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:3 -#, fuzzy msgid "Show estimated time left" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:4 msgid "Show estimated time of arrival" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:5 -#, fuzzy msgid "Show rate counter" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:6 -#, fuzzy msgid "Show average rate" -msgstr "Show packages in cache" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:7 -#, fuzzy msgid "Show total byte counter" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:8 msgid "Show transfer buffer percentage" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:9 -#, fuzzy msgid "Show the last NUM bytes written" -msgstr "Print total bytes written" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:10 -#, fuzzy msgid "Set output format" -msgstr "Specify output format" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:13 msgid "Wait for first byte before showing progress" @@ -52065,43 +47878,36 @@ msgid "Wait given time (in secs) before showing progress" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:15 -#, fuzzy msgid "Set total number of bytes to be transfered" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:16 msgid "Count lines instead of bytes" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:17 -#, fuzzy msgid "Count null-terminated lines" -msgstr "-T has null-terminated names" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:18 -#, fuzzy msgid "Wait given time (in secs) between updates" -msgstr "Wait time between retries" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:19 -#, fuzzy msgid "Set terminal width" -msgstr "Parada para entrada de terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:20 -#, fuzzy msgid "Set terminal height" -msgstr "Parada para entrada de terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:21 -#, fuzzy msgid "Prefix output with given name" -msgstr "Specify output filename" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:22 -#, fuzzy msgid "Force output" -msgstr "Wide output" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:23 msgid "Use cursor positioning escape sequence instead of \\r" @@ -52116,14 +47922,12 @@ msgid "Use transfer buffer size (in bytes)" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:26 -#, fuzzy msgid "Don't use slice" -msgstr "Don't use batch mode" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:27 -#, fuzzy msgid "Ignore read errors" -msgstr "Ignore errors" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:28 msgid "Stop transfer after given number of bytes" @@ -52146,20 +47950,17 @@ msgid "Report colourised filesystem disk space usage" msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:2 -#, fuzzy msgid "show this help message" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:3 #: /tmp/fish/implicit/share/completions/quilt.fish:2 -#, fuzzy msgid "show version" -msgstr "Source tree version" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:4 -#, fuzzy msgid "include filesystems having 0 blocks" -msgstr "Exclui sistemas de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:5 msgid "print sizes in human readable format (e.g., 1K 234M 2G)" @@ -52174,14 +47975,12 @@ msgid "use BLOCKSIZE-byte blocks" msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:8 -#, fuzzy msgid "limit listing to local filesystems" -msgstr "List only local filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:9 -#, fuzzy msgid "like --block-size=1024" -msgstr "Set block size" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:10 msgid "like --block-size=1048576" @@ -52196,9 +47995,8 @@ msgid "use filesystem native block size" msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:13 -#, fuzzy msgid "do not use colours" -msgstr "Usa cores" +msgstr "" #: /tmp/fish/implicit/share/completions/pydf.fish:14 msgid "" @@ -52217,48 +48015,40 @@ msgid "show inode instead of block usage" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:1 -#, fuzzy msgid "Set output file" -msgstr "Output file" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:2 -#, fuzzy msgid "Read one line at a time" -msgstr "Print name, line, and time" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:3 -#, fuzzy msgid "Set lexer" -msgstr "Set severity" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:4 msgid "Guess lexer" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:5 -#, fuzzy msgid "Set formater" -msgstr "Set format file" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:6 -#, fuzzy msgid "Set coma-seperated options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:7 -#, fuzzy msgid "Set one option" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:8 -#, fuzzy msgid "Set filter" -msgstr "Set tag file" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:9 -#, fuzzy msgid "Print style definition for given style" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:10 msgid "List lexers, formaters, styles or filters" @@ -52269,18 +48059,16 @@ msgid "Guess and print lexer name based on given file" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:12 -#, fuzzy msgid "Print detailed help" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:13 msgid "Print detailed traceback on unhandled exceptions" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:15 -#, fuzzy msgid "Print package version" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:1 #: /tmp/fish/implicit/share/completions/python3.fish:1 @@ -52333,16 +48121,14 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:10 #: /tmp/fish/implicit/share/completions/python3.fish:10 #: /tmp/fish/implicit/share/completions/python.fish:11 -#, fuzzy msgid "Disable import of site module" -msgstr "Disable import of site module" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:11 #: /tmp/fish/implicit/share/completions/python3.fish:11 #: /tmp/fish/implicit/share/completions/python.fish:12 -#, fuzzy msgid "Unbuffered input and output" -msgstr "Unbuffered input and output" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:14 #: /tmp/fish/implicit/share/completions/python3.fish:14 @@ -52359,9 +48145,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:16 #: /tmp/fish/implicit/share/completions/python3.fish:16 #: /tmp/fish/implicit/share/completions/python.fish:17 -#, fuzzy msgid "Read program from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:17 #: /tmp/fish/implicit/share/completions/python.fish:18 @@ -52370,9 +48155,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:18 #: /tmp/fish/implicit/share/completions/python.fish:19 -#, fuzzy msgid "Warn on mixed tabs and spaces" -msgstr "Warn on mixed tabs and spaces" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:19 #: /tmp/fish/implicit/share/completions/python.fish:20 @@ -52387,15 +48171,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:17 #: /tmp/fish/implicit/share/completions/python.fish:21 -#, fuzzy msgid "Don't print version and copyright messages on interactive startup" -msgstr "Ignore version magic information" +msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:18 #: /tmp/fish/implicit/share/completions/python.fish:22 -#, fuzzy msgid "Set implementation-specific option" -msgstr "Edita compleções específicas para um comando" +msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:19 #: /tmp/fish/implicit/share/completions/python.fish:23 @@ -52406,38 +48188,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:20 #: /tmp/fish/implicit/share/completions/python.fish:24 -#, fuzzy msgid "Issue errors" -msgstr "Ignore errors" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:3 -#, fuzzy msgid "specify the file to Run Control file to use" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:4 msgid "Runs the command in bash trace mode (-x). For internal debugging" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:5 -#, fuzzy msgid "Add one or more files to the topmost or named patch" -msgstr "Adicionar um ou mais novos arquivos ou diretórios" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:6 -#, fuzzy msgid "Print an annotated listing of the specified file" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:7 -#, fuzzy msgid "Print a list of applied patches" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:8 -#, fuzzy msgid "Remove the specified or topmost patch from the series file" -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:9 msgid "" @@ -52445,14 +48221,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:10 -#, fuzzy msgid "Edit the specified file(s) in /usr/bin/vim" -msgstr "Add specified file to the current list of keyrings" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:11 -#, fuzzy msgid "Print the list of files that the topmost or specified patch changes" -msgstr "Define a lista de preferências padrão como a string especificada" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:12 msgid "" @@ -52502,9 +48276,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:21 -#, fuzzy msgid "Print the list of patches that modify the specified file" -msgstr "Define a lista de preferências padrão como a string especificada" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:22 msgid "" @@ -52513,36 +48286,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:23 -#, fuzzy msgid "Apply patch(es) from the series file" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:24 msgid "Refreshes the specified patch, or the topmost patch by default" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:25 -#, fuzzy msgid "Remove one or more files from the topmost or named patch" -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:26 msgid "Rename the topmost or named patch" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:27 -#, fuzzy msgid "Print the names of all patches in the series file" -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:28 msgid " Initializes a source tree from an rpm spec file or a quilt series file" msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:29 -#, fuzzy msgid " Take a snapshot of the current working state" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/quilt.fish:30 msgid "" @@ -52562,24 +48331,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:1 -#, fuzzy msgid "Activate debug mode" -msgstr "Sets debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:2 -#, fuzzy msgid "Activate clean mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:3 -#, fuzzy msgid "Change configuration directory" -msgstr "Muda diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:4 -#, fuzzy msgid "Create copies of the default configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:5 msgid "Pick file with ranger" @@ -52590,9 +48355,8 @@ msgid "Pick multiple files with ranger" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:7 -#, fuzzy msgid "Pick directory" -msgstr "Recurse directories" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:8 msgid "Open ranger with given file selected" @@ -52611,24 +48375,20 @@ msgid "Print statistics of CPU usage on exit" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:12 -#, fuzzy msgid "Execute command after configuration file read" -msgstr "List of rpm configuration files" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:1 -#, fuzzy msgid "List all rbenv commands" -msgstr "Disable this command" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:2 -#, fuzzy msgid "Set or show the global Ruby version" -msgstr "Ordena por versão" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:3 -#, fuzzy msgid "Install a ruby version" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:4 msgid "Set or show the local directory-specific Ruby version" @@ -52643,82 +48403,56 @@ msgid "Rehash rbenv shims (run this after installing binaries)" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:7 -#, fuzzy msgid "rbenv root folder" -msgstr "Open folder" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:8 msgid "Set or show the shell-specific Ruby version" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:9 -#, fuzzy msgid "Show the current Ruby version" -msgstr "Ordena por versão" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:10 msgid "List all Ruby versions known by rbenv" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:11 -#, fuzzy msgid "List all Ruby versions with the given command" -msgstr "Run fish with this command" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:12 msgid "Show the full path for the given Ruby command" msgstr "" -#: /tmp/fish/implicit/share/completions/rc.d.fish:1 -#, fuzzy -msgid "Filter started daemons" -msgstr "Print all names" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:2 -msgid "Filter stopped daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:3 -msgid "Filter auto started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:4 -#, fuzzy -msgid "Filter manually started daemons" -msgstr "Query all installed packages" - #: /tmp/fish/implicit/share/completions/rc-service.fish:1 msgid "Tests if the service exists or not" msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:2 -#, fuzzy msgid "List all available services" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:3 -#, fuzzy msgid "Display the help output" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:5 -#, fuzzy msgid "Display software version" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:6 -#, fuzzy msgid "Run verbosely" -msgstr "Do not overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/rc-service.fish:7 msgid "Run quietly (Does not affect errors)" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:2 -#, fuzzy msgid "Set prompt command" -msgstr "Select by command" +msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:3 #: /tmp/fish/implicit/share/completions/set.fish:4 @@ -52763,18 +48497,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:11 -#, fuzzy msgid "Read the specified number of characters" -msgstr "Compare only specified number of characters" +msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:12 msgid "Store the results as an array" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:13 -#, fuzzy msgid "Set right-hand prompt command" -msgstr "Obtém ou altera o buffer da linha de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/readlink.fish:1 msgid "Canonicalize, follow symlinks, last can be missing" @@ -52793,18 +48525,16 @@ msgid "Do not output the trailing newline" msgstr "" #: /tmp/fish/implicit/share/completions/readlink.fish:6 -#, fuzzy msgid "Report error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:1 msgid "all components of the path must exist" msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:2 -#, fuzzy msgid "no components of the path need exist" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:3 msgid "resolve '..' components before symlinks" @@ -52815,9 +48545,8 @@ msgid "resolve symlinks as encountered (default)" msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:5 -#, fuzzy msgid "suppress most error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:6 msgid "print the resolved path relative to FILE" @@ -52828,9 +48557,8 @@ msgid "print absolute paths unless paths below FILE" msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:8 -#, fuzzy msgid "don't expand symlinks" -msgstr "Não segue links simbólicos" +msgstr "" #: /tmp/fish/implicit/share/completions/realpath.fish:9 msgid "separate output with NUL rather than newline" @@ -52873,23 +48601,20 @@ msgid "Remove each component of path" msgstr "Remove each component of path" #: /tmp/fish/implicit/share/completions/rmmod.fish:1 -#, fuzzy msgid "Prints the help text." -msgstr "Imprime texto formatado" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:2 msgid "Send errors to syslog instead of standard error." msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:3 -#, fuzzy msgid "Print messages about what the program is doing." -msgstr "Print messages about what the program is doing" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:4 -#, fuzzy msgid "Show version of program and exit" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:5 msgid "" @@ -52898,37 +48623,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:2 -#, fuzzy msgid "Do not execute logon and logoff macros" -msgstr "Do not execute commands" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:3 msgid "Exit after processing commandline macro files" msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:4 -#, fuzzy msgid "Do not show splashscreen" -msgstr "Do not show flags" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:5 -#, fuzzy msgid "Exit on exception" -msgstr "Exit on second EOF" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:7 -#, fuzzy msgid "Print ./configure options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/root.fish:8 msgid "Run with memory usage monitoring" msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:5 -#, fuzzy msgid "List of rpm configuration files" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:6 msgid "Pipe output through specified command" @@ -52939,183 +48659,141 @@ msgid "Specify directory for rpm database" msgstr "Specify directory for rpm database" #: /tmp/fish/implicit/share/completions/rpm.fish:8 -#, fuzzy msgid "Specify root directory for rpm operations" -msgstr "Specify directory for rpm database" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:9 -#, fuzzy msgid "Add suggested packages to the transaction set when needed" -msgstr "Add suggested packages to the transaction set when needed" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:10 -#, fuzzy msgid "" "Installs or upgrades all the files in the package, even if they aren't " "needed (missingok) and don't exist" msgstr "" -"Installs or upgrades all the files in the package, even if they aren't " -"needed (missingok) and don't exist" #: /tmp/fish/implicit/share/completions/rpm.fish:11 -#, fuzzy 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 "" -"Used with --relocate, permit relocations on all file paths, not just those " -"OLD-PATH's included in the binary package relocation hint(s)" #: /tmp/fish/implicit/share/completions/rpm.fish:12 -#, fuzzy msgid "Don't install files whose name begins with specified path" -msgstr "Don't install files whose name begins with specified path" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:13 -#, fuzzy msgid "Don't install any files which are marked as documentation" -msgstr "Don't install any files which are marked as documentation" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:14 -#, fuzzy msgid "Same as using --replacepkgs, --replacefiles, and --oldpackage" -msgstr "Same as using --replacepkgs, --replacefiles, and --oldpackage" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:15 -#, fuzzy msgid "Print 50 hash marks as the package archive is unpacked" -msgstr "Print 50 hash marks as the package archive is unpacked" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:16 -#, fuzzy msgid "Don't check for sufficient disk space before installation" -msgstr "Don't check for sufficient disk space before installation" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:17 -#, fuzzy msgid "" "Allow installation or upgrading even if the architectures of the binary " "package and host don't match" msgstr "" -"Allow installation or upgrading even if the architectures of the binary " -"package and host don't match" #: /tmp/fish/implicit/share/completions/rpm.fish:18 -#, fuzzy msgid "" "Allow installation or upgrading even if the operating systems of the binary " "package and host don't match" msgstr "" -"Allow installation or upgrading even if the operating systems of the binary " -"package and host don't match" #: /tmp/fish/implicit/share/completions/rpm.fish:19 -#, fuzzy msgid "Install documentation files (default)" -msgstr "Install documentation files (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:20 -#, fuzzy msgid "Update only the database, not the filesystem" -msgstr "Update only the database, not the filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:21 #: /tmp/fish/implicit/share/completions/rpm.fish:70 -#, fuzzy msgid "Don't verify package or header digests when reading" -msgstr "Don't verify package or header digests when reading" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:22 #: /tmp/fish/implicit/share/completions/rpm.fish:73 -#, fuzzy msgid "Don't verify package or header signatures when reading" -msgstr "Don't verify package or header signatures when reading" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:23 -#, fuzzy msgid "Don't do a dependency check" -msgstr "Don't do a dependency check" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:24 -#, fuzzy msgid "Don't suggest package(s) that provide a missing dependency" -msgstr "Don't suggest package(s) that provide a missing dependency" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:25 -#, fuzzy msgid "Don't change the package installation order" -msgstr "Don't change the package installation order" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:26 -#, fuzzy msgid "Don't execute scripts" -msgstr "Don't execute scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:27 -#, fuzzy msgid "Don't execute pre scripts" -msgstr "Don't execute pre scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:28 -#, fuzzy msgid "Don't execute post scripts" -msgstr "Don't execute post scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:29 -#, fuzzy msgid "Don't execute preun scripts" -msgstr "Don't execute preun scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:30 -#, fuzzy msgid "Don't execute postun scripts" -msgstr "Don't execute postun scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:31 #: /tmp/fish/implicit/share/completions/rpm.fish:87 -#, fuzzy msgid "Don't execute trigger scriptlets" -msgstr "Don't execute trigger scriptlets" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:32 -#, fuzzy msgid "Don't execute triggerin scriptlets" -msgstr "Don't execute triggerin scriptlets" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:33 #: /tmp/fish/implicit/share/completions/rpm.fish:88 -#, fuzzy msgid "Don't execute triggerun scriptlets" -msgstr "Don't execute triggerun scriptlets" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:34 #: /tmp/fish/implicit/share/completions/rpm.fish:89 -#, fuzzy msgid "Don't execute triggerpostun scriptlets" -msgstr "Don't execute triggerpostun scriptlets" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:35 -#, fuzzy msgid "Allow an upgrade to replace a newer package with an older one" -msgstr "Allow an upgrade to replace a newer package with an older one" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:36 -#, fuzzy msgid "" "Print percentages as files are unpacked from the package archive. This is " "intended to make rpm easy to run from other tools" msgstr "" -"Print percentages as files are unpacked from the package archive. This is " -"intended to make rpm easy to run from other tools" #: /tmp/fish/implicit/share/completions/rpm.fish:37 -#, fuzzy msgid "" "For relocatable binary packages, translate all file paths that start with " "the installation prefix in the package relocation hint(s) to NEWPATH" msgstr "" -"For relocatable binary packages, translate all file paths that start with " -"the installation prefix in the package relocation hint(s) to NEWPATH" #: /tmp/fish/implicit/share/completions/rpm.fish:38 msgid "" @@ -53127,266 +48805,205 @@ msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:39 #: /tmp/fish/implicit/share/completions/rpm.fish:90 -#, fuzzy msgid "Re-package the files before erasing" -msgstr "Re-package the files before erasing" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:40 -#, fuzzy msgid "" "Install the packages even if they replace files from other, already " "installed, packages" msgstr "" -"Install the packages even if they replace files from other, already " -"installed, packages" #: /tmp/fish/implicit/share/completions/rpm.fish:41 -#, fuzzy msgid "" "Install the packages even if some of them are already installed on this " "system" msgstr "" -"Install the packages even if some of them are already installed on this " -"system" #: /tmp/fish/implicit/share/completions/rpm.fish:42 -#, fuzzy msgid "" "Don't install the package, simply check for and report potential conflicts" msgstr "" -"Don't install the package, simply check for and report potential conflicts" #: /tmp/fish/implicit/share/completions/rpm.fish:43 -#, fuzzy msgid "Display change information for the package" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:44 -#, fuzzy msgid "List only configuration files (implies -l)" -msgstr "List only configuration files (implies -l)" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:45 -#, fuzzy msgid "List only documentation files (implies -l)" -msgstr "List only documentation files (implies -l)" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:46 -#, fuzzy msgid "Dump file information. Must be used with at least one of -l, -c, -d" -msgstr "Dump file information. Must be used with at least one of -l, -c, -d" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:47 msgid "List all the files in each selected package" msgstr "Listar todos os arquivos em cada pacote selecionado" #: /tmp/fish/implicit/share/completions/rpm.fish:48 -#, fuzzy msgid "" "Display package information, including name, version, and description. Uses " "--queryformat if specified" msgstr "" -"Display package information, including name, version, and description. Uses " -"--queryformat if specified" #: /tmp/fish/implicit/share/completions/rpm.fish:49 -#, fuzzy msgid "Orders the package listing by install time" -msgstr "Orders the package listing by install time" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:50 -#, fuzzy msgid "List files in package" -msgstr "List files in package" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:51 -#, fuzzy msgid "List capabilities this package provides" -msgstr "List capabilities this package provides" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:52 -#, fuzzy msgid "List packages on which this package depends" -msgstr "List packages on which this package depends" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:53 -#, fuzzy msgid "List the package specific scriptlets" -msgstr "List the package specific scriptlets" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:54 -#, fuzzy msgid "" "Display the states of files in the package. The state of each file is one of " "normal, not installed, or replaced" msgstr "" -"Display the states of files in the package. The state of each file is one of " -"normal, not installed, or replaced" #: /tmp/fish/implicit/share/completions/rpm.fish:55 #: /tmp/fish/implicit/share/completions/rpm.fish:56 -#, fuzzy msgid "Display the trigger scripts contained in the package" -msgstr "Display the trigger scripts contained in the package" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:57 -#, fuzzy msgid "Query all installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:58 -#, fuzzy msgid "Query package owning specified file" -msgstr "Query package owning specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:59 -#, fuzzy msgid "" "Query package that contains a given file identifier, i.e. the MD5 digest of " "the file contents" msgstr "" -"Query package that contains a given file identifier, i.e. the MD5 digest of " -"the file contents" #: /tmp/fish/implicit/share/completions/rpm.fish:60 -#, fuzzy msgid "Query packages with the specified group" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:61 -#, fuzzy msgid "" "Query package that contains a given header identifier, i.e. the SHA1 digest " "of the immutable header region" msgstr "" -"Query package that contains a given header identifier, i.e. the SHA1 digest " -"of the immutable header region" #: /tmp/fish/implicit/share/completions/rpm.fish:62 -#, fuzzy msgid "Query an (uninstalled) package in specified file" -msgstr "Query an (uninstalled) package in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:63 -#, fuzzy msgid "" "Query package that contains a given package identifier, i.e. the MD5 digest " "of the combined header and payload contents" msgstr "" -"Query package that contains a given package identifier, i.e. the MD5 digest " -"of the combined header and payload contents" #: /tmp/fish/implicit/share/completions/rpm.fish:64 -#, fuzzy msgid "Parse and query specified spec-file as if it were a package" -msgstr "Parse and query specified spec-file as if it were a package" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:65 -#, fuzzy msgid "Query package(s) that have the specified TID (transaction identifier)" -msgstr "Query package(s) that have the specified TID (transaction identifier)" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:66 -#, fuzzy msgid "Query packages that are triggered by the specified packages" -msgstr "Query packages that are triggered by the specified packages" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:67 -#, fuzzy msgid "Query all packages that provide the specified capability" -msgstr "Query all packages that provide the specified capability" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:68 -#, fuzzy msgid "" "Query all packages that requires the specified capability for functioning" msgstr "" -"Query all packages that requires the specified capability for functioning" #: /tmp/fish/implicit/share/completions/rpm.fish:69 -#, fuzzy msgid "Don't verify dependencies of packages" -msgstr "Don't verify dependencies of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:71 -#, fuzzy msgid "Don't verify any attributes of package files" -msgstr "Don't verify any attributes of package files" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:72 -#, fuzzy msgid "Don't execute the %verifyscript scriptlet" -msgstr "Don't execute the %verifyscript scriptlet" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:74 -#, fuzzy msgid "Don't verify linkto attribute" -msgstr "Don't verify linkto attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:75 -#, fuzzy msgid "Don't verify md5 attribute" -msgstr "Don't verify md5 attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:76 -#, fuzzy msgid "Don't verify size attribute" -msgstr "Don't verify size attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:77 -#, fuzzy msgid "Don't verify user attribute" -msgstr "Don't verify user attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:78 -#, fuzzy msgid "Don't verify group attribute" -msgstr "Don't verify group attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:79 -#, fuzzy msgid "Don't verify time attribute" -msgstr "Don't verify time attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:80 -#, fuzzy msgid "Don't verify mode attribute" -msgstr "Don't verify mode attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:81 -#, fuzzy msgid "Don't verify dev attribute" -msgstr "Don't verify dev attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:82 -#, fuzzy msgid "Remove all versions of the package which match specified string" -msgstr "Remove all versions of the package which match specified string" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:83 -#, fuzzy msgid "Don't check dependencies before uninstalling the packages" -msgstr "Don't check dependencies before uninstalling the packages" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:84 -#, fuzzy msgid "Don't execute scriplets" -msgstr "Don't execute scriplets" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:85 -#, fuzzy msgid "Don't execute preun scriptlet" -msgstr "Don't execute preun scriptlet" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:86 -#, fuzzy msgid "Don't execute postun scriptlet" -msgstr "Don't execute postun scriptlet" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:91 -#, fuzzy msgid "Don't really uninstall anything" -msgstr "Don't really uninstall anything" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:92 msgid "Install new package" @@ -53397,23 +49014,20 @@ msgid "Upgrade existing package" msgstr "Atualizar um pacote existente" #: /tmp/fish/implicit/share/completions/rpm.fish:94 -#, fuzzy msgid "Upgrade package if already installed" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:96 msgid "Verify package integrity" msgstr "Verificar a integridade do pacote" #: /tmp/fish/implicit/share/completions/rpm.fish:97 -#, fuzzy msgid "Erase package" -msgstr "Erase package" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:2 -#, fuzzy msgid "Suppress non-error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:3 msgid "Skip based on checksum, not mod-time & size" @@ -53428,9 +49042,8 @@ msgid "Turn off an implied OPTION (e.g. --no-D)" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:6 -#, fuzzy msgid "Recurse into directories" -msgstr "Replace include directories" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:7 msgid "Use relative path names" @@ -53457,24 +49070,20 @@ msgid "Skip files that are newer on the receiver" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:13 -#, fuzzy msgid "Update destination files in-place" -msgstr "Edit files in-place" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:14 -#, fuzzy msgid "Append data onto shorter files" -msgstr "Append new files" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:15 -#, fuzzy msgid "Transfer directories without recursing" -msgstr "Process directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:16 -#, fuzzy msgid "Copy symlinks as symlinks" -msgstr "Store symbolic links as links" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:17 msgid "Transform symlink into referent file/dir" @@ -53497,14 +49106,12 @@ msgid "Treat symlinked dir on receiver as dir" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:22 -#, fuzzy msgid "Preserve hard links" -msgstr "Dereference all symlinks" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:23 -#, fuzzy msgid "Preserve permissions" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:24 msgid "Preserve executability" @@ -53519,50 +49126,44 @@ msgid "Preserve extended attrs (implies -p) [n.s.]" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:27 -#, fuzzy msgid "Change destination permissions" -msgstr "Specify destination email" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:28 msgid "Preserve owner (super-user only)" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:29 -#, fuzzy msgid "Preserve group" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:30 msgid "Preserve device files (super-user only)" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:31 -#, fuzzy msgid "Preserve special files" -msgstr "Preserve file ownership" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:32 msgid "Same as --devices --specials" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:33 -#, fuzzy msgid "Preserve times" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:34 -#, fuzzy msgid "Omit directories when preserving times" -msgstr "Lista diretórios, não seu conteúdo" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:35 msgid "Receiver attempts super-user activities" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:36 -#, fuzzy msgid "Handle sparse files efficiently" -msgstr "Handle sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:37 msgid "Show what would have been transferred" @@ -53581,14 +49182,12 @@ msgid "Force a fixed checksum block-size" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:41 -#, fuzzy msgid "Specify the remote shell to use" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:42 -#, fuzzy msgid "Specify the rsync to run on remote machine" -msgstr "Specify root directory for rpm operations" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:43 msgid "Ignore non-existing files on receiving side" @@ -53635,9 +49234,8 @@ msgid "Force deletion of dirs even if not empty" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:54 -#, fuzzy msgid "Don’t delete more than NUM files" -msgstr "Do not del source files" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:55 msgid "Don’t transfer any file larger than SIZE" @@ -53660,9 +49258,8 @@ msgid "Put all updated files into place at end" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:60 -#, fuzzy msgid "Prune empty directory chains from file-list" -msgstr "Prune empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:61 msgid "Don’t map uid/gid values by user/group name" @@ -53677,18 +49274,16 @@ msgid "Don’t skip files that match size and time" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:64 -#, fuzzy msgid "Skip files that match in size" -msgstr "Recurse, skip file matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:65 msgid "Compare mod-times with reduced accuracy" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:66 -#, fuzzy msgid "Create temporary files in directory DIR" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:67 msgid "Find similar file for basis if no dest file" @@ -53713,9 +49308,8 @@ msgid "Compress file data during the transfer" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:72 -#, fuzzy msgid "Explicitly set compression level" -msgstr "Compression level" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:73 msgid "Auto-ignore files in the same way CVS does" @@ -53732,24 +49326,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:76 -#, fuzzy msgid "Exclude files matching PATTERN" -msgstr "Recurse, skip file matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:78 -#, fuzzy msgid "Don’t exclude files matching PATTERN" -msgstr "Recurse, search file matching PATTERN" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:79 -#, fuzzy msgid "Read include patterns from FILE" -msgstr "Read the patch from patchfile" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:80 -#, fuzzy msgid "Read list of source-file names from FILE" -msgstr "Read filenames from pipe" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:81 msgid "All *from/filter files are delimited by 0s" @@ -53760,19 +49350,16 @@ msgid "Bind address for outgoing socket to daemon" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:83 -#, fuzzy msgid "Specify double-colon alternate port number" -msgstr "Specify date range for query" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:84 -#, fuzzy msgid "Specify custom TCP options" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:85 -#, fuzzy msgid "Use blocking I/O for the remote shell" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:86 msgid "Give some file-transfer stats" @@ -53787,9 +49374,8 @@ msgid "Output numbers in a human-readable format" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:89 -#, fuzzy msgid "Show progress during transfer" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:90 msgid "Same as --partial --progress" @@ -53800,18 +49386,16 @@ msgid "Output a change-summary for all updates" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:92 -#, fuzzy msgid "Output filenames using the specified format" -msgstr "Output profiling information to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:93 msgid "Read password from FILE" msgstr "Ler senha a partir do ARQUIVO" #: /tmp/fish/implicit/share/completions/rsync.fish:94 -#, fuzzy msgid "List the files instead of copying them" -msgstr "Link files instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:95 msgid "Limit I/O bandwidth; KBytes per second" @@ -53826,9 +49410,8 @@ msgid "Like --write-batch but w/o updating dest" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:98 -#, fuzzy msgid "Read a batched update from FILE" -msgstr "Read the patch from patchfile" +msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:99 msgid "Force an older protocol version to be used" @@ -53847,37 +49430,32 @@ msgid "Prefer IPv6" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:105 -#, fuzzy msgid "Remote path" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:1 -#, fuzzy msgid "Definition" -msgstr "função" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:2 -#, fuzzy msgid "Do not remove source tree after installation" -msgstr "Don't check for sufficient disk space before installation" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:3 msgid "Verbose mode: print compilation status to stdout" msgstr "" #: /tmp/fish/implicit/share/completions/ruby-build.fish:4 -#, fuzzy msgid "List all built-in definitions" -msgstr "Disable some built-in functions" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby.fish:4 msgid "Kanji code-set" msgstr "Kanji code-set" #: /tmp/fish/implicit/share/completions/ruby.fish:14 -#, fuzzy msgid "Require file" -msgstr "Require file" +msgstr "" #: /tmp/fish/implicit/share/completions/ruby.fish:19 msgid "Verbose mode without message" @@ -53888,62 +49466,52 @@ msgid "Compiler debug mode" msgstr "Compiler debug mode" #: /tmp/fish/implicit/share/completions/s3cmd.fish:1 -#, fuzzy msgid "Make bucket" -msgstr "Erro de parênteses" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:2 -#, fuzzy msgid "Remove bucket" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:3 -#, fuzzy msgid "List objects or buckets" -msgstr "List contents of a package matching pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:4 -#, fuzzy msgid "List all object in all buckets" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:5 -#, fuzzy msgid "Put file into bucket" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:6 -#, fuzzy msgid "Get file from bucket" -msgstr "Extrair arquivos do arquivo de lista" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:7 -#, fuzzy msgid "Delete file from bucket" -msgstr "Delete from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:8 msgid "Delete file from bucket (alias for del)" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:9 -#, fuzzy msgid "Restore file from Glacier storage" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:10 -#, fuzzy msgid "Synchronize a directory tree to S3" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:11 msgid "Disk usage by buckets" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:12 -#, fuzzy msgid "Get various information about Buckets or Files" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:13 msgid "Copy object" @@ -53954,9 +49522,8 @@ msgid "Modify object metadata" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:15 -#, fuzzy msgid "Move object" -msgstr "Erase obsolete files" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:16 msgid "Modify Access control list for Bucket or Files" @@ -53983,28 +49550,24 @@ msgid "Modify Bucket Requester Pays policy" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:22 -#, fuzzy msgid "Show multipart uploads" -msgstr "Show threads" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:23 msgid "Abort a multipart upload" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:24 -#, fuzzy msgid "List parts of a multipart upload" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:25 -#, fuzzy msgid "Enable/disable bucket access logging" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:26 -#, fuzzy msgid "Sign arbitrary string using the secret key" -msgstr "Sign a public key with your secret key" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:27 msgid "Sign an S3 URL to provide limited public access with expiry" @@ -54015,14 +49578,12 @@ msgid "Fix invalid file names in a bucket" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:29 -#, fuzzy msgid "Create Website from bucket" -msgstr "Forçar cópia completa de segurança" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:30 -#, fuzzy msgid "Delete Website" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:31 msgid "Info about Website" @@ -54037,52 +49598,44 @@ msgid "Upload a lifecycle policy for the bucket" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:34 -#, fuzzy msgid "Remove a lifecycle policy for the bucket" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:35 -#, fuzzy msgid "List CloudFront distribution points" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:36 msgid "Display CloudFront distribution point parameters" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:37 -#, fuzzy msgid "Create CloudFront distribution point" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:38 -#, fuzzy msgid "Delete CloudFront distribution point" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:39 -#, fuzzy msgid "Change CloudFront distribution point parameters" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:40 msgid "Display CloudFront invalidation request(s) status" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:42 -#, fuzzy msgid "Run interactive (re)configuration tool" -msgstr "Set configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:44 -#, fuzzy msgid "Dump current configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:45 -#, fuzzy msgid "AWS Access Key" -msgstr "Mostra horário de acesso" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:46 msgid "AWS Secret Key" @@ -54097,58 +49650,48 @@ msgid "Dry run, test only" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:49 -#, fuzzy msgid "Use HTTPS (default)" -msgstr "(padrão)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:50 -#, fuzzy msgid "Don't use HTTPS" -msgstr "Don't recurse" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:51 -#, fuzzy msgid "Encrypt files before uploading" -msgstr "Re-package the files before erasing" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:52 -#, fuzzy msgid "Don't encrypt files" -msgstr "Listar arquivos swap" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:53 -#, fuzzy msgid "Force overwrite" -msgstr "Don't overwrite" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:54 -#, fuzzy msgid "Resume partially downloaded file" -msgstr "Continue getting a partially-downloaded file" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:55 -#, fuzzy msgid "Resume partially uploaded files" -msgstr "Continue getting a partially-downloaded file" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:56 msgid "Resume multipart upload by UploadId" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:57 -#, fuzzy msgid "Skip existing files at destination" -msgstr "Make backup of each existing destination file" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:58 -#, fuzzy msgid "Upload/download/delete recursively" -msgstr "Copy directories recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:59 -#, fuzzy msgid "Check MD5 sums (default)" -msgstr "(padrão)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:60 msgid "Skip MD5 sum check" @@ -54171,33 +49714,28 @@ msgid "Revoke permission to named user" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:65 -#, fuzzy msgid "Days to keep restored file" -msgstr "Do not save/restore filename" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:66 -#, fuzzy msgid "S3 glacier restore priority" -msgstr "Show repository access history" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:67 msgid "Delete objects not found locally" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:68 -#, fuzzy msgid "Don't delete dest objects" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:69 -#, fuzzy msgid "Delete after upload" -msgstr "File is block device" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:70 -#, fuzzy msgid "Delete no more than NUM files" -msgstr "Do not del source files" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:71 msgid "Max objects per response" @@ -54208,66 +49746,56 @@ msgid "Additional parallel upload" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:73 -#, fuzzy msgid "Delete remotely after fetch" -msgstr "Delete from archive" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:74 -#, fuzzy msgid "Preserve FS attributes" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:75 -#, fuzzy msgid "Don't store FS attributes" -msgstr "Don't verify md5 attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:76 -#, fuzzy msgid "Exclude GLOB matches" -msgstr "Exclui sistemas de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:77 -#, fuzzy msgid "--exclude GLOBs from FILE" -msgstr "Read the patch from patchfile" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:78 msgid "Exclude REGEXP matches" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:79 -#, fuzzy msgid "Read --rexclude REGEXPs from FILE" -msgstr "Read the patch from patchfile" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:80 msgid "Include GLOB matches even if previously excluded" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:81 -#, fuzzy msgid "Read --include GLOBs from FILE" -msgstr "Read the patch from patchfile" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:82 msgid "Include REGEXP matches even if preiously excluded" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:83 -#, fuzzy msgid "Read --rinclude REGEXPs from FILE" -msgstr "Read the patch from patchfile" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:84 -#, fuzzy msgid "Read source-file names from FILE" -msgstr "Read filenames from pipe" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:85 -#, fuzzy msgid "Create bucket in region" -msgstr "Force new revision" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:86 msgid "S3 endpoint (default: s3.amazonaws.com)" @@ -54294,9 +49822,8 @@ msgid "Prefix for access logs" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:92 -#, fuzzy msgid "Disable access logging" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:93 msgid "Default MIME-type for objects" @@ -54311,23 +49838,20 @@ msgid "Don't guess MIME-type, use default" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:96 -#, fuzzy msgid "Don't use mime magic when guessing" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:97 -#, fuzzy msgid "Force MIME-type" -msgstr "Force yes" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:98 msgid "Add HTTP header" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:99 -#, fuzzy msgid "Remove HTTP header" -msgstr "Remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:100 msgid "Use server-side encryption for upload" @@ -54338,18 +49862,16 @@ msgid "Encrypt with specified AWS KMS-managed key" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:102 -#, fuzzy msgid "Use specified encoding" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:103 msgid "Add encoding to CSV extension list" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:104 -#, fuzzy msgid "Use S3 name as-is" -msgstr "Rename a disc" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:105 msgid "No multipart on files larger than --multipart-chunk-size-mb" @@ -54364,19 +49886,16 @@ msgid "Include MD5 sums in bucket listings" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:108 -#, fuzzy msgid "Print sizes in human-readable form" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:109 -#, fuzzy msgid "Name of index-document" -msgstr "Nome do cliente" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:110 -#, fuzzy msgid "Name of error-document" -msgstr "Nome do cliente" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:111 msgid "When expiration rule takes effect" @@ -54391,42 +49910,36 @@ msgid "Apply expiry to objects matching prefix" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:114 -#, fuzzy msgid "Show progress (default on TTY)" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:115 msgid "Don't show progress meter (default if non-TTY)" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:116 -#, fuzzy msgid "Show file transfer stats" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:117 -#, fuzzy msgid "Enable CloudFront distribution" -msgstr "Debian distribution" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:118 -#, fuzzy msgid "Disable CloudFront distribution" -msgstr "Debian distribution" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:119 -#, fuzzy msgid "Invalidate CloudFront file" -msgstr "Exceto arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:120 msgid "Invalidate default index" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:121 -#, fuzzy msgid "Don't invalidate default index" -msgstr "Do not print explanations" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:122 msgid "Add CNAME to CloudFront distribution" @@ -54449,29 +49962,24 @@ msgid "Cache FILE containing MD5 values" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:131 -#, fuzzy msgid "Silence stdout output" -msgstr "Mostra saída com dired" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:132 -#, fuzzy msgid "Path to SSL CA certificate FILE" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:133 -#, fuzzy msgid "Validate SSL certificate" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:134 -#, fuzzy msgid "Don't validate SSL certificate" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:135 -#, fuzzy msgid "Validate SSL hostname" -msgstr "Validate" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:136 msgid "Don't validate SSL hostname" @@ -54482,23 +49990,20 @@ msgid "Use AWS Signature version 2" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:138 -#, fuzzy msgid "Limit upload or download speed (bytes/sec)" -msgstr "Limit the download speed" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:139 msgid "Set REQUESTER PAYS for operations" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:140 -#, fuzzy msgid "Produce long listing" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:141 -#, fuzzy msgid "Stop on error in transfer" -msgstr "Stop showing errors if too many" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:142 msgid "Provide Content-Disposition for signed URLs" @@ -54527,23 +50032,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:4 -#, fuzzy msgid "Convert all the files in a directory. Requires --from and --to." -msgstr "Place files or directories under version control" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:5 #: /tmp/fish/implicit/share/completions/sass.fish:5 #: /tmp/fish/implicit/share/completions/scss.fish:5 -#, fuzzy msgid "Show help message." -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:6 #: /tmp/fish/implicit/share/completions/sass.fish:6 #: /tmp/fish/implicit/share/completions/scss.fish:6 -#, fuzzy msgid "Print the Sass version." -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:7 msgid "Convert underscores to dashes." @@ -54570,9 +50072,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:11 #: /tmp/fish/implicit/share/completions/sass.fish:14 #: /tmp/fish/implicit/share/completions/scss.fish:15 -#, fuzzy msgid "Specify the default encoding for input files." -msgstr "Specify apt config file" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:12 #: /tmp/fish/implicit/share/completions/sass.fish:15 @@ -54587,9 +50088,8 @@ msgid "The path to save parsed Sass files. Defaults to .sass-cache." msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:14 -#, fuzzy msgid "Don't cache to sassc files." -msgstr "Do not change any files" +msgstr "" #: /tmp/fish/implicit/share/completions/sass-convert.fish:15 #: /tmp/fish/implicit/share/completions/sass.fish:23 @@ -54599,9 +50099,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:1 #: /tmp/fish/implicit/share/completions/scss.fish:1 -#, fuzzy msgid "Specify a Sass import path." -msgstr "Specify a password" +msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:2 #: /tmp/fish/implicit/share/completions/scss.fish:2 @@ -54676,9 +50175,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:18 #: /tmp/fish/implicit/share/completions/scss.fish:19 -#, fuzzy msgid "Run an interactive SassScript shell." -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:19 #: /tmp/fish/implicit/share/completions/scss.fish:20 @@ -54694,9 +50192,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:22 #: /tmp/fish/implicit/share/completions/scss.fish:23 -#, fuzzy msgid "Don't cache parsed Sass files." -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/sass.fish:24 #: /tmp/fish/implicit/share/completions/scss.fish:25 @@ -54704,93 +50201,80 @@ msgid "Silence warnings and status messages during compilation." msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:1 -#, fuzzy msgid "Create a new sbt project from the given template" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:2 msgid "Connect to a server with an interactive sbt prompt" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:3 -#, fuzzy msgid "Print options help message" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:4 -#, fuzzy msgid "Print more details" -msgstr "Print important dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:5 -#, fuzzy msgid "Set log level to debug" -msgstr "Set error level" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:6 -#, fuzzy msgid "Disable ANSI color codes" -msgstr "Don't use batch mode" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:7 msgid "Launch even if there's no sbt project" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:8 -#, fuzzy msgid "Use all local caches" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:9 msgid "Use global caches, but not global ~/.sbt directory" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:10 -#, fuzzy msgid "Disable interactive mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:11 msgid "Specify path to global settings/plugins" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:12 -#, fuzzy msgid "Specify path to shared boot directory" -msgstr "Specify legal cvsroot directory." +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:13 -#, fuzzy msgid "Specify path to local Ivy repository" -msgstr "Atualizar o repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:14 -#, fuzzy msgid "Set memory options" -msgstr "Set config options" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:15 msgid "Turn on JVM debugging, open at the given port" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:16 -#, fuzzy msgid "Use specified version of sbt" -msgstr "Use specified compression algorithm" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:17 -#, fuzzy msgid "Use specified jar as the sbt launcher" -msgstr "Use specified key as the key to sign with" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:18 msgid "Use an RC version of sbt" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:19 -#, fuzzy msgid "Use a snapshot version of sbt" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:20 msgid "Alternate JAVA_HOME" @@ -54854,19 +50338,16 @@ msgid "Gamma-correction table [0..255, …]" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:12 -#, fuzzy msgid "Scan mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:13 -#, fuzzy msgid "Device name to use" -msgstr "Device section" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:14 -#, fuzzy msgid "List devices" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:15 msgid "Print formatted device list [%d, %v, %m, %t, %i, %n]" @@ -54881,9 +50362,8 @@ msgid "The filename of the image to be loaded" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:18 -#, fuzzy msgid "Output image format" -msgstr "Output in ISO 8601 format" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:19 msgid "Include this ICC profile into TIFF file" @@ -54904,14 +50384,12 @@ msgid "How many pages to scan in batch mode" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:23 -#, fuzzy msgid "Increase page number in filename by #" -msgstr "Ignore case when comparing file names" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:24 -#, fuzzy msgid "Increment page number by two" -msgstr "Increment the misc debug level by one" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:25 msgid "Ask for pressing a key before scanning a page" @@ -54922,9 +50400,8 @@ msgid "Only accept authorization requests using md5" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:27 -#, fuzzy msgid "Print progress messages" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:28 msgid "Only set options, don't actually scan" @@ -54935,19 +50412,16 @@ msgid "Test backend thoroughly" msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:30 -#, fuzzy msgid "List all available backend options" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:31 -#, fuzzy msgid "Display this help message and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:32 -#, fuzzy msgid "Give even more status messages" -msgstr "Replace a log message" +msgstr "" #: /tmp/fish/implicit/share/completions/scanimage.fish:33 msgid "Change input buffer size (in kB, default 32)" @@ -55004,9 +50478,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:9 -#, fuzzy msgid "Debug the build process" -msgstr "Processo filho" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:10 msgid "" @@ -55016,9 +50489,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:11 -#, fuzzy msgid "Use file as the initial SConscript file" -msgstr "Use file as terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:12 msgid "" @@ -55032,37 +50504,32 @@ msgid "Print the standard help message about command-line options and exit" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:14 -#, fuzzy msgid "Ignore all errors from commands executed to rebuild files" -msgstr "Ignore errors from non-empty directories" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:15 msgid "Specifies a directory to search for imported Python modules" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:16 -#, fuzzy msgid "Cache implicit dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:17 msgid "Force SCons to ignore the cached implicit dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:18 -#, fuzzy msgid "Force SCons to ignore changes in the implicit dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:19 -#, fuzzy msgid "Specifies the number of jobs (commands) to run simultaneously" -msgstr "Specifies the number of data bytes to be sent" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:20 -#, fuzzy msgid "Continue as much as possible after an error" -msgstr "Continue after an error" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:21 msgid "" @@ -55076,9 +50543,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:23 -#, fuzzy msgid "No execute" -msgstr "Executável" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:24 msgid "" @@ -55087,9 +50553,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:25 -#, fuzzy msgid "Do not run any commands, or print anything" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:26 msgid "" @@ -55098,14 +50563,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:27 -#, fuzzy msgid "Build dependencies in a random order" -msgstr "List dependencies of module" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:28 -#, fuzzy msgid "Silent" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:29 msgid "" @@ -55126,16 +50589,14 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:33 -#, fuzzy msgid "" "Print a message containing the working directory before and after other " "processing" -msgstr "Print the current working directory, shortend to fit the prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:34 -#, fuzzy msgid "Enable or disable warnings" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/scons.fish:35 msgid "Turn off -w, even if it was turned on implicitly" @@ -55148,14 +50609,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/scp.fish:1 -#, fuzzy msgid "Local Path" -msgstr "Logical and" +msgstr "" #: /tmp/fish/implicit/share/completions/scp.fish:2 -#, fuzzy msgid "Remote Path" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/scp.fish:4 msgid "Bandwidth limit" @@ -55172,52 +50631,44 @@ msgid "Recursively copy" msgstr "Recursively copy" #: /tmp/fish/implicit/share/completions/scp.fish:9 -#, fuzzy msgid "Encryption program" -msgstr "Encyption program" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:1 msgid "Detect which folder screen uses" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:2 -#, fuzzy msgid "Get the socket list on mac" -msgstr "Set prompt command" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:3 -#, fuzzy msgid "Get the socket list" -msgstr "Set the connect timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:4 -#, fuzzy msgid "Print a list of detached screen sessions" -msgstr "Print a list of running screen sessions" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:5 -#, fuzzy msgid "Print a list of attached screen sessions" -msgstr "Print a list of running screen sessions" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:6 -#, fuzzy msgid "Print a list of running screen sessions" -msgstr "Print a list of running screen sessions" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:7 -#, fuzzy msgid "Include all capabilitys" -msgstr "Include path" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:8 msgid "Adapt window size" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:9 -#, fuzzy msgid "Specify init file" -msgstr "Specify config file" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:10 #: /tmp/fish/implicit/share/completions/screen.fish:11 @@ -55262,72 +50713,61 @@ msgid "Interrupt display on C-c" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:21 -#, fuzzy msgid "Login on" -msgstr "Logical or" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:22 -#, fuzzy msgid "Login off" -msgstr "Logical or" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:23 #: /tmp/fish/implicit/share/completions/screen.fish:24 -#, fuzzy msgid "List sessions" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:25 msgid "Log on" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:27 -#, fuzzy msgid "Optimal output" -msgstr "Wide output" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:28 -#, fuzzy msgid "Preselect window" -msgstr "Select root window" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:30 -#, fuzzy msgid "Set shell" -msgstr "Set system" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:31 -#, fuzzy msgid "Session name" -msgstr "Número da versão" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:32 -#, fuzzy msgid "Session title" -msgstr "Save session cookies" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:33 msgid "UTF-8 mode" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:35 -#, fuzzy msgid "Wipe dead sessions" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:36 msgid "Multi attach" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:37 -#, fuzzy msgid "Send command" -msgstr "Fim de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:2 -#, fuzzy msgid "Display version information and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:3 msgid "When selecting a window, grab wm border too" @@ -55338,9 +50778,8 @@ msgid "Display a countdown when used with delay" msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:5 -#, fuzzy msgid "Wait NUMBER of seconds before taking a shot" -msgstr "Number of seconds before assuming http timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:6 msgid "Execute APPLICATION on the saved image" @@ -55351,14 +50790,12 @@ msgid "Image quality [1-100]" msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:8 -#, fuzzy msgid "Grab shot from multiple heads" -msgstr "Executa um conjunto de comandos várias vezes" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:9 -#, fuzzy msgid "Select a window or rectangle with the mouse" -msgstr "Select a window by clicking on its frame" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:10 msgid "Generate thumbnail PERCENT of original" @@ -55385,9 +50822,8 @@ msgid "How to link generated output to the source files." msgstr "" #: /tmp/fish/implicit/share/completions/service.fish:1 -#, fuzzy msgid "Service name" -msgstr "Service name" +msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:1 msgid "Color" @@ -55412,18 +50848,16 @@ msgid "Dim text" msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:6 -#, fuzzy msgid "Reverse color text" -msgstr "Inverte a ordem" +msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:7 msgid "Underline text" msgstr "" #: /tmp/fish/implicit/share/completions/set_color.fish:9 -#, fuzzy msgid "Print a list of all accepted color names" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/completions/setfacl.fish:1 msgid "Remove all extended ACL entries" @@ -55454,9 +50888,8 @@ msgid "Test if We are specifying a locale value for the prompt" msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:3 -#, fuzzy msgid "Erase variable" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:8 msgid "Share variable persistently across sessions" @@ -55471,14 +50904,12 @@ msgid "List the names of the variables, but not their value" msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:14 -#, fuzzy msgid "Locale variable" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/set.fish:15 -#, fuzzy msgid "Do not truncate long lines" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/setsid.fish:2 msgid "Set controlling terminal to current one" @@ -55489,33 +50920,28 @@ msgid "Wait until program ends and return its exit value" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:1 -#, fuzzy msgid "Print this message" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:2 msgid "Specifies compatibility map component name" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:3 -#, fuzzy msgid "Specifies configuration file to use" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:4 -#, fuzzy msgid "Specifies the device ID to use" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:5 -#, fuzzy msgid "Specifies display to use" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:6 -#, fuzzy msgid "Specifies geometry component name" -msgstr "Ignore specified number of directory components" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:7 msgid "Add to list of directories to be used" @@ -55526,9 +50952,8 @@ msgid "Specifies keycodes component name" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:9 -#, fuzzy msgid "Specifies name of keymap to load" -msgstr "Specify users for query" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:10 msgid "Specifies layout used to choose component names" @@ -55547,14 +50972,12 @@ msgid "Print a complete xkb_keymap description and exit" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:14 -#, fuzzy msgid "Print the current layout settings and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:15 -#, fuzzy msgid "Name of rules file to use" -msgstr "Nome do cliente" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:16 msgid "Specifies symbols component name" @@ -55565,9 +50988,8 @@ msgid "Synchronize request w/X server" msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:18 -#, fuzzy msgid "Specifies types component name" -msgstr "Specify the proxy username" +msgstr "" #: /tmp/fish/implicit/share/completions/setxkbmap.fish:19 msgid "Sets verbosity (1..10). Higher values yield more messages" @@ -55582,55 +51004,45 @@ msgid "Verify a signed checksum list" msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:3 -#, fuzzy msgid "Sign specified message" -msgstr "Ignore specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:4 -#, fuzzy msgid "Verify a signed message and sig" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:1 -#, fuzzy msgid "Test if snap has yet to be given the subcommand" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:3 -#, fuzzy msgid "Test if snap command should have packages as potential completion" -msgstr "Test if apt command should have packages as potential completion" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:4 -#, fuzzy msgid "Test if snap command should have files as potential completion" -msgstr "Test if apt command should have packages as potential completion" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:5 #: /tmp/fish/implicit/share/completions/snap.fish:6 -#, fuzzy msgid "List disabled snaps" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:7 -#, fuzzy msgid "List installed snaps" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:8 -#, fuzzy msgid "List of interfaces" -msgstr "Stop interface" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:9 -#, fuzzy msgid "List change IDs" -msgstr "Sem alterações" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:10 -#, fuzzy msgid "List aliases" -msgstr "Imprimir todos os nomes" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:11 msgid "Check that no assertion type is used yet" @@ -55641,14 +51053,12 @@ msgid "Check if certain assertion type is used" msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:13 -#, fuzzy msgid "List assertion filters" -msgstr "Listar arquivos swap" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:14 -#, fuzzy msgid "Show this help message" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:16 msgid "Snap" @@ -55687,9 +51097,8 @@ msgid "Sort by random hash of keys" msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:10 -#, fuzzy msgid "Get random bytes from FILE" -msgstr "Ler senha a partir do ARQUIVO" +msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:11 msgid "Reverse results" @@ -55704,27 +51113,24 @@ msgid "Define key" msgstr "Define key" #: /tmp/fish/implicit/share/completions/sort.fish:14 -#, fuzzy msgid "Merge sorted files" -msgstr "Erase obsolete files" +msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:16 msgid "Stabilize sort" msgstr "Stabilize sort" #: /tmp/fish/implicit/share/completions/sort.fish:17 -#, fuzzy msgid "Set memory buffer size" -msgstr "Set memory buffer size" +msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:18 msgid "Field separator" msgstr "Field separator" #: /tmp/fish/implicit/share/completions/sort.fish:19 -#, fuzzy msgid "Set temporary directory" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:20 msgid "Output only first of equal lines" @@ -55743,9 +51149,8 @@ msgid "Enables forwarding of the authentication agent" msgstr "Enables forwarding of the authentication agent" #: /tmp/fish/implicit/share/completions/ssh.fish:4 -#, fuzzy msgid "Interface to transmit from" -msgstr "Interface to transmit from" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:6 msgid "Go to background" @@ -55772,9 +51177,8 @@ msgid "MAC algorithm" msgstr "MAC algorithm" #: /tmp/fish/implicit/share/completions/ssh.fish:12 -#, fuzzy msgid "Prevent reading from stdin" -msgstr "Read names from stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:13 msgid "Do not execute remote command" @@ -55785,9 +51189,8 @@ msgid "Subsystem" msgstr "Subsystem" #: /tmp/fish/implicit/share/completions/ssh.fish:17 -#, fuzzy msgid "Force pseudo-tty allocation" -msgstr "Disable pseudo-tty allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:18 msgid "Disable pseudo-tty allocation" @@ -55830,14 +51233,12 @@ msgid "Disable multi-threaded operation" msgstr "Disable multi-threaded operation" #: /tmp/fish/implicit/share/completions/stack.fish:1 -#, fuzzy msgid "Show this help text" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:2 -#, fuzzy msgid "Show only version number" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:3 msgid "Run 'stack --docker-help' for details" @@ -55896,9 +51297,8 @@ msgid "Specialized GHC variant, e.g. integersimple (implies --no-system-ghc)" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:15 -#, fuzzy msgid "Number of concurrent jobs to run" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:16 msgid "Extra directories to check for C header files" @@ -55941,9 +51341,8 @@ msgid "Override resolver in project file" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:26 -#, fuzzy msgid "Use the specified compiler" -msgstr "Use specific conffile" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:27 msgid "" @@ -55968,19 +51367,16 @@ msgid "Build the package(s) in this directory/configuration" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:31 -#, fuzzy msgid "Shortcut for 'build --copy-bins'" -msgstr "Shortcut for '--options /dev/null'" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:32 -#, fuzzy msgid "Shortcut for 'build --test'" -msgstr "Shortcut for '--options /dev/null'" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:33 -#, fuzzy msgid "Shortcut for 'build --bench'" -msgstr "Shortcut for '--options /dev/null'" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:34 msgid "Shortcut for 'build --haddock'" @@ -56009,42 +51405,36 @@ msgid "Get the appropriate GHC for your project" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:40 -#, fuzzy msgid "Print out handy path information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:41 -#, fuzzy msgid "Unpack one or more packages locally" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:42 -#, fuzzy msgid "Update the package index" -msgstr "Update list of packages" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:43 msgid "Upgrade to the latest stack (experimental)" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:44 -#, fuzzy msgid "Upload a package to Hackage" -msgstr "Rebuild a package" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:45 -#, fuzzy msgid "Create source distribution tarballs" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:46 msgid "Visualize your project's dependency graph using Graphviz dot" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:47 -#, fuzzy msgid "Execute a command" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:48 msgid "Run ghc" @@ -56072,23 +51462,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:54 -#, fuzzy msgid "Clean the local packages" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:55 -#, fuzzy msgid "List the dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:56 msgid "Query general build information (experimental)" msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:57 -#, fuzzy msgid "IDE-specific commands" -msgstr "Specify sendmail command" +msgstr "" #: /tmp/fish/implicit/share/completions/stack.fish:58 msgid "Subcommands specific to Docker use" @@ -56127,9 +51514,8 @@ msgid "Test if a code block is currently evaluated" msgstr "Test if a code block is currently evaluated" #: /tmp/fish/implicit/share/completions/status.fish:6 -#, fuzzy msgid "Test if a breakpoint is currently in effect" -msgstr "Test if a code block is currently evaluated" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:7 msgid "Test if new jobs are never put under job control" @@ -56144,14 +51530,12 @@ msgid "Test if all new jobs are put under job control" msgstr "Test if all new jobs are put under job control" #: /tmp/fish/implicit/share/completions/status.fish:10 -#, fuzzy msgid "Print the filename of the currently running script" -msgstr "Imprime as tarefas em execução" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:11 -#, fuzzy msgid "Print the line number of the currently running script" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:12 msgid "" @@ -56160,43 +51544,36 @@ msgstr "" "Print a list of all function calls leading up to running the current command" #: /tmp/fish/implicit/share/completions/status.fish:13 -#, fuzzy msgid "Set which jobs are under job control" -msgstr "Set which jobs are out under job control" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:14 -#, fuzzy msgid "Set all jobs under job control" -msgstr "Set which jobs are out under job control" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:15 -#, fuzzy msgid "Set only interactive jobs under job control" -msgstr "Test if only interactive new jobs are put under job control" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:16 -#, fuzzy msgid "Set no jobs under job control" -msgstr "Set which jobs are out under job control" +msgstr "" #: /tmp/fish/implicit/share/completions/stream.fish:13 -#, fuzzy msgid "Components one or more pixel components" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/stream.fish:23 msgid "Pixel storage type [type]" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:1 -#, fuzzy msgid "Do not print output" -msgstr "Do not run update" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:2 -#, fuzzy msgid "Specify maximum number of splits" -msgstr "Maximum number of log entries" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:3 msgid "Split right-to-left" @@ -56207,28 +51584,24 @@ msgid "Trim only leading characters" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:5 -#, fuzzy msgid "Trim only trailing characters" -msgstr "Escape all non-printing characters" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:6 msgid "Specify the chars to trim (default: whitespace)" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:7 -#, fuzzy msgid "Escape with \\ instead of quoting" -msgstr "Make symbolic links instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:8 -#, fuzzy msgid "Report index and length of the matches" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:9 -#, fuzzy msgid "Report only non-matching input" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:10 msgid "Report all matches per line/string" @@ -56247,43 +51620,36 @@ msgid "Repetition count" msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:14 -#, fuzzy msgid "Maximum number of printed char" -msgstr "Maximum number of nested blocks reached." +msgstr "" #: /tmp/fish/implicit/share/completions/string.fish:15 -#, fuzzy msgid "Remove newline" -msgstr "No newline" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:1 -#, fuzzy msgid "Load the given project" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:2 -#, fuzzy msgid "Run the given command" -msgstr "Execute command" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:3 -#, fuzzy msgid "Open a new window" -msgstr "Select root window" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:4 -#, fuzzy msgid "Add folders to the current window" -msgstr "Append files to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:5 msgid "Wait for the files to be closed before returning" msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:6 -#, fuzzy msgid "Don't activate the application" -msgstr "Don't actually take the action" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:7 msgid "Keep the application activated after closing the file" @@ -56300,44 +51666,36 @@ msgid "Preserve environment" msgstr "Preserve environment" #: /tmp/fish/implicit/share/completions/sudo.fish:4 -#, fuzzy msgid "Set home" -msgstr "Set time" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:5 -#, fuzzy msgid "Remove the credential timestamp entirely" -msgstr "Remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:6 -#, fuzzy msgid "Preserve group vector" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:7 -#, fuzzy msgid "Read password from stdin" -msgstr "Ler senha a partir do ARQUIVO" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:8 -#, fuzzy msgid "Run command in the background" -msgstr "Executar tarefa em segundo plano" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:9 -#, fuzzy msgid "Edit" -msgstr "Edit tag" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:10 -#, fuzzy msgid "Run command as group" -msgstr "Run commands from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:12 -#, fuzzy msgid "Run a login shell" -msgstr "Make login shell" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:13 msgid "Reset or ignore the credential timestamp" @@ -56350,23 +51708,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:15 -#, fuzzy msgid "Do not prompt for a password - if one is needed, fail" -msgstr "Do not prompt for an expiration time" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:16 -#, fuzzy msgid "Specify a custom password prompt" -msgstr "Specify a password" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:17 msgid "Run the given command in a shell" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:18 -#, fuzzy msgid "Run command as user" -msgstr "Run commands from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:19 msgid "Validate the credentials, extending timeout" @@ -56377,9 +51732,8 @@ msgid "Make login shell" msgstr "Make login shell" #: /tmp/fish/implicit/share/completions/su.fish:2 -#, fuzzy msgid "Pass command to shell" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/su.fish:3 msgid "Pass -f to the shell" @@ -56397,21 +51751,18 @@ msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:3 #: /tmp/fish/implicit/share/completions/svn.fish:5 -#, fuzzy msgid "" "Output the content of specified files or URLs with revision and author " "information in-line." -msgstr "Output files/URLs with revision and author information inline" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:4 -#, fuzzy msgid "Output the content of specified files or URLs." -msgstr "Output content of files/URLs" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:6 -#, fuzzy msgid "Check out a working copy from a repository." -msgstr "Check out a working copy from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:7 msgid "" @@ -56420,174 +51771,142 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:8 -#, fuzzy msgid "Send changes from your working copy to the repository." -msgstr "Send changes from your working copy to the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:9 -#, fuzzy msgid "Duplicate something in working copy or repository, remembering history." -msgstr "Move and/or rename something in working copy or repository" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:10 -#, fuzzy msgid "Display the differences between two revisions or paths." -msgstr "Apply the differences between two sources to a working copy path" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:11 msgid "Create an unversioned copy of a tree." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:12 -#, fuzzy msgid "Describe the usage of this program or its subcommands." -msgstr "Describe the usage of this program or its subcommands" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:13 -#, fuzzy msgid "Commit an unversioned file or tree into the repository." -msgstr "Commit an unversioned file or tree into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:14 -#, fuzzy msgid "Display information about a local or remote item." -msgstr "Display information about a local or remote item" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:15 -#, fuzzy msgid "List directory entries in the repository." -msgstr "List directory entries in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:16 -#, fuzzy msgid "" "Lock working copy paths or URLs in the repository, so that no other user can " "commit changes to them." -msgstr "Lock working copy paths or URLs in the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:17 -#, fuzzy msgid "Show the log messages for a set of revision(s) and/or file(s)." -msgstr "Show the log messages for a set of revision(s) and/or file(s)" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:18 -#, fuzzy msgid "Apply the differences between two sources to a working copy path." -msgstr "Apply the differences between two sources to a working copy path" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:19 -#, fuzzy msgid "Display information related to merges" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:20 -#, fuzzy msgid "Create a new directory under version control." -msgstr "Create a new directory under version control" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:21 -#, fuzzy msgid "Move and/or rename something in working copy or repository." -msgstr "Move and/or rename something in working copy or repository" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:22 -#, fuzzy msgid "Apply a unidiff patch to the working copy" -msgstr "Display unrecorded changes in the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:23 -#, fuzzy msgid "Remove a property from files, dirs, or revisions." -msgstr "Remove a property from files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:24 -#, fuzzy msgid "Edit a property with an external editor." -msgstr "Edit a property with an external editor on targets" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:25 -#, fuzzy msgid "Print the value of a property on files, dirs, or revisions." -msgstr "Print value of a property on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:26 -#, fuzzy msgid "List all properties on files, dirs, or revisions." -msgstr "List all properties on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:27 -#, fuzzy msgid "Set the value of a property on files, dirs, or revisions." -msgstr "Print value of a property on files, dirs, or revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:28 -#, fuzzy msgid "Rewrite working copy url metadata" -msgstr "Delete working copy if release succeeds" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:29 -#, fuzzy msgid "Remove files and directories from version control." -msgstr "Place files or directories under version control" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:30 -#, fuzzy msgid "Remove conflicts on working copy files or directories." -msgstr "Remove conflicted state on working copy files or directories" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:31 -#, fuzzy msgid "Remove 'conflicted' state on working copy files or directories." -msgstr "Remove conflicted state on working copy files or directories" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:32 -#, fuzzy msgid "Restore pristine working copy file (undo most local edits)." -msgstr "Restore pristine working copy file" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:33 -#, fuzzy msgid "Print the status of working copy files and directories." -msgstr "Print the status of working copy files and directories" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:34 -#, fuzzy msgid "Update the working copy to a different URL." -msgstr "Update the working copy to a different URL" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:35 -#, fuzzy msgid "Unlock working copy paths or URLs." -msgstr "Unlock working copy paths or URLs" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:36 -#, fuzzy msgid "Bring changes from the repository into the working copy." -msgstr "Bring changes from the repository into the working copy" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:37 msgid "Upgrade the metadata storage format for a working copy." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:38 -#, fuzzy msgid "Specify a username ARG" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:39 -#, fuzzy msgid "Specify a password ARG" -msgstr "Specify a password" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:40 -#, fuzzy msgid "Do not cache authentication tokens" -msgstr "Don't cache auth tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:41 -#, fuzzy msgid "Do no interactive prompting" -msgstr "Do no interactive prompting" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:42 msgid "" @@ -56596,9 +51915,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:43 -#, fuzzy msgid "Read user configuration files from directory ARG" -msgstr "Read user config files from named directory" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:44 msgid "" @@ -56618,9 +51936,8 @@ msgid "Open composition window with attached files" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:7 -#, fuzzy msgid "Receive new messages" -msgstr "Replace a log message" +msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:8 msgid "Receive new messages of all accounts" @@ -56639,9 +51956,8 @@ msgid "Show the total number of messages for each folder" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:12 -#, fuzzy msgid "Specify directory with configuration files" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:1 msgid "The total number of worker threads to create (default: 1)" @@ -56722,23 +52038,20 @@ msgid "Total size of data to transfer (default: 100G)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:20 -#, fuzzy msgid "Type of memory operations" -msgstr "Specify options" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:21 -#, fuzzy msgid "Number of files to create (default: 128)" -msgstr "Make checked-out files read-write (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:22 msgid "Block size to use in all I/O operations (default: 16K)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:23 -#, fuzzy msgid "Total size of files (default: 2G)" -msgstr "Install documentation files (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:24 msgid "Type of workload to produce" @@ -56801,11 +52114,8 @@ msgid "Number of point select queries in a single transaction (default: 10)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:38 -#, fuzzy msgid "Number of simple range queries in a single transaction (default: 1)" msgstr "" -"Número de usuários com confiança completa para introduzir novo assinador " -"(padrão é 1)" #: /tmp/fish/implicit/share/completions/sysbench.fish:39 msgid "Number of SUM range queries in a single transaction (default: 1)" @@ -56896,9 +52206,8 @@ msgid "MySQL database name (default: sbtest)" msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:60 -#, fuzzy msgid "Type of the test table to use" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/sysbench.fish:61 msgid "Use SSL connections. (default: no)" @@ -56915,33 +52224,28 @@ msgid "Additional options passed to CREATE TABLE." msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:1 -#, fuzzy msgid "Start one or more units" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:2 -#, fuzzy msgid "Stop one or more units" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:3 -#, fuzzy msgid "Restart one or more units" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:4 msgid "Runtime status about one or more units" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:5 -#, fuzzy msgid "Enable one or more units" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:6 -#, fuzzy msgid "Disable one or more units" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:7 msgid "Start a unit and dependencies and disable all others" @@ -56952,49 +52256,40 @@ msgid "Set the default target to boot into" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:9 -#, fuzzy msgid "List of unit types" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:10 -#, fuzzy msgid "List of unit states" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:11 -#, fuzzy msgid "Show all units or properties" -msgstr "Display help and debug options" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:12 -#, fuzzy msgid "Show also units of local containers" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:13 -#, fuzzy msgid "Show reverse dependencies between units" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:14 -#, fuzzy msgid "Show units ordered before specified unit" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:15 -#, fuzzy msgid "Show units ordered after specified unit" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:16 -#, fuzzy msgid "Do not ellipsize anything" -msgstr "Do not write anything" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:17 -#, fuzzy msgid "Show the type of the socket" -msgstr "Show help for the fish shell" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:18 msgid "How to deal with queued jobs" @@ -57005,9 +52300,8 @@ msgid "Ignore inhibitor locks on shutdown or sleep" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:20 -#, fuzzy msgid "Suppress output to STDOUT" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:21 msgid "Do not wait for the requested operation to finish" @@ -57032,14 +52326,12 @@ msgid "Do not send wall message before halt" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:27 -#, fuzzy msgid "Do not reload daemon configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:28 -#, fuzzy msgid "Disable asking for password" -msgstr "Disable operator keywords" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:29 msgid "Send signal to which process" @@ -57062,18 +52354,16 @@ msgid "Make changes only temporarily" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:34 -#, fuzzy msgid "Number of journal lines to show" -msgstr "Number nonblank lines" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:35 msgid "Control journal formatting" msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:36 -#, fuzzy msgid "list-dependencies flat, not as tree" -msgstr "List dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/systemctl.fish:42 msgid "Reboot to EFI setup" @@ -57104,28 +52394,24 @@ msgid "Disk image to mount the root directory for the container from" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:5 -#, fuzzy msgid "Invoke init in the container" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:6 -#, fuzzy msgid "Change to user in the container" -msgstr "Show the time" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:7 msgid "Sets the machine name for this container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:8 -#, fuzzy msgid "Set the specified UUID for the container." -msgstr "Move file specified on commandline" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:9 -#, fuzzy msgid "Make the container part of the specified slice" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:10 msgid "Set a unit property on the scope unit" @@ -57156,19 +52442,16 @@ msgid "Create a virtual Ethernet link (\"veth\") between host and container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:17 -#, fuzzy msgid "Adds the host side of the Ethernet link created to the specified bridge" -msgstr "Define a lista de preferências padrão como a string especificada" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:18 -#, fuzzy msgid "Map an ip port from the host to the container" -msgstr "Copy and apply patches from another repository to this one" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:19 -#, fuzzy msgid "Sets the SELinux security context" -msgstr "Mostra contexto de segurança" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:20 msgid "Sets the SELinux security context for files in the API filesystems" @@ -57199,19 +52482,16 @@ msgid "Mount the root file system read-only for the container" msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:27 -#, fuzzy msgid "Bind mount a file or directory from the host in the container" -msgstr "Remove one or more files or directories from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:28 -#, fuzzy msgid "Mount a tmpfs file system into the container" -msgstr "Mount filesystems in fstab" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:29 -#, fuzzy msgid "Mount directories as overlayfs in the container" -msgstr "Lista diretórios, não seu conteúdo" +msgstr "" #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:30 msgid "Pass environment variables to init in the container" @@ -57338,9 +52618,8 @@ msgstr "Append files to archive" #: /tmp/fish/implicit/share/completions/tar.fish:8 #: /tmp/fish/implicit/share/completions/unrar.fish:2 -#, fuzzy msgid "List archive" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:9 msgid "Append new files" @@ -57461,9 +52740,8 @@ msgstr "Remove files after adding to archive" #: /tmp/fish/implicit/share/completions/tar.fish:44 #: /tmp/fish/implicit/share/completions/tar.fish:45 -#, fuzzy msgid "Do not sort file arguments" -msgstr "Do not show flags" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:46 msgid "Preserve file ownership" @@ -57495,9 +52773,8 @@ msgid "Ask for confirmation" msgstr "Ask for confirmation" #: /tmp/fish/implicit/share/completions/tar.fish:56 -#, fuzzy msgid "Verify archive" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:57 msgid "Exclude file" @@ -57522,9 +52799,8 @@ msgid "Filter through specified program" msgstr "Filtrar pelo programa especificado" #: /tmp/fish/implicit/share/completions/tar.fish:64 -#, fuzzy msgid "Filter through xz" -msgstr "Filter through gzip" +msgstr "" #: /tmp/fish/implicit/share/completions/tee.fish:1 msgid "append to the given FILEs, do not overwrite" @@ -57535,9 +52811,8 @@ msgid "ignore interrupt signals" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:1 -#, fuzzy msgid "Display help message" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:3 msgid "Tell termite start instead of the shell" @@ -57548,9 +52823,8 @@ msgid "The role to set the termite window to report itself with" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:5 -#, fuzzy msgid "Set the termite window's title" -msgstr "Muda a cor do terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:6 msgid "Tell termite to change to when launching" @@ -57569,9 +52843,8 @@ msgid "Launch on X display" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:10 -#, fuzzy msgid "Config file to use" -msgstr "Alterar para usuário" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:11 msgid "Set the windows name part of WM_CLASS property" @@ -57591,9 +52864,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:101 #: /tmp/fish/implicit/share/completions/terraform.fish:116 #: /tmp/fish/implicit/share/completions/terraform.fish:125 -#, fuzzy msgid "Path to backup the existing state file" -msgstr "Make backup of each existing destination file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:5 #: /tmp/fish/implicit/share/completions/terraform.fish:23 @@ -57614,9 +52886,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:104 #: /tmp/fish/implicit/share/completions/terraform.fish:118 #: /tmp/fish/implicit/share/completions/terraform.fish:127 -#, fuzzy msgid "Duration to retry a state lock" -msgstr "Print directory stack" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:7 #: /tmp/fish/implicit/share/completions/terraform.fish:52 @@ -57645,16 +52916,14 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:9 #: /tmp/fish/implicit/share/completions/terraform.fish:26 #: /tmp/fish/implicit/share/completions/terraform.fish:84 -#, fuzzy msgid "Limit the number of concurrent operations" -msgstr "Number of concurrent jobs" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:10 #: /tmp/fish/implicit/share/completions/terraform.fish:27 #: /tmp/fish/implicit/share/completions/terraform.fish:85 -#, fuzzy msgid "Update state prior to checking for differences" -msgstr "Update the working copy to a different URL" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:11 #: /tmp/fish/implicit/share/completions/terraform.fish:17 @@ -57673,17 +52942,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:107 #: /tmp/fish/implicit/share/completions/terraform.fish:122 #: /tmp/fish/implicit/share/completions/terraform.fish:131 -#, fuzzy msgid "Path to write state" -msgstr "Do not write mtab" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:13 #: /tmp/fish/implicit/share/completions/terraform.fish:30 #: /tmp/fish/implicit/share/completions/terraform.fish:87 #: /tmp/fish/implicit/share/completions/terraform.fish:108 -#, fuzzy msgid "Resource to target" -msgstr "Set volume name" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:14 #: /tmp/fish/implicit/share/completions/terraform.fish:18 @@ -57692,9 +52959,8 @@ msgstr "Set volume name" #: /tmp/fish/implicit/share/completions/terraform.fish:88 #: /tmp/fish/implicit/share/completions/terraform.fish:96 #: /tmp/fish/implicit/share/completions/terraform.fish:109 -#, fuzzy msgid "Set a variable in the Terraform configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:15 #: /tmp/fish/implicit/share/completions/terraform.fish:19 @@ -57703,9 +52969,8 @@ msgstr "Reload service configuration" #: /tmp/fish/implicit/share/completions/terraform.fish:89 #: /tmp/fish/implicit/share/completions/terraform.fish:97 #: /tmp/fish/implicit/share/completions/terraform.fish:110 -#, fuzzy msgid "Set variables from a file" -msgstr "Set format file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:16 msgid "Interactive console for Terraform interpolations" @@ -57716,67 +52981,56 @@ msgid "Destroy Terraform-managed infrastructure" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:22 -#, fuzzy msgid "Don't ask for input for destroy confirmation" -msgstr "Não mostra grupo" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:33 -#, fuzzy msgid "Environment management" -msgstr "Handle environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:34 -#, fuzzy msgid "List environments" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:35 -#, fuzzy msgid "Select an environment" -msgstr "Select an action" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:36 -#, fuzzy msgid "Create a new environment" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:37 -#, fuzzy msgid "Delete an existing environment" -msgstr "Assert freestanding environment" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:38 msgid "Rewrite config files to canonical format" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:39 -#, fuzzy msgid "List files whose formatting differs" -msgstr "Specifies line formatting" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:40 -#, fuzzy msgid "Write result to source file" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:41 -#, fuzzy msgid "Display diffs of formatting changes" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:42 msgid "Download and install modules for the configuration" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:43 -#, fuzzy msgid "Check modules for updates" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:45 -#, fuzzy msgid "Create a visual graph of Terraform resources" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:46 msgid "Highlight any cycles in the graph" @@ -57791,9 +53045,8 @@ msgid "Import existing infrastructure into Terraform" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:51 -#, fuzzy msgid "Path to a directory of configuration files" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:56 msgid "Specific provider to use for import" @@ -57808,14 +53061,12 @@ msgid "Configure the backend for this environment" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:63 -#, fuzzy msgid "Backend configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:64 -#, fuzzy msgid "Download modules for this configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:65 msgid "Ask for input if necessary" @@ -57826,32 +53077,28 @@ msgid "Suppress prompts about copying state data" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:70 -#, fuzzy msgid "Read an output from a state file" -msgstr "Read job from file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:71 msgid "Path to the state file to read" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:73 -#, fuzzy msgid "Return the outputs for a specific module" -msgstr "Escreve a saída no arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:74 -#, fuzzy msgid "Print output in JSON format" -msgstr "Profiling output format" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:75 msgid "Generate and show an execution plan" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:76 -#, fuzzy msgid "Generate a plan to destroy all resources" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:77 msgid "Return detailed exit codes" @@ -57863,9 +53110,8 @@ msgid "Depth of modules to show in the output" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:83 -#, fuzzy msgid "Write a plan file to the given path" -msgstr "Prepend file to input" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:90 msgid "Upload this Terraform module to Atlas to run" @@ -57880,9 +53126,8 @@ msgid "Lock modules and upload completely" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:93 -#, fuzzy msgid "Name of the configuration in Atlas" -msgstr "Specify a configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:94 msgid "Access token to use to upload" @@ -57927,24 +53172,20 @@ msgid "Validate the Terraform files" msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:134 -#, fuzzy msgid "Print the Terraform version" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:2 -#, fuzzy msgid "Negate expression" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:3 -#, fuzzy msgid "Logical AND" -msgstr "Logical or" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:4 -#, fuzzy msgid "Logical OR" -msgstr "Logical or" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:5 msgid "String length is non-zero" @@ -58011,24 +53252,20 @@ msgid "File is set-group-ID" msgstr "File is set-group-ID" #: /tmp/fish/implicit/share/completions/test.fish:21 -#, fuzzy msgid "File owned by our effective group ID" -msgstr "File owned by effective group ID" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:22 -#, fuzzy msgid "File is a symlink" -msgstr "File is symlink" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:23 -#, fuzzy msgid "File owned by our effective user ID" -msgstr "File owned by effective user ID" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:24 -#, fuzzy msgid "File is a named pipe" -msgstr "File is named pipe" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:25 msgid "File is readable" @@ -58039,14 +53276,12 @@ msgid "File size is non-zero" msgstr "File size is non-zero" #: /tmp/fish/implicit/share/completions/test.fish:27 -#, fuzzy msgid "File is a socket" -msgstr "File is socket" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:28 -#, fuzzy msgid "FD is a terminal" -msgstr "FD is terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:29 msgid "File set-user-ID bit is set" @@ -58072,9 +53307,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tex.fish:7 #: /tmp/fish/implicit/share/completions/tex.fish:8 #: /tmp/fish/implicit/share/completions/tex.fish:9 -#, fuzzy msgid "Set interaction mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/tex.fish:11 msgid "Enable \\write18{SHELL COMMAND}" @@ -58085,9 +53319,8 @@ msgid "Disable \\write18{SHELL COMMAND}" msgstr "" #: /tmp/fish/implicit/share/completions/tex.fish:13 -#, fuzzy msgid "Insert source specials into the DVI file" -msgstr "Generate source index file" +msgstr "" #: /tmp/fish/implicit/share/completions/timedatectl.fish:1 msgid "Maintain RTC in local time" @@ -58130,9 +53363,8 @@ msgid "Send a KILL signal after DURATION" msgstr "" #: /tmp/fish/implicit/share/completions/timeout.fish:3 -#, fuzzy msgid "Specify the signal to be sent" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:1 msgid "Add an exclusion not to back up a file" @@ -58145,9 +53377,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:3 #: /tmp/fish/implicit/share/completions/tmutil.fish:37 -#, fuzzy msgid "Path exclusion" -msgstr "PKZIP recursion" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:4 msgid "Bind a snapshot volume directory to the specified local disk" @@ -58162,63 +53393,52 @@ msgid "Perform a backup diff" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:7 -#, fuzzy msgid "Compare all supported metadata" -msgstr "Comprime dados" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:8 msgid "No metadata comparison" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:9 -#, fuzzy msgid "Compare extended attributes" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:10 -#, fuzzy msgid "Compare creation times" -msgstr "Compare month names" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:11 -#, fuzzy msgid "Compare file data forks" -msgstr "Profile data format" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:12 -#, fuzzy msgid "Compare ACLs" -msgstr "Compression" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:13 -#, fuzzy msgid "Compare file flags" -msgstr "Compress file" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:14 -#, fuzzy msgid "Compare GIDs" -msgstr "Compression" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:15 -#, fuzzy msgid "Compare file modes" -msgstr "Completly silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:16 -#, fuzzy msgid "Compare sizes" -msgstr "Compress file" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:17 -#, fuzzy msgid "Compare modification times" -msgstr "Change modification time" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:18 -#, fuzzy msgid "Compare UIDs" -msgstr "Compression" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:19 msgid "Limit traversal depth to depth levels from the beginning of iteration" @@ -58229,23 +53449,20 @@ msgid "Dont take exclusions into account" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:21 -#, fuzzy msgid "Ignore path" -msgstr "Ignore case" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:22 msgid "Ignore logical volume identity" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:23 -#, fuzzy msgid "Delete one or more snapshots" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:24 -#, fuzzy msgid "Print information about destinations" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:25 msgid "Turn off automatic backups" @@ -58273,43 +53490,36 @@ msgid "Determine if a file, directory, or volume are excluded from backups" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:31 -#, fuzzy msgid "Print the path to the latest snapshot" -msgstr "Print time of last boot" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:32 -#, fuzzy msgid "Print paths for all snapshots" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:33 -#, fuzzy msgid "Print the path to the current machine directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:34 -#, fuzzy msgid "Removes a backup destination" -msgstr "Remove completion" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:35 -#, fuzzy msgid "Remove an exclusion" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:38 msgid "Restore an item" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:39 -#, fuzzy msgid "Set a backup destination" -msgstr "Remove completion" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:40 -#, fuzzy msgid "Add to the list of destinations" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:41 msgid "Enter the password at a non-echoing interactive prompt" @@ -58324,23 +53534,20 @@ msgid "Begin a backup if one is not already running" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:44 -#, fuzzy msgid "Automatic mode" -msgstr "Cumulative mode" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:45 msgid "Block until finished" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:46 -#, fuzzy msgid "Automatic rotation" -msgstr "Attempt automatic login" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:47 -#, fuzzy msgid "Backup destination" -msgstr "Back up the original version" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:48 msgid "Cancel a backup currently in progress" @@ -58355,23 +53562,20 @@ msgid "Verify snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:52 -#, fuzzy msgid "Print as XML" -msgstr "Print database" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:1 -#, fuzzy msgid "available sessions" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:2 msgid "connected clients" msgstr "clientes conectados" #: /tmp/fish/implicit/share/completions/tmux.fish:3 -#, fuzzy msgid "window panes" -msgstr "Window size change" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:4 msgid "Force tmux to assume the terminal supports 256 colours" @@ -58382,62 +53586,52 @@ msgid "Like -2, but indicates that the terminal supports 88 colours" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:6 -#, fuzzy msgid "Behave as a login shell" -msgstr "Este é um shell de login" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:7 -#, fuzzy msgid "Set the quiet server option" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:8 msgid "Flag explicitly informs tmux that UTF-8 is supported" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:9 -#, fuzzy msgid "Request verbose logging" -msgstr "List users logged in" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:10 -#, fuzzy msgid "Report the tmux version" -msgstr "Ordena por versão" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:11 -#, fuzzy msgid "Execute command using the default shell" -msgstr "Select entire command line (default)" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:13 -#, fuzzy msgid "Specify the name of the server socket to use" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:14 msgid "Full path to server socket. If set, -L is ignored." msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:15 -#, fuzzy msgid "attach to existing session" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:16 -#, fuzzy msgid "detach other clients" -msgstr "clientes conectados" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:17 -#, fuzzy msgid "attach in read-only mode" -msgstr "Read only" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:18 -#, fuzzy msgid "detach current client" -msgstr "Set or get all current limits" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:19 msgid "SIGHUP parent process of client, likely causing it to exit" @@ -58458,29 +53652,24 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:23 -#, fuzzy msgid "list all attached clients" -msgstr "Delete the logfile when done" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:24 -#, fuzzy msgid "list syntax for all tmux commands" -msgstr "Disable this command" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:25 -#, fuzzy msgid "list all sessions" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:26 -#, fuzzy msgid "lock client" -msgstr "Tamanho do bloco" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:27 -#, fuzzy msgid "lock session" -msgstr "Unlock a revision" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:28 msgid "create a new session with name session-name" @@ -58491,47 +53680,40 @@ msgid "don't attach to current window" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:30 -#, fuzzy msgid "window-name" -msgstr "Window size change" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:31 -#, fuzzy msgid "session-name" -msgstr "Número da versão" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:32 -#, fuzzy msgid "width" -msgstr "Line width" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:33 msgid "height" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:34 -#, fuzzy msgid "refresh client" -msgstr "Nome do cliente" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:35 -#, fuzzy msgid "update client status bar" -msgstr "Nega estado de saída da tarefa" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:36 -#, fuzzy msgid "rename session" -msgstr "Rename stdin" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:37 msgid "save msgs in status bar in per-client msg log" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:38 -#, fuzzy msgid "execute commands from path" -msgstr "Execute command as if part of .wgetrc" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:39 msgid "start tmux server if not running; do not create a session" @@ -58546,51 +53728,43 @@ msgid "Switch the current session for client target-client to target-session" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:42 -#, fuzzy msgid "move client to the last session" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:43 -#, fuzzy msgid "move client to the next session" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:44 -#, fuzzy msgid "move client to the previous session" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:45 -#, fuzzy msgid "toggle if client is read-only" -msgstr "Open folder read-only" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:46 #: /tmp/fish/implicit/share/completions/tmux.fish:47 #: /tmp/fish/implicit/share/completions/tmux.fish:73 #: /tmp/fish/implicit/share/completions/tmux.fish:76 -#, fuzzy msgid "target-session" -msgstr "Merge revisions" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:48 #: /tmp/fish/implicit/share/completions/tmux.fish:49 #: /tmp/fish/implicit/share/completions/tmux.fish:80 #: /tmp/fish/implicit/share/completions/tmux.fish:84 -#, fuzzy msgid "target-client" -msgstr "Target line" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:50 -#, fuzzy msgid "format string" -msgstr "Prompt string" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:51 #: /tmp/fish/implicit/share/completions/tmux.fish:74 -#, fuzzy msgid "bind key to command" -msgstr "Fim de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:52 msgid "bind for command mode instead of normal mode" @@ -58601,9 +53775,8 @@ msgid "make the binding work without using a prefix key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:54 -#, fuzzy msgid "key may repeat" -msgstr "Specify man path" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:55 msgid "choose key table for binding" @@ -58611,15 +53784,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:56 #: /tmp/fish/implicit/share/completions/tmux.fish:58 -#, fuzzy msgid "list all key bindings" -msgstr "Gerencia atalhos de teclado" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:57 #: /tmp/fish/implicit/share/completions/tmux.fish:68 -#, fuzzy msgid "key table" -msgstr "Executável" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:59 msgid "reset terminal state" @@ -58627,85 +53798,73 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:60 #: /tmp/fish/implicit/share/completions/tmux.fish:63 -#, fuzzy msgid "target pane" -msgstr "Target line" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:61 msgid "send the prefix key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:62 -#, fuzzy msgid "use secondary prefix" -msgstr "Set directory prefix" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:64 msgid "unbind the command bound to key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:65 -#, fuzzy msgid "remove all key bindings" -msgstr "Unable to parse key binding" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:66 -#, fuzzy msgid "binding for command mode" -msgstr "Fim de comando" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:67 msgid "command bound to key without a prefix (if any) removed" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:69 -#, fuzzy msgid "Set or unset an environment variable" -msgstr "Help on environment variables" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:70 #: /tmp/fish/implicit/share/completions/tmux.fish:75 -#, fuzzy msgid "global environment" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:71 msgid "remove from environment before starting a new process" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:72 -#, fuzzy msgid "unset variable" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:77 msgid "Open the command prompt in a client" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:78 -#, fuzzy msgid "Comma-separated list of initial text for each prompt" -msgstr "Comma-separated list of dependancy types to show" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:79 -#, fuzzy msgid "Comma-separated list of prompts" -msgstr "Formato separado por vírgula" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:81 -#, fuzzy msgid "Display a message" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:82 -#, fuzzy msgid "print to stdout" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:83 -#, fuzzy msgid "target-pane" -msgstr "Target line" +msgstr "" #: /tmp/fish/implicit/share/completions/top.fish:2 msgid "Toggle command line/program name" @@ -58716,9 +53875,8 @@ msgid "Toggle idle processes" msgstr "Toggle idle processes" #: /tmp/fish/implicit/share/completions/top.fish:6 -#, fuzzy msgid "Maximum iterations" -msgstr "Maximium iterations" +msgstr "" #: /tmp/fish/implicit/share/completions/top.fish:7 msgid "Monitor effective UID" @@ -58749,9 +53907,8 @@ msgid "Output a longer help message then quit" msgstr "" #: /tmp/fish/implicit/share/completions/totem.fish:3 -#, fuzzy msgid "Output version information then quit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/totem.fish:4 msgid "Tell any running totem instance: Toggle between play and pause" @@ -58810,33 +53967,28 @@ msgid "Add torrents to transmission" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:2 -#, fuzzy msgid "Enable debugging mode" -msgstr "Debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:3 msgid "Use the alternate Limits" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:4 -#, fuzzy msgid "Don't use the alternate Limits" -msgstr "Don't run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:5 -#, fuzzy msgid "Limit the alternate download speed" -msgstr "Limit the download speed" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:6 -#, fuzzy msgid "Limit the alternate upload speed" -msgstr "Limit the download speed" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:7 -#, fuzzy msgid "Use the scheduled on/off times" -msgstr "Use this files times" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:8 msgid "Don't use the scheduled on/off times" @@ -58867,28 +54019,24 @@ msgid "Directory for incomplete downloads" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:15 -#, fuzzy msgid "Don't store incomplete torrents in a different directory" -msgstr "Don't remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:16 -#, fuzzy msgid "Limit the maximum download speed to limit" -msgstr "Limit the download speed" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:17 -#, fuzzy msgid "Disable download speed limits" -msgstr "Disable downloading packages" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:18 msgid "Set the session's maximum memory cache size (MiB)" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:19 -#, fuzzy msgid "Encrypt all peer connections" -msgstr "Encrypt all net traffic" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:20 msgid "Prefer encrypted peer connections" @@ -58903,9 +54051,8 @@ msgid "Tell the Transmission to initiate a shutdown" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:23 -#, fuzzy msgid "Get a file list for the current torrent(s)" -msgstr "Sets an index list for the next track" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:24 msgid "Mark file(s) for download" @@ -58924,48 +54071,40 @@ msgid "All torrents should seed regardless of ratio" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:28 -#, fuzzy msgid "Print command-line option descriptions" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:29 -#, fuzzy msgid "Show details of the current torrent(s)" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:30 -#, fuzzy msgid "List session information from the server" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:31 -#, fuzzy msgid "List statistical information from the server" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:32 -#, fuzzy msgid "List all torrents" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:33 msgid "Enable portmapping via NAT-PMP or UPnP" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:34 -#, fuzzy msgid "Disable portmapping" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:35 -#, fuzzy msgid "Set the username:password for authentication" -msgstr "Prompt for password for authenticating server" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:37 -#, fuzzy msgid "Set authentication information from a netrc file" -msgstr "Print out history information for a module" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:38 msgid "Enable distributed hash table (DHT)" @@ -58992,29 +54131,24 @@ msgid "Give this torrent low bandwidth" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:44 -#, fuzzy msgid "Try to download the specified files first" -msgstr "Escreve lo no descritor de arquivo especificado" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:45 -#, fuzzy msgid "Try to download the specified files normally" -msgstr "Create window on the specified display" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:46 -#, fuzzy msgid "Try to download the specified files last" -msgstr "Create window on the specified display" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:47 -#, fuzzy msgid "Set the maximum number of peers" -msgstr "Set the maximum fuzz factor" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:48 -#, fuzzy msgid "Remove the current torrents" -msgstr "Remove the test directory" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:49 msgid "Remove the current torrents and delete data" @@ -59049,19 +54183,16 @@ msgid "Add a tracker to a torrent" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:57 -#, fuzzy msgid "Remove a tracker from a torrent" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:58 -#, fuzzy msgid "Start the current torrents" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:59 -#, fuzzy msgid "Stop the current torrents" -msgstr "Pára a função em execução" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:60 msgid "Start added torrents paused" @@ -59092,9 +54223,8 @@ msgid "Make the current torrent(s) not honor the session limits" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:67 -#, fuzzy msgid "Limit the maximum upload speed (KiB/s)" -msgstr "Limit the download speed" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:68 msgid "Disable upload speed limits" @@ -59105,14 +54235,12 @@ msgid "Enable uTP for peer connections" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:70 -#, fuzzy msgid "Disable uTP for peer connections" -msgstr "Disable automtic buffer allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:71 -#, fuzzy msgid "Verify the current torrents" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:73 msgid "Use directory as default for new downloads" @@ -59159,28 +54287,24 @@ msgid "Displays the most recent build for each branch" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:3 -#, fuzzy msgid "Lists or deletes repository caches" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:4 msgid "Cancels a job or build" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:5 -#, fuzzy msgid "Interactive shell" -msgstr "Test if this is an interactive shell" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:6 -#, fuzzy msgid "Disables a project" -msgstr "Disable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:7 -#, fuzzy msgid "Enables a project" -msgstr "Enable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:8 msgid "Encrypts values for the .travis.yml" @@ -59191,14 +54315,12 @@ msgid "Encrypts a file and adds decryption steps to .travis.yml" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:10 -#, fuzzy msgid "Displays or changes the API endpoint" -msgstr "Display $ at end of line" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:11 -#, fuzzy msgid "Show or modify build environment variables" -msgstr "Modifica variáveis de ambiente" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:12 msgid "Helps you out when in dire need of information" @@ -59253,18 +54375,16 @@ msgid "Lists repositories the user has certain permissions on" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:25 -#, fuzzy msgid "Lists recent requests" -msgstr "Bytes per request" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:26 msgid "Restarts a build or job" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:27 -#, fuzzy msgid "Access repository settings" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:28 msgid "Sets up an addon or deploy target" @@ -59291,18 +54411,16 @@ msgid "Outputs the secret API token" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:34 -#, fuzzy msgid "Outputs the client version" -msgstr "Back up the original version" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:35 msgid "Lists most recent builds" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:36 -#, fuzzy msgid "Outputs the current user" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:38 msgid "Be interactive and colorful" @@ -59313,67 +54431,56 @@ msgid "Don't be interactive and colorful" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:40 -#, fuzzy msgid "Don't rescue exceptions" -msgstr "Don't execute scripts" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:41 -#, fuzzy msgid "Rescue exceptions" -msgstr "Device section" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:42 -#, fuzzy msgid "Don't check if travis client is up to date" -msgstr "Don't check for sufficient disk space before installation" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:43 msgid "Don't check if auto-completion is set up" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:1 -#, fuzzy msgid "All files are listed" -msgstr "All bitfields are signed" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:2 -#, fuzzy msgid "List directories only" -msgstr "Lista subdiretórios recursivamente" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:3 -#, fuzzy msgid "Follow symbolic links like directories" -msgstr "Link simbólico para diretório" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:4 -#, fuzzy msgid "Print the full path prefix for each file" -msgstr "Print full path of source" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:5 -#, fuzzy msgid "Stay on current filesystem only" -msgstr "Stay on this file system" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:6 -#, fuzzy msgid "Descend only level directories deep" -msgstr "Recursively remove subdirectories" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:7 msgid "Rerun tree when max dir level reached" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:8 -#, fuzzy msgid "List only those files that match the pattern given" -msgstr "Exclude files thet match pattern in file" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:9 -#, fuzzy msgid "Do not list files that match the given pattern" -msgstr "Insert modules matching the given wildcard" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:10 msgid "Turn off file/directory count at end of tree listing" @@ -59392,43 +54499,36 @@ msgid "Print and format time according to the format " msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:14 -#, fuzzy msgid "Output to file instead of stdout" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:15 -#, fuzzy msgid "Print non-printable characters as '?'" -msgstr "Mostra caracteres não imprimíveis com '?'" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:16 -#, fuzzy msgid "Print non-printable characters as is" -msgstr "Escape all non-printing characters" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:17 msgid "Quote filenames with double quotes" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:18 -#, fuzzy msgid "Print the protections for each file" -msgstr "Launch default action for each file" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:19 -#, fuzzy msgid "Displays file owner or UID number" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:20 -#, fuzzy msgid "Displays file group owner or GID number" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:21 -#, fuzzy msgid "Print the size in bytes of each file" -msgstr "Mostra tamanhos de arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:22 msgid "Print the size in a more human readable way" @@ -59447,14 +54547,12 @@ msgid "Appends '/', '=', '*', '@', '|' or '>' as per ls -F" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:26 -#, fuzzy msgid "Print inode number of each file" -msgstr "Mostra inode dos arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:27 -#, fuzzy msgid "Print device ID number to which each file belongs" -msgstr "Mostra inode dos arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:28 msgid "Sort files alphanumerically by version" @@ -59465,9 +54563,8 @@ msgid "Sort files in reverse alphanumeric order" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:30 -#, fuzzy msgid "Sort files by last modification time" -msgstr "Ordena por hora de modificação" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:31 msgid "Sort files by last status change time" @@ -59482,9 +54579,8 @@ msgid "List directories before files (-U disables)" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:34 -#, fuzzy msgid "Don't print indentation lines" -msgstr "Do not print explanations" +msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:35 msgid "Print ANSI lines graphic indentation lines" @@ -59519,9 +54615,8 @@ msgid "Turn off hyperlinks in HTML output" msgstr "" #: /tmp/fish/implicit/share/completions/tree.fish:44 -#, fuzzy msgid "Print usage and this help message and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:1 msgid "use the complement of SET1" @@ -59550,14 +54645,12 @@ msgid "all letters" msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:9 -#, fuzzy msgid "all horizontal whitespace" -msgstr "Ignorar todos os espaços em branco" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:10 -#, fuzzy msgid "all control characters" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:11 msgid "all digits" @@ -59572,14 +54665,12 @@ msgid "all lower case letters" msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:14 -#, fuzzy msgid "all printable characters, including space" -msgstr "Print character counts" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:15 -#, fuzzy msgid "all punctuation characters" -msgstr "Escape all non-printing characters" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:16 msgid "all horizontal or vertical whitespace" @@ -59617,98 +54708,80 @@ msgid "Guarantee that any output is unbuffered." msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:24 -#, fuzzy msgid "alphanumeric characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:25 -#, fuzzy msgid "alphabetic characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:26 -#, fuzzy msgid "whitespace characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:27 -#, fuzzy msgid "control characters" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:28 -#, fuzzy msgid "numeric characters" -msgstr "Print character counts" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:29 -#, fuzzy msgid "graphic characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:30 -#, fuzzy msgid "ideographic characters" -msgstr "Mostra caracteres não imprimíveis com '?'" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:31 -#, fuzzy msgid "lower-case alphabetic characters" -msgstr "Escapa caracteres não imprimíveis com octal" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:32 -#, fuzzy msgid "phonographic characters" -msgstr "Escapa caracteres não imprimíveis com octal" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:33 -#, fuzzy msgid "printable characters" -msgstr "Print character counts" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:34 -#, fuzzy msgid "punctuation characters" -msgstr "Output character range" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:35 -#, fuzzy msgid "valid characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:36 -#, fuzzy msgid "space characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:37 -#, fuzzy msgid "special characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:38 -#, fuzzy msgid "upper-case characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/tr.fish:39 -#, fuzzy msgid "hexadecimal characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:2 msgid "Print all possible definitions of the specified name" msgstr "Print all possible definitions of the specified name" #: /tmp/fish/implicit/share/completions/type.fish:3 -#, fuzzy msgid "Suppress function and builtin lookup" -msgstr "Supress function and builtin lookup" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:4 -#, fuzzy msgid "Print command type" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:5 msgid "Print path to command, or nothing if name is not a command" @@ -59719,108 +54792,90 @@ msgid "Print path to command" msgstr "Print path to command" #: /tmp/fish/implicit/share/completions/type.fish:7 -#, fuzzy msgid "Suppress output" -msgstr "Suppresses normal output" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:3 -#, fuzzy msgid "Shows information about an object" -msgstr "Suppress informational output" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:4 -#, fuzzy msgid "Shows information about all objects" -msgstr "Display information about a local or remote item" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:5 msgid "Shows high-level status" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:6 -#, fuzzy msgid "Monitor changes to objects" -msgstr "Ignore changes in case" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:7 #: /tmp/fish/implicit/share/completions/zfs.fish:17 -#, fuzzy msgid "Mount a filesystem" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:8 #: /tmp/fish/implicit/share/completions/zfs.fish:18 -#, fuzzy msgid "Unmount a filesystem" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:9 -#, fuzzy msgid "Unlock an encrypted device" -msgstr "Unlock a revision" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:10 msgid "Lock an encrypted device" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:11 -#, fuzzy msgid "Set-up a loop device" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:12 -#, fuzzy msgid "Delete a loop device" -msgstr "File is block device" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:13 msgid "Safely power off a drive" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:14 -#, fuzzy msgid "Set SMART data for a drive" -msgstr "Set date forward" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:15 -#, fuzzy msgid "Object to get information about" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:16 -#, fuzzy msgid "Block device to get information about" -msgstr "Retorna informação de estado do fish" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:17 -#, fuzzy msgid "Drive to get information about" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:18 -#, fuzzy msgid "Filesystem type to use" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:20 -#, fuzzy msgid "Force/layzy unmount" -msgstr "Lazy unmount" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:22 -#, fuzzy msgid "Mounted block device" -msgstr "File is block device" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:23 -#, fuzzy msgid "File to set-up a loop device for" -msgstr "File is block device" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:24 -#, fuzzy msgid "Setup read-only device" -msgstr "Read only" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:25 msgid "Start at bytes into file" @@ -59843,37 +54898,32 @@ msgid "File with libatasmart blob" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:30 -#, fuzzy msgid "Do not authenticate the user if needed" -msgstr "Don't cache auth tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:31 msgid "Object to " msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:32 -#, fuzzy msgid "Block device to " -msgstr "Dispositivo bloco" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:33 msgid "Object path for ATA device" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:34 -#, fuzzy msgid "Block device for ATA device" -msgstr "Dispositivo bloco" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:1 -#, fuzzy msgid "Set or get soft limit" -msgstr "Set or get all current limits" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:2 -#, fuzzy msgid "Set or get hard limit" -msgstr "Set or get all current limits" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:3 msgid "Set or get all current limits" @@ -59920,9 +54970,8 @@ msgid "Maximum amount of virtual memory available to the shell" msgstr "Maximum amount of virtual memory available to the shell" #: /tmp/fish/implicit/share/completions/ulimit.fish:15 -#, fuzzy msgid "New resource limit" -msgstr "Recursion limit" +msgstr "" #: /tmp/fish/implicit/share/completions/umount.fish:5 msgid "Unmount without writing in /etc/mtab" @@ -59975,38 +55024,32 @@ msgid "Behave as though all of the options mnrsv were specified." msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:2 -#, fuzzy msgid "print the machine hardware name." -msgstr "Print machine name" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:3 -#, fuzzy msgid "print the nodename" -msgstr "Print kernel name" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:4 msgid "print the machine processor architecture name." msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:5 -#, fuzzy msgid "print the operating system release." -msgstr "Print operating system" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:6 -#, fuzzy msgid "print the operating system name." -msgstr "Print operating system" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:7 -#, fuzzy msgid "print the operating system version." -msgstr "Print operating system" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:8 -#, fuzzy msgid "Print all information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:9 msgid "Print kernel name" @@ -60021,9 +55064,8 @@ msgid "Print kernel release" msgstr "Print kernel release" #: /tmp/fish/implicit/share/completions/uname.fish:12 -#, fuzzy msgid "Print kernel version" -msgstr "Print PKG versions" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:13 msgid "Print machine name" @@ -60038,9 +55080,8 @@ msgid "Print hardware platform" msgstr "Print hardware platform" #: /tmp/fish/implicit/share/completions/uname.fish:16 -#, fuzzy msgid "Print operating system" -msgstr "Print operating system" +msgstr "" #: /tmp/fish/implicit/share/completions/unexpand.fish:1 msgid "convert all blanks, instead of just initial blanks" @@ -60059,34 +55100,28 @@ msgid "use comma separated LIST of tab positions (enables -a)" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:1 -#, fuzzy msgid "Extract files to current directory" -msgstr "Read files under each directory" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:3 -#, fuzzy msgid "List archive (technical)" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:4 -#, fuzzy msgid "List archive (bare)" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:5 -#, fuzzy msgid "Print file to stdout" -msgstr "Pipe files to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:6 -#, fuzzy msgid "Test archive files" -msgstr "Archive file" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:7 -#, fuzzy msgid "Verbosely list archive" -msgstr "Verify archive" +msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:8 msgid "Verbosely list archive (technical)" @@ -60097,19 +55132,16 @@ msgid "Verbosely list archive (bare)" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:10 -#, fuzzy msgid "Extract files with full path" -msgstr "Extract file from file" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:1 -#, fuzzy msgid "Show a short help screen" -msgstr "Mostra e ordena por hora de criação" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:2 -#, fuzzy msgid "Show version string" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:3 msgid "Show eixrc-variables" @@ -60120,14 +55152,12 @@ msgid "Show default eixrc-variables" msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:5 -#, fuzzy msgid "Produce no output" -msgstr "Audio output" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:6 -#, fuzzy msgid "Output to the given file" -msgstr "Output to /dev/null" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix.fish:7 msgid "Exclude the given overlay from the update-process" @@ -60142,9 +55172,8 @@ msgid "Override cache method for a specified overlay" msgstr "" #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:2 -#, fuzzy msgid "Be verbose (default)" -msgstr "(padrão)" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:3 msgid "Call wget as the given USER" @@ -60159,14 +55188,12 @@ msgid "A comment about this user" msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:2 -#, fuzzy msgid "Home directory for the new user" -msgstr "File descriptor for input" +msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:3 -#, fuzzy msgid "Supplementary groups" -msgstr "Select by group" +msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:5 msgid "The user's home directory will be created if it does not exist" @@ -60210,9 +55237,8 @@ msgid "The group name or ID for a new user's initial group" msgstr "" #: /tmp/fish/implicit/share/completions/useradd.fish:15 -#, fuzzy msgid "Name of the new user's login shell" -msgstr "Test if this is a login shell" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:1 msgid "Append groups (use with -G)" @@ -60223,9 +55249,8 @@ msgid "Change user's password file comment" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:3 -#, fuzzy msgid "Change user's login directory" -msgstr "Muda diretório de trabalho" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:4 msgid "Date on which the user account will be disabled" @@ -60244,9 +55269,8 @@ msgid "List of groups which the user is also a member of" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:8 -#, fuzzy msgid "Change user's name" -msgstr "Alterar para usuário" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:9 msgid "Lock user's password" @@ -60261,23 +55285,20 @@ msgid "Allow non-unique UID" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:13 -#, fuzzy msgid "Apply changes in this directory" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:14 -#, fuzzy msgid "The name of the user's new login shell" -msgstr "Test if this is a login shell" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:15 msgid "The new numerical value of the user's ID" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:16 -#, fuzzy msgid "Unlock a users password" -msgstr "Unlock a revision" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:17 msgid "Add a range of subordinate uids to the user's account" @@ -60300,48 +55321,40 @@ msgid "The new SELinux user for the user's login" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:1 -#, fuzzy msgid "Test if vagrant has yet to be given the main command" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:2 -#, fuzzy msgid "Lists all available Vagrant boxes" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:4 -#, fuzzy msgid "Print the help and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:5 -#, fuzzy msgid "Manages boxes" -msgstr "Manual sections" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:6 msgid "Adds a box" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:7 -#, fuzzy msgid "Lists all the installed boxes" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:8 -#, fuzzy msgid "Removes a box from Vagrant" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:9 -#, fuzzy msgid "Repackages the given box for redistribution" -msgstr "Re-package the files before erasing" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:10 -#, fuzzy msgid "Verifies the box with the given provider" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:11 msgid "Connect to a remotely shared Vagrant environment" @@ -60356,19 +55369,16 @@ msgid "Manually override static IP chosen" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:14 -#, fuzzy msgid "SSH into the remote machine" -msgstr "Specify root directory for rpm operations" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:15 -#, fuzzy msgid "Destroys the running machine" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:16 -#, fuzzy msgid "Destroy without confirmation" -msgstr "Ask for confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:17 msgid "Global status of Vagrant environments" @@ -60383,14 +55393,12 @@ msgid "Install Vagrant plugins through ruby gems" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:20 -#, fuzzy msgid "Shuts down the running machine" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:21 -#, fuzzy msgid "Force shut down" -msgstr "Parada forçada" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:22 msgid "Initializes the Vagrant environment" @@ -60401,14 +55409,12 @@ msgid "Log in to Vagrant Cloud" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:24 -#, fuzzy msgid "Only checks if you're logged in" -msgstr "Only check if sorted" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:25 -#, fuzzy msgid "Logs you out if you're logged in" -msgstr "List users logged in" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:26 msgid "Packages a running machine into a reusable box" @@ -60419,9 +55425,8 @@ msgid "Name or UUID of the virtual machine" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:28 -#, fuzzy msgid "Output file name" -msgstr "Output file" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:29 msgid "Additional files to package with the box" @@ -60436,18 +55441,16 @@ msgid "Manages plugins" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:32 -#, fuzzy msgid "Installs a plugin" -msgstr "Install after build" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:33 msgid "Installs a license for a proprietary Vagrant plugin" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:34 -#, fuzzy msgid "Lists installed plugins" -msgstr "Limit to installed" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:35 msgid "Uninstall the given plugin" @@ -60459,18 +55462,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:37 #: /tmp/fish/implicit/share/completions/vagrant.fish:41 -#, fuzzy msgid "Run only the given provisioners" -msgstr "Seek to given time position" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:38 msgid "Connects to machine via RDP" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:39 -#, fuzzy msgid "Restarts the running machine" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:40 msgid "Provisioners will not run" @@ -60501,9 +55502,8 @@ msgid "Local HTTPS port to forward to" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:48 -#, fuzzy msgid "Specific name for the share" -msgstr "Specify filenames to be filtered" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:49 msgid "Allow 'vagrant connect --ssh' access" @@ -60514,94 +55514,80 @@ msgid "Key won't be encrypted with --ssh" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:51 -#, fuzzy msgid "Specific port for SSH when using --ssh" -msgstr "Specify port for web interface" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:52 msgid "Allow 'vagrant connect --ssh' only one time" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:53 -#, fuzzy msgid "SSH into a running machine" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:54 -#, fuzzy msgid "Executes a single SSH command" -msgstr "Execute argument as command" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:55 -#, fuzzy msgid "Does not authenticate" -msgstr "Don't cache auth tokens" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:56 -#, fuzzy msgid "Outputs configuration for an SSH config file" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:57 -#, fuzzy msgid "Name of the host for the outputted configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:58 msgid "Status of the machines Vagrant is managing" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:59 -#, fuzzy msgid "Suspends the running machine" -msgstr "Show hidden functions" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:60 -#, fuzzy msgid "Creates and configures guest machines" -msgstr "Set configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:61 -#, fuzzy msgid "Enable provision" -msgstr "Enable optimizations" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:62 -#, fuzzy msgid "Disable provision" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:63 msgid "Enable only certain provisioners, by type" msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:1 -#, fuzzy msgid "Skin" -msgstr "Skin" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:3 -#, fuzzy msgid "Display help and debug options" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:7 msgid "Valgrind-ise children" msgstr "Valgrind-ise children" #: /tmp/fish/implicit/share/completions/valgrind.fish:8 -#, fuzzy msgid "Track file descriptors" -msgstr "Redirecionar para descritor de arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:9 msgid "Log to file descriptor" msgstr "Log to file descriptor" #: /tmp/fish/implicit/share/completions/valgrind.fish:10 -#, fuzzy msgid "Log to file" -msgstr "Log to tracefile" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:11 msgid "Log to socket" @@ -60636,15 +55622,13 @@ msgid "Debugger command" msgstr "Debugger command" #: /tmp/fish/implicit/share/completions/valgrind.fish:19 -#, fuzzy msgid "File descriptor for input" -msgstr "File descriptor for input" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:20 #: /tmp/fish/implicit/share/completions/valgrind.fish:26 -#, fuzzy msgid "Check for memory leaks" -msgstr "Check for memory leaks" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:21 #: /tmp/fish/implicit/share/completions/valgrind.fish:27 @@ -60699,65 +55683,54 @@ msgid "Specify a function that allocates memory" msgstr "Specify a function that allocates memory" #: /tmp/fish/implicit/share/completions/valgrind.fish:36 -#, fuzzy msgid "Profile heap usage" -msgstr "Profile stack usage" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:37 -#, fuzzy msgid "The number of bytes of heap overhead per allocation" -msgstr "The number of bytes of heap overhead per allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:38 -#, fuzzy msgid "Profile stack usage" -msgstr "Profile stack usage" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:39 -#, fuzzy msgid "Depth of call chain" -msgstr "Depth of call chain" +msgstr "" #: /tmp/fish/implicit/share/completions/valgrind.fish:40 -#, fuzzy msgid "Profiling output format" -msgstr "Profiling output format" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:1 -#, fuzzy msgid "Start given VM" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:2 msgid "Enable or disamble VRDE server or don't change setting" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:3 -#, fuzzy msgid "Set VRDE property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:4 #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:22 -#, fuzzy msgid "Specify settings password" -msgstr "Specify the http password" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:5 #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:23 -#, fuzzy msgid "Specify file containing setting password" -msgstr "Specify the http password" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:6 -#, fuzzy msgid "Start VM in paused state" -msgstr "Start interface" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:7 -#, fuzzy msgid "Record VM screen ouput to file" -msgstr "Redirecionar saída para arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:8 msgid "Frame width when recording" @@ -60784,39 +55757,32 @@ msgid "Run separate VM process or attach to a running VM" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:3 -#, fuzzy msgid "Set temporary first hard disk" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:4 -#, fuzzy msgid "Set temporary first floppy disk" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:5 -#, fuzzy msgid "Set temporary CDROM/DVD" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:6 -#, fuzzy msgid "Set temporary boot device" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:7 -#, fuzzy msgid "Set temporary memory size in MB" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:8 -#, fuzzy msgid "Set temporary video memory size in MB" -msgstr "Set temporary directory" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:9 -#, fuzzy msgid "Start VM in fullscreen mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:10 msgid "Resize guest on fullscreen" @@ -60835,14 +55801,12 @@ msgid "Make SDL frame non resizable" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:14 -#, fuzzy msgid "Disable all hoskey combinations" -msgstr "Don't trust the file modification times" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:15 -#, fuzzy msgid "Disable specific hostkey combinations" -msgstr "Disables specified type of authentication" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:16 msgid "Disable mouse/keyboard grabbing on mouse click w/o additions" @@ -60870,38 +55834,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:24 -#, fuzzy msgid "Enable raw ring 3" -msgstr "Enable X11 forwarding" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:25 -#, fuzzy msgid "Enable raw ring 0" -msgstr "Enable X11 forwarding" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:26 -#, fuzzy msgid "Enable PATM" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:27 -#, fuzzy msgid "Enable CSAM" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:28 msgid "Permit usage of VT-x/AMD-V" msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:29 -#, fuzzy msgid "Disable raw ring 3" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:30 -#, fuzzy msgid "Disable raw ring 0" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/VBoxSDL.fish:31 msgid "Disable PATM" @@ -60933,9 +55891,8 @@ msgid "List saved file names after crash" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:5 -#, fuzzy msgid "Read-only mode" -msgstr "Read only" +msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:6 msgid "Use linear search for tags if tag file not sorted" @@ -60946,23 +55903,20 @@ msgid "Start in display editing state" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:10 -#, fuzzy msgid "Recover file after crash" -msgstr "Remove files after adding to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:11 -#, fuzzy msgid "Edit the file containing a tag" -msgstr "Display the trigger scripts contained in the package" +msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:12 msgid "Begin editing by executing the specified editor command" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:1 -#, fuzzy msgid "Test if vim-addons has yet to be given the subcommand" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:2 msgid "list the names of the addons available in the system" @@ -60973,14 +55927,12 @@ msgid "show the status of the addons available in the system" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:4 -#, fuzzy msgid "install one or more addons under ~/.vim" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:5 -#, fuzzy msgid "remove one or more addons from ~/.vim" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:6 msgid "disable one or more addons to be used by the current user" @@ -60995,186 +55947,158 @@ msgid "list, one per line, the files composing the specified addons" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:9 -#, fuzzy msgid "displays detailed information about the specified addons" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:10 -#, fuzzy msgid "show this usage message and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:11 msgid "be quiet and make the output more parseable" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:12 -#, fuzzy msgid "set the registry directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:13 -#, fuzzy msgid "set the addons source directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:14 -#, fuzzy msgid "set the addons target directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:15 msgid "increase verbosity" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:16 -#, fuzzy msgid "set the system-wide target directory" -msgstr "Set the home directory" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:17 msgid "set target directory to the system-wide one" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:1 -#, fuzzy msgid "Execute Ex command after the first file has been read" -msgstr "Execute command as if part of .wgetrc" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:2 msgid "Source file after the first file has been read" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:3 -#, fuzzy msgid "Execute Ex command before loading any vimrc" -msgstr "Executa comando se o comando anterior falhou" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:4 -#, fuzzy msgid "Use device as terminal (Amiga only)" -msgstr "Use file as terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:5 msgid "Set the viminfo file location" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:6 -#, fuzzy msgid "Open stacked windows for each file" -msgstr "Launch default action for each file" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:7 msgid "Open side by side windows for each file" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:8 -#, fuzzy msgid "Open tab pages for each file" -msgstr "Display date for each line in file" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:9 -#, fuzzy msgid "Start in quickFix mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:10 msgid "Use swap files for recovery" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:11 -#, fuzzy msgid "Source and execute script file" -msgstr "Don't execute scriplets" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:12 -#, fuzzy msgid "Set the cursor to tag" -msgstr "Set the connect timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:13 -#, fuzzy msgid "Terminal name" -msgstr "Imprimir todos os nomes" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:14 msgid "Use alternative vimrc" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:15 -#, fuzzy msgid "Use alternative vimrc in GUI mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:16 -#, fuzzy msgid "Record all typed characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:17 msgid "Record all typed characters (overwrite file)" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:18 -#, fuzzy msgid "Start in Arabic mode" -msgstr "Start interface" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:19 -#, fuzzy msgid "Start in binary mode" -msgstr "Standard mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:20 msgid "Behave mostly like vi" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:21 -#, fuzzy msgid "Start in diff mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:22 -#, fuzzy msgid "Debugging mode" -msgstr "Debug mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:23 -#, fuzzy msgid "Start in Ex mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:24 -#, fuzzy msgid "Start in improved Ex mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:25 #: /tmp/fish/implicit/share/completions/vim.fish:46 -#, fuzzy msgid "Start in foreground mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:26 -#, fuzzy msgid "Start in Farsi mode" -msgstr "Standard mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:27 -#, fuzzy msgid "Start in GUI mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:28 #: /tmp/fish/implicit/share/completions/vim.fish:48 -#, fuzzy msgid "Print help message and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:29 -#, fuzzy msgid "Start in Hebrew mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:30 #: /tmp/fish/implicit/share/completions/vim.fish:37 @@ -61182,67 +56106,56 @@ msgid "List swap files" msgstr "Listar arquivos swap" #: /tmp/fish/implicit/share/completions/vim.fish:31 -#, fuzzy msgid "Start in lisp mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:32 -#, fuzzy msgid "Disable file modification" -msgstr "Don't trust the file modification times" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:33 -#, fuzzy msgid "Disallow file modification" -msgstr "Show last modification only" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:34 msgid "Reset compatibility mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:35 -#, fuzzy msgid "Don't use swap files" -msgstr "Listar arquivos swap" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:36 -#, fuzzy msgid "Read only mode" -msgstr "Read only" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:38 -#, fuzzy msgid "Start in silent mode" -msgstr "Standard mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:39 -#, fuzzy msgid "Start in verbose mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:40 -#, fuzzy msgid "Start in vi mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:41 msgid "Use encryption when writing files" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:42 -#, fuzzy msgid "Don't connect to X server" -msgstr "Don't continue after an error" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:43 -#, fuzzy msgid "Start in easy mode" -msgstr "Start interface" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:44 -#, fuzzy msgid "Start in restricted mode" -msgstr "Restricted mode" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:45 msgid "Become an editor server for NetBeans" @@ -61253,9 +56166,8 @@ msgid "Echo the Window ID on stdout (GTK GUI only)" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:49 -#, fuzzy msgid "Do not expand wildcards" -msgstr "Do not expand pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:50 msgid "Skip loading plugins" @@ -61265,47 +56177,40 @@ msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:54 #: /tmp/fish/implicit/share/completions/vim.fish:55 #: /tmp/fish/implicit/share/completions/vim.fish:56 -#, fuzzy msgid "Edit files on Vim server" -msgstr "Edit files in place" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:52 -#, fuzzy msgid "Evaluate expr on Vim server" -msgstr "Evaluate expression" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:53 -#, fuzzy msgid "Send keys to Vim server" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:57 msgid "List all Vim servers that can be found" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:58 -#, fuzzy msgid "Set server name" -msgstr "Service name" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:59 -#, fuzzy msgid "Print version information and exit" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:60 msgid "Run gvim in another window (GTK GUI only)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:1 -#, fuzzy msgid "Test if wajig has yet to be given the subcommand" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:2 -#, fuzzy msgid "Test if wajig command should have packages as potential completion" -msgstr "Test if apt command should have packages as potential completion" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:4 msgid "Do system commands everything quietly." @@ -61324,28 +56229,24 @@ msgid "Trace the sequence of commands performed." msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:8 -#, fuzzy msgid "Assume yes for any questions asked." -msgstr "Assume yes to all questions" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:9 -#, fuzzy msgid "Add a CD-ROM to the list of available sources of packages" -msgstr "Update list of source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:10 msgid "Mark the alternative to be auto set (using set priorities)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:11 -#, fuzzy msgid "Remove superseded deb files from the download cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:12 -#, fuzzy msgid "Do an update followed by a download of all updated packages" -msgstr "Update list of source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:13 msgid "Perform an install without asking questions (non-interactive)" @@ -61360,24 +56261,20 @@ msgid "Check reported bugs in package using the Debian Bug Tracker" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:16 -#, fuzzy msgid "Retrieve/unpack sources and build .deb for the named packages" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:17 -#, fuzzy msgid "Retrieve packages required to build listed packages" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:18 -#, fuzzy msgid "Retrieve latest changelog for the package" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:19 -#, fuzzy msgid "Remove all deb files from the download cache" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:20 #: /tmp/fish/implicit/share/completions/wajig.fish:53 @@ -61385,23 +56282,20 @@ msgid "List all the JIG commands and one line descriptions for each" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:21 -#, fuzzy msgid "Perform an update then a dist-upgrade" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:22 -#, fuzzy msgid "List of packages which depend/recommend/suggest the package" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:23 msgid "One line description of packages (-v and -vv for more detail)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:24 -#, fuzzy msgid "One line description of new packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:25 msgid "Provide a detailed description of package (describe -vv)" @@ -61412,38 +56306,32 @@ msgid "Provide a detailed description of new packages (describe -vv)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:27 -#, fuzzy msgid "Upgrade to new distribution (installed and new rqd packages)" -msgstr "Upgrade or install newest packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:28 msgid "Equivalent to help with -verbose=2" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:29 -#, fuzzy msgid "Download package files ready for an install" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:30 -#, fuzzy msgid "Download packages listed in file ready for an install" -msgstr "Download package missing from mirror" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:31 -#, fuzzy msgid "Install packages listed in a file" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:32 -#, fuzzy msgid "Remove packages listed in a file" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:33 -#, fuzzy msgid "Search for a file within installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:34 #: /tmp/fish/implicit/share/completions/wajig.fish:115 @@ -61459,14 +56347,12 @@ msgid "Perform apt-get -f install (to fix broken dependencies)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:37 -#, fuzzy msgid "Perform apt-get --fix-missing upgrade" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:38 -#, fuzzy msgid "Install packages and ignore file overwrites and depends" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:39 msgid "Print documentation (detail depends on --verbose)" @@ -61482,9 +56368,8 @@ msgid "Initialise or reset the JIG archive files" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:42 -#, fuzzy msgid "Install (or upgrade) one or more packages or .deb files" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:43 #: /tmp/fish/implicit/share/completions/wajig.fish:82 @@ -61492,11 +56377,8 @@ msgid "Install package and associated recommended packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:44 -#, fuzzy msgid "Install package and recommended and suggested packages" msgstr "" -"Install the packages even if they replace files from other, already " -"installed, packages" #: /tmp/fish/implicit/share/completions/wajig.fish:45 #: /tmp/fish/implicit/share/completions/wajig.fish:111 @@ -61508,55 +56390,48 @@ msgid "Check the integrity of installed packages (through checksums)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:47 -#, fuzzy msgid "List size of all large (>10MB) installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:48 msgid "Identify when an update was last performed" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:49 -#, fuzzy msgid "List the status and description of installed packages" -msgstr "Don't verify any attributes of package files" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:50 -#, fuzzy msgid "List a one line description of given or all packages" -msgstr "Don't verify any attributes of package files" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:51 msgid "List the objects that can have alternatives configured" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:52 -#, fuzzy msgid "List the contents of the download cache" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:54 msgid "List the daemons that JIG can start/stop/restart" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:55 -#, fuzzy msgid "List the files that are supplied by the named package" -msgstr "Listar todos os arquivos em cada pacote selecionado" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:56 -#, fuzzy msgid "List those packages on hold" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:57 msgid "List packages (with optional argument substring) installed" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:58 -#, fuzzy msgid "List the contents of the install/remove log file (filtered)" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:59 msgid "List all known packages or those containing supplied string" @@ -61564,24 +56439,20 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:60 #: /tmp/fish/implicit/share/completions/wajig.fish:74 -#, fuzzy msgid "List libraries not required by any installed package" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:61 -#, fuzzy msgid "List the control scripts of the package of deb file" -msgstr "Display the trigger scripts contained in the package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:62 -#, fuzzy msgid "List packages that belong to a specific section" -msgstr "Query all packages that provide the specified capability" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:63 -#, fuzzy msgid "List the sections that are available" -msgstr "Only perform operations that are trivial" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:64 msgid "Same as list but only prints first two columns, not truncated" @@ -61592,58 +56463,49 @@ msgid "Same as list but avoids truncating package names" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:66 -#, fuzzy msgid "Dist-upgrade using packages already downloaded" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:67 msgid "Upgrade using packages already downloaded, but not any others" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:68 -#, fuzzy msgid "Runs the madison command of apt-cache." -msgstr "Run commands from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:69 -#, fuzzy msgid "Move packages in the download cache to a local Debian mirror" -msgstr "Move packages from cache to local mirror" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:70 -#, fuzzy msgid "List packages that became available since last update" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:71 -#, fuzzy msgid "Obtain the latest news about the package" -msgstr "Listar todos os arquivos em cada pacote selecionado" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:72 -#, fuzzy msgid "List packages newly available for upgrading" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:73 -#, fuzzy msgid "List installed packages that do not meet the DFSG" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:75 #: /tmp/fish/implicit/share/completions/wajig.fish:89 -#, fuzzy msgid "Generate a .deb file for an installed package" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:76 msgid "From preferences file show priorities/policy (available)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:77 -#, fuzzy msgid "Remove one or more packages and configuration files" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:78 msgid "Purge package and those it depend on and not required by others" @@ -61658,27 +56520,24 @@ msgid "Display the package's README file from /usr/share/doc" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:81 -#, fuzzy msgid "Download package and any packages it depends on" -msgstr "List packages on which this package depends" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:83 msgid "Reconfigure the named installed packages or run gkdebconf" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:84 -#, fuzzy msgid "Reinstall each of the named packages" -msgstr "Install one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:85 msgid "Reload daemon configs, e.g., gdm, apache (see list-daemons)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:86 -#, fuzzy msgid "Remove one or more packages (see also purge)" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:87 msgid "Remove package and its dependees not required by others" @@ -61701,9 +56560,8 @@ msgid "Convert a RedHat .rpm file to a Debian .deb file" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:94 -#, fuzzy msgid "Search for packages containing listed words" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:95 msgid "Find local Debian archives suitable for sources.list" @@ -61743,18 +56601,16 @@ msgid "Generates list of package=version for all installed packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:105 -#, fuzzy msgid "Retrieve and unpack sources for the named packages" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:106 msgid "Start a daemon, e.g., gdm, apache (see list-daemons)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:107 -#, fuzzy msgid "Show the version and available version of packages" -msgstr "Show full versions for packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:108 #: /tmp/fish/implicit/share/completions/wajig.fish:109 @@ -61770,18 +56626,16 @@ msgid "Run the Gnome task selector to install groups of packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:113 -#, fuzzy msgid "List packages with newer versions available for upgrading" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:114 msgid "Remove listed packages from hold so they are again upgraded" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:116 -#, fuzzy msgid "Update the list of down-loadable packages" -msgstr "Update list of source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:117 msgid "Update default alternative for things like x-window-manager" @@ -61800,14 +56654,12 @@ msgid "Upgrade all of the installed packages or just those listed" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:121 -#, fuzzy msgid "List version and distribution of (all) packages." -msgstr "Don't verify any attributes of package files" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:122 -#, fuzzy msgid "A synonym for describe" -msgstr "Synonym for -i" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:123 msgid "Find the package that supplies the given command or file" @@ -61823,9 +56675,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:3 #: /tmp/fish/implicit/share/completions/watch.fish:4 -#, fuzzy msgid "Highlight changes between updates" -msgstr "Time between screen updates" +msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:5 msgid "Exit if command has a non-zero exit" @@ -61836,9 +56687,8 @@ msgid "Exit when output from command changes" msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:7 -#, fuzzy msgid "Seconds to wait between updates" -msgstr "Time to wait between requesting more peers" +msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:8 msgid "Attempt run command in precise intervals" @@ -61849,9 +56699,8 @@ msgid "Turn off header" msgstr "" #: /tmp/fish/implicit/share/completions/watch.fish:10 -#, fuzzy msgid "Pass command to exec instead of \"sh -c\"" -msgstr "Pass command to shell" +msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:1 msgid "Print byte counts" @@ -61870,9 +56719,8 @@ msgid "Print length of longest line" msgstr "Print length of longest line" #: /tmp/fish/implicit/share/completions/wc.fish:5 -#, fuzzy msgid "Print word counts" -msgstr "Print byte counts" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:1 msgid "Number sets BitsPerPixel value" @@ -61932,23 +56780,20 @@ msgid "Runs the game without sounds and music" msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:13 -#, fuzzy msgid "Prints the name of the game data directory and exits" -msgstr "Change working directory" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:14 -#, fuzzy msgid "XxY sets the screen resolution" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:15 msgid "Runs the game in a small test scenario" msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:16 -#, fuzzy msgid "Shows the version number and exits" -msgstr "Mostra a versão e sai" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:17 msgid "Runs the game in windowed mode" @@ -62020,9 +56865,8 @@ msgid "Go to background immediately after startup" msgstr "Go to background immediately after startup" #: /tmp/fish/implicit/share/completions/wget.fish:4 -#, fuzzy msgid "Execute command as if part of .wgetrc" -msgstr "Executa comando se o comando anterior falhou" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:5 msgid "Log all messages to logfile" @@ -62183,9 +57027,8 @@ msgid "Disable server-side cache" msgstr "Disable server-side cache" #: /tmp/fish/implicit/share/completions/wget.fish:49 -#, fuzzy msgid "Disable the use of cookies" -msgstr "Save session cookies" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:50 msgid "Load cookies from file" @@ -62241,43 +57084,36 @@ msgid "Turn off keep-alive for http downloads" msgstr "Turn off keep-alive for http downloads" #: /tmp/fish/implicit/share/completions/wget.fish:63 -#, fuzzy msgid "Choose secure protocol" -msgstr "Reject protocols" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:64 -#, fuzzy msgid "Only follow secure HTTPS links" -msgstr "Always follow symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:65 msgid "Don't validate the server's certificate" msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:66 -#, fuzzy msgid "Client certificate file" -msgstr "Set certificate policy" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:67 -#, fuzzy msgid "Client certificate type" -msgstr "Define política de certificação" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:68 -#, fuzzy msgid "Private key file" -msgstr "Escreve para o arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:69 -#, fuzzy msgid "Private key type" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:70 -#, fuzzy msgid "File with the bundle of CAs" -msgstr "Edit the patch bundle description" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:71 msgid "Directory where hash list of CAs is stored" @@ -62300,9 +57136,8 @@ msgid "Disable HSTS" msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:76 -#, fuzzy msgid "Path of HSTS database" -msgstr "Print database" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:77 msgid "Don't remove the temporary .listing files generated" @@ -62404,9 +57239,8 @@ msgstr "Specify a comma-separated list of directories you wish to exclude" #: /tmp/fish/implicit/share/completions/wget.fish:100 #: /tmp/fish/implicit/share/completions/wget.fish:101 -#, fuzzy msgid "Do not ever ascend to the parent directory" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/which.fish:1 #: /tmp/fish/implicit/share/completions/which.fish:13 @@ -62418,9 +57252,8 @@ msgid "Read aliases from stdin, reporting matching ones on stdout" msgstr "" #: /tmp/fish/implicit/share/completions/which.fish:3 -#, fuzzy msgid "Ignore option '--read-alias'" -msgstr "Ignore option “--read-functions”" +msgstr "" #: /tmp/fish/implicit/share/completions/which.fish:4 msgid "" @@ -62468,9 +57301,8 @@ msgid "Print time of last boot" msgstr "Print time of last boot" #: /tmp/fish/implicit/share/completions/who.fish:3 -#, fuzzy msgid "Print dead processes" -msgstr "Print processor" +msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:4 msgid "Print line of headings" @@ -62534,9 +57366,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wicd-client.fish:3 #: /tmp/fish/implicit/share/completions/wicd-gtk.fish:3 -#, fuzzy msgid "Print this help information." -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-client.fish:4 #: /tmp/fish/implicit/share/completions/wicd-gtk.fish:4 @@ -62549,19 +57380,16 @@ msgid "Don't display anything except notifications." msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:2 -#, fuzzy msgid "Scan for networks" -msgstr "Adicionar uma rede" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:3 -#, fuzzy msgid "List networks" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:4 -#, fuzzy msgid "Show network details" -msgstr "Set CVS user variable" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:5 msgid "Disconnect" @@ -62572,47 +57400,40 @@ msgid "Connect" msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:7 -#, fuzzy msgid "List encryption types" -msgstr "Use config file" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:8 msgid "Perform operation on wireless network" msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:9 -#, fuzzy msgid "Perform operation on wired network" -msgstr "Only perform operations that are trivial" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:10 -#, fuzzy msgid "Save profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:11 -#, fuzzy msgid "Load profile" -msgstr "No flat profile" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:12 msgid "Set name for profile to save/load" msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:13 -#, fuzzy msgid "Get or set network property" -msgstr "Operate on revision property" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:14 -#, fuzzy msgid "Set network property to" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/wicd-cli.fish:15 -#, fuzzy msgid "Set the network" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:1 msgid "get current WPA/EAPOL/EAP status" @@ -62627,14 +57448,12 @@ msgid "show this usage help" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:4 -#, fuzzy msgid "show interfaces/select interface" -msgstr "Select interface" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:5 -#, fuzzy msgid "change debug level" -msgstr "Set debug level" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:6 msgid "show full wpa_cli license" @@ -62649,27 +57468,24 @@ msgid "IEEE 802.1X EAPOL state machine logon" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:9 -#, fuzzy msgid "set/list variables" -msgstr "Erase variable" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:10 msgid "show PMKSA cache" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:11 -#, fuzzy msgid "force reassociation" -msgstr "Force name/rev association" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:12 msgid "force wpa_supplicant to re-read its config file" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:13 -#, fuzzy msgid "force preauthentication" -msgstr "Force pseudo-tty allocation" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:14 msgid "configure identity for an SSID" @@ -62684,9 +57500,8 @@ msgid "change password for an SSID" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:17 -#, fuzzy msgid "configure pin for an SSID" -msgstr "Configure for building on BUILD" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:18 msgid "configure one-time-password for an SSID" @@ -62713,32 +57528,28 @@ msgid "enable a network" msgstr "habilita uma rede" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:24 -#, fuzzy msgid "disable a network" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:25 msgid "add a network" msgstr "Adicionar uma rede" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:26 -#, fuzzy msgid "remove a network" -msgstr "Remove a key" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:27 msgid "set/list network variables" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:28 -#, fuzzy msgid "get network variables" -msgstr "Set CVS user variable" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:29 -#, fuzzy msgid "save the current configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:30 msgid "disconnect and wait for reassociate command before connecting" @@ -62753,9 +57564,8 @@ msgid "get latest scan results" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:33 -#, fuzzy msgid "get capabilies" -msgstr "Set playlist" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:34 msgid "request STAKey negotiation with " @@ -62786,9 +57596,8 @@ msgid "Run wvdial with alternative config file" msgstr "" #: /tmp/fish/implicit/share/completions/wvdial.fish:4 -#, fuzzy msgid "Don't output debug information" -msgstr "Não mostra grupo" +msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:1 msgid "" @@ -62851,14 +57660,12 @@ msgid "Run up to max-procs processes at a time" msgstr "Run up to max-procs processes at a time" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:1 -#, fuzzy msgid "Query information" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:2 -#, fuzzy msgid "Query default application for type" -msgstr "Output default action for mimetype" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:3 msgid "Query file's filetype" @@ -62869,35 +57676,29 @@ msgid "Choose application" msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:5 -#, fuzzy msgid "Mimetype" -msgstr "Show time type" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:6 -#, fuzzy msgid "Add filetype description" -msgstr "Adiciona indicador de tipo de arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:7 #: /tmp/fish/implicit/share/completions/xdg-mime.fish:10 -#, fuzzy msgid "Set mode" -msgstr "Silent mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:8 -#, fuzzy msgid "Disable vendor check" -msgstr "Disable server-side cache" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:9 -#, fuzzy msgid "Remove filetype description" -msgstr "Redirecionar para descritor de arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/xdg-mime.fish:12 -#, fuzzy msgid "Diplay long help" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:1 msgid "Get list of input files from FILE" @@ -62931,14 +57732,12 @@ msgid "Encoding of input files (except for Python, Tcl, Glade)" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:9 -#, fuzzy msgid "Join messages with existing file" -msgstr "Log all messages to logfile" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:10 -#, fuzzy msgid "Entries from FILE" -msgstr "Ler senha a partir do ARQUIVO" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:11 msgid "" @@ -62981,9 +57780,8 @@ msgid "More detailed formatstring recognition result" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:19 -#, fuzzy msgid "Do not use C escapes in output (default)" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:20 msgid "Use C escapes in output, no extended chars" @@ -62994,14 +57792,12 @@ msgid "Write PO file even if empty" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:22 -#, fuzzy msgid "Write the" -msgstr "Escreve para o arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:23 -#, fuzzy msgid "Do not write #: filename:line lines" -msgstr "Do not overwrite newer files" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:24 msgid "Generate #: filename:line lines (default)" @@ -63012,18 +57808,16 @@ msgid "Write out strict Uniforum conforming" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:26 -#, fuzzy msgid "Write out a Java" -msgstr "Write out the prompt" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:27 msgid "Write out a NeXTstep/GNUstep" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:28 -#, fuzzy msgid "Set output page width" -msgstr "Select output delimiter" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:29 msgid "" @@ -63032,23 +57826,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:30 -#, fuzzy msgid "Generate sorted output" -msgstr "Mostra saída com dired" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:31 -#, fuzzy msgid "Sort output by file location" -msgstr "Ordena por hora de modificação" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:32 msgid "Dont write header with msgid \"\" entry" msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:33 -#, fuzzy msgid "Set copyright holder in output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/xgettext.fish:34 msgid "Omit FSF copyright in output for foreign user" @@ -63067,33 +57858,28 @@ msgid "Use STRING or \"\" as suffix for msgstr entries" msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:1 -#, fuzzy msgid "Show summary of options" -msgstr "Display help and debug options" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:2 -#, fuzzy msgid "Select XMMS session (Default: 0)" -msgstr "Select by session ID" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:3 msgid "Skip backwards in playlist" msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:4 -#, fuzzy msgid "Start playing current playlist" -msgstr "Set or get all current limits" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:5 -#, fuzzy msgid "Pause current song" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:6 -#, fuzzy msgid "Stop current song" -msgstr "Show source package" +msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:7 msgid "Pause if playing, play otherwise" @@ -63108,19 +57894,16 @@ msgid "Don't clear the playlist" msgstr "" #: /tmp/fish/implicit/share/completions/xmms.fish:10 -#, fuzzy msgid "Show the main window" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:1 -#, fuzzy msgid "Set the initial window geometry" -msgstr "Muda a cor do terminal" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:2 -#, fuzzy msgid "Set the window title" -msgstr "Set the network timeout" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:3 msgid "Install a private colormap" @@ -63131,28 +57914,24 @@ msgid "Set the size of the largest RGB cube xpdf will try to allocate" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:5 -#, fuzzy msgid "Set reverse video mode" -msgstr "Server mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:6 -#, fuzzy msgid "Set the background of the page display" -msgstr "Create window on the specified display" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:7 msgid "Set the color for background outside the page area" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:8 -#, fuzzy msgid "Set the initial zoom factor" -msgstr "Set the maximum fuzz factor" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:9 -#, fuzzy msgid "Start in continuous view mode" -msgstr "Start in folder index" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:10 msgid "Enable or disable t1lib (Default: yes)" @@ -63171,9 +57950,8 @@ msgid "Set the default file name for PostScript output" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:14 -#, fuzzy msgid "Set the paper size" -msgstr "Set memory buffer size" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:15 msgid "Set the paper width, in points" @@ -63184,29 +57962,24 @@ msgid "Set the paper height, in points" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:17 -#, fuzzy msgid "Generate Level 1 PostScript" -msgstr "Mostra saída com dired" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:18 -#, fuzzy msgid "Sets the encoding to use for text output" -msgstr "Neither verbose nor quiet output" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:19 -#, fuzzy msgid "Sets the end-of-line convention to use" -msgstr "Set the end of file string to eof-str" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:20 -#, fuzzy msgid "Specify the owner password for the PDF file" -msgstr "Specify the proxy password" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:21 -#, fuzzy msgid "Specify the user password for the PDF file" -msgstr "Specify the proxy password" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:22 msgid "Open xpdf in full-screen mode" @@ -63225,42 +57998,36 @@ msgid "Raise xpdf remote server window" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:26 -#, fuzzy msgid "Kill xpdf remote server" -msgstr "File to grab servers" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:27 -#, fuzzy msgid "Print commands as they're executed" -msgstr "Print commands to stderr" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:29 -#, fuzzy msgid "Specify config file to use instead of ~/.xpdfrc" -msgstr "Use specified file instead of the default trustdb" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:30 -#, fuzzy msgid "Print copyright and version information" -msgstr "List compression information" +msgstr "" #: /tmp/fish/implicit/share/completions/xprop.fish:2 msgid "Display grammar and exit" msgstr "Display grammar and exit" #: /tmp/fish/implicit/share/completions/xprop.fish:3 -#, fuzzy msgid "Select window by id" -msgstr "Select window by id" +msgstr "" #: /tmp/fish/implicit/share/completions/xprop.fish:4 msgid "Select window by name" msgstr "Select window by name" #: /tmp/fish/implicit/share/completions/xprop.fish:5 -#, fuzzy msgid "Display font properties" -msgstr "Display font properties" +msgstr "" #: /tmp/fish/implicit/share/completions/xprop.fish:6 msgid "Select root window" @@ -63271,18 +58038,16 @@ msgid "Specify X server" msgstr "Specify X server" #: /tmp/fish/implicit/share/completions/xprop.fish:8 -#, fuzzy msgid "Maximum display length" -msgstr "Maximum display length" +msgstr "" #: /tmp/fish/implicit/share/completions/xprop.fish:9 msgid "Do not show property type" msgstr "Do not show property type" #: /tmp/fish/implicit/share/completions/xprop.fish:10 -#, fuzzy msgid "Set format file" -msgstr "Set format file" +msgstr "" #: /tmp/fish/implicit/share/completions/xprop.fish:11 msgid "Select a window by clicking on its frame" @@ -63301,9 +58066,8 @@ msgid "Examine property updates forever" msgstr "Examine property updates forever" #: /tmp/fish/implicit/share/completions/xprop.fish:15 -#, fuzzy msgid "Set format" -msgstr "Short format" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:2 msgid "Make no changes" @@ -63314,23 +58078,20 @@ msgid "Apply modifications without grabbing the screen" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:4 -#, fuzzy msgid "Print out a summary of the usage and exit" -msgstr "Load the media and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:5 msgid "Print out the RandR version reported by the X server and exit" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:6 -#, fuzzy msgid "Display the current state of the system" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:7 -#, fuzzy msgid "Select X display to use" -msgstr "Select how to display key IDs" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:8 msgid "Select which screen to manipulate" @@ -63349,14 +58110,12 @@ msgid "Set the screen size (index or width x height)" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:12 -#, fuzzy msgid "Set the refresh rate closest to the specified value" -msgstr "Define a lista de preferências padrão como a string especificada" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:13 -#, fuzzy msgid "Specify the orientation of the screen" -msgstr "Specify commit message" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:14 msgid "Reflect across the X axis" @@ -63367,14 +58126,12 @@ msgid "Reflect across the Y axis" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:16 -#, fuzzy msgid "Display the contents of properties for each output" -msgstr "Display the pretend output in a tabular form" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:17 -#, fuzzy msgid "Set screen size" -msgstr "Set context size" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:18 msgid "Set reported physical screen size" @@ -63385,14 +58142,12 @@ msgid "Set dpi to calculate reported physical screen size" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:20 -#, fuzzy msgid "Add new mode" -msgstr "Adicionar uma nova chave" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:21 -#, fuzzy msgid "Removes a mode from the server" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:22 msgid "Add a mode to the set of valid modes for an output" @@ -63403,18 +58158,16 @@ msgid "Remove a mode from the set of valid modes for an output" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:24 -#, fuzzy msgid "Selects an output to reconfigure" -msgstr "Select an option profile" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:25 msgid "Enable connected but disabled outputs" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:26 -#, fuzzy msgid "This selects a mode" -msgstr "Select a method" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:27 msgid "" @@ -63427,42 +58180,36 @@ msgid "Set output position within the secreen in pixels" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:29 -#, fuzzy msgid "Set refresh rate" -msgstr "Set referer URL" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:30 -#, fuzzy msgid "Set reflection" -msgstr "Invert selection" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:31 -#, fuzzy msgid "Set rotation" -msgstr "Select an action" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:32 #: /tmp/fish/implicit/share/completions/xrandr.fish:33 #: /tmp/fish/implicit/share/completions/xrandr.fish:34 #: /tmp/fish/implicit/share/completions/xrandr.fish:35 #: /tmp/fish/implicit/share/completions/xrandr.fish:36 -#, fuzzy msgid "Set position relative to the output" -msgstr "Reset verbose level to 0" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:37 msgid "Set the property value: --set " msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:38 -#, fuzzy msgid "Disables the output" -msgstr "Add label to output" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:39 -#, fuzzy msgid "Set the crtc" -msgstr "Set quote char" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:40 msgid "Set gamma correction [red:green:blue]" @@ -63477,9 +58224,8 @@ msgid "Don't define a primary output" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:43 -#, fuzzy msgid "Print current screen configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:44 msgid "" @@ -63494,18 +58240,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:46 -#, fuzzy msgid "Set scren scale" -msgstr "Service name" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:47 msgid "Set the output as primary" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:1 -#, fuzzy msgid "display to use" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:2 msgid "do all resources [default]" @@ -63532,57 +58276,48 @@ msgid "preprocessor to use [/usr/bin/mcpp]" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:8 -#, fuzzy msgid "do not use a preprocessor" -msgstr "Do not use integrated preprocessor" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:9 -#, fuzzy msgid "query resources" -msgstr "Update sources" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:10 -#, fuzzy msgid "load resources from file [default]" -msgstr "Load cookies from file" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:11 -#, fuzzy msgid "add in resources from file" -msgstr "Load index from file" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:12 -#, fuzzy msgid "merge resources from file & sort" -msgstr "Supress errors from file" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:13 -#, fuzzy msgid "edit resources into file" -msgstr "Set sources.list file" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:14 msgid "backup suffix for -edit [.bak]" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:15 -#, fuzzy msgid "show preprocessor symbols" -msgstr "Preprocessors" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:16 -#, fuzzy msgid "remove resources" -msgstr "Remove records" +msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:17 msgid "avoid server reset (avoid using this)" msgstr "" #: /tmp/fish/implicit/share/completions/xrdb.fish:18 -#, fuzzy msgid "don't warn about duplicates" -msgstr "Only print duplicates" +msgstr "" #: /tmp/fish/implicit/share/completions/xsel.fish:1 msgid "Append input to selection" @@ -63629,9 +58364,8 @@ msgid "Exchange primary and secondary selections" msgstr "Exchange primary and secondary selections" #: /tmp/fish/implicit/share/completions/xsel.fish:12 -#, fuzzy msgid "X server display" -msgstr "X server display" +msgstr "" #: /tmp/fish/implicit/share/completions/xsel.fish:13 msgid "Timeout for retrieving selection" @@ -63654,18 +58388,16 @@ msgid "Never highlight the text cursor" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:2 -#, fuzzy msgid "Enable active icon support" -msgstr "Enable suspension support" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:3 msgid "Disallow auto wraparound" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:4 -#, fuzzy msgid "Turn off cursor blinking" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:5 msgid "Enable the display of bold characters" @@ -63692,9 +58424,8 @@ msgid "Don't workaround the bug in more(1)" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:11 -#, fuzzy msgid "Disable dynamic color changing" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:12 msgid "Don't ensure compatibility between normal and bold fonts bounding boxes" @@ -63717,23 +58448,20 @@ msgid "Don't use pseudo-terminal's sense of the stty erase value" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:17 -#, fuzzy msgid "Don't force insert mode" -msgstr "Don't use batch mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:18 -#, fuzzy msgid "Don't use jump scrolling" -msgstr "Don't use a comment string" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:19 msgid "Don't treat C1 control characters as printable" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:20 -#, fuzzy msgid "Turn off logging" -msgstr "Turn off FTP globbing" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:21 msgid "Turn off support for encodings according the locale setting" @@ -63756,9 +58484,8 @@ msgid "Don't use builtin version for the wide-character calculation" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:26 -#, fuzzy msgid "Enable underlining" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:27 msgid "Disable PC style bold colors" @@ -63777,18 +58504,16 @@ msgid "Disable reverse-wraparound" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:31 -#, fuzzy msgid "Turn off asynchronous scrolling" -msgstr "Turn off access checking" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:32 msgid "Send title/icon change requests always" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:33 -#, fuzzy msgid "Don't display scrollbar" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:34 msgid "Don't generate Sun Function Key escape codes for function keys" @@ -63815,41 +58540,36 @@ msgid "VT102 mode" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:40 -#, fuzzy msgid "Don't display toolbar or menubar" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:41 -#, fuzzy msgid "Don't use UTF-8" -msgstr "Don't recurse" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:42 msgid "Display characters with underline attribute as color" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:43 -#, fuzzy msgid "Write to the system utmp log file" -msgstr "Write top servers to file" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:44 msgid "Don't use visual bell insead of audio bell" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:45 -#, fuzzy msgid "Don't use wide characters" -msgstr "Do not use backslash escaped characters" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:46 msgid "Don't wait the first time for the window to be mapped" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:47 -#, fuzzy msgid "Print version number to the standard output" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:48 msgid "Print out a verbose message describing the options" @@ -63864,18 +58584,16 @@ msgid "Always highlight the text cursor" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:51 -#, fuzzy msgid "Disable active icon support" -msgstr "Enable suspension support" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:52 msgid "Allow auto wraparound" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:53 -#, fuzzy msgid "Turn on cursor blinking" -msgstr "Turn on recursive retrieving" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:54 msgid "Disable the display of bold characters" @@ -63886,9 +58604,8 @@ msgid "Set the vt100 resource cutToBeginningOfLine to 'false'" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:56 -#, fuzzy msgid "Set character class" -msgstr "Print character counts" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:57 msgid "Set the cjkWidth resource to 'true'" @@ -63931,9 +58648,8 @@ msgid "Use pseudo-terminal's sense of the stty erase value" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:67 -#, fuzzy msgid "Force insert mode" -msgstr "Parada forçada" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:68 msgid "Treat C1 control characters as printable" @@ -63948,9 +58664,8 @@ msgid "Force scrollbar to the left side" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:71 -#, fuzzy msgid "The shell in xterm's window will be login shell" -msgstr "Test if this is a login shell" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:72 msgid "Ring bell if the user types near the end of line" @@ -63965,9 +58680,8 @@ msgid "Use builtin version for the wide-character calculation" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:75 -#, fuzzy msgid "Disable underlining" -msgstr "Disable warnings about MFC" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:76 msgid "Enable PC style bold colors" @@ -63994,9 +58708,8 @@ msgid "Don't send title/icon change requests always" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:82 -#, fuzzy msgid "Display scrollbar" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:83 msgid "Generate Sun Function Key escape codes for function keys" @@ -64019,14 +58732,12 @@ msgid "Assume Sun/PC keyboard" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:88 -#, fuzzy msgid "Display toolbar or menubar" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:89 -#, fuzzy msgid "Use UTF-8" -msgstr "STDOUT é UTF-8" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:90 msgid "Don't display characters with underline attribute as color" @@ -64041,9 +58752,8 @@ msgid "Use visual bell insead of audio bell" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:93 -#, fuzzy msgid "Use wide characters" -msgstr "Escape character" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:94 msgid "Wait the first time for the window to be mapped" @@ -64074,9 +58784,8 @@ msgid "Color for the text cursor" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:101 -#, fuzzy msgid "xterm encoding" -msgstr "Force encoding" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:102 msgid "Bold font" @@ -64091,9 +58800,8 @@ msgid "FreeType double-width font pattern" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:105 -#, fuzzy msgid "Font for active icons" -msgstr "Force interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:106 msgid "Font size for FreeType font" @@ -64120,18 +58828,16 @@ msgid "Embed xterm into window" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:112 -#, fuzzy msgid "Set keyboard type" -msgstr "Specify record type" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:113 msgid "File name for the encoding converter" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:114 -#, fuzzy msgid "Log filename" -msgstr "Log to file" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:115 msgid "Maximum time in milliseconds between multi-click selections" @@ -64146,94 +58852,80 @@ msgid "Distance from the right end for ringing the margin bell" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:118 -#, fuzzy msgid "Number of scrolled off lines" -msgstr "Number all lines" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:119 -#, fuzzy msgid "Terminal identification" -msgstr "Print all information" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:121 -#, fuzzy msgid "zIconBeep percentage" -msgstr "Prompt with percentage" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:122 -#, fuzzy msgid "Size of the inner border" -msgstr "Show changes in reverse order" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:123 msgid "Use jump scrolling" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:124 -#, fuzzy msgid "Turn on logging" -msgstr "Turn of demangling" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:125 msgid "Turn on asynchronous scrolling" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:126 -#, fuzzy msgid "Tektronix mode" -msgstr "Question mode" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:127 msgid "This window should receive console output" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:1 -#, fuzzy msgid "Compress" -msgstr "Compression" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:2 -#, fuzzy msgid "Decompress" -msgstr "Decompress to stdout" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:3 -#, fuzzy msgid "Test the integrity of compressed files" -msgstr "Remove an entry from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:4 -#, fuzzy msgid "Print information about compressed files" -msgstr "Print informative messages" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:5 -#, fuzzy msgid "Don't delete the input files" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:6 -#, fuzzy msgid "Write to stdout instead of file" -msgstr "Write top servers to file" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:7 msgid "Decompress only the first .xz stream" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:8 -#, fuzzy msgid "Disable creation of sparse files" -msgstr "Control creation of sparse files" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:9 msgid "Use SUFFIX as the suffix for target file" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:10 -#, fuzzy msgid "Read the filenames to process from file" -msgstr "Read log message from file" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:11 msgid "Identical to --files but filenames terminate with \\0" @@ -64244,38 +58936,32 @@ msgid "Specify file format to compress/decompress" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:13 -#, fuzzy msgid "Specify type of integrity check" -msgstr "Specify port for web interface" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:14 -#, fuzzy msgid "Don't verify the integrity check" -msgstr "Don't verify time attribute" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:15 -#, fuzzy msgid "Select compression level" -msgstr "Compression level" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:16 msgid "Use slower variant" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:17 -#, fuzzy msgid "Alias of -0" -msgstr "Nome alternativo para atq" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:18 -#, fuzzy msgid "Alias of -9" -msgstr "Nome alternativo para atq" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:20 -#, fuzzy msgid "Set block sizes list" -msgstr "Set block size" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:21 msgid "Force flush if encoder did not fush after TIMEOUT ms" @@ -64298,9 +58984,8 @@ msgid "Display error and exit if exceed memory usage limit" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:26 -#, fuzzy msgid "Specify the number of worker threads to use" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:27 msgid "Add LZMA1 filter to filter chain" @@ -64319,28 +59004,24 @@ msgid "Add Delta filter to filter chain" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:31 -#, fuzzy msgid "Suppress warnings/notices" -msgstr "Supress printing filename" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:33 -#, fuzzy msgid "Don't set the exit status to 2" -msgstr "Nega estado de saída da tarefa" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:34 msgid "Print messages in a machine-parsable format" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:35 -#, fuzzy msgid "Display memory informations (physical, usage limits)" -msgstr "Display update information" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:37 -#, fuzzy msgid "Display long help" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:13 msgid "Backup or restore alpm local database" @@ -64359,9 +59040,8 @@ msgid "Show some statistics about your packages" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:29 -#, fuzzy msgid "Force color" -msgstr "Usa cores" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:30 msgid "Force installation or updates" @@ -64372,48 +59052,40 @@ msgid "Allow to perform \"insecure\" SSL connections" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:32 -#, fuzzy msgid "Disable color" -msgstr "Usa cores" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:33 -#, fuzzy msgid "Always ask for confirmation" -msgstr "Ask for confirmation" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:35 msgid "Export built packages and their sources to DIR" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:36 -#, fuzzy msgid "Use DIR as temporary folder" -msgstr "Use tmpdir for temporary files" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:54 -#, fuzzy msgid "Show packages that conflict with one of the targets" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:55 -#, fuzzy msgid "Show packages that depend on one of the targets" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:56 -#, fuzzy msgid "Show packages that provide one of the targets" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:57 -#, fuzzy msgid "Show packages that replace one of the targets" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:58 -#, fuzzy msgid "Query the package names only" -msgstr "Search packagename only" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:70 msgid "Query FILE instead of alpm/aur" @@ -64432,23 +59104,20 @@ msgid "Pass -A or --ignorearch option to makepkg" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:85 -#, fuzzy msgid "Specify a custom AUR url" -msgstr "Specify a username" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:86 msgid "Build from sources(AUR or ABS)" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:87 -#, fuzzy msgid "Also build all dependencies" -msgstr "Show build dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:88 -#, fuzzy msgid "Search an update for devel packages" -msgstr "List reverse dependencies for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:89 msgid "Search packages by maintainer instead of name (AUR only)" @@ -64459,19 +59128,16 @@ msgid "Pass additional options to makepkg" msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:106 -#, fuzzy msgid "Clean all these files" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yaourt.fish:107 -#, fuzzy msgid "Also install the package" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:1 -#, fuzzy msgid "output usage information" -msgstr "Não pôde obter informação do usuário" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:3 msgid "output verbose messages on internal operations" @@ -64488,9 +59154,8 @@ msgid "use network only if dependencies are not available in local cache" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:6 -#, fuzzy msgid "don't run lifecycle scripts" -msgstr "Don't run the test script" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:7 msgid "save HAR output of network traffic" @@ -64501,37 +59166,32 @@ msgid "ignore platform checks" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:9 -#, fuzzy msgid "ignore engines check" -msgstr "Ignore changes in case" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:10 -#, fuzzy msgid "ignore optional dependencies" -msgstr "Correct broken dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:11 -#, fuzzy msgid "ignore all caches" -msgstr "Search ignores all case" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:12 msgid "don't generate bin links when setting up packages" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:13 -#, fuzzy msgid "only allow one version of a package" -msgstr "Instalar um ou mais pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:14 msgid "don't read or generate a lockfile" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:15 -#, fuzzy msgid "don't generate a lockfile" -msgstr "Generate release file" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:16 msgid "don't generate a lockfile and fail if an update is needed" @@ -64544,37 +59204,32 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:18 -#, fuzzy msgid "specify a custom folder to store the yarn cache" -msgstr "Select file to store source cache" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:19 msgid "use a mutex to ensure only one yarn instance is executing" msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:20 -#, fuzzy msgid "disable emoji in output" -msgstr "Use colors" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:21 -#, fuzzy msgid "disable progress bar" -msgstr "Do not display progress bar" +msgstr "" #: /tmp/fish/implicit/share/completions/yarn.fish:22 -#, fuzzy msgid "maximum number of concurrent network requests" -msgstr "Minimum number of peers to not do requesting" +msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:1 msgid "Module" msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:3 -#, fuzzy msgid "List all available modules" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:4 msgid "Use the QT graphical user interface" @@ -64597,63 +59252,52 @@ msgid "No window manager border for main window" msgstr "" #: /tmp/fish/implicit/share/completions/yast2.fish:9 -#, fuzzy msgid "Use full screen" -msgstr "Full screen" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:1 -#, fuzzy msgid "Install the latest version of a package" -msgstr "Instalar os pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:2 -#, fuzzy msgid "Update specified packages (defaults to all packages)" -msgstr "Exclude specified package from updates" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:3 -#, fuzzy msgid "Print list of available updates" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:4 -#, fuzzy msgid "Remove the specified packages and packages that depend on them" -msgstr "List packages on which this package depends" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:5 -#, fuzzy msgid "List available packages" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:6 -#, fuzzy msgid "Describe available packages" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:7 msgid "Find package providing a feature or file" msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:8 -#, fuzzy msgid "find packages matching description regexp" -msgstr "Ignore changes matching regexp" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:9 -#, fuzzy msgid "Clean up cache directory" -msgstr "Clean source directories" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:10 -#, fuzzy msgid "Generate rss changelog" -msgstr "Generate a new key pair" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:14 -#, fuzzy msgid "Set debug level" -msgstr "Set debug level" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:15 msgid "Set error level" @@ -64676,14 +59320,12 @@ msgid "Specify installroot" msgstr "Specify installroot" #: /tmp/fish/implicit/share/completions/yum.fish:21 -#, fuzzy msgid "Enable repository" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:22 -#, fuzzy msgid "Disable repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:23 msgid "Enables obsolets processing logic" @@ -64698,79 +59340,66 @@ msgid "Exclude specified package from updates" msgstr "Exclude specified package from updates" #: /tmp/fish/implicit/share/completions/yum.fish:26 -#, fuzzy msgid "List all packages" -msgstr "Instalar pacotes" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:27 -#, fuzzy msgid "List packages available for installation" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:28 -#, fuzzy msgid "List packages with updates available" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:30 -#, fuzzy msgid "List packages not available in repositories" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:31 -#, fuzzy msgid "List packages that are obsoleted by packages in repositories" -msgstr "List packages that may serve as input to mirrorbin or mirrorsource" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:32 -#, fuzzy msgid "Delete cached package files" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:33 -#, fuzzy msgid "Delete cached header files" -msgstr "Delete obsolete package files" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:34 -#, fuzzy msgid "Delete all cache contents" -msgstr "Delete the logfile when done" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:1 -#, fuzzy msgid "" "Internal completion function for appending string to the ZFS commandline" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:2 #: /tmp/fish/implicit/share/completions/zpool.fish:2 -#, fuzzy msgid "Display a help message" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:3 -#, fuzzy msgid "Create a volume or filesystem" -msgstr "Compare archive and filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:4 msgid "Destroy a dataset" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:5 -#, fuzzy msgid "Create a snapshot" -msgstr "Create archive" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:6 msgid "Roll back a filesystem to a previous snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:7 -#, fuzzy msgid "Create a clone of a snapshot" -msgstr "Remove one or more packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:8 msgid "" @@ -64779,24 +59408,20 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:9 -#, fuzzy msgid "Rename a dataset" -msgstr "Rename a disc" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:10 -#, fuzzy msgid "List dataset properties" -msgstr "Disable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:11 -#, fuzzy msgid "Set a dataset property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:12 -#, fuzzy msgid "Get one or several dataset properties" -msgstr "Operate on revision property" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:13 msgid "Set a dataset property to be inherited" @@ -64823,9 +59448,8 @@ msgid "Stop sharing a given filesystem, or all of them" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:21 -#, fuzzy msgid "Create a bookmark for a snapshot" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:22 msgid "Output a stream representation of a dataset" @@ -64847,19 +59471,16 @@ msgid "Revoke delegations of rights on a dataset from (groups of) users" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:26 -#, fuzzy msgid "Put a named hold on a snapshot" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:27 -#, fuzzy msgid "List holds on a snapshot" -msgstr "Print path to command" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:28 -#, fuzzy msgid "Remove a named hold from a snapshot" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:29 msgid "" @@ -64874,70 +59495,58 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:31 #: /tmp/fish/implicit/share/completions/zfs.fish:53 #: /tmp/fish/implicit/share/completions/zfs.fish:58 -#, fuzzy msgid "Create all needed non-existing parent datasets" -msgstr "Remove files after adding to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:32 #: /tmp/fish/implicit/share/completions/zfs.fish:33 -#, fuzzy msgid "Dataset property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:34 -#, fuzzy msgid "Volume size" -msgstr "Compress file" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:35 -#, fuzzy msgid "Create a sparse volume" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:36 -#, fuzzy msgid "Blocksize" -msgstr "Tamanho do bloco" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:37 -#, fuzzy msgid "Recursively destroy children" -msgstr "Recursively copy" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:38 msgid "Recursively destroy all dependents" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:39 -#, fuzzy msgid "Force unmounting" -msgstr "Fake mounting" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:41 -#, fuzzy msgid "Print machine-parsable verbose information" -msgstr "Print verbose info" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:43 -#, fuzzy msgid "Defer snapshot deletion" -msgstr "Delete selection" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:44 -#, fuzzy msgid "Dataset to destroy" -msgstr "Initial set of keystrokes" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:45 -#, fuzzy msgid "Recursively snapshot children" -msgstr "Secure mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:46 #: /tmp/fish/implicit/share/completions/zfs.fish:47 -#, fuzzy msgid "Snapshot property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:48 msgid "Dataset to snapshot" @@ -64952,9 +59561,8 @@ msgid "Recursively destroy later snapshot, bookmarks and clones" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:51 -#, fuzzy msgid "Force unmounting of clones" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:52 msgid "Snapshot to roll back to" @@ -64962,9 +59570,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:54 #: /tmp/fish/implicit/share/completions/zfs.fish:55 -#, fuzzy msgid "Clone property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:56 msgid "Snapshot to clone" @@ -64981,19 +59588,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:60 #: /tmp/fish/implicit/share/completions/zfs.fish:62 #: /tmp/fish/implicit/share/completions/zfs.fish:108 -#, fuzzy msgid "Force unmounting if needed" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:61 -#, fuzzy msgid "Do not remount filesystems during rename" -msgstr "Stay in local filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:63 -#, fuzzy msgid "Dataset to rename" -msgstr "Service name" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:64 #: /tmp/fish/implicit/share/completions/zfs.fish:77 @@ -65002,31 +59606,27 @@ msgstr "Service name" #: /tmp/fish/implicit/share/completions/zpool.fish:59 #: /tmp/fish/implicit/share/completions/zpool.fish:67 #: /tmp/fish/implicit/share/completions/zpool.fish:99 -#, fuzzy msgid "Print output in a machine-parsable format" -msgstr "Profiling output format" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:65 #: /tmp/fish/implicit/share/completions/zfs.fish:75 #: /tmp/fish/implicit/share/completions/zfs.fish:84 #: /tmp/fish/implicit/share/completions/zfs.fish:89 -#, fuzzy msgid "Operate recursively on datasets" -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:67 #: /tmp/fish/implicit/share/completions/zpool.fish:105 -#, fuzzy msgid "Property to list" -msgstr "Minimum port to listen to" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:68 #: /tmp/fish/implicit/share/completions/zfs.fish:80 #: /tmp/fish/implicit/share/completions/zfs.fish:95 #: /tmp/fish/implicit/share/completions/zpool.fish:66 -#, fuzzy msgid "Print parsable (exact) values for numbers" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:69 #: /tmp/fish/implicit/share/completions/zfs.fish:97 @@ -65044,9 +59644,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:73 #: /tmp/fish/implicit/share/completions/zpool.fish:125 -#, fuzzy msgid "Property to set" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:74 msgid "Dataset which property is to be setted" @@ -65054,68 +59653,57 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:78 #: /tmp/fish/implicit/share/completions/zpool.fish:68 -#, fuzzy msgid "Fields to display" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:79 -#, fuzzy msgid "Property source to display" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:82 -#, fuzzy msgid "Property to get" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:83 msgid "Dataset which properties is to be got" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:85 -#, fuzzy msgid "Revert to the received value if available" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:86 msgid "Dataset which properties is to be inherited" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:88 -#, fuzzy msgid "Upgrade all eligible filesystems" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:90 -#, fuzzy msgid "Upgrade to the specified version" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:91 -#, fuzzy msgid "Filesystem to upgrade" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:92 -#, fuzzy msgid "Print UID instead of user name" -msgstr "Link files instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:93 -#, fuzzy msgid "Print GID instead of group name" -msgstr "Link files instead of copying" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:96 -#, fuzzy msgid "Field to display" -msgstr "X server display" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:99 #: /tmp/fish/implicit/share/completions/zfs.fish:100 -#, fuzzy msgid "Identity types to display" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:101 msgid "Translate S(amba)ID to POSIX ID" @@ -65130,63 +59718,52 @@ msgid "Temporary mount point property" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:104 -#, fuzzy msgid "Report progress" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:105 -#, fuzzy msgid "Mount all available ZFS filesystems" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:106 -#, fuzzy msgid "Overlay mount" -msgstr "Lazy unmount" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:107 -#, fuzzy msgid "Filesystem to mount" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:109 -#, fuzzy msgid "Unmount all available ZFS filesystems" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:110 -#, fuzzy msgid "Filesystem to unmount" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:111 -#, fuzzy msgid "Share all eligible ZFS filesystems" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:112 -#, fuzzy msgid "Filesystem to share" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:113 -#, fuzzy msgid "Unshare all shared ZFS filesystems" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:114 -#, fuzzy msgid "Filesystem to unshare" -msgstr "Print filesystem type" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:115 msgid "Snapshot to bookmark" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:116 -#, fuzzy msgid "Generate incremental stream from snapshot" -msgstr "Use new incremental GNU format" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:117 msgid "" @@ -65200,9 +59777,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:119 #: /tmp/fish/implicit/share/completions/zfs.fish:128 -#, fuzzy msgid "Generate a deduplicated stream" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:120 #: /tmp/fish/implicit/share/completions/zfs.fish:129 @@ -65216,62 +59792,51 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:122 #: /tmp/fish/implicit/share/completions/zfs.fish:131 -#, fuzzy msgid "Print verbose information about the stream in a machine-parsable format" -msgstr "Output extra information about the work being done" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:123 -#, fuzzy msgid "Generate compressed stream" -msgstr "Generate package from source" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:125 #: /tmp/fish/implicit/share/completions/zfs.fish:133 -#, fuzzy msgid "Include dataset properties" -msgstr "Exceto arquivo" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:126 #: /tmp/fish/implicit/share/completions/zfs.fish:134 -#, fuzzy msgid "Print verbose information about the stream" -msgstr "Ignore all version information" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:135 -#, fuzzy msgid "Dataset to send" -msgstr "Send mail to user" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:136 -#, fuzzy msgid "" "Print verbose information about the stream and the time spent processing it" -msgstr "Output extra information about the work being done" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:137 -#, fuzzy msgid "Dry run: do not actually receive the stream" -msgstr "Remove all gz files from cache" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:138 -#, fuzzy msgid "Force rollback to the most recent snapshot" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:139 -#, fuzzy msgid "Unmount the target filesystem" -msgstr "Show all filesystems" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:140 -#, fuzzy msgid "Discard the first element of the path of the sent snapshot" -msgstr "Print time of last boot" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:141 -#, fuzzy msgid "Discard all but the last element of the path of the sent snapshot" -msgstr "Print time of last boot" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:142 msgid "Force the stream to be received as a clone of the given snapshot" @@ -65286,29 +59851,25 @@ msgid "Dataset to receive" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:145 -#, fuzzy msgid "Delegate permissions only on the specified dataset" -msgstr "Print all possible definitions of the specified name" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:146 msgid "Delegate permissions only on the descendents dataset" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:147 -#, fuzzy msgid "User to delegate permissions to" -msgstr "Set default file permission mask" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:148 -#, fuzzy msgid "Group to delegate permissions to" -msgstr "Extract all permissions" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:149 #: /tmp/fish/implicit/share/completions/zfs.fish:150 -#, fuzzy msgid "Delegate permission to everyone" -msgstr "Assert freestanding environment" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:151 msgid "Delegate permissions only to the creator of later descendent datasets" @@ -65323,71 +59884,62 @@ msgid "Dataset on which delegation is to be applied" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:154 -#, fuzzy msgid "Remove permissions only on the specified dataset" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:155 msgid "Remove permissions only on the descendents dataset" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:156 -#, fuzzy msgid "User to remove permissions from" -msgstr "Preserve environment" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:157 -#, fuzzy msgid "Group to remove permissions from" -msgstr "Extract all permissions" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:158 #: /tmp/fish/implicit/share/completions/zfs.fish:162 #: /tmp/fish/implicit/share/completions/zfs.fish:163 -#, fuzzy msgid "Remove permission from everyone" -msgstr "Remove all entries from the --group list" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:159 msgid "Remove permissions only on later created descendent datasets" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:160 -#, fuzzy msgid "Remove a permission set or remove permissions from an existing one" -msgstr "Remove files after adding to archive" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:161 -#, fuzzy msgid "Remove permissions recursively" -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:164 msgid "Dataset on which delegation is to be removed" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:165 -#, fuzzy msgid "Apply hold recursively" -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:166 msgid "Snapshot on which hold is to be applied" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:167 -#, fuzzy msgid "List holds recursively" -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:168 msgid "Snapshot which holds are to be listed" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:169 -#, fuzzy msgid "Release hold recursively" -msgstr "Operate recursively" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:170 msgid "Snapshot from which hold is to be removed" @@ -65398,23 +59950,20 @@ msgid "Display file type (à la ls -F)" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:173 -#, fuzzy msgid "Display inode change time" -msgstr "Display line number" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:174 msgid "Source snapshot for the diff" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:175 -#, fuzzy msgid "Execution timeout" -msgstr "Recursion limit" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:176 -#, fuzzy msgid "Execution memory limit" -msgstr "Recursion limit" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:177 msgid "Pool which program will be executed on" @@ -65437,9 +59986,8 @@ msgid "Move into zipfile (delete files)" msgstr "Move into zipfile (delete files)" #: /tmp/fish/implicit/share/completions/zip.fish:6 -#, fuzzy msgid "Do not store directory names" -msgstr "Print directory names" +msgstr "" #: /tmp/fish/implicit/share/completions/zip.fish:7 msgid "Do not compress at all" @@ -65478,14 +60026,12 @@ msgid "Make zipfile as old as the latest entry" msgstr "Make zipfile as old as the latest entry" #: /tmp/fish/implicit/share/completions/zip.fish:18 -#, fuzzy msgid "Exclude the following names" -msgstr "Exclude the following names" +msgstr "" #: /tmp/fish/implicit/share/completions/zip.fish:19 -#, fuzzy msgid "Include only the following names" -msgstr "Include only the following names" +msgstr "" #: /tmp/fish/implicit/share/completions/zip.fish:20 msgid "Fix zipfile" @@ -65524,9 +60070,8 @@ msgid "Encrypt" msgstr "Encrypt" #: /tmp/fish/implicit/share/completions/zip.fish:29 -#, fuzzy msgid "Don't compress files with these suffixes" -msgstr "Don't compress files with these suffixes" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:1 msgid "" @@ -65546,9 +60091,8 @@ msgid "Clear devices errors in pool" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:6 -#, fuzzy msgid "Create a new storage pool" -msgstr "Create new project" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:7 msgid "Destroy a storage pool" @@ -65559,89 +60103,76 @@ msgid "Detach virtual device from a mirroring pool" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:9 -#, fuzzy msgid "Display pool event log" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:10 msgid "Export a pool" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:11 -#, fuzzy msgid "Get one or several pool properties" -msgstr "Operate on revision property" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:12 -#, fuzzy msgid "Display pool command history" -msgstr "Display help and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:13 -#, fuzzy msgid "List importable pools, or import some" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:14 -#, fuzzy msgid "Display pool I/O stats" -msgstr "Display control chars" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:15 -#, fuzzy msgid "Remove ZFS label information from the specified device" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:16 msgid "List pools with health status and space usage" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:17 -#, fuzzy msgid "Take the specified devices offline" -msgstr "Use specified keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:18 -#, fuzzy msgid "Bring the specified devices back online" -msgstr "Use specified keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:19 msgid "Reset pool GUID" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:20 -#, fuzzy msgid "Remove virtual devices from pool" -msgstr "Create a local copy of another repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:21 -#, fuzzy msgid "Reopen pool devices" -msgstr "Imprimir todos os nomes" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:22 -#, fuzzy msgid "Replace a pool virtual device" -msgstr "File is block device" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:23 msgid "Start or stop scrubbing" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:24 -#, fuzzy msgid "Set a pool property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:25 msgid "Create a pool by splitting an existing mirror one" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:26 -#, fuzzy msgid "Display detailed pool health status" -msgstr "Print the URIs" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:27 msgid "List upgradeable pools, or upgrade one" @@ -65651,15 +60182,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:36 #: /tmp/fish/implicit/share/completions/zpool.fish:45 #: /tmp/fish/implicit/share/completions/zpool.fish:117 -#, fuzzy msgid "Force use of virtual device" -msgstr "Mostra inode dos arquivos" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:29 #: /tmp/fish/implicit/share/completions/zpool.fish:130 -#, fuzzy msgid "Dry run: only display resulting configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:30 #: /tmp/fish/implicit/share/completions/zpool.fish:91 @@ -65674,38 +60203,33 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:101 #: /tmp/fish/implicit/share/completions/zpool.fish:128 #: /tmp/fish/implicit/share/completions/zpool.fish:136 -#, fuzzy msgid "Resolve device path symbolic links" -msgstr "Dereferense symbolic links" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:32 #: /tmp/fish/implicit/share/completions/zpool.fish:93 #: /tmp/fish/implicit/share/completions/zpool.fish:102 #: /tmp/fish/implicit/share/completions/zpool.fish:129 #: /tmp/fish/implicit/share/completions/zpool.fish:137 -#, fuzzy msgid "Display device full path" -msgstr "Display man page" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:33 #: /tmp/fish/implicit/share/completions/zpool.fish:37 #: /tmp/fish/implicit/share/completions/zpool.fish:48 #: /tmp/fish/implicit/share/completions/zpool.fish:118 #: /tmp/fish/implicit/share/completions/zpool.fish:132 -#, fuzzy msgid "Pool property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:34 -#, fuzzy msgid "Pool to add virtual devices to" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:35 #: /tmp/fish/implicit/share/completions/zpool.fish:53 -#, fuzzy msgid "Virtual device to add" -msgstr "Dispositivo bloco" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:38 msgid "Pool to attach virtual device to" @@ -65713,14 +60237,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:39 #: /tmp/fish/implicit/share/completions/zpool.fish:43 -#, fuzzy msgid "Virtual device to operate on" -msgstr "Division control" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:40 -#, fuzzy msgid "Initiate recovery mode" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:41 #: /tmp/fish/implicit/share/completions/zpool.fish:85 @@ -65739,19 +60261,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:46 -#, fuzzy msgid "Dry run, only display resulting configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:47 -#, fuzzy msgid "Do not enable any feature on the new pool" -msgstr "Do not fail if signature is older than key" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:49 -#, fuzzy msgid "Root filesystem property" -msgstr "Set property" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:50 #: /tmp/fish/implicit/share/completions/zpool.fish:83 @@ -65759,14 +60278,12 @@ msgid "Equivalent to \"-o cachefile=none,altroot=ROOT\"" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:51 -#, fuzzy msgid "Root filesystem mountpoint" -msgstr "Do not fold long lines" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:52 -#, fuzzy msgid "Set a different in-core pool name" -msgstr "Select frontend interface" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:54 #: /tmp/fish/implicit/share/completions/zpool.fish:64 @@ -65778,74 +60295,64 @@ msgid "Pool to destroy" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:56 -#, fuzzy msgid "Pool to detach device from" -msgstr "File is block device" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:57 msgid "Physical device to detach" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:58 -#, fuzzy msgid "Print verbose event information" -msgstr "Print verbose info" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:60 msgid "Output appended data as the log grows" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:61 -#, fuzzy msgid "Clear all previous events" -msgstr "Ignore externals definitions" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:62 msgid "Pool to read events from" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:63 -#, fuzzy msgid "Export all pools" -msgstr "Report on all tags" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:65 -#, fuzzy msgid "Pool to export" -msgstr "Select display" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:69 msgid "Properties to get" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:70 -#, fuzzy msgid "Pool to get properties of" -msgstr "Disable automatic properties" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:71 msgid "Also display internal events" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:72 -#, fuzzy msgid "Display log records using long format" -msgstr "List contents of directory using long format" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:73 -#, fuzzy msgid "Pool to get command history of" -msgstr "Do not execute commands" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:74 -#, fuzzy msgid "Read configuration from specified cache file" -msgstr "Dump configuration file" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:75 -#, fuzzy msgid "Search for devices or files in specified directory" -msgstr "Verificar arquivos no repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:76 msgid "List or import destroyed pools only (requires -f for importation)" @@ -65853,38 +60360,32 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:77 #: /tmp/fish/implicit/share/completions/zpool.fish:133 -#, fuzzy msgid "Mount properties for contained datasets" -msgstr "Show only matching part" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:78 -#, fuzzy msgid "Properties of the imported pool" -msgstr "Set size of freed memory pool" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:79 -#, fuzzy msgid "Force import" -msgstr "Usa cores" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:80 -#, fuzzy msgid "Recovery mode" -msgstr "Server mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:81 -#, fuzzy msgid "Search for and import all pools found" -msgstr "Prompt for an expiration time" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:82 msgid "Ignore missing log device (risk of loss of last changes)" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:84 -#, fuzzy msgid "Do not mount contained filesystems" -msgstr "Stay in local filesystem" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:86 msgid "Roll back to a previous TXG (hazardous)" @@ -65895,32 +60396,27 @@ msgid "TXG to roll back to (implies -FX)" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:88 -#, fuzzy msgid "Specify, as the last argument, a temporary pool name" -msgstr "Specify the title of rss" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:89 -#, fuzzy msgid "Pool to import" -msgstr "Dir to import" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:90 #: /tmp/fish/implicit/share/completions/zpool.fish:103 #: /tmp/fish/implicit/share/completions/zpool.fish:142 -#, fuzzy msgid "Display a timestamp using specified format" -msgstr "Output profiling information to specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:94 -#, fuzzy msgid "Omit statistics since boot" -msgstr "Print word counts" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:95 #: /tmp/fish/implicit/share/completions/zpool.fish:104 -#, fuzzy msgid "Print verbose statistics" -msgstr "Print verbose info" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:96 msgid "Pool to retrieve I/O stats from" @@ -65931,14 +60427,12 @@ msgid "Treat exported or foreign devices as inactive" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:98 -#, fuzzy msgid "Device to clear ZFS label information from" -msgstr "Print extra info" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:106 -#, fuzzy msgid "Pool to list properties of" -msgstr "Display font properties" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:107 msgid "Temporarily offline" @@ -65953,14 +60447,12 @@ msgid "Physical device to offline" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:110 -#, fuzzy msgid "Expand the device to use all available space" -msgstr "Update list of source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:111 -#, fuzzy msgid "Pool to bring device back online on" -msgstr "Dispositivo bloco" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:112 msgid "Physical device to bring back online" @@ -65971,42 +60463,36 @@ msgid "Pool which GUID is to be changed" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:114 -#, fuzzy msgid "Pool to remove device from" -msgstr "Forçar cópia completa de segurança" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:115 msgid "Physical device to remove" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:116 -#, fuzzy msgid "Pool which devices are to be reopened" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:119 -#, fuzzy msgid "Pool to replace device" -msgstr "File is character device" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:120 msgid "Pool device to be replaced" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:121 -#, fuzzy msgid "Device to use for replacement" -msgstr "Device section" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:122 -#, fuzzy msgid "Stop scrubbing" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:123 -#, fuzzy msgid "Pause scrubbing" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:124 msgid "Pool to start/stop scrubbing" @@ -66021,15 +60507,13 @@ msgid "Set altroot for newpool and automatically import it" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:134 -#, fuzzy msgid "Pool to split" -msgstr "Minimum port to listen to" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:138 #: /tmp/fish/implicit/share/completions/zpool.fish:139 -#, fuzzy msgid "Display deduplication histogram" -msgstr "Display all changelogs" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:141 msgid "Only display status for unhealthy or unavailable pools" @@ -66045,14 +60529,12 @@ msgid "Upgrade all eligible pools, enabling all supported features" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:145 -#, fuzzy msgid "Display upgradeable ZFS versions" -msgstr "Display package record" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:146 -#, fuzzy msgid "Upgrade to the specified legacy version" -msgstr "Help for the specified builtin" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:2 msgid "Repo" @@ -66071,29 +60553,24 @@ msgid "Add a new repository" msgstr "Adicionar um novo repositório" #: /tmp/fish/implicit/share/completions/zypper.fish:8 -#, fuzzy msgid "Remove specified repository" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:9 -#, fuzzy msgid "Rename specified repository" -msgstr "Repair the corrupted repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:10 -#, fuzzy msgid "Modify specified repository" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:11 -#, fuzzy msgid "Refresh all repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:12 -#, fuzzy msgid "Clean local caches" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:13 msgid "List all defined services" @@ -66104,216 +60581,176 @@ msgid "Add a new service" msgstr "Adicionar um novo serviço" #: /tmp/fish/implicit/share/completions/zypper.fish:15 -#, fuzzy msgid "Modify specified service" -msgstr "Use specified keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:16 -#, fuzzy msgid "Remove specified service" -msgstr "Use specified keyserver" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:17 msgid "Refresh all services" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:20 -#, fuzzy msgid "Verify integrity of package dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:21 -#, fuzzy msgid "Install source packages and their build dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:22 -#, fuzzy msgid "Install newly added packages recommended by installed packages" msgstr "" -"Install the packages even if they replace files from other, already " -"installed, packages" #: /tmp/fish/implicit/share/completions/zypper.fish:23 -#, fuzzy msgid "Update installed packages with newer versions" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:24 -#, fuzzy msgid "List available updates" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:25 -#, fuzzy msgid "Install needed patches" -msgstr "Install new package" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:26 -#, fuzzy msgid "List needed patches" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:27 -#, fuzzy msgid "Perform a distribution upgrade" -msgstr "Create a distribution tarball" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:28 -#, fuzzy msgid "Check for patches" -msgstr "Create compressed patches" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:29 -#, fuzzy msgid "Search for packages matching a pattern" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:30 -#, fuzzy msgid "Show full information for specified packages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:31 msgid "Show full information for specified patches" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:32 -#, fuzzy msgid "Show full information for specified patterns" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:33 msgid "Show full information for specified products" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:34 -#, fuzzy msgid "List all available patches" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:35 -#, fuzzy msgid "List all available packages" -msgstr "Reinstall packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:36 -#, fuzzy msgid "List all available patterns" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:37 -#, fuzzy msgid "List all available products" -msgstr "List names of available signals" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:38 -#, fuzzy msgid "List packages providing specified capability" -msgstr "Query all packages that provide the specified capability" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:39 -#, fuzzy msgid "Add a package lock" -msgstr "Rebuild a package" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:40 -#, fuzzy msgid "Remove a package lock" -msgstr "Remove packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:41 -#, fuzzy msgid "List current package locks" -msgstr "List bugs from packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:42 -#, fuzzy msgid "Remove unused locks" -msgstr "Remove source packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:43 msgid "Compare two version strings" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:44 -#, fuzzy msgid "Print the target operating system ID string" -msgstr "Print operating system" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:45 msgid "Print report about licenses and EULAs of installed packages" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:46 -#, fuzzy msgid "Download source rpms for all installed packages to a local directory" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:48 -#, fuzzy msgid "Output the version number" -msgstr "Número da versão" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:49 -#, fuzzy msgid "Use specified config file instead of the default" msgstr "" -"Usa o arquivo especificado em vez do banco de dados de confiança padrão" #: /tmp/fish/implicit/share/completions/zypper.fish:50 -#, fuzzy msgid "Suppress normal output, print only error messages" -msgstr "Suppress error messages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:52 -#, fuzzy msgid "Do not abbreviate text in tables" -msgstr "Do not create output files" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:53 -#, fuzzy msgid "Table style (integer)" -msgstr "Test zipfile integrity" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:54 -#, fuzzy msgid "Turn on rug compatibility" -msgstr "Turn on debug output" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:55 msgid "Do not ask anything, use default answers automatically" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:56 -#, fuzzy msgid "Switch to XML output" -msgstr "Set width of output" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:57 -#, fuzzy msgid "Ignore unknown packages" -msgstr "Ignore missing packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:58 -#, fuzzy msgid "Use an additional repository" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:59 -#, fuzzy msgid "Use alternative repository definition file directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:60 -#, fuzzy msgid "Use alternative directory for all caches" -msgstr "Search directory for makefile" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:61 -#, fuzzy msgid "Operate on a different root directory" -msgstr "Create a diff between two versions of the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:62 msgid "" @@ -66329,29 +60766,24 @@ msgid "Automatically trust and import new repository signing keys" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:65 -#, fuzzy msgid "Do not read meta-data from repositories" -msgstr "Do not del built files" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:66 -#, fuzzy msgid "Do not refresh the repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:67 -#, fuzzy msgid "Ignore CD/DVD repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:68 -#, fuzzy msgid "Ignore remote repositories" -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:69 -#, fuzzy msgid "Do not read installed packages" -msgstr "Do not upgrade packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:70 msgid "Output a list of zypper user prompts" @@ -66378,26 +60810,22 @@ msgid "Export all defined repositories as a single local .repo file" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:76 -#, fuzzy msgid "Show also repository alias" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:77 -#, fuzzy msgid "Show also repository name" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:78 #: /tmp/fish/implicit/share/completions/zypper.fish:121 -#, fuzzy msgid "Show also base URI of repositories" -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:79 #: /tmp/fish/implicit/share/completions/zypper.fish:122 -#, fuzzy msgid "Show also repository priority" -msgstr "Show repository access history" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:80 msgid "Show also the autorefresh flag" @@ -66419,9 +60847,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:84 #: /tmp/fish/implicit/share/completions/zypper.fish:125 -#, fuzzy msgid "Sort the list by repository priority" -msgstr "Disable repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:85 msgid "Sort the list by alias" @@ -66441,23 +60868,20 @@ msgid "Type of repository (yast2, rpm-md, plaindir)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:89 -#, fuzzy msgid "Add the repository as disabled" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:90 -#, fuzzy msgid "Probe URI" -msgstr "Probe a CD" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:91 msgid "Don't probe URI, probe later during refresh" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:92 -#, fuzzy msgid "Specify descriptive name for the repository" -msgstr "Remove an entry from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:93 #: /tmp/fish/implicit/share/completions/zypper.fish:106 @@ -66466,26 +60890,22 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:94 #: /tmp/fish/implicit/share/completions/zypper.fish:107 -#, fuzzy msgid "Disable RPM files caching" -msgstr "Don't trust the file modification times" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:95 #: /tmp/fish/implicit/share/completions/zypper.fish:108 -#, fuzzy msgid "Enable GPG check for this repository" -msgstr "Verificar arquivos no repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:96 #: /tmp/fish/implicit/share/completions/zypper.fish:109 -#, fuzzy msgid "Disable GPG check for this repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:97 -#, fuzzy msgid "Enable autorefresh of the repository" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:98 #: /tmp/fish/implicit/share/completions/zypper.fish:146 @@ -66494,67 +60914,56 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:99 #: /tmp/fish/implicit/share/completions/zypper.fish:147 -#, fuzzy msgid "Ignore query string in the URI" -msgstr "Ignora arquivos terminados com ~" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:100 msgid "Disable the repository (but don't remove it)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:101 -#, fuzzy msgid "Enable a disabled repository" -msgstr "Repair the corrupted repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:102 -#, fuzzy msgid "Enable auto-refresh of the repository" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:103 -#, fuzzy msgid "Disable auto-refresh of the repository" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:104 -#, fuzzy msgid "Set a descriptive name for the repository" -msgstr "Adicionar uma chave criptografada ao repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:105 -#, fuzzy msgid "Set priority of the repository" -msgstr "Remove an entry from the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:110 -#, fuzzy msgid "Apply changes to all repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:111 -#, fuzzy msgid "Apply changes to all local repositories" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:112 -#, fuzzy msgid "Apply changes to all remote repositories" -msgstr "Removes entry in .cvspass for remote repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:113 -#, fuzzy msgid "Apply changes to repositories of specified type" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:114 msgid "Force a complete refresh" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:115 -#, fuzzy msgid "Force rebuild of the database" -msgstr "Force rebuilding index" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:116 msgid "Force download of raw metadata" @@ -66569,9 +60978,8 @@ msgid "Only download raw metadata, don't build the database" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:119 -#, fuzzy msgid "Refresh only specified repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:120 msgid "Refresh also services before refreshing repos" @@ -66582,19 +60990,16 @@ msgid "Show also repositories belonging to the services" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:128 -#, fuzzy msgid "Type of the service (ris)" -msgstr "Number of top servers" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:129 -#, fuzzy msgid "Add the service as disabled" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:130 -#, fuzzy msgid "Specify descriptive name for the service" -msgstr "Specify users for query" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:131 msgid "Disable the service (but don't remove it)" @@ -66617,34 +61022,28 @@ msgid "Set a descriptive name for the service" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:136 -#, fuzzy msgid "Add a RIS service repository to enable" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:137 -#, fuzzy msgid "Add a RIS service repository to disable" -msgstr "Adicionar um novo repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:138 -#, fuzzy msgid "Remove a RIS service repository to enable" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:139 -#, fuzzy msgid "Remove a RIS service repository to disable" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:140 -#, fuzzy msgid "Clear the list of RIS repositories to enable" -msgstr "List of rpm configuration files" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:141 -#, fuzzy msgid "Clear the list of RIS repositories to disable" -msgstr "List of rpm configuration files" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:142 msgid "Apply changes to all services" @@ -66655,19 +61054,16 @@ msgid "Apply changes to all local services" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:144 -#, fuzzy msgid "Apply changes to all remote services" -msgstr "File to grab servers" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:145 -#, fuzzy msgid "Apply changes to services of specified type" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:148 -#, fuzzy msgid "Refresh also repositories" -msgstr "Read-only repository mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:149 #: /tmp/fish/implicit/share/completions/zypper.fish:165 @@ -66675,9 +61071,8 @@ msgstr "Read-only repository mode" #: /tmp/fish/implicit/share/completions/zypper.fish:190 #: /tmp/fish/implicit/share/completions/zypper.fish:213 #: /tmp/fish/implicit/share/completions/zypper.fish:276 -#, fuzzy msgid "Load only the specified repository" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:150 msgid "" @@ -66692,9 +61087,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:152 #: /tmp/fish/implicit/share/completions/zypper.fish:168 -#, fuzzy msgid "Select packages by capability" -msgstr "Query all packages that provide the specified capability" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:153 msgid "" @@ -66726,9 +61120,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:194 #: /tmp/fish/implicit/share/completions/zypper.fish:216 #: /tmp/fish/implicit/share/completions/zypper.fish:278 -#, fuzzy msgid "Only download the packages, do not install" -msgstr "Do not ever ascend to the parent directory" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:158 msgid "" @@ -66758,9 +61151,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:201 #: /tmp/fish/implicit/share/completions/zypper.fish:219 #: /tmp/fish/implicit/share/completions/zypper.fish:283 -#, fuzzy msgid "Install also recommended packages in addition to the required" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:162 #: /tmp/fish/implicit/share/completions/zypper.fish:174 @@ -66769,9 +61161,8 @@ msgid "Force the solver to find a solution (even an aggressive one)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:163 -#, fuzzy msgid "Select packages from the specified repository" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:164 #: /tmp/fish/implicit/share/completions/zypper.fish:179 @@ -66791,14 +61182,12 @@ msgid "Type of package (package, patch, pattern, product). Default: package" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:170 -#, fuzzy msgid "Automatically remove unneeded dependencies" -msgstr "Install/remove packages for dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:171 -#, fuzzy msgid "No automatic removal of unneeded dependencies" -msgstr "Show state of dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:172 msgid "Test the removal, do not actually remove" @@ -66809,24 +61198,20 @@ msgid "Test the repair, do not actually do anything to the system" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:181 -#, fuzzy msgid "Install only build dependencies of specified packages" -msgstr "List packages depending on" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:182 -#, fuzzy msgid "Don't install build dependencies" -msgstr "Don't automatically fulfill dependencies" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:183 -#, fuzzy msgid "Install packages only from specified repositories" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:184 -#, fuzzy msgid "Load only the specified repositories" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:189 msgid "" @@ -66840,9 +61225,8 @@ msgid "Test the update, do not actually update" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:195 -#, fuzzy msgid "Skip interactive updates" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:198 #: /tmp/fish/implicit/share/completions/zypper.fish:205 @@ -66852,59 +61236,50 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:203 -#, fuzzy msgid "List only updates from the specified repository" -msgstr "Repair the corrupted repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:204 -#, fuzzy msgid "" "List all packages for which newer versions are available, regardless whether " "they are installable or not" -msgstr "Updates packages to the best version available" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:206 -#, fuzzy msgid "List needed patches for Bugzilla issues" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:207 -#, fuzzy msgid "List all patches in this category" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:208 -#, fuzzy msgid "List all patches, not only the needed ones" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:209 -#, fuzzy msgid "List only patches from the specified repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:210 msgid "List patches issued up to the specified date " msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:211 -#, fuzzy msgid "List needed patches for CVE issues" -msgstr "Print byte offset of matches" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:212 -#, fuzzy msgid "Look for issues matching the specified string" -msgstr "Exclude files that match pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:215 msgid "Test the upgrade, do not actually upgrade" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:220 -#, fuzzy msgid "Restrict upgrade to specified repository" -msgstr "Restrict wildcards to specified directory" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:222 msgid "Do not allow installed resolvables to be downgraded" @@ -66939,9 +61314,8 @@ msgid "Allow installed resolvables to switch vendors" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:230 -#, fuzzy msgid "Check for patches only in the specified repository" -msgstr "Verificar arquivos no repositório" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:231 msgid "Search also in package summaries and descriptions" @@ -66952,126 +61326,107 @@ msgid "Perform case-sensitive search" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:233 -#, fuzzy msgid "Show only packages that are already installed" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:234 -#, fuzzy msgid "Show only packages that are not currently installed" -msgstr "Upgrade package if already installed" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:235 -#, fuzzy msgid "Search only for packages of the specified type" -msgstr "Query packages with the specified group" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:236 -#, fuzzy msgid "Search only in the specified repository" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:237 msgid "Show each available version in each repository on a separate line" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:238 -#, fuzzy msgid "Sort packages by name (default)" -msgstr "Print package name by prefix" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:239 -#, fuzzy msgid "Sort packages by repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:240 msgid "Search for a match with all search strings (default)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:241 -#, fuzzy msgid "Search for a match with any of the search strings" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:242 msgid "Search for a match to partial words (default)" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:243 -#, fuzzy msgid "Search for a match to whole words only" -msgstr "Search package containing pattern" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:244 -#, fuzzy msgid "Searches for an exact package name" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:245 -#, fuzzy msgid "Work only with the specified repository" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:247 msgid "Show also requires and prerequires" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:248 -#, fuzzy msgid "Show also recommends" -msgstr "Show arp entries" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:249 #: /tmp/fish/implicit/share/completions/zypper.fish:250 #: /tmp/fish/implicit/share/completions/zypper.fish:255 #: /tmp/fish/implicit/share/completions/zypper.fish:258 -#, fuzzy msgid "Just another means to specify repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:251 -#, fuzzy msgid "Show only installed packages" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:252 -#, fuzzy msgid "Show only packages which are not installed" -msgstr "Sync packages installed" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:253 -#, fuzzy msgid "Sort the list by package name" -msgstr "Search full package name" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:254 -#, fuzzy msgid "Sort the list by repository" -msgstr "Update the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:256 -#, fuzzy msgid "Show only installed patterns" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:257 msgid "Show only patterns which are not installed" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:259 -#, fuzzy msgid "Show only installed products" -msgstr "Query all installed packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:260 msgid "Show only products which are not installed" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:261 -#, fuzzy msgid "Restrict the lock to the specified repository" -msgstr "Restrict wildcards to specified directory" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:262 #: /tmp/fish/implicit/share/completions/zypper.fish:264 @@ -67079,76 +61434,64 @@ msgid "Type of package (package, patch, pattern, product). Default: package" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:263 -#, fuzzy msgid "Remove only locks with specified repository" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:265 -#, fuzzy msgid "Clean only duplicate locks" -msgstr "Remove non-duplicate lines" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:266 msgid "Clean only locks which doesn't lock anything" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:267 -#, fuzzy msgid "Takes missing release number as any release" -msgstr "falta número hexadecimal no escape" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:268 msgid "Show the operating system label" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:269 -#, fuzzy msgid "Clean only specified repositories" -msgstr "Specify the repository URL" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:270 -#, fuzzy msgid "Clean metadata cache" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:271 -#, fuzzy msgid "Clean raw metadata cache" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:272 -#, fuzzy msgid "Clean both metadata and package caches" -msgstr "Clean local caches and packages" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:274 -#, fuzzy msgid "Install patch fixing the specified bugzilla issue" -msgstr "Monta partição com etiqueta especificada" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:275 -#, fuzzy msgid "Install all patches in this category" -msgstr "Check files into the repository" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:279 -#, fuzzy msgid "Install patch fixing the specified CVE issue" -msgstr "Query an (uninstalled) package in specified file" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:280 msgid "Install patches issued until the specified date " msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:285 -#, fuzzy msgid "Skip interactive patches" -msgstr "Run in interactive mode" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:286 -#, fuzzy msgid "Do not skip interactive patches" -msgstr "Do not sign the patch" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:287 msgid "" @@ -67157,14 +61500,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:288 -#, fuzzy msgid "Delete extraneous source rpms in the local directory" -msgstr "Create a CVS repository if it doesnt exist" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:289 -#, fuzzy msgid "Do not delete extraneous source rpms" -msgstr "Do not del source files" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:290 msgid "" @@ -67176,32 +61517,25 @@ msgstr "" msgid "Manage abbreviations using new fish 3.0 scheme." msgstr "" -#: /tmp/fish/implicit/share/functions/abbr_old.fish:1 -msgid "Manage abbreviations using old fish 2.x scheme." -msgstr "" - #: /tmp/fish/implicit/share/functions/alias.fish:1 msgid "Creates a function wrapping a command" msgstr "" #: /tmp/fish/implicit/share/functions/cdh.fish:1 -#, fuzzy msgid "Menu based cd command" -msgstr "Fim de comando" +msgstr "" #: /tmp/fish/implicit/share/functions/contains_seq.fish:1 msgid "Return true if array contains a sequence" msgstr "" #: /tmp/fish/implicit/share/functions/dirh.fish:1 -#, fuzzy msgid "Print the current directory history (the prev and next lists)" -msgstr "Print the current directory history (the back- and fwd- lists)" +msgstr "" #: /tmp/fish/implicit/share/functions/dirs.fish:1 -#, fuzzy msgid "Print directory stack" -msgstr "Print directory stack" +msgstr "" #: /tmp/fish/implicit/share/functions/down-or-search.fish:1 msgid "" @@ -67210,23 +61544,16 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/edit_command_buffer.fish:1 -#, fuzzy msgid "Edit the command buffer in an external editor" -msgstr "Edit a property with an external editor on targets" - -#: /tmp/fish/implicit/share/functions/eval.fish:1 -msgid "Evaluate parameters as a command" -msgstr "Evaluate parameters as a command" +msgstr "" #: /tmp/fish/implicit/share/functions/_.fish:1 -#, fuzzy msgid "Alias for the gettext command" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/functions/_.fish:2 -#, fuzzy msgid "Fallback alias for the gettext command" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_append.fish:1 msgid "Internal completion function for appending string to the commandline" @@ -67236,18 +61563,9 @@ msgstr "" msgid "Return 0 if the current token has an open single-quote" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_abook_formats.fish:1 -msgid "Complete abook formats" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_ant_targets.fish:1 -msgid "Print list of targets from build.xml and imported files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_atool_archive_contents.fish:1 -#, fuzzy msgid "List archive contents" -msgstr "List archive" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:1 msgid "Maximum uploads at once" @@ -67270,19 +61588,16 @@ msgid "Maximum length prefix encoding" msgstr "Maximum length prefix encoding" #: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:6 -#, fuzzy msgid "IP to report to the tracker" -msgstr "IP to report to the tracker" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:7 -#, fuzzy msgid "Minimum port to listen to" -msgstr "Minimum port to listen to" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:8 -#, fuzzy msgid "Maximum port to listen to" -msgstr "Maximum port to listen to" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:9 msgid "File for server response" @@ -67369,33 +61684,28 @@ msgid "Whether to inform the user that hash failures occur" msgstr "Whether to inform the user that hash failures occur" #: /tmp/fish/implicit/share/functions/__fish_complete_cd.fish:1 -#, fuzzy msgid "Completions for the cd command" -msgstr "Help for the specified command" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_command.fish:1 msgid "Complete using all available commands" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_convert_options.fish:1 -#, fuzzy msgid "Complete Convert options" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_directories.fish:1 -#, fuzzy msgid "Complete directory prefixes" -msgstr "Set directory prefix" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:1 -#, fuzzy msgid "Complete ftp, pftp" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:2 -#, fuzzy msgid "Hostname" -msgstr "nome" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:3 msgid "Use only IPv4 to contact any host" @@ -67426,9 +61736,8 @@ msgid "Disable command editing and history support" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:10 -#, fuzzy msgid "Disable file name globbing" -msgstr "Don't trust the file modification times" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:11 msgid "Do not explicitly bind data and control channels to same interface" @@ -67439,32 +61748,28 @@ msgid "Verbose. Show all server responses and data transfer stats" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ftp.fish:13 -#, fuzzy msgid "Enable debugging" -msgstr "Enable debug" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_groups.fish:1 msgid "Print a list of local groups, with group members as the description" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_job_pids.fish:1 -#, fuzzy msgid "Print a list of job PIDs and their commands" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:1 -#, fuzzy msgid "Complete lpr common options" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:2 msgid "Forces encryption when connecting to the server" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:3 -#, fuzzy msgid "Specifies an alternate username" -msgstr "Specify the http username" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:4 msgid "Specifies an alternate printer or class name" @@ -67475,27 +61780,24 @@ msgid "Apply command to all printers" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:7 -#, fuzzy msgid "Sets a job option" -msgstr "Set a config option" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:8 msgid "Send an email on job completion" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:9 -#, fuzzy msgid "Landscape mode" -msgstr "Unsafe mode" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:10 msgid "Media size" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:11 -#, fuzzy msgid "Page ranges" -msgstr "Pager" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:12 msgid "Choose orientation (4-landscape)" @@ -67518,33 +61820,28 @@ msgid "Scale image files to use up to number percent of the page" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:17 -#, fuzzy msgid "Set the number of characters per inch to use" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:18 -#, fuzzy msgid "Set the number of lines per inch to use" -msgstr "Set number of retries to number" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:19 msgid "Set the page margins when printing text files" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr_option.fish:1 -#, fuzzy msgid "Complete lpr option" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_path.fish:1 -#, fuzzy msgid "Complete using path" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:1 -#, fuzzy msgid "Complete pgrep/pkill" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:2 msgid "Match pattern against full command line" @@ -67561,14 +61858,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:5 -#, fuzzy msgid "Select only the newest process" -msgstr "Select frontend interface" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:6 -#, fuzzy msgid "Select only the oldest process" -msgstr "Select the last NUMBER patches" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:7 msgid "Only match processes whose parent process ID is listed" @@ -67595,9 +61890,8 @@ msgid "Only match processes whose real user ID is listed" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:12 -#, fuzzy msgid "Negates the matching" -msgstr "Invert the sense of matching" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_pgrep.fish:13 msgid "" @@ -67614,19 +61908,12 @@ msgid "Complete isp name for pon/poff" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_proc.fish:1 -#, fuzzy msgid "Complete by list of running processes" -msgstr "Print a list of running screen sessions" - -#: /tmp/fish/implicit/share/functions/__fish_complete_setxkbmap.fish:1 -#, fuzzy -msgid "Complete setxkb options" -msgstr "Tolerate sloppy mount options" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:1 -#, fuzzy msgid "common completions for ssh commands" -msgstr "Use function keys for commands" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:2 msgid "Protocol version 1 only" @@ -67661,57 +61948,32 @@ msgid "Options" msgstr "Opções" #: /tmp/fish/implicit/share/functions/__fish_complete_subcommand.fish:1 -#, fuzzy msgid "Complete subcommand" -msgstr "Compare FILE1 to all operands" - -#: /tmp/fish/implicit/share/functions/__fish_complete_subcommand_root.fish:1 -msgid "" -"Run the __fish_complete_subcommand function using a PATH containing /sbin " -"and /usr/sbin" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_suffix.fish:1 -#, fuzzy msgid "Complete using files" -msgstr "Tolerate sloppy mount options" - -#: /tmp/fish/implicit/share/functions/__fish_complete_svn_diff.fish:1 -#, fuzzy -msgid "Complete \"svn diff\" arguments" -msgstr "Count the number of arguments" - -#: /tmp/fish/implicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_complete_unrar.fish:1 -msgid "Peek inside of archives and list all files" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_user_at_hosts.fish:1 -#, fuzzy msgid "Print list host-names with user@" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_users.fish:1 msgid "Print a list of local users, with the real user name as a description" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_wvdial_peers.fish:1 -msgid "Complete wvdial peers" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 -#, fuzzy msgid "Completes with ZFS mountpoint properties" -msgstr "Print a list of running screen sessions" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_pools.fish:1 msgid "Completes with available ZFS pools" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_ro_properties.fish:1 -#, fuzzy msgid "Completes with ZFS read-only properties" -msgstr "Set directory prefix" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_rw_properties.fish:1 msgid "Completes with ZFS read-write properties" @@ -67732,39 +61994,32 @@ msgid "Initializations that should be performed when entering interactive mode" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:2 -#, fuzzy msgid "Event handler, repaints the prompt when fish_color_cwd changes" -msgstr "Event handler, repaints the prompt when fish_color_cwd changes" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:3 -#, fuzzy msgid "Event handler, repaints the prompt when fish_color_cwd_root changes" -msgstr "Event handler, repaints the prompt when fish_color_cwd changes" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:4 -#, fuzzy msgid "Start service" -msgstr "Start service" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:5 -#, fuzzy msgid "Stop service" -msgstr "Stop service" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:6 -#, fuzzy msgid "Print service status" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:7 -#, fuzzy msgid "Stop and then start service" -msgstr "Stop and then start service" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:8 -#, fuzzy msgid "Reload service configuration" -msgstr "Reload service configuration" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:9 msgid "Reload key bindings when binding variable change" @@ -67775,15 +62030,12 @@ msgid "Repaint screen when window changes size" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_contains_opt.fish:1 -#, fuzzy msgid "Checks if a specific option has been given in the current commandline" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_crux_packages.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_prt_packages.fish:1 -#, fuzzy msgid "Obtain a list of installed packages" -msgstr "Rebuild and install an installed package" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_cursor_1337.fish:1 msgid "Set cursor using OSC command 1337" @@ -67798,78 +62050,45 @@ msgid "Set cursor (xterm)" msgstr "" #: /tmp/fish/implicit/share/functions/fish_default_key_bindings.fish:1 -#, fuzzy msgid "Default (Emacs-like) key bindings for fish" -msgstr "Specify key bindings file" +msgstr "" #: /tmp/fish/implicit/share/functions/fish_default_mode_prompt.fish:1 -#, fuzzy msgid "Display the default mode for the prompt" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_describe_command.fish:1 -#, fuzzy msgid "Command used to find descriptions for commands" -msgstr "Use function keys for commands" +msgstr "" -#: /tmp/fish/implicit/share/functions/fish_fallback_prompt.fish:1 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:1 +msgid "Helper function for fish_git_prompt" +msgstr "" + +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:3 msgid "" -"A simple fallback prompt without too much color or special characters for " -"linux VTs" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_filter_ant_targets.fish:1 -msgid "Display targets within an ant build.xml file" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:1 -msgid "Helper function for __fish_git_prompt" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:2 -#, fuzzy -msgid "Prompt function for Git" -msgstr "Current functions are: " - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:3 -msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has staged " +"fish_git_prompt helper, tells whether or not the current branch has staged " "files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:4 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:4 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has " +"fish_git_prompt helper, tells whether or not the current branch has " "tracked, modified files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:5 -msgid "__fish_git_prompt helper, returns the current Git operation and branch" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:5 +msgid "fish_git_prompt helper, returns the current Git operation and branch" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:6 -msgid "__fish_git_prompt helper, checks char variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:6 +msgid "fish_git_prompt helper, checks char variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:7 -msgid "__fish_git_prompt helper, checks color variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:7 +msgid "fish_git_prompt helper, checks color variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:8 -#, fuzzy -msgid "Event handler, repaints prompt when functionality changes" -msgstr "Event handler, repaints the prompt when fish_color_cwd changes" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:9 -#, fuzzy -msgid "Event handler, repaints prompt when any color changes" -msgstr "Event handler, repaints the prompt when fish_color_cwd changes" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:10 -#, fuzzy -msgid "Event handler, repaints prompt when any char changes" -msgstr "Event handler, repaints the prompt when fish_color_cwd changes" - #: /tmp/fish/implicit/share/functions/__fish_gnu_complete.fish:1 msgid "" "Wrapper for the complete built-in. Skips the long completions on non-GNU " @@ -67877,9 +62096,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_hg_prompt.fish:1 -#, fuzzy msgid "Write out the hg prompt" -msgstr "Write out the prompt" +msgstr "" #: /tmp/fish/implicit/share/functions/fish_hybrid_key_bindings.fish:1 msgid "Vi-style bindings that inherit emacs-style bindings in all modes" @@ -67890,9 +62108,8 @@ msgid "Test if no non-switch argument has been specified yet" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_is_git_repository.fish:1 -#, fuzzy msgid "Check if the current directory is a git repository" -msgstr "Check the entire repository" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_is_token_n.fish:1 msgid "Test if current token is on Nth place" @@ -67915,28 +62132,24 @@ msgid "Make list of kill signals for completion" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_make_completion_signals.fish:2 -#, fuzzy msgid "List names of available signals" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_make_completion_signals.fish:3 -#, fuzzy msgid "List codes and names of available signals" -msgstr "Display names of all signals" +msgstr "" #: /tmp/fish/implicit/share/functions/fish_mode_prompt.fish:1 -#, fuzzy msgid "Displays the current mode" -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_move_last.fish:1 msgid "Move the last element of a directory history from src to dest" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_no_arguments.fish:1 -#, fuzzy msgid "Internal fish function" -msgstr "Erase function" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_not_contain_opt.fish:1 msgid "Checks that a specific option is not in the current command line" @@ -67946,194 +62159,89 @@ msgstr "" msgid "Paginate the current command using the users default pager" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_ports_dirs.fish:1 -#, fuzzy -msgid "Obtain a list of ports local collections" -msgstr "Print a list of all accepted color names" - -#: /tmp/fish/implicit/share/functions/__fish_print_abook_emails.fish:1 -#, fuzzy -msgid "Print email addresses (abook)" -msgstr "Print dead processes" - #: /tmp/fish/implicit/share/functions/__fish_print_addresses.fish:1 -#, fuzzy msgid "Print a list of known network addresses" -msgstr "Print a list of running screen sessions" - -#: /tmp/fish/implicit/share/functions/__fish_print_arch_daemons.fish:1 -#, fuzzy -msgid "Print arch daemons" -msgstr "Print all names" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_commands.fish:1 -#, fuzzy msgid "Print a list of documented fish commands" -msgstr "Print a list of all accepted color names" - -#: /tmp/fish/implicit/share/functions/__fish_print_debian_services.fish:1 -#, fuzzy -msgid "Prints services installed" -msgstr "Print service status" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_encodings.fish:1 msgid "Complete using available character encodings" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_filesystems.fish:1 -#, fuzzy msgid "Print a list of all known filesystem types" -msgstr "Print a list of all accepted color names" - -#: /tmp/fish/implicit/share/functions/__fish_print_function_prototypes.fish:1 -#, fuzzy -msgid "" -"Prints the names of all function prototypes found in the headers in the " -"current directory" msgstr "" -"Print a list of all function calls leading up to running the current command" #: /tmp/fish/implicit/share/functions/__fish_print_groups.fish:1 -#, fuzzy msgid "Print a list of local groups" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_help.fish:1 -#, fuzzy msgid "Print help message for the specified fish function or builtin" -msgstr "Print all completions for the specified commandline" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_hostnames.fish:1 -#, fuzzy msgid "Print a list of known hostnames" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_interfaces.fish:1 -#, fuzzy msgid "Print a list of known network interfaces" -msgstr "Print a list of all accepted color names" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_lpr_options.fish:1 -#, fuzzy msgid "Print lpr options" -msgstr "Print all versions" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_lpr_printers.fish:1 -#, fuzzy msgid "Print lpr printers" -msgstr "Print full records" - -#: /tmp/fish/implicit/share/functions/__fish_print_lsblk_columns.fish:1 -#, fuzzy -msgid "Print available lsblk columns" -msgstr "Print available list" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_mounted.fish:1 -#, fuzzy msgid "Print mounted devices" -msgstr "Print important dependencies" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_pacman_repos.fish:1 msgid "Print the repositories configured for arch's pacman package manager" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_service_names.fish:1 -#, fuzzy msgid "All services known to the system" -msgstr "Search for other system" - -#: /tmp/fish/implicit/share/functions/__fish_print_svn_rev.fish:1 -#, fuzzy -msgid "Print svn revisions" -msgstr "Print only given revisions" - -#: /tmp/fish/implicit/share/functions/__fish_print_users.fish:1 -#, fuzzy -msgid "Print a list of local users" -msgstr "Print a list of all accepted color names" - -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_applications_directories.fish:1 -#, fuzzy -msgid "Print directories where desktop files are stored" -msgstr "Lista diretórios, não seu conteúdo" - -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_desktop_file_ids.fish:1 -#, fuzzy -msgid "Print all available xdg desktop file IDs" -msgstr "List names of available signals" - -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 -#, fuzzy -msgid "Print XDG mime types" -msgstr "Print command type" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_modes.fish:1 -#, fuzzy -msgid "Print xrandr modes" -msgstr "Print raw entry names" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_outputs.fish:1 -#, fuzzy -msgid "Print xrandr outputs" -msgstr "Print word counts" - -#: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 -#, fuzzy -msgid "Print X windows" -msgstr "Print APM info" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_bookmarks.fish:1 -msgid "Lists ZFS bookmarks, if the feature is enabled" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_filesystems.fish:1 -#, fuzzy -msgid "Lists ZFS filesystems" -msgstr "Show all filesystems" +#: /tmp/fish/implicit/share/functions/__fish_print_svn_rev.fish:1 +msgid "Print svn revisions" +msgstr "" + +#: /tmp/fish/implicit/share/functions/__fish_print_users.fish:1 +msgid "Print a list of local users" +msgstr "" + +#: /tmp/fish/implicit/share/functions/__fish_print_xdg_applications_directories.fish:1 +msgid "Print directories where desktop files are stored" +msgstr "" + +#: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 +msgid "Print XDG mime types" +msgstr "" + +#: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 +msgid "Print X windows" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_zfs_snapshots.fish:1 -#, fuzzy msgid "Lists ZFS snapshots" -msgstr "Lista as chaves" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_volumes.fish:1 -#, fuzzy -msgid "Lists ZFS volumes" -msgstr "Lista por colunas" +msgstr "" #: /tmp/fish/implicit/share/functions/fish_prompt.fish:1 -#, fuzzy msgid "Write out the prompt" -msgstr "Write out the prompt" - -#: /tmp/fish/implicit/share/functions/__fish_prt_no_subcommand.fish:1 -#, fuzzy -msgid "Test if prt-get has yet to be given the command" -msgstr "Test if apt has yet to be given the subcommand" - -#: /tmp/fish/implicit/share/functions/__fish_prt_ports.fish:1 -#, fuzzy -msgid "Obtain a list of ports" -msgstr "Print a list of all accepted color names" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_package.fish:1 -#, fuzzy -msgid "Test if prt-get should have packages as potential completion" -msgstr "Test if apt command should have packages as potential completion" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_port.fish:1 -#, fuzzy -msgid "Test if prt-get should have ports as potential completion" -msgstr "Test if apt command should have packages as potential completion" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:1 #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:2 -#, fuzzy msgid "Show current path" -msgstr "Show source package" - -#: /tmp/fish/implicit/share/functions/__fish_sgrep.fish:1 -msgid "Call grep without honoring GREP_OPTIONS settings" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_shared_key_bindings.fish:1 @@ -68149,17 +62257,11 @@ msgid "helper function that does pretty formatting on svn status" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_svn_prompt.fish:2 -#, fuzzy msgid "Prompt function for svn" -msgstr "Current functions are: " +msgstr "" #: /tmp/fish/implicit/share/functions/_fish_systemctl.fish:1 -#, fuzzy msgid "Call systemctl with some options from the current commandline" -msgstr "Test if apt has yet to be given the subcommand" - -#: /tmp/fish/implicit/share/functions/__fish_test_arg.fish:1 -msgid "Test if the token under the cursor matches the specified wildcard" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_toggle_comment_commandline.fish:1 @@ -68167,14 +62269,12 @@ msgid "Comment/uncomment the current command" msgstr "" #: /tmp/fish/implicit/share/functions/fish_update_completions.fish:1 -#, fuzzy msgid "Update man-page based completions" -msgstr "Edit command specific completions" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_use_subcommand.fish:1 -#, fuzzy msgid "Test if a non-switch argument has been given in the current commandline" -msgstr "Test if apt has yet to be given the subcommand" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_vcs_prompt.fish:1 msgid "Print the prompts for all available vcsen" @@ -68185,9 +62285,8 @@ msgid "Set cursor shape for different vi modes" msgstr "" #: /tmp/fish/implicit/share/functions/fish_vi_key_bindings.fish:1 -#, fuzzy msgid "vi-like key bindings for fish" -msgstr "Specify key bindings file" +msgstr "" #: /tmp/fish/implicit/share/functions/funced.fish:1 msgid "Edit function definition" @@ -68198,9 +62297,8 @@ msgid "Save the current definition of all specified functions to file" msgstr "" #: /tmp/fish/implicit/share/functions/help.fish:1 -#, fuzzy msgid "Show help for the fish shell" -msgstr "Show help for the fish shell" +msgstr "" #: /tmp/fish/implicit/share/functions/history.fish:1 msgid "display or manipulate interactive command history" @@ -68211,97 +62309,78 @@ msgid "Show or set the system's host name" msgstr "" #: /tmp/fish/implicit/share/functions/isatty.fish:1 -#, fuzzy msgid "Tests if a file descriptor is a tty" -msgstr "Descritores de arquivos não especificados" +msgstr "" #: /tmp/fish/implicit/share/functions/la.fish:1 -#, fuzzy msgid "" "List contents of directory, including hidden files in directory using long " "format" msgstr "" -"List contents of directory, including hidden files in directory using long " -"format" #: /tmp/fish/implicit/share/functions/ll.fish:1 -#, fuzzy msgid "List contents of directory using long format" -msgstr "List contents of directory using long format" +msgstr "" #: /tmp/fish/implicit/share/functions/ls.fish:1 #: /tmp/fish/implicit/share/functions/ls.fish:2 #: /tmp/fish/implicit/share/functions/ls.fish:3 -#, fuzzy msgid "List contents of directory" -msgstr "List contents of directory" +msgstr "" #: /tmp/fish/implicit/share/functions/man.fish:1 -#, fuzzy msgid "Format and display the on-line manual pages" -msgstr "Display change information for the package" +msgstr "" #: /tmp/fish/implicit/share/functions/nextd.fish:1 -#, fuzzy msgid "Move forward in the directory history" -msgstr "Move forward in the directory history" +msgstr "" #: /tmp/fish/implicit/share/functions/N_.fish:1 msgid "No-op" msgstr "" #: /tmp/fish/implicit/share/functions/open.fish:1 -#, fuzzy msgid "Open file in default application" -msgstr "Open file in default application" +msgstr "" #: /tmp/fish/implicit/share/functions/popd.fish:1 -#, fuzzy msgid "Pop directory from the stack and cd to it" -msgstr "Pop dir from stack" +msgstr "" #: /tmp/fish/implicit/share/functions/prevd.fish:1 -#, fuzzy msgid "Move back in the directory history" -msgstr "Move back in the directory history" +msgstr "" #: /tmp/fish/implicit/share/functions/prompt_pwd.fish:1 -#, fuzzy msgid "Print the current working directory, shortened to fit the prompt" -msgstr "Print the current working directory, shortend to fit the prompt" +msgstr "" #: /tmp/fish/implicit/share/functions/psub.fish:1 -#, fuzzy msgid "" "Read from stdin into a file and output the filename. Remove the file when " "the command that called psub exits." msgstr "" -"Read from stdin into a file and output the filename. Remove the file when " -"the command that called psub exits." #: /tmp/fish/implicit/share/functions/pushd.fish:1 -#, fuzzy msgid "Push directory to stack" -msgstr "Push directory to stack" +msgstr "" #: /tmp/fish/implicit/share/functions/realpath.fish:1 -#, fuzzy msgid "print the resolved path [command realpath]" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/functions/realpath.fish:2 -#, fuzzy msgid "print the resolved path [command grealpath]" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/functions/realpath.fish:3 msgid "return an absolute path without symlinks" msgstr "" #: /tmp/fish/implicit/share/functions/seq.fish:1 -#, fuzzy msgid "Print sequences of numbers" -msgstr "Print name, not number" +msgstr "" #: /tmp/fish/implicit/share/functions/seq.fish:2 msgid "Fallback implementation of the seq command" @@ -68312,28 +62391,24 @@ msgid "Set an env var for csh compatibility." msgstr "" #: /tmp/fish/implicit/share/functions/suspend.fish:1 -#, fuzzy msgid "Suspend the current shell." -msgstr "Display version and exit" +msgstr "" #: /tmp/fish/implicit/share/functions/__terlar_git_prompt.fish:1 -#, fuzzy msgid "Write out the git prompt" -msgstr "Write out the prompt" +msgstr "" #: /tmp/fish/implicit/share/functions/trap.fish:1 msgid "Perform an action when the shell receives a signal" msgstr "" #: /tmp/fish/implicit/share/functions/type.fish:1 -#, fuzzy msgid "Print the type of a command" -msgstr "Print the type of a command" +msgstr "" #: /tmp/fish/implicit/share/functions/umask.fish:1 -#, fuzzy msgid "Set default file permission mask" -msgstr "Set default file permission mask" +msgstr "" #: /tmp/fish/implicit/share/functions/up-or-search.fish:1 msgid "" @@ -68342,11 +62417,9 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/vared.fish:1 -#, fuzzy msgid "Edit variable value" -msgstr "Erase variable" +msgstr "" -#, fuzzy #~ msgid "%ls: --array option requires a single variable name.\n" #~ msgstr "" #~ "%ls: Erase needs a variable name\n" @@ -68364,19 +62437,15 @@ msgstr "Erase variable" #~ "%ls: Vários nomes de variáveis especificados em uma única chamada (%ls e " #~ "%.*ls)\n" -#, fuzzy #~ msgid "%ls: Values cannot be specfied with erase\n" #~ msgstr "%ls: Values cannot be specfied with erase\n" -#, fuzzy #~ msgid "string: Expected subcommand\n" #~ msgstr "string: Execute command\n" -#, fuzzy #~ msgid "string: Unknown subcommand '%ls'\n" #~ msgstr "string: Comando desconhecido “%ls”\n" -#, fuzzy #~ msgid "terminal_give_to_job(): Could not send job %d ('%ls') to foreground" #~ msgstr "Não foi possível enviar tarefa %d (“%ls”) para primeiro plano" @@ -68386,70 +62455,53 @@ msgstr "Erase variable" #~ msgid "Couldn't grab control of terminal" #~ msgstr "Não foi possível pegar controle do terminal" -#, fuzzy #~ msgid "funced: You must specify one function name" #~ msgstr "funced: Você deve especificar um nome de função" -#, fuzzy #~ msgid "%s: Expected function name\\n" #~ msgstr "%s: Expected function name\\n" -#, fuzzy #~ msgid "%ls: Invalid combination of options,\\n%ls\\n" #~ msgstr "%ls: Combinação inválida de opções,\\n%ls\\n" -#, fuzzy #~ msgid "The number of positions to skip must be a non-negative integer\\n" #~ msgstr "The number of positions to skip must be a non-negative integer\\n" -#, fuzzy #~ msgid "Evaluate contents of file (deprecated, see \"source\")" #~ msgstr "Executa conteúdo do arquivo" -#, fuzzy #~ msgid "Help on how job control works" #~ msgstr "Help on how job control works" -#, fuzzy #~ msgid "Summary on how fish differs from other shells" #~ msgstr "Summary on how fish differs from other shells" -#, fuzzy #~ msgid "Help on how to set the prompt" #~ msgstr "Help on how to set the prompt" -#, fuzzy #~ msgid "Help on how to set the titlebar message" #~ msgstr "Help on how to set the titlebar message" -#, fuzzy #~ msgid "Help on how to copy and paste" #~ msgstr "Help on how to copy and paste" -#, fuzzy #~ msgid "Help on editor shortcuts" #~ msgstr "Help on editor shortcuts" -#, fuzzy #~ msgid "ignore chnages in the amount of white space" #~ msgstr "Ignore changes in the amount of white space" -#, fuzzy #~ msgid "Change to DIR" #~ msgstr "Alterar para usuário" -#, fuzzy #~ msgid "Show a unit" #~ msgstr "Show arp entries" -#, fuzzy #~ msgid "Edit a unit" #~ msgstr "Emite um evento" -#, fuzzy #~ msgid "Manage abbreviations" #~ msgstr "Manual sections" -#, fuzzy #~ msgid "Perform math calculations in bc" #~ msgstr "Perform a simulation" diff --git a/po/sv.po b/po/sv.po index ff9d90655..f74d3ca67 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,18 +1,16 @@ -# 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 , YEAR. +# Copyright © 2006 +# This file is distributed under the same license as the fish package. +# Axel Liljencrantz , 2006 # -#, fuzzy msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: fish 1.22.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-08 16:50+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"POT-Creation-Date: 2015-04-13 22:15+0800\n" +"PO-Revision-Date: 2006-03-13 18:06+0100\n" +"Last-Translator: Axel Liljencrantz \n" +"Language-Team: Swedish \n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -90,22 +88,24 @@ msgstr "" msgid "%ls: Invalid --max-args value '%ls'\n" msgstr "" -#: src/builtin_bg.cpp:23 +#: builtin.cpp:3639 #, c-format msgid "" "%ls: Can't put job %d, '%ls' to background because it is not under job " "control\n" msgstr "" +"Kan inte skicka jobb %d, '%ls' till bakgrunden eftersom det inte använder " +"jobbkontrol\n" -#: src/builtin_bg.cpp:29 +#: builtin.cpp:3649 #, c-format msgid "Send job %d '%ls' to background\n" -msgstr "" +msgstr "Skicka jobb %d '%ls' till bakgrunden\n" -#: src/builtin_bg.cpp:63 src/builtin_disown.cpp:69 src/builtin_fg.cpp:49 +#: builtin.cpp:3503 builtin.cpp:3682 #, c-format msgid "%ls: There are no suitable jobs\n" -msgstr "" +msgstr "%ls: Det finns inga lämpliga jobb\n" #: src/builtin_bg.cpp:80 src/builtin_disown.cpp:82 src/builtin_wait.cpp:147 #, c-format @@ -117,80 +117,81 @@ msgstr "" msgid "%ls: Could not find job '%d'\n" msgstr "" -#: src/builtin_bind.cpp:141 +#: builtin.cpp:531 #, c-format msgid "%ls: No key with name '%ls' found\n" -msgstr "" +msgstr "%ls: Ingen tangent med namn '%ls' kunde hittas\n" -#: src/builtin_bind.cpp:143 +#: builtin.cpp:537 #, c-format msgid "%ls: Key with name '%ls' does not have any mapping\n" -msgstr "" +msgstr "%ls: Tangent med namn '%ls' har ingen mappning\n" -#: src/builtin_bind.cpp:146 +#: builtin.cpp:543 #, c-format msgid "%ls: Unknown error trying to bind to key named '%ls'\n" msgstr "" +"%ls: Okänt fel inträffade vid försök att binda till tangent med namn '%ls'\n" -#: src/builtin_bind.cpp:239 +#: src/builtin_bind.cpp:239 builtin.cpp:794 #, c-format msgid "%ls: No binding found for key '%ls'\n" msgstr "" -#: src/builtin_bind.cpp:242 +#: builtin.cpp:798 #, c-format msgid "%ls: No binding found for sequence '%ls'\n" -msgstr "" +msgstr "%ls: Ingen bindning funnen för sekvens '%ls'\n" -#: src/builtin_bind.cpp:406 +#: builtin.cpp:834 #, c-format msgid "%ls: Invalid state\n" -msgstr "" +msgstr "%ls: Ogiltigt tillstånd\n" -#: src/builtin_block.cpp:89 +#: builtin.cpp:939 #, c-format msgid "%ls: Can not specify scope when removing block\n" -msgstr "" +msgstr "%ls: Kan inte ange definitionsområde vid blockradering\n" -#: src/builtin_block.cpp:94 +#: builtin.cpp:945 #, c-format msgid "%ls: No blocks defined\n" -msgstr "" +msgstr "%ls: Inga block definerade\n" -#: src/builtin_cd.cpp:44 +#: builtin.cpp:3192 #, c-format msgid "%ls: Could not find home directory\n" -msgstr "" +msgstr "%ls: Kunde inte hitta hemkatalogen\n" -#: src/builtin_cd.cpp:52 src/builtin_cd.cpp:79 +#: builtin.cpp:3212 builtin.cpp:3266 #, c-format msgid "%ls: '%ls' is not a directory\n" -msgstr "" +msgstr "%ls: '%ls' är inte en katalog\n" -#: src/builtin_cd.cpp:55 +#: builtin.cpp:3219 #, c-format msgid "%ls: The directory '%ls' does not exist\n" -msgstr "" +msgstr "%ls: Katalogen '%ls' existerar inte\n" -#: src/builtin_cd.cpp:58 +#: builtin.cpp:3226 #, c-format msgid "%ls: '%ls' is a rotten symlink\n" -msgstr "" +msgstr "%ls: '%ls' är en rutten symbolisk länk\n" -#: src/builtin_cd.cpp:61 +#: builtin.cpp:3234 #, c-format msgid "%ls: Unknown error trying to locate directory '%ls'\n" -msgstr "" +msgstr "%ls: Okänd fel inträffade under lokalisering av katalogen '%ls'\n" -#: src/builtin_cd.cpp:76 +#: builtin.cpp:3257 #, c-format msgid "%ls: Permission denied: '%ls'\n" -msgstr "" +msgstr "%ls: Åtkomst nekad till katalogen '%ls'\n" -#: src/builtin_cd.cpp:90 +#: builtin.cpp:3281 #, c-format msgid "%ls: Could not set PWD variable\n" -msgstr "" +msgstr "%ls: Kunde inte sätta variableln PWD\n" #: src/builtin_commandline.cpp:344 #, c-format @@ -217,269 +218,273 @@ msgstr "" msgid "%ls: -o requires a non-empty string\n" msgstr "" -#: src/builtin_contains.cpp:75 +#: builtin.cpp:3368 #, c-format msgid "%ls: Key not specified\n" -msgstr "" +msgstr "%ls: Ingen nyckel angiven\n" -#: src/builtin.cpp:262 +#: builtin.cpp:352 #, c-format msgid "" "%ls: Type 'help %ls' for related documentation\n" "\n" msgstr "" +"%ls: Skriv 'help %ls' för relaterad dokumnetation\n" +"\n" -#: src/builtin.cpp:338 +#: builtin.cpp:3760 #, c-format msgid "%ls: Not inside of loop\n" -msgstr "" +msgstr "%ls: Inte i en loop\n" #: src/builtin.cpp:372 #, c-format msgid "%ls: Command not valid at an interactive prompt\n" msgstr "" -#: src/builtin.cpp:410 src/builtin.cpp:460 +#: src/builtin.cpp:410 src/builtin.cpp:460 builtin.cpp:4069 builtin.cpp:4113 msgid "Test a condition" msgstr "" -#: src/builtin.cpp:411 +#: builtin.cpp:4071 msgid "Execute command if previous command suceeded" -msgstr "" +msgstr "Kör ett kommand om föregående kommando lyckades" #: src/builtin.cpp:412 msgid "Parse options in fish script" msgstr "" -#: src/builtin.cpp:413 +#: builtin.cpp:4072 msgid "Create a block of code" -msgstr "" +msgstr "Skapa ett kodblock" -#: src/builtin.cpp:414 +#: builtin.cpp:4073 msgid "Send job to background" -msgstr "" +msgstr "Skicka jobb till bakgrunden" -#: src/builtin.cpp:415 +#: builtin.cpp:4074 msgid "Handle fish key bindings" -msgstr "" +msgstr "Hantera tangentbordsgenvägar för fish" -#: src/builtin.cpp:416 +#: builtin.cpp:4075 msgid "Temporarily block delivery of events" -msgstr "" +msgstr "Blockera tillfälligt leverans av händelser" -#: src/builtin.cpp:417 +#: builtin.cpp:4076 msgid "Stop the innermost loop" -msgstr "" +msgstr "Avbryt den innersta loopen" -#: src/builtin.cpp:419 +#: builtin.cpp:4077 msgid "" "Temporarily halt execution of a script and launch an interactive debug prompt" -msgstr "" +msgstr "Avbryt tillfälligt exekvering och starta en interaktiv debugprompt" -#: src/builtin.cpp:420 +#: builtin.cpp:4078 msgid "Run a builtin command instead of a function" -msgstr "" +msgstr "Kör ett inbyggt kommando istället för en funktion" -#: src/builtin.cpp:421 src/builtin.cpp:459 +#: builtin.cpp:4079 builtin.cpp:4112 msgid "Conditionally execute a block of commands" -msgstr "" +msgstr "Kör ett kommando om ett villkor är uppfyllt" -#: src/builtin.cpp:422 +#: builtin.cpp:4080 msgid "Change working directory" -msgstr "" +msgstr "Ändra arbetskatalog" -#: src/builtin.cpp:423 +#: builtin.cpp:4081 msgid "Run a program instead of a function or builtin" -msgstr "" +msgstr "Kör ett program istället för en funktion eller ett inbuggt kommando" -#: src/builtin.cpp:424 +#: builtin.cpp:4082 msgid "Set or get the commandline" -msgstr "" +msgstr "Ändra eller visa kommandoraden" -#: src/builtin.cpp:425 +#: builtin.cpp:4083 msgid "Edit command specific completions" -msgstr "" +msgstr "Redigera kommando-specifika kompletteringar" -#: src/builtin.cpp:426 +#: builtin.cpp:4084 msgid "Search for a specified string in a list" -msgstr "" +msgstr "Sök efter en angiven sträng i en lista" -#: src/builtin.cpp:428 +#: builtin.cpp:4085 msgid "Skip the rest of the current lap of the innermost loop" -msgstr "" +msgstr "Avbryt nuvarande varv i den innersta loopen" -#: src/builtin.cpp:429 +#: builtin.cpp:4086 msgid "Count the number of arguments" -msgstr "" +msgstr "Räkna antalet argument" #: src/builtin.cpp:430 msgid "Remove job from job list" msgstr "" -#: src/builtin.cpp:431 +#: src/builtin.cpp:431 builtin.cpp:4087 msgid "Print arguments" msgstr "" -#: src/builtin.cpp:432 +#: builtin.cpp:4088 msgid "Evaluate block if condition is false" -msgstr "" +msgstr "Kör ett block om ett villkor inte är uppfyllt" -#: src/builtin.cpp:433 +#: builtin.cpp:4089 msgid "Emit an event" -msgstr "" +msgstr "Sänd en händelse" -#: src/builtin.cpp:434 +#: builtin.cpp:4090 msgid "End a block of commands" -msgstr "" +msgstr "Avsluta ett block av kommandon" -#: src/builtin.cpp:435 +#: builtin.cpp:4091 msgid "Run command in current process" -msgstr "" +msgstr "Kör ett kommando i den nuvarande processen" -#: src/builtin.cpp:436 +#: builtin.cpp:4092 msgid "Exit the shell" -msgstr "" +msgstr "Avsluta fish" -#: src/builtin.cpp:437 +#: builtin.cpp:4093 msgid "Return an unsuccessful result" -msgstr "" +msgstr "Returnera ett misslyckat resultat" -#: src/builtin.cpp:438 +#: builtin.cpp:4094 msgid "Send job to foreground" -msgstr "" +msgstr "Skick jobb till förgrunden" -#: src/builtin.cpp:439 +#: builtin.cpp:4095 msgid "Perform a set of commands multiple times" -msgstr "" +msgstr "Kör ett block flera gånger" -#: src/builtin.cpp:440 +#: builtin.cpp:4096 msgid "Define a new function" -msgstr "" +msgstr "Definera en ny funktion" -#: src/builtin.cpp:441 +#: builtin.cpp:4097 msgid "List or remove functions" -msgstr "" +msgstr "Visa eller ta bort funktioner" -#: src/builtin.cpp:442 +#: builtin.cpp:4098 msgid "History of commands executed by user" -msgstr "" +msgstr "Historik över användarens körda kommandon" -#: src/builtin.cpp:443 +#: builtin.cpp:4099 msgid "Evaluate block if condition is true" -msgstr "" +msgstr "Kör ett block om ett villkor är uppfyllt" -#: src/builtin.cpp:444 +#: builtin.cpp:4100 msgid "Print currently running jobs" -msgstr "" +msgstr "Visa nuvarande jobb" #: src/builtin.cpp:445 msgid "Evaluate math expressions" msgstr "" -#: src/builtin.cpp:446 +#: builtin.cpp:4101 msgid "Negate exit status of job" -msgstr "" +msgstr "Negera resultatet av ett kommando" -#: src/builtin.cpp:447 +#: builtin.cpp:4102 msgid "Execute command if previous command failed" -msgstr "" +msgstr "Kör ett kommando om föregående kommando misslyckades" -#: src/builtin.cpp:448 +#: src/builtin.cpp:448 builtin.cpp:4103 msgid "Prints formatted text" msgstr "" -#: src/builtin.cpp:449 +#: src/builtin.cpp:449 builtin.cpp:4104 msgid "Print the working directory" msgstr "" -#: src/builtin.cpp:450 +#: builtin.cpp:4105 msgid "Generate random number" -msgstr "" +msgstr "Generera ett slumptal" -#: src/builtin.cpp:451 +#: builtin.cpp:4106 msgid "Read a line of input into variables" -msgstr "" +msgstr "Läs in en rad till variabler" #: src/builtin.cpp:452 msgid "Convert path to absolute path without symlinks" msgstr "" -#: src/builtin.cpp:453 +#: builtin.cpp:4107 msgid "Stop the currently evaluated function" -msgstr "" +msgstr "Avbryt den nuvarande funktionen" -#: src/builtin.cpp:454 +#: builtin.cpp:4108 msgid "Handle environment variables" -msgstr "" +msgstr "Redigera miljövariabler" -#: src/builtin.cpp:455 +#: src/builtin.cpp:455 builtin.cpp:4109 msgid "Set the terminal color" msgstr "" -#: src/builtin.cpp:456 +#: builtin.cpp:4110 msgid "Evaluate contents of file" -msgstr "" +msgstr "Kör filinnehåll som kommandon" -#: src/builtin.cpp:457 +#: builtin.cpp:4111 msgid "Return status information about fish" -msgstr "" +msgstr "Visa statusinformation om fish" #: src/builtin.cpp:458 msgid "Manipulate strings" msgstr "" -#: src/builtin.cpp:461 +#: builtin.cpp:4114 msgid "Return a successful result" -msgstr "" +msgstr "Returenra ett lyckat resultat" -#: src/builtin.cpp:462 +#: builtin.cpp:4115 msgid "Set or get the shells resource usage limits" -msgstr "" +msgstr "Redigera eller visa skalets resursanvändningsgränser" #: src/builtin.cpp:463 msgid "Wait for background processes completed" msgstr "" -#: src/builtin.cpp:464 +#: builtin.cpp:4116 msgid "Perform a command multiple times" -msgstr "" +msgstr "Kör ett kommando upprepade gånger" -#: src/builtin_disown.cpp:21 +#: builtin.cpp:3630 #, c-format msgid "%ls: Unknown job '%ls'\n" -msgstr "" +msgstr "%ls: Okänt jobb '%ls'\n" #: src/builtin_disown.cpp:30 #, c-format msgid "%ls: job %d ('%ls') was stopped and has been signalled to continue.\n" msgstr "" -#: src/builtin_exit.cpp:85 src/builtin_read.cpp:138 src/builtin_return.cpp:85 +#: builtin.cpp:2601 builtin.cpp:3150 builtin.cpp:3817 #, c-format msgid "%ls: Argument '%ls' must be an integer\n" -msgstr "" +msgstr "%ls: Argumentet '%ls' måste vara ett heltal\n" -#: src/builtin_fg.cpp:65 +#: builtin.cpp:3531 #, c-format msgid "%ls: Ambiguous job\n" -msgstr "" +msgstr "%ls: Mer än ett jobb matchar\n" -#: src/builtin_fg.cpp:67 src/builtin_jobs.cpp:181 +#: builtin.cpp:3537 builtin.cpp:3705 builtin_jobs.cpp:301 #, c-format msgid "%ls: '%ls' is not a job\n" -msgstr "" +msgstr "%ls: '%ls' är inte ett jobb\n" -#: src/builtin_fg.cpp:81 src/builtin_jobs.cpp:191 +#: builtin.cpp:3568 builtin_jobs.cpp:316 #, c-format msgid "%ls: No suitable job: %d\n" -msgstr "" +msgstr "%ls: Inget passande jobb: %d\n" -#: src/builtin_fg.cpp:84 +#: builtin.cpp:3577 #, c-format msgid "" "%ls: Can't put job %d, '%ls' to foreground because it is not under job " "control\n" msgstr "" +"Kan inte skicka jobb %d, '%ls' till förgrunden eftersom det inte använder " +"jobbkontroll\n" #: src/builtin_function.cpp:68 #, c-format @@ -518,39 +523,39 @@ msgstr "" msgid "%ls: Unexpected positional argument '%ls'" msgstr "" -#: src/builtin_functions.cpp:275 src/builtin.h:38 +#: builtin.cpp:1556 builtin.h:32 #, c-format msgid "%ls: Invalid combination of options\n" -msgstr "" +msgstr "%ls: Ogiltig kombination av flaggor\n" -#: src/builtin_functions.cpp:289 +#: builtin.cpp:1578 #, c-format msgid "%ls: Expected exactly one function name\n" -msgstr "" +msgstr "%ls: Förväntade exakt ett funktionsnamn\n" -#: src/builtin_functions.cpp:296 src/builtin_functions.cpp:352 +#: builtin.cpp:1588 builtin.cpp:1650 #, c-format msgid "%ls: Function '%ls' does not exist\n" -msgstr "" +msgstr "%ls: Funktionen '%ls' existerar inte\n" #: src/builtin_functions.cpp:307 #, c-format msgid "%ls: Expected exactly one function name for --details\n" msgstr "" -#: src/builtin_functions.cpp:342 +#: src/builtin_functions.cpp:342 builtin.cpp:1638 #, c-format msgid "" "%ls: Expected exactly two names (current function name, and new function " "name)\n" msgstr "" -#: src/builtin_functions.cpp:359 +#: builtin.cpp:1661 builtin.cpp:2230 #, c-format msgid "%ls: Illegal function name '%ls'\n" -msgstr "" +msgstr "%ls: Ogiltigt funktionsnamn '%ls'\n" -#: src/builtin_functions.cpp:368 +#: src/builtin_functions.cpp:368 builtin.cpp:1672 #, c-format msgid "%ls: Function '%ls' already exists. Cannot create copy '%ls'\n" msgstr "" @@ -578,42 +583,42 @@ msgstr "" msgid "builtin history delete only supports --case-sensitive\n" msgstr "" -#: src/builtin_jobs.cpp:55 +#: builtin_jobs.cpp:87 msgid "Job\tGroup\t" -msgstr "" +msgstr "Jobb\tGrupp\t" -#: src/builtin_jobs.cpp:57 +#: builtin_jobs.cpp:89 msgid "CPU\t" -msgstr "" +msgstr "CPU\t" -#: src/builtin_jobs.cpp:59 +#: builtin_jobs.cpp:91 msgid "State\tCommand\n" -msgstr "" +msgstr "Status\tKommando\n" -#: src/builtin_jobs.cpp:67 +#: builtin_jobs.cpp:99 proc.cpp:843 msgid "stopped" -msgstr "" +msgstr "stannat" -#: src/builtin_jobs.cpp:67 +#: builtin_jobs.cpp:99 msgid "running" -msgstr "" +msgstr "körande" -#: src/builtin_jobs.cpp:76 +#: builtin_jobs.cpp:113 msgid "Group\n" -msgstr "" +msgstr "Grupp\n" -#: src/builtin_jobs.cpp:84 +#: src/builtin_jobs.cpp:84 builtin_jobs.cpp:126 msgid "Process\n" msgstr "" -#: src/builtin_jobs.cpp:95 +#: builtin_jobs.cpp:143 msgid "Command\n" -msgstr "" +msgstr "Kommando\n" -#: src/builtin_jobs.cpp:211 +#: builtin_jobs.cpp:344 #, c-format msgid "%ls: There are no jobs\n" -msgstr "" +msgstr "%ls: Det finns inga jobb\n" #: src/builtin_math.cpp:44 #, c-format @@ -639,40 +644,40 @@ msgstr "" msgid "Number out of range" msgstr "" -#: src/builtin_printf.cpp:249 +#: src/builtin_printf.cpp:249 builtin_printf.cpp:256 #, c-format msgid "%ls: expected a numeric value" msgstr "" -#: src/builtin_printf.cpp:251 +#: builtin_printf.cpp:258 #, c-format msgid "%ls: value not completely converted" -msgstr "" +msgstr "%ls: värdet konverterades inte helt" -#: src/builtin_printf.cpp:363 +#: builtin_printf.cpp:359 msgid "missing hexadecimal number in escape" -msgstr "" +msgstr "saknad hexadecimalt nummer i escapesekvens" -#: src/builtin_printf.cpp:383 +#: builtin_printf.cpp:388 msgid "Missing hexadecimal number in Unicode escape" -msgstr "" +msgstr "Saknad hexadecimalt nummer i Unicodeescapesekvens" -#: src/builtin_printf.cpp:400 +#: builtin_printf.cpp:402 #, c-format msgid "Unicode character out of range: \\%c%0*x" -msgstr "" +msgstr "Unicodetecken utanför giltigt spann: \\%c%0+x" -#: src/builtin_printf.cpp:647 +#: builtin_printf.cpp:670 #, c-format msgid "invalid field width: %ls" -msgstr "" +msgstr "oglitig fältvidd: %ls" -#: src/builtin_printf.cpp:674 +#: src/builtin_printf.cpp:674 builtin_printf.cpp:708 #, c-format msgid "invalid precision: %ls" msgstr "" -#: src/builtin_printf.cpp:699 +#: src/builtin_printf.cpp:699 builtin_printf.cpp:739 #, c-format msgid "%.*ls: invalid conversion specification" msgstr "" @@ -683,7 +688,7 @@ msgid "" "%ls: flags '--mode-name' / '-m' are now ignored. Set fish_history instead.\n" msgstr "" -#: src/builtin_read.cpp:132 +#: src/builtin_read.cpp:132 builtin.cpp:2593 #, c-format msgid "%ls: Argument '%ls' is out of range\n" msgstr "" @@ -698,17 +703,18 @@ msgstr "" msgid "%ls: Invalid path: %ls\n" msgstr "" -#: src/builtin_return.cpp:100 +#: builtin.cpp:3845 #, c-format msgid "%ls: Not inside of function\n" -msgstr "" +msgstr "%ls: Inte i en funktion\n" #: src/builtin_set_color.cpp:159 src/builtin_set_color.cpp:178 +#: builtin_set_color.cpp:144 builtin_set_color.cpp:166 #, c-format msgid "%ls: Unknown color '%ls'\n" msgstr "" -#: src/builtin_set_color.cpp:167 +#: src/builtin_set_color.cpp:167 builtin_set_color.cpp:153 #, c-format msgid "%ls: Expected an argument\n" msgstr "" @@ -728,7 +734,7 @@ msgstr "" msgid "%ls: You provided %d indexes but %d values\n" msgstr "" -#: src/builtin_set.cpp:66 +#: src/builtin_set.cpp:66 builtin_set.cpp:647 #, c-format msgid "%ls: Erase needs a variable name\n" msgstr "" @@ -745,25 +751,25 @@ msgid "" "name.\n" msgstr "" -#: src/builtin_set.cpp:303 +#: builtin_set.cpp:155 #, c-format msgid "%ls: Tried to change the read-only variable '%ls'\n" -msgstr "" +msgstr "%ls: Försökte ändra den skrivskyddade variablen '%ls'\n" -#: src/builtin_set.cpp:310 +#: src/builtin_set.cpp:310 builtin_set.cpp:162 #, c-format msgid "%ls: Tried to set the special variable '%ls' with the wrong scope\n" msgstr "" -#: src/builtin_set.cpp:317 +#: src/builtin_set.cpp:317 builtin_set.cpp:169 #, c-format msgid "%ls: Tried to set the special variable '%ls' to an invalid value\n" msgstr "" -#: src/builtin_set.cpp:355 +#: builtin_set.cpp:248 #, c-format msgid "%ls: Invalid index starting at '%ls'\n" -msgstr "" +msgstr "%ls: Ogiltigt index vid '%ls'\n" #: src/builtin_set.cpp:537 #, c-format @@ -798,63 +804,63 @@ msgstr "" msgid "%ls: `set --show` does not allow slices with the var names\n" msgstr "" -#: src/builtin_source.cpp:49 src/builtin_source.cpp:57 +#: builtin.cpp:3412 builtin.cpp:3420 #, c-format msgid "%ls: Error encountered while sourcing file '%ls':\n" -msgstr "" +msgstr "%ls: Ett fel uppstod medan filen '%ls' lästes in\n" -#: src/builtin_source.cpp:65 +#: builtin.cpp:3428 #, c-format msgid "%ls: '%ls' is not a file\n" -msgstr "" +msgstr "%ls: '%ls' är inte en fil\n" -#: src/builtin_source.cpp:84 +#: builtin.cpp:3447 #, c-format msgid "%ls: Error while reading file '%ls'\n" -msgstr "" +msgstr "%ls: Ett fel uppstod medan filen '%ls' lästes\n" #: src/builtin_status.cpp:155 #, c-format msgid "%ls: Invalid level value '%ls'\n" msgstr "" -#: src/builtin_status.cpp:276 +#: builtin.cpp:3108 msgid "This is a login shell\n" -msgstr "" +msgstr "Detta är ett login-skal\n" -#: src/builtin_status.cpp:278 +#: builtin.cpp:3110 msgid "This is not a login shell\n" -msgstr "" +msgstr "Detta är inte ett login-skal\n" -#: src/builtin_status.cpp:282 +#: builtin.cpp:3112 #, c-format msgid "Job control: %ls\n" -msgstr "" +msgstr "Jobkontroll: %ls\n" -#: src/builtin_status.cpp:284 +#: builtin.cpp:3113 msgid "Only on interactive jobs" -msgstr "" +msgstr "Bara för interaktiva jobb" -#: src/builtin_status.cpp:285 +#: builtin.cpp:3114 msgid "Never" -msgstr "" +msgstr "Aldrig" -#: src/builtin_status.cpp:285 +#: builtin.cpp:3114 msgid "Always" -msgstr "" +msgstr "Alltid" -#: src/builtin_status.cpp:312 src/fish.cpp:433 src/parser.cpp:552 +#: builtin.cpp:3065 fish.cpp:620 parser.cpp:764 msgid "Standard input" -msgstr "" +msgstr "Standard in" #: src/builtin_status.cpp:320 msgid "Not a function" msgstr "" -#: src/builtin_string.cpp:39 +#: builtin.h:27 #, c-format msgid "%ls: Expected argument\n" -msgstr "" +msgstr "%ls: Förväntade argument\n" #: src/builtin_string.cpp:160 #, c-format @@ -937,32 +943,27 @@ msgstr "" msgid "Defaulting terminal size to 80x24." msgstr "" -#: src/common.cpp:1781 +#: common.cpp:1917 msgid "This is a bug. Break on bugreport to debug." -msgstr "" +msgstr "Detta är en bug. För att avlusa, sätt brytpunkten på bugreport." -#: src/common.cpp:1782 -#, c-format -msgid "If you can reproduce it, please send a bug report to %s." -msgstr "" - -#: src/common.cpp:1792 +#: common.cpp:1936 msgid "empty" -msgstr "" +msgstr "tom" -#: src/complete.cpp:53 +#: src/complete.cpp:53 complete.cpp:61 #, c-format msgid "Home for %ls" msgstr "" -#: src/complete.cpp:56 +#: complete.cpp:66 #, c-format msgid "Variable: %ls" -msgstr "" +msgstr "Variabel: %ls" -#: src/env.cpp:242 +#: env.cpp:1180 msgid "Tried to pop empty environment stack." -msgstr "" +msgstr "Försökte ta bort element från tom variabelstack" #: src/env.cpp:537 #, c-format @@ -1051,107 +1052,107 @@ msgstr "" msgid "Unable to open a pipe for universal variables using '%ls': %s" msgstr "" -#: src/event.cpp:119 +#: event.cpp:178 #, c-format msgid "signal handler for %ls (%ls)" -msgstr "" +msgstr "signalhanterare för %ls (%ls)" -#: src/event.cpp:124 +#: event.cpp:182 #, c-format msgid "handler for variable '%ls'" -msgstr "" +msgstr "hanterare för variabel '%ls'" -#: src/event.cpp:129 +#: event.cpp:188 #, c-format msgid "exit handler for process %d" -msgstr "" +msgstr "avslutshanterare för process %d" -#: src/event.cpp:134 src/event.cpp:145 +#: event.cpp:194 event.cpp:205 #, c-format msgid "exit handler for job %d, '%ls'" -msgstr "" +msgstr "avslutshanterare för jobb %d, '%ls'" -#: src/event.cpp:137 +#: event.cpp:196 #, c-format msgid "exit handler for job with process group %d" -msgstr "" +msgstr "avslutshanterare för jobb med processgrupp %d" -#: src/event.cpp:148 +#: event.cpp:207 #, c-format msgid "exit handler for job with job id %d" -msgstr "" +msgstr "avslutshanterare för jobb med jobid %d" -#: src/event.cpp:153 +#: event.cpp:213 #, c-format msgid "handler for generic event '%ls'" -msgstr "" +msgstr "hanterare för generisk händelse '%ls'" -#: src/event.cpp:157 +#: src/event.cpp:157 event.cpp:217 #, c-format msgid "Unknown event type '0x%x'" msgstr "" -#: src/event.cpp:403 +#: event.cpp:613 msgid "Signal list overflow. Signals have been ignored." -msgstr "" +msgstr "Signallistan är full. Signaler har ignorerats." -#: src/exec.cpp:45 +#: exec.cpp:57 #, c-format msgid "An error occurred while redirecting file descriptor %d" -msgstr "" +msgstr "Ett fel inträffade vid IO dirigering av filidentifierare %d" -#: src/exec.cpp:48 +#: src/exec.cpp:48 exec.cpp:62 msgid "An error occurred while writing output" msgstr "" -#: src/exec.cpp:51 +#: src/exec.cpp:51 exec.cpp:67 #, c-format msgid "An error occurred while redirecting file '%s'" msgstr "" -#: src/exec.cpp:714 +#: exec.cpp:795 #, c-format msgid "Unknown function '%ls'" -msgstr "" +msgstr "Okänd funktion '%ls'" -#: src/exec.cpp:801 +#: exec.cpp:943 #, c-format msgid "Unknown input redirection type %d" -msgstr "" +msgstr "Okänd dirigering av standard in av typ %d" -#: src/expand.cpp:55 +#: expand.cpp:59 msgid "Child process" -msgstr "" +msgstr "Barnprocess" -#: src/expand.cpp:58 +#: expand.cpp:64 msgid "Process" -msgstr "" +msgstr "Process" -#: src/expand.cpp:61 +#: expand.cpp:69 msgid "Job" -msgstr "" +msgstr "Jobb" -#: src/expand.cpp:64 +#: expand.cpp:74 #, c-format msgid "Job: %ls" -msgstr "" +msgstr "Jobb: %ls" -#: src/expand.cpp:67 +#: expand.cpp:79 msgid "Shell process" -msgstr "" +msgstr "Skalprocess" -#: src/expand.cpp:70 +#: expand.cpp:84 msgid "Last background job" -msgstr "" +msgstr "Senaste bakgrundsjobb" #: src/expand.cpp:398 #, c-format msgid "Unexpected failure to convert pid '%ls' to integer\n" msgstr "" -#: src/expand.cpp:984 +#: expand.cpp:1419 msgid "Mismatched brackets" -msgstr "" +msgstr "Klammerparanteser matchar inte varandra" #: src/expand.cpp:1063 msgid "Too much data emitted by command substitution so it was discarded\n" @@ -1162,29 +1163,29 @@ msgstr "" msgid "Invalid value '%s' for debug-level flag" msgstr "" -#: src/fish.cpp:302 +#: fish.cpp:461 mimedb.cpp:1343 #, c-format msgid "%s, version %s\n" -msgstr "" +msgstr "%s, version %s\n" #: src/fish.cpp:316 src/fish_indent.cpp:434 #, c-format msgid "Invalid value '%s' for debug-stack-frames flag" msgstr "" -#: src/fish.cpp:366 +#: fish.cpp:516 msgid "Can not use the no-execute mode when running an interactive session" -msgstr "" +msgstr "no-execute läget kan inte användas i en interaktiv session" -#: src/fish.cpp:431 +#: fish.cpp:619 #, c-format msgid "Error while reading file %ls\n" -msgstr "" +msgstr "Ett fel uppstod medan filen '%ls' lästes\n" -#: src/fish_indent.cpp:389 +#: fish_indent.cpp:332 #, c-format msgid "%ls, version %s\n" -msgstr "" +msgstr "%ls, version %s\n" #: src/fish_indent.cpp:453 #, c-format @@ -1234,32 +1235,32 @@ msgstr "" msgid "An error occured while reading output from code block on fd %d" msgstr "" -#: src/output.cpp:559 +#: src/output.cpp:559 output.cpp:608 #, c-format msgid "" "Tried to use terminfo string %s on line %ld of %s, which is undefined in " "terminal of type \"%ls\". Please report this error to %s" msgstr "" -#: src/pager.cpp:40 +#: src/pager.cpp:40 pager.cpp:24 msgid "search: " msgstr "" -#: src/pager.cpp:493 +#: pager.cpp:566 #, c-format msgid "%lsand %lu more rows" -msgstr "" +msgstr "%lsoch %lu rader till" -#: src/pager.cpp:500 +#: src/pager.cpp:500 pager.cpp:571 #, c-format msgid "rows %lu to %lu of %lu" msgstr "" -#: src/pager.cpp:503 +#: src/pager.cpp:503 pager.cpp:576 msgid "(no matches)" msgstr "" -#: src/parse_execution.cpp:556 +#: src/parse_execution.cpp:556 parse_execution.cpp:555 #, c-format msgid "switch: Expected exactly one argument, got %lu\n" msgstr "" @@ -1271,165 +1272,165 @@ msgid "" "use 'eval %ls'." msgstr "" -#: src/parse_execution.cpp:796 +#: src/parse_execution.cpp:796 parse_execution.cpp:848 #, c-format msgid "The file '%ls' is not executable by this user" msgstr "" -#: src/parse_execution.cpp:1007 +#: src/parse_execution.cpp:1007 parse_execution.cpp:1057 #, c-format msgid "Invalid redirection target: %ls" msgstr "" -#: src/parse_execution.cpp:1021 +#: src/parse_execution.cpp:1021 parse_execution.cpp:1081 #, c-format msgid "Requested redirection to '%ls', which is not a valid file descriptor" msgstr "" -#: src/parser.cpp:30 +#: parser.cpp:57 #, c-format msgid "Tried to evaluate commands using invalid block type '%ls'" -msgstr "" +msgstr "Försökte utföra kommandon i ogiltig blocktyp '%ls'" -#: src/parser.cpp:33 +#: parser.cpp:67 parse_constants.h:255 msgid "'while' block" -msgstr "" +msgstr "'while' block" -#: src/parser.cpp:36 +#: parser.cpp:72 parse_constants.h:260 msgid "'for' block" -msgstr "" +msgstr "'for' block" -#: src/parser.cpp:39 +#: parser.cpp:77 parse_constants.h:265 msgid "block created by breakpoint" -msgstr "" +msgstr "block skapat av det inbuggde kommandot breakpoint" -#: src/parser.cpp:42 +#: parser.cpp:82 parse_constants.h:272 msgid "'if' conditional block" -msgstr "" +msgstr "'if' villkorligt block" -#: src/parser.cpp:45 +#: parser.cpp:92 parse_constants.h:284 msgid "function invocation block" -msgstr "" +msgstr "funktionsanropp-block" -#: src/parser.cpp:48 +#: parser.cpp:97 parse_constants.h:289 msgid "function invocation block with no variable shadowing" -msgstr "" +msgstr "funktionsanroppsblock utan variabelskuggning" -#: src/parser.cpp:51 +#: parser.cpp:102 parse_constants.h:295 msgid "'switch' block" -msgstr "" +msgstr "'switch' block" -#: src/parser.cpp:54 +#: parser.cpp:112 parse_constants.h:307 msgid "global root block" -msgstr "" +msgstr "globalt rot-block" -#: src/parser.cpp:57 +#: parser.cpp:117 parse_constants.h:313 msgid "command substitution block" -msgstr "" +msgstr "kommandosubstitution-block" -#: src/parser.cpp:60 +#: parser.cpp:122 parse_constants.h:319 msgid "'begin' unconditional block" -msgstr "" +msgstr "'begin' ovillkorligen exekverat block" -#: src/parser.cpp:63 +#: parser.cpp:127 parse_constants.h:325 msgid "block created by the . builtin" -msgstr "" +msgstr "block skapat av det inbyggda kommandot '.'" -#: src/parser.cpp:66 +#: parser.cpp:132 parse_constants.h:330 msgid "event handler block" -msgstr "" +msgstr "händelsehanterarblock" -#: src/parser.cpp:69 +#: parser.cpp:137 parse_constants.h:336 msgid "unknown/invalid block" -msgstr "" +msgstr "okänt/ogiltigt block" -#: src/parser.cpp:306 +#: parser.cpp:474 #, c-format msgid "Could not write profiling information to file '%s'" -msgstr "" +msgstr "Kunde inte skriva profileringsinformation till filen '%s'" -#: src/parser.cpp:308 +#: parser.cpp:480 msgid "Time\tSum\tCommand\n" -msgstr "" +msgstr "Tid\tSumma\tKommando\n" -#: src/parser.cpp:366 +#: parser.cpp:562 #, c-format msgid "in event handler: %ls\n" -msgstr "" +msgstr "i händelsehanterare: %ls\n" -#: src/parser.cpp:385 +#: src/parser.cpp:385 parser.cpp:590 #, c-format msgid "from sourcing file %ls\n" msgstr "" -#: src/parser.cpp:392 +#: src/parser.cpp:392 parser.cpp:597 #, c-format msgid "in function '%ls'\n" msgstr "" -#: src/parser.cpp:396 +#: parser.cpp:602 msgid "in command substitution\n" -msgstr "" +msgstr "i kommandosubstitution\n" -#: src/parser.cpp:407 +#: src/parser.cpp:407 parser.cpp:615 #, c-format msgid "\tcalled on line %d of file %ls\n" msgstr "" -#: src/parser.cpp:410 +#: src/parser.cpp:410 parser.cpp:621 msgid "\tcalled during startup\n" msgstr "" -#: src/parser.cpp:412 +#: src/parser.cpp:412 parser.cpp:625 msgid "\tcalled on standard input\n" msgstr "" -#: src/parser.cpp:425 +#: parser.cpp:642 #, c-format msgid "\twith parameter list '%ls'\n" -msgstr "" +msgstr "\tmed parameterlista '%ls'\n" -#: src/parser.cpp:547 +#: parser.cpp:756 #, c-format msgid "%ls (line %d): " -msgstr "" +msgstr "%ls (rad %d): " -#: src/parser.cpp:550 +#: src/parser.cpp:550 parser.cpp:760 msgid "Startup" msgstr "" -#: src/parser.cpp:588 +#: parser.cpp:803 msgid "Job inconsistency" -msgstr "" +msgstr "Jobb i ogiltigt tillstånd" -#: src/parser.cpp:797 +#: src/parser.cpp:797 parser.cpp:1047 #, c-format msgid "%ls (line %lu): " msgstr "" -#: src/parser.cpp:800 +#: src/parser.cpp:800 parser.cpp:1051 #, c-format msgid "%ls: " msgstr "" -#: src/parse_util.cpp:28 +#: src/parse_util.cpp:28 parse_util.cpp:46 #, c-format msgid "The '%ls' command can not be used in a pipeline" msgstr "" -#: src/parse_util.cpp:32 +#: src/parse_util.cpp:32 parse_util.cpp:49 #, c-format msgid "The '%ls' command can not be used immediately after a backgrounded job" msgstr "" -#: src/parse_util.cpp:36 +#: src/parse_util.cpp:36 parse_util.cpp:52 msgid "Backgrounded commands can not be used as conditionals" msgstr "" -#: src/path.cpp:25 +#: path.cpp:24 #, c-format msgid "Error while searching for command '%ls'" -msgstr "" +msgstr "Ett fel uppstod under sökning efter kommandot '%ls'" #: src/path.cpp:276 #, c-format @@ -1469,91 +1470,88 @@ msgstr "" msgid "Job %d, " msgstr "" -#: src/proc.cpp:587 +#: src/proc.cpp:587 proc.cpp:786 #, c-format msgid "%ls: %ls'%ls' terminated by signal %ls (%ls)" msgstr "" -#: src/proc.cpp:595 +#: src/proc.cpp:595 proc.cpp:797 #, c-format msgid "%ls: Process %d, '%ls' %ls'%ls' terminated by signal %ls (%ls)" msgstr "" -#: src/proc.cpp:779 +#: proc.cpp:1065 msgid "An error occured while reading output from code block" -msgstr "" +msgstr "Ett fel inträffade under läsandet av utdata från kodblock" #: src/proc.cpp:856 #, c-format msgid "Could not send job %d ('%ls') with pgid %d to foreground" msgstr "" -#: src/proc.cpp:885 +#: proc.cpp:1094 proc.cpp:1106 #, c-format msgid "Could not send job %d ('%ls') to foreground" -msgstr "" +msgstr "Kunde inte skicka jobb %d ('%ls') till förgrunden" -#: src/proc.cpp:909 src/proc.cpp:918 src/proc.cpp:932 +#: proc.cpp:1126 proc.cpp:1136 proc.cpp:1151 msgid "Could not return shell to foreground" -msgstr "" +msgstr "Kunde inte återställa skalet till förgrunden" -#: src/proc.cpp:1065 +#: proc.cpp:1365 #, c-format msgid "More than one job in foreground: job 1: '%ls' job 2: '%ls'" -msgstr "" +msgstr "Mer än ett jobb i förgrunden: job 1: '%ls', jobb 2 '%ls'" -#: src/proc.cpp:1075 +#: proc.cpp:1378 msgid "Process argument list" -msgstr "" +msgstr "Processargumentlista" -#: src/proc.cpp:1076 +#: proc.cpp:1379 msgid "Process name" -msgstr "" +msgstr "Processnamn" -#: src/proc.cpp:1079 +#: proc.cpp:1385 #, c-format msgid "Job '%ls', process '%ls' has inconsistent state 'stopped'=%d" -msgstr "" +msgstr "Jobb '%ls', process '%ls' har ogiltigt tillstånd 'stopped'=%d" -#: src/proc.cpp:1085 +#: proc.cpp:1395 #, c-format msgid "Job '%ls', process '%ls' has inconsistent state 'completed'=%d" -msgstr "" +msgstr "Jobb '%ls', process '%ls' har ogiltigt tillstånd 'completed'=%d" -#: src/reader.cpp:333 +#: reader.cpp:478 msgid "Could not set terminal mode for new job" -msgstr "" +msgstr "Kunde inte återställa terminalen för nytt jobb" -#: src/reader.cpp:362 +#: reader.cpp:525 msgid "Could not set terminal mode for shell" -msgstr "" +msgstr "Kunde inte återställa terminalen till skalet" -#: src/reader.cpp:1601 +#: src/reader.cpp:1601 reader.cpp:2059 msgid "No TTY for interactive shell (tcgetpgrp failed)" msgstr "" -#: src/reader.cpp:1611 +#: src/reader.cpp:1611 reader.cpp:2074 #, c-format msgid "" "I appear to be an orphaned process, so I am quitting politely. My pid is %d." msgstr "" -#: src/reader.cpp:1994 +#: reader.cpp:2616 msgid "Pop null reader block" -msgstr "" +msgstr "Ta bort element från tomt läsarblock" #: src/reader.cpp:2160 msgid "There are still jobs active:\n" msgstr "" #: src/reader.cpp:2161 -#, fuzzy msgid "" "\n" " PID Command\n" msgstr "" -"\n" -" PID Command\n" #: src/reader.cpp:2170 msgid "A second attempt to exit will terminate them.\n" @@ -1564,194 +1562,194 @@ msgid "" "Use 'disown PID' to remove jobs from the list without terminating them.\n" msgstr "" -#: src/reader.cpp:3205 +#: reader.cpp:4115 #, c-format msgid "Unknown key binding 0x%X" -msgstr "" +msgstr "Okänd tangentbords binding 0x%X" -#: src/reader.cpp:3294 +#: reader.cpp:4226 msgid "Error while reading from file descriptor" -msgstr "" +msgstr "Ett fel uppstod under inläsning från filidentifierare" -#: src/reader.cpp:3308 +#: reader.cpp:4243 msgid "Error while closing input stream" -msgstr "" +msgstr "Ett fel inträffade medan indataström stängdes" -#: src/reader.cpp:3329 +#: reader.cpp:4270 msgid "Error while opening input stream" -msgstr "" +msgstr "Ett fel inträffade medan indataström öppnades" -#: src/sanity.cpp:18 +#: src/sanity.cpp:18 sanity.cpp:37 msgid "Errors detected, shutting down. Break on sanity_lose() to debug." msgstr "" -#: src/sanity.cpp:33 +#: sanity.cpp:65 #, c-format msgid "The pointer '%ls' is invalid" -msgstr "" +msgstr "Pekaren '%ls' är ogiltig" -#: src/sanity.cpp:38 +#: sanity.cpp:71 #, c-format msgid "The pointer '%ls' is null" -msgstr "" +msgstr "Pekaren '%ls' är noll" -#: src/signal.cpp:36 +#: signal.cpp:69 msgid "Terminal hung up" -msgstr "" +msgstr "Terminalen bröt uppkopplingen" -#: src/signal.cpp:39 +#: signal.cpp:77 msgid "Quit request from job control (^C)" -msgstr "" +msgstr "Avslutning via jobbkontroll (^C)" -#: src/signal.cpp:42 +#: signal.cpp:85 msgid "Quit request from job control with core dump (^\\)" -msgstr "" +msgstr "Avslutning via jobbkontroll med minnesdump (^\\)" -#: src/signal.cpp:45 +#: signal.cpp:93 msgid "Illegal instruction" -msgstr "" +msgstr "Ogiltig instruktion" -#: src/signal.cpp:48 +#: signal.cpp:101 msgid "Trace or breakpoint trap" -msgstr "" +msgstr "Spårnings eller brytpunktsfälla utlöstes" -#: src/signal.cpp:51 +#: signal.cpp:109 msgid "Abort" -msgstr "" +msgstr "Avbrott" -#: src/signal.cpp:54 +#: signal.cpp:117 msgid "Misaligned address error" -msgstr "" +msgstr "Bussfel (Ogiltigt justerad minnesadress)" -#: src/signal.cpp:57 +#: signal.cpp:125 msgid "Floating point exception" -msgstr "" +msgstr "Flyttalsundantag" -#: src/signal.cpp:60 +#: signal.cpp:133 msgid "Forced quit" -msgstr "" +msgstr "Tvingad avslutning" -#: src/signal.cpp:63 +#: signal.cpp:141 msgid "User defined signal 1" -msgstr "" +msgstr "Användardefinerad signal 1" -#: src/signal.cpp:66 +#: signal.cpp:148 msgid "User defined signal 2" -msgstr "" +msgstr "Användardefinerad signal 2" -#: src/signal.cpp:69 +#: signal.cpp:156 msgid "Address boundary error" -msgstr "" +msgstr "Minnesadress korsar segmentgräns" -#: src/signal.cpp:72 +#: signal.cpp:164 msgid "Broken pipe" -msgstr "" +msgstr "Avbrutet rör" -#: src/signal.cpp:75 +#: signal.cpp:172 msgid "Timer expired" -msgstr "" +msgstr "Timer utlöstes" -#: src/signal.cpp:78 +#: signal.cpp:180 msgid "Polite quit request" -msgstr "" +msgstr "Artig avslutning" -#: src/signal.cpp:81 +#: signal.cpp:188 msgid "Child process status changed" -msgstr "" +msgstr "Barnprocess fick ändrad status" -#: src/signal.cpp:84 +#: signal.cpp:196 msgid "Continue previously stopped process" -msgstr "" +msgstr "Fortsätt tidigare stannad process" -#: src/signal.cpp:87 +#: signal.cpp:204 msgid "Forced stop" -msgstr "" +msgstr "Tvingad att stoppa" -#: src/signal.cpp:90 +#: signal.cpp:212 msgid "Stop request from job control (^Z)" -msgstr "" +msgstr "Stoppad genom jobbkontroll (^Z)" -#: src/signal.cpp:93 +#: signal.cpp:220 msgid "Stop from terminal input" -msgstr "" +msgstr "Stoppad från terminalläsning" -#: src/signal.cpp:96 +#: signal.cpp:228 msgid "Stop from terminal output" -msgstr "" +msgstr "Stoppad från terminalskrivning" -#: src/signal.cpp:99 +#: signal.cpp:236 msgid "Urgent socket condition" -msgstr "" +msgstr "Viktig socket-situation" -#: src/signal.cpp:102 +#: signal.cpp:244 msgid "CPU time limit exceeded" -msgstr "" +msgstr "Slut på processortid" -#: src/signal.cpp:105 +#: signal.cpp:252 msgid "File size limit exceeded" -msgstr "" +msgstr "Maximal filstorlek överskriden" -#: src/signal.cpp:108 +#: signal.cpp:260 msgid "Virtual timer expired" -msgstr "" +msgstr "Virtuell timer utlöst" -#: src/signal.cpp:111 +#: signal.cpp:268 msgid "Profiling timer expired" -msgstr "" +msgstr "Profileringstimer utlöst" -#: src/signal.cpp:114 src/signal.cpp:117 +#: signal.cpp:276 signal.cpp:284 msgid "Window size change" -msgstr "" +msgstr "Terminalfönstret ändrade storlek" -#: src/signal.cpp:120 +#: signal.cpp:292 msgid "I/O on asynchronous file descriptor is possible" -msgstr "" +msgstr "Läsning/skrivning på asynkron filidentifierare möjligt" -#: src/signal.cpp:123 +#: signal.cpp:300 msgid "Power failure" -msgstr "" +msgstr "Strömavbrott" -#: src/signal.cpp:126 +#: signal.cpp:308 msgid "Bad system call" -msgstr "" +msgstr "Felaktigt systemanrop" -#: src/signal.cpp:129 +#: signal.cpp:316 msgid "Information request" -msgstr "" +msgstr "Informationsbegäran" -#: src/signal.cpp:132 +#: signal.cpp:324 msgid "Stack fault" -msgstr "" +msgstr "Stackfel" -#: src/signal.cpp:135 +#: signal.cpp:332 msgid "Emulator trap" -msgstr "" +msgstr "Emulatorfälla" -#: src/signal.cpp:138 +#: signal.cpp:340 msgid "Abort (Alias for SIGABRT)" -msgstr "" +msgstr "Avbrott (Alias för SIGABRT)" -#: src/signal.cpp:141 +#: signal.cpp:348 msgid "Unused signal" -msgstr "" +msgstr "Oanvänd signal" -#: src/signal.cpp:173 src/signal.cpp:185 +#: mimedb.cpp:1402 signal.cpp:407 signal.cpp:422 msgid "Unknown" -msgstr "" +msgstr "Okänd" -#: src/signal.cpp:413 +#: signal.cpp:684 msgid "Signal block mismatch" -msgstr "" +msgstr "Signalblockeringar matchar inte varandra" -#: src/tokenizer.cpp:26 +#: tokenizer.cpp:32 msgid "Unexpected end of string, quotes are not balanced" -msgstr "" +msgstr "Oväntat slut på textsträng, citationstecknen är inte balanserade" -#: src/tokenizer.cpp:29 +#: tokenizer.cpp:37 msgid "Unexpected end of string, parenthesis do not match" -msgstr "" +msgstr "Oväntat slut på textsträng, paranteserna är inte balanserade" -#: src/tokenizer.cpp:32 +#: src/tokenizer.cpp:32 tokenizer.cpp:42 msgid "Unexpected end of string, square brackets do not match" msgstr "" @@ -1759,110 +1757,103 @@ msgstr "" msgid "Unexpected end of string, incomplete escape sequence" msgstr "" -#: src/tokenizer.cpp:38 +#: tokenizer.cpp:48 msgid "Invalid input/output redirection" -msgstr "" +msgstr "Ogiltig IO dirigering" -#: src/tokenizer.cpp:41 +#: src/tokenizer.cpp:41 tokenizer.cpp:53 msgid "Cannot use stdin (fd 0) as pipe output" msgstr "" -#: src/wgetopt.cpp:246 +#: wgetopt.cpp:638 #, c-format msgid "%ls: Invalid option -- %lc\n" -msgstr "" +msgstr "%ls: Ogiltigt flagga -- %lc\n" -#: src/wgetopt.cpp:277 +#: wgetopt.cpp:676 #, c-format msgid "%ls: Option requires an argument -- %lc\n" -msgstr "" +msgstr "%ls: Flaggan kräver ett argument -- %lc\n" -#: src/wgetopt.cpp:304 +#: wgetopt.cpp:560 #, c-format msgid "%ls: Option '--%ls' doesn't allow an argument\n" -msgstr "" +msgstr "%ls: Flaggan '--%ls' tar inget argument\n" -#: src/wgetopt.cpp:308 +#: wgetopt.cpp:565 #, c-format msgid "%ls: Option '%lc%ls' doesn't allow an argument\n" -msgstr "" +msgstr "%ls: Flaggan '%lc%ls' tar inget argument\n" -#: src/wgetopt.cpp:320 +#: wgetopt.cpp:579 #, c-format msgid "%ls: Option '%ls' requires an argument\n" -msgstr "" +msgstr "%ls: Flaggan '%ls' kräver ett argument\n" -#: src/wgetopt.cpp:383 +#: wgetopt.cpp:536 #, c-format msgid "%ls: Option '%ls' is ambiguous\n" -msgstr "" +msgstr "%ls: Flaggan '%ls' är tvetydig\n" -#: src/wgetopt.cpp:402 +#: wgetopt.cpp:607 #, c-format msgid "%ls: Unrecognized option '--%ls'\n" -msgstr "" +msgstr "%ls: Okänd flagga '--%ls'\n" -#: src/wgetopt.cpp:405 +#: wgetopt.cpp:611 #, c-format msgid "%ls: Unrecognized option '%lc%ls'\n" -msgstr "" +msgstr "%ls: Okänd flagga '%lc%ls'\n" -#: src/wildcard.cpp:27 /tmp/fish/implicit/share/completions/journalctl.fish:2 +#: wildcard.cpp:58 msgid "Executable" -msgstr "" +msgstr "Program" -#: src/wildcard.cpp:29 +#: wildcard.cpp:62 msgid "Executable link" -msgstr "" +msgstr "Länk till program" -#: src/wildcard.cpp:31 /tmp/fish/implicit/share/completions/fossil.fish:6 -#: /tmp/fish/implicit/share/completions/fossil.fish:90 -#: /tmp/fish/implicit/share/completions/git.fish:87 -#: /tmp/fish/implicit/share/completions/git.fish:133 -#: /tmp/fish/implicit/share/completions/git.fish:137 -#: /tmp/fish/implicit/share/completions/git.fish:208 -#: /tmp/fish/implicit/share/completions/git.fish:268 -#: /tmp/fish/implicit/share/completions/git.fish:269 +#: wildcard.cpp:67 share/completions/git.fish:178 msgid "File" -msgstr "" +msgstr "Fil" -#: src/wildcard.cpp:33 +#: wildcard.cpp:71 msgid "Character device" -msgstr "" +msgstr "Teckenenhet" -#: src/wildcard.cpp:35 +#: wildcard.cpp:75 msgid "Block device" -msgstr "" +msgstr "Blockenhet" -#: src/wildcard.cpp:37 +#: wildcard.cpp:79 msgid "Fifo" -msgstr "" +msgstr "Fifo" -#: src/wildcard.cpp:39 +#: wildcard.cpp:83 msgid "Symbolic link" -msgstr "" +msgstr "Symbolisk länk" -#: src/wildcard.cpp:41 +# +#: wildcard.cpp:87 msgid "Symbolic link to directory" -msgstr "" +msgstr "Symboliska länk till katalog" -#: src/wildcard.cpp:43 +#: wildcard.cpp:91 msgid "Rotten symbolic link" -msgstr "" +msgstr "Rutten symbolisk länk" -#: src/wildcard.cpp:45 +#: wildcard.cpp:95 msgid "Symbolic link loop" -msgstr "" +msgstr "Slinga av symboliska länkar" -#: src/wildcard.cpp:47 +#: wildcard.cpp:99 msgid "Socket" -msgstr "" +msgstr "Uttag (socket)" -#: src/wildcard.cpp:49 -#: /tmp/fish/explicit/share/functions/__fish_complete_directories.fish:1 -#: /tmp/fish/implicit/share/completions/ruby.fish:22 +#: wildcard.cpp:103 share/completions/ruby.fish:23 +#: share/functions/__fish_complete_directories.fish:8 msgid "Directory" -msgstr "" +msgstr "Katalog" #: src/wutil.cpp:146 #, c-format @@ -1874,27 +1865,31 @@ msgstr "" msgid "%ls: Expected argument for option %ls\n" msgstr "" -#: src/builtin.h:41 +#: builtin.h:37 #, c-format msgid "" "%ls: Invalid combination of options,\n" "%ls\n" msgstr "" +"%ls: Ogiltig kombination av flaggor,\n" +"%ls\n" -#: src/builtin.h:45 +#: builtin.h:42 #, c-format msgid "%ls: Variable scope can only be one of universal, global and local\n" msgstr "" +"%ls: En variabels definitionsområde kan bara vara en av universal, global " +"och lokal\n" -#: src/builtin.h:48 +#: builtin.h:47 #, c-format msgid "%ls: Variable can't be both exported and unexported\n" -msgstr "" +msgstr "%ls: Variabel kan inte vara både exporterad och oexporterad\n" -#: src/builtin.h:51 +#: builtin.h:52 #, c-format msgid "%ls: Unknown option '%ls'\n" -msgstr "" +msgstr "%ls: Okänd flagga '%ls'\n" #: src/builtin.h:54 #, c-format @@ -1926,15 +1921,15 @@ msgstr "" msgid "%ls: mode name '%ls' is not valid. See `help identifiers`.\n" msgstr "" -#: src/builtin.h:66 +#: builtin.cpp:3827 builtin_complete.cpp:551 builtin.h:83 #, c-format msgid "%ls: Too many arguments\n" -msgstr "" +msgstr "%ls: För många argument\n" -#: src/builtin.h:69 +#: builtin.h:95 #, c-format msgid "%ls: Argument '%ls' is not a number\n" -msgstr "" +msgstr "%ls: Argumentet '%ls' är inte ett nummer\n" #: src/builtin.h:72 #, c-format @@ -1946,57 +1941,57 @@ msgstr "" msgid "%ls: Subcommand '%ls' is not valid\n" msgstr "" -#: src/builtin.h:76 +#: builtin.cpp:84 #, c-format msgid "Send job %d, '%ls' to foreground\n" -msgstr "" +msgstr "Skicka job %d, '%ls' till förgrunden\n" -#: src/exec.h:12 +#: exec.h:21 msgid "An error occurred while setting up pipe" -msgstr "" +msgstr "Ett fel inträffade under skapandet av ett rör" -#: src/parse_constants.h:225 +#: src/parse_constants.h:225 parse_constants.h:185 #, c-format msgid "" "The function '%ls' calls itself immediately, which would result in an " "infinite loop." msgstr "" -#: src/parse_constants.h:229 +#: src/parse_constants.h:229 parse_constants.h:189 msgid "" "The function call stack limit has been exceeded. Do you have an accidental " "infinite loop?" msgstr "" -#: src/parse_constants.h:233 +#: parse_constants.h:198 #, c-format msgid "Illegal command name '%ls'" -msgstr "" +msgstr "Ogiltigt kommandonamn '%ls'" -#: src/parse_constants.h:236 +#: parse_constants.h:201 #, c-format msgid "Unknown builtin '%ls'" -msgstr "" +msgstr "Okänt inbyggt kommando '%ls'" -#: src/parse_constants.h:239 +#: src/parse_constants.h:239 parse_constants.h:204 #, c-format msgid "Unable to expand variable name '%ls'" msgstr "" -#: src/parse_constants.h:242 +#: src/parse_constants.h:242 parse_constants.h:207 #, c-format msgid "Unable to find a process '%ls'" msgstr "" -#: src/parse_constants.h:245 +#: src/parse_constants.h:245 parse_constants.h:210 #, c-format msgid "Illegal file descriptor in redirection '%ls'" msgstr "" -#: src/parse_constants.h:248 +#: parse_constants.h:213 #, c-format msgid "No matches for wildcard '%ls'. See `help expand`." -msgstr "" +msgstr "Ingen träff för jokerteckenmönster '%ls' Se `help expand`." #: src/parse_constants.h:251 msgid "'break' while not inside of loop" @@ -2075,29 +2070,6 @@ msgstr "" msgid "Unsupported use of '='. In fish, please use 'set %ls %ls'." msgstr "" -#: /tmp/fish/explicit/share/completions/emerge.fish:1 -#: /tmp/fish/explicit/share/completions/emerge.fish:4 -msgid "All base system packages" -msgstr "" - -#: /tmp/fish/explicit/share/completions/emerge.fish:2 -#: /tmp/fish/explicit/share/completions/emerge.fish:5 -#: /tmp/fish/explicit/share/completions/emerge.fish:6 -msgid "All packages in world" -msgstr "" - -#: /tmp/fish/explicit/share/completions/emerge.fish:3 -#: /tmp/fish/implicit/share/completions/aura.fish:90 -#: /tmp/fish/implicit/share/completions/aura.fish:95 -#: /tmp/fish/implicit/share/completions/pacaur.fish:72 -#: /tmp/fish/implicit/share/completions/pacaur.fish:77 -#: /tmp/fish/implicit/share/completions/pacman.fish:50 -#: /tmp/fish/implicit/share/completions/pacman.fish:55 -#: /tmp/fish/implicit/share/completions/yaourt.fish:69 -#: /tmp/fish/implicit/share/completions/yaourt.fish:76 -msgid "Installed package" -msgstr "" - #: /tmp/fish/explicit/share/completions/emerge.fish:7 msgid "Packages that are linked to preserved libs" msgstr "" @@ -2106,30 +2078,6 @@ msgstr "" msgid "Packages that contain kernel modules" msgstr "" -#: /tmp/fish/explicit/share/completions/emerge.fish:9 -msgid "Usage overview of emerge" -msgstr "" - -#: /tmp/fish/explicit/share/completions/emerge.fish:10 -msgid "Help on subject system" -msgstr "" - -#: /tmp/fish/explicit/share/completions/emerge.fish:11 -msgid "Help on subject config" -msgstr "" - -#: /tmp/fish/explicit/share/completions/emerge.fish:12 -msgid "Help on subject sync" -msgstr "" - -#: /tmp/fish/explicit/share/completions/emerge.fish:13 -msgid "Use colors in output" -msgstr "" - -#: /tmp/fish/explicit/share/completions/emerge.fish:14 -msgid "Don't use colors in output" -msgstr "" - #: /tmp/fish/explicit/share/completions/emerge.fish:15 msgid "Pull in build time dependencies" msgstr "" @@ -2139,118 +2087,146 @@ msgid "Don't pull in build time dependencies" msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:1 +#: share/completions/equery.fish:38 msgid "list all packages owning file(s)" msgstr "" -#: /tmp/fish/explicit/share/completions/equery.fish:2 +#: share/completions/equery.fish:39 msgid "check MD5sums and timestamps of package" -msgstr "" +msgstr "Kontrollera MD5-summor och tidsstämplar på paket" #: /tmp/fish/explicit/share/completions/equery.fish:3 +#: share/completions/equery.fish:40 msgid "list all packages depending on specified package" msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:4 +#: share/completions/equery.fish:41 msgid "display a dependency tree for package" msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:5 +#: share/completions/equery.fish:42 msgid "list files owned by package" msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:6 +#: share/completions/equery.fish:43 msgid "list all packages with specified useflag" msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:7 +#: share/completions/equery.fish:44 msgid "list all packages matching pattern" msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:8 +#: share/completions/equery.fish:45 msgid "print size of files contained in package" msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:9 +#: share/completions/equery.fish:46 msgid "display USE flags for package" msgstr "" #: /tmp/fish/explicit/share/completions/equery.fish:10 +#: share/completions/equery.fish:47 msgid "print full path to ebuild for package" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:1 +#: share/completions/gem.fish:12 msgid "Build a gem from a gemspec" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:2 +#: share/completions/gem.fish:13 msgid "Adjust RubyGems certificate settings" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:3 +#: share/completions/gem.fish:14 msgid "Check installed gems" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:4 +#: share/completions/gem.fish:15 msgid "Cleanup old versions of installed gems in the local repository" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:5 +#: share/completions/gem.fish:16 msgid "Display the contents of the installed gems" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:6 +#: share/completions/gem.fish:17 msgid "Show the dependencies of an installed gem" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:7 +#: share/completions/gem.fish:18 msgid "Display RubyGems environmental information" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:8 +#: share/completions/gem.fish:19 msgid "Provide help on the 'gem' command" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:9 +#: share/completions/gem.fish:20 msgid "Install a gem into the local repository" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:10 +#: share/completions/gem.fish:21 msgid "Display all gems whose name starts with STRING" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:11 +#: share/completions/gem.fish:22 msgid "Query gem information in local or remote repositories" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:12 +#: share/completions/gem.fish:23 msgid "Generates RDoc for pre-installed gems" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:13 +#: share/completions/gem.fish:24 msgid "Display all gems whose name contains STRING" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:14 +#: share/completions/gem.fish:25 msgid "Display gem specification (in yaml)" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:15 +#: share/completions/gem.fish:26 msgid "Uninstall a gem from the local repository" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:16 +#: share/completions/gem.fish:27 msgid "Unpack an installed gem to the current directory" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:17 +#: share/completions/gem.fish:28 msgid "Update the named gem (or all installed gems) in the local repository" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:18 +#: share/completions/gem.fish:87 msgid "display the remote gem servers" msgstr "" #: /tmp/fish/explicit/share/completions/gem.fish:19 +#: share/completions/gem.fish:92 msgid "show some examples of usage" msgstr "" @@ -2644,72 +2620,73 @@ msgstr "" msgid "Check, then resync" msgstr "" -#: /tmp/fish/explicit/share/completions/set.fish:1 +#: share/completions/set.fish:79 msgid "Locale" -msgstr "" +msgstr "Lokal" -#: /tmp/fish/explicit/share/completions/telnet.fish:1 -#: /tmp/fish/explicit/share/completions/telnet.fish:6 +#: share/completions/telnet.fish:9 share/completions/telnet.fish:14 msgid "Specifies an 8-bit data path" -msgstr "" +msgstr "Anger en 8-bitars dataväg" -#: /tmp/fish/explicit/share/completions/telnet.fish:2 +#: share/completions/telnet.fish:10 msgid "Do not try to negotiate TELNET BINARY option" -msgstr "" +msgstr "Försök inte förhandla TELNET BINARY-flaggan" -#: /tmp/fish/explicit/share/completions/telnet.fish:3 +#: share/completions/telnet.fish:11 msgid "Stops any character from being recognized as an escape character" -msgstr "" +msgstr "Hindra alla tecken från att kännas igen som specialsekvens" -#: /tmp/fish/explicit/share/completions/telnet.fish:4 +#: share/completions/telnet.fish:12 msgid "Use local Kerberos authentication, if possible" -msgstr "" +msgstr "Använd lokal kerberosautentisering, om möjligt" -#: /tmp/fish/explicit/share/completions/telnet.fish:5 +#: share/completions/telnet.fish:13 msgid "Specifies no automatic login to remote system" -msgstr "" +msgstr "Försök inte logga in automatiskt på fjärrsystem" -#: /tmp/fish/explicit/share/completions/telnet.fish:7 +#: share/completions/telnet.fish:15 msgid "Attempt automatic login" -msgstr "" +msgstr "Försök logga in automatiskt på fjärrsystem" -#: /tmp/fish/explicit/share/completions/telnet.fish:8 +#: share/completions/telnet.fish:16 msgid "Disables reading user's .telnetrc" -msgstr "" +msgstr "Inaktivera inläsning av användarens .telnetrc" -#: /tmp/fish/explicit/share/completions/telnet.fish:9 +#: share/completions/telnet.fish:17 msgid "Sets debug mode" -msgstr "" +msgstr "Väljer debugnivå" #: /tmp/fish/explicit/share/completions/telnet.fish:10 +#: share/completions/telnet.fish:18 msgid "Sets IP TOS" msgstr "" -#: /tmp/fish/explicit/share/completions/telnet.fish:11 +#: share/completions/telnet.fish:19 msgid "Disables specified type of authentication" -msgstr "" +msgstr "Inaktivera angivna autentiseringstypen" -#: /tmp/fish/explicit/share/completions/telnet.fish:12 +#: share/completions/telnet.fish:20 msgid "User login" -msgstr "" +msgstr "Användarinloggning" -#: /tmp/fish/explicit/share/completions/telnet.fish:13 +#: share/completions/telnet.fish:21 msgid "Log to tracefile" -msgstr "" +msgstr "Logga till spårfil" -#: /tmp/fish/explicit/share/completions/telnet.fish:14 +#: share/completions/telnet.fish:22 msgid "Turn on encryption" -msgstr "" +msgstr "Slå på kryptering" -#: /tmp/fish/explicit/share/completions/telnet.fish:15 +#: share/completions/telnet.fish:23 msgid "User interface similar to rlogin" -msgstr "" +msgstr "Användargränssnitt liknande rlogin" -#: /tmp/fish/explicit/share/completions/telnet.fish:16 +#: share/completions/telnet.fish:24 msgid "Use Kerberos realm for authentication" -msgstr "" +msgstr "Använd Kerberos-realm för autentisering" #: /tmp/fish/explicit/share/completions/update-eix-remote.fish:1 +#: share/completions/update-eix-remote.fish:16 msgid "Remove all temporarily added virtual overlays from the eix database" msgstr "" @@ -3276,9 +3253,8 @@ msgid "%s %s: Abbreviation %s cannot have spaces in the word\\n" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:4 -#, fuzzy msgid "%s %s: Expected one argument\\n" -msgstr "%s %s: Expected one argument\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:6 #: /tmp/fish/explicit/share/functions/abbr.fish:10 @@ -3298,45 +3274,13 @@ msgstr "" msgid "%s %s: Unexpected argument -- '%s'\\n" msgstr "" -#: /tmp/fish/explicit/share/functions/abbr_old.fish:1 -msgid "%s: invalid option -- %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:2 -msgid "%s: %s cannot be specified along with %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:3 -msgid "%s: option requires an argument -- %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:4 -msgid "%s: Unexpected argument -- %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:5 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:8 -msgid "%s: abbreviation cannot have spaces in the key\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:6 -msgid "%s: abbreviation must have a value\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:7 -msgid "%s: abbreviation '%s' already exists, cannot rename\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:9 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:10 -msgid "%s: no such abbreviation '%s'\\n" -msgstr "" - #: /tmp/fish/explicit/share/functions/alias.fish:1 +#: share/functions/alias.fish:42 msgid "%s: Name cannot be empty\\n" msgstr "" #: /tmp/fish/explicit/share/functions/alias.fish:2 +#: share/functions/alias.fish:45 msgid "%s: Body cannot be empty\\n" msgstr "" @@ -3381,14 +3325,6 @@ msgstr "" msgid "or the file was empty" msgstr "" -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:2 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:3 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:4 -#: /tmp/fish/explicit/share/functions/__fish_complete_unrar.fish:1 -msgid "%s\\tArchived file\\n" -msgstr "" - #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:3 msgid "Achieved compression ratio" msgstr "" @@ -3518,9 +3454,10 @@ msgstr "" msgid "SELinux context for the root inode of the filesystem" msgstr "" -#: /tmp/fish/explicit/share/functions/__fish_config_interactive.fish:1 +# +#: share/functions/__fish_config_interactive.fish:34 msgid "Welcome to fish, the friendly interactive shell" -msgstr "" +msgstr "Välkommen till fish, det vänliga interaktiva skalet" #: /tmp/fish/explicit/share/functions/fish_md5.fish:1 #: /tmp/fish/explicit/share/functions/fish_md5.fish:2 @@ -3535,27 +3472,16 @@ msgstr "" msgid "%s: The --short flag is required and must be a single character\\n" msgstr "" -#: /tmp/fish/explicit/share/functions/__fish_print_packages.fish:1 -#: /tmp/fish/implicit/share/completions/apt-cache.fish:31 -#: /tmp/fish/implicit/share/completions/apt.fish:4 -#: /tmp/fish/implicit/share/completions/apt-get.fish:3 -#: /tmp/fish/implicit/share/completions/aptitude.fish:3 -#: /tmp/fish/implicit/share/completions/apt-mark.fish:3 -#: /tmp/fish/implicit/share/completions/dpkg-reconfigure.fish:1 -#: /tmp/fish/implicit/share/completions/pkg_delete.fish:1 -#: /tmp/fish/implicit/share/completions/pkg_info.fish:1 -#: /tmp/fish/implicit/share/completions/prt-get.fish:1 -#: /tmp/fish/implicit/share/completions/prt-get.fish:63 -#: /tmp/fish/implicit/share/completions/wajig.fish:3 -#: /tmp/fish/implicit/share/completions/zypper.fish:1 +#: share/functions/__fish_print_packages.fish:13 msgid "Package" -msgstr "" +msgstr "Paket" #: /tmp/fish/explicit/share/functions/fish_update_completions.fish:1 msgid "python executable not found" msgstr "" #: /tmp/fish/explicit/share/functions/funced.fish:2 +#: share/functions/funced.fish:96 msgid "Editing failed or was cancelled" msgstr "" @@ -3564,30 +3490,32 @@ msgid "Editor exited but the function was not modified" msgstr "" #: /tmp/fish/explicit/share/functions/funced.fish:4 +#: share/functions/funced.fish:103 msgid "Edit the file again\\? [Y/n]" msgstr "" #: /tmp/fish/explicit/share/functions/funced.fish:5 +#: share/functions/funced.fish:110 msgid "Cancelled function editing" msgstr "" -#: /tmp/fish/explicit/share/functions/funcsave.fish:1 +#: share/functions/funcsave.fish:26 msgid "%s: Could not create configuration directory\\n" -msgstr "" +msgstr "%s: Kunde inte skapa konfigurationskatalogen\\n" -#: /tmp/fish/explicit/share/functions/funcsave.fish:2 +#: share/functions/funcsave.fish:36 msgid "%s: Unknown function '%s'\\n" -msgstr "" +msgstr "%s: Okänd funktion '%s'\\n" -#: /tmp/fish/explicit/share/functions/help.fish:1 +#: share/functions/help.fish:76 msgid "%s: Could not find a web browser.\\n" -msgstr "" +msgstr "%s: Kunde inte hitta en webbrowser\\n" -#: /tmp/fish/explicit/share/functions/help.fish:3 +#: /tmp/fish/explicit/share/functions/help.fish:3 share/functions/help.fish:129 msgid "help: Help is being displayed in your default browser.\\n" msgstr "" -#: /tmp/fish/explicit/share/functions/help.fish:4 +#: /tmp/fish/explicit/share/functions/help.fish:4 share/functions/help.fish:132 msgid "help: Help is being displayed in %s.\\n" msgstr "" @@ -3620,10 +3548,10 @@ msgstr "" msgid "%s: Too many arguments" msgstr "" -#: /tmp/fish/explicit/share/functions/nextd.fish:1 -#: /tmp/fish/explicit/share/functions/prevd.fish:1 +#: share/functions/nextd.fish:28 msgid "%s: The number of positions to skip must be a non-negative integer\\n" msgstr "" +"%s: Antalet positioner att hoppa över måste vara ett positivt heltal\\n" #: /tmp/fish/explicit/share/functions/open.fish:1 msgid "No open utility found. Try installing \"xdg-open\" or \"xdg-utils\"." @@ -3641,55 +3569,54 @@ msgstr "" msgid "%s: These flags are not allowed by fish realpath: '%s'" msgstr "" -#: /tmp/fish/explicit/share/functions/seq.fish:1 +#: share/functions/seq.fish:31 msgid "%s: Expected 1, 2 or 3 arguments, got %d\\n" -msgstr "" +msgstr "%s: Förväntade 1, 2 eller 3 argument, fick %d\\n" -#: /tmp/fish/explicit/share/functions/seq.fish:2 +#: share/functions/seq.fish:38 msgid "%s: '%s' is not a number\\n" -msgstr "" +msgstr "%s: '%s' är inte ett nummer\\n" -#: /tmp/fish/explicit/share/functions/setenv.fish:1 -#: /tmp/fish/explicit/share/functions/umask.fish:3 +#: share/functions/umask.fish:212 msgid "%s: Too many arguments\\n" -msgstr "" +msgstr "%s: För många argument\\n" #: /tmp/fish/explicit/share/functions/setenv.fish:2 msgid "%s: Variable name must contain alphanumeric characters\\n" msgstr "" -#: /tmp/fish/explicit/share/functions/type.fish:1 +#: share/functions/type.fish:90 msgid "%s is a function with definition\\n" -msgstr "" +msgstr "%s är en funktion med definitionen\\n" -#: /tmp/fish/explicit/share/functions/type.fish:2 +#: /tmp/fish/explicit/share/functions/type.fish:2 share/functions/type.fish:94 msgid "function" msgstr "" -#: /tmp/fish/explicit/share/functions/type.fish:3 +#: share/functions/type.fish:107 msgid "%s is a builtin\\n" -msgstr "" +msgstr "%s är ett inbyggt kommando\\n" -#: /tmp/fish/explicit/share/functions/type.fish:4 +#: /tmp/fish/explicit/share/functions/type.fish:4 share/functions/type.fish:110 msgid "builtin" msgstr "" -#: /tmp/fish/explicit/share/functions/type.fish:5 +#: share/functions/type.fish:130 msgid "%s is %s\\n" -msgstr "" +msgstr "%s är %s\\n" -#: /tmp/fish/explicit/share/functions/type.fish:6 +#: /tmp/fish/explicit/share/functions/type.fish:6 share/functions/type.fish:133 msgid "file" msgstr "" -#: /tmp/fish/explicit/share/functions/type.fish:7 +#: share/functions/type.fish:144 msgid "%s: Could not find '%s'\\n" -msgstr "" +msgstr "%s: Kunde inte hitta '%s'\\n" -#: /tmp/fish/explicit/share/functions/umask.fish:1 -#: /tmp/fish/explicit/share/functions/umask.fish:2 +#: share/functions/umask.fish:11 share/functions/umask.fish:69 +#: share/functions/umask.fish:76 msgid "%s: Invalid mask '%s'\\n" -msgstr "" +msgstr "%s: Ogiltigt mask '%s'\\n" #: /tmp/fish/explicit/share/functions/_validate_int.fish:1 msgid "%s: Value '%s' for flag '%s' is not an integer\\n" @@ -3703,21 +3630,25 @@ msgstr "" msgid "%s: Value '%s' for flag '%s' greater than max allowed of '%s'\\n" msgstr "" -#: /tmp/fish/explicit/share/functions/vared.fish:1 +#: share/functions/funced.fish:24 share/functions/nextd.fish:22 +#: share/functions/prevd.fish:22 share/functions/vared.fish:15 msgid "%s: Unknown option %s\\n" -msgstr "" +msgstr "%s: Okänd flagga '%s'\\n" #: /tmp/fish/explicit/share/functions/vared.fish:2 +#: share/functions/vared.fish:40 msgid "" "%s: %s is an array variable. Use %svared%s %s[n]%s to edit the n:th element " "of %s\\n" msgstr "" -#: /tmp/fish/explicit/share/functions/vared.fish:3 +#: share/functions/vared.fish:44 msgid "" "%s: Expected exactly one argument, got %s.\\n\\nSynopsis:\\n\\t%svared%s " "VARIABLE\\n" msgstr "" +"%s: Förväntade exakt ett argument, fick %s\\n\\nSynopsis:\\n\\t%svared%s " +"VARIABEL\\n" #: /tmp/fish/implicit/share/config.fish:1 msgid "Update PATH when fish_user_paths changes" @@ -3825,11 +3756,9 @@ msgstr "" msgid "Accept reason" msgstr "" -#: /tmp/fish/implicit/share/completions/ack.fish:1 -#: /tmp/fish/implicit/share/completions/grep.fish:23 -#: /tmp/fish/implicit/share/completions/sort.fish:3 +#: share/functions/__fish_complete_grep.fish:24 msgid "Ignore case" -msgstr "" +msgstr "Ignorera skiftläge" #: /tmp/fish/implicit/share/completions/ack.fish:2 msgid "Ignore case when pattern contains no uppercase" @@ -3907,20 +3836,17 @@ msgstr "" msgid "Don't show column number of first match" msgstr "" -#: /tmp/fish/implicit/share/completions/ack.fish:21 -#: /tmp/fish/implicit/share/completions/grep.fish:1 +#: share/functions/__fish_complete_grep.fish:2 msgid "Print NUM lines of trailing context" -msgstr "" +msgstr "Visa NUM rader av följande sammanhang" -#: /tmp/fish/implicit/share/completions/ack.fish:22 -#: /tmp/fish/implicit/share/completions/grep.fish:3 +#: share/functions/__fish_complete_grep.fish:4 msgid "Print NUM lines of leading context" -msgstr "" +msgstr "Visa NUM rader av inledande sammanhang" -#: /tmp/fish/implicit/share/completions/ack.fish:23 -#: /tmp/fish/implicit/share/completions/grep.fish:4 +#: share/functions/__fish_complete_grep.fish:5 msgid "Print NUM lines of context" -msgstr "" +msgstr "Visa NUM rader av sammanhang" #: /tmp/fish/implicit/share/completions/ack.fish:24 msgid "Print null byte as separator between filenames" @@ -4030,21 +3956,14 @@ msgstr "" msgid "No descending into subdirectories" msgstr "" -#: /tmp/fish/implicit/share/completions/ack.fish:51 -#: /tmp/fish/implicit/share/completions/file.fish:7 -#: /tmp/fish/implicit/share/completions/find.fish:2 -#: /tmp/fish/implicit/share/completions/ls.fish:16 -#: /tmp/fish/implicit/share/completions/ls.fish:17 -#: /tmp/fish/implicit/share/completions/ls.fish:71 -#: /tmp/fish/implicit/share/completions/ls.fish:72 -#: /tmp/fish/implicit/share/completions/s3cmd.fish:129 +#: share/functions/__fish_complete_ls.fish:19 +#: share/functions/__fish_complete_ls.fish:20 msgid "Follow symlinks" -msgstr "" +msgstr "Följ symboliska länkar" -#: /tmp/fish/implicit/share/completions/ack.fish:52 -#: /tmp/fish/implicit/share/completions/ls.fish:62 +#: share/functions/__fish_complete_ls.fish:105 msgid "Don't follow symlinks" -msgstr "" +msgstr "Följ inte symboliska länkar" #: /tmp/fish/implicit/share/completions/ack.fish:53 msgid "Include only recognized files" @@ -4172,134 +4091,13 @@ msgstr "" msgid " path to ACPI info (/proc/acpi)" msgstr "" -#: /tmp/fish/implicit/share/completions/acpi.fish:14 -#: /tmp/fish/implicit/share/completions/and.fish:1 -#: /tmp/fish/implicit/share/completions/apropos.fish:2 -#: /tmp/fish/implicit/share/completions/apt-build.fish:1 -#: /tmp/fish/implicit/share/completions/apt-cache.fish:1 -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:1 -#: /tmp/fish/implicit/share/completions/apt-config.fish:1 -#: /tmp/fish/implicit/share/completions/apt-extracttemplates.fish:1 -#: /tmp/fish/implicit/share/completions/apt-file.fish:1 -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:1 -#: /tmp/fish/implicit/share/completions/apt-get.fish:4 -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:1 -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:1 -#: /tmp/fish/implicit/share/completions/apt-mark.fish:4 -#: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:1 -#: /tmp/fish/implicit/share/completions/apt-rdepends.fish:1 -#: /tmp/fish/implicit/share/completions/apt-show-source.fish:1 -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:1 -#: /tmp/fish/implicit/share/completions/apt-sortpkgs.fish:1 -#: /tmp/fish/implicit/share/completions/apt-spy.fish:1 -#: /tmp/fish/implicit/share/completions/apt-src.fish:1 -#: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:1 -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:1 -#: /tmp/fish/implicit/share/completions/asp.fish:6 -#: /tmp/fish/implicit/share/completions/bc.fish:7 -#: /tmp/fish/implicit/share/completions/bd.fish:4 -#: /tmp/fish/implicit/share/completions/bg.fish:1 -#: /tmp/fish/implicit/share/completions/bind.fish:4 -#: /tmp/fish/implicit/share/completions/block.fish:1 -#: /tmp/fish/implicit/share/completions/break.fish:1 -#: /tmp/fish/implicit/share/completions/builtin.fish:1 -#: /tmp/fish/implicit/share/completions/cd.fish:1 -#: /tmp/fish/implicit/share/completions/chgrp.fish:9 -#: /tmp/fish/implicit/share/completions/chmod.fish:8 -#: /tmp/fish/implicit/share/completions/chown.fish:9 -#: /tmp/fish/implicit/share/completions/command.fish:1 -#: /tmp/fish/implicit/share/completions/commandline.fish:1 -#: /tmp/fish/implicit/share/completions/complete.fish:13 -#: /tmp/fish/implicit/share/completions/configure.fish:1 -#: /tmp/fish/implicit/share/completions/continue.fish:1 -#: /tmp/fish/implicit/share/completions/cowsay.fish:3 -#: /tmp/fish/implicit/share/completions/cowthink.fish:3 -#: /tmp/fish/implicit/share/completions/cut.fish:8 -#: /tmp/fish/implicit/share/completions/dconf.fish:10 -#: /tmp/fish/implicit/share/completions/diff.fish:25 -#: /tmp/fish/implicit/share/completions/du.fish:18 -#: /tmp/fish/implicit/share/completions/echo.fish:5 -#: /tmp/fish/implicit/share/completions/entr.fish:3 -#: /tmp/fish/implicit/share/completions/env.fish:5 -#: /tmp/fish/implicit/share/completions/eval.fish:1 -#: /tmp/fish/implicit/share/completions/exec.fish:1 -#: /tmp/fish/implicit/share/completions/exit.fish:1 -#: /tmp/fish/implicit/share/completions/fg.fish:1 -#: /tmp/fish/implicit/share/completions/find.fish:6 -#: /tmp/fish/implicit/share/completions/fish.fish:2 -#: /tmp/fish/implicit/share/completions/fish_indent.fish:1 -#: /tmp/fish/implicit/share/completions/functions.fish:4 -#: /tmp/fish/implicit/share/completions/fusermount.fish:2 -#: /tmp/fish/implicit/share/completions/gpg.fish:50 -#: /tmp/fish/implicit/share/completions/gprof.fish:30 -#: /tmp/fish/implicit/share/completions/grep.fish:21 -#: /tmp/fish/implicit/share/completions/grub-file.fish:31 -#: /tmp/fish/implicit/share/completions/gunzip.fish:3 -#: /tmp/fish/implicit/share/completions/gzip.fish:3 -#: /tmp/fish/implicit/share/completions/i3-msg.fish:3 -#: /tmp/fish/implicit/share/completions/iconv.fish:7 -#: /tmp/fish/implicit/share/completions/id.fish:6 -#: /tmp/fish/implicit/share/completions/jobs.fish:1 -#: /tmp/fish/implicit/share/completions/less.fish:1 -#: /tmp/fish/implicit/share/completions/ln.fish:14 -#: /tmp/fish/implicit/share/completions/ls.fish:57 -#: /tmp/fish/implicit/share/completions/man.fish:24 -#: /tmp/fish/implicit/share/completions/mount.fish:2 -#: /tmp/fish/implicit/share/completions/mplayer.fish:4 -#: /tmp/fish/implicit/share/completions/mplayer.fish:8 -#: /tmp/fish/implicit/share/completions/mplayer.fish:34 -#: /tmp/fish/implicit/share/completions/msgfmt.fish:24 -#: /tmp/fish/implicit/share/completions/mv.fish:10 -#: /tmp/fish/implicit/share/completions/nice.fish:3 -#: /tmp/fish/implicit/share/completions/not.fish:1 -#: /tmp/fish/implicit/share/completions/or.fish:1 -#: /tmp/fish/implicit/share/completions/patch.fish:15 -#: /tmp/fish/implicit/share/completions/pine.fish:3 -#: /tmp/fish/implicit/share/completions/ps.fish:39 -#: /tmp/fish/implicit/share/completions/psub.fish:1 -#: /tmp/fish/implicit/share/completions/python2.fish:5 -#: /tmp/fish/implicit/share/completions/python3.fish:5 -#: /tmp/fish/implicit/share/completions/python.fish:5 -#: /tmp/fish/implicit/share/completions/random.fish:1 -#: /tmp/fish/implicit/share/completions/read.fish:1 -#: /tmp/fish/implicit/share/completions/return.fish:1 -#: /tmp/fish/implicit/share/completions/rmdir.fish:4 -#: /tmp/fish/implicit/share/completions/rpm.fish:1 -#: /tmp/fish/implicit/share/completions/rsync.fish:104 -#: /tmp/fish/implicit/share/completions/ruby.fish:7 -#: /tmp/fish/implicit/share/completions/scrot.fish:1 -#: /tmp/fish/implicit/share/completions/set_color.fish:8 -#: /tmp/fish/implicit/share/completions/set.fish:10 -#: /tmp/fish/implicit/share/completions/setsid.fish:5 -#: /tmp/fish/implicit/share/completions/sort.fish:22 -#: /tmp/fish/implicit/share/completions/sshfs.fish:9 -#: /tmp/fish/implicit/share/completions/status.fish:1 -#: /tmp/fish/implicit/share/completions/sudo.fish:11 -#: /tmp/fish/implicit/share/completions/su.fish:6 -#: /tmp/fish/implicit/share/completions/sylpheed.fish:3 -#: /tmp/fish/implicit/share/completions/test.fish:1 -#: /tmp/fish/implicit/share/completions/tex.fish:1 -#: /tmp/fish/implicit/share/completions/time.fish:7 -#: /tmp/fish/implicit/share/completions/top.fish:4 -#: /tmp/fish/implicit/share/completions/trap.fish:3 -#: /tmp/fish/implicit/share/completions/type.fish:1 -#: /tmp/fish/implicit/share/completions/ulimit.fish:14 -#: /tmp/fish/implicit/share/completions/umount.fish:3 -#: /tmp/fish/implicit/share/completions/uname.fish:17 -#: /tmp/fish/implicit/share/completions/valgrind.fish:2 -#: /tmp/fish/implicit/share/completions/vared.fish:1 -#: /tmp/fish/implicit/share/completions/wc.fish:6 -#: /tmp/fish/implicit/share/completions/wget.fish:2 -#: /tmp/fish/implicit/share/completions/which.fish:12 -#: /tmp/fish/implicit/share/completions/who.fish:18 -#: /tmp/fish/implicit/share/completions/xargs.fish:4 -#: /tmp/fish/implicit/share/completions/xprop.fish:1 -#: /tmp/fish/implicit/share/completions/xsel.fish:16 -#: /tmp/fish/implicit/share/completions/yum.fish:11 -#: /tmp/fish/implicit/share/completions/zcat.fish:2 -#: /tmp/fish/implicit/share/completions/zip.fish:30 +#: share/completions/configure.fish:1 +#: share/functions/__fish_complete_diff.fish:27 +#: share/functions/__fish_complete_grep.fish:22 +#: share/functions/__fish_complete_ls.fish:95 +#: share/functions/__fish_complete_tex.fish:4 msgid "Display help and exit" -msgstr "" +msgstr "Visa hjälp och avsluta" #: /tmp/fish/implicit/share/completions/acpi.fish:15 #: /tmp/fish/implicit/share/completions/dmesg.fish:17 @@ -4314,15 +4112,17 @@ msgstr "" msgid "Output version information and exit" msgstr "" -#: /tmp/fish/implicit/share/completions/adb.fish:1 +#: /tmp/fish/implicit/share/completions/adb.fish:1 share/completions/adb.fish:3 msgid "Test if adb has yet to be given the subcommand" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:2 +#: share/completions/adb.fish:12 msgid "Run adb devices and parse output" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:3 +#: share/completions/adb.fish:24 msgid "Runs adb with any -s parameters already given on the command line" msgstr "" @@ -4571,12 +4371,10 @@ msgstr "" msgid "Kick current connection from device side and make it reconnect." msgstr "" -#: /tmp/fish/implicit/share/completions/adduser.fish:1 -#: /tmp/fish/implicit/share/completions/apt-cache.fish:28 -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:11 -#: /tmp/fish/implicit/share/completions/apt-config.fish:5 +#: share/completions/apt-cache.fish:29 share/completions/apt-cdrom.fish:12 +#: share/completions/apt-config.fish:6 msgid "Specify config file" -msgstr "" +msgstr "Välj konfigurationsfil" #: /tmp/fish/implicit/share/completions/adduser.fish:2 msgid "Do not run passwd to set the password" @@ -4803,7 +4601,6 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:2 #: /tmp/fish/implicit/share/completions/mocha.fish:1 #: /tmp/fish/implicit/share/completions/modinfo.fish:11 -#: /tmp/fish/implicit/share/completions/netcat.fish:7 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:1 #: /tmp/fish/implicit/share/completions/poweroff.fish:1 #: /tmp/fish/implicit/share/completions/terraform.fish:2 @@ -5796,531 +5593,373 @@ msgstr "" msgid "Unstar given packages on https://atom.io" msgstr "" -#: /tmp/fish/implicit/share/completions/apm.fish:84 -#: /tmp/fish/implicit/share/completions/apropos.fish:11 -#: /tmp/fish/implicit/share/completions/apt-build.fish:27 -#: /tmp/fish/implicit/share/completions/apt-cache.fish:27 -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:10 -#: /tmp/fish/implicit/share/completions/apt-config.fish:4 -#: /tmp/fish/implicit/share/completions/apt-file.fish:11 -#: /tmp/fish/implicit/share/completions/apt.fish:6 -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:14 -#: /tmp/fish/implicit/share/completions/apt-get.fish:46 -#: /tmp/fish/implicit/share/completions/apt-mark.fish:12 -#: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:2 -#: /tmp/fish/implicit/share/completions/apt-rdepends.fish:11 -#: /tmp/fish/implicit/share/completions/apt-show-source.fish:7 -#: /tmp/fish/implicit/share/completions/apt-sortpkgs.fish:3 -#: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:2 -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:2 -#: /tmp/fish/implicit/share/completions/at.fish:1 -#: /tmp/fish/implicit/share/completions/atq.fish:1 -#: /tmp/fish/implicit/share/completions/atrm.fish:1 -#: /tmp/fish/implicit/share/completions/aura.fish:17 -#: /tmp/fish/implicit/share/completions/bc.fish:6 -#: /tmp/fish/implicit/share/completions/bunzip2.fish:7 -#: /tmp/fish/implicit/share/completions/bzip2.fish:10 -#: /tmp/fish/implicit/share/completions/cdrecord.fish:1 -#: /tmp/fish/implicit/share/completions/chgrp.fish:10 -#: /tmp/fish/implicit/share/completions/chmod.fish:9 -#: /tmp/fish/implicit/share/completions/chown.fish:10 -#: /tmp/fish/implicit/share/completions/chsh.fish:3 -#: /tmp/fish/implicit/share/completions/configure.fish:2 -#: /tmp/fish/implicit/share/completions/cut.fish:9 -#: /tmp/fish/implicit/share/completions/diff.fish:24 -#: /tmp/fish/implicit/share/completions/du.fish:19 -#: /tmp/fish/implicit/share/completions/env.fish:6 -#: /tmp/fish/implicit/share/completions/find.fish:14 -#: /tmp/fish/implicit/share/completions/fish.fish:3 -#: /tmp/fish/implicit/share/completions/fish_indent.fish:2 -#: /tmp/fish/implicit/share/completions/fusermount.fish:3 -#: /tmp/fish/implicit/share/completions/gphoto2.fish:17 -#: /tmp/fish/implicit/share/completions/gprof.fish:31 -#: /tmp/fish/implicit/share/completions/grep.fish:43 -#: /tmp/fish/implicit/share/completions/gunzip.fish:13 -#: /tmp/fish/implicit/share/completions/gzip.fish:13 -#: /tmp/fish/implicit/share/completions/iconv.fish:6 -#: /tmp/fish/implicit/share/completions/id.fish:7 -#: /tmp/fish/implicit/share/completions/less.fish:41 -#: /tmp/fish/implicit/share/completions/ls.fish:58 -#: /tmp/fish/implicit/share/completions/make.fish:19 -#: /tmp/fish/implicit/share/completions/modprobe.fish:9 -#: /tmp/fish/implicit/share/completions/mount.fish:1 -#: /tmp/fish/implicit/share/completions/mplayer.fish:35 -#: /tmp/fish/implicit/share/completions/msgfmt.fish:25 -#: /tmp/fish/implicit/share/completions/mv.fish:11 -#: /tmp/fish/implicit/share/completions/nice.fish:4 -#: /tmp/fish/implicit/share/completions/pacaur.fish:11 -#: /tmp/fish/implicit/share/completions/pacman.fish:10 -#: /tmp/fish/implicit/share/completions/patch.fish:30 -#: /tmp/fish/implicit/share/completions/perl.fish:36 -#: /tmp/fish/implicit/share/completions/ping.fish:26 -#: /tmp/fish/implicit/share/completions/pkg.fish:1 -#: /tmp/fish/implicit/share/completions/ps.fish:38 -#: /tmp/fish/implicit/share/completions/python2.fish:13 -#: /tmp/fish/implicit/share/completions/python3.fish:13 -#: /tmp/fish/implicit/share/completions/python.fish:14 -#: /tmp/fish/implicit/share/completions/rmdir.fish:5 -#: /tmp/fish/implicit/share/completions/rpm.fish:2 -#: /tmp/fish/implicit/share/completions/rsync.fish:103 -#: /tmp/fish/implicit/share/completions/ruby.fish:20 -#: /tmp/fish/implicit/share/completions/screen.fish:34 -#: /tmp/fish/implicit/share/completions/setsid.fish:4 -#: /tmp/fish/implicit/share/completions/sort.fish:23 -#: /tmp/fish/implicit/share/completions/sshfs.fish:1 -#: /tmp/fish/implicit/share/completions/su.fish:7 -#: /tmp/fish/implicit/share/completions/tar.fish:53 -#: /tmp/fish/implicit/share/completions/tex.fish:2 -#: /tmp/fish/implicit/share/completions/time.fish:8 -#: /tmp/fish/implicit/share/completions/top.fish:12 -#: /tmp/fish/implicit/share/completions/umount.fish:2 -#: /tmp/fish/implicit/share/completions/uname.fish:18 -#: /tmp/fish/implicit/share/completions/valgrind.fish:4 -#: /tmp/fish/implicit/share/completions/wc.fish:7 -#: /tmp/fish/implicit/share/completions/w.fish:5 -#: /tmp/fish/implicit/share/completions/wget.fish:1 -#: /tmp/fish/implicit/share/completions/which.fish:11 -#: /tmp/fish/implicit/share/completions/who.fish:19 -#: /tmp/fish/implicit/share/completions/xargs.fish:14 -#: /tmp/fish/implicit/share/completions/xsel.fish:18 -#: /tmp/fish/implicit/share/completions/yaourt.fish:11 -#: /tmp/fish/implicit/share/completions/yum.fish:19 -#: /tmp/fish/implicit/share/completions/zcat.fish:4 +#: share/completions/apm.fish:2 share/completions/apropos.fish:20 +#: share/completions/apt-build.fish:29 share/completions/apt-cache.fish:28 +#: share/completions/apt-cdrom.fish:11 share/completions/apt-config.fish:5 +#: share/completions/apt-file.fish:12 share/completions/apt-ftparchive.fish:15 +#: share/completions/apt-proxy-import.fish:3 +#: share/completions/apt-rdepends.fish:12 +#: share/completions/apt-show-source.fish:8 +#: share/completions/apt-sortpkgs.fish:4 share/completions/apt-zip-inst.fish:3 +#: share/completions/apt-zip-list.fish:3 share/completions/at.fish:2 +#: share/completions/atq.fish:2 share/completions/atrm.fish:2 +#: share/completions/perl.fish:41 share/functions/__fish_complete_diff.fish:26 +#: share/functions/__fish_complete_grep.fish:44 +#: share/functions/__fish_complete_ls.fish:96 +#: share/functions/__fish_complete_python.fish:15 +#: share/functions/__fish_complete_tex.fish:5 msgid "Display version and exit" -msgstr "" +msgstr "Visa version och avsluta" -#: /tmp/fish/implicit/share/completions/apm.fish:85 +#: share/completions/apm.fish:3 msgid "Print APM info" -msgstr "" +msgstr "Visa APM-information" -#: /tmp/fish/implicit/share/completions/apm.fish:86 +#: share/completions/apm.fish:4 msgid "Print time remaining" -msgstr "" +msgstr "Visa kvarvarande tid" -#: /tmp/fish/implicit/share/completions/apm.fish:87 +#: share/completions/apm.fish:5 msgid "Monitor status info" -msgstr "" +msgstr "Bevaka statusinformation" -#: /tmp/fish/implicit/share/completions/apm.fish:88 +#: share/completions/apm.fish:6 msgid "Request APM standby mode" -msgstr "" +msgstr "Begär APM-standbyläge" -#: /tmp/fish/implicit/share/completions/apm.fish:89 +#: share/completions/apm.fish:7 msgid "Request APM suspend mode" -msgstr "" +msgstr "Begär APM-suspendläge" -#: /tmp/fish/implicit/share/completions/apm.fish:90 +#: share/completions/apm.fish:8 msgid "APM status debugging info" -msgstr "" +msgstr "APM-status debuginformation" -#: /tmp/fish/implicit/share/completions/apropos.fish:1 -msgid "whatis entry" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apropos.fish:3 +#: share/completions/apropos.fish:12 msgid "Print debugging info" -msgstr "" +msgstr "Visa debuginformation" -#: /tmp/fish/implicit/share/completions/apropos.fish:4 -#: /tmp/fish/implicit/share/completions/apt-file.fish:7 -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:3 -#: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:3 -#: /tmp/fish/implicit/share/completions/apt-show-source.fish:9 -#: /tmp/fish/implicit/share/completions/arp.fish:1 -#: /tmp/fish/implicit/share/completions/badblocks.fish:10 -#: /tmp/fish/implicit/share/completions/feh.fish:54 -#: /tmp/fish/implicit/share/completions/fuser.fish:11 -#: /tmp/fish/implicit/share/completions/gcc.fish:452 -#: /tmp/fish/implicit/share/completions/godoc.fish:22 -#: /tmp/fish/implicit/share/completions/grub-install.fish:10 -#: /tmp/fish/implicit/share/completions/makedepend.fish:11 -#: /tmp/fish/implicit/share/completions/mkdosfs.fish:20 -#: /tmp/fish/implicit/share/completions/mount.fish:3 -#: /tmp/fish/implicit/share/completions/mv.fish:9 -#: /tmp/fish/implicit/share/completions/ping.fish:25 -#: /tmp/fish/implicit/share/completions/python2.fish:12 -#: /tmp/fish/implicit/share/completions/python3.fish:12 -#: /tmp/fish/implicit/share/completions/python.fish:13 -#: /tmp/fish/implicit/share/completions/rmdir.fish:3 -#: /tmp/fish/implicit/share/completions/rpm.fish:4 -#: /tmp/fish/implicit/share/completions/ruby.fish:18 -#: /tmp/fish/implicit/share/completions/tar.fish:51 -#: /tmp/fish/implicit/share/completions/time.fish:6 -#: /tmp/fish/implicit/share/completions/umount.fish:4 -#: /tmp/fish/implicit/share/completions/valgrind.fish:6 -#: /tmp/fish/implicit/share/completions/vi.fish:8 -#: /tmp/fish/implicit/share/completions/wget.fish:9 -#: /tmp/fish/implicit/share/completions/zfs.fish:42 -#: /tmp/fish/implicit/share/completions/zfs.fish:87 -#: /tmp/fish/implicit/share/completions/zip.fish:13 -#: /tmp/fish/implicit/share/completions/zpool.fish:140 -#: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:11 +#: share/completions/apropos.fish:13 share/completions/apt-file.fish:8 +#: share/completions/apt-listchanges.fish:4 +#: share/completions/apt-proxy-import.fish:4 +#: share/completions/apt-show-source.fish:10 +#: share/functions/__fish_complete_python.fish:14 +#: share/functions/__fish_complete_ssh.fish:59 +#: share/functions/__fish_complete_vi.fish:98 msgid "Verbose mode" -msgstr "" +msgstr "Utförligt läge" -#: /tmp/fish/implicit/share/completions/apropos.fish:5 +#: share/completions/apropos.fish:14 msgid "Keyword as regex" -msgstr "" +msgstr "Nyckelord är ett reguljärt uttryck" -#: /tmp/fish/implicit/share/completions/apropos.fish:6 +#: share/completions/apropos.fish:15 msgid "Keyword as wildcards" -msgstr "" +msgstr "Nyckelord har jokertecken" -#: /tmp/fish/implicit/share/completions/apropos.fish:7 +#: share/completions/apropos.fish:16 msgid "Keyword as exactly match" -msgstr "" +msgstr "Nyckelord är en exakt matchning" -#: /tmp/fish/implicit/share/completions/apropos.fish:8 +#: share/completions/apropos.fish:17 msgid "Search for other system" -msgstr "" +msgstr "Sök efter annat system" -#: /tmp/fish/implicit/share/completions/apropos.fish:9 +#: share/completions/apropos.fish:18 msgid "Specify man path" -msgstr "" +msgstr "Välj manualsökväg" -#: /tmp/fish/implicit/share/completions/apropos.fish:10 +#: share/completions/apropos.fish:19 msgid "Specify a configuration file" -msgstr "" +msgstr "Välj en konfigurationsfil" -#: /tmp/fish/implicit/share/completions/apt-build.fish:2 +#: share/completions/apt-build.fish:4 msgid "Update list of packages" -msgstr "" +msgstr "Updatera paketlista" -#: /tmp/fish/implicit/share/completions/apt-build.fish:3 -#: /tmp/fish/implicit/share/completions/pkg.fish:42 +#: share/completions/apt-build.fish:5 msgid "Upgrade packages" -msgstr "" +msgstr "Upgradera paket" -#: /tmp/fish/implicit/share/completions/apt-build.fish:4 +#: share/completions/apt-build.fish:6 msgid "Rebuild your system" -msgstr "" +msgstr "Återbygg systemet" -#: /tmp/fish/implicit/share/completions/apt-build.fish:5 +#: share/completions/apt-build.fish:7 msgid "Build and install a new package" -msgstr "" +msgstr "Bygg och installera nytt paket" -#: /tmp/fish/implicit/share/completions/apt-build.fish:6 +#: share/completions/apt-build.fish:8 msgid "Download and extract a source" -msgstr "" +msgstr "Nedladda och extrahera källkod" -#: /tmp/fish/implicit/share/completions/apt-build.fish:7 +#: share/completions/apt-build.fish:9 msgid "Info on a package" -msgstr "" +msgstr "Visa info om paket" -#: /tmp/fish/implicit/share/completions/apt-build.fish:8 -#: /tmp/fish/implicit/share/completions/zypper.fish:19 +#: share/completions/apt-build.fish:10 share/completions/zypper.fish:45 msgid "Remove packages" -msgstr "" +msgstr "Radera paket" -#: /tmp/fish/implicit/share/completions/apt-build.fish:9 +#: share/completions/apt-build.fish:11 msgid "Erase built packages" -msgstr "" +msgstr "Radera byggda paket" -#: /tmp/fish/implicit/share/completions/apt-build.fish:10 +#: share/completions/apt-build.fish:12 msgid "Build source without install" -msgstr "" +msgstr "Bygg källkod utan att installera" -#: /tmp/fish/implicit/share/completions/apt-build.fish:11 +#: share/completions/apt-build.fish:13 msgid "Clean source directories" -msgstr "" +msgstr "Rengör källkodskataloger" -#: /tmp/fish/implicit/share/completions/apt-build.fish:12 +#: share/completions/apt-build.fish:14 msgid "Update source and rebuild" -msgstr "" +msgstr "Uppdatera källkod och bygg om dem" -#: /tmp/fish/implicit/share/completions/apt-build.fish:13 +#: share/completions/apt-build.fish:15 msgid "Update the repository" -msgstr "" +msgstr "Uppdatera förråd" -#: /tmp/fish/implicit/share/completions/apt-build.fish:14 +#: share/completions/apt-build.fish:16 msgid "Do not use gcc wrapper" -msgstr "" +msgstr "Använd inte omslag (wrapper) kring gcc" -#: /tmp/fish/implicit/share/completions/apt-build.fish:15 +#: share/completions/apt-build.fish:17 msgid "Remove build-dep" -msgstr "" +msgstr "Ta bort bygg-beroenden" -#: /tmp/fish/implicit/share/completions/apt-build.fish:16 +#: share/completions/apt-build.fish:18 msgid "Do not download source" -msgstr "" +msgstr "Ladda inte ner källkod" -#: /tmp/fish/implicit/share/completions/apt-build.fish:17 +#: share/completions/apt-build.fish:19 msgid "Specify build-dir" -msgstr "" +msgstr "Välj bygg-katalog" -#: /tmp/fish/implicit/share/completions/apt-build.fish:18 -#: /tmp/fish/implicit/share/completions/npm.fish:56 +#: share/completions/apt-build.fish:20 msgid "Rebuild a package" -msgstr "" +msgstr "Bygg om paket" -#: /tmp/fish/implicit/share/completions/apt-build.fish:19 +#: share/completions/apt-build.fish:21 msgid "Rebuild and install an installed package" -msgstr "" +msgstr "Bygg och installera ett installerat paket" -#: /tmp/fish/implicit/share/completions/apt-build.fish:20 -msgid "Use to build" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-build.fish:21 +#: share/completions/apt-build.fish:23 msgid "Apply patch" -msgstr "" +msgstr "Applicera som fix" -#: /tmp/fish/implicit/share/completions/apt-build.fish:22 -msgid "Prefix to strip on patch" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-build.fish:23 -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:20 -#: /tmp/fish/implicit/share/completions/yum.fish:12 +#: share/completions/apt-listbugs.fish:21 msgid "Assume yes to all questions" -msgstr "" +msgstr "Anta ja på alla frågor" #: /tmp/fish/implicit/share/completions/apt-build.fish:24 #: /tmp/fish/implicit/share/completions/apt-get.fish:35 msgid "Use purge instead of remove" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-build.fish:25 -msgid "Do not run update" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-build.fish:26 +#: share/completions/apt-build.fish:28 msgid "Specify sources.list file" -msgstr "" +msgstr "Välj sources.list fil" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:2 +#: share/completions/apt-cache.fish:3 msgid "Build apt cache" -msgstr "" +msgstr "Bygg aptcache" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:3 +#: share/completions/apt-cache.fish:4 msgid "Show package info" -msgstr "" +msgstr "Visa paketinfo" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:4 +#: share/completions/apt-cache.fish:5 msgid "Show cache statistics" -msgstr "" +msgstr "Visa cachestatistik" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:5 +#: share/completions/apt-cache.fish:6 msgid "Show source package" -msgstr "" +msgstr "Visa alla källkodspaket" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:6 +#: share/completions/apt-cache.fish:7 msgid "Show packages in cache" -msgstr "" +msgstr "Visa paket i cache" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:7 +#: share/completions/apt-cache.fish:8 msgid "Print available list" -msgstr "" +msgstr "Visa tillgängliga paket" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:8 +#: share/completions/apt-cache.fish:9 msgid "List unmet dependencies in cache" -msgstr "" +msgstr "Visa ouppklarade beroenden i cache" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:9 +#: share/completions/apt-cache.fish:10 msgid "Display package record" -msgstr "" +msgstr "Visa paketpost" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:10 +#: share/completions/apt-cache.fish:11 msgid "Search packagename by REGEX" -msgstr "" +msgstr "Sök paketnamn som matchar reguljärt uttryck" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:11 -msgid "Search full package name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-cache.fish:12 +#: share/completions/apt-cache.fish:13 msgid "Search packagename only" -msgstr "" +msgstr "Sök enbart paketnamn" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:13 +#: share/completions/apt-cache.fish:14 msgid "List dependencies for the package" -msgstr "" +msgstr "Visa beroenden för paket" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:14 +#: share/completions/apt-cache.fish:15 msgid "List reverse dependencies for the package" -msgstr "" +msgstr "Visa paket som beror på det givna paketet" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:15 +#: share/completions/apt-cache.fish:16 msgid "Print package name by prefix" -msgstr "" +msgstr "Visa paket som matchar det givna prefixet" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:16 +#: share/completions/apt-cache.fish:17 msgid "Generate dotty output for packages" -msgstr "" +msgstr "Generera utdata för dotty" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:17 +#: share/completions/apt-cache.fish:18 msgid "Debug preferences file" -msgstr "" +msgstr "Fil för debuginställningar" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:18 +#: share/completions/apt-cache.fish:19 msgid "Select file to store package cache" -msgstr "" +msgstr "Välj paketcache" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:19 +#: share/completions/apt-cache.fish:20 msgid "Select file to store source cache" -msgstr "" +msgstr "Välj fil för källkodscache" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:20 -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:9 -#: /tmp/fish/implicit/share/completions/apt-get.fish:24 -#: /tmp/fish/implicit/share/completions/configure.fish:3 -#: /tmp/fish/implicit/share/completions/gpg.fish:62 -#: /tmp/fish/implicit/share/completions/hugo.fish:5 -#: /tmp/fish/implicit/share/completions/make.fish:16 -#: /tmp/fish/implicit/share/completions/ping.fish:16 -#: /tmp/fish/implicit/share/completions/rpm.fish:3 -#: /tmp/fish/implicit/share/completions/screen.fish:29 -#: /tmp/fish/implicit/share/completions/ssh.fish:15 -#: /tmp/fish/implicit/share/completions/valgrind.fish:5 -#: /tmp/fish/implicit/share/completions/wget.fish:8 -#: /tmp/fish/implicit/share/completions/zip.fish:12 +#: share/completions/apt-cache.fish:21 share/completions/apt-ftparchive.fish:10 msgid "Quiet mode" -msgstr "" +msgstr "Tyst läge" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:21 +#: share/completions/apt-cache.fish:22 msgid "Print important dependencies" -msgstr "" +msgstr "Visa viktiga beroenden" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:22 +#: share/completions/apt-cache.fish:23 msgid "Print full records" -msgstr "" +msgstr "Visa fulla poster" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:23 +#: share/completions/apt-cache.fish:24 msgid "Auto-gen package cache" -msgstr "" +msgstr "Autogenerera paketcache" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:24 +#: share/completions/apt-cache.fish:25 msgid "Print all names" -msgstr "" +msgstr "Visa alla namn" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:25 +#: share/completions/apt-cache.fish:26 msgid "Dep and rdep recursive" -msgstr "" +msgstr "Rekursiva beroendeberäkningar" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:26 +#: share/completions/apt-cache.fish:27 msgid "Limit to installed" -msgstr "" +msgstr "Bara installerade paket" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:29 -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:12 -#: /tmp/fish/implicit/share/completions/apt-config.fish:6 -#: /tmp/fish/implicit/share/completions/apt-extracttemplates.fish:4 -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:9 +#: share/completions/apt-cache.fish:30 share/completions/apt-cdrom.fish:13 +#: share/completions/apt-config.fish:7 +#: share/completions/apt-extracttemplates.fish:6 msgid "Specify options" -msgstr "" +msgstr "Välj inställningar" -#: /tmp/fish/implicit/share/completions/apt-cache.fish:30 -#: /tmp/fish/implicit/share/completions/apt.fish:2 -#: /tmp/fish/implicit/share/completions/apt-get.fish:2 -#: /tmp/fish/implicit/share/completions/apt-mark.fish:2 +#: share/completions/apt-cache.fish:32 share/completions/apt-get.fish:12 +#: share/completions/apt-mark.fish:12 msgid "Test if apt command should have packages as potential completion" -msgstr "" +msgstr "Testa om aptkommando borde ha paket som potentiell komplettering" -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:2 +#: share/completions/apt-cdrom.fish:3 msgid "Add new disc to source list" -msgstr "" +msgstr "Lägg till skiva till källlista" -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:3 +#: share/completions/apt-cdrom.fish:4 msgid "Report identity of disc" -msgstr "" +msgstr "Visa skivas identitet" -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:4 -#: /tmp/fish/implicit/share/completions/fusermount.fish:1 -#: /tmp/fish/implicit/share/completions/udisksctl.fish:21 -#: /tmp/fish/implicit/share/completions/umount.fish:1 +#: share/completions/apt-cdrom.fish:5 share/completions/mount.fish:7 msgid "Mount point" -msgstr "" +msgstr "Monteringskatalog" -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:5 +#: share/completions/apt-cdrom.fish:6 msgid "Rename a disc" -msgstr "" +msgstr "Byt namn på skiva" -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:6 +#: share/completions/apt-cdrom.fish:7 msgid "No mounting" -msgstr "" +msgstr "Montera inte" -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:7 +#: share/completions/apt-cdrom.fish:8 msgid "Fast copy" -msgstr "" +msgstr "Snabb kopiering" -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:8 +#: share/completions/apt-cdrom.fish:9 msgid "Thorough package scan" -msgstr "" +msgstr "Nogrann paketskanning" -#: /tmp/fish/implicit/share/completions/apt-cdrom.fish:9 +#: share/completions/apt-cdrom.fish:10 msgid "No changes" -msgstr "" +msgstr "Inga förändringar" -#: /tmp/fish/implicit/share/completions/apt-config.fish:2 -msgid "Access config file from shell" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-config.fish:3 +#: share/completions/apt-config.fish:4 msgid "Dump contents of config file" -msgstr "" +msgstr "Skriv ut innehåll av konfigureringsfil" -#: /tmp/fish/implicit/share/completions/apt-extracttemplates.fish:2 +#: share/completions/apt-extracttemplates.fish:4 msgid "Set temp dir" -msgstr "" +msgstr "Välj temporär katalog" -#: /tmp/fish/implicit/share/completions/apt-extracttemplates.fish:3 +#: share/completions/apt-extracttemplates.fish:5 msgid "Specifiy config file" -msgstr "" +msgstr "Välj konfigurationsfil" -#: /tmp/fish/implicit/share/completions/apt-file.fish:2 +#: share/completions/apt-file.fish:3 msgid "Resync package contents from source" -msgstr "" +msgstr "Återsynkronisera paketinnehåll från källkod" -#: /tmp/fish/implicit/share/completions/apt-file.fish:3 +#: share/completions/apt-file.fish:4 msgid "Search package containing pattern" -msgstr "" +msgstr "Sök paket innehållande mönster" -#: /tmp/fish/implicit/share/completions/apt-file.fish:4 +#: share/completions/apt-file.fish:5 msgid "List contents of a package matching pattern" -msgstr "" +msgstr "Lista innehåll av paket som matchar mönster" -#: /tmp/fish/implicit/share/completions/apt-file.fish:5 +#: share/completions/apt-file.fish:6 msgid "Remove all gz files from cache" -msgstr "" +msgstr "Ta bort alla gz-filer från cache" -#: /tmp/fish/implicit/share/completions/apt-file.fish:6 +#: share/completions/apt-file.fish:7 msgid "Set cache dir" -msgstr "" +msgstr "Välj cache katalog" -#: /tmp/fish/implicit/share/completions/apt-file.fish:8 -msgid "Use cdrom-mount-point" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-file.fish:9 -#: /tmp/fish/implicit/share/completions/apt-file.fish:15 +#: share/completions/apt-file.fish:10 share/completions/apt-file.fish:16 msgid "Do not expand pattern" -msgstr "" +msgstr "Expandera inte mönster" -#: /tmp/fish/implicit/share/completions/apt-file.fish:10 +#: share/completions/apt-file.fish:11 msgid "Pattern is regexp" -msgstr "" +msgstr "Mönster är ett reguljärt uttryck" -#: /tmp/fish/implicit/share/completions/apt-file.fish:12 +#: share/completions/apt-file.fish:13 msgid "Set arch" -msgstr "" +msgstr "Välj arkitektur" -#: /tmp/fish/implicit/share/completions/apt-file.fish:13 +#: share/completions/apt-file.fish:14 msgid "Set sources.list file" -msgstr "" +msgstr "Välj sources.list fil" -#: /tmp/fish/implicit/share/completions/apt-file.fish:14 +#: share/completions/apt-file.fish:15 msgid "Only display package name" -msgstr "" +msgstr "Visa bara paketnamn" -#: /tmp/fish/implicit/share/completions/apt-file.fish:16 +#: share/completions/apt-file.fish:17 msgid "Run in dummy mode" -msgstr "" +msgstr "Kör i dummyläge" -#: /tmp/fish/implicit/share/completions/apt.fish:1 -#: /tmp/fish/implicit/share/completions/apt-get.fish:1 -#: /tmp/fish/implicit/share/completions/apt-mark.fish:1 +#: share/completions/apt-get.fish:3 share/completions/apt-mark.fish:3 msgid "Test if apt has yet to be given the subcommand" -msgstr "" +msgstr "Testa om apt har tagit emot ett underkommando" #: /tmp/fish/implicit/share/completions/apt.fish:3 #: /tmp/fish/implicit/share/completions/snap.fish:2 @@ -6332,126 +5971,117 @@ msgstr "" msgid "Set a configuration option" msgstr "" -#: /tmp/fish/implicit/share/completions/apt.fish:8 -#: /tmp/fish/implicit/share/completions/hugo.fish:1 -#: /tmp/fish/implicit/share/completions/man.fish:14 -#: /tmp/fish/implicit/share/completions/modprobe.fish:2 -#: /tmp/fish/implicit/share/completions/yum.fish:13 -#: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:8 +#: share/functions/__fish_complete_ssh.fish:10 msgid "Configuration file" -msgstr "" +msgstr "Konfigureringsfil" #: /tmp/fish/implicit/share/completions/apt.fish:9 msgid "Target release" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:2 +#: share/completions/apt-ftparchive.fish:3 msgid "Generate package from source" -msgstr "" +msgstr "Generera paket från källkod" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:3 +#: share/completions/apt-ftparchive.fish:4 msgid "Generate source index file" -msgstr "" +msgstr "Generera källindexfil" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:4 +#: share/completions/apt-ftparchive.fish:5 msgid "Generate contents file" -msgstr "" +msgstr "Generera filinnehåll" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:5 +#: share/completions/apt-ftparchive.fish:6 msgid "Generate release file" -msgstr "" +msgstr "Skapa release-fil" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:6 +#: share/completions/apt-ftparchive.fish:7 msgid "Remove records" -msgstr "" +msgstr "Ta bort poster" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:7 +#: share/completions/apt-ftparchive.fish:8 msgid "Generate MD5 sums" -msgstr "" +msgstr "Generera MD5-summa" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:8 +#: share/completions/apt-ftparchive.fish:9 msgid "Use a binary db" -msgstr "" +msgstr "Använd binär databas" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:10 +#: share/completions/apt-ftparchive.fish:11 msgid "Perform delinking" -msgstr "" +msgstr "Utför avlinkning" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:11 +#: share/completions/apt-ftparchive.fish:12 msgid "Perform contents generation" -msgstr "" +msgstr "Utför innehållsgenerering" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:12 -msgid "Use source override" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:13 +#: share/completions/apt-ftparchive.fish:14 msgid "Make caching db readonly" -msgstr "" +msgstr "Gör cache skrivskyddad" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:15 +#: share/completions/apt-ftparchive.fish:16 msgid "Use config file" -msgstr "" +msgstr "Välj konfigurationsfil" -#: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:16 -#: /tmp/fish/implicit/share/completions/apt-sortpkgs.fish:5 -#: /tmp/fish/implicit/share/completions/composer.fish:7 +#: share/completions/apt-ftparchive.fish:17 msgid "Set config options" -msgstr "" +msgstr "Välj konfigurationsinställningar" -#: /tmp/fish/implicit/share/completions/apt-get.fish:5 +#: share/completions/apt-get.fish:24 msgid "Update sources" -msgstr "" +msgstr "Uppdatera källor" -#: /tmp/fish/implicit/share/completions/apt-get.fish:6 +#: share/completions/apt-get.fish:25 msgid "Upgrade or install newest packages" -msgstr "" +msgstr "Bygg och installera nyaste paket" -#: /tmp/fish/implicit/share/completions/apt-get.fish:7 +#: share/completions/apt-get.fish:26 msgid "Use with dselect front-end" -msgstr "" +msgstr "Använd med dselect-gränssnitt" -#: /tmp/fish/implicit/share/completions/apt-get.fish:8 +#: share/completions/apt-get.fish:27 msgid "Distro upgrade" -msgstr "" +msgstr "Distibutionsuppgradering" -#: /tmp/fish/implicit/share/completions/apt-get.fish:9 +#: share/completions/apt-get.fish:28 msgid "Install one or more packages" -msgstr "" +msgstr "Installera ett eller flera paket" #: /tmp/fish/implicit/share/completions/apt-get.fish:10 msgid "Display changelog of one or more packages" msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:11 +#: share/completions/apt-get.fish:29 msgid "Remove and purge one or more packages" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-get.fish:12 +#: share/completions/apt-get.fish:30 msgid "Remove one or more packages" -msgstr "" +msgstr "Radera ett eller flera paket" -#: /tmp/fish/implicit/share/completions/apt-get.fish:13 +#: share/completions/apt-get.fish:31 msgid "Fetch source packages" -msgstr "" +msgstr "Hämta källkodspaket" -#: /tmp/fish/implicit/share/completions/apt-get.fish:14 +#: share/completions/apt-get.fish:32 msgid "Install/remove packages for dependencies" -msgstr "" +msgstr "Installera/ta bort paket för beroenden" -#: /tmp/fish/implicit/share/completions/apt-get.fish:15 +#: share/completions/apt-get.fish:33 msgid "Update cache and check dependencies" -msgstr "" +msgstr "Uppdatera källkod och verifiera beroenden" -#: /tmp/fish/implicit/share/completions/apt-get.fish:16 +#: share/completions/apt-get.fish:34 msgid "Clean local caches and packages" -msgstr "" +msgstr "Rengör lokala cachear och paket" -#: /tmp/fish/implicit/share/completions/apt-get.fish:17 +#: share/completions/apt-get.fish:35 msgid "Clean packages no longer be downloaded" -msgstr "" +msgstr "Rengör paket som inte längre skall nedladdas" #: /tmp/fish/implicit/share/completions/apt-get.fish:18 +#: share/completions/apt-get.fish:36 msgid "Remove automatically installed packages" msgstr "" @@ -6459,32 +6089,10 @@ msgstr "" msgid "Do not install recommended packages" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-get.fish:20 -#: /tmp/fish/implicit/share/completions/aptitude.fish:28 -msgid "Download Only" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:21 -#: /tmp/fish/implicit/share/completions/aptitude.fish:29 -msgid "Correct broken dependencies" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:22 -msgid "Ignore missing packages" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:23 -msgid "Disable downloading packages" -msgstr "" - #: /tmp/fish/implicit/share/completions/apt-get.fish:25 msgid "Perform a simulation" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-get.fish:26 -msgid "Automatic yes to prompts" -msgstr "" - #: /tmp/fish/implicit/share/completions/apt-get.fish:27 msgid "Show upgraded packages" msgstr "" @@ -6493,26 +6101,10 @@ msgstr "" msgid "Show full versions for packages" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-get.fish:29 -msgid "Compile source packages" -msgstr "" - #: /tmp/fish/implicit/share/completions/apt-get.fish:30 msgid "Install recommended packages" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-get.fish:31 -msgid "Ignore package Holds" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:32 -msgid "Do not upgrade packages" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:33 -msgid "Force yes" -msgstr "" - #: /tmp/fish/implicit/share/completions/apt-get.fish:34 msgid "Print the URIs" msgstr "" @@ -6521,57 +6113,20 @@ msgstr "" msgid "Reinstall packages" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-get.fish:37 -msgid "Erase obsolete files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:38 -msgid "Control default input to the policy engine" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:39 -msgid "Only perform operations that are trivial" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:40 -msgid "Abort if any packages are to be removed" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:41 -msgid "Only accept source packages" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:42 -msgid "Download only diff file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:43 -msgid "Download only tar file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:44 -msgid "Only process arch-dependant build-dependencies" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:45 -msgid "Ignore non-authenticated packages" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-get.fish:47 -#: /tmp/fish/implicit/share/completions/apt-mark.fish:13 +#: share/completions/apt-get.fish:65 share/completions/apt-mark.fish:32 msgid "Specify a config file" -msgstr "" +msgstr "Välj en konfigurationsfil" -#: /tmp/fish/implicit/share/completions/apt-get.fish:48 -#: /tmp/fish/implicit/share/completions/apt-mark.fish:14 +#: share/completions/apt-get.fish:66 share/completions/apt-mark.fish:33 msgid "Set a config option" -msgstr "" +msgstr "Välj en konfigurationsinställning" -#: /tmp/fish/implicit/share/completions/aptitude.fish:1 +#: share/completions/aptitude.fish:3 msgid "Test if aptitude has yet to be given the subcommand" -msgstr "" +msgstr "Testa om aptitude har tagit emot ett underkommando" #: /tmp/fish/implicit/share/completions/aptitude.fish:2 +#: share/completions/aptitude.fish:12 msgid "Test if aptitude command should have packages as potential completion" msgstr "" @@ -6580,10 +6135,12 @@ msgid "Display a brief help message. Identical to the help action" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:5 +#: share/completions/aptitude.fish:24 msgid "Remove any cached packages which can no longer be downloaded" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:6 +#: share/completions/aptitude.fish:25 msgid "Remove all downloaded .deb files from the package cache directory" msgstr "" @@ -6592,78 +6149,97 @@ msgid "Forget all internal information about what packages are 'new'" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:8 +#: share/completions/aptitude.fish:27 msgid "Cancel all scheduled actions on all packages" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:9 +#: share/completions/aptitude.fish:28 msgid "Update the list of available packages from the apt sources" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:10 +#: share/completions/aptitude.fish:29 msgid "Upgrade installed packages to their most recent version" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:11 +#: share/completions/aptitude.fish:30 msgid "Download and displays the Debian changelog for the packages" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:12 +#: share/completions/aptitude.fish:31 msgid "Upgrade, removing or installing packages as necessary" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:13 +#: share/completions/aptitude.fish:32 msgid "Download the packages to the current directory" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:14 +#: share/completions/aptitude.fish:33 msgid "Forbid the upgrade to a particular version" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:15 +#: share/completions/aptitude.fish:34 msgid "Ignore the packages by future upgrade commands" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:16 +#: share/completions/aptitude.fish:35 msgid "Install the packages" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:17 +#: share/completions/aptitude.fish:36 msgid "Cancel any scheduled actions on the packages" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:18 +#: share/completions/aptitude.fish:37 msgid "Mark packages as automatically installed" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:19 +#: share/completions/aptitude.fish:38 msgid "Remove and delete all associated configuration and data files" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:20 +#: share/completions/aptitude.fish:39 msgid "Reinstall the packages" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:21 +#: share/completions/aptitude.fish:40 msgid "Remove the packages" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:22 +#: share/completions/aptitude.fish:41 msgid "Display detailed information about the packages" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:23 +#: share/completions/aptitude.fish:42 msgid "Consider the packages by future upgrade commands" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:24 +#: share/completions/aptitude.fish:43 msgid "Mark packages as manually installed" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:25 +#: share/completions/aptitude.fish:44 msgid "Search for packages matching one of the patterns" msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:26 +#: share/completions/aptitude.fish:45 msgid "Display brief summary of the available commands and options" msgstr "" @@ -6743,178 +6319,167 @@ msgstr "" msgid "Specify the display width for the output from the search command" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-key.fish:1 +#: share/completions/apt-key.fish:2 msgid "Add a new key" -msgstr "" +msgstr "Lägg till ny nyckel" -#: /tmp/fish/implicit/share/completions/apt-key.fish:2 +#: share/completions/apt-key.fish:3 msgid "Remove a key" -msgstr "" +msgstr "Ta bort en nyckel" -#: /tmp/fish/implicit/share/completions/apt-key.fish:3 +#: share/completions/apt-key.fish:4 msgid "List trusted keys" -msgstr "" +msgstr "Visa pålitliga nycklar" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:2 +#: share/completions/apt-listbugs.fish:3 msgid "Set severity" -msgstr "" +msgstr "Välj allvarlighetgrad" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:3 +#: share/completions/apt-listbugs.fish:4 msgid "Tags you want to see" -msgstr "" +msgstr "Välj taggar du vill se" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:4 +#: share/completions/apt-listbugs.fish:5 msgid "Bug-status you want to see" -msgstr "" +msgstr "Bugg-status du vill se" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:5 +#: share/completions/apt-listbugs.fish:6 msgid "Ignore bugs in your system" -msgstr "" +msgstr "Ignorera buggar i ditt system" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:6 +#: share/completions/apt-listbugs.fish:7 msgid "Ignore newer bugs than upgrade packages" -msgstr "" +msgstr "Ignorera nyare buggar än uppgraderade paket" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:7 +#: share/completions/apt-listbugs.fish:8 msgid "Bugs for downgrade packages" -msgstr "" +msgstr "Buggar för nedgraderade paket" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:8 +#: share/completions/apt-listbugs.fish:9 msgid "Bug Tracking system" -msgstr "" +msgstr "Buggtrackingsystem" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:9 +#: share/completions/apt-listbugs.fish:10 msgid "Specify port for web interface" -msgstr "" +msgstr "Välj port för webbinterface" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:10 +#: share/completions/apt-listbugs.fish:11 msgid "Use daily bug report" -msgstr "" +msgstr "Använd daglig buggrapport" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:11 +#: share/completions/apt-listbugs.fish:12 msgid "Use the raw index.db" -msgstr "" +msgstr "Använd bar index.db" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:12 +#: share/completions/apt-listbugs.fish:13 msgid "Specify index dir" -msgstr "" +msgstr "Välj indexkatalog" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:13 +#: share/completions/apt-listbugs.fish:14 msgid "Specify Pin-Priority value" -msgstr "" +msgstr "Välj Pin-prioritetsvärde" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:14 +#: share/completions/apt-listbugs.fish:15 msgid "Specify the title of rss" -msgstr "" +msgstr "Välj rss-titel" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:15 +#: share/completions/apt-listbugs.fish:16 msgid "Retrieve fresh bugs" -msgstr "" +msgstr "Hämta färska buggar" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:16 -#: /tmp/fish/implicit/share/completions/aura.fish:31 -#: /tmp/fish/implicit/share/completions/pacaur.fish:47 -#: /tmp/fish/implicit/share/completions/pacman.fish:25 -#: /tmp/fish/implicit/share/completions/scp.fish:7 -#: /tmp/fish/implicit/share/completions/yaourt.fish:39 +#: share/completions/apt-listbugs.fish:17 msgid "Do not display progress bar" -msgstr "" +msgstr "Visa inte förloppsindikator" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:17 +#: share/completions/apt-listbugs.fish:18 msgid "Specify local cache dir" -msgstr "" +msgstr "Välj lokal cachekatalog" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:18 +#: share/completions/apt-listbugs.fish:19 msgid "Specify the expire cache timer" -msgstr "" +msgstr "Välj cacheexpireringstimer" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:19 -msgid "Specify apt config file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:21 +#: share/completions/apt-listbugs.fish:22 msgid "Assume no to all questions" -msgstr "" +msgstr "Anta nej på alla frågor" #: /tmp/fish/implicit/share/completions/apt-listbugs.fish:22 msgid "List bugs from packages" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-listbugs.fish:23 -msgid "List bugs in rss format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:2 -msgid "Read filenames from pipe" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:4 +#: share/completions/apt-listchanges.fish:5 msgid "Select frontend interface" -msgstr "" +msgstr "Välj gränssnitt" -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:5 -#: /tmp/fish/implicit/share/completions/darcs.fish:749 +#: share/completions/darcs.fish:915 msgid "Specify email address" -msgstr "" +msgstr "Välj e-postkatalog" -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:6 +#: share/completions/apt-listchanges.fish:7 msgid "Ask confirmation" -msgstr "" +msgstr "Bekräfta val" -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:7 +#: share/completions/apt-listchanges.fish:8 msgid "Display all changelogs" -msgstr "" +msgstr "Visa alla händelseloggar" -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:8 +#: share/completions/apt-listchanges.fish:9 msgid "Avoid changelogs from db in named file" -msgstr "" +msgstr "Undvik händelseloggar från databas i fil" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:9 msgid "Select display" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:10 +#: share/completions/apt-listchanges.fish:11 msgid "Insert header" -msgstr "" +msgstr "Lägg till huvud" -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:11 -#: /tmp/fish/implicit/share/completions/ps.fish:40 +#: share/completions/apt-listchanges.fish:12 msgid "Display debug info" -msgstr "" +msgstr "Visa debuginformation" -#: /tmp/fish/implicit/share/completions/apt-listchanges.fish:12 +#: share/completions/apt-listchanges.fish:13 msgid "Select an option profile" -msgstr "" +msgstr "Välj än inställningsprofil" #: /tmp/fish/implicit/share/completions/apt-mark.fish:5 +#: share/completions/apt-mark.fish:24 msgid "Mark a package as automatically installed" msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:6 +#: share/completions/apt-mark.fish:25 msgid "Mark a package as manually installed" msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:7 +#: share/completions/apt-mark.fish:26 msgid "Hold a package, prevent automatic installation or removal" msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:8 +#: share/completions/apt-mark.fish:27 msgid "Cancel a hold on a package" msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:9 +#: share/completions/apt-mark.fish:28 msgid "Show automatically installed packages" msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:10 +#: share/completions/apt-mark.fish:29 msgid "Show manually installed packages" msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:11 +#: share/completions/apt-mark.fish:30 msgid "Show held packages" msgstr "" #: /tmp/fish/implicit/share/completions/apt-mark.fish:15 +#: share/completions/apt-mark.fish:34 msgid "Write package statistics to a file" msgstr "" @@ -6922,117 +6487,109 @@ msgstr "" msgid "Generate master file" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-move.fish:2 -msgid "Alias for 'get'" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-move.fish:3 +#: share/completions/apt-move.fish:4 msgid "Move packages to local tree" -msgstr "" +msgstr "Flytta paket till lokalt träd" -#: /tmp/fish/implicit/share/completions/apt-move.fish:4 +#: share/completions/apt-move.fish:5 msgid "Delete obsolete package files" -msgstr "" +msgstr "Radera obsoleta paketfiler" -#: /tmp/fish/implicit/share/completions/apt-move.fish:5 +#: share/completions/apt-move.fish:6 msgid "Build new local files" -msgstr "" +msgstr "Bygg nya lokala filer" -#: /tmp/fish/implicit/share/completions/apt-move.fish:6 +#: share/completions/apt-move.fish:7 msgid "Rebuild index files" -msgstr "" +msgstr "Bygg om indexfiler" -#: /tmp/fish/implicit/share/completions/apt-move.fish:7 +#: share/completions/apt-move.fish:8 msgid "Move packages from cache to local mirror" -msgstr "" +msgstr "Flytta paket från cache till lokal spegel" -#: /tmp/fish/implicit/share/completions/apt-move.fish:8 +#: share/completions/apt-move.fish:9 msgid "Alias for 'move delete packages'" -msgstr "" +msgstr "Alias för 'move delete packages'" -#: /tmp/fish/implicit/share/completions/apt-move.fish:9 +#: share/completions/apt-move.fish:10 msgid "Alias for 'update'" -msgstr "" +msgstr "Alias för 'update'" -#: /tmp/fish/implicit/share/completions/apt-move.fish:10 +#: share/completions/apt-move.fish:11 msgid "Download package missing from mirror" -msgstr "" +msgstr "Ladde ner paket som saknas från spegel" -#: /tmp/fish/implicit/share/completions/apt-move.fish:11 +#: share/completions/apt-move.fish:12 msgid "Sync packages installed" -msgstr "" +msgstr "Synkronisera installerade paket" #: /tmp/fish/implicit/share/completions/apt-move.fish:13 msgid "Move file specified on commandline" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-move.fish:14 +#: share/completions/apt-move.fish:15 msgid "List packages that may serve as input to mirrorbin or mirrorsource" -msgstr "" +msgstr "Visa paket som kan användas som input till mirrorbin eller mirrorsrc" -#: /tmp/fish/implicit/share/completions/apt-move.fish:15 +#: share/completions/apt-move.fish:16 msgid "Fetch package from STDIN" -msgstr "" +msgstr "Hämta paket från standard in" -#: /tmp/fish/implicit/share/completions/apt-move.fish:16 +#: share/completions/apt-move.fish:17 msgid "Fetch source package from STDIN" -msgstr "" +msgstr "Hämta källkodspaket från standard in" -#: /tmp/fish/implicit/share/completions/apt-move.fish:17 +#: share/completions/apt-move.fish:18 msgid "Process all packages" -msgstr "" +msgstr "Behandla alla paket" -#: /tmp/fish/implicit/share/completions/apt-move.fish:18 -msgid "Use specific conffile" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-move.fish:19 +#: share/completions/apt-move.fish:20 msgid "Force deletion" -msgstr "" +msgstr "Tvinga radering" -#: /tmp/fish/implicit/share/completions/apt-move.fish:20 +#: share/completions/apt-move.fish:21 msgid "Suppresses normal output" -msgstr "" +msgstr "Tyst läge" -#: /tmp/fish/implicit/share/completions/apt-move.fish:21 +#: share/completions/apt-move.fish:22 msgid "Test run" -msgstr "" +msgstr "Testkörning" -#: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:4 +#: share/completions/apt-proxy-import.fish:5 msgid "No message to STDOUT" -msgstr "" +msgstr "Inga meddelanden till standard ut" -#: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:5 +#: share/completions/apt-proxy-import.fish:6 msgid "Recurse into subdir" -msgstr "" +msgstr "Rekursera till underkataloger" -#: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:6 +#: share/completions/apt-proxy-import.fish:7 msgid "Dir to import" -msgstr "" +msgstr "Katalog att importera" -#: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:7 +#: share/completions/apt-proxy-import.fish:8 msgid "Change to user" -msgstr "" +msgstr "Ändra till användare" -#: /tmp/fish/implicit/share/completions/apt-proxy-import.fish:8 +#: share/completions/apt-proxy-import.fish:9 msgid "Debug level[default 0]" -msgstr "" +msgstr "Debugnivå [Standard är 0]" -#: /tmp/fish/implicit/share/completions/apt-rdepends.fish:2 +#: share/completions/apt-rdepends.fish:3 msgid "Show build dependencies" -msgstr "" +msgstr "Visa byggberoenden" -#: /tmp/fish/implicit/share/completions/apt-rdepends.fish:3 +#: share/completions/apt-rdepends.fish:4 msgid "Generate a dotty graph" -msgstr "" +msgstr "Generera en dottygraf" -#: /tmp/fish/implicit/share/completions/apt-rdepends.fish:4 +#: share/completions/apt-rdepends.fish:5 msgid "Show state of dependencies" -msgstr "" +msgstr "Visa beroendens tillstånd" -#: /tmp/fish/implicit/share/completions/apt-rdepends.fish:5 +#: share/completions/apt-rdepends.fish:6 msgid "List packages depending on" -msgstr "" +msgstr "Visa paket som beror på" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:6 msgid "Comma-separated list of dependency types to follow recursively" @@ -7042,270 +6599,203 @@ msgstr "" msgid "Comma-separated list of dependency types to show" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-rdepends.fish:8 -msgid "" -"Comma-separated list of package installation states to follow recursively" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-rdepends.fish:9 -msgid "Comma-separated list of package installation states to show" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-rdepends.fish:10 +#: share/completions/apt-rdepends.fish:11 msgid "Display man page" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-setup.fish:1 -msgid "Probe a CD" -msgstr "" +msgstr "Visa manualsida" #: /tmp/fish/implicit/share/completions/apt-setup.fish:2 msgid "Run in non-interactive mode" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-show-source.fish:2 -#: /tmp/fish/implicit/share/completions/apt-show-source.fish:3 -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:9 -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:10 +#: share/completions/apt-show-source.fish:3 +#: share/completions/apt-show-source.fish:4 +#: share/completions/apt-show-versions.fish:10 +#: share/completions/apt-show-versions.fish:11 msgid "Read package from file" -msgstr "" +msgstr "Läs paket från fil" -#: /tmp/fish/implicit/share/completions/apt-show-source.fish:4 -#: /tmp/fish/implicit/share/completions/apt-show-source.fish:5 -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:11 -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:12 +#: share/completions/apt-show-source.fish:5 +#: share/completions/apt-show-source.fish:6 +#: share/completions/apt-show-versions.fish:12 +#: share/completions/apt-show-versions.fish:13 msgid "Specify APT list dir" -msgstr "" +msgstr "Välj APT listningskatalog" -#: /tmp/fish/implicit/share/completions/apt-show-source.fish:6 +#: share/completions/apt-show-source.fish:7 msgid "List PKG info" -msgstr "" +msgstr "Lista paketinformation" -#: /tmp/fish/implicit/share/completions/apt-show-source.fish:8 +#: share/completions/apt-show-source.fish:9 msgid "Print all source packages with version" -msgstr "" +msgstr "Visa alla källkodspaket med version" -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:2 +#: share/completions/apt-show-versions.fish:3 msgid "Print PKG versions" -msgstr "" +msgstr "Visa paketversioner" -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:3 +#: share/completions/apt-show-versions.fish:4 msgid "Using regex" -msgstr "" +msgstr "Använd reguljära uttryck" -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:4 +#: share/completions/apt-show-versions.fish:5 msgid "Print only upgradeable packages" -msgstr "" +msgstr "Visa bara paket som kan uppgraderas" -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:5 +#: share/completions/apt-show-versions.fish:6 msgid "Print all versions" -msgstr "" +msgstr "Visa alla versioner" -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:6 +#: share/completions/apt-show-versions.fish:7 msgid "Print package name/distro" -msgstr "" +msgstr "Visa paketnamn/distribution" -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:7 +#: share/completions/apt-show-versions.fish:8 msgid "Print verbose info" -msgstr "" +msgstr "Visa utförlig information" -#: /tmp/fish/implicit/share/completions/apt-show-versions.fish:8 +#: share/completions/apt-show-versions.fish:9 msgid "Init or update cache only" -msgstr "" +msgstr "Bara initiera eller uppdatera cachen" -#: /tmp/fish/implicit/share/completions/apt-sortpkgs.fish:2 +#: share/completions/apt-sortpkgs.fish:3 msgid "Use source index field" -msgstr "" +msgstr "Använd köllindexfält" -#: /tmp/fish/implicit/share/completions/apt-sortpkgs.fish:4 +#: share/completions/apt-sortpkgs.fish:5 msgid "Specify conffile" -msgstr "" +msgstr "Välj konfigurationsfil" -#: /tmp/fish/implicit/share/completions/apt-spy.fish:2 +#: share/completions/apt-spy.fish:3 msgid "Debian distribution" -msgstr "" +msgstr "Debiandistribution" -#: /tmp/fish/implicit/share/completions/apt-spy.fish:3 +#: share/completions/apt-spy.fish:4 msgid "Servers in the areas" -msgstr "" +msgstr "Servrar i områden" #: /tmp/fish/implicit/share/completions/apt-spy.fish:4 msgid "Conf file" msgstr "" -#: /tmp/fish/implicit/share/completions/apt-spy.fish:5 +#: share/completions/apt-spy.fish:6 msgid "Finish after number of servers" -msgstr "" +msgstr "Avsluta efter antal servrar" -#: /tmp/fish/implicit/share/completions/apt-spy.fish:6 -msgid "File to grab servers" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-spy.fish:7 -msgid "File as input" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-spy.fish:8 -msgid "Mirror-list file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-spy.fish:9 -msgid "Output sources.list file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-spy.fish:10 +#: share/completions/apt-spy.fish:11 msgid "Use proxy server" -msgstr "" +msgstr "Använd proxyserver" -#: /tmp/fish/implicit/share/completions/apt-spy.fish:11 +#: share/completions/apt-spy.fish:12 msgid "Comma separated country list" -msgstr "" +msgstr "Kommasepararad landslista" -#: /tmp/fish/implicit/share/completions/apt-spy.fish:12 +#: share/completions/apt-spy.fish:13 msgid "How long in sec to download" -msgstr "" +msgstr "Hur länga i sekunder som nedladdning får ske" -#: /tmp/fish/implicit/share/completions/apt-spy.fish:13 +#: share/completions/apt-spy.fish:14 msgid "Custom URL to get mirror list" -msgstr "" +msgstr "Egen URL för att hämta lista av speglar" -#: /tmp/fish/implicit/share/completions/apt-spy.fish:14 -msgid "Write top servers to file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-spy.fish:15 +#: share/completions/apt-spy.fish:16 msgid "Number of top servers" -msgstr "" +msgstr "Antal toppservrar" -#: /tmp/fish/implicit/share/completions/apt-spy.fish:16 +#: share/completions/apt-spy.fish:17 msgid "Update mirror list" -msgstr "" +msgstr "Uppdatera spegellista" -#: /tmp/fish/implicit/share/completions/apt-spy.fish:17 +#: share/completions/apt-spy.fish:18 msgid "Version number" -msgstr "" +msgstr "Visa versionsnummer" -#: /tmp/fish/implicit/share/completions/apt-src.fish:2 +#: share/completions/apt-src.fish:3 msgid "Update list of source packages" -msgstr "" +msgstr "Updatera källkodpaketlista" -#: /tmp/fish/implicit/share/completions/apt-src.fish:3 +#: share/completions/apt-src.fish:4 msgid "Install source packages" -msgstr "" +msgstr "Installera källkodpaket" -#: /tmp/fish/implicit/share/completions/apt-src.fish:4 +#: share/completions/apt-src.fish:5 msgid "Upgrade source packages" -msgstr "" +msgstr "Upgradera källkodpaket" -#: /tmp/fish/implicit/share/completions/apt-src.fish:5 +#: share/completions/apt-src.fish:6 msgid "Remove source packages" -msgstr "" +msgstr "Radera källkodpaket" -#: /tmp/fish/implicit/share/completions/apt-src.fish:6 -#: /tmp/fish/implicit/share/completions/apt-src.fish:13 +#: share/completions/apt-src.fish:7 share/completions/apt-src.fish:14 msgid "Build source packages" -msgstr "" +msgstr "Bygg källkodpaket" -#: /tmp/fish/implicit/share/completions/apt-src.fish:7 +#: share/completions/apt-src.fish:8 msgid "Clean source packages" -msgstr "" +msgstr "Rengör källkodpaket" -#: /tmp/fish/implicit/share/completions/apt-src.fish:8 +#: share/completions/apt-src.fish:9 msgid "Detect known source tree" -msgstr "" +msgstr "Detektera känt källkodsträd" -#: /tmp/fish/implicit/share/completions/apt-src.fish:9 +#: share/completions/apt-src.fish:10 msgid "List installed source package\\(s\\)" -msgstr "" +msgstr "Lista installerade källkodpaket" -#: /tmp/fish/implicit/share/completions/apt-src.fish:10 +#: share/completions/apt-src.fish:11 msgid "Root source tree" -msgstr "" +msgstr "Rotkällträd" -#: /tmp/fish/implicit/share/completions/apt-src.fish:11 +#: share/completions/apt-src.fish:12 msgid "Version of source package" -msgstr "" +msgstr "Version på källkodpaket" -#: /tmp/fish/implicit/share/completions/apt-src.fish:12 +#: share/completions/apt-src.fish:13 msgid "Name of the source package" -msgstr "" +msgstr "Namn på källkodpaket" -#: /tmp/fish/implicit/share/completions/apt-src.fish:14 +#: share/completions/apt-src.fish:15 msgid "Install after build" -msgstr "" +msgstr "Installera efter byggande" -#: /tmp/fish/implicit/share/completions/apt-src.fish:15 +#: share/completions/apt-src.fish:16 msgid "Patch local changes" -msgstr "" +msgstr "Utför fixar för lokala ändringar" -#: /tmp/fish/implicit/share/completions/apt-src.fish:16 +#: share/completions/apt-src.fish:17 msgid "Specify a dir" -msgstr "" +msgstr "Ange katalog" -#: /tmp/fish/implicit/share/completions/apt-src.fish:17 -msgid "Run on current dir" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-src.fish:18 +#: share/completions/apt-src.fish:19 msgid "Omit debian version" -msgstr "" +msgstr "Ange inte Debian-version" -#: /tmp/fish/implicit/share/completions/apt-src.fish:19 +#: share/completions/apt-src.fish:20 msgid "Do not del built files" -msgstr "" +msgstr "Radera inte byggda filer" -#: /tmp/fish/implicit/share/completions/apt-src.fish:20 +#: share/completions/apt-src.fish:21 msgid "Do not del source files" -msgstr "" +msgstr "Radera inte källfiler" -#: /tmp/fish/implicit/share/completions/apt-src.fish:21 +#: share/completions/apt-src.fish:22 msgid "Source tree version" -msgstr "" +msgstr "Källkodsträdsversion" -#: /tmp/fish/implicit/share/completions/apt-src.fish:22 +#: share/completions/apt-src.fish:23 msgid "Output to /dev/null" -msgstr "" +msgstr "Skriv utdata till /dev/null" -#: /tmp/fish/implicit/share/completions/apt-src.fish:23 +#: share/completions/apt-src.fish:24 msgid "Output trace" -msgstr "" +msgstr "Utdataspår" -#: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:3 -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:3 -msgid "Removable medium" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:4 -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:4 +#: share/completions/apt-zip-inst.fish:5 share/completions/apt-zip-list.fish:5 msgid "Select an action" -msgstr "" +msgstr "Välj en handling" -#: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:5 -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:5 -msgid "List of packages to install" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:6 -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:6 +#: share/completions/apt-zip-inst.fish:7 share/completions/apt-zip-list.fish:7 msgid "Fix broken option" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:7 -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:7 -msgid "Specify a non-mountpoint dir" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:8 -msgid "Select a method" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:10 -msgid "Accept protocols" -msgstr "" - -#: /tmp/fish/implicit/share/completions/apt-zip-list.fish:11 -msgid "Reject protocols" -msgstr "" +msgstr "Fixa trasig flagga" #: /tmp/fish/implicit/share/completions/arc.fish:1 msgid "Debugging command" @@ -8045,37 +7535,29 @@ msgstr "" msgid "Shows the current version of arcanist" msgstr "" -#: /tmp/fish/implicit/share/completions/arp.fish:2 -msgid "Numerical address" -msgstr "" - -#: /tmp/fish/implicit/share/completions/arp.fish:3 +#: share/completions/arp.fish:4 msgid "Class of hw type" -msgstr "" +msgstr "Klass av hårdvara" -#: /tmp/fish/implicit/share/completions/arp.fish:4 +#: share/completions/arp.fish:5 msgid "Show arp entries" -msgstr "" +msgstr "Visa ARP-inlägg" -#: /tmp/fish/implicit/share/completions/arp.fish:5 +#: share/completions/arp.fish:6 msgid "Remove an entry for hostname" -msgstr "" +msgstr "Ta bort hostname-inlägg" -#: /tmp/fish/implicit/share/completions/arp.fish:6 -msgid "Use hardware address" -msgstr "" - -#: /tmp/fish/implicit/share/completions/arp.fish:7 +#: share/completions/arp.fish:8 msgid "Select interface" -msgstr "" +msgstr "Välj gränssnitt" -#: /tmp/fish/implicit/share/completions/arp.fish:8 +#: share/completions/arp.fish:9 msgid "Manually create ARP address" -msgstr "" +msgstr "Skapa ARP adress manuellt" -#: /tmp/fish/implicit/share/completions/arp.fish:9 +#: share/completions/arp.fish:10 msgid "Take addr from filename, default /etc/ethers" -msgstr "" +msgstr "Hämta adress från filnamn, standard är /etc/ethers" #: /tmp/fish/implicit/share/completions/as.fish:1 msgid "Omit false conditionals" @@ -8423,53 +7905,49 @@ msgstr "" msgid "Remove target from local repository" msgstr "" -#: /tmp/fish/implicit/share/completions/atd.fish:1 +#: share/completions/atd.fish:2 msgid "Limiting load factor" -msgstr "" +msgstr "Begränsande lastfaktor" -#: /tmp/fish/implicit/share/completions/atd.fish:2 +#: share/completions/atd.fish:3 msgid "Minimum interval in seconds" -msgstr "" +msgstr "Minimalt intervall i sekunder" -#: /tmp/fish/implicit/share/completions/atd.fish:3 -#: /tmp/fish/implicit/share/completions/make.fish:4 -#: /tmp/fish/implicit/share/completions/sylpheed.fish:2 +#: share/completions/atd.fish:4 msgid "Debug mode" -msgstr "" +msgstr "Debugläge" -#: /tmp/fish/implicit/share/completions/atd.fish:4 +#: share/completions/atd.fish:5 msgid "Process at queue only once" -msgstr "" +msgstr "Processa 'at'-kö bara en gång" -#: /tmp/fish/implicit/share/completions/at.fish:2 -#: /tmp/fish/implicit/share/completions/atq.fish:2 +#: share/completions/at.fish:3 share/completions/atq.fish:3 msgid "Use specified queue" -msgstr "" +msgstr "Använd angiven kö" -#: /tmp/fish/implicit/share/completions/at.fish:3 +#: share/completions/at.fish:4 msgid "Send mail to user" -msgstr "" +msgstr "Skicka e-post till användare" -#: /tmp/fish/implicit/share/completions/at.fish:4 +#: share/completions/at.fish:5 msgid "Read job from file" -msgstr "" +msgstr "Läs in jobb från fil" -#: /tmp/fish/implicit/share/completions/at.fish:5 +#: share/completions/at.fish:6 msgid "Alias for atq" -msgstr "" +msgstr "Alias för atq" -#: /tmp/fish/implicit/share/completions/at.fish:6 +#: share/completions/at.fish:7 msgid "Alias for atrm" -msgstr "" +msgstr "Alias för atrm" -#: /tmp/fish/implicit/share/completions/at.fish:7 -#: /tmp/fish/implicit/share/completions/climate.fish:11 +#: share/completions/at.fish:8 msgid "Show the time" -msgstr "" +msgstr "Visa tid" -#: /tmp/fish/implicit/share/completions/at.fish:8 +#: share/completions/at.fish:9 msgid "Print the jobs listed" -msgstr "" +msgstr "Visa listade jobb" #: /tmp/fish/implicit/share/completions/atom.fish:1 msgid "Run in development mode." @@ -9272,22 +8750,6 @@ msgstr "" msgid "Force interactive mode" msgstr "" -#: /tmp/fish/implicit/share/completions/bc.fish:2 -msgid "Define math library" -msgstr "" - -#: /tmp/fish/implicit/share/completions/bc.fish:3 -msgid "Give warnings for extensions to POSIX bc" -msgstr "" - -#: /tmp/fish/implicit/share/completions/bc.fish:4 -msgid "Process exactly POSIX bc" -msgstr "" - -#: /tmp/fish/implicit/share/completions/bc.fish:5 -msgid "Do not print the GNU welcome" -msgstr "" - #: /tmp/fish/implicit/share/completions/bd.fish:1 msgid "Classic mode: goes back to the first directory named as the string" msgstr "" @@ -9408,10 +8870,6 @@ msgstr "" msgid "Equivalent to -o y.tab.c" msgstr "" -#: /tmp/fish/implicit/share/completions/block.fish:2 -msgid "Remove the topmost global event block" -msgstr "" - #: /tmp/fish/implicit/share/completions/block.fish:3 msgid "Create a local (automatically erased) event block" msgstr "" @@ -9898,15 +9356,13 @@ msgstr "" msgid "Display formula's install path in Cellar" msgstr "" -#: /tmp/fish/implicit/share/completions/builtin.fish:2 -msgid "Print names of all existing builtins" -msgstr "" - #: /tmp/fish/implicit/share/completions/bundle.fish:1 +#: share/completions/bundle.fish:3 msgid "Test if bundle has been given no subcommand" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:2 +#: share/completions/bundle.fish:11 msgid "Test if bundle has been given a specific subcommand" msgstr "" @@ -9923,6 +9379,7 @@ msgid "Enable verbose output mode" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:6 +#: share/completions/bundle.fish:31 msgid "Display a help page" msgstr "" @@ -9932,208 +9389,255 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:8 #: /tmp/fish/implicit/share/completions/bundle.fish:40 +#: share/completions/bundle.fish:39 share/completions/bundle.fish:83 msgid "Install the gems specified by the Gemfile or Gemfile.lock" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:9 #: /tmp/fish/implicit/share/completions/bundle.fish:57 +#: share/completions/bundle.fish:40 share/completions/bundle.fish:106 msgid "The location of the Gemfile bundler should use" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:10 +#: share/completions/bundle.fish:41 msgid "The location to install the gems in the bundle to" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:11 +#: share/completions/bundle.fish:42 msgid "Installs the gems in the bundle to the system location" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:12 +#: share/completions/bundle.fish:43 msgid "A space-separated list of groups to skip installing" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:13 +#: share/completions/bundle.fish:44 msgid "Use cached gems instead of connecting to rubygems.org" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:14 +#: share/completions/bundle.fish:45 msgid "Switches bundler's defaults into deployment mode." msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:15 +#: share/completions/bundle.fish:46 msgid "" "Create a directory containing executabes that run in the context of the " "bundle" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:16 +#: share/completions/bundle.fish:47 msgid "Specify a ruby executable to use with generated binstubs" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:17 +#: share/completions/bundle.fish:48 msgid "Make a bundle that can work without RubyGems or Bundler at run-time" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:18 +#: share/completions/bundle.fish:49 msgid "Apply a RubyGems security policy: {High,Medium,Low,No}Security" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:19 +#: share/completions/bundle.fish:50 msgid "Install gems parallely by starting size number of parallel workers" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:20 +#: share/completions/bundle.fish:51 msgid "Do not update the cache in vendor/cache with the newly bundled gems" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:21 +#: share/completions/bundle.fish:52 msgid "Do not print progress information to stdout" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:22 +#: share/completions/bundle.fish:53 msgid "Run bundle clean automatically after install" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:23 #: /tmp/fish/implicit/share/completions/bundle.fish:30 +#: share/completions/bundle.fish:54 share/completions/bundle.fish:63 msgid "Use the rubygems modern index instead of the API endpoint" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:24 #: /tmp/fish/implicit/share/completions/bundle.fish:89 +#: share/completions/bundle.fish:55 share/completions/bundle.fish:164 msgid "Do not remove stale gems from the cache" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:25 +#: share/completions/bundle.fish:56 msgid "Do not allow the Gemfile.lock to be updated after this install" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:26 #: /tmp/fish/implicit/share/completions/bundle.fish:41 +#: share/completions/bundle.fish:59 share/completions/bundle.fish:84 msgid "Update dependencies to their latest versions" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:27 +#: share/completions/bundle.fish:60 msgid "The name of a :git or :path source used in the Gemfile" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:28 +#: share/completions/bundle.fish:61 msgid "Do not attempt to fetch gems remotely and use the gem cache instead" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:29 +#: share/completions/bundle.fish:62 msgid "Only output warnings and errors" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:31 +#: share/completions/bundle.fish:64 msgid "Specify the number of jobs to run in parallel" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:32 +#: share/completions/bundle.fish:65 msgid "Update a specific group" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:33 +#: share/completions/bundle.fish:69 msgid "" "Package the .gem files required by your application into the vendor/cache " "directory" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:34 +#: share/completions/bundle.fish:72 msgid "Install the binstubs of the listed gem" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:35 +#: share/completions/bundle.fish:73 msgid "Binstub destination directory (default bin)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:36 +#: share/completions/bundle.fish:74 msgid "Overwrite existing binstubs if they exist" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:37 #: /tmp/fish/implicit/share/completions/bundle.fish:43 +#: share/completions/bundle.fish:78 share/completions/bundle.fish:86 msgid "Execute a script in the context of the current bundle" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:38 +#: share/completions/bundle.fish:79 msgid "Exec runs a command, providing it access to the gems in the bundle" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:39 +#: share/completions/bundle.fish:82 msgid "Describe available tasks or one specific task" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:42 +#: share/completions/bundle.fish:85 msgid "Package .gem files into the vendor/cache directory" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:44 +#: share/completions/bundle.fish:87 msgid "Specify and read configuration options for bundler" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:45 +#: share/completions/bundle.fish:88 msgid "Check bundler requirements for your application" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:46 +#: share/completions/bundle.fish:89 msgid "Show all of the gems in the current bundle" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:47 +#: share/completions/bundle.fish:90 msgid "Show the source location of a particular gem in the bundle" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:48 #: /tmp/fish/implicit/share/completions/bundle.fish:64 +#: share/completions/bundle.fish:91 share/completions/bundle.fish:121 msgid "Show all of the outdated gems in the current bundle" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:49 #: /tmp/fish/implicit/share/completions/bundle.fish:69 +#: share/completions/bundle.fish:92 share/completions/bundle.fish:129 msgid "Start an IRB session in the context of the current bundle" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:51 #: /tmp/fish/implicit/share/completions/bundle.fish:71 +#: share/completions/bundle.fish:94 share/completions/bundle.fish:136 msgid "Generate a visual representation of your dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:52 +#: share/completions/bundle.fish:95 msgid "Generate a simple Gemfile" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:53 #: /tmp/fish/implicit/share/completions/bundle.fish:78 +#: share/completions/bundle.fish:96 share/completions/bundle.fish:147 msgid "Create a simple gem, suitable for development with bundler" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:54 #: /tmp/fish/implicit/share/completions/bundle.fish:83 +#: share/completions/bundle.fish:97 share/completions/bundle.fish:154 msgid "Displays platform compatibility information" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:55 #: /tmp/fish/implicit/share/completions/bundle.fish:85 +#: share/completions/bundle.fish:98 share/completions/bundle.fish:158 msgid "Cleans up unused gems in your bundler directory" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:56 +#: share/completions/bundle.fish:105 msgid "" "Determine whether the requirements for your application are installed and " "available to bundler" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:58 +#: share/completions/bundle.fish:107 msgid "Specify a path other than the system default (BUNDLE_PATH or GEM_HOME)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:59 +#: share/completions/bundle.fish:108 msgid "Lock the Gemfile" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:60 #: /tmp/fish/implicit/share/completions/bundle.fish:62 +#: share/completions/bundle.fish:111 share/completions/bundle.fish:116 msgid "" "Show lists the names and versions of all gems that are required by your " "Gemfile" @@ -10141,34 +9645,42 @@ msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:61 #: /tmp/fish/implicit/share/completions/bundle.fish:63 +#: share/completions/bundle.fish:112 share/completions/bundle.fish:117 msgid "List the paths of all gems required by your Gemfile" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:65 +#: share/completions/bundle.fish:122 msgid "Check for newer pre-release gems" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:66 +#: share/completions/bundle.fish:123 msgid "Check against a specific source" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:67 +#: share/completions/bundle.fish:124 msgid "Use cached gems instead of attempting to fetch gems remotely" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:68 +#: share/completions/bundle.fish:125 msgid "Only list newer versions allowed by your Gemfile requirements" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:72 +#: share/completions/bundle.fish:137 msgid "The name to use for the generated file (see format option)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:73 +#: share/completions/bundle.fish:138 msgid "Show each gem version" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:74 +#: share/completions/bundle.fish:139 msgid "Show the version of each required dependency" msgstr "" @@ -10177,93 +9689,75 @@ msgid "Output a specific format (png, jpg, svg, dot, …)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:76 +#: share/completions/bundle.fish:143 msgid "Generate a simple Gemfile, placed in the current directory" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:77 +#: share/completions/bundle.fish:144 msgid "Use a specified .gemspec to create the Gemfile" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:79 +#: share/completions/bundle.fish:148 msgid "Generate a binary for your library" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:80 +#: share/completions/bundle.fish:149 msgid "Generate a test directory for your library (rspec or minitest)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:81 +#: share/completions/bundle.fish:150 msgid "Path to your editor" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:82 +#: share/completions/bundle.fish:151 msgid "Generate the boilerplate for C extension code" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:84 +#: share/completions/bundle.fish:155 msgid "Only display Ruby directive information" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:86 +#: share/completions/bundle.fish:159 msgid "Only print out changes, do not actually clean gems" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:87 +#: share/completions/bundle.fish:160 msgid "Forces clean even if --path is not set" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:88 +#: share/completions/bundle.fish:163 msgid "Cache all the gems to vendor/cache" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:90 +#: share/completions/bundle.fish:165 msgid "Include all sources (including path and git)" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:91 +#: share/completions/bundle.fish:168 msgid "Prints the license of all gems in the bundle" msgstr "" #: /tmp/fish/implicit/share/completions/bundle.fish:92 +#: share/completions/bundle.fish:171 msgid "Print information about the environment Bundler is running under" msgstr "" -#: /tmp/fish/implicit/share/completions/bunzip2.fish:1 -msgid "Decompress to stdout" -msgstr "" - -#: /tmp/fish/implicit/share/completions/bunzip2.fish:2 -#: /tmp/fish/implicit/share/completions/bzip2.fish:4 -#: /tmp/fish/implicit/share/completions/gunzip.fish:2 -#: /tmp/fish/implicit/share/completions/gzip.fish:2 -#: /tmp/fish/implicit/share/completions/zcat.fish:1 -msgid "Overwrite" -msgstr "" - #: /tmp/fish/implicit/share/completions/bunzip2.fish:3 #: /tmp/fish/implicit/share/completions/bzip2.fish:5 msgid "Do not overwrite" msgstr "" -#: /tmp/fish/implicit/share/completions/bunzip2.fish:4 -#: /tmp/fish/implicit/share/completions/bzcat.fish:1 -#: /tmp/fish/implicit/share/completions/bzip2.fish:6 -msgid "Reduce memory usage" -msgstr "" - -#: /tmp/fish/implicit/share/completions/bunzip2.fish:5 -#: /tmp/fish/implicit/share/completions/bzip2.fish:8 -msgid "Print compression ratios" -msgstr "" - -#: /tmp/fish/implicit/share/completions/bunzip2.fish:6 -#: /tmp/fish/implicit/share/completions/bzip2.fish:9 -#: /tmp/fish/implicit/share/completions/gunzip.fish:5 -#: /tmp/fish/implicit/share/completions/gzip.fish:5 -#: /tmp/fish/implicit/share/completions/zcat.fish:3 -msgid "Print license" -msgstr "" - #: /tmp/fish/implicit/share/completions/busctl.fish:1 msgid "Suppress message payload display" msgstr "" @@ -10298,28 +9792,6 @@ msgstr "" msgid "Compress to stdout" msgstr "" -#: /tmp/fish/implicit/share/completions/bzip2.fish:2 -msgid "Compress file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/bzip2.fish:3 -#: /tmp/fish/implicit/share/completions/gunzip.fish:11 -#: /tmp/fish/implicit/share/completions/gzip.fish:11 -msgid "Check integrity" -msgstr "" - -#: /tmp/fish/implicit/share/completions/bzip2.fish:7 -msgid "Supress errors" -msgstr "" - -#: /tmp/fish/implicit/share/completions/bzip2.fish:11 -msgid "Small block size" -msgstr "" - -#: /tmp/fish/implicit/share/completions/bzip2.fish:12 -msgid "Large block size" -msgstr "" - #: /tmp/fish/implicit/share/completions/bzr.fish:2 msgid "List all help topics" msgstr "" @@ -10937,11 +10409,6 @@ msgstr "" msgid "Loop over playlist, or file" msgstr "" -#: /tmp/fish/implicit/share/completions/castnow.fish:14 -#: /tmp/fish/implicit/share/completions/mplayer.fish:7 -msgid "Play in random order" -msgstr "" - #: /tmp/fish/implicit/share/completions/castnow.fish:15 msgid "List all files in directories recursively" msgstr "" @@ -10974,299 +10441,10 @@ msgstr "" msgid "Exit when playback begins or --command completes" msgstr "" -#: /tmp/fish/implicit/share/completions/cdrecord.fish:2 -msgid "Increment the level of general verbosity by one" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:3 -msgid "Increment the verbose level in respect of SCSI command transport by one" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:4 -msgid "Set the misc debug value to #" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:5 -msgid "Increment the misc debug level by one" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:6 -msgid "Do not print out a status report for failed SCSI commands" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:7 -msgid "Force to continue on some errors" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:8 -msgid "Tell cdrecord to set the SCSI IMMED flag in certain commands" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:9 -msgid "" -"Defines the minimum drive buffer fill ratio for the experimental ATAPI wait " -"mode intended to free the IDE bus to allow hard disk and CD/DVD writer on " -"the same IDE cable" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:10 -msgid "Complete CD/DVD-Recorder recording process with the laser turned off" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:11 -msgid "Tells cdrecord to handle images created by readcd -clone" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:12 -msgid "Set SAO (Session At Once) mode, usually called Disk At Once mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:13 -msgid "Set TAO (Track At Once) writing mode" -msgstr "" - #: /tmp/fish/implicit/share/completions/cdrecord.fish:14 msgid "Set RAW writing mode" msgstr "" -#: /tmp/fish/implicit/share/completions/cdrecord.fish:15 -msgid "Select Set RAW writing, the preferred raw writing mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:16 -msgid "Select Set RAW writing, the less preferred raw writing mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:17 -msgid "" -"Select Set RAW writing, the preferred raw writing mode if raw96r is not " -"supported" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:18 -msgid "Allow multi session CDs to be made" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:19 -msgid "" -"Retrieve multi session info in a form suitable for mkisofs-1.10 or later" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:20 -msgid "Retrieve and print out the table of content or PMA of a CD" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:21 -msgid "Retrieve and print out the ATIP (absolute Time in Pre-groove) info" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:22 -msgid "The disk will only be fixated" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:23 -msgid "Do not fixate the disk after writing the tracks" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:24 -msgid "" -"Wait for input to become available on standard input before trying to open " -"the SCSI driver" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:25 -msgid "Load the media and exit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:26 -msgid "Load the media, lock the door and exit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:27 -msgid "Eject disk after doing the work" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:28 -msgid "Set the speed factor of the writing process to #" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:29 -msgid "Blank a CD-RW and exit or blank a CD-RW before writing" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:30 -msgid "Format a CD-RW/DVD-RW/DVD+RW disc" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:31 -msgid "Set the FIFO (ring buffer) size to #" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:32 -msgid "Set the maximum transfer size for a single SCSI command to #" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:33 -msgid "Sets the SCSI target for the CD/DVD-Recorder" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:34 -msgid "Set the grace time before starting to write to ># seconds" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:35 -msgid "Set the default SCSI command timeout value to # seconds" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:36 -msgid "Allows the user to manually select a driver for the device" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:37 -msgid "Set driver specific options" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:38 -msgid "" -"Set the driveropts specified by driveropts=option list, the speed of the " -"drive and the dummy flag and exit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:39 -msgid "Checks if a driver for the current drive is present and exit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:40 -msgid "" -"Print the drive capabilities for SCSI-3/mmc compliant drives as obtained " -"from mode page 0x2A" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:41 -msgid "Do an inquiry for the drive, print the inquiry info and exit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:42 -msgid "Scan all SCSI devices on all SCSI busses and print the inquiry strings" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:43 -msgid "Try to reset the SCSI bus where the CD recorder is located" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:44 -msgid "Try to send an abort sequence to the drive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:45 -msgid "Allow cdrecord to write more than the official size of a medium" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:46 -msgid "Ignore the known size of the medium, use for debugging only" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:47 -msgid "Use *.inf files to overwrite audio options" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:48 -msgid "Set the default pre-gap size for all tracks except track nr 1" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:49 -msgid "Set Packet writing mode (experimental interface)" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:50 -msgid "Set the packet size to #, forces fixed packet mode (experimental)" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:51 -msgid "" -"Do not close the current track, only when in packet writing mode " -"(experimental)" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:52 -msgid "Set the Media Catalog Number of the CD" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:53 -msgid "" -"Write CD-Text info based on info taken from a file that contains ascii info " -"for the text strings" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:54 -msgid "Write CD-Text based on info found in the binary file filename" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:55 -msgid "Take all recording related info from a CDRWIN compliant CUE sheet file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:56 -msgid "Set the International Standard Recording Number for the next track" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:57 -msgid "Sets an index list for the next track" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:58 -msgid "All subsequent tracks are written in CD-DA audio format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:59 -msgid "Audio data is assumed to be in byte-swapped (little-endian) order" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:60 -msgid "All subsequent tracks are written in CD-ROM mode 1 (Yellow Book) format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:61 -msgid "All subsequent tracks are written in CD-ROM mode 2 format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:62 -#: /tmp/fish/implicit/share/completions/cdrecord.fish:63 -msgid "All subsequent tracks are written in CD-ROM XA mode 2 form 1 format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:64 -msgid "All subsequent tracks are written in CD-ROM XA mode 2 form 2 format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:65 -msgid "" -"All subsequent tracks are written in a way that allows a mix of CD-ROM XA " -"mode 2 form 1/2 format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:66 -msgid "The TOC type for the disk is set to CDI, with XA only" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:67 -msgid "Use the ISO-9660 file system size as the size of the next track" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:68 -msgid "" -"15 sectors of zeroed data will be added to the end of this and each " -"subsequent data track" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:69 -msgid "Set the amount of data to be appended as padding to the next track" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cdrecord.fish:70 -msgid "Do not pad the following tracks - the default" -msgstr "" - #: /tmp/fish/implicit/share/completions/cdrecord.fish:71 msgid "" "Allow all subsequent tracks to violate the Red Book track length standard " @@ -11318,47 +10496,16 @@ msgid "" "this option to specify the valid amount of data on this disk" msgstr "" -#: /tmp/fish/implicit/share/completions/chgrp.fish:1 -#: /tmp/fish/implicit/share/completions/chown.fish:1 -msgid "Output diagnostic for changed files" -msgstr "" - #: /tmp/fish/implicit/share/completions/chgrp.fish:2 #: /tmp/fish/implicit/share/completions/chown.fish:2 msgid "Dereference symbolic links" msgstr "" -#: /tmp/fish/implicit/share/completions/chgrp.fish:3 -#: /tmp/fish/implicit/share/completions/chown.fish:3 -msgid "Do not dereference symbolic links" -msgstr "" - -#: /tmp/fish/implicit/share/completions/chgrp.fish:4 -#: /tmp/fish/implicit/share/completions/chown.fish:4 -msgid "Change from owner/group" -msgstr "" - #: /tmp/fish/implicit/share/completions/chgrp.fish:5 #: /tmp/fish/implicit/share/completions/chown.fish:5 msgid "Suppress errors" msgstr "" -#: /tmp/fish/implicit/share/completions/chgrp.fish:6 -#: /tmp/fish/implicit/share/completions/chown.fish:6 -msgid "Use same owner/group as file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/chgrp.fish:7 -#: /tmp/fish/implicit/share/completions/chown.fish:7 -#: /tmp/fish/implicit/share/completions/zip.fish:5 -msgid "Operate recursively" -msgstr "" - -#: /tmp/fish/implicit/share/completions/chgrp.fish:8 -#: /tmp/fish/implicit/share/completions/chown.fish:8 -msgid "Output diagnostic for every file" -msgstr "" - #: /tmp/fish/implicit/share/completions/chmod.fish:1 msgid "Like verbose but report only when a change is made" msgstr "" @@ -11388,11 +10535,9 @@ msgstr "" msgid "Change files and directories recursively" msgstr "" -#: /tmp/fish/implicit/share/completions/chown.fish:11 -#: /tmp/fish/implicit/share/completions/chown.fish:12 -#: /tmp/fish/implicit/share/completions/w.fish:6 +#: share/completions/w.fish:6 msgid "Username" -msgstr "" +msgstr "Användarnamn" #: /tmp/fish/implicit/share/completions/chsh.fish:1 msgid "Specify your login shell" @@ -11627,50 +10772,6 @@ msgstr "" msgid "Print the file that would be executed" msgstr "" -#: /tmp/fish/implicit/share/completions/command.fish:3 -#: /tmp/fish/implicit/share/completions/mosh.fish:1 -#: /tmp/fish/implicit/share/completions/setsid.fish:1 -#: /tmp/fish/implicit/share/completions/ssh.fish:1 -#: /tmp/fish/implicit/share/completions/sudo.fish:20 -msgid "Command to run" -msgstr "" - -#: /tmp/fish/implicit/share/completions/commandline.fish:2 -msgid "Add text to the end of the selected area" -msgstr "" - -#: /tmp/fish/implicit/share/completions/commandline.fish:3 -msgid "Add text at cursor" -msgstr "" - -#: /tmp/fish/implicit/share/completions/commandline.fish:4 -msgid "Replace selected part" -msgstr "" - -#: /tmp/fish/implicit/share/completions/commandline.fish:5 -msgid "Select job under cursor" -msgstr "" - -#: /tmp/fish/implicit/share/completions/commandline.fish:6 -msgid "Select process under cursor" -msgstr "" - -#: /tmp/fish/implicit/share/completions/commandline.fish:7 -msgid "Select token under cursor" -msgstr "" - -#: /tmp/fish/implicit/share/completions/commandline.fish:8 -msgid "Select entire command line (default)" -msgstr "" - -#: /tmp/fish/implicit/share/completions/commandline.fish:9 -msgid "Only return that part of the command line before the cursor" -msgstr "" - -#: /tmp/fish/implicit/share/completions/commandline.fish:10 -msgid "Inject readline functions to reader" -msgstr "" - #: /tmp/fish/implicit/share/completions/commandline.fish:11 msgid "Print each token on a separate line" msgstr "" @@ -11679,10 +10780,6 @@ msgstr "" msgid "Specify command to operate on" msgstr "" -#: /tmp/fish/implicit/share/completions/commandline.fish:13 -msgid "Set/get cursor position, not buffer contents" -msgstr "" - #: /tmp/fish/implicit/share/completions/commandline.fish:14 msgid "Print the line that the cursor is on" msgstr "" @@ -11806,50 +10903,6 @@ msgstr "" msgid "Declare the image as modified" msgstr "" -#: /tmp/fish/implicit/share/completions/complete.fish:1 -msgid "Command to add completion to" -msgstr "" - -#: /tmp/fish/implicit/share/completions/complete.fish:2 -msgid "Path to add completion to" -msgstr "" - -#: /tmp/fish/implicit/share/completions/complete.fish:3 -msgid "Posix-style option to complete" -msgstr "" - -#: /tmp/fish/implicit/share/completions/complete.fish:4 -msgid "GNU-style option to complete" -msgstr "" - -#: /tmp/fish/implicit/share/completions/complete.fish:5 -msgid "Old style long option to complete" -msgstr "" - -#: /tmp/fish/implicit/share/completions/complete.fish:6 -msgid "Do not use file completion" -msgstr "" - -#: /tmp/fish/implicit/share/completions/complete.fish:7 -msgid "Require parameter" -msgstr "" - -#: /tmp/fish/implicit/share/completions/complete.fish:8 -msgid "Require parameter and do not use file completion" -msgstr "" - -#: /tmp/fish/implicit/share/completions/complete.fish:9 -msgid "A list of possible arguments" -msgstr "" - -#: /tmp/fish/implicit/share/completions/complete.fish:10 -msgid "Description of this completions" -msgstr "" - -#: /tmp/fish/implicit/share/completions/complete.fish:11 -msgid "Option list is not complete" -msgstr "" - #: /tmp/fish/implicit/share/completions/complete.fish:12 msgid "Remove completion" msgstr "" @@ -11858,12 +10911,6 @@ msgstr "" msgid "Print all completions for the specified commandline" msgstr "" -#: /tmp/fish/implicit/share/completions/complete.fish:15 -msgid "" -"The completion should only be used if the specified command has a zero exit " -"status" -msgstr "" - #: /tmp/fish/implicit/share/completions/complete.fish:16 msgid "Inherit completions from the specified command" msgstr "" @@ -12220,42 +11267,14 @@ msgstr "" msgid "Swap two images in the image sequence [indexes]" msgstr "" -#: /tmp/fish/implicit/share/completions/configure.fish:4 +#: share/completions/configure.fish:4 msgid "Cache test results in specified file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/configure.fish:5 -msgid "Cache test results in file config.cache" -msgstr "" - -#: /tmp/fish/implicit/share/completions/configure.fish:6 -msgid "Do not create output files" -msgstr "" +msgstr "Cache:a resultat i angiven fil" #: /tmp/fish/implicit/share/completions/configure.fish:7 msgid "Set source directory" msgstr "" -#: /tmp/fish/implicit/share/completions/configure.fish:8 -msgid "Architecture-independent install directory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/configure.fish:9 -msgid "Architecture-dependent install directory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/configure.fish:10 -msgid "Configure for building on BUILD" -msgstr "" - -#: /tmp/fish/implicit/share/completions/configure.fish:11 -msgid "Cross-compile to build programs to run on HOST" -msgstr "" - -#: /tmp/fish/implicit/share/completions/configure.fish:12 -msgid "Configure for building compilers for TARGET" -msgstr "" - #: /tmp/fish/implicit/share/completions/connmanctl.fish:1 msgid "Shows if the system is online or offline" msgstr "" @@ -12598,82 +11617,6 @@ msgstr "" msgid "Enhance or reduce the image contrast" msgstr "" -#: /tmp/fish/implicit/share/completions/cower.fish:1 -msgid "Show output in a more script friendly format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:2 -msgid "Download [twice to fetch dependencies]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:3 -msgid "Show info for target [twice for more details]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:4 -msgid "Search for packages by maintainer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:5 -msgid "Search for packages by name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:6 -msgid "Check AUR packages for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:7 -msgid "Use colored output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:8 -msgid "Show debug output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:9 -msgid "Overwrite existing files when downloading" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:10 -msgid "Print formatted" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:11 -msgid "Display help and quit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:12 -msgid "Ignore a package upgrade" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:13 -msgid "Ignore a binary repo when checking for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:14 -msgid "Specify a delimiter for list formatters" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:15 -msgid "Output less" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:16 -msgid "Download targets to DIR" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:17 -msgid "Limit the number of threads created [10]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:18 -msgid "Curl timeout in seconds" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:19 -msgid "Output more" -msgstr "" - #: /tmp/fish/implicit/share/completions/cowsay.fish:1 #: /tmp/fish/implicit/share/completions/cowthink.fish:1 msgid "Specify eye string" @@ -12772,21 +11715,21 @@ msgstr "" msgid "Reject reason" msgstr "" -#: /tmp/fish/implicit/share/completions/cut.fish:1 +#: share/completions/cut.fish:2 msgid "Output byte range" -msgstr "" +msgstr "Välj bytsekvens" -#: /tmp/fish/implicit/share/completions/cut.fish:2 +#: share/completions/cut.fish:3 msgid "Output character range" -msgstr "" +msgstr "Välj teckensekvens" -#: /tmp/fish/implicit/share/completions/cut.fish:3 +#: share/completions/cut.fish:4 msgid "Select field delimiter" -msgstr "" +msgstr "Välj fältavgränsare" -#: /tmp/fish/implicit/share/completions/cut.fish:4 +#: share/completions/cut.fish:5 msgid "Select fields" -msgstr "" +msgstr "Välj fält" #: /tmp/fish/implicit/share/completions/cut.fish:5 msgid "Don't split multi byte characters" @@ -12796,10 +11739,6 @@ msgstr "" msgid "Do not print lines without delimiter" msgstr "" -#: /tmp/fish/implicit/share/completions/cut.fish:7 -msgid "Select output delimiter" -msgstr "" - #: /tmp/fish/implicit/share/completions/cvs.fish:1 msgid "Displays usage information for command." msgstr "" @@ -12869,69 +11808,58 @@ msgid "Use IPv6 addresses only." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:19 +#: share/completions/cvs.fish:35 msgid "Set CVS user variable." msgstr "" -#: /tmp/fish/implicit/share/completions/cvs.fish:20 +#: share/completions/cvs.fish:41 msgid "Add a new file/directory to the repository" -msgstr "" +msgstr "Lägg till fil/katalog till förråd" -#: /tmp/fish/implicit/share/completions/cvs.fish:21 +#: share/completions/cvs.fish:42 msgid "Administration front end for rcs" -msgstr "" +msgstr "Administrationsfrontend för rcs" -#: /tmp/fish/implicit/share/completions/cvs.fish:22 +#: share/completions/cvs.fish:43 msgid "Show last revision where each line was modified" -msgstr "" +msgstr "Visa senaste revision vid vilken vare rad ändrades" -#: /tmp/fish/implicit/share/completions/cvs.fish:23 +#: share/completions/cvs.fish:44 msgid "Checkout sources for editing" -msgstr "" +msgstr "Checka ut källkod för redigering" -#: /tmp/fish/implicit/share/completions/cvs.fish:24 +#: share/completions/cvs.fish:45 msgid "Check files into the repository" -msgstr "" +msgstr "Checka in filer till förråd" -#: /tmp/fish/implicit/share/completions/cvs.fish:25 +#: share/completions/cvs.fish:46 msgid "Show differences between revisions" -msgstr "" +msgstr "Visa skillnader mellan revisioner" -#: /tmp/fish/implicit/share/completions/cvs.fish:26 +#: share/completions/cvs.fish:47 msgid "Get ready to edit a watched file" -msgstr "" +msgstr "Förbered redigering av övervakad fil" -#: /tmp/fish/implicit/share/completions/cvs.fish:27 +#: share/completions/cvs.fish:48 msgid "See who is editing a watched file" -msgstr "" +msgstr "Se vem som redigerar övervakad fil" -#: /tmp/fish/implicit/share/completions/cvs.fish:28 +#: share/completions/cvs.fish:49 msgid "Export sources from CVS, similar to checkout" -msgstr "" +msgstr "Exportera källkod från CSV" -#: /tmp/fish/implicit/share/completions/cvs.fish:29 +#: share/completions/cvs.fish:50 msgid "Show repository access history" -msgstr "" +msgstr "Visa förrådets åtkomsthistorik" -#: /tmp/fish/implicit/share/completions/cvs.fish:30 +#: share/completions/cvs.fish:51 msgid "Import sources into CVS, using vendor branches" -msgstr "" +msgstr "Importera källor till CVS" #: /tmp/fish/implicit/share/completions/cvs.fish:31 msgid "Create a CVS repository if it doesn't exist" msgstr "" -#: /tmp/fish/implicit/share/completions/cvs.fish:32 -msgid "Kerberos server mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cvs.fish:33 -msgid "Print out history information for files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cvs.fish:34 -msgid "Prompt for password for authenticating server" -msgstr "" - #: /tmp/fish/implicit/share/completions/cvs.fish:35 msgid "Removes entry in .cvspass for remote repository" msgstr "" @@ -12940,58 +11868,22 @@ msgstr "" msgid "List files available from CVS" msgstr "" -#: /tmp/fish/implicit/share/completions/cvs.fish:37 -msgid "Password server mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cvs.fish:38 -msgid "Show last revision where each line of module was modified" -msgstr "" - #: /tmp/fish/implicit/share/completions/cvs.fish:39 msgid "Create 'patch' format diffs between releases" msgstr "" -#: /tmp/fish/implicit/share/completions/cvs.fish:40 -msgid "Indicate that a Module is no longer in use" -msgstr "" - #: /tmp/fish/implicit/share/completions/cvs.fish:41 msgid "Remove an entry from the repository" msgstr "" -#: /tmp/fish/implicit/share/completions/cvs.fish:42 -msgid "Print out history information for a module" -msgstr "" - #: /tmp/fish/implicit/share/completions/cvs.fish:43 msgid "List files in a module" msgstr "" -#: /tmp/fish/implicit/share/completions/cvs.fish:44 -msgid "Add a symbolic tag to a module" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cvs.fish:45 -msgid "Server mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cvs.fish:46 -msgid "Display status information on checked out files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cvs.fish:47 -msgid "Add a symbolic tag to checked out version of files" -msgstr "" - #: /tmp/fish/implicit/share/completions/cvs.fish:48 msgid "Undo an edit command" msgstr "" -#: /tmp/fish/implicit/share/completions/cvs.fish:49 -msgid "Bring work tree in sync with repository" -msgstr "" - #: /tmp/fish/implicit/share/completions/cvs.fish:50 msgid "Show current CVS version(s)" msgstr "" @@ -13000,10 +11892,6 @@ msgstr "" msgid "Set watches" msgstr "" -#: /tmp/fish/implicit/share/completions/cvs.fish:52 -msgid "See who is watching a file" -msgstr "" - #: /tmp/fish/implicit/share/completions/cvs.fish:53 msgid "Use \"rcs-kflag\" to add the file with the specified" msgstr "" @@ -13025,6 +11913,7 @@ msgid "[rev] Set default branch (highest branch on trunk if omitted)." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:58 +#: share/completions/cvs.fish:91 msgid "Set comment leader." msgstr "" @@ -13037,6 +11926,7 @@ msgid "Run interactively." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:61 +#: share/completions/cvs.fish:94 msgid "Set keyword substitution mode:" msgstr "" @@ -13181,24 +12071,29 @@ msgid "Like -c, but include module status." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:90 +#: share/completions/cvs.fish:135 msgid "Check out revision or tag. (implies -P) (is sticky)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:91 +#: share/completions/cvs.fish:136 msgid "Check out revisions as of date. (implies -P) (is sticky)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:92 +#: share/completions/cvs.fish:137 msgid "Check out into dir instead of module name." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:93 #: /tmp/fish/implicit/share/completions/cvs.fish:280 +#: share/completions/cvs.fish:138 msgid "Use RCS kopt -k option on checkout. (is sticky)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:94 #: /tmp/fish/implicit/share/completions/cvs.fish:283 +#: share/completions/cvs.fish:139 msgid "Merge in changes made between current revision and rev." msgstr "" @@ -13215,36 +12110,44 @@ msgid "Force the file to be committed; disables recursion." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:99 +#: share/completions/cvs.fish:150 msgid "Read the log message from file." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:100 #: /tmp/fish/implicit/share/completions/cvs.fish:180 +#: share/completions/cvs.fish:151 msgid "Log message." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:101 +#: share/completions/cvs.fish:152 msgid "Commit to this branch or trunk revision." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:104 #: /tmp/fish/implicit/share/completions/cvs.fish:218 +#: share/completions/cvs.fish:161 msgid "Specify keyword expansion mode." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:105 +#: share/completions/cvs.fish:162 msgid "Diff revision for date against working file." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:106 +#: share/completions/cvs.fish:163 msgid "Diff rev1/date1 against date2." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:107 +#: share/completions/cvs.fish:164 msgid "Diff revision for rev1 against working file." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:108 +#: share/completions/cvs.fish:165 msgid "Diff rev1/date1 against rev2." msgstr "" @@ -13265,6 +12168,7 @@ msgid "--ignore-blank-lines Ignore changes whose lines are all blank." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:113 +#: share/completions/cvs.fish:170 msgid "--ignore-matching-lines=RE Ignore changes whose lines all match RE." msgstr "" @@ -13291,6 +12195,7 @@ msgid "UM Use NUM context lines." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:119 +#: share/completions/cvs.fish:176 msgid "--label LABEL Use LABEL instead of file name." msgstr "" @@ -13299,6 +12204,7 @@ msgid "--show-c-function Show which C function each change is in." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:121 +#: share/completions/cvs.fish:178 msgid "--show-function-line=RE Show the most recent line matching RE." msgstr "" @@ -13323,6 +12229,7 @@ msgid "--side-by-side Output in two columns." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:127 +#: share/completions/cvs.fish:184 msgid "--width=NUM Output at most NUM (default 130) characters per line." msgstr "" @@ -13412,18 +12319,22 @@ msgid "Process this directory only (not recursive)." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:153 +#: share/completions/cvs.fish:228 msgid "Export tagged revisions." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:154 +#: share/completions/cvs.fish:229 msgid "Export revisions as of date." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:155 +#: share/completions/cvs.fish:230 msgid "Export into dir instead of module name." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:156 +#: share/completions/cvs.fish:231 msgid "Use RCS kopt -k option on checkout." msgstr "" @@ -13440,10 +12351,12 @@ msgid "Checked out modules" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:160 +#: share/completions/cvs.fish:241 msgid "Look for specified module (repeatable)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:161 +#: share/completions/cvs.fish:242 msgid "Extract by record type" msgstr "" @@ -13464,38 +12377,47 @@ msgid "Working directory must match" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:166 +#: share/completions/cvs.fish:247 msgid "Since date (Many formats)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:167 +#: share/completions/cvs.fish:248 msgid "Back to record with str in module/file/repos field" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:168 +#: share/completions/cvs.fish:249 msgid "Specified file (same as command line) (repeatable)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:169 +#: share/completions/cvs.fish:250 msgid "In module (repeatable)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:170 +#: share/completions/cvs.fish:251 msgid "In repository (repeatable)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:171 +#: share/completions/cvs.fish:252 msgid "Since rev or tag (looks inside RCS files!)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:172 +#: share/completions/cvs.fish:253 msgid "Since tag record placed in history file (by anyone)." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:173 +#: share/completions/cvs.fish:254 msgid "For user name (repeatable)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:174 +#: share/completions/cvs.fish:255 msgid "Output for time zone (e.g. -z -0700)" msgstr "" @@ -13835,104 +12757,121 @@ msgid "Set the specified option" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:3 +#: share/completions/darcs.fish:19 msgid "Display help about darcs and darcs commands" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:4 +#: share/completions/darcs.fish:20 msgid "Add one or more new files or directories" -msgstr "" +msgstr "Lägg till filer eller kataloger till lagret" #: /tmp/fish/implicit/share/completions/darcs.fish:5 +#: share/completions/darcs.fish:21 msgid "Remove files from version control" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:6 +#: share/completions/darcs.fish:22 msgid "Move or rename files" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:7 +#: share/completions/darcs.fish:23 msgid "Substitute one word for another" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:8 +#: share/completions/darcs.fish:24 msgid "Discard unrecorded changes" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:9 +#: share/completions/darcs.fish:25 msgid "Undo the last revert (may fail if changes after the revert)" msgstr "" +"Ångra senaste revert-operation (kan misslyckas om ändringar har utförts " +"efter revert-operationen)" #: /tmp/fish/implicit/share/completions/darcs.fish:10 +#: share/completions/darcs.fish:26 msgid "List unrecorded changes in the working tree" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:11 +#: share/completions/darcs.fish:27 msgid "Create a patch from unrecorded changes" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:12 +#: share/completions/darcs.fish:28 msgid "Remove recorded patches without changing the working copy" -msgstr "" +msgstr "Ta bort lagrade fixar utan att ändra arbetskopian" #: /tmp/fish/implicit/share/completions/darcs.fish:13 +#: share/completions/darcs.fish:29 msgid "Improve a patch before it leaves your repository" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:14 +#: share/completions/darcs.fish:30 msgid "Mark unresolved conflicts in working tree, for manual resolution" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:15 +#: share/completions/darcs.fish:31 msgid "Name the current repository state for future reference" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:16 +#: share/completions/darcs.fish:32 msgid "Set a preference (test, predist, boringfile or binariesfile)" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:17 +#: share/completions/darcs.fish:33 msgid "Create a diff between two versions of the repository" -msgstr "" +msgstr "Skappa en diff mellan två versioner i lagret" #: /tmp/fish/implicit/share/completions/darcs.fish:18 +#: share/completions/darcs.fish:34 msgid "List patches in the repository" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:19 +#: share/completions/darcs.fish:35 msgid "Display which patch last modified something" -msgstr "" +msgstr "Visa vilken fix som senast ändrade någonting" -#: /tmp/fish/implicit/share/completions/darcs.fish:20 +#: share/completions/darcs.fish:36 msgid "Create a distribution tarball" -msgstr "" +msgstr "Skapa distribuerbar tar-fil" -#: /tmp/fish/implicit/share/completions/darcs.fish:21 +#: share/completions/darcs.fish:37 msgid "Locate the most recent version lacking an error" -msgstr "" +msgstr "Hitta senaste version utan ett givet fel" #: /tmp/fish/implicit/share/completions/darcs.fish:22 +#: share/completions/darcs.fish:38 msgid "Show information which is stored by darcs" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:23 +#: share/completions/darcs.fish:39 msgid "Copy and apply patches from another repository to this one" -msgstr "" +msgstr "Kopiera och applicera fixar från ett annat förråd till detta" #: /tmp/fish/implicit/share/completions/darcs.fish:24 +#: share/completions/darcs.fish:40 msgid "Delete selected patches from the repository. (UNSAFE!)" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:25 +#: share/completions/darcs.fish:41 msgid "Record a new patch reversing some recorded changes" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:26 +#: share/completions/darcs.fish:42 msgid "Copy and apply patches from this repository to another one" -msgstr "" +msgstr "Kopiera och applicera fixar från detta förråd till ett annat" -#: /tmp/fish/implicit/share/completions/darcs.fish:27 +#: share/completions/darcs.fish:43 msgid "Send by email a bundle of one or more patches" -msgstr "" +msgstr "Skicka e-postpaket av en eller flera fixar" #: /tmp/fish/implicit/share/completions/darcs.fish:403 msgid "Path to a version-controlled boring file" @@ -13942,67 +12881,55 @@ msgstr "" msgid "Path to a version-controlled binaries file" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:405 -#: /tmp/fish/implicit/share/completions/darcs.fish:439 -#: /tmp/fish/implicit/share/completions/darcs.fish:847 -#: /tmp/fish/implicit/share/completions/darcs.fish:880 +#: share/completions/darcs.fish:551 share/completions/darcs.fish:1025 msgid "Select changes up to a patch matching PATTERN" -msgstr "" +msgstr "Välj ändringar fram till fix som matchar MÖNSTER" -#: /tmp/fish/implicit/share/completions/darcs.fish:406 -#: /tmp/fish/implicit/share/completions/darcs.fish:440 -#: /tmp/fish/implicit/share/completions/darcs.fish:848 -#: /tmp/fish/implicit/share/completions/darcs.fish:881 +#: share/completions/darcs.fish:552 share/completions/darcs.fish:1026 msgid "Select changes up to a patch matching REGEXP" -msgstr "" +msgstr "Välj ändringar fram till fix som matchar REGEXP" -#: /tmp/fish/implicit/share/completions/darcs.fish:407 -#: /tmp/fish/implicit/share/completions/darcs.fish:441 +#: share/completions/darcs.fish:553 msgid "Select changes up to a tag matching REGEXP" -msgstr "" +msgstr "Välj ändringar fram till tag som matchar REGEXP" -#: /tmp/fish/implicit/share/completions/darcs.fish:408 -#: /tmp/fish/implicit/share/completions/darcs.fish:442 -#: /tmp/fish/implicit/share/completions/darcs.fish:619 -#: /tmp/fish/implicit/share/completions/darcs.fish:657 +#: share/completions/darcs.fish:340 share/completions/darcs.fish:554 +#: share/completions/darcs.fish:767 msgid "Select changes starting with a patch matching PATTERN" -msgstr "" +msgstr "Välj ändringar som börjar med fix som matchar MÖNSTER" -#: /tmp/fish/implicit/share/completions/darcs.fish:409 -#: /tmp/fish/implicit/share/completions/darcs.fish:443 -#: /tmp/fish/implicit/share/completions/darcs.fish:620 -#: /tmp/fish/implicit/share/completions/darcs.fish:658 +#: share/completions/darcs.fish:341 share/completions/darcs.fish:555 +#: share/completions/darcs.fish:768 msgid "Select changes starting with a patch matching REGEXP" -msgstr "" +msgstr "Välj ändringar som börjar med fix som matchar REGEXP" -#: /tmp/fish/implicit/share/completions/darcs.fish:410 -#: /tmp/fish/implicit/share/completions/darcs.fish:444 -#: /tmp/fish/implicit/share/completions/darcs.fish:621 -#: /tmp/fish/implicit/share/completions/darcs.fish:659 +#: share/completions/darcs.fish:342 share/completions/darcs.fish:556 +#: share/completions/darcs.fish:769 msgid "Select changes starting with a tag matching REGEXP" -msgstr "" +msgstr "Välj ändringar som börjar med tagg som matchar REGEXP" #: /tmp/fish/implicit/share/completions/darcs.fish:411 #: /tmp/fish/implicit/share/completions/darcs.fish:495 #: /tmp/fish/implicit/share/completions/darcs.fish:520 +#: share/completions/darcs.fish:378 msgid "Select a single patch matching PATTERN" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:412 #: /tmp/fish/implicit/share/completions/darcs.fish:496 #: /tmp/fish/implicit/share/completions/darcs.fish:521 +#: share/completions/darcs.fish:379 msgid "Select a single patch matching REGEXP" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:413 -#: /tmp/fish/implicit/share/completions/darcs.fish:445 -#: /tmp/fish/implicit/share/completions/darcs.fish:622 -#: /tmp/fish/implicit/share/completions/darcs.fish:660 +#: share/completions/darcs.fish:343 share/completions/darcs.fish:557 +#: share/completions/darcs.fish:770 msgid "Select the last NUMBER patches" -msgstr "" +msgstr "Välj angivet antal fixar av de senaste fixarna" #: /tmp/fish/implicit/share/completions/darcs.fish:414 #: /tmp/fish/implicit/share/completions/darcs.fish:446 +#: share/completions/darcs.fish:558 msgid "Select a range of patches" msgstr "" @@ -14022,24 +12949,16 @@ msgstr "" msgid "Output patch in diff's dumb format" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:419 -#: /tmp/fish/implicit/share/completions/darcs.fish:463 -#: /tmp/fish/implicit/share/completions/darcs.fish:500 -#: /tmp/fish/implicit/share/completions/darcs.fish:519 -#: /tmp/fish/implicit/share/completions/darcs.fish:543 -#: /tmp/fish/implicit/share/completions/darcs.fish:583 -#: /tmp/fish/implicit/share/completions/darcs.fish:631 -#: /tmp/fish/implicit/share/completions/darcs.fish:675 -#: /tmp/fish/implicit/share/completions/darcs.fish:710 -#: /tmp/fish/implicit/share/completions/darcs.fish:766 -#: /tmp/fish/implicit/share/completions/darcs.fish:813 -#: /tmp/fish/implicit/share/completions/darcs.fish:889 -#: /tmp/fish/implicit/share/completions/darcs.fish:918 -#: /tmp/fish/implicit/share/completions/darcs.fish:936 -#: /tmp/fish/implicit/share/completions/darcs.fish:969 -#: /tmp/fish/implicit/share/completions/darcs.fish:989 +#: share/completions/darcs.fish:116 share/completions/darcs.fish:146 +#: share/completions/darcs.fish:203 share/completions/darcs.fish:234 +#: share/completions/darcs.fish:264 share/completions/darcs.fish:352 +#: share/completions/darcs.fish:456 share/completions/darcs.fish:482 +#: share/completions/darcs.fish:525 share/completions/darcs.fish:725 +#: share/completions/darcs.fish:779 share/completions/darcs.fish:829 +#: share/completions/darcs.fish:870 share/completions/darcs.fish:985 +#: share/completions/darcs.fish:1073 share/completions/darcs.fish:1197 msgid "Specify the repository directory in which to run" -msgstr "" +msgstr "Välj vilket förråd som skall användas" #: /tmp/fish/implicit/share/completions/darcs.fish:420 #: /tmp/fish/implicit/share/completions/darcs.fish:524 @@ -14051,49 +12970,6 @@ msgstr "" msgid "Do patch application on disk [DEFAULT]" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:422 -#: /tmp/fish/implicit/share/completions/darcs.fish:466 -#: /tmp/fish/implicit/share/completions/darcs.fish:501 -#: /tmp/fish/implicit/share/completions/darcs.fish:526 -#: /tmp/fish/implicit/share/completions/darcs.fish:544 -#: /tmp/fish/implicit/share/completions/darcs.fish:585 -#: /tmp/fish/implicit/share/completions/darcs.fish:636 -#: /tmp/fish/implicit/share/completions/darcs.fish:676 -#: /tmp/fish/implicit/share/completions/darcs.fish:714 -#: /tmp/fish/implicit/share/completions/darcs.fish:769 -#: /tmp/fish/implicit/share/completions/darcs.fish:814 -#: /tmp/fish/implicit/share/completions/darcs.fish:857 -#: /tmp/fish/implicit/share/completions/darcs.fish:890 -#: /tmp/fish/implicit/share/completions/darcs.fish:919 -#: /tmp/fish/implicit/share/completions/darcs.fish:943 -#: /tmp/fish/implicit/share/completions/darcs.fish:972 -#: /tmp/fish/implicit/share/completions/darcs.fish:990 -#: /tmp/fish/implicit/share/completions/darcs.fish:1010 -msgid "Disable this command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:423 -#: /tmp/fish/implicit/share/completions/darcs.fish:467 -#: /tmp/fish/implicit/share/completions/darcs.fish:502 -#: /tmp/fish/implicit/share/completions/darcs.fish:527 -#: /tmp/fish/implicit/share/completions/darcs.fish:545 -#: /tmp/fish/implicit/share/completions/darcs.fish:562 -#: /tmp/fish/implicit/share/completions/darcs.fish:586 -#: /tmp/fish/implicit/share/completions/darcs.fish:637 -#: /tmp/fish/implicit/share/completions/darcs.fish:677 -#: /tmp/fish/implicit/share/completions/darcs.fish:715 -#: /tmp/fish/implicit/share/completions/darcs.fish:770 -#: /tmp/fish/implicit/share/completions/darcs.fish:815 -#: /tmp/fish/implicit/share/completions/darcs.fish:858 -#: /tmp/fish/implicit/share/completions/darcs.fish:891 -#: /tmp/fish/implicit/share/completions/darcs.fish:920 -#: /tmp/fish/implicit/share/completions/darcs.fish:944 -#: /tmp/fish/implicit/share/completions/darcs.fish:973 -#: /tmp/fish/implicit/share/completions/darcs.fish:991 -#: /tmp/fish/implicit/share/completions/darcs.fish:1011 -msgid "Shows brief description of command and its arguments" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:424 #: /tmp/fish/implicit/share/completions/darcs.fish:468 #: /tmp/fish/implicit/share/completions/darcs.fish:503 @@ -14178,48 +13054,6 @@ msgstr "" msgid "Give verbose output" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:428 -#: /tmp/fish/implicit/share/completions/darcs.fish:472 -#: /tmp/fish/implicit/share/completions/darcs.fish:507 -#: /tmp/fish/implicit/share/completions/darcs.fish:532 -#: /tmp/fish/implicit/share/completions/darcs.fish:550 -#: /tmp/fish/implicit/share/completions/darcs.fish:591 -#: /tmp/fish/implicit/share/completions/darcs.fish:642 -#: /tmp/fish/implicit/share/completions/darcs.fish:682 -#: /tmp/fish/implicit/share/completions/darcs.fish:720 -#: /tmp/fish/implicit/share/completions/darcs.fish:775 -#: /tmp/fish/implicit/share/completions/darcs.fish:820 -#: /tmp/fish/implicit/share/completions/darcs.fish:863 -#: /tmp/fish/implicit/share/completions/darcs.fish:896 -#: /tmp/fish/implicit/share/completions/darcs.fish:925 -#: /tmp/fish/implicit/share/completions/darcs.fish:949 -#: /tmp/fish/implicit/share/completions/darcs.fish:978 -#: /tmp/fish/implicit/share/completions/darcs.fish:996 -#: /tmp/fish/implicit/share/completions/darcs.fish:1016 -msgid "Suppress informational output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:429 -#: /tmp/fish/implicit/share/completions/darcs.fish:473 -#: /tmp/fish/implicit/share/completions/darcs.fish:508 -#: /tmp/fish/implicit/share/completions/darcs.fish:533 -#: /tmp/fish/implicit/share/completions/darcs.fish:551 -#: /tmp/fish/implicit/share/completions/darcs.fish:592 -#: /tmp/fish/implicit/share/completions/darcs.fish:643 -#: /tmp/fish/implicit/share/completions/darcs.fish:683 -#: /tmp/fish/implicit/share/completions/darcs.fish:721 -#: /tmp/fish/implicit/share/completions/darcs.fish:776 -#: /tmp/fish/implicit/share/completions/darcs.fish:821 -#: /tmp/fish/implicit/share/completions/darcs.fish:864 -#: /tmp/fish/implicit/share/completions/darcs.fish:897 -#: /tmp/fish/implicit/share/completions/darcs.fish:926 -#: /tmp/fish/implicit/share/completions/darcs.fish:950 -#: /tmp/fish/implicit/share/completions/darcs.fish:979 -#: /tmp/fish/implicit/share/completions/darcs.fish:997 -#: /tmp/fish/implicit/share/completions/darcs.fish:1017 -msgid "Neither verbose nor quiet output" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:430 #: /tmp/fish/implicit/share/completions/darcs.fish:474 #: /tmp/fish/implicit/share/completions/darcs.fish:509 @@ -14259,6 +13093,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:981 #: /tmp/fish/implicit/share/completions/darcs.fish:1000 #: /tmp/fish/implicit/share/completions/darcs.fish:1025 +#: share/completions/darcs.fish:102 share/completions/darcs.fish:128 +#: share/completions/darcs.fish:157 share/completions/darcs.fish:187 +#: share/completions/darcs.fish:245 share/completions/darcs.fish:326 +#: share/completions/darcs.fish:364 share/completions/darcs.fish:408 +#: share/completions/darcs.fish:468 share/completions/darcs.fish:493 +#: share/completions/darcs.fish:537 share/completions/darcs.fish:753 +#: share/completions/darcs.fish:841 share/completions/darcs.fish:893 +#: share/completions/darcs.fish:1183 share/completions/darcs.fish:1208 +#: share/completions/darcs.fish:1239 msgid "Specify command to run after this darcs command" msgstr "" @@ -14343,6 +13186,14 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:985 #: /tmp/fish/implicit/share/completions/darcs.fish:1004 #: /tmp/fish/implicit/share/completions/darcs.fish:1029 +#: share/completions/darcs.fish:71 share/completions/darcs.fish:220 +#: share/completions/darcs.fish:283 share/completions/darcs.fish:439 +#: share/completions/darcs.fish:597 share/completions/darcs.fish:632 +#: share/completions/darcs.fish:663 share/completions/darcs.fish:688 +#: share/completions/darcs.fish:801 share/completions/darcs.fish:959 +#: share/completions/darcs.fish:1010 share/completions/darcs.fish:1054 +#: share/completions/darcs.fish:1095 share/completions/darcs.fish:1122 +#: share/completions/darcs.fish:1155 msgid "Specify command to run before this darcs command" msgstr "" @@ -14409,34 +13260,26 @@ msgstr "" msgid "Run prehook command without prompting" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:447 -#: /tmp/fish/implicit/share/completions/darcs.fish:563 -#: /tmp/fish/implicit/share/completions/darcs.fish:623 -#: /tmp/fish/implicit/share/completions/darcs.fish:661 -#: /tmp/fish/implicit/share/completions/darcs.fish:695 -#: /tmp/fish/implicit/share/completions/darcs.fish:741 +#: share/completions/darcs.fish:344 share/completions/darcs.fish:559 +#: share/completions/darcs.fish:771 share/completions/darcs.fish:855 +#: share/completions/darcs.fish:907 msgid "Select patches matching PATTERN" -msgstr "" +msgstr "Välj fixar som matchar MÖNSTER" -#: /tmp/fish/implicit/share/completions/darcs.fish:448 -#: /tmp/fish/implicit/share/completions/darcs.fish:564 -#: /tmp/fish/implicit/share/completions/darcs.fish:624 -#: /tmp/fish/implicit/share/completions/darcs.fish:662 -#: /tmp/fish/implicit/share/completions/darcs.fish:696 -#: /tmp/fish/implicit/share/completions/darcs.fish:742 +#: share/completions/darcs.fish:345 share/completions/darcs.fish:560 +#: share/completions/darcs.fish:772 share/completions/darcs.fish:856 +#: share/completions/darcs.fish:908 msgid "Select patches matching REGEXP" -msgstr "" +msgstr "Välj fixar som matchar REGEXP" -#: /tmp/fish/implicit/share/completions/darcs.fish:449 -#: /tmp/fish/implicit/share/completions/darcs.fish:565 -#: /tmp/fish/implicit/share/completions/darcs.fish:625 -#: /tmp/fish/implicit/share/completions/darcs.fish:663 -#: /tmp/fish/implicit/share/completions/darcs.fish:697 -#: /tmp/fish/implicit/share/completions/darcs.fish:743 +#: share/completions/darcs.fish:346 share/completions/darcs.fish:561 +#: share/completions/darcs.fish:773 share/completions/darcs.fish:857 +#: share/completions/darcs.fish:909 msgid "Select tags matching REGEXP" -msgstr "" +msgstr "Välj taggar som matchar REGEXP" #: /tmp/fish/implicit/share/completions/darcs.fish:450 +#: share/completions/darcs.fish:562 msgid "Return only NUMBER results" msgstr "" @@ -14448,25 +13291,6 @@ msgstr "" msgid "Show changes to all files [DEFAULT]" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:453 -msgid "Give output suitable for get --context" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:454 -#: /tmp/fish/implicit/share/completions/darcs.fish:494 -#: /tmp/fish/implicit/share/completions/darcs.fish:575 -#: /tmp/fish/implicit/share/completions/darcs.fish:635 -#: /tmp/fish/implicit/share/completions/darcs.fish:707 -#: /tmp/fish/implicit/share/completions/darcs.fish:760 -#: /tmp/fish/implicit/share/completions/darcs.fish:803 -msgid "Generate XML formatted output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:455 -#: /tmp/fish/implicit/share/completions/darcs.fish:493 -msgid "Give human-readable output" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:456 msgid "Number the changes" msgstr "" @@ -14484,15 +13308,6 @@ msgstr "" msgid "Summarize changes" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:459 -#: /tmp/fish/implicit/share/completions/darcs.fish:490 -#: /tmp/fish/implicit/share/completions/darcs.fish:577 -#: /tmp/fish/implicit/share/completions/darcs.fish:633 -#: /tmp/fish/implicit/share/completions/darcs.fish:709 -#: /tmp/fish/implicit/share/completions/darcs.fish:762 -msgid "Don't summarize changes" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:460 msgid "Show changes in reverse order" msgstr "" @@ -14505,26 +13320,6 @@ msgstr "" msgid "Specify the repository URL" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:464 -#: /tmp/fish/implicit/share/completions/darcs.fish:566 -#: /tmp/fish/implicit/share/completions/darcs.fish:629 -#: /tmp/fish/implicit/share/completions/darcs.fish:664 -#: /tmp/fish/implicit/share/completions/darcs.fish:701 -#: /tmp/fish/implicit/share/completions/darcs.fish:747 -#: /tmp/fish/implicit/share/completions/darcs.fish:800 -msgid "Answer yes to all patches" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:465 -#: /tmp/fish/implicit/share/completions/darcs.fish:567 -#: /tmp/fish/implicit/share/completions/darcs.fish:630 -#: /tmp/fish/implicit/share/completions/darcs.fish:665 -#: /tmp/fish/implicit/share/completions/darcs.fish:702 -#: /tmp/fish/implicit/share/completions/darcs.fish:748 -#: /tmp/fish/implicit/share/completions/darcs.fish:801 -msgid "Prompt user interactively" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:475 #: /tmp/fish/implicit/share/completions/darcs.fish:605 #: /tmp/fish/implicit/share/completions/darcs.fish:727 @@ -14582,93 +13377,41 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:871 #: /tmp/fish/implicit/share/completions/darcs.fish:906 #: /tmp/fish/implicit/share/completions/darcs.fish:1024 +#: share/completions/darcs.fish:752 share/completions/darcs.fish:892 +#: share/completions/darcs.fish:1238 msgid "Name of the darcs executable on the remote server" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:491 -msgid "Output patch in a darcs-specific format similar to diff -u" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:492 msgid "Output patch in darcs' usual format" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:497 -#: /tmp/fish/implicit/share/completions/darcs.fish:522 -#: /tmp/fish/implicit/share/completions/darcs.fish:849 -#: /tmp/fish/implicit/share/completions/darcs.fish:882 +#: share/completions/darcs.fish:1027 msgid "Select tag matching REGEXP" -msgstr "" +msgstr "Välj tagg som matchar REGEXP" #: /tmp/fish/implicit/share/completions/darcs.fish:498 #: /tmp/fish/implicit/share/completions/darcs.fish:523 +#: share/completions/darcs.fish:380 msgid "Select one patch" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:499 -msgid "Specify hash of creator patch (see docs)" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:518 msgid "Name of version" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:553 -#: /tmp/fish/implicit/share/completions/darcs.fish:602 -#: /tmp/fish/implicit/share/completions/darcs.fish:831 -#: /tmp/fish/implicit/share/completions/darcs.fish:853 -#: /tmp/fish/implicit/share/completions/darcs.fish:884 -#: /tmp/fish/implicit/share/completions/darcs.fish:1009 -msgid "Make scripts executable" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:568 msgid "Mark conflicts [DEFAULT]" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:569 -#: /tmp/fish/implicit/share/completions/darcs.fish:805 -msgid "Allow conflicts, but don't mark them" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:570 #: /tmp/fish/implicit/share/completions/darcs.fish:807 msgid "Filter out any patches that would create conflicts" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:571 -#: /tmp/fish/implicit/share/completions/darcs.fish:808 +#: share/completions/darcs.fish:713 share/completions/darcs.fish:980 msgid "Use external tool to merge conflicts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:572 -#: /tmp/fish/implicit/share/completions/darcs.fish:672 -#: /tmp/fish/implicit/share/completions/darcs.fish:810 -#: /tmp/fish/implicit/share/completions/darcs.fish:966 -msgid "Run the test script" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:573 -#: /tmp/fish/implicit/share/completions/darcs.fish:671 -#: /tmp/fish/implicit/share/completions/darcs.fish:809 -#: /tmp/fish/implicit/share/completions/darcs.fish:965 -msgid "Don't run the test script" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:574 -#: /tmp/fish/implicit/share/completions/darcs.fish:634 -#: /tmp/fish/implicit/share/completions/darcs.fish:706 -#: /tmp/fish/implicit/share/completions/darcs.fish:759 -#: /tmp/fish/implicit/share/completions/darcs.fish:802 -msgid "Don't actually take the action" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:578 -#: /tmp/fish/implicit/share/completions/darcs.fish:626 -#: /tmp/fish/implicit/share/completions/darcs.fish:698 -#: /tmp/fish/implicit/share/completions/darcs.fish:744 -msgid "Don't automatically fulfill dependencies" -msgstr "" +msgstr "Använd externt verktyg för att hantera sammanslagningskonflikter" #: /tmp/fish/implicit/share/completions/darcs.fish:579 #: /tmp/fish/implicit/share/completions/darcs.fish:627 @@ -14686,22 +13429,6 @@ msgstr "" msgid "Prompt about patches that are depended on by matched patches [DEFAULT]" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:581 -#: /tmp/fish/implicit/share/completions/darcs.fish:711 -#: /tmp/fish/implicit/share/completions/darcs.fish:764 -#: /tmp/fish/implicit/share/completions/darcs.fish:851 -#: /tmp/fish/implicit/share/completions/darcs.fish:887 -msgid "Set default repository [DEFAULT]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:582 -#: /tmp/fish/implicit/share/completions/darcs.fish:712 -#: /tmp/fish/implicit/share/completions/darcs.fish:765 -#: /tmp/fish/implicit/share/completions/darcs.fish:852 -#: /tmp/fish/implicit/share/completions/darcs.fish:888 -msgid "Don't set default repository" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:584 #: /tmp/fish/implicit/share/completions/darcs.fish:713 #: /tmp/fish/implicit/share/completions/darcs.fish:768 @@ -14751,6 +13478,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:601 #: /tmp/fish/implicit/share/completions/darcs.fish:726 #: /tmp/fish/implicit/share/completions/darcs.fish:781 +#: share/completions/darcs.fish:886 msgid "Specify the remote repository URL to work with" msgstr "" @@ -14760,6 +13488,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:832 #: /tmp/fish/implicit/share/completions/darcs.fish:954 #: /tmp/fish/implicit/share/completions/darcs.fish:999 +#: share/completions/darcs.fish:101 share/completions/darcs.fish:127 +#: share/completions/darcs.fish:156 share/completions/darcs.fish:186 +#: share/completions/darcs.fish:244 share/completions/darcs.fish:324 +#: share/completions/darcs.fish:363 share/completions/darcs.fish:406 +#: share/completions/darcs.fish:467 share/completions/darcs.fish:492 +#: share/completions/darcs.fish:840 share/completions/darcs.fish:1004 +#: share/completions/darcs.fish:1207 msgid "Specify umask to use when writing" msgstr "" @@ -14768,56 +13503,25 @@ msgstr "" msgid "Don't allow darcs to touch external files or repo metadata" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:666 -#: /tmp/fish/implicit/share/completions/darcs.fish:750 +#: share/completions/darcs.fish:387 share/completions/darcs.fish:916 msgid "Specify author id" -msgstr "" +msgstr "Ange författar-id" -#: /tmp/fish/implicit/share/completions/darcs.fish:667 +#: share/completions/darcs.fish:388 msgid "Name of patch" -msgstr "" +msgstr "Namn på fix" -#: /tmp/fish/implicit/share/completions/darcs.fish:668 -msgid "Edit the long comment by default" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:669 -msgid "Don't give a long comment" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:670 -msgid "Prompt for whether to edit the long comment" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:673 -#: /tmp/fish/implicit/share/completions/darcs.fish:811 -#: /tmp/fish/implicit/share/completions/darcs.fish:967 -msgid "Don't remove the test directory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:674 -#: /tmp/fish/implicit/share/completions/darcs.fish:812 -#: /tmp/fish/implicit/share/completions/darcs.fish:968 -msgid "Remove the test directory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:703 -#: /tmp/fish/implicit/share/completions/darcs.fish:756 -msgid "Sign the patch with your gpg key" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:704 -#: /tmp/fish/implicit/share/completions/darcs.fish:757 +#: share/completions/darcs.fish:864 share/completions/darcs.fish:923 msgid "Sign the patch with a given keyid" -msgstr "" +msgstr "Signera fix med givet nyckelid" -#: /tmp/fish/implicit/share/completions/darcs.fish:705 -#: /tmp/fish/implicit/share/completions/darcs.fish:758 +#: share/completions/darcs.fish:865 share/completions/darcs.fish:924 msgid "Sign the patch using openssl with a given private key" -msgstr "" +msgstr "Signera fix via openssl med en given hemlig nyckel" #: /tmp/fish/implicit/share/completions/darcs.fish:723 #: /tmp/fish/implicit/share/completions/darcs.fish:899 +#: share/completions/darcs.fish:1083 msgid "Apply patch as another user using sudo" msgstr "" @@ -14826,39 +13530,33 @@ msgstr "" msgid "Don't use sudo to apply as another user [DEFAULT]" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:751 +#: share/completions/darcs.fish:917 msgid "Specify destination email" -msgstr "" +msgstr "Välj destinationsadress" #: /tmp/fish/implicit/share/completions/darcs.fish:752 +#: share/completions/darcs.fish:918 msgid "Mail results to additional EMAIL(s)" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:753 +#: share/completions/darcs.fish:919 msgid "Specify mail subject" msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:754 +#: share/completions/darcs.fish:920 msgid "Specify in-reply-to header" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:755 +#: share/completions/darcs.fish:921 msgid "Specify output filename" -msgstr "" +msgstr "Välj utfil" #: /tmp/fish/implicit/share/completions/darcs.fish:763 msgid "Edit the patch bundle description" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:767 -#: /tmp/fish/implicit/share/completions/darcs.fish:827 -msgid "Specify sendmail command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:778 -msgid "Give patch name and comment in file" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:779 msgid "Delete the logfile when done" msgstr "" @@ -14867,41 +13565,21 @@ msgstr "" msgid "Keep the logfile when done [DEFAULT]" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:782 -msgid "Send to context stored in FILENAME" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:797 -msgid "Verify that the patch was signed by a key in PUBRING" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:798 msgid "Verify using openSSL with authorized keys from file KEYS" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:799 -msgid "Don't verify patch signature" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:804 -msgid "Mark conflicts" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:806 msgid "Equivalent to --dont-allow-conflicts, for backwards compatibility" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:823 +#: share/completions/darcs.fish:995 msgid "Reply to email-based patch using FROM address" -msgstr "" +msgstr "Svara på e-postbaserad fix från adress" -#: /tmp/fish/implicit/share/completions/darcs.fish:824 +#: share/completions/darcs.fish:996 msgid "Mail results to additional EMAIL(s). Requires --reply" -msgstr "" - -#: /tmp/fish/implicit/share/completions/darcs.fish:825 -msgid "Forward unsigned messages without extra header" -msgstr "" +msgstr "Posta resultat till extra adresser. (Kräver --reply)" #: /tmp/fish/implicit/share/completions/darcs.fish:826 msgid "Don't forward unsigned messages without extra header [DEFAULT]" @@ -14909,6 +13587,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:842 #: /tmp/fish/implicit/share/completions/darcs.fish:1008 +#: share/completions/darcs.fish:1222 msgid "--repodir=DIRECTORY" msgstr "" @@ -14932,6 +13611,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:850 #: /tmp/fish/implicit/share/completions/darcs.fish:883 +#: share/completions/darcs.fish:1028 msgid "Version specified by the context in FILENAME" msgstr "" @@ -14961,18 +13641,10 @@ msgstr "" msgid "Reorder the patches in the repository" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:938 -msgid "Specify a sibling directory" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:939 msgid "Relink random internal data to a sibling" msgstr "" -#: /tmp/fish/implicit/share/completions/darcs.fish:940 -msgid "Relink pristine tree (not recommended)" -msgstr "" - #: /tmp/fish/implicit/share/completions/darcs.fish:941 msgid "Upgrade repository to latest compatible format" msgstr "" @@ -15027,7 +13699,7 @@ msgstr "" msgid "display help and exit" msgstr "" -#: /tmp/fish/implicit/share/completions/dd.fish:3 +#: /tmp/fish/implicit/share/completions/dd.fish:3 share/completions/dd.fish:5 msgid "Complete dd operands" msgstr "" @@ -15264,99 +13936,77 @@ msgstr "" msgid "Allow reboot after secs" msgstr "" -#: /tmp/fish/implicit/share/completions/diff.fish:1 +#: share/functions/__fish_complete_diff.fish:3 msgid "Ignore case differences" -msgstr "" +msgstr "Ignorera skiftläge" -#: /tmp/fish/implicit/share/completions/diff.fish:2 +#: share/functions/__fish_complete_diff.fish:4 msgid "Ignore case when comparing file names" -msgstr "" +msgstr "Ignorera skiftläge på filnamn" -#: /tmp/fish/implicit/share/completions/diff.fish:3 +#: share/functions/__fish_complete_diff.fish:5 msgid "Consider case when comparing file names" -msgstr "" +msgstr "Skilj på skiftläge på filnamn" -#: /tmp/fish/implicit/share/completions/diff.fish:4 +#: share/functions/__fish_complete_diff.fish:6 msgid "Ignore changes due to tab expansion" -msgstr "" +msgstr "Ignorera ändringar på grund av tabbexpansion" -#: /tmp/fish/implicit/share/completions/diff.fish:5 +#: share/functions/__fish_complete_diff.fish:7 msgid "Ignore changes in the amount of white space" -msgstr "" +msgstr "Ignorera skillnader i blanka tecken" -#: /tmp/fish/implicit/share/completions/diff.fish:6 +#: share/functions/__fish_complete_diff.fish:8 msgid "Ignore all white space" -msgstr "" +msgstr "Ignorera blanka tecken" -#: /tmp/fish/implicit/share/completions/diff.fish:7 -#: /tmp/fish/implicit/share/completions/git.fish:327 +#: share/functions/__fish_complete_diff.fish:9 msgid "Ignore changes whose lines are all blank" -msgstr "" +msgstr "Ignorera ändringar vars rader enbart består av blana tecken" -#: /tmp/fish/implicit/share/completions/diff.fish:8 -msgid "Ignore changes whose lines match the REGEX" -msgstr "" - -#: /tmp/fish/implicit/share/completions/diff.fish:9 -#: /tmp/fish/implicit/share/completions/git.fish:323 +#: share/functions/__fish_complete_diff.fish:11 msgid "Treat all files as text" -msgstr "" +msgstr "Behandla alla filer som text" -#: /tmp/fish/implicit/share/completions/diff.fish:10 +#: share/functions/__fish_complete_diff.fish:12 msgid "Recursively compare subdirectories" -msgstr "" +msgstr "Rekursera till underkataloger" -#: /tmp/fish/implicit/share/completions/diff.fish:11 +#: share/functions/__fish_complete_diff.fish:13 msgid "Treat absent files as empty" -msgstr "" +msgstr "Behandla saknade filer som om de vore tomma" -#: /tmp/fish/implicit/share/completions/diff.fish:12 -msgid "Output NUM lines of copied context" -msgstr "" - -#: /tmp/fish/implicit/share/completions/diff.fish:13 +#: share/functions/__fish_complete_diff.fish:15 msgid "Output 3 lines of copied context" -msgstr "" +msgstr "Skriv ut 3 rader av kopierad sammanhang" -#: /tmp/fish/implicit/share/completions/diff.fish:14 -msgid "Output NUM lines of unified context" -msgstr "" - -#: /tmp/fish/implicit/share/completions/diff.fish:15 +#: share/functions/__fish_complete_diff.fish:17 msgid "Output 3 lines of unified context" -msgstr "" +msgstr "Skriv ut 3 rader av unifierat sammanhang" -#: /tmp/fish/implicit/share/completions/diff.fish:16 +#: share/functions/__fish_complete_diff.fish:18 msgid "Output only whether the files differ" -msgstr "" +msgstr "Skriv bara ut huruvida filerna skiljer sig" -#: /tmp/fish/implicit/share/completions/diff.fish:17 +#: share/functions/__fish_complete_diff.fish:19 msgid "Output a normal diff" -msgstr "" +msgstr "Skriv ut en vanlig diff" -#: /tmp/fish/implicit/share/completions/diff.fish:18 +#: share/functions/__fish_complete_diff.fish:20 msgid "Output in two columns" -msgstr "" +msgstr "Skriv ut i två kolumner" -#: /tmp/fish/implicit/share/completions/diff.fish:19 -msgid "Output at most NUM print columns" -msgstr "" - -#: /tmp/fish/implicit/share/completions/diff.fish:20 +#: share/functions/__fish_complete_diff.fish:22 msgid "Try to find a smaller set of changes" -msgstr "" +msgstr "Försök hitta en mindre uppsättning ändringar" #: /tmp/fish/implicit/share/completions/diff.fish:21 msgid "Compare FILE1 to all operands" msgstr "" -#: /tmp/fish/implicit/share/completions/diff.fish:22 -msgid "Compare FILE2 to all operands" -msgstr "" - -#: /tmp/fish/implicit/share/completions/diff.fish:23 +#: share/functions/__fish_complete_diff.fish:25 msgid "Pass the output through 'pr'" -msgstr "" +msgstr "Skicka utdata genom 'pr'" #: /tmp/fish/implicit/share/completions/dig.fish:1 msgid "Use IPv4 query transport only" @@ -16038,156 +14688,130 @@ msgstr "" msgid "Removes one or more directories from the exclusion list" msgstr "" -#: /tmp/fish/implicit/share/completions/du.fish:1 -msgid "Write size for all files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/du.fish:2 -msgid "Print file size, not disk usage" -msgstr "" - -#: /tmp/fish/implicit/share/completions/du.fish:3 -#: /tmp/fish/implicit/share/completions/tar.fish:13 +#: share/completions/df.fish:22 msgid "Block size" -msgstr "" +msgstr "Blockstorlek" -#: /tmp/fish/implicit/share/completions/du.fish:4 -msgid "Use 1B block size" -msgstr "" - -#: /tmp/fish/implicit/share/completions/du.fish:5 -msgid "Produce grand total" -msgstr "" - -#: /tmp/fish/implicit/share/completions/du.fish:6 -msgid "Dereference file symlinks" -msgstr "" - -#: /tmp/fish/implicit/share/completions/du.fish:7 -#: /tmp/fish/implicit/share/completions/ls.fish:21 -#: /tmp/fish/implicit/share/completions/ls.fish:76 +#: share/functions/__fish_complete_ls.fish:24 msgid "Human readable sizes" -msgstr "" +msgstr "Människoanpassade storleksangivelser, bas 1024" -#: /tmp/fish/implicit/share/completions/du.fish:8 -#: /tmp/fish/implicit/share/completions/ls.fish:41 +#: share/functions/__fish_complete_ls.fish:62 msgid "Human readable sizes, powers of 1000" -msgstr "" - -#: /tmp/fish/implicit/share/completions/du.fish:9 -msgid "Use 1kB block size" -msgstr "" - -#: /tmp/fish/implicit/share/completions/du.fish:10 -msgid "Count hard links multiple times" -msgstr "" - -#: /tmp/fish/implicit/share/completions/du.fish:11 -msgid "Dereference all symlinks" -msgstr "" - -#: /tmp/fish/implicit/share/completions/du.fish:12 -msgid "Do not include subdirectory size" -msgstr "" - -#: /tmp/fish/implicit/share/completions/du.fish:13 -msgid "Display only a total for each argument" -msgstr "" +msgstr "Människoanpassade storleksangivelser, bas 1000" #: /tmp/fish/implicit/share/completions/du.fish:14 msgid "Skip other file systems" msgstr "" -#: /tmp/fish/implicit/share/completions/du.fish:15 +#: /tmp/fish/implicit/share/completions/du.fish:15 share/completions/du.fish:15 msgid "Exclude files that match pattern in file" msgstr "" -#: /tmp/fish/implicit/share/completions/du.fish:16 -#: /tmp/fish/implicit/share/completions/ncdu.fish:5 +#: share/completions/du.fish:16 msgid "Exclude files that match pattern" -msgstr "" +msgstr "Exkludera filer som matchar mönster" -#: /tmp/fish/implicit/share/completions/du.fish:17 +#: share/completions/du.fish:17 msgid "Recursion limit" -msgstr "" +msgstr "Rekursionsgräns" #: /tmp/fish/implicit/share/completions/duply.fish:1 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:13 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:14 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:15 #: /tmp/fish/implicit/share/completions/netctl.fish:17 +#: share/completions/duply.fish:3 msgid "Profile" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:2 +#: share/completions/duply.fish:4 msgid "Get usage help text" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:3 +#: share/completions/duply.fish:7 msgid "Creates a configuration profile" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:4 +#: share/completions/duply.fish:8 msgid "Backup with pre/post script execution" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:5 +#: share/completions/duply.fish:9 msgid "Backup without executing pre/post scripts" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:6 +#: share/completions/duply.fish:10 msgid "Execute /pre script" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:7 +#: share/completions/duply.fish:11 msgid "Execute /post script" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:8 +#: share/completions/duply.fish:12 msgid "Force full backup" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:9 +#: share/completions/duply.fish:13 msgid "Force incremental backup" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:10 +#: share/completions/duply.fish:14 msgid "List all files in backup (as it was at , default: now)" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:11 +#: share/completions/duply.fish:15 msgid "Prints backup sets and chains currently in repository" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:12 +#: share/completions/duply.fish:16 msgid "List files changed since latest backup" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:13 +#: share/completions/duply.fish:17 msgid "Shows outdated backup archives [--force, delete these files]" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:14 +#: share/completions/duply.fish:18 msgid "Shows outdated backups [--force, delete these files]" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:15 +#: share/completions/duply.fish:19 msgid "Shows broken backup archives [--force, delete these files]" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:16 +#: share/completions/duply.fish:20 msgid "Restore the backup to [as it was at ]" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:17 +#: share/completions/duply.fish:21 msgid "Restore single file/folder from backup [as it was at ]" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:18 +#: share/completions/duply.fish:24 msgid "Really execute the commands: purge, purge-full, cleanup" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:19 +#: share/completions/duply.fish:25 msgid "Do nothing but print out generated duplicity command lines" msgstr "" @@ -16202,6 +14826,7 @@ msgid "Don" msgstr "" #: /tmp/fish/implicit/share/completions/duply.fish:22 +#: share/completions/duply.fish:28 msgid "Output verbosity level" msgstr "" @@ -16708,25 +15333,29 @@ msgstr "" msgid "set parent window" msgstr "" -#: /tmp/fish/implicit/share/completions/emerge.fish:1 -#: /tmp/fish/implicit/share/completions/equery.fish:1 +#: share/completions/emerge.fish:5 share/completions/equery.fish:5 msgid "" "Prints completions for installed packages on the system from /var/db/pkg" msgstr "" +"Visa kompletteringar för installerade packet på systemet från /var/db/pkg" -#: /tmp/fish/implicit/share/completions/emerge.fish:2 -#: /tmp/fish/implicit/share/completions/equery.fish:2 +#: share/completions/emerge.fish:13 share/completions/equery.fish:12 msgid "" "Prints completions for all available packages on the system from /usr/portage" msgstr "" +"Visa kompletteringar för alla tillgängliga packet på systemet från /usr/" +"portage" -#: /tmp/fish/implicit/share/completions/emerge.fish:3 +#: share/completions/emerge.fish:22 msgid "" "Tests if emerge command should have an installed package as potential " "completion" msgstr "" +"Testa om emergekommando borde ha ett installerat paket som potentiell " +"komplettering" #: /tmp/fish/implicit/share/completions/emerge.fish:4 +#: share/completions/emerge.fish:32 msgid "" "Print completions for all packages including the version compare if that is " "already typed" @@ -16987,25 +15616,12 @@ msgstr "" msgid "Output version information" msgstr "" -#: /tmp/fish/implicit/share/completions/env.fish:1 +#: share/completions/env.fish:2 msgid "Redefine variable" -msgstr "" - -#: /tmp/fish/implicit/share/completions/env.fish:2 -#: /tmp/fish/implicit/share/completions/nice.fish:1 -#: /tmp/fish/implicit/share/completions/time.fish:1 -msgid "Command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/env.fish:3 -msgid "Start with an empty environment" -msgstr "" - -#: /tmp/fish/implicit/share/completions/env.fish:4 -msgid "Remove variable from the environment" -msgstr "" +msgstr "Omdefinera variabel" #: /tmp/fish/implicit/share/completions/equery.fish:3 +#: share/completions/equery.fish:19 msgid "" "Prints completions for all available categories on the system from /usr/" "portage" @@ -17668,11 +16284,9 @@ msgstr "" msgid "Reload filelist after given time in second" msgstr "" -#: /tmp/fish/implicit/share/completions/feh.fish:44 -#: /tmp/fish/implicit/share/completions/ls.fish:26 -#: /tmp/fish/implicit/share/completions/ls.fish:81 +#: share/functions/__fish_complete_ls.fish:29 msgid "Reverse sort order" -msgstr "" +msgstr "Omvänd sorteringsordning" #: /tmp/fish/implicit/share/completions/feh.fish:45 msgid "Scale image to fit window geometry" @@ -18024,11 +16638,6 @@ msgstr "" msgid "File is empty and is either a regular file or a directory" msgstr "" -#: /tmp/fish/implicit/share/completions/find.fish:24 -#: /tmp/fish/implicit/share/completions/test.fish:31 -msgid "File is executable" -msgstr "" - #: /tmp/fish/implicit/share/completions/find.fish:25 msgid "Always false" msgstr "" @@ -18223,22 +16832,6 @@ msgstr "" msgid "Result is true if either previous or next action are true" msgstr "" -#: /tmp/fish/implicit/share/completions/fish.fish:1 -msgid "Run fish with this command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/fish.fish:4 -msgid "Only parse input, do not execute" -msgstr "" - -#: /tmp/fish/implicit/share/completions/fish.fish:5 -msgid "Run in interactive mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/fish.fish:6 -msgid "Run in login mode" -msgstr "" - #: /tmp/fish/implicit/share/completions/fish.fish:7 msgid "Output profiling information to specified file" msgstr "" @@ -18259,10 +16852,9 @@ msgstr "" msgid "Output in HTML format" msgstr "" -#: /tmp/fish/implicit/share/completions/fish_indent.fish:6 -#: /tmp/fish/implicit/share/completions/sort.fish:15 +#: share/completions/sort.fish:16 msgid "Write to file" -msgstr "" +msgstr "Skriv till fil" #: /tmp/fish/implicit/share/completions/fish_indent.fish:7 msgid "Enable debug at specified verbosity level" @@ -19213,6 +17805,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:246 #: /tmp/fish/implicit/share/completions/git.fish:295 #: /tmp/fish/implicit/share/completions/git.fish:296 +#: share/completions/git.fish:177 msgid "Tag" msgstr "" @@ -19717,6 +18310,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/rejmerge.fish:3 #: /tmp/fish/implicit/share/completions/root.fish:6 #: /tmp/fish/implicit/share/completions/zypper.fish:4 +#: share/completions/zypper.fish:30 msgid "Print help" msgstr "" @@ -19733,38 +18327,6 @@ msgstr "" msgid "Edit in interactive mode" msgstr "" -#: /tmp/fish/implicit/share/completions/function.fish:1 -#: /tmp/fish/implicit/share/completions/functions.fish:5 -msgid "Set function description" -msgstr "" - -#: /tmp/fish/implicit/share/completions/function.fish:2 -#: /tmp/fish/implicit/share/completions/functions.fish:2 -#: /tmp/fish/implicit/share/completions/type.fish:9 -msgid "Function" -msgstr "" - -#: /tmp/fish/implicit/share/completions/function.fish:3 -#: /tmp/fish/implicit/share/completions/type.fish:8 -msgid "Builtin" -msgstr "" - -#: /tmp/fish/implicit/share/completions/function.fish:4 -msgid "Make the function a job exit event handler" -msgstr "" - -#: /tmp/fish/implicit/share/completions/function.fish:5 -msgid "Make the function a process exit event handler" -msgstr "" - -#: /tmp/fish/implicit/share/completions/function.fish:6 -msgid "Make the function a signal event handler" -msgstr "" - -#: /tmp/fish/implicit/share/completions/function.fish:7 -msgid "Make the function a variable update event handler" -msgstr "" - #: /tmp/fish/implicit/share/completions/function.fish:8 msgid "Make the function a generic event handler" msgstr "" @@ -19781,10 +18343,6 @@ msgstr "" msgid "Inherit completions from the given command" msgstr "" -#: /tmp/fish/implicit/share/completions/functions.fish:1 -msgid "Erase function" -msgstr "" - #: /tmp/fish/implicit/share/completions/functions.fish:3 msgid "Show hidden functions" msgstr "" @@ -19857,25 +18415,9 @@ msgstr "" msgid "Search only for IPv6 sockets" msgstr "" -#: /tmp/fish/implicit/share/completions/fusermount.fish:4 -#: /tmp/fish/implicit/share/completions/sshfs.fish:4 -#: /tmp/fish/implicit/share/completions/sshfs.fish:8 -#: /tmp/fish/implicit/share/completions/udisksctl.fish:19 +#: share/completions/fusermount.fish:15 share/completions/sshfs.fish:27 msgid "Mount options" -msgstr "" - -#: /tmp/fish/implicit/share/completions/fusermount.fish:5 -msgid "Unmount" -msgstr "" - -#: /tmp/fish/implicit/share/completions/fusermount.fish:6 -#: /tmp/fish/implicit/share/completions/gdb.fish:10 -msgid "Quiet" -msgstr "" - -#: /tmp/fish/implicit/share/completions/fusermount.fish:7 -msgid "Lazy unmount" -msgstr "" +msgstr "Monteringsflagga" #: /tmp/fish/implicit/share/completions/gcc.fish:1 msgid "Standard mode" @@ -19898,6 +18440,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:5 #: /tmp/fish/implicit/share/completions/gcc.fish:481 +#: share/completions/gcc.fish:31 share/completions/gcc.fish:513 msgid "Use dir as the logical root directory for headers and libraries" msgstr "" @@ -20134,10 +18677,6 @@ msgid "" "Downgrade some diagnostics about nonconformant code from errors to warnings" msgstr "" -#: /tmp/fish/implicit/share/completions/gcc.fish:55 -msgid "Enable automatic template instantiation at link time" -msgstr "" - #: /tmp/fish/implicit/share/completions/gcc.fish:56 msgid "" "Disable generation of information about every class with virtual functions " @@ -22189,6 +20728,7 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:480 +#: share/completions/gcc.fish:512 msgid "" "Process file after the compiler reads in the standard specs file, in order " "to override the defaults that the gcc driver program uses when determining " @@ -22314,12 +20854,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:507 #: /tmp/fish/implicit/share/completions/gcc.fish:508 #: /tmp/fish/implicit/share/completions/gcc.fish:509 +#: share/completions/gcc.fish:539 share/completions/gcc.fish:540 +#: share/completions/gcc.fish:541 msgid "" "This specifies what floating point hardware (or hardware emulation) is " "available on the target" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:510 +#: share/completions/gcc.fish:542 msgid "" "The size of all structures and unions will be rounded up to a multiple of " "the number of bits set by this option" @@ -22352,6 +20895,7 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:516 +#: share/completions/gcc.fish:548 msgid "Specify the register to be used for PIC addressing" msgstr "" @@ -22398,10 +20942,12 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:524 +#: share/completions/gcc.fish:556 msgid "Specify the access model for the thread local storage pointer" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:525 +#: share/completions/gcc.fish:557 msgid "Specify ATMEL AVR instruction set or MCU type" msgstr "" @@ -22410,6 +20956,7 @@ msgid "Output instruction sizes to the asm file" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:527 +#: share/completions/gcc.fish:559 msgid "" "Specify the initial stack address, which may be a symbol or numeric value, " "__stack is the default" @@ -22485,6 +21032,7 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:542 +#: share/completions/gcc.fish:574 msgid "" "Specified the identification number of the ID based shared library being " "compiled" @@ -25438,119 +23986,148 @@ msgid "Print the version and quit" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:3 +#: share/completions/gem.fish:35 msgid "Use URL as the remote source for gems" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:4 +#: share/completions/gem.fish:36 msgid "Use the given HTTP proxy for remote operations" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:5 +#: share/completions/gem.fish:37 msgid "Use no HTTP proxy for remote operations" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:6 +#: share/completions/gem.fish:38 msgid "Get help on this command" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:7 +#: share/completions/gem.fish:39 msgid "Set the verbose level of output" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:8 +#: share/completions/gem.fish:40 msgid "Use this config file instead of default" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:9 +#: share/completions/gem.fish:41 msgid "Show stack backtrace on errors" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:10 +#: share/completions/gem.fish:42 msgid "Turn on Ruby debugging" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:11 +#: share/completions/gem.fish:47 msgid "Add a trusted certificate" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:12 +#: share/completions/gem.fish:48 msgid "List trusted certificates" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:13 +#: share/completions/gem.fish:49 msgid "Remove trusted certificates containing STRING" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:14 +#: share/completions/gem.fish:50 msgid "Build private key and self-signed certificate for EMAIL_ADDR" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:15 +#: share/completions/gem.fish:51 msgid "Certificate for --sign command" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:16 +#: share/completions/gem.fish:52 msgid "Private key for --sign command" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:17 +#: share/completions/gem.fish:53 msgid "Sign a certificate with my key and certificate" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:18 +#: share/completions/gem.fish:58 msgid "Verify gem file against its internal checksum" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:19 +#: share/completions/gem.fish:59 msgid "Report 'unmanaged' or rogue files in the gem repository" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:20 +#: share/completions/gem.fish:60 msgid "Run unit tests for gem" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:21 +#: share/completions/gem.fish:61 msgid "Specify version for which to run unit tests" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:22 +#: share/completions/gem.fish:66 msgid "Don't really cleanup" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:23 +#: share/completions/gem.fish:71 msgid "List the files inside a Gem" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:24 +#: share/completions/gem.fish:72 msgid "Specify version for gem to view" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:25 +#: share/completions/gem.fish:73 msgid "Search for gems under specific paths" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:26 +#: share/completions/gem.fish:74 msgid "Be verbose when showing status" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:27 #: /tmp/fish/implicit/share/completions/gem.fish:82 +#: share/completions/gem.fish:79 share/completions/gem.fish:172 msgid "Specify version of gem to uninstall" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:28 +#: share/completions/gem.fish:80 msgid "Include reverse dependencies in the output" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:29 +#: share/completions/gem.fish:81 msgid "Don't include reverse dependencies in the output" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:30 +#: share/completions/gem.fish:82 msgid "Pipe Format (name --version ver)" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:31 +#: share/completions/gem.fish:97 msgid "Specify version of gem to install" msgstr "" @@ -25559,6 +24136,9 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:57 #: /tmp/fish/implicit/share/completions/gem.fish:68 #: /tmp/fish/implicit/share/completions/gem.fish:72 +#: share/completions/gem.fish:98 share/completions/gem.fish:121 +#: share/completions/gem.fish:131 share/completions/gem.fish:150 +#: share/completions/gem.fish:158 msgid "Restrict operations to the LOCAL domain (default)" msgstr "" @@ -25567,6 +24147,9 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:58 #: /tmp/fish/implicit/share/completions/gem.fish:69 #: /tmp/fish/implicit/share/completions/gem.fish:73 +#: share/completions/gem.fish:99 share/completions/gem.fish:122 +#: share/completions/gem.fish:132 share/completions/gem.fish:151 +#: share/completions/gem.fish:159 msgid "Restrict operations to the REMOTE domain" msgstr "" @@ -25575,156 +24158,194 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:59 #: /tmp/fish/implicit/share/completions/gem.fish:70 #: /tmp/fish/implicit/share/completions/gem.fish:74 +#: share/completions/gem.fish:100 share/completions/gem.fish:123 +#: share/completions/gem.fish:133 share/completions/gem.fish:152 +#: share/completions/gem.fish:160 msgid "Allow LOCAL and REMOTE operations" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:35 #: /tmp/fish/implicit/share/completions/gem.fish:84 +#: share/completions/gem.fish:101 share/completions/gem.fish:182 msgid "Gem repository directory to get installed gems" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:36 #: /tmp/fish/implicit/share/completions/gem.fish:85 +#: share/completions/gem.fish:102 share/completions/gem.fish:183 msgid "Generate RDoc documentation for the gem on install" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:37 #: /tmp/fish/implicit/share/completions/gem.fish:86 +#: share/completions/gem.fish:103 share/completions/gem.fish:184 msgid "Don't generate RDoc documentation for the gem on install" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:38 #: /tmp/fish/implicit/share/completions/gem.fish:87 +#: share/completions/gem.fish:104 share/completions/gem.fish:185 msgid "Generate RI documentation for the gem on install" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:39 #: /tmp/fish/implicit/share/completions/gem.fish:88 +#: share/completions/gem.fish:105 share/completions/gem.fish:186 msgid "Don't generate RI documentation for the gem on install" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:40 #: /tmp/fish/implicit/share/completions/gem.fish:89 +#: share/completions/gem.fish:106 share/completions/gem.fish:187 msgid "Force gem to install, bypassing dependency checks" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:41 #: /tmp/fish/implicit/share/completions/gem.fish:90 +#: share/completions/gem.fish:107 share/completions/gem.fish:188 msgid "Don't force gem to install, bypassing dependency checks" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:42 #: /tmp/fish/implicit/share/completions/gem.fish:91 +#: share/completions/gem.fish:108 share/completions/gem.fish:189 msgid "Run unit tests prior to installation" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:43 #: /tmp/fish/implicit/share/completions/gem.fish:92 +#: share/completions/gem.fish:109 share/completions/gem.fish:190 msgid "Don't run unit tests prior to installation" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:44 #: /tmp/fish/implicit/share/completions/gem.fish:93 +#: share/completions/gem.fish:110 share/completions/gem.fish:191 msgid "Use bin wrappers for executables" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:45 #: /tmp/fish/implicit/share/completions/gem.fish:94 +#: share/completions/gem.fish:111 share/completions/gem.fish:192 msgid "Don't use bin wrappers for executables" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:46 #: /tmp/fish/implicit/share/completions/gem.fish:95 +#: share/completions/gem.fish:112 share/completions/gem.fish:193 msgid "Specify gem trust policy" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:47 #: /tmp/fish/implicit/share/completions/gem.fish:96 +#: share/completions/gem.fish:113 share/completions/gem.fish:194 msgid "Do not install any required dependent gems" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:48 #: /tmp/fish/implicit/share/completions/gem.fish:97 +#: share/completions/gem.fish:114 share/completions/gem.fish:195 msgid "Unconditionally install the required dependent gems" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:49 #: /tmp/fish/implicit/share/completions/gem.fish:55 #: /tmp/fish/implicit/share/completions/gem.fish:66 +#: share/completions/gem.fish:119 share/completions/gem.fish:129 +#: share/completions/gem.fish:148 msgid "Display detailed information of gem(s)" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:50 #: /tmp/fish/implicit/share/completions/gem.fish:56 #: /tmp/fish/implicit/share/completions/gem.fish:67 +#: share/completions/gem.fish:120 share/completions/gem.fish:130 +#: share/completions/gem.fish:149 msgid "Don't display detailed information of gem(s)" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:54 +#: share/completions/gem.fish:128 msgid "Name of gem(s) to query on matches the provided REGEXP" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:60 +#: share/completions/gem.fish:138 msgid "Generate RDoc/RI documentation for all installed gems" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:61 +#: share/completions/gem.fish:139 msgid "Include RDoc generated documents" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:62 +#: share/completions/gem.fish:140 msgid "Don't include RDoc generated documents" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:63 +#: share/completions/gem.fish:141 msgid "Include RI generated documents" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:64 +#: share/completions/gem.fish:142 msgid "Don't include RI generated documents" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:65 +#: share/completions/gem.fish:143 msgid "Specify version of gem to rdoc" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:71 +#: share/completions/gem.fish:157 msgid "Specify version of gem to examine" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:75 +#: share/completions/gem.fish:161 msgid "Output specifications for all versions of the gem" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:76 +#: share/completions/gem.fish:166 msgid "Uninstall all matching versions" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:77 +#: share/completions/gem.fish:167 msgid "Don't uninstall all matching versions" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:78 +#: share/completions/gem.fish:168 msgid "Ignore dependency requirements while uninstalling" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:79 +#: share/completions/gem.fish:169 msgid "Don't ignore dependency requirements while uninstalling" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:80 +#: share/completions/gem.fish:170 msgid "Uninstall applicable executables without confirmation" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:81 +#: share/completions/gem.fish:171 msgid "Don't uninstall applicable executables without confirmation" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:83 +#: share/completions/gem.fish:177 msgid "Specify version of gem to unpack" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:98 +#: share/completions/gem.fish:196 msgid "Update the RubyGems system software" msgstr "" @@ -25824,6 +24445,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:267 #: /tmp/fish/implicit/share/completions/git.fish:287 #: /tmp/fish/implicit/share/completions/git.fish:309 +#: share/completions/git.fish:153 share/completions/git.fish:176 msgid "Branch" msgstr "" @@ -26062,12 +24684,6 @@ msgstr "" msgid "Don't add the file(s), but only refresh their stat" msgstr "" -#: /tmp/fish/implicit/share/completions/git.fish:79 -#: /tmp/fish/implicit/share/completions/ipset.fish:8 -#: /tmp/fish/implicit/share/completions/make.fish:6 -msgid "Ignore errors" -msgstr "" - #: /tmp/fish/implicit/share/completions/git.fish:80 msgid "Check if any of the given files would be ignored" msgstr "" @@ -27560,809 +26176,156 @@ msgid "" "gpg. argv[1] is a regexp" msgstr "" -#: /tmp/fish/implicit/share/completions/gpg.fish:4 -msgid "Make a signature" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:5 -msgid "Make a clear text signature" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:6 -msgid "Make a detached signature" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:7 -msgid "Encrypt data" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:8 -msgid "Encrypt with a symmetric cipher using a passphrase" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:9 -msgid "Store only (make a simple RFC1991 packet)" -msgstr "" - #: /tmp/fish/implicit/share/completions/gpg.fish:10 msgid "Decrypt specified file or stdin" msgstr "" -#: /tmp/fish/implicit/share/completions/gpg.fish:11 -msgid "Assume specified file or stdin is sigfile and verify it" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:12 -msgid "Modify certain other commands to accept multiple files for processing" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:13 -msgid "Identical to '--multifile --verify'" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:14 -msgid "Identical to '--multifile --encrypt'" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:15 -msgid "Identical to --multifile --decrypt" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:16 -#: /tmp/fish/implicit/share/completions/gpg.fish:17 -msgid "" -"List all keys from the public keyrings, or just the ones given on the " -"command line" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:18 -msgid "" -"List all keys from the secret keyrings, or just the ones given on the " -"command line" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:19 -msgid "Same as --list-keys, but the signatures are listed too" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:20 -msgid "Same as --list-keys, but the signatures are listed and verified" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:21 -msgid "List all keys with their fingerprints" -msgstr "" - #: /tmp/fish/implicit/share/completions/gpg.fish:22 #: /tmp/fish/implicit/share/completions/signify.fish:2 msgid "Generate a new key pair" msgstr "" -#: /tmp/fish/implicit/share/completions/gpg.fish:23 -msgid "Present a menu which enables you to do all key related tasks" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:24 -msgid "Sign a public key with your secret key" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:25 -msgid "Sign a public key with your secret key but mark it as non exportable" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:26 -msgid "Remove key from the public keyring" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:27 -msgid "Remove key from the secret and public keyring" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:28 -msgid "" -"Same as --delete-key, but if a secret key exists, it will be removed first" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:29 -msgid "Generate a revocation certificate for the complete key" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:30 -msgid "Generate a designated revocation certificate for a key" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:31 -msgid "Export all or the given keys from all keyrings" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:32 -msgid "Same as --export but sends the keys to a keyserver" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:33 -#: /tmp/fish/implicit/share/completions/gpg.fish:34 -msgid "Same as --export, but exports the secret keys instead" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:35 -#: /tmp/fish/implicit/share/completions/gpg.fish:36 -msgid "Import/merge keys" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:37 -msgid "Import the keys with the given key IDs from a keyserver" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:38 -msgid "" -"Request updates from a keyserver for keys that already exist on the local " -"keyring" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:39 -msgid "Search the keyserver for the given names" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:40 -msgid "Do trust database maintenance" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:41 -msgid "Do trust database maintenance without user interaction" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:42 -msgid "Send the ownertrust values to stdout" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:43 -msgid "" -"Update the trustdb with the ownertrust values stored in specified files or " -"stdin" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:44 -msgid "Create signature caches in the keyring" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:45 -msgid "" -"Print message digest of specified algorithm for all given files or stdin" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:46 -msgid "Print message digest of all algorithms for all given files or stdin" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:47 -msgid "Emit specified number of random bytes of the given quality level" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:48 -msgid "Display version and supported algorithms, and exit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:49 -msgid "Display warranty and exit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:51 -msgid "Create ASCII armored output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:52 -#: /tmp/fish/implicit/share/completions/msgfmt.fish:8 -#: /tmp/fish/implicit/share/completions/xgettext.fish:4 +#: share/completions/gpg.fish:116 msgid "Write output to specified file" -msgstr "" +msgstr "Skriv utdata till angiven fil" -#: /tmp/fish/implicit/share/completions/gpg.fish:53 -msgid "" -"Sets a limit on the number of bytes that will be generated when processing a " -"file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:54 -msgid "Use specified key as the key to sign with" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:55 -msgid "Use specified key as the default key to sign with" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:56 -msgid "Encrypt for specified user id" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:57 -msgid "Encrypt for specified user id, but hide the keyid of the key" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:58 -msgid "Use specified user id as default recipient" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:59 -msgid "Use the default key as default recipient" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:60 -msgid "Reset --default-recipient and --default-recipient-self" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:61 -msgid "Give more information during processing" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:63 -#: /tmp/fish/implicit/share/completions/gpg.fish:64 -#: /tmp/fish/implicit/share/completions/gpg.fish:65 -msgid "Compression level" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:66 -msgid "Use a different decompression method for BZIP2 compressed files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:67 -msgid "" -"Treat input files as text and store them in the OpenPGP canonical text form " -"with standard 'CRLF' line endings" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:68 -msgid "" -"Don't treat input files as text and store them in the OpenPGP canonical text " -"form with standard 'CRLF' line endings" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:69 -msgid "Don't make any changes (this is not completely implemented)" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:70 -#: /tmp/fish/implicit/share/completions/mv.fish:3 -msgid "Prompt before overwrite" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:71 -#: /tmp/fish/implicit/share/completions/scp.fish:3 -#: /tmp/fish/implicit/share/completions/top.fish:1 -msgid "Batch mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:72 -msgid "Don't use batch mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:73 -msgid "Never write output to terminal" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:74 -msgid "Assume yes on most questions" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:75 -msgid "Assume no on most questions" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:76 -msgid "Prompt for a certification level when making a key signature" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:77 -msgid "Don't prompt for a certification level when making a key signature" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:78 -msgid "" -"The default certification level to use for the level check when signing a key" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:79 -msgid "" -"Disregard any signatures with a certification level below specified level " -"when building the trust database" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:80 -msgid "" -"Assume that the specified key is as trustworthy as one of your own secret " -"keys" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:81 -msgid "Specify trust model" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:82 -msgid "Select how to display key IDs" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:83 +#: share/completions/gpg.fish:161 msgid "Use specified keyserver" -msgstr "" +msgstr "Använd angiven nyckelserver" -#: /tmp/fish/implicit/share/completions/gpg.fish:84 -msgid "Options for the keyserver" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:85 -msgid "Options for importing keys" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:86 -msgid "Options for exporting keys" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:87 -msgid "Options for listing keys and signatures" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:88 -msgid "Options for verifying signatures" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:89 +#: share/completions/gpg.fish:169 msgid "The command line that should be run to view a photo ID" -msgstr "" +msgstr "Kommandoraden som skall köras för att visa ett fotoid" -#: /tmp/fish/implicit/share/completions/gpg.fish:90 +#: share/completions/gpg.fish:170 msgid "" "Sets a list of directories to search for photo viewers and keyserver helpers" msgstr "" +"Sätt en lista av kataloger att söka efter fotovisare och nyckelserverhjälpare" -#: /tmp/fish/implicit/share/completions/gpg.fish:91 -msgid "" -"Display the keyring name at the head of key listings to show which keyring a " -"given key resides on" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:92 +#: share/completions/gpg.fish:173 msgid "Add specified file to the current list of keyrings" -msgstr "" +msgstr "Lägg till angiven fil fill den nuvarande listan av nyckelringar" -#: /tmp/fish/implicit/share/completions/gpg.fish:93 +#: share/completions/gpg.fish:175 msgid "Add specified file to the current list of secret keyrings" msgstr "" +"Lägg till angiven fil fill den nuvarande listan av hemliga nyckelringar" -#: /tmp/fish/implicit/share/completions/gpg.fish:94 +#: share/completions/gpg.fish:176 msgid "Designate specified file as the primary public keyring" -msgstr "" +msgstr "Välj den angivna filen som den primära öppna nyckelring" -#: /tmp/fish/implicit/share/completions/gpg.fish:95 +#: share/completions/gpg.fish:178 msgid "Use specified file instead of the default trustdb" -msgstr "" +msgstr "Använd angiven fil istället för standard-förtroendedatabasen" -#: /tmp/fish/implicit/share/completions/gpg.fish:96 -msgid "Set the home directory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:97 -msgid "Set the native character set" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:98 -msgid "Assume that following command line arguments are given in UTF8" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:99 -msgid "" -"Assume that following arguments are encoded in the character set specified " -"by --display-charset" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:100 +#: share/completions/gpg.fish:184 msgid "Read options from specified file, do not read the default options file" -msgstr "" +msgstr "Läs inställningar från angivan fil, läs inte standardinställningsfil" -#: /tmp/fish/implicit/share/completions/gpg.fish:101 -msgid "Shortcut for '--options /dev/null'" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:102 +#: share/completions/gpg.fish:186 msgid "Load an extension module" -msgstr "" +msgstr "Ladda en förlängningsmodul" -#: /tmp/fish/implicit/share/completions/gpg.fish:103 +#: share/completions/gpg.fish:188 msgid "Write special status strings to the specified file descriptor" -msgstr "" +msgstr "Skriv speciella statussträngar till den angivna filidentifieraren" -#: /tmp/fish/implicit/share/completions/gpg.fish:104 +#: share/completions/gpg.fish:189 msgid "Write log output to the specified file descriptor" -msgstr "" +msgstr "Skriv loggdata till angiven filidentifierare" -#: /tmp/fish/implicit/share/completions/gpg.fish:105 -msgid "Write attribute subpackets to the specified file descriptor" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:106 -msgid "Include secret key comment packets when exporting secret keys" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:107 -msgid "Don't include secret key comment packets when exporting secret keys" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:108 +#: share/completions/gpg.fish:195 msgid "Use specified string as comment string" -msgstr "" +msgstr "Använd angiven sträng som kommentarsträng" -#: /tmp/fish/implicit/share/completions/gpg.fish:109 -msgid "Don't use a comment string" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:110 -msgid "Include the version string in ASCII armored output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:111 -msgid "Don't include the version string in ASCII armored output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:112 +#: share/completions/gpg.fish:204 msgid "Put the specified name value pair into the signature as notation data" -msgstr "" +msgstr "Lägg angivet namn/värde-par i signaturen som notationsdata" -#: /tmp/fish/implicit/share/completions/gpg.fish:113 +#: share/completions/gpg.fish:205 msgid "Set signature policy" -msgstr "" +msgstr "Välj signaturpolicy" -#: /tmp/fish/implicit/share/completions/gpg.fish:114 +#: share/completions/gpg.fish:206 msgid "Set certificate policy" -msgstr "" +msgstr "Välj certifikatpolicy" -#: /tmp/fish/implicit/share/completions/gpg.fish:115 +#: share/completions/gpg.fish:207 msgid "Set signature and certificate policy" -msgstr "" +msgstr "Välj signatur- och certifikatpolicy" -#: /tmp/fish/implicit/share/completions/gpg.fish:116 +#: share/completions/gpg.fish:208 msgid "Use specified URL as a preferred keyserver for data signatures" -msgstr "" +msgstr "Använd angiven URL som preferrerad nyckelserver för datasignaturer" -#: /tmp/fish/implicit/share/completions/gpg.fish:117 +#: share/completions/gpg.fish:210 msgid "Use specified string as the filename which is stored inside messages" -msgstr "" +msgstr "Använd angiven sträng som filnamn att lagra i meddelande" -#: /tmp/fish/implicit/share/completions/gpg.fish:118 -msgid "Set the 'for your eyes only' flag in the message" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:119 -msgid "Clear the 'for your eyes only' flag in the message" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:120 -msgid "Create file with name as given in data" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:121 -msgid "Don't create file with name as given in data" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:122 +#: share/completions/gpg.fish:218 msgid "" "Number of completely trusted users to introduce a new key signer (defaults " "to 1)" msgstr "" +"Antal användare med fullt förtroende för att introducera nya " +"nyckelunderskrivare (standard är 1)" -#: /tmp/fish/implicit/share/completions/gpg.fish:123 +#: share/completions/gpg.fish:219 msgid "" "Number of marginally trusted users to introduce a new key signer (defaults " "to 3)" msgstr "" +"Antal användare med marginellt förtroende för att introducera nya " +"nyckelunderskrivare (standard är 3)" -#: /tmp/fish/implicit/share/completions/gpg.fish:124 +#: share/completions/gpg.fish:221 msgid "Maximum depth of a certification chain (default is 5)" -msgstr "" +msgstr "MAximalt djup i certifieringskedjan (standard är 5)" -#: /tmp/fish/implicit/share/completions/gpg.fish:125 -msgid "Use specified cipher algorithm" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:126 -msgid "Use specified message digest algorithm" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:127 -msgid "Use specified compression algorithm" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:128 -msgid "Use specified message digest algorithm when signing a key" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:129 -msgid "Use specified cipher algorithm to protect secret keys" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:130 -msgid "Use specified digest algorithm to mangle the passphrases" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:131 -msgid "Selects how passphrases are mangled" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:132 -msgid "Integrity protect secret keys by using a SHA-1 checksum" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:133 -msgid "Never allow the use of specified cipher algorithm" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:134 -msgid "Never allow the use of specified public key algorithm" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:135 -msgid "Do not cache the verification status of key signatures" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:136 -msgid "Do not verify each signature right after creation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:137 -msgid "Automatically run the --check-trustdb command internally when needed" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:138 -msgid "Never automatically run the --check-trustdb" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:139 -msgid "Do not put the recipient keyid into encrypted packets" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:140 -msgid "Put the recipient keyid into encrypted packets" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:141 -msgid "" -"Change the behavior of cleartext signatures so that they can be used for " -"patch files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:142 -msgid "Mangle From-field of email headers (default)" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:143 -msgid "Do not mangle From-field of email headers" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:144 +#: share/completions/gpg.fish:249 msgid "Read passphrase from specified file descriptor" -msgstr "" +msgstr "Läss passfras från angiven filidentifierare" -#: /tmp/fish/implicit/share/completions/gpg.fish:145 +#: share/completions/gpg.fish:250 msgid "Read user input from specified file descriptor" -msgstr "" +msgstr "Läs användarindata från angiven filidentifierare" -#: /tmp/fish/implicit/share/completions/gpg.fish:146 -msgid "Try to use the GnuPG-Agent" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:147 -msgid "Do not try to use the GnuPG-Agent" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:148 +#: share/completions/gpg.fish:254 msgid "Override value of GPG_AGENT_INFO environment variable" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:149 -msgid "Force v3 signatures for signatures on data" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:150 -msgid "Do not force v3 signatures for signatures on data" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:151 -msgid "Always use v4 key signatures even on v3 keys" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:152 -msgid "Don't use v4 key signatures on v3 keys" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:153 -msgid "Force the use of encryption with a modification detection code" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:154 -msgid "Disable the use of the modification detection code" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:155 -msgid "" -"Allow the import and use of keys with user IDs which are not self-signed" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:156 -msgid "" -"Do not allow the import and use of keys with user IDs which are not self-" -"signed" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:157 -msgid "" -"Disable all checks on the form of the user ID while generating a new one" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:158 -msgid "Do not fail if signature is older than key" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:159 -msgid "Allow subkeys that have a timestamp from the future" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:160 -msgid "Ignore CRC errors" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:161 -msgid "Do not fail on MDC integrity protection failure" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:162 -msgid "" -"Lock the databases the first time a lock is requested and do not release the " -"lock until the process terminates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:163 -msgid "Release the locks every time a lock is no longer needed" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:164 -msgid "" -"Do not create an internal pool file for quicker generation of random numbers" -msgstr "" +msgstr "Åsidosätt värdet på GPG_AGENT_INFO-miljövariablen" #: /tmp/fish/implicit/share/completions/gpg.fish:165 msgid "Reset verbose level to 0" msgstr "" -#: /tmp/fish/implicit/share/completions/gpg.fish:166 -msgid "Suppress the initial copyright message" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:167 -msgid "Suppress the warning about 'using insecure memory'" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:168 -msgid "" -"Suppress the warning about unsafe file and home directory (--homedir) " -"permissions" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:169 -msgid "Suppress the warning about missing MDC integrity protection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:170 -msgid "Refuse to run if GnuPG cannot get secure memory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:171 -msgid "Do not refuse to run if GnuPG cannot get secure memory (default)" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:172 -msgid "Assume the input data is not in ASCII armored format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:173 -msgid "Do not add the default keyrings to the list of keyrings" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:174 -msgid "Skip the signature verification step" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:175 -msgid "Print key listings delimited by colons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:176 -msgid "" -"Print key listings delimited by colons (like --with-colons) and print the " -"public key data" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:177 -msgid "" -"Same as the command --fingerprint but changes only the format of the output " -"and may be used together with another command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:178 -msgid "Changes the output of the list commands to work faster" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:179 -msgid "" -"Do not merge primary user ID and primary key in --with-colon listing mode " -"and print all timestamps as UNIX timestamps" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:180 -msgid "" -"Changes the behaviour of some commands. This is like --dry-run but different" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:181 -msgid "Display the session key used for one message" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:182 +#: share/completions/gpg.fish:304 msgid "Don't use the public key but the specified session key" -msgstr "" +msgstr "Använd inte den öppna nyckel utan den angivna sessionsnyckeln" -#: /tmp/fish/implicit/share/completions/gpg.fish:183 -#: /tmp/fish/implicit/share/completions/gpg.fish:185 -msgid "Prompt for an expiration time" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:184 -#: /tmp/fish/implicit/share/completions/gpg.fish:186 -msgid "Do not prompt for an expiration time" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:187 -msgid "" -"Don't look at the key ID as stored in the message but try all secret keys in " -"turn to find the right decryption key" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:188 -msgid "" -"Enable a mode in which filenames of the form -&n, where n is a non-negative " -"decimal number, refer to the file descriptor n and not to a file with that " -"name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:189 +#: share/completions/gpg.fish:315 msgid "Sets up a named group, which is similar to aliases in email programs" -msgstr "" +msgstr "Skapa en namngiven grupp, liknande alias i e-postprogram" -#: /tmp/fish/implicit/share/completions/gpg.fish:190 -msgid "Remove a given entry from the --group list" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:191 -msgid "Remove all entries from the --group list" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:192 -msgid "" -"Don't change the permissions of a secret keyring back to user read/write only" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gpg.fish:193 +#: share/completions/gpg.fish:321 msgid "Set the list of personal cipher preferences to the specified string" -msgstr "" +msgstr "Sätt listan på personliga chifferpreferenser till den angivna strängen" -#: /tmp/fish/implicit/share/completions/gpg.fish:194 +#: share/completions/gpg.fish:322 msgid "Set the list of personal digest preferences to the specified string" msgstr "" +"Sätt listan på personliga digestinställningar till den angivna strängen" -#: /tmp/fish/implicit/share/completions/gpg.fish:195 +#: share/completions/gpg.fish:323 msgid "" "Set the list of personal compression preferences to the specified string" msgstr "" +"Sätt listan på personliga kompressionsinställningar till den angivna strängen" -#: /tmp/fish/implicit/share/completions/gpg.fish:196 +#: share/completions/gpg.fish:324 msgid "Set the list of default preferences to the specified string" -msgstr "" +msgstr "Sätt listan på standardinställningar till den angivna strängen" #: /tmp/fish/implicit/share/completions/gphoto2.fish:1 msgid "Print complete help message on program usage" @@ -28628,129 +26591,25 @@ msgstr "" msgid "Overwrite files without asking" msgstr "" -#: /tmp/fish/implicit/share/completions/gprof.fish:1 -msgid "Print annotated source" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:2 -msgid "Do not print explanations" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:3 -msgid "Print tally" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:4 -msgid "Display summary" -msgstr "" - #: /tmp/fish/implicit/share/completions/gprof.fish:5 msgid "Search directories for source" msgstr "" -#: /tmp/fish/implicit/share/completions/gprof.fish:6 -msgid "No annotated source" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:7 -msgid "Print full path of source" -msgstr "" - #: /tmp/fish/implicit/share/completions/gprof.fish:8 msgid "Print flat profile" msgstr "" -#: /tmp/fish/implicit/share/completions/gprof.fish:9 -msgid "No flat profile" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:10 -msgid "Print call graph" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:11 -msgid "No call graph" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:12 -msgid "Annotate to file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:13 -msgid "No tally" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:14 -msgid "Suggest function ordering" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:15 -msgid "Suggest file ordering" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:16 -msgid "Traditional mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:17 -msgid "Set width of output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:18 -msgid "Annotate every line" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:19 -msgid "Set demangling style" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:20 -msgid "Turn of demangling" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:21 -msgid "Supress static functions" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:22 -msgid "Ignore symbols not known to be functions" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:23 +#: share/completions/gprof.fish:24 msgid "Delete arcs from callgraph" -msgstr "" +msgstr "Radera arker från anropsgraf" -#: /tmp/fish/implicit/share/completions/gprof.fish:24 -msgid "Line by line profiling" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:25 +#: share/completions/gprof.fish:26 msgid "Supress output when executed less than specified times" -msgstr "" +msgstr "Visa inte utdata för kod som exekverats färre gånger än angivet antal" -#: /tmp/fish/implicit/share/completions/gprof.fish:26 -msgid "Only propagate times for matching symbols" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:27 -msgid "Do not propagate times for matching symbols" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:28 -msgid "Mention unused functions in flat profile" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:29 -msgid "Specify debugging options" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:32 +#: share/completions/gprof.fish:33 msgid "Profile data format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gprof.fish:33 -msgid "Print summary" -msgstr "" +msgstr "Format för profileringsdata" #: /tmp/fish/implicit/share/completions/gradle.fish:2 msgid "Don't rebuild dependencies" @@ -28903,17 +26762,18 @@ msgstr "" msgid "Specify task to be excluded from execution" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:2 +#: share/functions/__fish_complete_grep.fish:3 msgid "Process binary file as text" -msgstr "" +msgstr "Processa binär fil som text" #: /tmp/fish/implicit/share/completions/grep.fish:5 +#: share/functions/__fish_complete_grep.fish:6 msgid "Print byte offset of matches" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:6 +#: share/functions/__fish_complete_grep.fish:7 msgid "Assume data type for binary files" -msgstr "" +msgstr "Antag följande datatyp för binära filer" #: /tmp/fish/implicit/share/completions/grep.fish:7 msgid "Colour output" @@ -28925,138 +26785,141 @@ msgid "Color output" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:9 +#: share/functions/__fish_complete_grep.fish:10 msgid "Only print number of matches" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:10 -msgid "Action for devices" -msgstr "" - -#: /tmp/fish/implicit/share/completions/grep.fish:11 -msgid "Action for directories" -msgstr "" - -#: /tmp/fish/implicit/share/completions/grep.fish:12 +#: share/functions/__fish_complete_grep.fish:13 msgid "Pattern is extended regexp" -msgstr "" +msgstr "Mönster är ett förlängt reguljärt uttryck" -#: /tmp/fish/implicit/share/completions/grep.fish:13 +#: share/functions/__fish_complete_grep.fish:14 msgid "Pattern is a regexp" -msgstr "" +msgstr "Mönster är ett reguljärt uttryck" #: /tmp/fish/implicit/share/completions/grep.fish:14 +#: share/functions/__fish_complete_grep.fish:15 msgid "Read pattern list from file. Skip files whose base name matches list" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:15 +#: share/functions/__fish_complete_grep.fish:16 msgid "Exclude matching directories from recursive searches" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:16 +#: share/functions/__fish_complete_grep.fish:17 msgid "Pattern is a fixed string" -msgstr "" +msgstr "Mönster är en fixsträng" #: /tmp/fish/implicit/share/completions/grep.fish:17 msgid "Use patterns from a file" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:18 +#: share/functions/__fish_complete_grep.fish:19 msgid "Pattern is basic regex" -msgstr "" +msgstr "Mönster är ett grundläggande reguljärt uttryck" -#: /tmp/fish/implicit/share/completions/grep.fish:19 +#: share/functions/__fish_complete_grep.fish:20 msgid "Print filename" -msgstr "" +msgstr "Visa filnamn" #: /tmp/fish/implicit/share/completions/grep.fish:20 +#: share/functions/__fish_complete_grep.fish:21 msgid "Suppress printing filename" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:22 +#: share/functions/__fish_complete_grep.fish:23 msgid "Skip binary files" -msgstr "" +msgstr "Skippa binära filer" -#: /tmp/fish/implicit/share/completions/grep.fish:24 +#: share/functions/__fish_complete_grep.fish:25 msgid "Print first non-matching file" -msgstr "" +msgstr "Visa första icke-matchande fil" -#: /tmp/fish/implicit/share/completions/grep.fish:25 +#: share/functions/__fish_complete_grep.fish:26 msgid "Print first matching file" -msgstr "" +msgstr "Visa första matchande fil" -#: /tmp/fish/implicit/share/completions/grep.fish:26 +#: share/functions/__fish_complete_grep.fish:27 msgid "Stop reading after NUM matches" -msgstr "" +msgstr "Sluta läsa efter NUM matchningar" -#: /tmp/fish/implicit/share/completions/grep.fish:27 +#: share/functions/__fish_complete_grep.fish:28 msgid "Use the mmap system call to read input" -msgstr "" +msgstr "Använd systemanroppet mmap för inläsning" #: /tmp/fish/implicit/share/completions/grep.fish:28 +#: share/functions/__fish_complete_grep.fish:29 msgid "Print line number" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:29 +#: share/functions/__fish_complete_grep.fish:30 msgid "Show only matching part" -msgstr "" +msgstr "Visa bara matchande del" -#: /tmp/fish/implicit/share/completions/grep.fish:30 +#: share/functions/__fish_complete_grep.fish:31 msgid "Rename stdin" -msgstr "" +msgstr "Byt namn på standard in" -#: /tmp/fish/implicit/share/completions/grep.fish:31 +#: share/functions/__fish_complete_grep.fish:32 msgid "Use line buffering" -msgstr "" +msgstr "Använd radbuffring" #: /tmp/fish/implicit/share/completions/grep.fish:32 +#: share/functions/__fish_complete_grep.fish:33 msgid "Pattern is a Perl regexp (PCRE) string" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:33 -#: /tmp/fish/implicit/share/completions/grep.fish:34 +#: share/functions/__fish_complete_grep.fish:34 +#: share/functions/__fish_complete_grep.fish:35 msgid "Do not write anything" -msgstr "" +msgstr "Skriv ingenting" #: /tmp/fish/implicit/share/completions/grep.fish:35 #: /tmp/fish/implicit/share/completions/grep.fish:36 +#: share/functions/__fish_complete_grep.fish:36 +#: share/functions/__fish_complete_grep.fish:37 msgid "Read files under each directory, recursively" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:37 +#: share/functions/__fish_complete_grep.fish:38 msgid "Search only files matching PATTERN" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:38 +#: share/functions/__fish_complete_grep.fish:39 msgid "Skip files matching PATTERN" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:39 +#: share/functions/__fish_complete_grep.fish:40 msgid "Suppress error messages" -msgstr "" +msgstr "Visa inte felmeddelanden" #: /tmp/fish/implicit/share/completions/grep.fish:40 +#: share/functions/__fish_complete_grep.fish:41 msgid "Ensure first character of actual line content lies on a tab stop" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:41 +#: share/functions/__fish_complete_grep.fish:42 msgid "Treat files as binary" -msgstr "" +msgstr "Behandla filer som om de vore binära" -#: /tmp/fish/implicit/share/completions/grep.fish:42 +#: share/functions/__fish_complete_grep.fish:43 msgid "Report Unix-style byte offsets" -msgstr "" +msgstr "Visa Unix-typ av byteavstånd" -#: /tmp/fish/implicit/share/completions/grep.fish:44 +#: share/functions/__fish_complete_grep.fish:45 msgid "Invert the sense of matching" -msgstr "" +msgstr "Invertera matchning" -#: /tmp/fish/implicit/share/completions/grep.fish:45 +#: share/functions/__fish_complete_grep.fish:46 msgid "Only whole matching words" -msgstr "" +msgstr "Matcha bara hela ord" -#: /tmp/fish/implicit/share/completions/grep.fish:46 +#: share/functions/__fish_complete_grep.fish:47 msgid "Only whole matching lines" -msgstr "" +msgstr "Matcha bara hela rader" #: /tmp/fish/implicit/share/completions/grep.fish:47 msgid "Ignore case (deprecated: use -i instead)" @@ -29066,9 +26929,9 @@ msgstr "" msgid "Treat input as a set of zero-terminated lines" msgstr "" -#: /tmp/fish/implicit/share/completions/grep.fish:49 +#: share/functions/__fish_complete_grep.fish:50 msgid "Output a zero byte after filename" -msgstr "" +msgstr "Skriv en nollad byte efter filnamn" #: /tmp/fish/implicit/share/completions/groupadd.fish:1 msgid "Exit with success status if the specified group already exists" @@ -29393,35 +27256,14 @@ msgstr "" msgid "List keys and values, recursively" msgstr "" -#: /tmp/fish/implicit/share/completions/gunzip.fish:4 -#: /tmp/fish/implicit/share/completions/gzip.fish:4 -msgid "List compression information" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gunzip.fish:6 -#: /tmp/fish/implicit/share/completions/gzip.fish:6 -msgid "Do not save/restore filename" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gunzip.fish:7 -#: /tmp/fish/implicit/share/completions/gzip.fish:7 -msgid "Save/restore filename" -msgstr "" - #: /tmp/fish/implicit/share/completions/gunzip.fish:9 #: /tmp/fish/implicit/share/completions/gzip.fish:9 msgid "Recurse directories" msgstr "" -#: /tmp/fish/implicit/share/completions/gunzip.fish:10 -#: /tmp/fish/implicit/share/completions/gzip.fish:10 +#: share/completions/gunzip.fish:15 share/completions/gzip.fish:17 msgid "Suffix" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gunzip.fish:12 -#: /tmp/fish/implicit/share/completions/gzip.fish:12 -msgid "Display compression ratios" -msgstr "" +msgstr "Suffix" #: /tmp/fish/implicit/share/completions/gv.fish:1 msgid "Display document using only black and white" @@ -29601,14 +27443,6 @@ msgstr "" msgid "Show gv version and exit" msgstr "" -#: /tmp/fish/implicit/share/completions/gzip.fish:14 -msgid "Use fast setting" -msgstr "" - -#: /tmp/fish/implicit/share/completions/gzip.fish:15 -msgid "Use high compression setting" -msgstr "" - #: /tmp/fish/implicit/share/completions/helm.fish:1 msgid "Enable verbose output" msgstr "" @@ -29995,6 +27829,7 @@ msgid "Configurable greeting" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:27 +#: share/completions/help.fish:12 msgid "Help on how to reuse previously entered commands" msgstr "" @@ -30059,6 +27894,7 @@ msgid "Shared bindings" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:43 +#: share/completions/help.fish:9 msgid "Introduction to the fish syntax" msgstr "" @@ -31983,11 +29819,6 @@ msgstr "" msgid "Highlight style" msgstr "" -#: /tmp/fish/implicit/share/completions/htop.fish:1 -#: /tmp/fish/implicit/share/completions/top.fish:3 -msgid "Update interval" -msgstr "" - #: /tmp/fish/implicit/share/completions/htop.fish:2 #: /tmp/fish/implicit/share/completions/htop.fish:3 msgid "Start htop in monochrome mode" @@ -31999,6 +29830,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:32 #: /tmp/fish/implicit/share/completions/s3cmd.fish:41 #: /tmp/fish/implicit/share/completions/subl.fish:8 +#: share/completions/perl.fish:27 msgid "Show help and exit" msgstr "" @@ -32517,10 +30349,6 @@ msgstr "" msgid "List known coded character sets" msgstr "" -#: /tmp/fish/implicit/share/completions/iconv.fish:4 -msgid "Output file" -msgstr "" - #: /tmp/fish/implicit/share/completions/iconv.fish:5 msgid "Print progress information" msgstr "" @@ -32551,26 +30379,10 @@ msgstr "" msgid "Replace each pixel with its complementary color" msgstr "" -#: /tmp/fish/implicit/share/completions/id.fish:1 -msgid "Print effective group id" -msgstr "" - -#: /tmp/fish/implicit/share/completions/id.fish:2 -msgid "Print all group ids" -msgstr "" - #: /tmp/fish/implicit/share/completions/id.fish:3 msgid "Print name, not number" msgstr "" -#: /tmp/fish/implicit/share/completions/id.fish:4 -msgid "Print real ID, not effective" -msgstr "" - -#: /tmp/fish/implicit/share/completions/id.fish:5 -msgid "Print effective user ID" -msgstr "" - #: /tmp/fish/implicit/share/completions/iex.fish:15 msgid "Connects to a node using a remote shell" msgstr "" @@ -32581,19 +30393,18 @@ msgid "" "no file will be loaded" msgstr "" -#: /tmp/fish/implicit/share/completions/ifconfig.fish:1 +#: share/completions/ifconfig.fish:1 msgid "Stop interface" -msgstr "" +msgstr "Stanna gränssnitt" -#: /tmp/fish/implicit/share/completions/ifconfig.fish:2 +#: share/completions/ifconfig.fish:2 msgid "Start interface" -msgstr "" +msgstr "Starta gränssnitt" -#: /tmp/fish/implicit/share/completions/ifconfig.fish:3 -#: /tmp/fish/implicit/share/completions/ifdown.fish:1 -#: /tmp/fish/implicit/share/completions/ifup.fish:1 +#: share/completions/ifconfig.fish:25 share/completions/ifdown.fish:1 +#: share/completions/ifup.fish:1 msgid "Network interface" -msgstr "" +msgstr "Nätverkgränssnitt" #: /tmp/fish/implicit/share/completions/ifdata.fish:1 msgid "Reports interface existence via return code" @@ -33442,18 +31253,6 @@ msgstr "" msgid "Show the process id of each process in the job" msgstr "" -#: /tmp/fish/implicit/share/completions/jobs.fish:3 -msgid "Show group id of job" -msgstr "" - -#: /tmp/fish/implicit/share/completions/jobs.fish:4 -msgid "Show commandname of each job" -msgstr "" - -#: /tmp/fish/implicit/share/completions/jobs.fish:5 -msgid "Only show status for last job to be started" -msgstr "" - #: /tmp/fish/implicit/share/completions/journalctl.fish:1 msgid "Journal field" msgstr "" @@ -33855,6 +31654,7 @@ msgid "Do not skip zombies" msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:1 +#: share/completions/kitchen.fish:3 msgid "Test if kitchen has yet to be given the main command" msgstr "" @@ -34252,73 +32052,9 @@ msgstr "" msgid "Apply the given task with the profile(s) specified." msgstr "" -#: /tmp/fish/implicit/share/completions/less.fish:2 -msgid "Search after end of screen" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:3 +#: share/completions/less.fish:3 msgid "Buffer space" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:4 -msgid "Disable automtic buffer allocation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:5 -msgid "Repaint from top" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:6 -msgid "Clear and repaint from top" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:7 -msgid "Supress error for lacking terminal capability" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:8 -msgid "Exit on second EOF" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:9 -msgid "Exit on EOF" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:10 -msgid "Open non-regular files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:11 -msgid "Quit if file shorter than one screen" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:12 -msgid "Hilight one search target" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:13 -msgid "No search highlighting" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:14 -msgid "Maximum backward scroll" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:15 -msgid "Search ignores lowercase case" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:16 -msgid "Search ignores all case" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:17 -msgid "Target line" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:18 -msgid "Display status column" -msgstr "" +msgstr "Buffert-utrymme" #: /tmp/fish/implicit/share/completions/less.fish:19 msgid "Specify key bindings file" @@ -34328,116 +32064,10 @@ msgstr "" msgid "Prompt with percentage" msgstr "" -#: /tmp/fish/implicit/share/completions/less.fish:22 -msgid "Verbose prompt" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:23 -msgid "Display line number" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:24 -msgid "Display line number for each line" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:25 -msgid "Log input to file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:26 -msgid "Log to file, overwrite" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:27 -msgid "Start at first occurrence of pattern" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:28 -msgid "Prompt string" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:29 -#: /tmp/fish/implicit/share/completions/less.fish:30 -msgid "Silent mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:31 -#: /tmp/fish/implicit/share/completions/less.fish:32 -msgid "Completly silent mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:33 -msgid "Display control chars" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:34 -msgid "Display control chars, guess screen appearance" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:35 -msgid "Multiple blank lines sqeezed" -msgstr "" - #: /tmp/fish/implicit/share/completions/less.fish:36 msgid "Do not fold long lines" msgstr "" -#: /tmp/fish/implicit/share/completions/less.fish:37 -msgid "Edit tag" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:38 -msgid "Set tag file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:39 -msgid "Allow backspace and carriage return" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:40 -msgid "Allow backspace, tab and carriage return" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:42 -msgid "Highlight first unread line on new page" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:43 -msgid "Highlight first unread line on any movement" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:44 -msgid "Set tab stops" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:45 -msgid "No termcap init" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:46 -msgid "No keypad init" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:47 -msgid "Maximum forward scroll" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:48 -msgid "Max scroll window" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:49 -msgid "Set quote char" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:50 -msgid "Lines after EOF are blank" -msgstr "" - -#: /tmp/fish/implicit/share/completions/less.fish:51 -msgid "Characters to scroll on left/right arrows" -msgstr "" - #: /tmp/fish/implicit/share/completions/light.fish:3 msgid "Get value (default)" msgstr "" @@ -35078,239 +32708,198 @@ msgstr "" msgid "Print hexadecimal masks rather thans lists of CPUs" msgstr "" -#: /tmp/fish/implicit/share/completions/ls.fish:1 +#: share/functions/__fish_complete_ls.fish:32 msgid "List by columns" -msgstr "" +msgstr "Visa kolumnvis" -#: /tmp/fish/implicit/share/completions/ls.fish:2 +#: share/functions/__fish_complete_ls.fish:33 msgid "Sort by size" -msgstr "" +msgstr "Sortera på storlek" -#: /tmp/fish/implicit/share/completions/ls.fish:3 +#: share/functions/__fish_complete_ls.fish:34 msgid "Show and sort by ctime" -msgstr "" +msgstr "Visa och sortera på skapelsetidpunkt" -#: /tmp/fish/implicit/share/completions/ls.fish:4 +#: share/functions/__fish_complete_ls.fish:35 msgid "Don't sort" -msgstr "" +msgstr "Sortera ej filer" -#: /tmp/fish/implicit/share/completions/ls.fish:5 +#: share/functions/__fish_complete_ls.fish:36 msgid "Long format without owner" -msgstr "" +msgstr "Långt format utan ägare" -#: /tmp/fish/implicit/share/completions/ls.fish:6 +#: share/functions/__fish_complete_ls.fish:37 msgid "Set blocksize to 1kB" -msgstr "" +msgstr "Välj blockstorlek 1kB" -#: /tmp/fish/implicit/share/completions/ls.fish:7 -#: /tmp/fish/implicit/share/completions/ps.fish:22 +#: share/functions/__fish_complete_ls.fish:38 msgid "Long format" -msgstr "" +msgstr "Långt format" -#: /tmp/fish/implicit/share/completions/ls.fish:8 +#: share/functions/__fish_complete_ls.fish:39 msgid "Comma separated format" -msgstr "" +msgstr "Kommaseparerat format" -#: /tmp/fish/implicit/share/completions/ls.fish:9 +#: share/functions/__fish_complete_ls.fish:40 msgid "Sort by modification time" -msgstr "" +msgstr "Sortera på ändringstid" -#: /tmp/fish/implicit/share/completions/ls.fish:10 +#: share/functions/__fish_complete_ls.fish:41 msgid "Show access time" -msgstr "" +msgstr "Visa senaste åtkomsttid" -#: /tmp/fish/implicit/share/completions/ls.fish:11 +#: share/functions/__fish_complete_ls.fish:42 msgid "List entries by lines" -msgstr "" +msgstr "Visa radvis" -#: /tmp/fish/implicit/share/completions/ls.fish:12 +#: share/functions/__fish_complete_ls.fish:43 msgid "List one file per line" -msgstr "" +msgstr "Visa en fil per rad" -#: /tmp/fish/implicit/share/completions/ls.fish:13 -#: /tmp/fish/implicit/share/completions/ls.fish:68 +#: share/functions/__fish_complete_ls.fish:16 msgid "Show hidden" -msgstr "" +msgstr "Visa dolda filer" -#: /tmp/fish/implicit/share/completions/ls.fish:14 -#: /tmp/fish/implicit/share/completions/ls.fish:69 +#: share/functions/__fish_complete_ls.fish:17 msgid "Show hidden except . and .." -msgstr "" +msgstr "Visa dolda filer utom . och .." -#: /tmp/fish/implicit/share/completions/ls.fish:15 -#: /tmp/fish/implicit/share/completions/ls.fish:24 -#: /tmp/fish/implicit/share/completions/ls.fish:42 -#: /tmp/fish/implicit/share/completions/ls.fish:70 -#: /tmp/fish/implicit/share/completions/ls.fish:79 +#: share/functions/__fish_complete_ls.fish:18 +#: share/functions/__fish_complete_ls.fish:27 msgid "Append filetype indicator" -msgstr "" +msgstr "Lägg till filtypsindikator" -#: /tmp/fish/implicit/share/completions/ls.fish:18 -#: /tmp/fish/implicit/share/completions/ls.fish:73 +#: share/functions/__fish_complete_ls.fish:21 msgid "List subdirectory recursively" -msgstr "" +msgstr "Visa underkataloger rekursivt" -#: /tmp/fish/implicit/share/completions/ls.fish:19 -#: /tmp/fish/implicit/share/completions/ls.fish:59 -#: /tmp/fish/implicit/share/completions/ls.fish:74 +#: share/functions/__fish_complete_ls.fish:22 +#: share/functions/__fish_complete_ls.fish:102 msgid "Octal escapes for non graphic characters" -msgstr "" +msgstr "Använd oktala specialsekvenser för ickegrafiska tecken" -#: /tmp/fish/implicit/share/completions/ls.fish:20 -#: /tmp/fish/implicit/share/completions/ls.fish:75 +#: share/functions/__fish_complete_ls.fish:23 msgid "List directories, not their content" -msgstr "" +msgstr "Visa kataloger, inte deras innehåll" -#: /tmp/fish/implicit/share/completions/ls.fish:22 -#: /tmp/fish/implicit/share/completions/ls.fish:77 +#: share/functions/__fish_complete_ls.fish:25 msgid "Print inode number of files" -msgstr "" +msgstr "Visa inod för filer" -#: /tmp/fish/implicit/share/completions/ls.fish:23 -#: /tmp/fish/implicit/share/completions/ls.fish:78 +#: share/functions/__fish_complete_ls.fish:26 msgid "Long format, numeric IDs" -msgstr "" +msgstr "Långt format, numeriska IDn" -#: /tmp/fish/implicit/share/completions/ls.fish:25 -#: /tmp/fish/implicit/share/completions/ls.fish:80 +#: share/functions/__fish_complete_ls.fish:28 msgid "Replace non-graphic characters with '?'" -msgstr "" +msgstr "Ersätt ickegrafiska tecken med '?'" -#: /tmp/fish/implicit/share/completions/ls.fish:27 -#: /tmp/fish/implicit/share/completions/ls.fish:82 +#: share/functions/__fish_complete_ls.fish:30 msgid "Print size of files" -msgstr "" +msgstr "Visa filstorlek" #: /tmp/fish/implicit/share/completions/ls.fish:28 msgid "Group directories before files" msgstr "" -#: /tmp/fish/implicit/share/completions/ls.fish:29 +#: share/functions/__fish_complete_ls.fish:49 msgid "Do not list implied entries matching specified shell pattern" -msgstr "" +msgstr "Visa inte filer som matchar mönster" -#: /tmp/fish/implicit/share/completions/ls.fish:30 +#: share/functions/__fish_complete_ls.fish:50 msgid "Display security context" -msgstr "" +msgstr "Visa säkerhetskontext" #: /tmp/fish/implicit/share/completions/ls.fish:31 +#: share/functions/__fish_complete_ls.fish:51 msgid "Display security context so it fits on most displays" msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:32 +#: share/functions/__fish_complete_ls.fish:52 msgid "Display only security context and file name" msgstr "" -#: /tmp/fish/implicit/share/completions/ls.fish:33 +#: share/functions/__fish_complete_ls.fish:54 msgid "Print author" -msgstr "" +msgstr "Visa författare" -#: /tmp/fish/implicit/share/completions/ls.fish:34 -#: /tmp/fish/implicit/share/completions/xz.fish:19 -msgid "Set block size" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ls.fish:35 +#: share/functions/__fish_complete_ls.fish:56 msgid "Ignore files ending with ~" -msgstr "" +msgstr "Ignorera filer som slutar på ~" -#: /tmp/fish/implicit/share/completions/ls.fish:36 -#: /tmp/fish/implicit/share/completions/ls.fish:60 +#: share/functions/__fish_complete_ls.fish:103 msgid "Use colors" -msgstr "" +msgstr "Använd färger" -#: /tmp/fish/implicit/share/completions/ls.fish:37 +#: share/functions/__fish_complete_ls.fish:58 msgid "Generate dired output" -msgstr "" +msgstr "Generera utdata för dired" #: /tmp/fish/implicit/share/completions/ls.fish:38 msgid "List format" msgstr "" -#: /tmp/fish/implicit/share/completions/ls.fish:39 +#: share/functions/__fish_complete_ls.fish:60 msgid "Long format, full-iso time" -msgstr "" +msgstr "Långt format, full-iso-tid" -#: /tmp/fish/implicit/share/completions/ls.fish:40 +#: share/functions/__fish_complete_ls.fish:61 msgid "Don't print group information" -msgstr "" +msgstr "Visa inte information om grupp" #: /tmp/fish/implicit/share/completions/ls.fish:43 msgid "Skip entries matching pattern" msgstr "" -#: /tmp/fish/implicit/share/completions/ls.fish:44 -#: /tmp/fish/implicit/share/completions/ls.fish:67 +#: share/functions/__fish_complete_ls.fish:66 +#: share/functions/__fish_complete_ls.fish:110 msgid "Print raw entry names" -msgstr "" +msgstr "Skriv obehandlade filnamn" -#: /tmp/fish/implicit/share/completions/ls.fish:45 +#: share/functions/__fish_complete_ls.fish:67 msgid "Long format without groups" -msgstr "" +msgstr "Långt fromat utan grupper" -#: /tmp/fish/implicit/share/completions/ls.fish:46 +#: share/functions/__fish_complete_ls.fish:68 msgid "Non graphic as-is" -msgstr "" +msgstr "Ersätt inte icke-grafiska tecken" -#: /tmp/fish/implicit/share/completions/ls.fish:47 +#: share/functions/__fish_complete_ls.fish:69 msgid "Enclose entry in quotes" -msgstr "" +msgstr "Omgärda namn med citattecken" -#: /tmp/fish/implicit/share/completions/ls.fish:48 -msgid "Select quoting style" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ls.fish:49 -msgid "Sort criteria" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ls.fish:50 -msgid "Show time type" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ls.fish:51 -msgid "Select time style" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ls.fish:52 -msgid "Assume tab stops at each COLS" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ls.fish:53 +#: share/functions/__fish_complete_ls.fish:91 msgid "Do not sort" -msgstr "" +msgstr "Sortera ej filer" -#: /tmp/fish/implicit/share/completions/ls.fish:54 +#: share/functions/__fish_complete_ls.fish:92 msgid "Sort by version" -msgstr "" +msgstr "Sortera på version" -#: /tmp/fish/implicit/share/completions/ls.fish:55 -msgid "Assume screen width" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ls.fish:56 +#: share/functions/__fish_complete_ls.fish:94 msgid "Sort by extension" -msgstr "" +msgstr "Sortera på filändelse" -#: /tmp/fish/implicit/share/completions/ls.fish:61 +#: share/functions/__fish_complete_ls.fish:104 msgid "Prevent -A from being automatically set for root" -msgstr "" +msgstr "Hindra -A från att automatiskt sättas för root" -#: /tmp/fish/implicit/share/completions/ls.fish:63 +#: share/functions/__fish_complete_ls.fish:106 msgid "Show modification time" -msgstr "" +msgstr "Visa ändringstid" -#: /tmp/fish/implicit/share/completions/ls.fish:64 +#: share/functions/__fish_complete_ls.fish:107 msgid "Show whiteouts when scanning directories" -msgstr "" +msgstr "Visa korrigeringstecken vid katalogskanning" -#: /tmp/fish/implicit/share/completions/ls.fish:65 +#: share/functions/__fish_complete_ls.fish:108 msgid "Display each file's MAC label" -msgstr "" +msgstr "Visa varje file MAC-etikett" -#: /tmp/fish/implicit/share/completions/ls.fish:66 +#: share/functions/__fish_complete_ls.fish:109 msgid "Include the file flags in a long (-l) output" -msgstr "" +msgstr "Visa filflaggor vid långt (-l) formay" #: /tmp/fish/implicit/share/completions/lsof.fish:2 msgid "Causes list selections to be ANDed" @@ -35373,6 +32962,7 @@ msgid "Increase verbosity (show descriptors)" msgstr "" #: /tmp/fish/implicit/share/completions/lsusb.fish:2 +#: share/completions/lsusb.fish:2 msgid "Show only devices with specified device and/or bus numbers (in decimal)" msgstr "" @@ -35976,119 +33566,73 @@ msgstr "" msgid "Don't ask any interactive question" msgstr "" -#: /tmp/fish/implicit/share/completions/makedepend.fish:1 +#: share/completions/makedepend.fish:1 msgid "Define" -msgstr "" +msgstr "Definering" -#: /tmp/fish/implicit/share/completions/makedepend.fish:2 +#: share/completions/makedepend.fish:2 msgid "Include directory" -msgstr "" +msgstr "Inkluderingskatalog" -#: /tmp/fish/implicit/share/completions/makedepend.fish:3 +#: share/completions/makedepend.fish:3 msgid "Replace include directories" -msgstr "" +msgstr "Ersätt inkluderingskataloger" -#: /tmp/fish/implicit/share/completions/makedepend.fish:4 -msgid "Append dependencies to makefile" -msgstr "" - -#: /tmp/fish/implicit/share/completions/makedepend.fish:5 +#: share/completions/makedepend.fish:5 msgid "Specify makefile" -msgstr "" +msgstr "Ange makefil" -#: /tmp/fish/implicit/share/completions/makedepend.fish:6 +#: share/completions/makedepend.fish:6 msgid "Prepend file to input" -msgstr "" +msgstr "Lägg till fil före indata" -#: /tmp/fish/implicit/share/completions/makedepend.fish:7 +#: share/completions/makedepend.fish:7 msgid "Object file suffix" -msgstr "" +msgstr "Objektfilsuffix" -#: /tmp/fish/implicit/share/completions/makedepend.fish:8 +#: share/completions/makedepend.fish:8 msgid "Object file prefix" -msgstr "" +msgstr "Objektfilprefix" -#: /tmp/fish/implicit/share/completions/makedepend.fish:9 +#: share/completions/makedepend.fish:9 msgid "Starting string delimiter" -msgstr "" +msgstr "Avdelare för start av sträng" -#: /tmp/fish/implicit/share/completions/makedepend.fish:10 +#: share/completions/makedepend.fish:10 msgid "Line width" -msgstr "" +msgstr "Radbredd" -#: /tmp/fish/implicit/share/completions/makedepend.fish:12 -msgid "Warn about multiple inclusion" -msgstr "" - -#: /tmp/fish/implicit/share/completions/make.fish:1 +#: share/completions/make.fish:12 msgid "Target" -msgstr "" +msgstr "Mål" -#: /tmp/fish/implicit/share/completions/make.fish:2 +#: share/completions/make.fish:13 msgid "Use file as makefile" -msgstr "" +msgstr "Använd som make-fil" -#: /tmp/fish/implicit/share/completions/make.fish:3 -#: /tmp/fish/implicit/share/completions/tar.fish:15 -#: /tmp/fish/implicit/share/functions/cd.fish:1 +#: share/completions/tar.fish:19 share/functions/cd.fish:5 msgid "Change directory" -msgstr "" +msgstr "Ändra katalog" -#: /tmp/fish/implicit/share/completions/make.fish:5 -msgid "Environment before makefile" -msgstr "" - -#: /tmp/fish/implicit/share/completions/make.fish:7 +#: share/completions/make.fish:18 msgid "Search directory for makefile" -msgstr "" +msgstr "Sökkatalog för make-fil" -#: /tmp/fish/implicit/share/completions/make.fish:8 +#: share/completions/make.fish:19 msgid "Number of concurrent jobs" -msgstr "" +msgstr "Antal simultana jobb" -#: /tmp/fish/implicit/share/completions/make.fish:9 -msgid "Continue after an error" -msgstr "" - -#: /tmp/fish/implicit/share/completions/make.fish:10 -msgid "Start when load drops" -msgstr "" - -#: /tmp/fish/implicit/share/completions/make.fish:11 -msgid "Do not execute commands" -msgstr "" - -#: /tmp/fish/implicit/share/completions/make.fish:12 +#: share/completions/make.fish:23 msgid "Ignore specified file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/make.fish:13 -msgid "Print database" -msgstr "" - -#: /tmp/fish/implicit/share/completions/make.fish:14 -msgid "Question mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/make.fish:15 -msgid "Eliminate implicit rules" -msgstr "" - -#: /tmp/fish/implicit/share/completions/make.fish:17 -msgid "Don't continue after an error" -msgstr "" - -#: /tmp/fish/implicit/share/completions/make.fish:18 -msgid "Touch files, don't run commands" -msgstr "" +msgstr "Ignorera angiven fil" #: /tmp/fish/implicit/share/completions/make.fish:20 msgid "Print working directory" msgstr "" -#: /tmp/fish/implicit/share/completions/make.fish:21 +#: share/completions/make.fish:32 msgid "Pretend file is modified" -msgstr "" +msgstr "Låtsas att fil modifierats" #: /tmp/fish/implicit/share/completions/makepkg.fish:1 msgid "Ignore missing or incomplete arch field" @@ -36242,66 +33786,6 @@ msgstr "" msgid "Print SRCINFO to stdout" msgstr "" -#: /tmp/fish/implicit/share/completions/man.fish:1 -msgid "Program section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:2 -msgid "Syscall section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:3 -msgid "Library section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:4 -msgid "Device section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:5 -msgid "File format section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:6 -msgid "Games section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:7 -msgid "Misc section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:8 -msgid "Admin section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:9 -msgid "Kernel section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:10 -msgid "Tcl section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:11 -msgid "New section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:12 -msgid "Local section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:13 -msgid "Old section" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:15 -msgid "Manpath" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:16 -msgid "Pager" -msgstr "" - #: /tmp/fish/implicit/share/completions/man.fish:17 msgid "Manual sections" msgstr "" @@ -36310,51 +33794,6 @@ msgstr "" msgid "Display all matches" msgstr "" -#: /tmp/fish/implicit/share/completions/man.fish:19 -msgid "Always reformat" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:20 -msgid "Debug" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:21 -msgid "Debug and run" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:22 -msgid "Show whatis information" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:23 -msgid "Format only" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:25 -msgid "Show apropos information" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:26 -msgid "Search in all man pages" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:27 -msgid "Set system" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:28 -msgid "Preprocessors" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:29 -msgid "Format for printing" -msgstr "" - -#: /tmp/fish/implicit/share/completions/man.fish:30 -#: /tmp/fish/implicit/share/completions/man.fish:31 -msgid "Only print locations" -msgstr "" - #: /tmp/fish/implicit/share/completions/mc.fish:1 msgid "No graphic chars for line drawing" msgstr "" @@ -36510,6 +33949,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:11 #: /tmp/fish/implicit/share/completions/obnam.fish:47 #: /tmp/fish/implicit/share/completions/xrandr.fish:1 +#: share/completions/obnam.fish:52 msgid "Be more verbose" msgstr "" @@ -38126,75 +35566,14 @@ msgstr "" msgid "Use DIR as filesystem root for /lib/modules" msgstr "" -#: /tmp/fish/implicit/share/completions/modprobe.fish:1 -msgid "Print messages about what the program is doing" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:3 -msgid "Dump configuration file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:4 -msgid "Do not actually insert/remove module" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:5 -#: /tmp/fish/implicit/share/completions/modprobe.fish:6 -msgid "Ignore install and remove commands in configuration file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:7 -msgid "Ignore bogus module names" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:8 -msgid "Remove modules" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:10 -msgid "Ignore all version information" -msgstr "" - #: /tmp/fish/implicit/share/completions/modprobe.fish:11 msgid "Ignore version magic information" msgstr "" -#: /tmp/fish/implicit/share/completions/modprobe.fish:12 -msgid "Ignore module interface version" -msgstr "" - #: /tmp/fish/implicit/share/completions/modprobe.fish:13 msgid "List all modules matching the given wildcard" msgstr "" -#: /tmp/fish/implicit/share/completions/modprobe.fish:14 -msgid "Insert modules matching the given wildcard" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:15 -msgid "Restrict wildcards to specified directory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:16 -msgid "Send error messages through syslog" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:17 -msgid "Specify kernel version" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:18 -msgid "List dependencies of module" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:19 -msgid "Rename module" -msgstr "" - -#: /tmp/fish/implicit/share/completions/modprobe.fish:20 -msgid "Fail if inserting already loaded module" -msgstr "" - #: /tmp/fish/implicit/share/completions/mogrify.fish:35 msgid "Image format type [type]" msgstr "" @@ -38318,6 +35697,7 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mosh.fish:5 +#: share/completions/mosh.fish:20 msgid "Controls use of speculative local echo" msgstr "" @@ -38337,22 +35717,6 @@ msgstr "" msgid "Mount file systems in fstab" msgstr "" -#: /tmp/fish/implicit/share/completions/mount.fish:5 -msgid "Fork process for each mount" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mount.fish:6 -msgid "Fake mounting" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mount.fish:7 -msgid "Add label to output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mount.fish:8 -msgid "Do not write mtab" -msgstr "" - #: /tmp/fish/implicit/share/completions/mount.fish:9 msgid "Tolerate sloppy mount options" msgstr "" @@ -38365,170 +35729,87 @@ msgstr "" msgid "Read/Write mode" msgstr "" -#: /tmp/fish/implicit/share/completions/mount.fish:12 +#: share/completions/mount.fish:19 msgid "Mount partition with specified label" -msgstr "" +msgstr "Montera partitioner med angiven etikett" -#: /tmp/fish/implicit/share/completions/mount.fish:13 +#: share/completions/mount.fish:20 msgid "Mount partition with specified UID" -msgstr "" +msgstr "Montera partition med angivet UID" #: /tmp/fish/implicit/share/completions/mount.fish:14 +#: share/completions/mount.fish:21 msgid "Exclude file systems" msgstr "" -#: /tmp/fish/implicit/share/completions/mount.fish:15 +#: share/completions/mount.fish:22 msgid "Remount a subtree to a second position" -msgstr "" +msgstr "Montera om ett subträd till en andra plats" -#: /tmp/fish/implicit/share/completions/mount.fish:16 +#: share/completions/mount.fish:23 msgid "Move a subtree to a new position" -msgstr "" +msgstr "Flytta ett subträd till en ny plats" #: /tmp/fish/implicit/share/completions/mount.fish:17 +#: share/completions/mount.fish:24 msgid "File system" msgstr "" -#: /tmp/fish/implicit/share/completions/mount.fish:18 +#: share/completions/mount.fish:26 msgid "Mount option" -msgstr "" +msgstr "Monteringsflagga" -#: /tmp/fish/implicit/share/completions/mplayer.fish:1 -msgid "Dynamically change postprocessing" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:2 +#: share/completions/mplayer.fish:28 msgid "A/V sync speed" -msgstr "" +msgstr "Ljud/bild synkroniseringshastighet" -#: /tmp/fish/implicit/share/completions/mplayer.fish:3 -#: /tmp/fish/implicit/share/completions/mplayer.fish:5 -msgid "Skip frames to maintain A/V sync" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:6 +#: share/completions/mplayer.fish:32 msgid "Loop playback" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:9 -msgid "Full screen" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:10 -msgid "Set playlist" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:11 -msgid "Audio language" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:12 -msgid "Play audio from file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:13 -msgid "Set default CD-ROM drive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:14 -msgid "Set number of audio channels" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:15 -msgid "Set start chapter" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:16 -msgid "Set default DVD-ROM drive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:17 -msgid "Set dvd viewing angle" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:18 -msgid "Force rebuilding index" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:19 -msgid "Override framerate" -msgstr "" +msgstr "Upprepa uppspelning" #: /tmp/fish/implicit/share/completions/mplayer.fish:20 msgid "Build index if unavailable" msgstr "" -#: /tmp/fish/implicit/share/completions/mplayer.fish:21 -msgid "Load index from file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:22 -msgid "Force non-interleaved AVI parser" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:23 -msgid "Rebuild index and save to file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:24 -msgid "Seek to given time position" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:25 -msgid "TV capture mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:26 -msgid "Subtitle language" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:27 -msgid "Subtitle file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:28 -msgid "Handle subtitlefile as unicode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:29 -msgid "Handle subtitlefile as utf8" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mplayer.fish:30 -#: /tmp/fish/implicit/share/completions/mplayer.fish:33 +#: share/completions/mplayer.fish:58 share/completions/mplayer.fish:76 msgid "Video output" -msgstr "" +msgstr "Bildutdata" -#: /tmp/fish/implicit/share/completions/mplayer.fish:31 -#: /tmp/fish/implicit/share/completions/mplayer.fish:32 +#: share/completions/mplayer.fish:64 share/completions/mplayer.fish:70 msgid "Audio output" -msgstr "" +msgstr "Ljudutdata" #: /tmp/fish/implicit/share/completions/msgfmt.fish:1 msgid "Add specified directory to list for input files search" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:2 +#: share/completions/msgfmt.fish:5 msgid "Generate a Java ResourceBundle class" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:3 +#: share/completions/msgfmt.fish:6 msgid "Like --java, and assume Java2 (JDK 1.2 or higher)" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:4 +#: share/completions/msgfmt.fish:7 msgid "Generate a .NET .dll file" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:5 +#: share/completions/msgfmt.fish:8 msgid "Generate a .NET .resources file" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:6 +#: share/completions/msgfmt.fish:9 msgid "Generate a tcl/msgcat .msg file" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:7 +#: share/completions/msgfmt.fish:10 msgid "Generate a Qt .qm file" msgstr "" @@ -38537,14 +35818,17 @@ msgid "Enable strict Uniforum mode" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:10 +#: share/completions/msgfmt.fish:17 msgid "Resource name" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:11 +#: share/completions/msgfmt.fish:18 msgid "Locale name, either language or language_COUNTRY" msgstr "" #: /tmp/fish/implicit/share/completions/msgfmt.fish:12 +#: share/completions/msgfmt.fish:19 msgid "Base directory for output" msgstr "" @@ -38605,11 +35889,13 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:1 #: /tmp/fish/implicit/share/completions/mutt.fish:16 +#: share/completions/mutt.fish:21 msgid "Specify a carbon-copy (CC) recipient" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:2 #: /tmp/fish/implicit/share/completions/mutt.fish:15 +#: share/completions/mutt.fish:20 msgid "Specify a blind-carbon-copy (BCC) recipient" msgstr "" @@ -38650,72 +35936,62 @@ msgid "Open the first mailbox which contains new mail" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:13 +#: share/completions/mutt.fish:18 msgid "An expanded version of the given alias is passed to stdout" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:14 +#: share/completions/mutt.fish:19 msgid "Attach a file to your message using MIME" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:17 +#: share/completions/mutt.fish:22 msgid "Run command after processing of initialization files" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:18 +#: share/completions/mutt.fish:23 msgid "Specify which mailbox to load" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:19 +#: share/completions/mutt.fish:24 msgid "Specify an initialization file to read instead of ~/.muttrc" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:20 +#: share/completions/mutt.fish:25 msgid "Specify a draft file containing header and body for the message" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:21 +#: share/completions/mutt.fish:26 msgid "Specify a file to include into the body of a message" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:22 +#: share/completions/mutt.fish:27 msgid "Specify a default mailbox type" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:23 +#: share/completions/mutt.fish:28 msgid "Query a configuration variables value" msgstr "" #: /tmp/fish/implicit/share/completions/mutt.fish:24 +#: share/completions/mutt.fish:29 msgid "Specify the subject of the message" msgstr "" -#: /tmp/fish/implicit/share/completions/mv.fish:1 -msgid "Make backup of each existing destination file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mv.fish:2 -msgid "Do not prompt before overwriting" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mv.fish:4 +#: share/completions/mv.fish:4 msgid "Answer for overwrite questions" -msgstr "" +msgstr "Svar till överskrivningsfrågor" -#: /tmp/fish/implicit/share/completions/mv.fish:5 -msgid "Remove trailing slashes from source" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mv.fish:6 +#: share/completions/cp.fish:11 share/completions/mv.fish:6 msgid "Backup suffix" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mv.fish:7 -msgid "Target directory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/mv.fish:8 -msgid "Do not overwrite newer files" -msgstr "" +msgstr "Backup-ändelse" #: /tmp/fish/implicit/share/completions/mvn.fish:1 msgid "If project list is specified, also build projects required by the list" @@ -42869,90 +40145,6 @@ msgstr "" msgid "Exclude files that match any pattern in file" msgstr "" -#: /tmp/fish/implicit/share/completions/netcat.fish:1 -msgid "Remote hostname" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:2 -msgid "Same as -e, but use /bin/sh" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:3 -msgid "Program to execute after connection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:4 -msgid "Allow broadcasts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:5 -msgid "Source-routing hop points" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:6 -msgid "Source-routing pointer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:8 -msgid "Delay interval for lines sent, ports scaned" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:9 -msgid "Set keepalive option" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:10 -msgid "Listen mode, acts as a server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:11 -msgid "Numeric-only IP addresses, no DNS" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:12 -msgid "Hex dump of traffic" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:13 -msgid "Local port number" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:14 -msgid "Randomize local and remote ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:15 -msgid "Quit after EOF on stdin and delay of secs" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:16 -msgid "Local source address" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:17 -msgid "Answer Telnet negotiation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:18 -msgid "UDP Mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:19 -msgid "Verbose, use twice to be more verbose" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:20 -msgid "Timeout for connects and final net reads" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:21 -msgid "Set Type of Service" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:22 -msgid "No I/O - used for scanning" -msgstr "" - #: /tmp/fish/implicit/share/completions/netctl-auto.fish:3 msgid "List all available profiles for automatic selection" msgstr "" @@ -43049,11 +40241,6 @@ msgstr "" msgid "Open the specified profile in an editor" msgstr "" -#: /tmp/fish/implicit/share/completions/nextd.fish:1 -#: /tmp/fish/implicit/share/completions/prevd.fish:1 -msgid "Also print directory history" -msgstr "" - #: /tmp/fish/implicit/share/completions/nice.fish:2 msgid "Add specified amount to niceness value" msgstr "" @@ -43273,14 +40460,17 @@ msgid "Display this program's version number" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:1 +#: share/completions/node.fish:9 msgid "Print node's version" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:2 +#: share/completions/node.fish:10 msgid "Evaluate script" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:3 +#: share/completions/node.fish:11 msgid "Print result of --eval" msgstr "" @@ -44689,10 +41879,12 @@ msgid "Verify that live data and backed up data match" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:26 +#: share/completions/obnam.fish:30 msgid "Restore setuid/setgid bits in restored files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:27 +#: share/completions/obnam.fish:31 msgid "Do not restore setuid/setgid bits in restored files" msgstr "" @@ -44701,42 +41893,52 @@ msgid "Use CHECKSUM algorithm" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:29 +#: share/completions/obnam.fish:32 msgid "Name of client" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:30 +#: share/completions/obnam.fish:33 msgid "Compress repository with" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:31 +#: share/completions/obnam.fish:34 msgid "For --nagios-last-backup-age: maximum age" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:32 +#: share/completions/obnam.fish:35 msgid "Dump metadata about files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:33 +#: share/completions/obnam.fish:36 msgid "Do not dump metadata about files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:34 +#: share/completions/obnam.fish:37 msgid "Generate man page" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:35 +#: share/completions/obnam.fish:38 msgid "Which generation to restore" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:36 +#: share/completions/obnam.fish:39 msgid "Show this help message and exit" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:37 +#: share/completions/obnam.fish:40 msgid "Policy for what generations to keep when forgetting." msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:38 +#: share/completions/obnam.fish:41 msgid "Wait TIMEOUT seconds for an existing lock" msgstr "" @@ -44745,18 +41947,22 @@ msgid "Write output to FILE instead of STDOUT" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:40 +#: share/completions/obnam.fish:43 msgid "Do not actually change anything" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:41 +#: share/completions/obnam.fish:44 msgid "Actually commit changes" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:42 +#: share/completions/obnam.fish:45 msgid "Show only errors, no progress updates" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:43 +#: share/completions/obnam.fish:46 msgid "Show errors and progress updates" msgstr "" @@ -44773,15 +41979,18 @@ msgid "Where to restore / mount to" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:48 +#: share/completions/obnam.fish:53 msgid "Do not be verbose" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:49 +#: share/completions/obnam.fish:54 msgid "Verify N files randomly from the backup" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:50 #: /tmp/fish/implicit/share/completions/transmission-remote.fish:72 +#: share/completions/obnam.fish:55 msgid "Show version number and exit" msgstr "" @@ -44790,10 +41999,12 @@ msgid "For nagios-last-backup-age: maximum age" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:52 +#: share/completions/obnam.fish:57 msgid "Make a checkpoint after a given SIZE" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:53 +#: share/completions/obnam.fish:58 msgid "Deduplicate mode" msgstr "" @@ -44802,10 +42013,12 @@ msgid "REGEXP for pathnames to exclude" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:55 +#: share/completions/obnam.fish:60 msgid "Exclude directories tagged as cache" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:56 +#: share/completions/obnam.fish:61 msgid "Include directories tagged as cache" msgstr "" @@ -44819,18 +42032,22 @@ msgid "REGEXP for pathnames to include, even if matches --exclude" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:59 +#: share/completions/obnam.fish:63 msgid "Leave checkpoint generations at the end of backup" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:60 +#: share/completions/obnam.fish:64 msgid "Omit checkpoint generations at the end of backup" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:61 +#: share/completions/obnam.fish:65 msgid "Do not follow mount points" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:62 +#: share/completions/obnam.fish:66 msgid "Follow mount points" msgstr "" @@ -44839,10 +42056,12 @@ msgid "What to backup" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:64 +#: share/completions/obnam.fish:67 msgid "Put small files directly into the B-tree" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:65 +#: share/completions/obnam.fish:68 msgid "No not put small files into the B-tree" msgstr "" @@ -44851,22 +42070,27 @@ msgid "Add FILE to config files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:67 +#: share/completions/obnam.fish:70 msgid "Write out the current configuration" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:68 +#: share/completions/obnam.fish:71 msgid "Write out setting names" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:69 +#: share/completions/obnam.fish:72 msgid "Show all options" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:70 +#: share/completions/obnam.fish:73 msgid "List config files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:71 +#: share/completions/obnam.fish:74 msgid "Clear list of configuration files to read" msgstr "" @@ -44879,6 +42103,7 @@ msgid "Pretend it is TIMESTAMP" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:74 +#: share/completions/obnam.fish:49 msgid "Simulate failures for files that match REGEXP" msgstr "" @@ -44887,6 +42112,7 @@ msgid "FILENAME pattern for trace debugging" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:76 +#: share/completions/obnam.fish:75 msgid "PGP key with which to encrypt" msgstr "" @@ -44895,42 +42121,52 @@ msgid "Home directory for GPG" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:78 +#: share/completions/obnam.fish:76 msgid "Show additional user IDs" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:79 +#: share/completions/obnam.fish:77 msgid "Do not show additional user IDs" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:80 +#: share/completions/obnam.fish:78 msgid "PGP key id" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:81 +#: share/completions/obnam.fish:79 msgid "Size of symmetric key" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:82 +#: share/completions/obnam.fish:80 msgid "Use /dev/urandom instead of /dev/random" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:83 +#: share/completions/obnam.fish:81 msgid "Use default /dev/random" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:84 +#: share/completions/obnam.fish:83 msgid "fsck should try to fix problems" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:85 +#: share/completions/obnam.fish:84 msgid "fsck should not try to fix problems" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:86 +#: share/completions/obnam.fish:85 msgid "Ignore chunks when checking integrity" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:87 +#: share/completions/obnam.fish:86 msgid "Check chunks when checking integrity" msgstr "" @@ -44939,11 +42175,13 @@ msgid "Do not check data for cient NAME" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:89 +#: share/completions/obnam.fish:88 msgid "Check only the last generation" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:90 #: /tmp/fish/implicit/share/completions/obnam.fish:100 +#: share/completions/obnam.fish:89 share/completions/obnam.fish:95 msgid "Check all generations" msgstr "" @@ -44961,38 +42199,47 @@ msgid "Check checksums of files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:95 +#: share/completions/obnam.fish:90 msgid "Do not check directories" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:96 +#: share/completions/obnam.fish:91 msgid "Check directories" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:97 +#: share/completions/obnam.fish:92 msgid "Do not check files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:98 +#: share/completions/obnam.fish:93 msgid "Check files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:99 +#: share/completions/obnam.fish:94 msgid "Do not check any generations" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:101 +#: share/completions/obnam.fish:96 msgid "Do not check per-client B-trees" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:102 +#: share/completions/obnam.fish:97 msgid "Check per-client B-trees" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:103 +#: share/completions/obnam.fish:98 msgid "Do not check shared B-trees" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:104 +#: share/completions/obnam.fish:99 msgid "Check shared B-trees" msgstr "" @@ -45001,62 +42248,77 @@ msgid "Write log to FILE or syslog" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:106 +#: share/completions/obnam.fish:102 msgid "Keep last N logs (10)" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:107 +#: share/completions/obnam.fish:103 msgid "Log at LEVEL" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:108 +#: share/completions/obnam.fish:104 msgid "Rotate logs larger than SIZE" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:109 +#: share/completions/obnam.fish:105 msgid "Set permissions of logfiles to MODE" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:110 +#: share/completions/obnam.fish:106 msgid "Options to pass to FUSE" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:111 +#: share/completions/obnam.fish:107 msgid "Make memory profiling dumps using METHOD" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:112 +#: share/completions/obnam.fish:108 msgid "Make memory profiling dumps at SECONDS" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:113 +#: share/completions/obnam.fish:109 msgid "Size of chunks of file data" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:114 +#: share/completions/obnam.fish:110 msgid "Encode NUM chunk ids per group" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:115 +#: share/completions/obnam.fish:111 msgid "Chunk id level size" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:116 +#: share/completions/obnam.fish:112 msgid "Depth of chunk id mapping" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:117 +#: share/completions/obnam.fish:113 msgid "Chunk id mapping lowest bits skip" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:118 +#: share/completions/obnam.fish:114 msgid "Size of LRU cache for B-tree nodes" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:119 +#: share/completions/obnam.fish:115 msgid "Size of B-tree nodes on disk" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:120 +#: share/completions/obnam.fish:116 msgid "Length of upload queue for B-tree nodes" msgstr "" @@ -45077,10 +42339,12 @@ msgid "In-memory cache SIZE for dir objects" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:125 +#: share/completions/obnam.fish:117 msgid "Use only paramiko, no openssh" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:126 +#: share/completions/obnam.fish:118 msgid "Use openssh if available" msgstr "" @@ -45089,6 +42353,7 @@ msgid "Executable to be used instead of \"ssh\"" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:128 +#: share/completions/obnam.fish:120 msgid "ssh host key check" msgstr "" @@ -45930,20 +43195,6 @@ msgstr "" msgid "Set an alternate configuration file" msgstr "" -#: /tmp/fish/implicit/share/completions/patch.fish:1 -msgid "" -"Make backup files, when patching a file, rename or copy the original instead " -"of removing it" -msgstr "" - -#: /tmp/fish/implicit/share/completions/patch.fish:2 -msgid "Back up a file if the patch does not match the file exactly" -msgstr "" - -#: /tmp/fish/implicit/share/completions/patch.fish:3 -msgid "Do not back up a file if the patch does not match the file exactly" -msgstr "" - #: /tmp/fish/implicit/share/completions/patch.fish:4 msgid "Prefix pref to a file name when generating its simple backup file name" msgstr "" @@ -45969,10 +43220,6 @@ msgid "" "Print the results of applying the patches without actually changing any files" msgstr "" -#: /tmp/fish/implicit/share/completions/patch.fish:10 -msgid "Interpret the patch file as an ed script" -msgstr "" - #: /tmp/fish/implicit/share/completions/patch.fish:11 msgid "Remove output files that are empty after the patches have been applied" msgstr "" @@ -45983,10 +43230,6 @@ msgid "" "questions" msgstr "" -#: /tmp/fish/implicit/share/completions/patch.fish:13 -msgid "Set the maximum fuzz factor" -msgstr "" - #: /tmp/fish/implicit/share/completions/patch.fish:14 msgid "" "This option controls patch's actions when a file is under RCS or SCCS " @@ -46025,22 +43268,6 @@ msgstr "" msgid "Conform more strictly to the POSIX standard" msgstr "" -#: /tmp/fish/implicit/share/completions/patch.fish:23 -msgid "Use style word to quote output names" -msgstr "" - -#: /tmp/fish/implicit/share/completions/patch.fish:24 -msgid "Put rejects into rejectfile instead of the default .rej file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/patch.fish:25 -msgid "Assume that this patch was created with the old and new files swapped" -msgstr "" - -#: /tmp/fish/implicit/share/completions/patch.fish:26 -msgid "Work silently, unless an error occurs" -msgstr "" - #: /tmp/fish/implicit/share/completions/patch.fish:27 msgid "Suppress questions like -f, but make some different assumptions" msgstr "" @@ -46051,10 +43278,6 @@ msgid "" "given in context diff headers, local time" msgstr "" -#: /tmp/fish/implicit/share/completions/patch.fish:29 -msgid "Interpret the patch file as a unified context diff" -msgstr "" - #: /tmp/fish/implicit/share/completions/patch.fish:31 msgid "Use method to determine backup file names" msgstr "" @@ -46201,110 +43424,97 @@ msgstr "" msgid "Print usage information" msgstr "" -#: /tmp/fish/implicit/share/completions/perl.fish:1 -#: /tmp/fish/implicit/share/completions/ruby.fish:1 +#: share/completions/perl.fish:6 msgid "Specify record separator" -msgstr "" +msgstr "Ange postavdelare" -#: /tmp/fish/implicit/share/completions/perl.fish:2 -#: /tmp/fish/implicit/share/completions/ruby.fish:2 +#: share/completions/perl.fish:7 msgid "Turn on autosplit mode" -msgstr "" +msgstr "Slå på autosplitläge" -#: /tmp/fish/implicit/share/completions/perl.fish:3 -#: /tmp/fish/implicit/share/completions/ruby.fish:3 +#: share/completions/perl.fish:8 msgid "Check syntax" -msgstr "" +msgstr "Kontrollera syntax" #: /tmp/fish/implicit/share/completions/perl.fish:4 +#: share/completions/perl.fish:9 msgid "Control Unicode features" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:5 +#: share/completions/perl.fish:10 msgid "Debug UTF-8 cache" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:6 +#: share/completions/perl.fish:11 msgid "ARGV uses UTF-8" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:7 +#: share/completions/perl.fish:12 msgid "Opened filehandles are UTF-8" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:8 +#: share/completions/perl.fish:13 msgid "STDERR is UTF-8" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:9 +#: share/completions/perl.fish:14 msgid "Filehandles that are read are UTF-8" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:10 +#: share/completions/perl.fish:15 msgid "STDIN is UTF-8" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:11 +#: share/completions/perl.fish:16 msgid "Enable Unicode conditionally" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:12 +#: share/completions/perl.fish:17 msgid "Filehandles written to are UTF-8" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:13 +#: share/completions/perl.fish:18 msgid "STDOUT is UTF-8" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:14 +#: share/completions/perl.fish:19 msgid "STDOUT, STDIN, and STDERR are UTF-8" msgstr "" -#: /tmp/fish/implicit/share/completions/perl.fish:15 -#: /tmp/fish/implicit/share/completions/ruby.fish:5 +#: share/completions/perl.fish:20 msgid "Debugger" -msgstr "" +msgstr "Debugger" #: /tmp/fish/implicit/share/completions/perl.fish:16 msgid "Debugger, with threads" msgstr "" -#: /tmp/fish/implicit/share/completions/perl.fish:17 -msgid "Debug option" -msgstr "" - -#: /tmp/fish/implicit/share/completions/perl.fish:18 -#: /tmp/fish/implicit/share/completions/ruby.fish:6 +#: share/completions/ruby.fish:7 msgid "Execute command" -msgstr "" +msgstr "Utför kommando" #: /tmp/fish/implicit/share/completions/perl.fish:19 msgid "Execute command, enable optional features" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:20 +#: share/completions/perl.fish:25 msgid "Disable sitecustomize.pl" msgstr "" -#: /tmp/fish/implicit/share/completions/perl.fish:21 -#: /tmp/fish/implicit/share/completions/ruby.fish:8 -msgid "Set regexp used to split input" -msgstr "" - -#: /tmp/fish/implicit/share/completions/perl.fish:23 -#: /tmp/fish/implicit/share/completions/ruby.fish:9 -msgid "Edit files in-place" -msgstr "" - -#: /tmp/fish/implicit/share/completions/perl.fish:24 -#: /tmp/fish/implicit/share/completions/ruby.fish:10 -msgid "Include path" -msgstr "" - -#: /tmp/fish/implicit/share/completions/perl.fish:25 -#: /tmp/fish/implicit/share/completions/ruby.fish:11 +#: share/completions/perl.fish:30 msgid "Automatic line ending processing" -msgstr "" +msgstr "Automatisk radslutprocessning" #: /tmp/fish/implicit/share/completions/perl.fish:26 msgid "Require module" @@ -46314,46 +43524,49 @@ msgstr "" msgid "Use module" msgstr "" -#: /tmp/fish/implicit/share/completions/perl.fish:28 -#: /tmp/fish/implicit/share/completions/ruby.fish:12 +#: share/completions/perl.fish:33 msgid "Loop script" -msgstr "" +msgstr "Upprepa skript" -#: /tmp/fish/implicit/share/completions/perl.fish:30 -#: /tmp/fish/implicit/share/completions/ruby.fish:15 +#: share/completions/perl.fish:35 msgid "Define custom switches" -msgstr "" +msgstr "Definera egna flaggor" #: /tmp/fish/implicit/share/completions/perl.fish:32 +#: share/completions/perl.fish:37 msgid "Taint checking, but only with warnings" msgstr "" -#: /tmp/fish/implicit/share/completions/perl.fish:33 -#: /tmp/fish/implicit/share/completions/ruby.fish:17 +#: share/completions/perl.fish:38 msgid "Taint checking" -msgstr "" +msgstr "'taint'-verifiering" #: /tmp/fish/implicit/share/completions/perl.fish:34 +#: share/completions/perl.fish:39 msgid "Dump core" msgstr "" -#: /tmp/fish/implicit/share/completions/perl.fish:35 +#: share/completions/perl.fish:40 msgid "Unsafe mode" -msgstr "" +msgstr "Osäkert läge" #: /tmp/fish/implicit/share/completions/perl.fish:37 +#: share/completions/perl.fish:42 msgid "Display configuration and exit" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:38 +#: share/completions/perl.fish:43 msgid "Show warnings" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:39 +#: share/completions/perl.fish:44 msgid "Force warnings" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:40 +#: share/completions/perl.fish:45 msgid "Disable warnings" msgstr "" @@ -46382,170 +43595,18 @@ msgstr "" msgid "List the process name as well as the process ID" msgstr "" -#: /tmp/fish/implicit/share/completions/pine.fish:1 -msgid "Open folder" -msgstr "" - -#: /tmp/fish/implicit/share/completions/pine.fish:2 -msgid "Open file" -msgstr "" - #: /tmp/fish/implicit/share/completions/pine.fish:4 msgid "Start in folder index" msgstr "" -#: /tmp/fish/implicit/share/completions/pine.fish:5 -msgid "Initial set of keystrokes" -msgstr "" - -#: /tmp/fish/implicit/share/completions/pine.fish:6 -msgid "Use function keys for commands" -msgstr "" - -#: /tmp/fish/implicit/share/completions/pine.fish:7 -msgid "Expand collections in FOLDER LIST display" -msgstr "" - -#: /tmp/fish/implicit/share/completions/pine.fish:8 -msgid "Start with specified current message number" -msgstr "" - -#: /tmp/fish/implicit/share/completions/pine.fish:9 -msgid "Open folder read-only" -msgstr "" - -#: /tmp/fish/implicit/share/completions/pine.fish:11 -msgid "Set global configuration file" -msgstr "" - #: /tmp/fish/implicit/share/completions/pine.fish:12 msgid "Restricted mode" msgstr "" -#: /tmp/fish/implicit/share/completions/pine.fish:13 -msgid "Enable suspension support" -msgstr "" - -#: /tmp/fish/implicit/share/completions/pine.fish:14 -msgid "Produce a sample global configuration file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/pine.fish:15 -msgid "Produce sample configuration file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/pine.fish:16 -msgid "Set mail sort order" -msgstr "" - -#: /tmp/fish/implicit/share/completions/pine.fish:17 -msgid "Config option" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:1 -msgid "Audible ping" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:2 -msgid "Adaptive ping" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:3 -msgid "Allow pinging a broadcast address" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:4 -msgid "Do not allow ping to change source address of probes" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:5 -msgid "Stop after specified number of ECHO_REQUEST packets" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:6 -msgid "Set the SO_DEBUG option on the socket being used" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:7 -msgid "Allocate and set 20 bit flow label on ECHO_REQUEST packets" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:8 -msgid "Flood ping" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:9 -msgid "Wait specified interval of seconds between sending each packet" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:10 -msgid "Set source address to specified interface address" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:11 -msgid "Send the specified number of packets without waiting for reply" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:12 -msgid "Suppress loopback of multicast packets" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:13 -msgid "Numeric output only" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:14 -msgid "Pad packet with empty bytes" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:15 -msgid "Set Quality of Service -related bits in ICMP datagrams" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:17 -msgid "Record route" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:18 -msgid "" -"Bypass the normal routing tables and send directly to a host on an attached " -"interface" -msgstr "" - #: /tmp/fish/implicit/share/completions/ping.fish:19 msgid "Specifies the number of data bytes to be sent" msgstr "" -#: /tmp/fish/implicit/share/completions/ping.fish:20 -msgid "Set socket buffer size" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:21 -msgid "Set the IP Time to Live" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:22 -msgid "Set special IP timestamp options" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:23 -msgid "Select Path MTU Discovery strategy" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:24 -msgid "Print full user-to-user latency" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:27 -msgid "" -"Specify a timeout, in seconds, before ping exits regardless of how many " -"packets have been sent or received" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ping.fish:28 -msgid "Time to wait for a response, in seconds" -msgstr "" - #: /tmp/fish/implicit/share/completions/pinky.fish:1 msgid "produce long format output for the specified USERs" msgstr "" @@ -46849,6 +43910,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:26 #: /tmp/fish/implicit/share/completions/zypper.fish:3 #: /tmp/fish/implicit/share/completions/zypper.fish:18 +#: share/completions/zypper.fish:44 msgid "Install packages" msgstr "" @@ -46860,10 +43922,9 @@ msgstr "" msgid "List package manager plugins" msgstr "" -#: /tmp/fish/implicit/share/completions/pkg.fish:29 -#: /tmp/fish/implicit/share/completions/rpm.fish:95 +#: share/completions/rpm.fish:126 msgid "Query installed packages" -msgstr "" +msgstr "Fråga installerat paket" #: /tmp/fish/implicit/share/completions/pkg.fish:30 msgid "Register a package in a database" @@ -47301,10 +44362,12 @@ msgid "display the version number El ENVIRONMENT The d… [See Man Page]" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:44 +#: share/completions/portmaster.fish:49 msgid "Ports Directory" msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:45 +#: share/completions/portmaster.fish:55 msgid "Installed Package" msgstr "" @@ -47348,13 +44411,10 @@ msgstr "" msgid "Don't send wall message" msgstr "" -#: /tmp/fish/implicit/share/completions/prt-get.fish:2 -#: /tmp/fish/implicit/share/completions/prt-get.fish:62 -#: /tmp/fish/implicit/share/completions/scp.fish:5 -#: /tmp/fish/implicit/share/completions/ssh.fish:14 -#: /tmp/fish/implicit/share/completions/sshfs.fish:2 +#: share/completions/scp.fish:41 share/completions/ssh.fish:39 +#: share/completions/sshfs.fish:25 msgid "Port" -msgstr "" +msgstr "Port" #: /tmp/fish/implicit/share/completions/prt-get.fish:3 #: /tmp/fish/implicit/share/completions/prt-get.fish:64 @@ -47603,102 +44663,10 @@ msgstr "" msgid "Write output to log file" msgstr "" -#: /tmp/fish/implicit/share/completions/ps.fish:1 -#: /tmp/fish/implicit/share/completions/ps.fish:5 -msgid "Select all" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:2 -msgid "Invert selection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:3 -msgid "Select all processes except session leaders and terminal-less" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:4 -msgid "Select all processes except session leaders" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:6 -msgid "Deselect all processes that do not fulfill conditions" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:7 -msgid "Select by command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:8 -msgid "Select by group" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:9 -#: /tmp/fish/implicit/share/completions/ps.fish:10 -msgid "Select by user" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:11 -msgid "Select by group/session" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:12 -msgid "Select by PID" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:13 -msgid "Select by parent PID" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:14 -msgid "Select by session ID" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:15 -msgid "Select by tty" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:16 -msgid "Extra full format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:17 -#: /tmp/fish/implicit/share/completions/ps.fish:23 -msgid "User defined format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:18 -#: /tmp/fish/implicit/share/completions/ps.fish:25 -msgid "Add column for security data" -msgstr "" - #: /tmp/fish/implicit/share/completions/ps.fish:19 msgid "Show different scheduler information for the -l option" msgstr "" -#: /tmp/fish/implicit/share/completions/ps.fish:20 -msgid "Full format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:21 -msgid "Jobs format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:24 -msgid "Do not show flags" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:26 -msgid "Show hierarchy" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:27 -msgid "Set namelist file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ps.fish:28 -msgid "Wide output" -msgstr "" - #: /tmp/fish/implicit/share/completions/ps.fish:29 msgid "Set screen width" msgstr "" @@ -47744,6 +44712,7 @@ msgid "run only single command (SQL or internal) and exit" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:3 +#: share/completions/psql.fish:19 msgid "execute commands from file, then exit" msgstr "" @@ -47840,6 +44809,7 @@ msgid "database server host or socket directory" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:27 +#: share/completions/psql.fish:63 msgid "database server port" msgstr "" @@ -48106,36 +45076,6 @@ msgstr "" msgid "Don't write .py[co] files on import" msgstr "" -#: /tmp/fish/implicit/share/completions/python2.fish:2 -#: /tmp/fish/implicit/share/completions/python3.fish:2 -#: /tmp/fish/implicit/share/completions/python.fish:2 -msgid "Execute argument as command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/python2.fish:3 -#: /tmp/fish/implicit/share/completions/python3.fish:3 -#: /tmp/fish/implicit/share/completions/python.fish:3 -msgid "Debug on" -msgstr "" - -#: /tmp/fish/implicit/share/completions/python2.fish:4 -#: /tmp/fish/implicit/share/completions/python3.fish:4 -#: /tmp/fish/implicit/share/completions/python.fish:4 -msgid "Ignore environment variables" -msgstr "" - -#: /tmp/fish/implicit/share/completions/python2.fish:6 -#: /tmp/fish/implicit/share/completions/python3.fish:6 -#: /tmp/fish/implicit/share/completions/python.fish:6 -msgid "Interactive mode after executing commands" -msgstr "" - -#: /tmp/fish/implicit/share/completions/python2.fish:7 -#: /tmp/fish/implicit/share/completions/python3.fish:7 -#: /tmp/fish/implicit/share/completions/python.fish:8 -msgid "Enable optimizations" -msgstr "" - #: /tmp/fish/implicit/share/completions/python2.fish:8 #: /tmp/fish/implicit/share/completions/python3.fish:8 #: /tmp/fish/implicit/share/completions/python.fish:9 @@ -48148,23 +45088,13 @@ msgstr "" msgid "Don't add user site directory to sys.path" msgstr "" -#: /tmp/fish/implicit/share/completions/python2.fish:10 -#: /tmp/fish/implicit/share/completions/python3.fish:10 -#: /tmp/fish/implicit/share/completions/python.fish:11 +#: share/functions/__fish_complete_python.fish:12 msgid "Disable import of site module" -msgstr "" +msgstr "Slå av importering av platsmodul" -#: /tmp/fish/implicit/share/completions/python2.fish:11 -#: /tmp/fish/implicit/share/completions/python3.fish:11 -#: /tmp/fish/implicit/share/completions/python.fish:12 +#: share/functions/__fish_complete_python.fish:13 msgid "Unbuffered input and output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/python2.fish:14 -#: /tmp/fish/implicit/share/completions/python3.fish:14 -#: /tmp/fish/implicit/share/completions/python.fish:15 -msgid "Warning control" -msgstr "" +msgstr "Buffra inte indata och utdata" #: /tmp/fish/implicit/share/completions/python2.fish:15 #: /tmp/fish/implicit/share/completions/python3.fish:15 @@ -48183,15 +45113,9 @@ msgstr "" msgid "Warn about Python 3.x incompatibilities that 2to3 cannot trivially fix" msgstr "" -#: /tmp/fish/implicit/share/completions/python2.fish:18 -#: /tmp/fish/implicit/share/completions/python.fish:19 +#: share/functions/__fish_complete_python.fish:24 msgid "Warn on mixed tabs and spaces" -msgstr "" - -#: /tmp/fish/implicit/share/completions/python2.fish:19 -#: /tmp/fish/implicit/share/completions/python.fish:20 -msgid "Division control" -msgstr "" +msgstr "Varna vid blandad användning av tabbar och mellanslag" #: /tmp/fish/implicit/share/completions/python2.fish:20 #: /tmp/fish/implicit/share/completions/python3.fish:21 @@ -48456,22 +45380,6 @@ msgstr "" msgid "Show the full path for the given Ruby command" msgstr "" -#: /tmp/fish/implicit/share/completions/rc.d.fish:1 -msgid "Filter started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:2 -msgid "Filter stopped daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:3 -msgid "Filter auto started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:4 -msgid "Filter manually started daemons" -msgstr "" - #: /tmp/fish/implicit/share/completions/rc-service.fish:1 msgid "Tests if the service exists or not" msgstr "" @@ -48496,36 +45404,6 @@ msgstr "" msgid "Run quietly (Does not affect errors)" msgstr "" -#: /tmp/fish/implicit/share/completions/read.fish:2 -msgid "Set prompt command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/read.fish:3 -#: /tmp/fish/implicit/share/completions/set.fish:4 -msgid "Export variable to subprocess" -msgstr "" - -#: /tmp/fish/implicit/share/completions/read.fish:4 -#: /tmp/fish/implicit/share/completions/set.fish:6 -msgid "Make variable scope global" -msgstr "" - -#: /tmp/fish/implicit/share/completions/read.fish:5 -#: /tmp/fish/implicit/share/completions/set.fish:7 -msgid "Make variable scope local" -msgstr "" - -#: /tmp/fish/implicit/share/completions/read.fish:6 -msgid "" -"Make variable scope universal, i.e. share variable with all the users fish " -"processes on this computer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/read.fish:7 -#: /tmp/fish/implicit/share/completions/set.fish:5 -msgid "Do not export variable to subprocess" -msgstr "" - #: /tmp/fish/implicit/share/completions/read.fish:8 msgid "Name to load/save history under" msgstr "" @@ -48612,18 +45490,6 @@ msgstr "" msgid "Alternative root" msgstr "" -#: /tmp/fish/implicit/share/completions/renice.fish:1 -msgid "Force following parameters to be process ID's (The default)" -msgstr "" - -#: /tmp/fish/implicit/share/completions/renice.fish:2 -msgid "Force following parameters to be interpreted as process group ID's" -msgstr "" - -#: /tmp/fish/implicit/share/completions/renice.fish:3 -msgid "Force following parameters to be interpreted as user names" -msgstr "" - #: /tmp/fish/implicit/share/completions/return.fish:2 msgid "Return from function with normal exit status" msgstr "" @@ -48636,14 +45502,6 @@ msgstr "" msgid "device group" msgstr "" -#: /tmp/fish/implicit/share/completions/rmdir.fish:1 -msgid "Ignore errors from non-empty directories" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rmdir.fish:2 -msgid "Remove each component of path" -msgstr "" - #: /tmp/fish/implicit/share/completions/rmmod.fish:1 msgid "Prints the help text." msgstr "" @@ -48694,378 +45552,378 @@ msgstr "" msgid "List of rpm configuration files" msgstr "" -#: /tmp/fish/implicit/share/completions/rpm.fish:6 -msgid "Pipe output through specified command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rpm.fish:7 -msgid "Specify directory for rpm database" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rpm.fish:8 -msgid "Specify root directory for rpm operations" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rpm.fish:9 +#: share/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" -#: /tmp/fish/implicit/share/completions/rpm.fish:10 +#: share/completions/rpm.fish:23 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" -#: /tmp/fish/implicit/share/completions/rpm.fish:11 +#: share/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 "" +"Använd tillsammans med --relocate, tillåter flyttning på alla fökvägar, inte " +"bara de OLD_PATH inkluderade i de binära paketflyttningshintarna" -#: /tmp/fish/implicit/share/completions/rpm.fish:12 +#: share/completions/rpm.fish:25 msgid "Don't install files whose name begins with specified path" -msgstr "" +msgstr "Installera inte filer vars namn börjar med angiven sökväg" -#: /tmp/fish/implicit/share/completions/rpm.fish:13 +#: share/completions/rpm.fish:26 msgid "Don't install any files which are marked as documentation" -msgstr "" +msgstr "Installera inte filer som markerats som dokumentation" -#: /tmp/fish/implicit/share/completions/rpm.fish:14 +#: share/completions/rpm.fish:27 msgid "Same as using --replacepkgs, --replacefiles, and --oldpackage" -msgstr "" +msgstr "Samma sak som --replacepkgs, --replacefiles, och --oldpackage" -#: /tmp/fish/implicit/share/completions/rpm.fish:15 +#: share/completions/rpm.fish:28 msgid "Print 50 hash marks as the package archive is unpacked" -msgstr "" +msgstr "Visa 50 brädgårdstecken medan arkivet packas upp" -#: /tmp/fish/implicit/share/completions/rpm.fish:16 +#: share/completions/rpm.fish:29 msgid "Don't check for sufficient disk space before installation" -msgstr "" +msgstr "Kontrollera inte diskutrymme före installation" -#: /tmp/fish/implicit/share/completions/rpm.fish:17 +#: share/completions/rpm.fish:30 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" -#: /tmp/fish/implicit/share/completions/rpm.fish:18 +#: share/completions/rpm.fish:31 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" -#: /tmp/fish/implicit/share/completions/rpm.fish:19 +#: share/completions/rpm.fish:32 msgid "Install documentation files (default)" -msgstr "" +msgstr "Installera dokumentation (standard)" -#: /tmp/fish/implicit/share/completions/rpm.fish:20 +#: share/completions/rpm.fish:33 msgid "Update only the database, not the filesystem" -msgstr "" +msgstr "Uppdatera bara databasen, inte filsystemet" -#: /tmp/fish/implicit/share/completions/rpm.fish:21 -#: /tmp/fish/implicit/share/completions/rpm.fish:70 +#: share/completions/rpm.fish:34 share/completions/rpm.fish:94 msgid "Don't verify package or header digests when reading" -msgstr "" +msgstr "Kontrollera inte paket- eller huvudsammanfattningar vid inläsning" -#: /tmp/fish/implicit/share/completions/rpm.fish:22 -#: /tmp/fish/implicit/share/completions/rpm.fish:73 +#: share/completions/rpm.fish:35 share/completions/rpm.fish:97 msgid "Don't verify package or header signatures when reading" -msgstr "" +msgstr "Kontrollera inte paket- eller huvudsignatur vid inläsning" -#: /tmp/fish/implicit/share/completions/rpm.fish:23 +#: share/completions/rpm.fish:36 msgid "Don't do a dependency check" -msgstr "" +msgstr "Utför inte beroendeverifiering" -#: /tmp/fish/implicit/share/completions/rpm.fish:24 +#: share/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" -#: /tmp/fish/implicit/share/completions/rpm.fish:25 +#: share/completions/rpm.fish:38 msgid "Don't change the package installation order" -msgstr "" +msgstr "Byt inte paketinstallationsordning " -#: /tmp/fish/implicit/share/completions/rpm.fish:26 +#: share/completions/rpm.fish:39 msgid "Don't execute scripts" -msgstr "" +msgstr "Kör inte skript" -#: /tmp/fish/implicit/share/completions/rpm.fish:27 +#: share/completions/rpm.fish:40 msgid "Don't execute pre scripts" -msgstr "" +msgstr "Kör inte pre-skript" -#: /tmp/fish/implicit/share/completions/rpm.fish:28 +#: share/completions/rpm.fish:41 msgid "Don't execute post scripts" -msgstr "" +msgstr "Kör inte post-skript" -#: /tmp/fish/implicit/share/completions/rpm.fish:29 +#: share/completions/rpm.fish:42 msgid "Don't execute preun scripts" -msgstr "" +msgstr "Kör inte preun-skript" -#: /tmp/fish/implicit/share/completions/rpm.fish:30 +#: share/completions/rpm.fish:43 msgid "Don't execute postun scripts" -msgstr "" +msgstr "Kör inte postun-skript" -#: /tmp/fish/implicit/share/completions/rpm.fish:31 -#: /tmp/fish/implicit/share/completions/rpm.fish:87 +#: share/completions/rpm.fish:44 share/completions/rpm.fish:115 msgid "Don't execute trigger scriptlets" -msgstr "" +msgstr "Kör inte trigger-skriptlets" -#: /tmp/fish/implicit/share/completions/rpm.fish:32 +#: share/completions/rpm.fish:45 msgid "Don't execute triggerin scriptlets" -msgstr "" +msgstr "Kör inte triggerin-skriptlets" -#: /tmp/fish/implicit/share/completions/rpm.fish:33 -#: /tmp/fish/implicit/share/completions/rpm.fish:88 +#: share/completions/rpm.fish:46 share/completions/rpm.fish:116 msgid "Don't execute triggerun scriptlets" -msgstr "" +msgstr "Kör inte triggerun-skriptlets" -#: /tmp/fish/implicit/share/completions/rpm.fish:34 -#: /tmp/fish/implicit/share/completions/rpm.fish:89 +#: share/completions/rpm.fish:47 share/completions/rpm.fish:117 msgid "Don't execute triggerpostun scriptlets" -msgstr "" +msgstr "Kör inte triggerpostun-skriptlets" -#: /tmp/fish/implicit/share/completions/rpm.fish:35 +#: share/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" -#: /tmp/fish/implicit/share/completions/rpm.fish:36 +#: share/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 "" +"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" -#: /tmp/fish/implicit/share/completions/rpm.fish:37 +#: share/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 "" +"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" -#: /tmp/fish/implicit/share/completions/rpm.fish:38 -msgid "" -"Translate all paths that start with first half of following parameter to " -"second half of following parameter" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rpm.fish:39 -#: /tmp/fish/implicit/share/completions/rpm.fish:90 +#: share/completions/rpm.fish:52 share/completions/rpm.fish:118 msgid "Re-package the files before erasing" -msgstr "" +msgstr "Ompaketera paket inan radering" -#: /tmp/fish/implicit/share/completions/rpm.fish:40 +#: share/completions/rpm.fish:53 msgid "" "Install the packages even if they replace files from other, already " "installed, packages" msgstr "" +"Installera paket även om de ersätter filer från andra, redan installerade " +"paket" -#: /tmp/fish/implicit/share/completions/rpm.fish:41 +#: share/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" -#: /tmp/fish/implicit/share/completions/rpm.fish:42 +#: share/completions/rpm.fish:55 msgid "" "Don't install the package, simply check for and report potential conflicts" msgstr "" +"Installera inte paket, kontrollera och rapportera potentiella konflikter" -#: /tmp/fish/implicit/share/completions/rpm.fish:43 +#: share/completions/rpm.fish:59 msgid "Display change information for the package" -msgstr "" +msgstr "Visa ändringsinformation för paket" -#: /tmp/fish/implicit/share/completions/rpm.fish:44 +#: share/completions/rpm.fish:60 msgid "List only configuration files (implies -l)" -msgstr "" +msgstr "Visa bara konfigurationsfiler (implicerar -l)" -#: /tmp/fish/implicit/share/completions/rpm.fish:45 +#: share/completions/rpm.fish:61 msgid "List only documentation files (implies -l)" -msgstr "" +msgstr "Visa bara dokumentationsfiler (implicerar -l)" -#: /tmp/fish/implicit/share/completions/rpm.fish:46 +#: share/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" -#: /tmp/fish/implicit/share/completions/rpm.fish:47 +#: share/completions/rpm.fish:63 msgid "List all the files in each selected package" -msgstr "" +msgstr "Visa alla filer i varje valt paket" -#: /tmp/fish/implicit/share/completions/rpm.fish:48 +#: share/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" -#: /tmp/fish/implicit/share/completions/rpm.fish:49 +#: share/completions/rpm.fish:65 msgid "Orders the package listing by install time" -msgstr "" +msgstr "Sortera paketlistning efter installationstid" -#: /tmp/fish/implicit/share/completions/rpm.fish:50 +#: share/completions/rpm.fish:66 msgid "List files in package" -msgstr "" +msgstr "Visa filer i paket" -#: /tmp/fish/implicit/share/completions/rpm.fish:51 +#: share/completions/rpm.fish:67 msgid "List capabilities this package provides" -msgstr "" +msgstr "Visa förmågor som detta paket tillhandahåller" -#: /tmp/fish/implicit/share/completions/rpm.fish:52 +#: share/completions/rpm.fish:68 msgid "List packages on which this package depends" -msgstr "" +msgstr "Visa paket som detta paket beror på" -#: /tmp/fish/implicit/share/completions/rpm.fish:53 +#: share/completions/rpm.fish:69 msgid "List the package specific scriptlets" -msgstr "" +msgstr "Visa paket-specifika skriptlets" -#: /tmp/fish/implicit/share/completions/rpm.fish:54 +#: share/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" -#: /tmp/fish/implicit/share/completions/rpm.fish:55 -#: /tmp/fish/implicit/share/completions/rpm.fish:56 +#: share/completions/rpm.fish:71 share/completions/rpm.fish:72 msgid "Display the trigger scripts contained in the package" -msgstr "" +msgstr "Visa paketets triggerskript" -#: /tmp/fish/implicit/share/completions/rpm.fish:57 +#: share/completions/rpm.fish:78 msgid "Query all installed packages" -msgstr "" +msgstr "Fråga alla installerade paket" -#: /tmp/fish/implicit/share/completions/rpm.fish:58 +#: share/completions/rpm.fish:79 msgid "Query package owning specified file" -msgstr "" +msgstr "Fråga paket som äger angiven fil" -#: /tmp/fish/implicit/share/completions/rpm.fish:59 +#: share/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" -#: /tmp/fish/implicit/share/completions/rpm.fish:60 +#: share/completions/rpm.fish:81 msgid "Query packages with the specified group" -msgstr "" +msgstr "Fråga paket med angiven grupp" -#: /tmp/fish/implicit/share/completions/rpm.fish:61 +#: share/completions/rpm.fish:82 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" -#: /tmp/fish/implicit/share/completions/rpm.fish:62 +#: share/completions/rpm.fish:83 msgid "Query an (uninstalled) package in specified file" -msgstr "" +msgstr "Fråga ett (oinstallerat) paket i angiven fil" -#: /tmp/fish/implicit/share/completions/rpm.fish:63 +#: share/completions/rpm.fish:84 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" -#: /tmp/fish/implicit/share/completions/rpm.fish:64 +#: share/completions/rpm.fish:85 msgid "Parse and query specified spec-file as if it were a package" -msgstr "" +msgstr "Tolka och fråga angiven spec-fil som om det vore ett paket" -#: /tmp/fish/implicit/share/completions/rpm.fish:65 +#: share/completions/rpm.fish:86 msgid "Query package(s) that have the specified TID (transaction identifier)" -msgstr "" +msgstr "Fråga paket med angiven TID (transaktions-id)" -#: /tmp/fish/implicit/share/completions/rpm.fish:66 +#: share/completions/rpm.fish:87 msgid "Query packages that are triggered by the specified packages" -msgstr "" +msgstr "Fråga paket som triggas av angivna paket" -#: /tmp/fish/implicit/share/completions/rpm.fish:67 +#: share/completions/rpm.fish:88 msgid "Query all packages that provide the specified capability" -msgstr "" +msgstr "Fråga alla paket som tillhandahåller den angivna förmågan" -#: /tmp/fish/implicit/share/completions/rpm.fish:68 +#: share/completions/rpm.fish:89 msgid "" "Query all packages that requires the specified capability for functioning" -msgstr "" +msgstr "Fråga alla paket som kräver den angivna förmågan för att fungera" -#: /tmp/fish/implicit/share/completions/rpm.fish:69 +#: share/completions/rpm.fish:93 msgid "Don't verify dependencies of packages" -msgstr "" +msgstr "Verifiera inte paketens beroenden" -#: /tmp/fish/implicit/share/completions/rpm.fish:71 +#: share/completions/rpm.fish:95 msgid "Don't verify any attributes of package files" -msgstr "" +msgstr "Verifiera inga attribut i paketfiler" -#: /tmp/fish/implicit/share/completions/rpm.fish:72 +#: share/completions/rpm.fish:96 msgid "Don't execute the %verifyscript scriptlet" -msgstr "" +msgstr "Utför inte %verifyskriptlet" -#: /tmp/fish/implicit/share/completions/rpm.fish:74 +#: share/completions/rpm.fish:98 msgid "Don't verify linkto attribute" -msgstr "" +msgstr "Verifiera inte linkto-attribut" -#: /tmp/fish/implicit/share/completions/rpm.fish:75 +#: share/completions/rpm.fish:99 msgid "Don't verify md5 attribute" -msgstr "" +msgstr "Verifiera inte md5-attribut" -#: /tmp/fish/implicit/share/completions/rpm.fish:76 +#: share/completions/rpm.fish:100 msgid "Don't verify size attribute" -msgstr "" +msgstr "Verifiera inte storleksattribut" -#: /tmp/fish/implicit/share/completions/rpm.fish:77 +#: share/completions/rpm.fish:101 msgid "Don't verify user attribute" -msgstr "" +msgstr "Verifiera inte användarattribut" -#: /tmp/fish/implicit/share/completions/rpm.fish:78 +#: share/completions/rpm.fish:102 msgid "Don't verify group attribute" -msgstr "" +msgstr "Verifiera inte gruppattribut" -#: /tmp/fish/implicit/share/completions/rpm.fish:79 +#: share/completions/rpm.fish:103 msgid "Don't verify time attribute" -msgstr "" +msgstr "Verifiera inte tidsattribut" -#: /tmp/fish/implicit/share/completions/rpm.fish:80 +#: share/completions/rpm.fish:104 msgid "Don't verify mode attribute" -msgstr "" +msgstr "Verifiera inte filrättighetsattribut" -#: /tmp/fish/implicit/share/completions/rpm.fish:81 +#: share/completions/rpm.fish:105 msgid "Don't verify dev attribute" -msgstr "" +msgstr "Verifiera inte enhetsattribut" -#: /tmp/fish/implicit/share/completions/rpm.fish:82 +#: share/completions/rpm.fish:110 msgid "Remove all versions of the package which match specified string" -msgstr "" +msgstr "Ta bort alla version av paketet som matchar angiven sträng" -#: /tmp/fish/implicit/share/completions/rpm.fish:83 +#: share/completions/rpm.fish:111 msgid "Don't check dependencies before uninstalling the packages" -msgstr "" +msgstr "Verifiera inte beroenden före paketen avinstalleras" -#: /tmp/fish/implicit/share/completions/rpm.fish:84 +#: share/completions/rpm.fish:112 msgid "Don't execute scriplets" -msgstr "" +msgstr "Kör inte skriptlets" -#: /tmp/fish/implicit/share/completions/rpm.fish:85 +#: share/completions/rpm.fish:113 msgid "Don't execute preun scriptlet" -msgstr "" +msgstr "Kör inte preun-skriptlet" -#: /tmp/fish/implicit/share/completions/rpm.fish:86 +#: share/completions/rpm.fish:114 msgid "Don't execute postun scriptlet" -msgstr "" +msgstr "Kör inte postun-skriptlet" -#: /tmp/fish/implicit/share/completions/rpm.fish:91 +#: share/completions/rpm.fish:119 msgid "Don't really uninstall anything" -msgstr "" +msgstr "Avinstallera ingenting på riktigt" -#: /tmp/fish/implicit/share/completions/rpm.fish:92 +#: share/completions/rpm.fish:123 msgid "Install new package" -msgstr "" +msgstr "Installera nytt paket" -#: /tmp/fish/implicit/share/completions/rpm.fish:93 +#: share/completions/rpm.fish:124 msgid "Upgrade existing package" -msgstr "" +msgstr "Upgradera existerande paket" -#: /tmp/fish/implicit/share/completions/rpm.fish:94 +#: share/completions/rpm.fish:125 msgid "Upgrade package if already installed" -msgstr "" +msgstr "Upgradera paket om det är installerat" -#: /tmp/fish/implicit/share/completions/rpm.fish:96 +#: share/completions/rpm.fish:127 msgid "Verify package integrity" -msgstr "" +msgstr "Verifiera paketintegritet" -#: /tmp/fish/implicit/share/completions/rpm.fish:97 +#: share/completions/rpm.fish:128 msgid "Erase package" -msgstr "" +msgstr "Ta bort paket" #: /tmp/fish/implicit/share/completions/rsync.fish:2 msgid "Suppress non-error messages" @@ -49220,14 +46078,17 @@ msgid "Don’t cross filesystem boundaries" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:40 +#: share/completions/rsync.fish:41 msgid "Force a fixed checksum block-size" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:41 +#: share/completions/rsync.fish:42 msgid "Specify the remote shell to use" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:42 +#: share/completions/rsync.fish:43 msgid "Specify the rsync to run on remote machine" msgstr "" @@ -49332,10 +46193,12 @@ msgid "Find similar file for basis if no dest file" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:68 +#: share/completions/rsync.fish:69 msgid "Also compare received files relative to DIR" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:69 +#: share/completions/rsync.fish:70 msgid "" "Also compare received files relative to DIR and include copies of unchanged " "files" @@ -49428,10 +46291,12 @@ msgid "Output a change-summary for all updates" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:92 +#: share/completions/rsync.fish:93 msgid "Output filenames using the specified format" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:93 +#: share/completions/rsync.fish:94 msgid "Read password from FILE" msgstr "" @@ -49440,10 +46305,12 @@ msgid "List the files instead of copying them" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:95 +#: share/completions/rsync.fish:96 msgid "Limit I/O bandwidth; KBytes per second" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:96 +#: share/completions/rsync.fish:97 msgid "Write a batched update to FILE" msgstr "" @@ -49452,14 +46319,17 @@ msgid "Like --write-batch but w/o updating dest" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:98 +#: share/completions/rsync.fish:99 msgid "Read a batched update from FILE" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:99 +#: share/completions/rsync.fish:100 msgid "Force an older protocol version to be used" msgstr "" #: /tmp/fish/implicit/share/completions/rsync.fish:100 +#: share/completions/rsync.fish:101 msgid "Set block/file checksum seed (advanced)" msgstr "" @@ -49491,21 +46361,9 @@ msgstr "" msgid "List all built-in definitions" msgstr "" -#: /tmp/fish/implicit/share/completions/ruby.fish:4 -msgid "Kanji code-set" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ruby.fish:14 +#: share/completions/ruby.fish:15 msgid "Require file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ruby.fish:19 -msgid "Verbose mode without message" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ruby.fish:23 -msgid "Compiler debug mode" -msgstr "" +msgstr "Kräv fil" #: /tmp/fish/implicit/share/completions/s3cmd.fish:1 msgid "Make bucket" @@ -50658,18 +47516,9 @@ msgstr "" msgid "Remote Path" msgstr "" -#: /tmp/fish/implicit/share/completions/scp.fish:4 +#: share/completions/scp.fish:40 msgid "Bandwidth limit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/scp.fish:6 -msgid "" -"Preserves modification times, access times, and modes from the original file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/scp.fish:8 -msgid "Recursively copy" -msgstr "" +msgstr "Bandbreddsgräns" #: /tmp/fish/implicit/share/completions/scp.fish:9 msgid "Encryption program" @@ -50695,9 +47544,9 @@ msgstr "" msgid "Print a list of attached screen sessions" msgstr "" -#: /tmp/fish/implicit/share/completions/screen.fish:6 +#: share/completions/screen.fish:1 msgid "Print a list of running screen sessions" -msgstr "" +msgstr "Visa lista på alla körande screen-sessioner" #: /tmp/fish/implicit/share/completions/screen.fish:7 msgid "Include all capabilitys" @@ -50728,10 +47577,9 @@ msgstr "" msgid "Reattach/create any session" msgstr "" -#: /tmp/fish/implicit/share/completions/screen.fish:15 -#: /tmp/fish/implicit/share/completions/ssh.fish:5 +#: share/completions/ssh.fish:30 msgid "Escape character" -msgstr "" +msgstr "Avbrottstecken" #: /tmp/fish/implicit/share/completions/screen.fish:16 msgid "Flow control on" @@ -50866,19 +47714,13 @@ msgstr "" msgid "Service name" msgstr "" -#: /tmp/fish/implicit/share/completions/set_color.fish:1 +#: share/completions/set.fish:73 share/completions/set_color.fish:1 msgid "Color" -msgstr "" +msgstr "Färg" -#: /tmp/fish/implicit/share/completions/set_color.fish:2 -#: /tmp/fish/implicit/share/completions/set.fish:12 +#: share/completions/set.fish:74 share/completions/set_color.fish:2 msgid "Change background color" -msgstr "" - -#: /tmp/fish/implicit/share/completions/set_color.fish:3 -#: /tmp/fish/implicit/share/completions/set.fish:13 -msgid "Make font bold" -msgstr "" +msgstr "Byt bakgrundsfärg" #: /tmp/fish/implicit/share/completions/set_color.fish:4 msgid "Italicise" @@ -50928,18 +47770,10 @@ msgstr "" msgid "Test if We are specifying a locale value for the prompt" msgstr "" -#: /tmp/fish/implicit/share/completions/set.fish:3 -msgid "Erase variable" -msgstr "" - #: /tmp/fish/implicit/share/completions/set.fish:8 msgid "Share variable persistently across sessions" msgstr "" -#: /tmp/fish/implicit/share/completions/set.fish:9 -msgid "Test if variable is defined" -msgstr "" - #: /tmp/fish/implicit/share/completions/set.fish:11 msgid "List the names of the variables, but not their value" msgstr "" @@ -51105,34 +47939,10 @@ msgstr "" msgid "Snap" msgstr "" -#: /tmp/fish/implicit/share/completions/sort.fish:1 -msgid "Ignore leading blanks" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sort.fish:2 -msgid "Consider only blanks and alphanumerics" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sort.fish:4 -msgid "Compare general numeric value" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sort.fish:5 -msgid "Consider only printable" -msgstr "" - #: /tmp/fish/implicit/share/completions/sort.fish:6 msgid "Compare human readable numbers [2K 1G]" msgstr "" -#: /tmp/fish/implicit/share/completions/sort.fish:7 -msgid "Compare month names" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sort.fish:8 -msgid "Compare string numerical value" -msgstr "" - #: /tmp/fish/implicit/share/completions/sort.fish:9 msgid "Sort by random hash of keys" msgstr "" @@ -51141,137 +47951,25 @@ msgstr "" msgid "Get random bytes from FILE" msgstr "" -#: /tmp/fish/implicit/share/completions/sort.fish:11 -msgid "Reverse results" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sort.fish:12 -msgid "Only check if sorted" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sort.fish:13 -msgid "Define key" -msgstr "" - #: /tmp/fish/implicit/share/completions/sort.fish:14 msgid "Merge sorted files" msgstr "" -#: /tmp/fish/implicit/share/completions/sort.fish:16 -msgid "Stabilize sort" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sort.fish:17 +#: share/completions/sort.fish:18 msgid "Set memory buffer size" -msgstr "" +msgstr "Välj minnesbuffertstorlek" -#: /tmp/fish/implicit/share/completions/sort.fish:18 -msgid "Field separator" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sort.fish:19 +#: share/completions/sort.fish:20 msgid "Set temporary directory" -msgstr "" +msgstr "Välj katalog för tillfälligt lagringsutrymme" -#: /tmp/fish/implicit/share/completions/sort.fish:20 -msgid "Output only first of equal lines" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sort.fish:21 -msgid "Lines end with 0 byte" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:2 -msgid "Disables forwarding of the authentication agent" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:3 -msgid "Enables forwarding of the authentication agent" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:4 +#: share/completions/ssh.fish:24 msgid "Interface to transmit from" -msgstr "" +msgstr "Gränssnitt att skicka från" -#: /tmp/fish/implicit/share/completions/ssh.fish:6 -msgid "Go to background" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:7 -msgid "Allow remote host to connect to local forwarded ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:8 -msgid "Smartcard device" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:9 -msgid "Disable forwarding of Kerberos tickets" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:10 +#: share/completions/ssh.fish:35 msgid "User" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:11 -msgid "MAC algorithm" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:12 -msgid "Prevent reading from stdin" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:13 -msgid "Do not execute remote command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:16 -msgid "Subsystem" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:17 -msgid "Force pseudo-tty allocation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:18 -msgid "Disable pseudo-tty allocation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:19 -msgid "Disable X11 forwarding" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:20 -msgid "Enable X11 forwarding" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:21 -msgid "Locally forwarded ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:22 -msgid "Remotely forwarded ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ssh.fish:23 -msgid "Dynamic port forwarding" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sshfs.fish:3 -msgid "Compression" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sshfs.fish:5 -msgid "Enable debug" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sshfs.fish:6 -msgid "Foreground operation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/sshfs.fish:7 -msgid "Disable multi-threaded operation" -msgstr "" +msgstr "Användare" #: /tmp/fish/implicit/share/completions/stack.fish:1 msgid "Show this help text" @@ -51538,38 +48236,10 @@ msgstr "" msgid "Subcommands specific to package signatures (experimental)" msgstr "" -#: /tmp/fish/implicit/share/completions/status.fish:2 -msgid "Test if this is a login shell" -msgstr "" - -#: /tmp/fish/implicit/share/completions/status.fish:3 -msgid "Test if this is an interactive shell" -msgstr "" - -#: /tmp/fish/implicit/share/completions/status.fish:4 -msgid "Test if a command substitution is currently evaluated" -msgstr "" - -#: /tmp/fish/implicit/share/completions/status.fish:5 -msgid "Test if a code block is currently evaluated" -msgstr "" - #: /tmp/fish/implicit/share/completions/status.fish:6 msgid "Test if a breakpoint is currently in effect" msgstr "" -#: /tmp/fish/implicit/share/completions/status.fish:7 -msgid "Test if new jobs are never put under job control" -msgstr "" - -#: /tmp/fish/implicit/share/completions/status.fish:8 -msgid "Test if only interactive new jobs are put under job control" -msgstr "" - -#: /tmp/fish/implicit/share/completions/status.fish:9 -msgid "Test if all new jobs are put under job control" -msgstr "" - #: /tmp/fish/implicit/share/completions/status.fish:10 msgid "Print the filename of the currently running script" msgstr "" @@ -51578,11 +48248,6 @@ msgstr "" msgid "Print the line number of the currently running script" msgstr "" -#: /tmp/fish/implicit/share/completions/status.fish:12 -msgid "" -"Print a list of all function calls leading up to running the current command" -msgstr "" - #: /tmp/fish/implicit/share/completions/status.fish:13 msgid "Set which jobs are under job control" msgstr "" @@ -51647,10 +48312,6 @@ msgstr "" msgid "Report all matches per line/string" msgstr "" -#: /tmp/fish/implicit/share/completions/string.fish:11 -msgid "Case insensitive" -msgstr "" - #: /tmp/fish/implicit/share/completions/string.fish:12 msgid "Use regex instead of globs" msgstr "" @@ -51699,12 +48360,6 @@ msgstr "" msgid "Close all file descriptors greater or equal to the given number" msgstr "" -#: /tmp/fish/implicit/share/completions/sudo.fish:3 -#: /tmp/fish/implicit/share/completions/su.fish:4 -#: /tmp/fish/implicit/share/completions/su.fish:5 -msgid "Preserve environment" -msgstr "" - #: /tmp/fish/implicit/share/completions/sudo.fish:4 msgid "Set home" msgstr "" @@ -51767,23 +48422,16 @@ msgstr "" msgid "Validate the credentials, extending timeout" msgstr "" -#: /tmp/fish/implicit/share/completions/su.fish:1 -msgid "Make login shell" -msgstr "" - -#: /tmp/fish/implicit/share/completions/su.fish:2 +#: share/completions/su.fish:5 msgid "Pass command to shell" -msgstr "" - -#: /tmp/fish/implicit/share/completions/su.fish:3 -msgid "Pass -f to the shell" -msgstr "" +msgstr "Skicka kommando till skalet" #: /tmp/fish/implicit/share/completions/svn.fish:1 msgid "Make a completion for a subcommand" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:2 +#: share/functions/__fish_complete_svn.fish:48 msgid "" "Put files and directories under version control, scheduling them for " "addition to repository. They will be added in next commit." @@ -51791,116 +48439,144 @@ msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:3 #: /tmp/fish/implicit/share/completions/svn.fish:5 +#: share/functions/__fish_complete_svn.fish:49 +#: share/functions/__fish_complete_svn.fish:51 msgid "" "Output the content of specified files or URLs with revision and author " "information in-line." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:4 +#: share/functions/__fish_complete_svn.fish:50 msgid "Output the content of specified files or URLs." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:6 +#: share/functions/__fish_complete_svn.fish:52 msgid "Check out a working copy from a repository." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:7 +#: share/functions/__fish_complete_svn.fish:53 msgid "" "Recursively clean up the working copy, removing locks, resuming unfinished " "operations, etc." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:8 +#: share/functions/__fish_complete_svn.fish:54 msgid "Send changes from your working copy to the repository." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:9 +#: share/functions/__fish_complete_svn.fish:55 msgid "Duplicate something in working copy or repository, remembering history." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:10 +#: share/functions/__fish_complete_svn.fish:56 msgid "Display the differences between two revisions or paths." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:11 +#: share/functions/__fish_complete_svn.fish:57 msgid "Create an unversioned copy of a tree." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:12 +#: share/functions/__fish_complete_svn.fish:58 msgid "Describe the usage of this program or its subcommands." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:13 +#: share/functions/__fish_complete_svn.fish:59 msgid "Commit an unversioned file or tree into the repository." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:14 +#: share/functions/__fish_complete_svn.fish:60 msgid "Display information about a local or remote item." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:15 +#: share/functions/__fish_complete_svn.fish:61 msgid "List directory entries in the repository." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:16 +#: share/functions/__fish_complete_svn.fish:62 msgid "" "Lock working copy paths or URLs in the repository, so that no other user can " "commit changes to them." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:17 +#: share/functions/__fish_complete_svn.fish:63 msgid "Show the log messages for a set of revision(s) and/or file(s)." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:18 +#: share/functions/__fish_complete_svn.fish:64 msgid "Apply the differences between two sources to a working copy path." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:19 +#: share/functions/__fish_complete_svn.fish:65 msgid "Display information related to merges" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:20 +#: share/functions/__fish_complete_svn.fish:66 msgid "Create a new directory under version control." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:21 +#: share/functions/__fish_complete_svn.fish:67 msgid "Move and/or rename something in working copy or repository." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:22 +#: share/functions/__fish_complete_svn.fish:68 msgid "Apply a unidiff patch to the working copy" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:23 +#: share/functions/__fish_complete_svn.fish:69 msgid "Remove a property from files, dirs, or revisions." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:24 +#: share/functions/__fish_complete_svn.fish:70 msgid "Edit a property with an external editor." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:25 +#: share/functions/__fish_complete_svn.fish:71 msgid "Print the value of a property on files, dirs, or revisions." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:26 +#: share/functions/__fish_complete_svn.fish:72 msgid "List all properties on files, dirs, or revisions." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:27 +#: share/functions/__fish_complete_svn.fish:73 msgid "Set the value of a property on files, dirs, or revisions." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:28 +#: share/functions/__fish_complete_svn.fish:74 msgid "Rewrite working copy url metadata" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:29 +#: share/functions/__fish_complete_svn.fish:75 msgid "Remove files and directories from version control." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:30 +#: share/functions/__fish_complete_svn.fish:76 msgid "Remove conflicts on working copy files or directories." msgstr "" @@ -51909,26 +48585,32 @@ msgid "Remove 'conflicted' state on working copy files or directories." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:32 +#: share/functions/__fish_complete_svn.fish:78 msgid "Restore pristine working copy file (undo most local edits)." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:33 +#: share/functions/__fish_complete_svn.fish:79 msgid "Print the status of working copy files and directories." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:34 +#: share/functions/__fish_complete_svn.fish:80 msgid "Update the working copy to a different URL." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:35 +#: share/functions/__fish_complete_svn.fish:81 msgid "Unlock working copy paths or URLs." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:36 +#: share/functions/__fish_complete_svn.fish:82 msgid "Bring changes from the repository into the working copy." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:37 +#: share/functions/__fish_complete_svn.fish:83 msgid "Upgrade the metadata storage format for a working copy." msgstr "" @@ -51941,14 +48623,16 @@ msgid "Specify a password ARG" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:40 +#: share/functions/__fish_complete_svn.fish:90 msgid "Do not cache authentication tokens" msgstr "" -#: /tmp/fish/implicit/share/completions/svn.fish:41 +#: share/functions/__fish_complete_svn.fish:91 msgid "Do no interactive prompting" -msgstr "" +msgstr "Ställ inga interaktiva frågor" #: /tmp/fish/implicit/share/completions/svn.fish:42 +#: share/functions/__fish_complete_svn.fish:92 msgid "" "Accept SSL server certificates from unknown authorities (ony with --non-" "interactive)" @@ -51968,34 +48652,42 @@ msgid "Exit sylpheed" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:5 +#: share/completions/sylpheed.fish:8 msgid "Open composition window with address" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:6 +#: share/completions/sylpheed.fish:9 msgid "Open composition window with attached files" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:7 +#: share/completions/sylpheed.fish:10 msgid "Receive new messages" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:8 +#: share/completions/sylpheed.fish:11 msgid "Receive new messages of all accounts" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:9 +#: share/completions/sylpheed.fish:12 msgid "Send all queued messages" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:10 +#: share/completions/sylpheed.fish:13 msgid "Show the total number of messages for folder" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:11 +#: share/completions/sylpheed.fish:14 msgid "Show the total number of messages for each folder" msgstr "" #: /tmp/fish/implicit/share/completions/sylpheed.fish:12 +#: share/completions/sylpheed.fish:15 msgid "Specify directory with configuration files" msgstr "" @@ -52634,209 +49326,50 @@ msgid "" "output the last K lines, instead of the last 10 - or only K lines with -r" msgstr "" -#: /tmp/fish/implicit/share/completions/tar.fish:1 -#: /tmp/fish/implicit/share/completions/tar.fish:2 -msgid "Append archive to archive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:3 -msgid "Create archive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:4 -#: /tmp/fish/implicit/share/completions/tar.fish:5 -msgid "Compare archive and filesystem" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:6 -msgid "Delete from archive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:7 -msgid "Append files to archive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:8 -#: /tmp/fish/implicit/share/completions/unrar.fish:2 +#: share/completions/unrar.fish:6 msgid "List archive" -msgstr "" +msgstr "Visa arkivinnehåll" -#: /tmp/fish/implicit/share/completions/tar.fish:9 -msgid "Append new files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:10 -#: /tmp/fish/implicit/share/completions/tar.fish:11 -msgid "Extract from archive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:12 -msgid "Keep access time" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:14 -msgid "Reblock while reading" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:16 -msgid "Print directory names" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:17 +#: share/completions/tar.fish:21 msgid "Archive file" -msgstr "" +msgstr "Arkivfil" -#: /tmp/fish/implicit/share/completions/tar.fish:18 -msgid "Archive is local" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:19 -msgid "Run script at end of tape" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:20 -msgid "Use old incremental GNU format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:21 -msgid "Use new incremental GNU format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:22 -msgid "Dereference symlinks" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:23 -msgid "Ignore zero block in archive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:24 -msgid "Filter through bzip2" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:25 -msgid "Don't exit on unreadable files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:26 -msgid "Don't overwrite" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:27 +#: share/completions/tar.fish:31 msgid "Starting file in archive" -msgstr "" +msgstr "Startfil i arkiv" -#: /tmp/fish/implicit/share/completions/tar.fish:28 -msgid "Stay in local filesystem" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:29 +#: share/completions/tar.fish:33 msgid "Tape length" -msgstr "" +msgstr "Bandlängd" -#: /tmp/fish/implicit/share/completions/tar.fish:30 -#: /tmp/fish/implicit/share/completions/tar.fish:31 -msgid "Don't extract modification time" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:32 -msgid "Multi volume archive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:33 -#: /tmp/fish/implicit/share/completions/tar.fish:34 +#: share/completions/tar.fish:36 msgid "Only store newer files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:35 -#: /tmp/fish/implicit/share/completions/tar.fish:36 -msgid "Use V7 format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:37 -msgid "Extract to stdout" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:38 -#: /tmp/fish/implicit/share/completions/tar.fish:39 -msgid "Extract all permissions" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:40 -msgid "Don't strip leading /" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:41 -msgid "Preserve all permissions and do not sort file arguments" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:42 -msgid "Show record number" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:43 -msgid "Remove files after adding to archive" -msgstr "" +msgstr "Lagra bara nyare filer" #: /tmp/fish/implicit/share/completions/tar.fish:44 #: /tmp/fish/implicit/share/completions/tar.fish:45 msgid "Do not sort file arguments" msgstr "" -#: /tmp/fish/implicit/share/completions/tar.fish:46 -msgid "Preserve file ownership" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:47 -msgid "Handle sparse files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:48 +#: share/completions/tar.fish:50 msgid "Extract file from file" -msgstr "" +msgstr "Axtrahera fil från fil" -#: /tmp/fish/implicit/share/completions/tar.fish:49 -msgid "-T has null-terminated names" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:50 -msgid "Print total bytes written" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:52 +#: share/completions/tar.fish:54 msgid "Set volume name" -msgstr "" +msgstr "Välj volymnamn" -#: /tmp/fish/implicit/share/completions/tar.fish:54 -#: /tmp/fish/implicit/share/completions/tar.fish:55 -msgid "Ask for confirmation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:56 -msgid "Verify archive" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:57 +#: share/completions/tar.fish:59 msgid "Exclude file" -msgstr "" +msgstr "Exkludera fil" -#: /tmp/fish/implicit/share/completions/tar.fish:58 +#: share/completions/tar.fish:60 msgid "Exclude files listed in specified file" -msgstr "" +msgstr "Exklidera filer listade i angiven fil" -#: /tmp/fish/implicit/share/completions/tar.fish:59 -#: /tmp/fish/implicit/share/completions/tar.fish:60 -msgid "Filter through compress" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:61 -#: /tmp/fish/implicit/share/completions/tar.fish:62 -msgid "Filter through gzip" -msgstr "" - -#: /tmp/fish/implicit/share/completions/tar.fish:63 +#: share/completions/tar.fish:65 msgid "Filter through specified program" -msgstr "" +msgstr "Filtrera genom angivet program" #: /tmp/fish/implicit/share/completions/tar.fish:64 msgid "Filter through xz" @@ -53215,10 +49748,6 @@ msgstr "" msgid "Print the Terraform version" msgstr "" -#: /tmp/fish/implicit/share/completions/test.fish:2 -msgid "Negate expression" -msgstr "" - #: /tmp/fish/implicit/share/completions/test.fish:3 msgid "Logical AND" msgstr "" @@ -53227,70 +49756,6 @@ msgstr "" msgid "Logical OR" msgstr "" -#: /tmp/fish/implicit/share/completions/test.fish:5 -msgid "String length is non-zero" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:6 -msgid "String length is zero" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:7 -msgid "Strings are equal" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:8 -msgid "Strings are not equal" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:9 -msgid "Integers are equal" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:10 -msgid "Left integer larger than or equal to right integer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:11 -msgid "Left integer larger than right integer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:12 -msgid "Left integer less than or equal to right integer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:13 -msgid "Left integer less than right integer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:14 -msgid "Left integer not equal to right integer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:15 -msgid "File is block device" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:16 -msgid "File is character device" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:17 -msgid "File is directory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:18 -msgid "File exists" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:19 -msgid "File is regular" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:20 -msgid "File is set-group-ID" -msgstr "" - #: /tmp/fish/implicit/share/completions/test.fish:21 msgid "File owned by our effective group ID" msgstr "" @@ -53307,14 +49772,6 @@ msgstr "" msgid "File is a named pipe" msgstr "" -#: /tmp/fish/implicit/share/completions/test.fish:25 -msgid "File is readable" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:26 -msgid "File size is non-zero" -msgstr "" - #: /tmp/fish/implicit/share/completions/test.fish:27 msgid "File is a socket" msgstr "" @@ -53323,14 +49780,6 @@ msgstr "" msgid "FD is a terminal" msgstr "" -#: /tmp/fish/implicit/share/completions/test.fish:29 -msgid "File set-user-ID bit is set" -msgstr "" - -#: /tmp/fish/implicit/share/completions/test.fish:30 -msgid "File is writable" -msgstr "" - #: /tmp/fish/implicit/share/completions/tex.fish:3 msgid "Show errors in style file:line" msgstr "" @@ -53378,22 +49827,6 @@ msgstr "" msgid "Execute operation on a local container" msgstr "" -#: /tmp/fish/implicit/share/completions/time.fish:2 -msgid "Specify output format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/time.fish:3 -msgid "Use the portable output format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/time.fish:4 -msgid "Do not send the results to stderr, but overwrite the specified file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/time.fish:5 -msgid "(Used together with -o) Do not overwrite but append" -msgstr "" - #: /tmp/fish/implicit/share/completions/timeout.fish:1 msgid "Run COMMAND in the foreground" msgstr "" @@ -53606,14 +50039,17 @@ msgid "Print as XML" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:1 +#: share/completions/tmux.fish:1 msgid "available sessions" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:2 +#: share/completions/tmux.fish:5 msgid "connected clients" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:3 +#: share/completions/tmux.fish:9 msgid "window panes" msgstr "" @@ -53906,38 +50342,10 @@ msgstr "" msgid "target-pane" msgstr "" -#: /tmp/fish/implicit/share/completions/top.fish:2 -msgid "Toggle command line/program name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/top.fish:5 -msgid "Toggle idle processes" -msgstr "" - #: /tmp/fish/implicit/share/completions/top.fish:6 msgid "Maximum iterations" msgstr "" -#: /tmp/fish/implicit/share/completions/top.fish:7 -msgid "Monitor effective UID" -msgstr "" - -#: /tmp/fish/implicit/share/completions/top.fish:8 -msgid "Monitor user" -msgstr "" - -#: /tmp/fish/implicit/share/completions/top.fish:9 -msgid "Monitor PID" -msgstr "" - -#: /tmp/fish/implicit/share/completions/top.fish:10 -msgid "Secure mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/top.fish:11 -msgid "Cumulative mode" -msgstr "" - #: /tmp/fish/implicit/share/completions/totem.fish:1 msgid "Output a brief synopsis of command options then quit" msgstr "" @@ -53995,10 +50403,12 @@ msgid "Tell any running totem instance: Quit" msgstr "" #: /tmp/fish/implicit/share/completions/totem.fish:15 +#: share/completions/totem.fish:18 msgid "Tell any running totem instance: Add to playlist" msgstr "" #: /tmp/fish/implicit/share/completions/totem.fish:16 +#: share/completions/totem.fish:19 msgid "Tell any running totem instance: Play from playlist" msgstr "" @@ -54306,14 +50716,6 @@ msgstr "" msgid "List the current torrent's connected peers" msgstr "" -#: /tmp/fish/implicit/share/completions/trap.fish:1 -msgid "Display names of all signals" -msgstr "" - -#: /tmp/fish/implicit/share/completions/trap.fish:2 -msgid "Display all currently defined trap handlers" -msgstr "" - #: /tmp/fish/implicit/share/completions/trap.fish:4 msgid "Signal" msgstr "" @@ -54811,10 +51213,6 @@ msgstr "" msgid "hexadecimal characters" msgstr "" -#: /tmp/fish/implicit/share/completions/type.fish:2 -msgid "Print all possible definitions of the specified name" -msgstr "" - #: /tmp/fish/implicit/share/completions/type.fish:3 msgid "Suppress function and builtin lookup" msgstr "" @@ -54823,14 +51221,6 @@ msgstr "" msgid "Print command type" msgstr "" -#: /tmp/fish/implicit/share/completions/type.fish:5 -msgid "Print path to command, or nothing if name is not a command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/type.fish:6 -msgid "Print path to command" -msgstr "" - #: /tmp/fish/implicit/share/completions/type.fish:7 msgid "Suppress output" msgstr "" @@ -54965,95 +51355,10 @@ msgstr "" msgid "Set or get hard limit" msgstr "" -#: /tmp/fish/implicit/share/completions/ulimit.fish:3 -msgid "Set or get all current limits" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ulimit.fish:4 -msgid "Maximum size of core files created" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ulimit.fish:5 -msgid "Maximum size of a process's data segment" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ulimit.fish:6 -msgid "Maximum size of files created by the shell" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ulimit.fish:7 -msgid "Maximum size that may be locked into memory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ulimit.fish:8 -msgid "Maximum resident set size" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ulimit.fish:9 -msgid "Maximum number of open file descriptors" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ulimit.fish:10 -msgid "Maximum stack size" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ulimit.fish:11 -msgid "Maximum amount of cpu time in seconds" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ulimit.fish:12 -msgid "Maximum number of processes available to a single user" -msgstr "" - -#: /tmp/fish/implicit/share/completions/ulimit.fish:13 -msgid "Maximum amount of virtual memory available to the shell" -msgstr "" - #: /tmp/fish/implicit/share/completions/ulimit.fish:15 msgid "New resource limit" msgstr "" -#: /tmp/fish/implicit/share/completions/umount.fish:5 -msgid "Unmount without writing in /etc/mtab" -msgstr "" - -#: /tmp/fish/implicit/share/completions/umount.fish:6 -msgid "In case unmounting fails, try to remount read-only" -msgstr "" - -#: /tmp/fish/implicit/share/completions/umount.fish:7 -msgid "" -"In case the unmounted device was a loop device, also free this loop device" -msgstr "" - -#: /tmp/fish/implicit/share/completions/umount.fish:8 -msgid "Don't call the /sbin/umount. helper even if it exists" -msgstr "" - -#: /tmp/fish/implicit/share/completions/umount.fish:9 -msgid "Unmount all of the file systems described in /etc/mtab" -msgstr "" - -#: /tmp/fish/implicit/share/completions/umount.fish:10 -msgid "Actions should only be taken on file systems of the specified type" -msgstr "" - -#: /tmp/fish/implicit/share/completions/umount.fish:11 -msgid "" -"Actions should only be taken on file systems with the specified options in /" -"etc/fstab" -msgstr "" - -#: /tmp/fish/implicit/share/completions/umount.fish:12 -msgid "Force unmount (in case of an unreachable NFS system)" -msgstr "" - -#: /tmp/fish/implicit/share/completions/umount.fish:13 -msgid "" -"Detach the filesystem from the filesystem hierarchy now, and cleanup all " -"references to the filesystem as soon as it is not busy" -msgstr "" - #: /tmp/fish/implicit/share/completions/uname.fish:1 msgid "Behave as though all of the options mnrsv were specified." msgstr "" @@ -55086,34 +51391,10 @@ msgstr "" msgid "Print all information" msgstr "" -#: /tmp/fish/implicit/share/completions/uname.fish:9 -msgid "Print kernel name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/uname.fish:10 -msgid "Print network node hostname" -msgstr "" - -#: /tmp/fish/implicit/share/completions/uname.fish:11 -msgid "Print kernel release" -msgstr "" - #: /tmp/fish/implicit/share/completions/uname.fish:12 msgid "Print kernel version" msgstr "" -#: /tmp/fish/implicit/share/completions/uname.fish:13 -msgid "Print machine name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/uname.fish:14 -msgid "Print processor" -msgstr "" - -#: /tmp/fish/implicit/share/completions/uname.fish:15 -msgid "Print hardware platform" -msgstr "" - #: /tmp/fish/implicit/share/completions/uname.fish:16 msgid "Print operating system" msgstr "" @@ -55135,38 +51416,47 @@ msgid "use comma separated LIST of tab positions (enables -a)" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:1 +#: share/completions/unrar.fish:5 msgid "Extract files to current directory" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:3 +#: share/completions/unrar.fish:7 msgid "List archive (technical)" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:4 +#: share/completions/unrar.fish:8 msgid "List archive (bare)" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:5 +#: share/completions/unrar.fish:9 msgid "Print file to stdout" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:6 +#: share/completions/unrar.fish:10 msgid "Test archive files" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:7 +#: share/completions/unrar.fish:11 msgid "Verbosely list archive" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:8 +#: share/completions/unrar.fish:12 msgid "Verbosely list archive (technical)" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:9 +#: share/completions/unrar.fish:13 msgid "Verbosely list archive (bare)" msgstr "" #: /tmp/fish/implicit/share/completions/unrar.fish:10 +#: share/completions/unrar.fish:14 msgid "Extract files with full path" msgstr "" @@ -55356,10 +51646,12 @@ msgid "The new SELinux user for the user's login" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:1 +#: share/completions/vagrant.fish:3 msgid "Test if vagrant has yet to be given the main command" msgstr "" #: /tmp/fish/implicit/share/completions/vagrant.fish:2 +#: share/completions/vagrant.fish:23 msgid "Lists all available Vagrant boxes" msgstr "" @@ -55600,62 +51892,18 @@ msgstr "" msgid "Enable only certain provisioners, by type" msgstr "" -#: /tmp/fish/implicit/share/completions/valgrind.fish:1 +#: share/completions/valgrind.fish:12 msgid "Skin" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:3 -msgid "Display help and debug options" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:7 -msgid "Valgrind-ise children" -msgstr "" +msgstr "Verktyg" #: /tmp/fish/implicit/share/completions/valgrind.fish:8 msgid "Track file descriptors" msgstr "" -#: /tmp/fish/implicit/share/completions/valgrind.fish:9 -msgid "Log to file descriptor" -msgstr "" - #: /tmp/fish/implicit/share/completions/valgrind.fish:10 msgid "Log to file" msgstr "" -#: /tmp/fish/implicit/share/completions/valgrind.fish:11 -msgid "Log to socket" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:12 -msgid "Callers in stack trace" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:13 -msgid "Stop showing errors if too many" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:14 -msgid "Continue trace below main()" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:15 -msgid "Supress errors from file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:16 -msgid "Print suppressions for detected errors" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:17 -msgid "Start debugger on error" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:18 -msgid "Debugger command" -msgstr "" - #: /tmp/fish/implicit/share/completions/valgrind.fish:19 msgid "File descriptor for input" msgstr "" @@ -55665,22 +51913,6 @@ msgstr "" msgid "Check for memory leaks" msgstr "" -#: /tmp/fish/implicit/share/completions/valgrind.fish:21 -#: /tmp/fish/implicit/share/completions/valgrind.fish:27 -msgid "Show reachable leaked memory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:22 -msgid "" -"Determines how willing Memcheck is to consider different backtraces to be " -"the same" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:23 -#: /tmp/fish/implicit/share/completions/valgrind.fish:29 -msgid "Set size of freed memory pool" -msgstr "" - #: /tmp/fish/implicit/share/completions/valgrind.fish:24 #: /tmp/fish/implicit/share/completions/valgrind.fish:30 msgid "How to handle loads of words that are partially addressible" @@ -55691,47 +51923,25 @@ msgstr "" msgid "Whether to skip error reporting for the strlen function" msgstr "" -#: /tmp/fish/implicit/share/completions/valgrind.fish:28 -msgid "" -"Determines how willing Addrcheck is to consider different backtraces to be " -"the same" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:32 -msgid "Type of L1 instruction cache" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:33 -msgid "Type of L1 data cache" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:34 -msgid "Type of L2 cache" -msgstr "" - -#: /tmp/fish/implicit/share/completions/valgrind.fish:35 -msgid "Specify a function that allocates memory" -msgstr "" - #: /tmp/fish/implicit/share/completions/valgrind.fish:36 msgid "Profile heap usage" msgstr "" -#: /tmp/fish/implicit/share/completions/valgrind.fish:37 +#: share/completions/valgrind.fish:78 msgid "The number of bytes of heap overhead per allocation" -msgstr "" +msgstr "Antalet bytes av extra heap-utrymme som används per allokering" -#: /tmp/fish/implicit/share/completions/valgrind.fish:38 +#: share/completions/valgrind.fish:79 msgid "Profile stack usage" -msgstr "" +msgstr "Profilera stackanvändning" -#: /tmp/fish/implicit/share/completions/valgrind.fish:39 +#: share/completions/valgrind.fish:80 msgid "Depth of call chain" -msgstr "" +msgstr "Djup i anroppskedjan" -#: /tmp/fish/implicit/share/completions/valgrind.fish:40 +#: share/completions/valgrind.fish:81 msgid "Profiling output format" -msgstr "" +msgstr "Utdataformat för profilering" #: /tmp/fish/implicit/share/completions/VBoxHeadless.fish:1 msgid "Start given VM" @@ -55905,31 +52115,39 @@ msgid "Deny usage of VT-x/AMD-V" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:1 +#: share/functions/__fish_complete_vi.fish:91 msgid "Suppress all interactive user feedback" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:2 #: /tmp/fish/implicit/share/completions/vi.fish:9 +#: share/functions/__fish_complete_vi.fish:92 +#: share/functions/__fish_complete_vi.fish:99 msgid "Encrypt/decrypt text" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:3 +#: share/functions/__fish_complete_vi.fish:93 msgid "Set up for editing LISP programs" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:4 +#: share/functions/__fish_complete_vi.fish:94 msgid "List saved file names after crash" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:5 +#: share/functions/__fish_complete_vi.fish:95 msgid "Read-only mode" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:6 +#: share/functions/__fish_complete_vi.fish:96 msgid "Use linear search for tags if tag file not sorted" msgstr "" #: /tmp/fish/implicit/share/completions/vi.fish:7 +#: share/functions/__fish_complete_vi.fish:97 msgid "Start in display editing state" msgstr "" @@ -55946,6 +52164,7 @@ msgid "Begin editing by executing the specified editor command" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:1 +#: share/completions/vim-addons.fish:8 msgid "Test if vim-addons has yet to be given the subcommand" msgstr "" @@ -56082,73 +52301,92 @@ msgid "Record all typed characters (overwrite file)" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:18 +#: share/functions/__fish_complete_vi.fish:37 msgid "Start in Arabic mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:19 +#: share/functions/__fish_complete_vi.fish:38 msgid "Start in binary mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:20 +#: share/functions/__fish_complete_vi.fish:39 msgid "Behave mostly like vi" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:21 +#: share/functions/__fish_complete_vi.fish:40 msgid "Start in diff mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:22 +#: share/functions/__fish_complete_vi.fish:41 msgid "Debugging mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:23 +#: share/functions/__fish_complete_vi.fish:42 msgid "Start in Ex mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:24 +#: share/functions/__fish_complete_vi.fish:43 msgid "Start in improved Ex mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:25 #: /tmp/fish/implicit/share/completions/vim.fish:46 +#: share/functions/__fish_complete_vi.fish:44 +#: share/functions/__fish_complete_vi.fish:67 msgid "Start in foreground mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:26 +#: share/functions/__fish_complete_vi.fish:45 msgid "Start in Farsi mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:27 +#: share/functions/__fish_complete_vi.fish:46 msgid "Start in GUI mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:28 #: /tmp/fish/implicit/share/completions/vim.fish:48 +#: share/functions/__fish_complete_vi.fish:47 +#: share/functions/__fish_complete_vi.fish:69 msgid "Print help message and exit" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:29 +#: share/functions/__fish_complete_vi.fish:48 msgid "Start in Hebrew mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:30 #: /tmp/fish/implicit/share/completions/vim.fish:37 +#: share/functions/__fish_complete_vi.fish:49 msgid "List swap files" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:31 +#: share/functions/__fish_complete_vi.fish:50 msgid "Start in lisp mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:32 +#: share/functions/__fish_complete_vi.fish:51 msgid "Disable file modification" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:33 +#: share/functions/__fish_complete_vi.fish:52 msgid "Disallow file modification" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:34 +#: share/functions/__fish_complete_vi.fish:53 msgid "Reset compatibility mode" msgstr "" @@ -56181,26 +52419,32 @@ msgid "Don't connect to X server" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:43 +#: share/functions/__fish_complete_vi.fish:62 msgid "Start in easy mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:44 +#: share/functions/__fish_complete_vi.fish:63 msgid "Start in restricted mode" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:45 +#: share/functions/__fish_complete_vi.fish:65 msgid "Become an editor server for NetBeans" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:47 +#: share/functions/__fish_complete_vi.fish:68 msgid "Echo the Window ID on stdout (GTK GUI only)" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:49 +#: share/functions/__fish_complete_vi.fish:70 msgid "Do not expand wildcards" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:50 +#: share/functions/__fish_complete_vi.fish:71 msgid "Skip loading plugins" msgstr "" @@ -56208,26 +52452,35 @@ msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:54 #: /tmp/fish/implicit/share/completions/vim.fish:55 #: /tmp/fish/implicit/share/completions/vim.fish:56 +#: share/functions/__fish_complete_vi.fish:72 +#: share/functions/__fish_complete_vi.fish:75 +#: share/functions/__fish_complete_vi.fish:76 +#: share/functions/__fish_complete_vi.fish:77 msgid "Edit files on Vim server" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:52 +#: share/functions/__fish_complete_vi.fish:73 msgid "Evaluate expr on Vim server" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:53 +#: share/functions/__fish_complete_vi.fish:74 msgid "Send keys to Vim server" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:57 +#: share/functions/__fish_complete_vi.fish:78 msgid "List all Vim servers that can be found" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:58 +#: share/functions/__fish_complete_vi.fish:79 msgid "Set server name" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:59 +#: share/functions/__fish_complete_vi.fish:80 msgid "Print version information and exit" msgstr "" @@ -56236,10 +52489,12 @@ msgid "Run gvim in another window (GTK GUI only)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:1 +#: share/completions/wajig.fish:1 msgid "Test if wajig has yet to be given the subcommand" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:2 +#: share/completions/wajig.fish:10 msgid "Test if wajig command should have packages as potential completion" msgstr "" @@ -56366,6 +52621,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:34 #: /tmp/fish/implicit/share/completions/wajig.fish:115 +#: share/completions/wajig.fish:131 msgid "Search for an unofficial Debian package at apt-get.org" msgstr "" @@ -56395,6 +52651,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:41 #: /tmp/fish/implicit/share/completions/wajig.fish:90 +#: share/completions/wajig.fish:106 msgid "Initialise or reset the JIG archive files" msgstr "" @@ -56404,6 +52661,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:43 #: /tmp/fish/implicit/share/completions/wajig.fish:82 +#: share/completions/wajig.fish:98 msgid "Install package and associated recommended packages" msgstr "" @@ -56413,6 +52671,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:45 #: /tmp/fish/implicit/share/completions/wajig.fish:111 +#: share/completions/wajig.fish:127 msgid "Install package and associated suggested packages" msgstr "" @@ -56527,6 +52786,7 @@ msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:75 #: /tmp/fish/implicit/share/completions/wajig.fish:89 +#: share/completions/wajig.fish:105 msgid "Generate a .deb file for an installed package" msgstr "" @@ -56551,148 +52811,184 @@ msgid "Display the package's README file from /usr/share/doc" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:81 +#: share/completions/wajig.fish:97 msgid "Download package and any packages it depends on" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:83 +#: share/completions/wajig.fish:99 msgid "Reconfigure the named installed packages or run gkdebconf" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:84 +#: share/completions/wajig.fish:100 msgid "Reinstall each of the named packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:85 +#: share/completions/wajig.fish:101 msgid "Reload daemon configs, e.g., gdm, apache (see list-daemons)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:86 +#: share/completions/wajig.fish:102 msgid "Remove one or more packages (see also purge)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:87 +#: share/completions/wajig.fish:103 msgid "Remove package and its dependees not required by others" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:88 +#: share/completions/wajig.fish:104 msgid "Remove orphaned libraries (not required by installed packages)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:91 +#: share/completions/wajig.fish:107 msgid "Stop then start a daemon, e.g., gdm, apache (see list-daemons)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:92 +#: share/completions/wajig.fish:108 msgid "Install a RedHat .rpm package" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:93 +#: share/completions/wajig.fish:109 msgid "Convert a RedHat .rpm file to a Debian .deb file" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:94 +#: share/completions/wajig.fish:110 msgid "Search for packages containing listed words" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:95 +#: share/completions/wajig.fish:111 msgid "Find local Debian archives suitable for sources.list" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:96 +#: share/completions/wajig.fish:112 msgid "Configure the sources.list file which locates Debian archives" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:97 +#: share/completions/wajig.fish:113 msgid "Provide a detailed description of package [same as detail]" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:98 +#: share/completions/wajig.fish:114 msgid "Trace the steps that a dist-upgrade would perform" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:99 +#: share/completions/wajig.fish:115 msgid "Trace the steps that an install would perform" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:100 +#: share/completions/wajig.fish:116 msgid "Trace the steps that a remove would perform" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:101 +#: share/completions/wajig.fish:117 msgid "Trace the steps that an upgrade would perform" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:102 #: /tmp/fish/implicit/share/completions/wajig.fish:103 +#: share/completions/wajig.fish:118 share/completions/wajig.fish:119 msgid "Print out the size (in K) of all, or listed, installed packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:104 +#: share/completions/wajig.fish:120 msgid "Generates list of package=version for all installed packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:105 +#: share/completions/wajig.fish:121 msgid "Retrieve and unpack sources for the named packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:106 +#: share/completions/wajig.fish:122 msgid "Start a daemon, e.g., gdm, apache (see list-daemons)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:107 +#: share/completions/wajig.fish:123 msgid "Show the version and available version of packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:108 #: /tmp/fish/implicit/share/completions/wajig.fish:109 +#: share/completions/wajig.fish:124 share/completions/wajig.fish:125 msgid "Show the version and available version of matching packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:110 +#: share/completions/wajig.fish:126 msgid "Stop a daemon, e.g., gdm, apache (see list-daemons)" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:112 +#: share/completions/wajig.fish:128 msgid "Run the Gnome task selector to install groups of packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:113 +#: share/completions/wajig.fish:129 msgid "List packages with newer versions available for upgrading" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:114 +#: share/completions/wajig.fish:130 msgid "Remove listed packages from hold so they are again upgraded" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:116 +#: share/completions/wajig.fish:132 msgid "Update the list of down-loadable packages" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:117 +#: share/completions/wajig.fish:133 msgid "Update default alternative for things like x-window-manager" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:118 +#: share/completions/wajig.fish:134 msgid "Updates the local list of PCI ids from the internet master list" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:119 +#: share/completions/wajig.fish:135 msgid "Updates the local list of USB ids from the internet master list" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:120 +#: share/completions/wajig.fish:136 msgid "Upgrade all of the installed packages or just those listed" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:121 +#: share/completions/wajig.fish:137 msgid "List version and distribution of (all) packages." msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:122 +#: share/completions/wajig.fish:138 msgid "A synonym for describe" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:123 +#: share/completions/wajig.fish:139 msgid "Find the package that supplies the given command or file" msgstr "" @@ -56733,22 +53029,6 @@ msgstr "" msgid "Pass command to exec instead of \"sh -c\"" msgstr "" -#: /tmp/fish/implicit/share/completions/wc.fish:1 -msgid "Print byte counts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wc.fish:2 -msgid "Print character counts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wc.fish:3 -msgid "Print newline counts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wc.fish:4 -msgid "Print length of longest line" -msgstr "" - #: /tmp/fish/implicit/share/completions/wc.fish:5 msgid "Print word counts" msgstr "" @@ -56875,242 +53155,14 @@ msgstr "" msgid "Sets the number of turns for the chosen scenario" msgstr "" -#: /tmp/fish/implicit/share/completions/w.fish:1 -msgid "Dont print header" -msgstr "" - -#: /tmp/fish/implicit/share/completions/w.fish:2 -msgid "Ignore username for time calculations" -msgstr "" - -#: /tmp/fish/implicit/share/completions/w.fish:3 -msgid "Short format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/w.fish:4 -msgid "Toggle printing of remote hostname" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:3 -msgid "Go to background immediately after startup" -msgstr "" - #: /tmp/fish/implicit/share/completions/wget.fish:4 msgid "Execute command as if part of .wgetrc" msgstr "" -#: /tmp/fish/implicit/share/completions/wget.fish:5 -msgid "Log all messages to logfile" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:6 -msgid "Append all messages to logfile" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:7 -msgid "Turn on debug output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:10 -#: /tmp/fish/implicit/share/completions/wget.fish:11 -msgid "Turn off verbose without being completely quiet" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:12 -msgid "Read URLs from file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:13 -msgid "Force input to be treated as HTML" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:14 -msgid "Prepend string to relative links" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:15 -msgid "Bind address on local machine" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:16 -msgid "Set number of retries to number" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:17 -msgid "Concatenate output to file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:18 -#: /tmp/fish/implicit/share/completions/wget.fish:19 -msgid "Never overwrite files with same name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:20 -msgid "Continue getting a partially-downloaded file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:21 -msgid "Select progress meter type" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:22 -msgid "Turn on time-stamping" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:23 -msgid "Print the headers/responses sent by servers" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:24 -msgid "Do not download the pages, just check that they are there" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:25 -msgid "Set the network timeout" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:26 -msgid "Set the DNS lookup timeout" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:27 -msgid "Set the connect timeout" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:28 -msgid "Set the read (and write) timeout" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:29 -msgid "Limit the download speed" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:30 -msgid "Wait the specified number of seconds between the retrievals" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:31 -msgid "Wait time between retries" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:32 -msgid "Wait random amount of time between retrievals" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:33 -msgid "Toggle proxy support" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:34 -msgid "Specify download quota for automatic retrievals" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:35 -msgid "Turn off caching of DNS lookups" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:36 -msgid "" -"Change which characters found in remote URLs may show up in local file names" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:37 -#: /tmp/fish/implicit/share/completions/wget.fish:38 -msgid "Do not create a hierarchy of directories" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:39 -msgid "Force creation of a hierarchy of directories" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:40 -#: /tmp/fish/implicit/share/completions/wget.fish:41 -msgid "Disable generation of host-prefixed directories" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:42 -msgid "Use the protocol name as a directory component" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:43 -msgid "Ignore specified number of directory components" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:44 -msgid "Set directory prefix" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:45 -msgid "Force html files to have html extension" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:46 -msgid "Specify the http username" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:47 -msgid "Specify the http password" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:48 -msgid "Disable server-side cache" -msgstr "" - #: /tmp/fish/implicit/share/completions/wget.fish:49 msgid "Disable the use of cookies" msgstr "" -#: /tmp/fish/implicit/share/completions/wget.fish:50 -msgid "Load cookies from file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:51 -msgid "Save cookies to file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:52 -msgid "Save session cookies" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:53 -msgid "Ignore 'Content-Length' header" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:54 -msgid "Define an additional-header to be passed to the HTTP servers" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:55 -msgid "Specify the proxy username" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:56 -msgid "Specify the proxy password" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:57 -msgid "Set referer URL" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:58 -msgid "Save the headers sent by the HTTP server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:59 -msgid "Identify as agent-string" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:60 -#: /tmp/fish/implicit/share/completions/wget.fish:61 -msgid "" -"Use POST as the method for all HTTP requests and send the specified data in " -"the request body" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:62 -msgid "Turn off keep-alive for http downloads" -msgstr "" - #: /tmp/fish/implicit/share/completions/wget.fish:63 msgid "Choose secure protocol" msgstr "" @@ -57167,218 +53219,19 @@ msgstr "" msgid "Path of HSTS database" msgstr "" -#: /tmp/fish/implicit/share/completions/wget.fish:77 -msgid "Don't remove the temporary .listing files generated" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:78 -msgid "Turn off FTP globbing" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:79 -msgid "Use the passive FTP retrieval scheme" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:80 -msgid "Traverse symlinks and retrieve pointed-to files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:81 -msgid "Turn on recursive retrieving" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:82 -msgid "Specify recursion maximum depth" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:83 -msgid "Delete every single file downloaded" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:84 -msgid "" -"Convert the links in the document to make them suitable for local viewing" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:85 -msgid "Back up the original version" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:86 -msgid "Turn on options suitable for mirroring" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:87 -msgid "" -"Download all the files that are necessary to properly display a given HTML " -"page" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:88 -msgid "Turn on strict parsing of HTML comments" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:89 -msgid "Comma-separated lists of file name suffixes or patterns to accept" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:90 -msgid "Comma-separated lists of file name suffixes or patterns to reject" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:91 -msgid "Set domains to be followed" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:92 -msgid "Specify the domains that are not to be followed" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:93 -msgid "Follow FTP links from HTML documents" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:94 -msgid "HTML tags to follow" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:95 -msgid "HTML tags to ignore" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:96 -msgid "Enable spanning across hosts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:97 -msgid "Follow relative links only" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:98 -msgid "Specify a comma-separated list of directories you wish to follow" -msgstr "" - -#: /tmp/fish/implicit/share/completions/wget.fish:99 -msgid "Specify a comma-separated list of directories you wish to exclude" -msgstr "" - #: /tmp/fish/implicit/share/completions/wget.fish:100 #: /tmp/fish/implicit/share/completions/wget.fish:101 msgid "Do not ever ascend to the parent directory" msgstr "" -#: /tmp/fish/implicit/share/completions/which.fish:1 -#: /tmp/fish/implicit/share/completions/which.fish:13 -msgid "Print all matching executables in PATH, not just the first" -msgstr "" - -#: /tmp/fish/implicit/share/completions/which.fish:2 -msgid "Read aliases from stdin, reporting matching ones on stdout" -msgstr "" - -#: /tmp/fish/implicit/share/completions/which.fish:3 -msgid "Ignore option '--read-alias'" -msgstr "" - -#: /tmp/fish/implicit/share/completions/which.fish:4 -msgid "" -"Read shell function definitions from stdin, reporting matching ones on stdout" -msgstr "" - -#: /tmp/fish/implicit/share/completions/which.fish:5 -msgid "Ignore option '--read-functions'" -msgstr "" - -#: /tmp/fish/implicit/share/completions/which.fish:6 -msgid "Skip directories in PATH that start with a dot" -msgstr "" - -#: /tmp/fish/implicit/share/completions/which.fish:7 -msgid "" -"Skip directories in PATH that start with a tilde and executables which " -"reside in the HOME directory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/which.fish:8 -msgid "" -"If a directory in PATH starts with a dot and a matching executable was found " -"for that path, then print './programname'" -msgstr "" - -#: /tmp/fish/implicit/share/completions/which.fish:9 -msgid "Output a tilde when a directory matches the HOME directory" -msgstr "" - -#: /tmp/fish/implicit/share/completions/which.fish:10 -msgid "Stop processing options on the right if not on tty" -msgstr "" - #: /tmp/fish/implicit/share/completions/which.fish:14 msgid "Print no output, only return 0 if found" msgstr "" -#: /tmp/fish/implicit/share/completions/who.fish:1 -msgid "Same as -b -d --login -p -r -t -T -u" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:2 -msgid "Print time of last boot" -msgstr "" - #: /tmp/fish/implicit/share/completions/who.fish:3 msgid "Print dead processes" msgstr "" -#: /tmp/fish/implicit/share/completions/who.fish:4 -msgid "Print line of headings" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:5 -msgid "Print idle time" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:6 -msgid "Print login process" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:7 -msgid "Canonicalize hostnames via DNS" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:8 -msgid "Print hostname and user for stdin" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:9 -msgid "Print active processes spawned by init" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:10 -msgid "Print all login names and number of users logged on" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:11 -msgid "Print current runlevel" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:12 -msgid "Print name, line, and time" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:13 -msgid "Print last system clock change" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:14 -#: /tmp/fish/implicit/share/completions/who.fish:15 -#: /tmp/fish/implicit/share/completions/who.fish:16 -msgid "Print users message status as +, - or ?" -msgstr "" - -#: /tmp/fish/implicit/share/completions/who.fish:17 -msgid "List users logged in" -msgstr "" - #: /tmp/fish/implicit/share/completions/wicd-client.fish:1 #: /tmp/fish/implicit/share/completions/wicd-gtk.fish:1 msgid "Run the wicd tray icon only." @@ -57461,150 +53314,187 @@ msgid "Set the network" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:1 +#: share/completions/wpa_cli.fish:3 msgid "get current WPA/EAPOL/EAP status" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:2 +#: share/completions/wpa_cli.fish:4 msgid "get MIB variables (dot1x, dot11)" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:3 +#: share/completions/wpa_cli.fish:5 msgid "show this usage help" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:4 +#: share/completions/wpa_cli.fish:6 msgid "show interfaces/select interface" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:5 +#: share/completions/wpa_cli.fish:7 msgid "change debug level" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:6 +#: share/completions/wpa_cli.fish:8 msgid "show full wpa_cli license" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:7 +#: share/completions/wpa_cli.fish:9 msgid "IEEE 802.1X EAPOL state machine logoff" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:8 +#: share/completions/wpa_cli.fish:10 msgid "IEEE 802.1X EAPOL state machine logon" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:9 +#: share/completions/wpa_cli.fish:11 msgid "set/list variables" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:10 +#: share/completions/wpa_cli.fish:12 msgid "show PMKSA cache" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:11 +#: share/completions/wpa_cli.fish:13 msgid "force reassociation" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:12 +#: share/completions/wpa_cli.fish:14 msgid "force wpa_supplicant to re-read its config file" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:13 +#: share/completions/wpa_cli.fish:15 msgid "force preauthentication" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:14 +#: share/completions/wpa_cli.fish:16 msgid "configure identity for an SSID" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:15 +#: share/completions/wpa_cli.fish:17 msgid "configure password for an SSID" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:16 +#: share/completions/wpa_cli.fish:18 msgid "change password for an SSID" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:17 +#: share/completions/wpa_cli.fish:19 msgid "configure pin for an SSID" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:18 +#: share/completions/wpa_cli.fish:20 msgid "configure one-time-password for an SSID" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:19 +#: share/completions/wpa_cli.fish:21 msgid "configure private key passphrase for an SSID" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:20 +#: share/completions/wpa_cli.fish:22 msgid "set preferred BSSID for an SSID" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:21 +#: share/completions/wpa_cli.fish:23 msgid "list configured networks" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:22 +#: share/completions/wpa_cli.fish:24 msgid "select a network (disable others)" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:23 +#: share/completions/wpa_cli.fish:25 msgid "enable a network" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:24 +#: share/completions/wpa_cli.fish:26 msgid "disable a network" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:25 +#: share/completions/wpa_cli.fish:27 msgid "add a network" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:26 +#: share/completions/wpa_cli.fish:28 msgid "remove a network" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:27 +#: share/completions/wpa_cli.fish:29 msgid "set/list network variables" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:28 +#: share/completions/wpa_cli.fish:30 msgid "get network variables" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:29 +#: share/completions/wpa_cli.fish:31 msgid "save the current configuration" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:30 +#: share/completions/wpa_cli.fish:32 msgid "disconnect and wait for reassociate command before connecting" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:31 +#: share/completions/wpa_cli.fish:33 msgid "request new BSS scan" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:32 +#: share/completions/wpa_cli.fish:34 msgid "get latest scan results" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:33 +#: share/completions/wpa_cli.fish:35 msgid "get capabilies" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:34 +#: share/completions/wpa_cli.fish:36 msgid "request STAKey negotiation with " msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:35 +#: share/completions/wpa_cli.fish:37 msgid "set ap_scan parameter" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:36 +#: share/completions/wpa_cli.fish:38 msgid "request STK negotiation with " msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:37 +#: share/completions/wpa_cli.fish:39 msgid "terminate wpa_supplicant" msgstr "" @@ -57624,59 +53514,6 @@ msgstr "" msgid "Don't output debug information" msgstr "" -#: /tmp/fish/implicit/share/completions/xargs.fish:1 -msgid "" -"Input filenames are terminated by a null character instead of by whitespace, " -"and the quotes and backslash are not special" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xargs.fish:2 -#: /tmp/fish/implicit/share/completions/xargs.fish:3 -msgid "Set the end of file string to eof-str" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xargs.fish:5 -#: /tmp/fish/implicit/share/completions/xargs.fish:6 -msgid "" -"Replace replace-str in the initial arguments with names from standard input" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xargs.fish:7 -#: /tmp/fish/implicit/share/completions/xargs.fish:8 -msgid "Use at most max-lines nonblank input lines per command line" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xargs.fish:9 -msgid "Use at most max-args arguments per command line" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xargs.fish:10 -msgid "" -"Prompt the user about whether to run each command line and read a line from " -"the terminal" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xargs.fish:11 -msgid "" -"If the standard input does not contain any nonblanks, do not run the command" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xargs.fish:12 -msgid "Use at most max-chars characters per command line" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xargs.fish:13 -msgid "Print the command line on the standard error output before executing it" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xargs.fish:15 -msgid "Exit if the size is exceeded" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xargs.fish:16 -msgid "Run up to max-procs processes at a time" -msgstr "" - #: /tmp/fish/implicit/share/completions/xdg-mime.fish:1 msgid "Query information" msgstr "" @@ -58031,66 +53868,26 @@ msgstr "" msgid "Print copyright and version information" msgstr "" -#: /tmp/fish/implicit/share/completions/xprop.fish:2 -msgid "Display grammar and exit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xprop.fish:3 +#: share/completions/xprop.fish:4 msgid "Select window by id" -msgstr "" +msgstr "Välj fönster via id" -#: /tmp/fish/implicit/share/completions/xprop.fish:4 -msgid "Select window by name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xprop.fish:5 +#: share/completions/xprop.fish:6 msgid "Display font properties" -msgstr "" +msgstr "Visa fontegenskaper" -#: /tmp/fish/implicit/share/completions/xprop.fish:6 -msgid "Select root window" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xprop.fish:7 -msgid "Specify X server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xprop.fish:8 +#: share/completions/xprop.fish:9 msgid "Maximum display length" -msgstr "" +msgstr "Maximal displaylängd" -#: /tmp/fish/implicit/share/completions/xprop.fish:9 -msgid "Do not show property type" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xprop.fish:10 +#: share/completions/xprop.fish:11 msgid "Set format file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xprop.fish:11 -msgid "Select a window by clicking on its frame" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xprop.fish:12 -msgid "Remove property" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xprop.fish:13 -msgid "Set property" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xprop.fish:14 -msgid "Examine property updates forever" -msgstr "" +msgstr "Välj formatfil" #: /tmp/fish/implicit/share/completions/xprop.fish:15 msgid "Set format" msgstr "" -#: /tmp/fish/implicit/share/completions/xrandr.fish:2 -msgid "Make no changes" -msgstr "" - #: /tmp/fish/implicit/share/completions/xrandr.fish:3 msgid "Apply modifications without grabbing the screen" msgstr "" @@ -58337,69 +54134,13 @@ msgstr "" msgid "don't warn about duplicates" msgstr "" -#: /tmp/fish/implicit/share/completions/xsel.fish:1 -msgid "Append input to selection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:2 -msgid "Append to selection as input grows" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:3 -msgid "Read into selection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:4 -msgid "Write selection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:5 -msgid "Clear selection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:6 -msgid "Delete selection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:7 -msgid "Use primary selection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:8 -msgid "Use secondary selection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:9 -msgid "Use clipboard selection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:10 -msgid "Make current selections persistent after program exit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:11 -msgid "Exchange primary and secondary selections" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:12 +#: share/completions/xsel.fish:12 msgid "X server display" -msgstr "" +msgstr "X-serverdisplay" -#: /tmp/fish/implicit/share/completions/xsel.fish:13 -msgid "Timeout for retrieving selection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:14 +#: share/completions/xsel.fish:14 msgid "Error log" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:15 -msgid "Do not detach from the controlling terminal" -msgstr "" - -#: /tmp/fish/implicit/share/completions/xsel.fish:17 -msgid "Print informative messages" -msgstr "" +msgstr "Fellogg" #: /tmp/fish/implicit/share/completions/xterm.fish:1 msgid "Never highlight the text cursor" @@ -58782,106 +54523,132 @@ msgid "Use as input/output channel for an existing program" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:96 +#: share/completions/xterm.fish:101 msgid "Run program in xterm" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:97 +#: share/completions/xterm.fish:103 msgid "Blinking cursor will be off for that many milliseconds" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:98 +#: share/completions/xterm.fish:104 msgid "Blinking cursor will be on for that many milliseconds" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:99 +#: share/completions/xterm.fish:105 msgid "Override xterm resource class" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:100 +#: share/completions/xterm.fish:106 msgid "Color for the text cursor" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:101 +#: share/completions/xterm.fish:107 msgid "xterm encoding" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:102 +#: share/completions/xterm.fish:108 msgid "Bold font" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:103 +#: share/completions/xterm.fish:109 msgid "FreeType font pattern" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:104 +#: share/completions/xterm.fish:110 msgid "FreeType double-width font pattern" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:105 +#: share/completions/xterm.fish:111 msgid "Font for active icons" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:106 +#: share/completions/xterm.fish:112 msgid "Font size for FreeType font" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:107 +#: share/completions/xterm.fish:113 msgid "Font for displaying wide text" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:108 +#: share/completions/xterm.fish:114 msgid "Font for displaying bold wide text" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:109 +#: share/completions/xterm.fish:115 msgid "Font for the preedit string in \"OverTheSpot\"" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:110 +#: share/completions/xterm.fish:116 msgid "Color for highlighted text" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:111 +#: share/completions/xterm.fish:117 msgid "Embed xterm into window" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:112 +#: share/completions/xterm.fish:118 msgid "Set keyboard type" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:113 +#: share/completions/xterm.fish:119 msgid "File name for the encoding converter" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:114 +#: share/completions/xterm.fish:120 msgid "Log filename" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:115 +#: share/completions/xterm.fish:121 msgid "Maximum time in milliseconds between multi-click selections" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:116 +#: share/completions/xterm.fish:122 msgid "Color for the pointer cursor" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:117 +#: share/completions/xterm.fish:123 msgid "Distance from the right end for ringing the margin bell" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:118 +#: share/completions/xterm.fish:124 msgid "Number of scrolled off lines" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:119 +#: share/completions/xterm.fish:125 msgid "Terminal identification" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:121 +#: share/completions/xterm.fish:127 msgid "zIconBeep percentage" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:122 +#: share/completions/xterm.fish:129 msgid "Size of the inner border" msgstr "" @@ -59313,30 +55080,6 @@ msgstr "" msgid "Generate rss changelog" msgstr "" -#: /tmp/fish/implicit/share/completions/yum.fish:14 -msgid "Set debug level" -msgstr "" - -#: /tmp/fish/implicit/share/completions/yum.fish:15 -msgid "Set error level" -msgstr "" - -#: /tmp/fish/implicit/share/completions/yum.fish:16 -msgid "Be tolerant of errors in commandline" -msgstr "" - -#: /tmp/fish/implicit/share/completions/yum.fish:17 -msgid "Set maximum delay between commands" -msgstr "" - -#: /tmp/fish/implicit/share/completions/yum.fish:18 -msgid "Run commands from cache" -msgstr "" - -#: /tmp/fish/implicit/share/completions/yum.fish:20 -msgid "Specify installroot" -msgstr "" - #: /tmp/fish/implicit/share/completions/yum.fish:21 msgid "Enable repository" msgstr "" @@ -59345,18 +55088,6 @@ msgstr "" msgid "Disable repository" msgstr "" -#: /tmp/fish/implicit/share/completions/yum.fish:23 -msgid "Enables obsolets processing logic" -msgstr "" - -#: /tmp/fish/implicit/share/completions/yum.fish:24 -msgid "Output rss-data to file" -msgstr "" - -#: /tmp/fish/implicit/share/completions/yum.fish:25 -msgid "Exclude specified package from updates" -msgstr "" - #: /tmp/fish/implicit/share/completions/yum.fish:26 msgid "List all packages" msgstr "" @@ -59378,14 +55109,17 @@ msgid "List packages that are obsoleted by packages in repositories" msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:32 +#: share/completions/yum.fish:53 msgid "Delete cached package files" msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:33 +#: share/completions/yum.fish:54 msgid "Delete cached header files" msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:34 +#: share/completions/yum.fish:55 msgid "Delete all cache contents" msgstr "" @@ -59987,109 +55721,21 @@ msgstr "" msgid "Pool which program will be executed on" msgstr "" -#: /tmp/fish/implicit/share/completions/zip.fish:1 -msgid "Freshen: only changed files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:2 -msgid "Delete entries in zipfile" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:3 -msgid "Update: only changed or newer files" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:4 -msgid "Move into zipfile (delete files)" -msgstr "" - #: /tmp/fish/implicit/share/completions/zip.fish:6 msgid "Do not store directory names" msgstr "" -#: /tmp/fish/implicit/share/completions/zip.fish:7 -msgid "Do not compress at all" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:8 -msgid "Convert LF to CR LF" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:9 -msgid "Convert CR LF to LF" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:10 -msgid "Compress faster" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:11 -msgid "Compress better" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:14 -msgid "Add one-line comments" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:15 -msgid "Add zipfile comments" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:16 -msgid "Read names from stdin" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:17 -msgid "Make zipfile as old as the latest entry" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:18 +#: share/completions/zip.fish:19 msgid "Exclude the following names" -msgstr "" +msgstr "Exkludera följande namn" -#: /tmp/fish/implicit/share/completions/zip.fish:19 +#: share/completions/zip.fish:20 msgid "Include only the following names" -msgstr "" +msgstr "Inkludera bara följande namn" -#: /tmp/fish/implicit/share/completions/zip.fish:20 -msgid "Fix zipfile" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:21 -msgid "Fix zipfile (try harder)" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:22 -msgid "Adjust offsets to suit self-extracting exe" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:23 -msgid "Strip prepended data" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:24 -msgid "Test zipfile integrity" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:25 -msgid "Exclude extra file attributes" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:26 -msgid "Store symbolic links as links" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:27 -msgid "PKZIP recursion" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:28 -msgid "Encrypt" -msgstr "" - -#: /tmp/fish/implicit/share/completions/zip.fish:29 +#: share/completions/zip.fish:30 msgid "Don't compress files with these suffixes" -msgstr "" +msgstr "Komprimera inte filer med dessa ändelser" #: /tmp/fish/implicit/share/completions/zpool.fish:1 msgid "" @@ -60559,162 +56205,202 @@ msgid "Repo" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:5 +#: share/completions/zypper.fish:31 msgid "Accept multiple commands at once" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:6 +#: share/completions/zypper.fish:32 msgid "List all defined repositories" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:7 +#: share/completions/zypper.fish:33 msgid "Add a new repository" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:8 +#: share/completions/zypper.fish:34 msgid "Remove specified repository" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:9 +#: share/completions/zypper.fish:35 msgid "Rename specified repository" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:10 +#: share/completions/zypper.fish:36 msgid "Modify specified repository" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:11 +#: share/completions/zypper.fish:37 msgid "Refresh all repositories" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:12 +#: share/completions/zypper.fish:38 msgid "Clean local caches" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:13 +#: share/completions/zypper.fish:39 msgid "List all defined services" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:14 +#: share/completions/zypper.fish:40 msgid "Add a new service" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:15 +#: share/completions/zypper.fish:41 msgid "Modify specified service" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:16 +#: share/completions/zypper.fish:42 msgid "Remove specified service" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:17 +#: share/completions/zypper.fish:43 msgid "Refresh all services" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:20 +#: share/completions/zypper.fish:46 msgid "Verify integrity of package dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:21 +#: share/completions/zypper.fish:47 msgid "Install source packages and their build dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:22 +#: share/completions/zypper.fish:48 msgid "Install newly added packages recommended by installed packages" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:23 +#: share/completions/zypper.fish:49 msgid "Update installed packages with newer versions" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:24 +#: share/completions/zypper.fish:50 msgid "List available updates" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:25 +#: share/completions/zypper.fish:51 msgid "Install needed patches" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:26 +#: share/completions/zypper.fish:52 msgid "List needed patches" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:27 +#: share/completions/zypper.fish:53 msgid "Perform a distribution upgrade" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:28 +#: share/completions/zypper.fish:54 msgid "Check for patches" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:29 +#: share/completions/zypper.fish:55 msgid "Search for packages matching a pattern" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:30 +#: share/completions/zypper.fish:56 msgid "Show full information for specified packages" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:31 +#: share/completions/zypper.fish:57 msgid "Show full information for specified patches" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:32 +#: share/completions/zypper.fish:58 msgid "Show full information for specified patterns" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:33 +#: share/completions/zypper.fish:59 msgid "Show full information for specified products" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:34 +#: share/completions/zypper.fish:60 msgid "List all available patches" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:35 +#: share/completions/zypper.fish:61 msgid "List all available packages" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:36 +#: share/completions/zypper.fish:62 msgid "List all available patterns" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:37 +#: share/completions/zypper.fish:63 msgid "List all available products" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:38 +#: share/completions/zypper.fish:64 msgid "List packages providing specified capability" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:39 +#: share/completions/zypper.fish:65 msgid "Add a package lock" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:40 +#: share/completions/zypper.fish:66 msgid "Remove a package lock" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:41 +#: share/completions/zypper.fish:67 msgid "List current package locks" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:42 +#: share/completions/zypper.fish:68 msgid "Remove unused locks" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:43 +#: share/completions/zypper.fish:69 msgid "Compare two version strings" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:44 +#: share/completions/zypper.fish:70 msgid "Print the target operating system ID string" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:45 +#: share/completions/zypper.fish:71 msgid "Print report about licenses and EULAs of installed packages" msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:46 +#: share/completions/zypper.fish:72 msgid "Download source rpms for all installed packages to a local directory" msgstr "" @@ -61535,10 +57221,6 @@ msgstr "" msgid "Manage abbreviations using new fish 3.0 scheme." msgstr "" -#: /tmp/fish/implicit/share/functions/abbr_old.fish:1 -msgid "Manage abbreviations using old fish 2.x scheme." -msgstr "" - #: /tmp/fish/implicit/share/functions/alias.fish:1 msgid "Creates a function wrapping a command" msgstr "" @@ -61548,6 +57230,7 @@ msgid "Menu based cd command" msgstr "" #: /tmp/fish/implicit/share/functions/contains_seq.fish:1 +#: share/functions/contains_seq.fish:1 msgid "Return true if array contains a sequence" msgstr "" @@ -61555,9 +57238,9 @@ msgstr "" msgid "Print the current directory history (the prev and next lists)" msgstr "" -#: /tmp/fish/implicit/share/functions/dirs.fish:1 +#: share/functions/dirs.fish:1 msgid "Print directory stack" -msgstr "" +msgstr "Visa katalogstack" #: /tmp/fish/implicit/share/functions/down-or-search.fish:1 msgid "" @@ -61569,11 +57252,8 @@ msgstr "" msgid "Edit the command buffer in an external editor" msgstr "" -#: /tmp/fish/implicit/share/functions/eval.fish:1 -msgid "Evaluate parameters as a command" -msgstr "" - -#: /tmp/fish/implicit/share/functions/_.fish:1 +#: /tmp/fish/implicit/share/functions/_.fish:1 share/functions/_.fish:8 +#: share/functions/_.fish:12 msgid "Alias for the gettext command" msgstr "" @@ -61589,143 +57269,34 @@ msgstr "" msgid "Return 0 if the current token has an open single-quote" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_abook_formats.fish:1 -msgid "Complete abook formats" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_ant_targets.fish:1 -msgid "Print list of targets from build.xml and imported files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_atool_archive_contents.fish:1 +#: share/functions/__fish_complete_atool_archive_contents.fish:1 msgid "List archive contents" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:1 -msgid "Maximum uploads at once" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:2 -msgid "Number of seconds between keepalives" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:3 -msgid "Bytes per request" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:4 -msgid "Requests per pipe" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:5 -msgid "Maximum length prefix encoding" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:6 +#: share/functions/__fish_complete_bittorrent.fish:9 msgid "IP to report to the tracker" -msgstr "" +msgstr "IP adress att rapportera till tracker" -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:7 +#: share/functions/__fish_complete_bittorrent.fish:10 msgid "Minimum port to listen to" -msgstr "" +msgstr "Lägsta portnummer att lyssna på" -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:8 +#: share/functions/__fish_complete_bittorrent.fish:11 msgid "Maximum port to listen to" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:9 -msgid "File for server response" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:10 -msgid "URL to get file from" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:11 -msgid "Local file target" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:12 -msgid "Time to close inactive socket" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:13 -msgid "Time between checking timeouts" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:14 -msgid "Maximum outgoing slice length" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:15 -msgid "Maximum time to guess rate" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:16 -msgid "IP to bind to locally" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:17 -msgid "Time between screen updates" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:18 -msgid "Time to wait between requesting more peers" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:19 -msgid "Minimum number of peers to not do requesting" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:20 -msgid "Number of seconds before assuming http timeout" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:21 -msgid "Number of peers at which to stop initiating new connections" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:22 -msgid "Maximum number of connections to allow" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:23 -msgid "Whether to check hashes on disk" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:24 -msgid "Maximum kB/s to upload at" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:25 -msgid "Seconds to wait for data to come in before assuming choking" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:26 -msgid "Whether to display diagnostic info" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:27 -msgid "Number of downloads at which to switch from random to rarest first" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:28 -msgid "Number of uploads to fill out to with optimistic unchokes" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_bittorrent.fish:29 -msgid "Whether to inform the user that hash failures occur" -msgstr "" +msgstr "Högsta portnummer att lyssna på" #: /tmp/fish/implicit/share/functions/__fish_complete_cd.fish:1 msgid "Completions for the cd command" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_command.fish:1 +#: share/functions/__fish_complete_command.fish:1 msgid "Complete using all available commands" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_convert_options.fish:1 +#: share/functions/__fish_complete_convert_options.fish:1 msgid "Complete Convert options" msgstr "" @@ -61786,6 +57357,7 @@ msgid "Enable debugging" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_groups.fish:1 +#: share/functions/__fish_complete_groups.fish:2 msgid "Print a list of local groups, with group members as the description" msgstr "" @@ -61866,10 +57438,12 @@ msgid "Set the page margins when printing text files" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr_option.fish:1 +#: share/functions/__fish_complete_lpr_option.fish:1 msgid "Complete lpr option" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_path.fish:1 +#: share/functions/__fish_complete_path.fish:1 msgid "Complete using path" msgstr "" @@ -61938,88 +57512,70 @@ msgid "Print a list of process identifiers along with brief descriptions" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ppp_peer.fish:1 +#: share/functions/__fish_complete_ppp_peer.fish:1 msgid "Complete isp name for pon/poff" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_proc.fish:1 +#: share/functions/__fish_complete_proc.fish:1 msgid "Complete by list of running processes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_setxkbmap.fish:1 -msgid "Complete setxkb options" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:1 msgid "common completions for ssh commands" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:2 +#: share/functions/__fish_complete_ssh.fish:4 msgid "Protocol version 1 only" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:3 +#: share/functions/__fish_complete_ssh.fish:5 msgid "Protocol version 2 only" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:4 +#: share/functions/__fish_complete_ssh.fish:6 msgid "IPv4 addresses only" -msgstr "" +msgstr "Bara IPv4-adresser" -#: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:5 +#: share/functions/__fish_complete_ssh.fish:7 msgid "IPv6 addresses only" -msgstr "" +msgstr "Bara IPv6-adresser" -#: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:6 +#: share/functions/__fish_complete_ssh.fish:8 msgid "Compress all data" -msgstr "" +msgstr "Komprimera all data" -#: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:7 +#: share/functions/__fish_complete_ssh.fish:9 msgid "Encryption algorithm" -msgstr "" +msgstr "Krypteringsalgoritm" -#: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:9 +#: share/functions/__fish_complete_ssh.fish:11 msgid "Identity file" -msgstr "" +msgstr "Identitetsfil" -#: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:10 +#: share/functions/__fish_complete_ssh.fish:12 msgid "Options" -msgstr "" +msgstr "Flaggor" #: /tmp/fish/implicit/share/functions/__fish_complete_subcommand.fish:1 msgid "Complete subcommand" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_subcommand_root.fish:1 -msgid "" -"Run the __fish_complete_subcommand function using a PATH containing /sbin " -"and /usr/sbin" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_suffix.fish:1 msgid "Complete using files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_svn_diff.fish:1 -msgid "Complete \"svn diff\" arguments" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_complete_unrar.fish:1 -msgid "Peek inside of archives and list all files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_user_at_hosts.fish:1 msgid "Print list host-names with user@" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_users.fish:1 +#: share/functions/__fish_complete_users.fish:2 msgid "Print a list of local users, with the real user name as a description" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_wvdial_peers.fish:1 -msgid "Complete wvdial peers" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 msgid "Completes with ZFS mountpoint properties" msgstr "" @@ -62043,6 +57599,7 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/fish_config.fish:1 +#: share/functions/fish_config.fish:1 msgid "Launch fish's web based configuration" msgstr "" @@ -62050,33 +57607,34 @@ msgstr "" msgid "Initializations that should be performed when entering interactive mode" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:2 +#: share/functions/__fish_config_interactive.fish:130 msgid "Event handler, repaints the prompt when fish_color_cwd changes" -msgstr "" +msgstr "Händelsehanterare, ritar om prompten när fish_color_cwd ändras" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:3 +#: share/functions/__fish_config_interactive.fish:137 msgid "Event handler, repaints the prompt when fish_color_cwd_root changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:4 +#: share/functions/__fish_config_interactive.fish:149 msgid "Start service" -msgstr "" +msgstr "Starta tjänst" -#: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:5 +#: share/functions/__fish_config_interactive.fish:150 msgid "Stop service" -msgstr "" +msgstr "Stanna tjänst" -#: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:6 +#: share/functions/__fish_config_interactive.fish:151 msgid "Print service status" -msgstr "" +msgstr "Visa status för tjänst" -#: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:7 +#: share/functions/__fish_config_interactive.fish:152 msgid "Stop and then start service" -msgstr "" +msgstr "Stanna och starta tjänst" -#: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:8 +#: share/functions/__fish_config_interactive.fish:153 msgid "Reload service configuration" -msgstr "" +msgstr "Ladda om konfiguration för tjänst" #: /tmp/fish/implicit/share/functions/__fish_config_interactive.fish:9 msgid "Reload key bindings when binding variable change" @@ -62091,7 +57649,6 @@ msgid "Checks if a specific option has been given in the current commandline" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_crux_packages.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_prt_packages.fish:1 msgid "Obtain a list of installed packages" msgstr "" @@ -62119,58 +57676,28 @@ msgstr "" msgid "Command used to find descriptions for commands" msgstr "" -#: /tmp/fish/implicit/share/functions/fish_fallback_prompt.fish:1 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:3 msgid "" -"A simple fallback prompt without too much color or special characters for " -"linux VTs" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_filter_ant_targets.fish:1 -msgid "Display targets within an ant build.xml file" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:1 -msgid "Helper function for __fish_git_prompt" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:2 -msgid "Prompt function for Git" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:3 -msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has staged " +"fish_git_prompt helper, tells whether or not the current branch has staged " "files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:4 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:4 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has " +"fish_git_prompt helper, tells whether or not the current branch has " "tracked, modified files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:5 -msgid "__fish_git_prompt helper, returns the current Git operation and branch" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:5 +msgid "fish_git_prompt helper, returns the current Git operation and branch" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:6 -msgid "__fish_git_prompt helper, checks char variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:6 +msgid "fish_git_prompt helper, checks char variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:7 -msgid "__fish_git_prompt helper, checks color variables" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:8 -msgid "Event handler, repaints prompt when functionality changes" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:9 -msgid "Event handler, repaints prompt when any color changes" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:10 -msgid "Event handler, repaints prompt when any char changes" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:7 +msgid "fish_git_prompt helper, checks color variables" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_gnu_complete.fish:1 @@ -62180,6 +57707,7 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_hg_prompt.fish:1 +#: share/functions/__fish_hg_prompt.fish:23 msgid "Write out the hg prompt" msgstr "" @@ -62196,6 +57724,7 @@ msgid "Check if the current directory is a git repository" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_is_token_n.fish:1 +#: share/functions/__fish_is_token_n.fish:1 msgid "Test if current token is on Nth place" msgstr "" @@ -62212,6 +57741,7 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_make_completion_signals.fish:1 +#: share/functions/__fish_make_completion_signals.fish:1 msgid "Make list of kill signals for completion" msgstr "" @@ -62224,6 +57754,7 @@ msgid "List codes and names of available signals" msgstr "" #: /tmp/fish/implicit/share/functions/fish_mode_prompt.fish:1 +#: share/functions/fish_vi_prompt.fish:1 msgid "Displays the current mode" msgstr "" @@ -62243,30 +57774,16 @@ msgstr "" msgid "Paginate the current command using the users default pager" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_ports_dirs.fish:1 -msgid "Obtain a list of ports local collections" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_abook_emails.fish:1 -msgid "Print email addresses (abook)" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_addresses.fish:1 +#: share/functions/__fish_print_addresses.fish:1 msgid "Print a list of known network addresses" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_arch_daemons.fish:1 -msgid "Print arch daemons" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_commands.fish:1 +#: share/functions/__fish_print_commands.fish:1 msgid "Print a list of documented fish commands" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_debian_services.fish:1 -msgid "Prints services installed" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_encodings.fish:1 msgid "Complete using available character encodings" msgstr "" @@ -62275,41 +57792,36 @@ msgstr "" msgid "Print a list of all known filesystem types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_function_prototypes.fish:1 -msgid "" -"Prints the names of all function prototypes found in the headers in the " -"current directory" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_groups.fish:1 msgid "Print a list of local groups" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_help.fish:1 +#: share/functions/__fish_print_help.fish:1 msgid "Print help message for the specified fish function or builtin" msgstr "" +"Visa hjälpmeddelande för specificerad fish-funktion eller inbyggt kommando" #: /tmp/fish/implicit/share/functions/__fish_print_hostnames.fish:1 msgid "Print a list of known hostnames" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_interfaces.fish:1 +#: share/functions/__fish_print_interfaces.fish:1 msgid "Print a list of known network interfaces" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_lpr_options.fish:1 +#: share/functions/__fish_print_lpr_options.fish:1 msgid "Print lpr options" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_lpr_printers.fish:1 +#: share/functions/__fish_print_lpr_printers.fish:1 msgid "Print lpr printers" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_lsblk_columns.fish:1 -msgid "Print available lsblk columns" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_mounted.fish:1 +#: share/functions/__fish_print_mounted.fish:1 msgid "Print mounted devices" msgstr "" @@ -62322,10 +57834,12 @@ msgid "All services known to the system" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_svn_rev.fish:1 +#: share/functions/__fish_print_svn_rev.fish:1 msgid "Print svn revisions" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_users.fish:1 +#: share/functions/__fish_print_users.fish:2 msgid "Print a list of local users" msgstr "" @@ -62333,64 +57847,27 @@ msgstr "" msgid "Print directories where desktop files are stored" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_desktop_file_ids.fish:1 -msgid "Print all available xdg desktop file IDs" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 +#: share/functions/__fish_print_xdg_mimetypes.fish:1 msgid "Print XDG mime types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_modes.fish:1 -msgid "Print xrandr modes" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_outputs.fish:1 -msgid "Print xrandr outputs" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 +#: share/functions/__fish_print_xwindows.fish:1 msgid "Print X windows" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_bookmarks.fish:1 -msgid "Lists ZFS bookmarks, if the feature is enabled" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_filesystems.fish:1 -msgid "Lists ZFS filesystems" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_zfs_snapshots.fish:1 msgid "Lists ZFS snapshots" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_volumes.fish:1 -msgid "Lists ZFS volumes" -msgstr "" - -#: /tmp/fish/implicit/share/functions/fish_prompt.fish:1 +#: share/functions/fish_prompt.fish:5 msgid "Write out the prompt" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_no_subcommand.fish:1 -msgid "Test if prt-get has yet to be given the command" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_ports.fish:1 -msgid "Obtain a list of ports" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_package.fish:1 -msgid "Test if prt-get should have packages as potential completion" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_port.fish:1 -msgid "Test if prt-get should have ports as potential completion" -msgstr "" +msgstr "Skriv prompten" #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:1 #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:2 +#: share/functions/__fish_pwd.fish:3 share/functions/__fish_pwd.fish:7 msgid "Show current path" msgstr "" @@ -62418,15 +57895,12 @@ msgstr "" msgid "Call systemctl with some options from the current commandline" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_test_arg.fish:1 -msgid "Test if the token under the cursor matches the specified wildcard" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_toggle_comment_commandline.fish:1 msgid "Comment/uncomment the current command" msgstr "" #: /tmp/fish/implicit/share/functions/fish_update_completions.fish:1 +#: share/functions/fish_update_completions.fish:1 msgid "Update man-page based completions" msgstr "" @@ -62443,20 +57917,23 @@ msgid "Set cursor shape for different vi modes" msgstr "" #: /tmp/fish/implicit/share/functions/fish_vi_key_bindings.fish:1 +#: share/functions/fish_vi_key_bindings.fish:1 msgid "vi-like key bindings for fish" msgstr "" #: /tmp/fish/implicit/share/functions/funced.fish:1 +#: share/functions/funced.fish:1 msgid "Edit function definition" msgstr "" #: /tmp/fish/implicit/share/functions/funcsave.fish:1 +#: share/functions/funcsave.fish:2 msgid "Save the current definition of all specified functions to file" msgstr "" -#: /tmp/fish/implicit/share/functions/help.fish:1 +#: share/functions/help.fish:1 msgid "Show help for the fish shell" -msgstr "" +msgstr "Visa hjälp för fish-skalet" #: /tmp/fish/implicit/share/functions/history.fish:1 msgid "display or manipulate interactive command history" @@ -62470,59 +57947,60 @@ msgstr "" msgid "Tests if a file descriptor is a tty" msgstr "" -#: /tmp/fish/implicit/share/functions/la.fish:1 +#: share/functions/la.fish:4 msgid "" "List contents of directory, including hidden files in directory using long " "format" -msgstr "" +msgstr "Visa kataloginnehåll, inklusive dolda filer i långt format" -#: /tmp/fish/implicit/share/functions/ll.fish:1 +#: share/functions/ll.fish:4 msgid "List contents of directory using long format" -msgstr "" +msgstr "Visa kataloginnehåll i långt format" -#: /tmp/fish/implicit/share/functions/ls.fish:1 -#: /tmp/fish/implicit/share/functions/ls.fish:2 -#: /tmp/fish/implicit/share/functions/ls.fish:3 +#: share/functions/ls.fish:7 share/functions/ls.fish:32 msgid "List contents of directory" -msgstr "" +msgstr "Visa kataloginnehåll" -#: /tmp/fish/implicit/share/functions/man.fish:1 +#: /tmp/fish/implicit/share/functions/man.fish:1 share/functions/man.fish:1 msgid "Format and display the on-line manual pages" msgstr "" -#: /tmp/fish/implicit/share/functions/nextd.fish:1 +#: share/functions/nextd.fish:2 msgid "Move forward in the directory history" -msgstr "" +msgstr "Gå frammåt i kataloghistorik" -#: /tmp/fish/implicit/share/functions/N_.fish:1 +#: /tmp/fish/implicit/share/functions/N_.fish:1 share/functions/N_.fish:3 msgid "No-op" msgstr "" -#: /tmp/fish/implicit/share/functions/open.fish:1 +#: share/functions/open.fish:8 msgid "Open file in default application" -msgstr "" +msgstr "Öppna fil i standardprogram" #: /tmp/fish/implicit/share/functions/popd.fish:1 msgid "Pop directory from the stack and cd to it" msgstr "" -#: /tmp/fish/implicit/share/functions/prevd.fish:1 +#: share/functions/prevd.fish:2 msgid "Move back in the directory history" -msgstr "" +msgstr "Gå bakåt i kataloghistorik" #: /tmp/fish/implicit/share/functions/prompt_pwd.fish:1 +#: share/functions/prompt_pwd.fish:11 msgid "Print the current working directory, shortened to fit the prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/psub.fish:1 +#: share/functions/psub.fish:3 msgid "" "Read from stdin into a file and output the filename. Remove the file when " "the command that called psub exits." msgstr "" +"Läs från standard in och skriv till fil. Skriv filnamnet på standard ut. " +"Radera filen när det anropande programmet avslutar." -#: /tmp/fish/implicit/share/functions/pushd.fish:1 +#: share/functions/pushd.fish:3 msgid "Push directory to stack" -msgstr "" +msgstr "Lägg till katalog till stack" #: /tmp/fish/implicit/share/functions/realpath.fish:1 msgid "print the resolved path [command realpath]" @@ -62536,11 +58014,11 @@ msgstr "" msgid "return an absolute path without symlinks" msgstr "" -#: /tmp/fish/implicit/share/functions/seq.fish:1 +#: /tmp/fish/implicit/share/functions/seq.fish:1 share/functions/seq.fish:7 msgid "Print sequences of numbers" msgstr "" -#: /tmp/fish/implicit/share/functions/seq.fish:2 +#: /tmp/fish/implicit/share/functions/seq.fish:2 share/functions/seq.fish:11 msgid "Fallback implementation of the seq command" msgstr "" @@ -62553,6 +58031,7 @@ msgid "Suspend the current shell." msgstr "" #: /tmp/fish/implicit/share/functions/__terlar_git_prompt.fish:1 +#: share/functions/__terlar_git_prompt.fish:23 msgid "Write out the git prompt" msgstr "" @@ -62560,13 +58039,13 @@ msgstr "" msgid "Perform an action when the shell receives a signal" msgstr "" -#: /tmp/fish/implicit/share/functions/type.fish:1 +#: share/functions/type.fish:2 msgid "Print the type of a command" -msgstr "" +msgstr "Visa typ av kommando" -#: /tmp/fish/implicit/share/functions/umask.fish:1 +#: share/functions/umask.fish:137 msgid "Set default file permission mask" -msgstr "" +msgstr "Välj standardfilrättighetsmask" #: /tmp/fish/implicit/share/functions/up-or-search.fish:1 msgid "" @@ -62574,6 +58053,6329 @@ msgid "" "move up one line" msgstr "" -#: /tmp/fish/implicit/share/functions/vared.fish:1 +#: share/functions/vared.fish:6 msgid "Edit variable value" +msgstr "Redigera variabelvärde" + +#: autoload.cpp:113 +#, c-format +msgid "Could not autoload item '%ls', it is already being autoloaded. " msgstr "" +"Kunde inte automatiskt ladda elementet '%ls', det laddas automatiskt redan. " + +#: builtin.cpp:2070 +#, c-format +msgid "%ls: Unknown signal '%ls'\n" +msgstr "%ls: Okänd signal '%ls'\n" + +#: builtin.cpp:2085 builtin.cpp:2195 builtin.cpp:2263 +#, c-format +msgid "%ls: Invalid variable name '%ls'\n" +msgstr "%ls: Ogiltigt variabelnamn '%ls'\n" + +#: builtin.cpp:2138 +#, c-format +msgid "%ls: Cannot find calling job for event handler\n" +msgstr "%ls: Kan inte hitta anropande job för händelsehanterare\n" + +#: builtin.cpp:2156 +#, c-format +msgid "%ls: Invalid process id %ls\n" +msgstr "%ls: Ogiltigt processid %ls\n" + +#: builtin.cpp:2223 +#, c-format +msgid "%ls: Expected function name\n" +msgstr "%ls: Förväntade ett funktionsnamn\n" + +#: builtin.cpp:2240 +#, c-format +msgid "" +"%ls: The name '%ls' is reserved,\n" +"and can not be used as a function name\n" +msgstr "" +"%ls: Namnet '%ls' är reserverat,\n" +"och kan inte användas som funktionsnamn\n" + +#: builtin.cpp:2248 +#, c-format +msgid "%ls: No function name given\n" +msgstr "" + +#: builtin.cpp:2276 +#, c-format +msgid "%ls: Expected one argument, got %d\n" +msgstr "%ls: Förväntade ett argument, fick %d\n" + +#: builtin.cpp:2412 +#, c-format +msgid "%ls: Seed value '%ls' is not a valid number\n" +msgstr "%ls: Slumpfröet '%ls' är inte ett giltigt nummer\n" + +#: builtin.cpp:2426 +#, c-format +msgid "%ls: Expected zero or one argument, got %d\n" +msgstr "%ls: Förväntade noll eller ett argument, fick %d\n" + +#: builtin.cpp:2656 +#, c-format +msgid "%ls: --array option requires a single variable name.\n" +msgstr "" + +#: builtin.cpp:3688 +msgid "(default)" +msgstr "(standard)" + +#: builtin.cpp:4070 +msgid "Try out the new parser" +msgstr "Testa den nya parsern" + +#: builtin_commandline.cpp:466 +#, c-format +msgid "%ls: Unknown input function '%ls'\n" +msgstr "%ls: Okänd inläsnings-funktion '%ls'\n" + +#: builtin_printf.cpp:175 +#, c-format +msgid "" +"warning: %ls: character(s) following character constant have been ignored" +msgstr "varning: %ls: tecken(s) efterföljande teckenskonstant ignorerades" + +#: builtin_printf.cpp:771 +msgid "printf: not enough arguments" +msgstr "printf: inte tillräckligt med argument" + +#: builtin_set.cpp:221 +#, c-format +msgid "%ls: Multiple variable names specified in single call (%ls and %.*ls)\n" +msgstr "%ls: Flera variabelnamn angivna i ett anrop (%ls och %.*ls)\n" + +#: builtin_set.cpp:791 +#, c-format +msgid "%ls: Values cannot be specfied with erase\n" +msgstr "%ls: Värden kan inte anges vid radering\n" + +#: builtin_set.cpp:817 +#, c-format +msgid "" +"%ls: Warning: universal scope selected, but a global variable '%ls' exists.\n" +msgstr "" +"Varning: universellt definitionsområde valt, men global variable " +"'%ls'existerar readn.\n" + +#: builtin_set_color.cpp:173 +#, c-format +msgid "%ls: Could not set up terminal\n" +msgstr "" + +#: complete.cpp:901 complete.cpp:919 +msgid "Unknown option: " +msgstr "Okänd flagga: " + +#: complete.cpp:923 +msgid "Multiple matches for option: " +msgstr "Mer än en flagga matchar: " + +#: env.cpp:315 +msgid "Changing language to English" +msgstr "Byter språk till svenska" + +#: env_universal_common.cpp:617 path.cpp:279 +msgid "" +"Unable to create a configuration directory for fish. Your personal settings " +"will not be saved. Please set the $XDG_CONFIG_HOME variable to a directory " +"where the current user has write access." +msgstr "" +"Kunde inte skapa en konfigurationskatalog för fish. Dina personliga " +"inställningar kommer inte sparas. Var vänlig sätt variabeln $XDH_CONFIG_HOME " +"till en katalog där den nuvarande användaren har skrivrättigheter." + +#: fish.cpp:330 +msgid "" +"Old versions of fish appear to be running. You will not be able to share " +"variable values between old and new fish sessions. For best results, restart " +"all running instances of fish." +msgstr "" +"Gammal version av fish verkar köra. Du kommer inte kunna dela variabler " +"mellanden gammla och den nya fish sessionen. För bästa resultat, starta om " +"allakörande instanser av fish." + +#: fish.cpp:420 +#, c-format +msgid "Invalid value '%s' for debug level switch" +msgstr "Ogiltigt värde '%s' för debugnivåflagga" + +#: input.cpp:483 input.cpp:493 +msgid "Could not set up terminal" +msgstr "Kunde inte initiera terminalen" + +#: input.cpp:486 +#, c-format +msgid "Check that your terminal type, '%ls', is supported on this system" +msgstr "Säkerställa att din terminaltyp, '%ls', stöds av det här systemet" + +#: input.cpp:488 +#, c-format +msgid "Attempting to use '%ls' instead" +msgstr "Försöker använda '%ls' istället" + +#: input.cpp:535 +msgid "Error while closing terminfo" +msgstr "Ett fel inträffade medan terminfo stängdes" + +#: io.cpp:112 +#, c-format +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" + +#: mimedb.cpp:174 mimedb.cpp:188 mimedb.cpp:1179 +#, c-format +msgid "%s: Out of memory\n" +msgstr "%s: Slut på minne\n" + +#: mimedb.cpp:463 +#, c-format +msgid "%s: Unknown error in munge()\n" +msgstr "%s: Okänt fel i munge()\n" + +#: mimedb.cpp:481 +#, c-format +msgid "%s: Locale string too long\n" +msgstr "%s: Lokalsträng för lång\n" + +#: mimedb.cpp:551 mimedb.cpp:559 +#, c-format +msgid "%s: Could not compile regular expressions %s with error %s\n" +msgstr "%s: Kunde inte kompilera reguljärt uttryck %s med fel %s\n" + +#: mimedb.cpp:676 +#, c-format +msgid "%s: No description for type %s\n" +msgstr "%s: Beskrivning saknas för typ %s\n" + +#: mimedb.cpp:744 +#, c-format +msgid "%s: Could not parse launcher string '%s'\n" +msgstr "%s: Kunde inte tolka körsträng '%ls'\n" + +#: mimedb.cpp:780 +#, c-format +msgid "%s: Default launcher '%s' does not specify how to start\n" +msgstr "%s: Standardkörsträng '%s' anger inte hur programmet ska startas\n" + +#: mimedb.cpp:1158 +#, c-format +msgid "%s: Unsupported switch '%c' in launch string '%s'\n" +msgstr "%s: Flaggan '%c' i körsträng '%s' stöds inte\n" + +#: mimedb.cpp:1354 +#, c-format +msgid "%s: Can not launch a mimetype\n" +msgstr "%s: Kan inte köra en mimetyp\n" + +#: mimedb.cpp:1382 +#, c-format +msgid "%s: Could not parse mimetype from argument '%s'\n" +msgstr "%s: Kunde inte tolka mimetyp från argument '%s'\n" + +#: pager.cpp:562 +#, c-format +msgid "%lsand 1 more row" +msgstr "%lsoch 1 rad till" + +#: parse_execution.cpp:799 +#, c-format +msgid "" +"Unknown command '%ls'. Did you mean to run %ls with a modified environment? " +"Try 'env %ls=%ls %ls%ls'. See the help section on the set command by typing " +"'help set'." +msgstr "" + +#: parse_execution.cpp:824 +#, c-format +msgid "" +"Variables may not be used as commands. Instead, define a function like " +"'function %ls; %ls $argv; end' or use the eval builtin instead, like 'eval " +"%ls'. See the help section for the function command by typing 'help " +"function'." +msgstr "" + +#: parse_execution.cpp:833 +#, c-format +msgid "" +"Variables may not be used as commands. Instead, define a function or use the " +"eval builtin instead, like 'eval %ls'. See the help section for the function " +"command by typing 'help function'." +msgstr "" + +#: parse_execution.cpp:841 +#, c-format +msgid "" +"Commands may not contain variables. Use the eval builtin instead, like 'eval " +"%ls'. See the help section for the eval command by typing 'help eval'." +msgstr "" +"Okänt kommando '%ls'. Menade du 'set VARIABEL VÄRDE'? Se hjälpsektionen om " +"det inbyggda kommandot 'set' genom att skriva 'help set'." + +#: parser.cpp:52 +#, c-format +msgid "Tokenizer error: '%ls'" +msgstr "Ett fel inträffade vid symboluppdelning: '%ls'" + +#: parser.cpp:62 +#, c-format +msgid "Unexpected token of type '%ls'" +msgstr "Oväntad symbol av typ '%ls'" + +#: parser.cpp:87 parse_constants.h:278 +msgid "function definition block" +msgstr "funktionsdefinition-block" + +#: parser.cpp:107 parse_constants.h:301 +msgid "unexecutable block" +msgstr "oexekverbart block" + +#: parser.cpp:956 +msgid "End of block mismatch. Program terminating." +msgstr "Blockslut matchar inte. Programmet avslutas." + +#: proc.cpp:690 +#, c-format +msgid "'%ls' has %ls" +msgstr "" + +#: proc.cpp:694 +#, c-format +msgid "Job %d, '%ls' has %ls" +msgstr "Jobb %d, '%ls' har %ls" + +#: proc.cpp:828 +msgid "ended" +msgstr "avslutat" + +#: proc.cpp:1354 proc.cpp:1380 +msgid "Process list pointer" +msgstr "Processlistepekare" + +#: reader.cpp:2105 +msgid "Couldn't put the shell in its own process group" +msgstr "Kunde inte skicka skalet till sin egen processgrupp" + +#: reader.cpp:2115 +msgid "Couldn't grab control of terminal" +msgstr "Kunde inte ta kontroll över terminalen" + +#: reader.cpp:2882 +msgid "" +"There are stopped jobs. A second attempt to exit will enforce their " +"termination.\n" +msgstr "" + +#: tokenizer.cpp:65 +msgid "Tokenizer not yet initialized" +msgstr "Symbolavdelaren inte initierad" + +#: tokenizer.cpp:66 +msgid "Tokenizer error" +msgstr "Symbolavdelarfel" + +#: tokenizer.cpp:67 +msgid "String" +msgstr "Textsträng" + +#: tokenizer.cpp:68 +msgid "Pipe" +msgstr "Rör" + +#: tokenizer.cpp:69 +msgid "End of command" +msgstr "Slut av kommando" + +#: tokenizer.cpp:70 +msgid "Redirect output to file" +msgstr "IO dirigering av utdata till fil" + +#: tokenizer.cpp:71 +msgid "Append output to file" +msgstr "IO dirigering av utdata till slutet av fil" + +#: tokenizer.cpp:72 +msgid "Redirect input to file" +msgstr "IO dirigering av indata till fil" + +#: tokenizer.cpp:73 +msgid "Redirect to file descriptor" +msgstr "IO dirigering till filidentifierare" + +#: tokenizer.cpp:74 +msgid "Redirect output to file if file does not exist" +msgstr "IO dirigering av utdata till fil om filen inte existerar" + +#: tokenizer.cpp:75 +msgid "Run job in background" +msgstr "Kör jobb i bakgrunden" + +#: tokenizer.cpp:76 +msgid "Comment" +msgstr "Kommentar" + +#: tokenizer.cpp:561 +msgid "Invalid token type" +msgstr "Ogiltig symboltyp" + +#: wgetopt.cpp:636 +#, c-format +msgid "%ls: Illegal option -- %lc\n" +msgstr "%ls: Ogiltig flagga -- '%lc'\n" + +#: builtin.h:57 +#, c-format +msgid "" +"%ls: Invalid character '%lc' in variable name. Only alphanumerical " +"characters and underscores are valid in a variable name.\n" +msgstr "" +"%ls: Ogiltigt tecken '%lc' i variabelnamn. Bara alfanumeriska tecken och " +"understreck är tillåtna i variabelnamn.\n" + +#: builtin.h:62 +#, c-format +msgid "%ls: Variable name can not be the empty string\n" +msgstr "%ls: Den tomma strängen är inte ett tillåtet variabelnamn\n" + +#: builtin.h:67 +#, c-format +msgid "%ls: Second argument must be 'in'\n" +msgstr "%ls: Andra argumentet måste vara 'in'\n" + +#: builtin.h:72 +#, c-format +msgid "%ls: Expected at least two arguments, got %d\n" +msgstr "%ls: Förväntade minst två argument, fick %d\n" + +#: builtin.h:74 +#, c-format +msgid "%ls: '%ls' is not a valid variable name\n" +msgstr "%ls: '%ls' är ett ogiltigt variabelnamn\n" + +#: builtin.h:77 +#, c-format +msgid "%ls: can only take 'if' and then another command as an argument\n" +msgstr "" + +#: builtin.h:78 +#, c-format +msgid "%ls: any second argument must be 'if'\n" +msgstr "" + +#: builtin.h:88 +#, c-format +msgid "%ls: Block mismatch: '%ls' vs. '%ls'\n" +msgstr "%ls: Blockmismatchning: '%ls' mot '%ls'\n" + +#: builtin.h:93 +#, c-format +msgid "%ls: Unknown block type '%ls'\n" +msgstr "%ls: Okänd blocktyp '%ls'\n" + +#: expand.h:135 +msgid "Array index out of bounds" +msgstr "Arrayindexet är otållåtet" + +#: parse_constants.h:192 +msgid "" +"Expected a command, but instead found a pipe. Did you mean 'COMMAND; or " +"COMMAND'? See the help section for the 'or' builtin command by typing 'help " +"or'." +msgstr "" + +#: parse_constants.h:195 +msgid "" +"Expected a command, but instead found an '&'. Did you mean 'COMMAND; and " +"COMMAND'? See the help section for the 'and' builtin command by typing 'help " +"and'." +msgstr "" + +#: parse_constants.h:216 +msgid "break command while not inside of loop" +msgstr "" + +#: parse_constants.h:219 +msgid "continue command while not inside of loop" +msgstr "" + +#: parse_constants.h:222 +msgid "'return' builtin command outside of function definition" +msgstr "" +"Det inbyggda kommandot 'return' påträffades utanför en funktionsdefinition" + +#: parse_constants.h:225 +#, c-format +msgid "" +"Unknown command '%ls'. Did you mean 'set %ls %ls'? See the help section on " +"the set command by typing 'help set'." +msgstr "" + +#: parse_constants.h:230 +#, c-format +msgid "" +"The '$' character begins a variable name. The character '%lc', which " +"directly followed a '$', is not allowed as a part of a variable name, and " +"variable names may not be zero characters long. To learn more about variable " +"expansion in fish, type 'help expand-variable'." +msgstr "" +"Tecknet '$' börjar ett variabelnamn. Tecknet '%lc', som direkt följde ett " +"'$', är inte tillåtet som del av ett variabelnamn, och variabelnamn får inte " +"vara noll tecken långa. För mer information om variabelexpansion i fish, " +"skriv 'help expand-variable'." + +#: parse_constants.h:235 +msgid "" +"$? is not a valid variable in fish. If you want the exit status of the last " +"command, try $status." +msgstr "" + +#: parse_constants.h:240 +msgid "" +"The '$' begins a variable name. It was given at the end of an argument. " +"Variable names may not be zero characters long. To learn more about variable " +"expansion in fish, type 'help expand-variable'." +msgstr "" +"Tecknet '$' börjar ett variabelnamn. Det påträffades som det sista tecknet i " +"ett argument. Variabelnamn får inte vara noll tecken långa. För mer " +"information om variabelexpansion i fish, skriv 'help expand-variable'." + +#: parse_constants.h:245 +#, c-format +msgid "" +"Did you mean %ls{$%ls}%ls? The '$' character begins a variable name. A " +"bracket, which directly followed a '$', is not allowed as a part of a " +"variable name, and variable names may not be zero characters long. To learn " +"more about variable expansion in fish, type 'help expand-variable'." +msgstr "" +"Menade du %ls{$%ls}%ls? Tecknet '$' börjar ett variabelnamn. En " +"klammerparantes, som direkt följde ett '$', är inte tillåtet som del av ett " +"variabelnamn, och variabelnamn får inte vara noll tecken långa. För mer " +"information om variabelexpansion i fish, skriv 'help expand-variable'." + +#: parse_constants.h:250 +msgid "" +"Did you mean (COMMAND)? In fish, the '$' character is only used for " +"accessing variables. To learn more about command substitution in fish, type " +"'help expand-command-substitution'." +msgstr "" +"Menade du (KOMMANDO)? I fish används tecknet '$' bara för att komma åt " +"variabler. För att lära dig mer om kommandosubstitutionm skriv 'help expand-" +"command-substitution'." + +#: share/completions/aptitude.fish:26 +msgid "Forget all internal information about what packages are \\new" +msgstr "" + +#: share/completions/bundle.fish:93 share/completions/bundle.fish:132 +#, sh-format +msgid "Open an installed gem in your $EDITOR" +msgstr "" + +#: share/completions/bundle.fish:140 +msgid "Output a specific format (png, jpg, svg, dot, ...)" +msgstr "" + +#: share/completions/cp.fish:20 +msgid "Preserve ATTRIBUTES if possible" +msgstr "" + +#: share/completions/cp.fish:29 +msgid "Set security context of copy to CONTEXT" +msgstr "Ange säkerhetskontext för kopia" + +#: share/completions/cvs.fish:26 +msgid "Use \\tmpdir for temporary files." +msgstr "" + +#: share/completions/cvs.fish:27 +msgid "Use \\editor for editing log information." +msgstr "" + +#: share/completions/cvs.fish:28 +#, sh-format +msgid "Overrides $CVSROOT as the root of the CVS tree." +msgstr "" + +#: share/completions/cvs.fish:30 +msgid "Request compression level \\# for net traffic." +msgstr "" + +#: share/completions/cvs.fish:52 +msgid "Create a CVS repository if it doesn\\t" +msgstr "" + +#: share/completions/cvs.fish:97 +msgid "Replace revision\\s" +msgstr "" + +#: share/completions/darcs.fish:44 +msgid "" +"Apply a patch bundle created by `darcs send\\\n" +"complete -c darcs -n __fish_use_subcommand -x -a get --description Create" +msgstr "" + +#: share/completions/darcs.fish:171 +msgid "Define token to contain these characters" +msgstr "" + +#: share/completions/darcs.fish:501 +msgid "Shell command that runs regression tests" +msgstr "" + +#: share/completions/darcs.fish:502 +msgid "" +"Shell command to run before `darcs dist\\\n" +"complete -c darcs -n contains" +msgstr "" + +#: share/completions/dcop.fish:34 +msgid "Show help about options" +msgstr "Visa hjälp om flaggor" + +#: share/completions/dcop.fish:35 +msgid "Connect to the given user's DCOP server" +msgstr "Koppla till den angivna användarens DCOP-server" + +#: share/completions/dcop.fish:36 +msgid "Send the same DCOP call to all users with a running DCOP server" +msgstr "" +"Skicka samma DCOP-signal till alla användare med en körande DCOP-server" + +#: share/completions/dcop.fish:37 +msgid "List all active KDE session for a user or all users" +msgstr "Visa alla aktiva KDE-sessioner för en användare eller alla användare" + +#: share/completions/dcop.fish:38 +msgid "Send to the given KDE session" +msgstr "Skicka till den angivna KDE-sessionen" + +#: share/completions/dcop.fish:39 +msgid "Don't update the user activity timestamp in the called application" +msgstr "" +"Uppdatera inte tidsstämpeln för användaraktivitet i det anropade programmet" + +#: share/completions/dcop.fish:40 +msgid "Call DCOP for each line read from stdin" +msgstr "Anropa DCOP för varje rad läst från standard in" + +#: share/completions/df.fish:17 +msgid "Show file systems of specified type" +msgstr "" + +#: share/completions/docker.fish:19 +msgid "Show all containers" +msgstr "" + +#: share/completions/docker.fish:24 +msgid "Show the running containers" +msgstr "" + +#: share/completions/docker.fish:28 +msgid "Show the exited containers" +msgstr "" + +#: share/completions/docker.fish:70 share/completions/docker.fish:92 +msgid "Docker container" +msgstr "" + +#: share/completions/docker.fish:82 +msgid "Stopped container" +msgstr "" + +#: share/completions/docker.fish:87 +msgid "Container running" +msgstr "" + +#: share/completions/duply.fish:26 +msgid "Calculate what would be done, but dont perform any actions" +msgstr "" + +#: share/completions/duply.fish:27 +msgid "Dont abort when backup different dirs to the same backend" +msgstr "" + +#: share/completions/gcc.fish:25 +msgid "Set maximum template depth" +msgstr "Sätt maximalt malldjup" + +#: share/completions/gcc.fish:261 +msgid "" +"Print the full absolute name of the library file library that would be used " +"when linking---and don\\t" +msgstr "" + +#: share/completions/gem.fish:87 +msgid "display the package version" +msgstr "" + +#: share/completions/gem.fish:87 +msgid "display the path where gems are installed" +msgstr "" + +#: share/completions/gem.fish:87 +msgid "display path used to search for gems" +msgstr "" + +#: share/completions/gem.fish:87 +msgid "display the gem format version" +msgstr "" + +#: share/completions/gem.fish:92 +msgid "list all 'gem' commands" +msgstr "" + +#: share/completions/git.fish:98 +msgid "name" +msgstr "" + +#: share/completions/help.fish:6 +msgid "Help for this command" +msgstr "" + +#: share/completions/help.fish:10 +msgid "Incomplete aspects of fish" +msgstr "" + +#: share/completions/help.fish:11 +msgid "Known fish bugs" +msgstr "" + +#: share/completions/help.fish:14 +msgid "Help on how tab-completion works" +msgstr "Hjälp om hur tabbkomplettering fungerar" + +#: share/completions/help.fish:15 +msgid "Help on how job control works" +msgstr "Hjälp om hur jobbkontroll fungerar" + +#: share/completions/help.fish:16 +msgid "Summary on how fish differs from other shells" +msgstr "Summera hur fish skiljer sig från andra skal" + +#: share/completions/help.fish:18 +msgid "Help on how to set the prompt" +msgstr "Hjälp om hur man ändrar prompten" + +#: share/completions/help.fish:19 +msgid "Help on how to set the titlebar message" +msgstr "Hjälp om hur man ändrar titelradsmeddelandet" + +#: share/completions/help.fish:20 +msgid "Help on how to copy and paste" +msgstr "Hjälp om hur man kopierar och klistrar in" + +#: share/completions/help.fish:21 +msgid "Help on editor shortcuts" +msgstr "Hjälp om tangentbordsgenvägar" + +#: share/completions/help.fish:22 +msgid "Help on environment variables" +msgstr "Hjälp om miljövariabler" + +#: share/completions/help.fish:23 +msgid "Help on setting syntax highlighting colors" +msgstr "Hjälp om syntaxfärgläggningsfärger" + +#: share/completions/help.fish:25 share/completions/help.fish:26 +msgid "Help on parameter expansion (Globbing)" +msgstr "Hjälp om parameterexpansion (Globbing)" + +#: share/completions/help.fish:27 +#, sh-format +msgid "Help on variable expansion $VARNAME" +msgstr "Hjälp om variabelexpansion $VARIABEL" + +#: share/completions/help.fish:28 +msgid "Help on home directory expansion ~USER" +msgstr "Hjälp om hemkatalogexpansion ~ANVÄNDARE" + +#: share/completions/help.fish:29 +msgid "Help on brace expansion {a,b,c}" +msgstr "Hjälp om klammerparantesexpansion {a,b,c}" + +#: share/completions/help.fish:30 +msgid "Help on wildcard expansion *.*" +msgstr "Hjälp om jokertecken *.*" + +#: share/completions/help.fish:31 +msgid "Help on command substitution (SUBCOMMAND)" +msgstr "Hjälp om kommandosubstitution (UNDERKOMMANDO)" + +#: share/completions/help.fish:32 +msgid "Help on process expansion %JOB" +msgstr "Hjälp om processexpansion %JOB" + +#: share/completions/history.fish:1 +msgid "Match history items that start with the given prefix" +msgstr "" + +#: share/completions/history.fish:2 +msgid "Match history items that contain the given string" +msgstr "" + +#: share/completions/obnam.fish:9 +msgid "Adds an encryption key to the repository" +msgstr "" + +#: share/completions/obnam.fish:11 +msgid "Lists the keys associated with each client" +msgstr "" + +#: share/completions/obnam.fish:12 +msgid "Lists the clients in the repository" +msgstr "" + +#: share/completions/obnam.fish:13 +msgid "Compares two generations" +msgstr "" + +#: share/completions/obnam.fish:14 +msgid "Dumps the repository" +msgstr "" + +#: share/completions/obnam.fish:15 +msgid "Removes a lock file for a client" +msgstr "" + +#: share/completions/obnam.fish:16 +msgid "Removes backup generations" +msgstr "" + +#: share/completions/obnam.fish:17 +msgid "Checks the consistency of the repository" +msgstr "" + +#: share/completions/obnam.fish:18 +msgid "Lists every backup generation" +msgstr "" + +#: share/completions/obnam.fish:19 +msgid "Lists the identifier for every generation" +msgstr "" + +#: share/completions/obnam.fish:20 +msgid "Lists the keys" +msgstr "" + +#: share/completions/obnam.fish:21 +msgid "Lists the toplevel keys" +msgstr "" + +#: share/completions/obnam.fish:22 +msgid "Lists the contents of a given generation" +msgstr "" + +#: share/completions/obnam.fish:23 +msgid "Makes the repository available via FUSE" +msgstr "" + +#: share/completions/obnam.fish:24 +msgid "Check if a backup age exceeds a threshold" +msgstr "" + +#: share/completions/obnam.fish:25 +msgid "Removes a client from the repository" +msgstr "" + +#: share/completions/obnam.fish:26 +msgid "Removes a key from the repository" +msgstr "" + +#: share/completions/obnam.fish:27 +msgid "Restore files from the repository" +msgstr "" + +#: share/completions/obnam.fish:28 +msgid "Verifies files in the repository" +msgstr "" + +#: share/completions/obnam.fish:87 +msgid "Do not check data for cient NAME." +msgstr "" + +#: share/completions/perl.fish:34 +#, sh-format +msgid "Loop script, print $_" +msgstr "Upprepa skript, skriv $_" + +#: share/completions/perl.fish:36 +#, sh-format +msgid "Search $PATH for script" +msgstr "Genomsök $PATH efter skript" + +#: share/completions/sed.fish:13 +msgid "Evaluate expression" +msgstr "Utför argument som kommandon" + +#: share/completions/sed.fish:14 +msgid "Evalute file" +msgstr "Utför filinnehåll som kommandon" + +#: share/completions/sed.fish:22 +msgid "Specify line-length" +msgstr "Välj radlängd" + +#: share/completions/touch.fish:2 +msgid "Set date back" +msgstr "Sätt tillbaka datum" + +#: share/completions/touch.fish:4 +msgid "Set date" +msgstr "Välj datum" + +#: share/completions/touch.fish:5 +msgid "Set date forward" +msgstr "Sätt fram datum" + +#: share/completions/touch.fish:9 +msgid "Set time" +msgstr "Välj tid" + +#: share/completions/update-eix-remote.fish:16 +msgid "" +"Fetch the eix-caches of some layman overlays into a temporary file resp. " +"into FILE and add them to the eix database" +msgstr "" + +#: share/completions/update-eix-remote.fish:16 +msgid "Only fetch the overlays into FILE" +msgstr "" + +#: share/completions/update-eix-remote.fish:16 +msgid "Only add the overlays from FILE to the eix database" +msgstr "" + +#: share/completions/xterm.fish:126 +#, sh-format +msgid "Terminal name for $TERM" +msgstr "" + +#: share/functions/_.fish:9 +msgid "fish" +msgstr "" + +#: share/functions/__fish_complete_abook_formats.fish:1 +msgid "Complete abook formats" +msgstr "" + +#: share/functions/__fish_complete_atool.fish:1 +msgid "Complete atool" +msgstr "" + +#: share/functions/__fish_complete_grep.fish:48 +msgid "Obsolete synonym for -i" +msgstr "" + +#: share/functions/__fish_complete_grep.fish:49 +msgid "treat input as a set of lines each terminated by a zero byte" +msgstr "" + +#: share/functions/__fish_complete_python.fish:2 +#: share/functions/__fish_complete_python.fish:28 +#: share/functions/__fish_complete_vi.fish:54 +msgid "Don\\t" +msgstr "" + +#: share/functions/__fish_complete_setxkbmap.fish:1 +msgid "Complete setxkb options" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:77 +msgid "Remove \\conflicted state on working copy files or directories." +msgstr "" + +#: share/functions/__fish_complete_svn.fish:103 +msgid "Specify log message" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:105 +msgid "Read log message from file" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:106 +msgid "Force validity of log message source" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:118 +msgid "Print nothing, or only summary information" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:122 +msgid "Force operation to run" +msgstr "Tvinga operationen att utföras" + +#: share/functions/__fish_complete_svn.fish:126 +msgid "Process contents of file ARG as additional args" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:130 +msgid "Operate only on members of changelist" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:134 +msgid "Output in xml" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:138 +msgid "Retrieve revision property" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:150 +msgid "Ignore externals definitions" +msgstr "Ignorera definitioner av externals" + +#: share/functions/__fish_complete_svn.fish:154 +msgid "Print extra information" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:158 +msgid "Operate on a revision property (use with -r)" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:162 +msgid "Add intermediate parents" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:189 +msgid "Try operation but make no changes" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:193 +msgid "Ignore ancestry when calculating merges" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:197 +msgid "Override diff-cmd specified in config file" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:198 +msgid "Use external diff command" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:202 +msgid "Disable automatic properties" +msgstr "Inaktivera automatiska egenskaper" + +#: share/functions/__fish_complete_svn.fish:206 +msgid "Set new working copy depth" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:230 +msgid "don\\t" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:241 +msgid "Use ARG as the older target" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:242 +msgid "Use ARG as the newer target" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:243 +msgid "Do not print differences for deleted files" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:244 +msgid "Notice ancestry when calculating differences" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:245 +msgid "Show a summary of the results" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:257 +msgid "Do not cross copies while traversing history" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:259 +msgid "Produce diff output" +msgstr "" + +#: share/functions/__fish_complete_svn.fish:279 +msgid "Use strict semantics" +msgstr "Använd strikt semantik" + +#: share/functions/__fish_complete_svn.fish:306 +msgid "Relocate via URL-rewriting" +msgstr "" + +#: share/functions/__fish_complete_svn_diff.fish:1 +msgid "Complete \"svn diff\" arguments" +msgstr "" + +#: share/functions/__fish_complete_tar.fish:14 +#: share/functions/__fish_complete_tar.fish:21 +#: share/functions/__fish_complete_tar.fish:28 +#: share/functions/__fish_complete_unrar.fish:14 +msgid "%s\\tArchived file\\n" +msgstr "%s\\tArkivfil\\n" + +#: share/functions/__fish_complete_wvdial_peers.fish:1 +msgid "Complete wvdial peers" +msgstr "" + +#: share/functions/__fish_complete_xsum.fish:1 +msgid "Complete md5sum sha1 etc" +msgstr "" + +# +#: share/functions/__fish_config_interactive.fish:35 +msgid "Type %shelp%s for instructions on how to use fish" +msgstr "Skriv %shelp%s för instruktioner om hur man använder fish" + +#: share/functions/__fish_config_interactive.fish:193 +#, sh-format +msgid "Notify VTE of change to $PWD" +msgstr "" + +#: share/functions/__fish_move_last.fish:9 +msgid "Hit end of history...\\n" +msgstr "Slut på kataloghistorik...\\n" + +#: share/functions/__fish_print_abook_emails.fish:1 +msgid "Print email addresses (abook)" +msgstr "" + +#: share/functions/__fish_print_arch_daemons.fish:1 +msgid "Print arch daemons" +msgstr "" + +#: share/functions/__fish_print_debian_services.fish:1 +msgid "Prints services installed" +msgstr "" + +#: share/functions/__fish_print_lsblk_columns.fish:1 +msgid "Print available lsblk columns" +msgstr "" + +#: share/functions/__fish_print_xdg_mimeapps.fish:1 +msgid "Print xdg mime applications" +msgstr "" + +#: share/functions/__fish_print_xrandr_modes.fish:1 +msgid "Print xrandr modes" +msgstr "" + +#: share/functions/__fish_print_xrandr_outputs.fish:1 +msgid "Print xrandr outputs" +msgstr "" + +#: share/functions/__fish_test_arg.fish:2 +msgid "Test if the token under the cursor matches the specified wildcard" +msgstr "" + +#: share/functions/__fish_urlencode.fish:1 +msgid "URL-encode stdin" +msgstr "" + +#: share/functions/abbr.fish:1 +msgid "Manage abbreviations" +msgstr "" + +#: share/functions/abbr.fish:40 +msgid "%s: invalid option -- %s\\n" +msgstr "" + +#: share/functions/abbr.fish:47 +msgid "%s: %s cannot be specified along with %s\\n" +msgstr "" + +#: share/functions/abbr.fish:56 +msgid "%s: option requires an argument -- %s\\n" +msgstr "" + +#: share/functions/abbr.fish:62 +msgid "%s: Unexpected argument -- %s\\n" +msgstr "" + +#: share/functions/abbr.fish:75 +msgid "%s: abbreviation must have a non-empty key\\n" +msgstr "" + +#: share/functions/abbr.fish:79 +msgid "%s: abbreviation must have a value\\n" +msgstr "" + +#: share/functions/abbr.fish:101 +msgid "%s: no such abbreviation '%s'\\n" +msgstr "" + +#: share/functions/alias.fish:2 +msgid "" +"Legacy function for creating shellscript functions using an alias-like syntax" +msgstr "" +"Bakåtkompatibilitetsfunktion för att skapa skalfunktioner med en alias-" +"liknande syntax" + +#: share/functions/alias.fish:36 +msgid "%s: Expected one or two arguments, got %d\\n" +msgstr "" + +#: share/functions/dirh.fish:2 +msgid "Print the current directory history (the back- and fwd- lists)" +msgstr "Visa arbetskatalogshistorik (bakåt och frammåt)" + +#: share/functions/export.fish:1 +msgid "Set global variable. Alias for set -g, made for bash compatibility" +msgstr "" + +#: share/functions/fish_indent.fish:1 +msgid "Indenter and prettifier for fish code" +msgstr "" + +#: share/functions/fish_vi_prompt.fish:17 +msgid "Simple vi prompt" +msgstr "" + +#: share/functions/funced.fish:36 +msgid "funced: You must specify one function name\n" +msgstr "" + +#: share/functions/funcsave.fish:11 +msgid "%s: Expected function name\\n" +msgstr "" + +#: share/functions/help.fish:77 +#, sh-format +msgid "" +"Please set the variable $BROWSER to a suitable browser and try again.\\n\\n" +msgstr "" + +#: share/functions/history.fish:5 +msgid "Deletes an item from history" +msgstr "" + +#: share/functions/math.fish:2 +msgid "Perform math calculations in bc" +msgstr "Utför matematiska beräkningar i bc" + +#: share/functions/mimedb.fish:8 +msgid "Look up file information via the mimedb database" +msgstr "" + +#: share/functions/popd.fish:2 +msgid "Pop dir from stack" +msgstr "Ta bort katalog från stack" + +# +#: share/functions/popd.fish:14 +msgid "%s: Directory stack is empty...\\n" +msgstr "%s: Katalogstacken är tom...\\n" + +#: share/functions/prevd.fish:28 +msgid "The number of positions to skip must be a non-negative integer\\n" +msgstr "Antalet positioner att hoppa över måste vara ett positivt heltal" + +#: share/functions/setenv.fish:2 +msgid "Set global variable. Alias for set -g, made for csh compatibility" +msgstr "" + +#~ msgid "If you can reproduce it, please send a bug report to %s." +#~ msgstr "" +#~ "Om du kan reproducera det, var vänlig skicka en buggrapport till %s." + +#~ msgid "All base system packages" +#~ msgstr "Alla bassystempaket" + +#~ msgid "All packages in world" +#~ msgstr "Alla paket i världen" + +#~ msgid "Installed package" +#~ msgstr "Installerade paket" + +#~ msgid "Usage overview of emerge" +#~ msgstr "Användningsöversikt av emerge" + +#~ msgid "Help on subject system" +#~ msgstr "Hjälp för ämnet system" + +#~ msgid "Help on subject config" +#~ msgstr "Hjäl för ämnet konfiguration" + +#~ msgid "Help on subject sync" +#~ msgstr "Hjälp för ämnet sync" + +#~ msgid "Use colors in output" +#~ msgstr "Använd färger" + +#~ msgid "Don't use colors in output" +#~ msgstr "Använd inte färger" + +#~ msgid "whatis entry" +#~ msgstr "'whatis'-inlägg" + +#~ msgid "Use to build" +#~ msgstr "Använd för att bygga" + +#~ msgid "Prefix to strip on patch" +#~ msgstr "Ta bort på fix" + +#~ msgid "Do not run update" +#~ msgstr "Kör inte uppdatering" + +#~ msgid "Search full package name" +#~ msgstr "Sök fullt paketnamn" + +#~ msgid "Access config file from shell" +#~ msgstr "Hitta konfigurationsfil via skalet" + +#~ msgid "Use cdrom-mount-point" +#~ msgstr "Välj cdrom-monteringsplats" + +#~ msgid "Use source override" +#~ msgstr "Använd källkodsåsidosättning" + +#~ msgid "Download Only" +#~ msgstr "Bara nedladdning" + +#~ msgid "Correct broken dependencies" +#~ msgstr "Korrigera trasiga beroenden" + +#~ msgid "Ignore missing packages" +#~ msgstr "Ignorera saknade paket" + +#~ msgid "Disable downloading packages" +#~ msgstr "Inaktivera paketnedladdning" + +#~ msgid "Automatic yes to prompts" +#~ msgstr "Svara automatiskt ja på alla frågor" + +#~ msgid "Compile source packages" +#~ msgstr "Kompilera källkodspaket" + +#~ msgid "Ignore package Holds" +#~ msgstr "Ignorera paketblockar" + +#~ msgid "Do not upgrade packages" +#~ msgstr "Upgradera inte paket" + +#~ msgid "Force yes" +#~ msgstr "Tvinga ja" + +#~ msgid "Erase obsolete files" +#~ msgstr "Radera förlegade filer" + +#~ msgid "Control default input to the policy engine" +#~ msgstr "Kontrollera standardindata till policymotorn" + +#~ msgid "Only perform operations that are trivial" +#~ msgstr "Utför bara triviala operationer" + +#~ msgid "Abort if any packages are to be removed" +#~ msgstr "Avbryt om paket ska tas bort" + +#~ msgid "Only accept source packages" +#~ msgstr "Acceptera bara källkodpaket" + +#~ msgid "Download only diff file" +#~ msgstr "Ladda bara ner difffiler" + +#~ msgid "Download only tar file" +#~ msgstr "Ladda bara tar-fil" + +#~ msgid "Only process arch-dependant build-dependencies" +#~ msgstr "Processa bara arkitekturberoende byggberoenden" + +#~ msgid "Ignore non-authenticated packages" +#~ msgstr "Ignorera oautentiserande paket" + +#~ msgid "Specify apt config file" +#~ msgstr "Välj apt-konfigurationsfil" + +#~ msgid "List bugs in rss format" +#~ msgstr "Lista information om inoder" + +#~ msgid "Read filenames from pipe" +#~ msgstr "Läs filnamn från rör" + +#~ msgid "Alias for 'get'" +#~ msgstr "Alias för 'get'" + +#~ msgid "Use specific conffile" +#~ msgstr "Välj konfigurationsfil" + +#~ msgid "" +#~ "Comma-separated list of package installation states to follow recursively" +#~ msgstr "" +#~ "Komma-separarad lista av paketinstallationstillstånd att följa rekursivt" + +#~ msgid "Comma-separated list of package installation states to show" +#~ msgstr "Komma-separarad lista av paketinstallationstillstånd att visa" + +#~ msgid "Probe a CD" +#~ msgstr "Sondera en CD" + +#~ msgid "File to grab servers" +#~ msgstr "Fil att hämta servrar från" + +#~ msgid "File as input" +#~ msgstr "Fil som indata" + +#~ msgid "Mirror-list file" +#~ msgstr "Spegel-listefil" + +#~ msgid "Output sources.list file" +#~ msgstr "Skriv en sources.list fil" + +#~ msgid "Write top servers to file" +#~ msgstr "Skriv top-servrar till fil" + +#~ msgid "Run on current dir" +#~ msgstr "Kör i den nuvarande katalogen" + +#~ msgid "Removable medium" +#~ msgstr "Löstagbart medium" + +#~ msgid "List of packages to install" +#~ msgstr "Lista av paket att installera" + +#~ msgid "Specify a non-mountpoint dir" +#~ msgstr "Välj katalog som inte är monteringsplats" + +#~ msgid "Select a method" +#~ msgstr "Välj metod" + +#~ msgid "Accept protocols" +#~ msgstr "Acceptera angivna protokoll" + +#~ msgid "Reject protocols" +#~ msgstr "Vägra använda angivna protokoll" + +#~ msgid "Numerical address" +#~ msgstr "Numerisk adress" + +#~ msgid "Use hardware address" +#~ msgstr "Använd hårdvaruadress" + +#~ msgid "Define math library" +#~ msgstr "Definera matematikbibliotek" + +#~ msgid "Give warnings for extensions to POSIX bc" +#~ msgstr "Varna vid användning av Posix-förlängningar" + +#~ msgid "Process exactly POSIX bc" +#~ msgstr "Använd exakt Posix bc" + +#~ msgid "Do not print the GNU welcome" +#~ msgstr "Visa inte GNUs välkomstmeddelande" + +#~ msgid "Remove the topmost global event block" +#~ msgstr "Ta bort den översta globala händelseblockeraren" + +#~ msgid "Print names of all existing builtins" +#~ msgstr "Visa namnen på alla tillgängliga inbbyggda kommandon" + +#~ msgid "Decompress to stdout" +#~ msgstr "Dekomprimera till standard ut" + +#~ msgid "Overwrite" +#~ msgstr "Skiv över" + +#~ msgid "Reduce memory usage" +#~ msgstr "Minska minnesanvändning" + +#~ msgid "Print compression ratios" +#~ msgstr "Skriv ut kompressionsfaktor" + +#~ msgid "Print license" +#~ msgstr "Skriv ut licens" + +#~ msgid "Compress file" +#~ msgstr "Komprimera fil" + +#~ msgid "Check integrity" +#~ msgstr "Verifiera integritet" + +#~ msgid "Supress errors" +#~ msgstr "Visa inte fel" + +#~ msgid "Small block size" +#~ msgstr "Liten blockstorlek" + +#~ msgid "Large block size" +#~ msgstr "Stor blockstorlek" + +#~ msgid "Play in random order" +#~ msgstr "Spela i slumpmässig ordning" + +#~ msgid "Increment the level of general verbosity by one" +#~ msgstr "Öka pratigheten ett steg" + +#~ msgid "" +#~ "Increment the verbose level in respect of SCSI command transport by one" +#~ msgstr "Öka pratighet om SCSI-kommandotransporten ett steg" + +#~ msgid "Set the misc debug value to #" +#~ msgstr "Välj den allmänna debugnivån" + +#~ msgid "Increment the misc debug level by one" +#~ msgstr "Öka den allmänna debugnivån ett steg" + +#~ msgid "Do not print out a status report for failed SCSI commands" +#~ msgstr "Skriv inte ut en statusrapport för misslyckade SCSI-kommandon" + +#~ msgid "Force to continue on some errors" +#~ msgstr "Tvinga att fortsätt vid fel" + +#~ msgid "Tell cdrecord to set the SCSI IMMED flag in certain commands" +#~ msgstr "Instruera cdrecord att sätta SCSI IMMED-flaggan i vissa kommandon" + +#~ msgid "" +#~ "Defines the minimum drive buffer fill ratio for the experimental ATAPI " +#~ "wait mode intended to free the IDE bus to allow hard disk and CD/DVD " +#~ "writer on the same IDE cable" +#~ msgstr "" +#~ "Definerar den minsta enhetsbufferfyllnadshastigheten för det " +#~ "experimentella ATAPI-vänteläget som är menat att underlätta för IDE-" +#~ "bussen att låta hårddisk och CD/DVD-skrivare befinna sig på samma IDE-" +#~ "kabel" + +#~ msgid "Complete CD/DVD-Recorder recording process with the laser turned off" +#~ msgstr "Fullfölj CD/DVD-brännarens inspelningsprocess med lasern avstängd" + +#~ msgid "Tells cdrecord to handle images created by readcd -clone" +#~ msgstr "Ange att cdrecord ska hantera bilder skapade av readcd -clone" + +#~ msgid "Set SAO (Session At Once) mode, usually called Disk At Once mode" +#~ msgstr "" +#~ "Välj SAO- (Session At Once) skrivläge, vanligtvis kallat Disk At Once-" +#~ "skrivläge" + +#~ msgid "Set TAO (Track At Once) writing mode" +#~ msgstr "Välj TAO- (Track At Once) skrivläge" + +#~ msgid "Select Set RAW writing, the preferred raw writing mode" +#~ msgstr "Välj det bättre RAW-skrivläget" + +#~ msgid "Select Set RAW writing, the less preferred raw writing mode" +#~ msgstr "Välj det mindre bra RAW-skrivläget" + +#~ msgid "" +#~ "Select Set RAW writing, the preferred raw writing mode if raw96r is not " +#~ "supported" +#~ msgstr "Välj det RAW-skrivläget som är bäst om stöd saknas för raw96r" + +#~ msgid "Allow multi session CDs to be made" +#~ msgstr "Tillåt skapandet av multisessions-CD" + +#~ msgid "" +#~ "Retrieve multi session info in a form suitable for mkisofs-1.10 or later" +#~ msgstr "" +#~ "Hämta multisessionsinfo i ett format lämpligt för mkisofs-1.10 och senare" + +#~ msgid "Retrieve and print out the table of content or PMA of a CD" +#~ msgstr "Hämta och skriv ut innehållsförteckningen eller PMA för en CD" + +#~ msgid "Retrieve and print out the ATIP (absolute Time in Pre-groove) info" +#~ msgstr "Hämta och skriv ut ATIP (absolute Time in Pre-groove) info" + +#~ msgid "The disk will only be fixated" +#~ msgstr "Fixera endast skivan" + +#~ msgid "Do not fixate the disk after writing the tracks" +#~ msgstr "Fixera inte skivan efter stt spåren skrivits" + +#~ msgid "" +#~ "Wait for input to become available on standard input before trying to " +#~ "open the SCSI driver" +#~ msgstr "" +#~ "Vänta på att indata ska bli tillgängligt från standard in innan försök " +#~ "rill att öppna SCSI-enheten" + +#~ msgid "Load the media and exit" +#~ msgstr "Ladda mediet och avsluta" + +#~ msgid "Load the media, lock the door and exit" +#~ msgstr "Ladda mediet, lås luckan och avsluta" + +#~ msgid "Eject disk after doing the work" +#~ msgstr "Skicka ut skivan efter arbetets utförande" + +#~ msgid "Set the speed factor of the writing process to #" +#~ msgstr "Sätt hastighetsfaktorn för skrivprocessen" + +#~ msgid "Blank a CD-RW and exit or blank a CD-RW before writing" +#~ msgstr "Töm en CD-RW och avsluta eller töm en CD-RW för skrivning" + +#~ msgid "Format a CD-RW/DVD-RW/DVD+RW disc" +#~ msgstr "Formatera en CD-RW/DVD-RW/DVD+RW-skiva" + +#~ msgid "Set the FIFO (ring buffer) size to #" +#~ msgstr "Välj FIFO- (ringbuffert) storlek" + +#~ msgid "Set the maximum transfer size for a single SCSI command to #" +#~ msgstr "Välj maximal överföringshastighet för ett enkilt SCSI-kommando" + +#~ msgid "Sets the SCSI target for the CD/DVD-Recorder" +#~ msgstr "Välj SCSI-målet för CD/DVD-brännaren" + +#~ msgid "Set the grace time before starting to write to ># seconds" +#~ msgstr "Välj väntetiden i sekunder innan skrivning till skivan påbörjas" + +#~ msgid "Set the default SCSI command timeout value to # seconds" +#~ msgstr "Välj standard-SCSI-timeoutvärdet i sekunder" + +#~ msgid "Allows the user to manually select a driver for the device" +#~ msgstr "Låter användaren manuellt välja en drivrutin för enheten" + +#~ msgid "Set driver specific options" +#~ msgstr "Välj drivrutinsspecifika inställningar" + +#~ msgid "" +#~ "Set the driveropts specified by driveropts=option list, the speed of the " +#~ "drive and the dummy flag and exit" +#~ msgstr "" +#~ "Välj drivrutinsinställningar angivna av listandriveropt=inställning, " +#~ "hastigheten på enheten och dunny-flaggan och avsluta" + +#~ msgid "Checks if a driver for the current drive is present and exit" +#~ msgstr "" +#~ "Kontrollerar om en drivrutin för den nuvarande enheten finns tillgänglig " +#~ "och avsluta" + +#~ msgid "" +#~ "Print the drive capabilities for SCSI-3/mmc compliant drives as obtained " +#~ "from mode page 0x2A" +#~ msgstr "" +#~ "Visa enhetsförmågor för SCSI-3/mmc-anpassade enheter hämtade från " +#~ "lägessida 0x2A" + +#~ msgid "Do an inquiry for the drive, print the inquiry info and exit" +#~ msgstr "" +#~ "Utför en föffrågan på enheten, visa förfrågningsinformationen och avsluta" + +#~ msgid "" +#~ "Scan all SCSI devices on all SCSI busses and print the inquiry strings" +#~ msgstr "" +#~ "Genomsök alla SCSI-enheter på alla SCSI-bussar och skriv ut " +#~ "förfrågningssträngarna" + +#~ msgid "Try to reset the SCSI bus where the CD recorder is located" +#~ msgstr "Försök att återställa SCSI-bussen som CD-brännaren befinner sig på" + +#~ msgid "Try to send an abort sequence to the drive" +#~ msgstr "Försök skicka en avbrottssekvens till enheten" + +#~ msgid "Allow cdrecord to write more than the official size of a medium" +#~ msgstr "" +#~ "Tillåt cdrecord att skriva mer än den officiella storleken på ett medium" + +#~ msgid "Ignore the known size of the medium, use for debugging only" +#~ msgstr "" +#~ "Ignorera den kända storleken på ett medium, använd endast vid debuggning" + +#~ msgid "Use *.inf files to overwrite audio options" +#~ msgstr "Använd *.inf-filer för att skriva över ljudinställningar" + +#~ msgid "Set the default pre-gap size for all tracks except track nr 1" +#~ msgstr "Välj standard-pre-gap-storlek för alla spår utom spår 1" + +#~ msgid "Set Packet writing mode (experimental interface)" +#~ msgstr "Välj paketskrivningsläge (experimentellt gränssnitt)" + +#~ msgid "Set the packet size to #, forces fixed packet mode (experimental)" +#~ msgstr "Ange paketstorlek, tvingar fast paket-läge (experimentell)" + +#~ msgid "" +#~ "Do not close the current track, only when in packet writing mode " +#~ "(experimental)" +#~ msgstr "" +#~ "Avsluta inte det nuvarande spåret, bara i paketskrivningsläge " +#~ "(experimentell)" + +#~ msgid "Set the Media Catalog Number of the CD" +#~ msgstr "Välj Mediakatalog-nummer för CD:n" + +#~ msgid "" +#~ "Write CD-Text info based on info taken from a file that contains ascii " +#~ "info for the text strings" +#~ msgstr "" +#~ "Skriv CD-Text-infromation baserat på information tagen från fil i ascii-" +#~ "format" + +#~ msgid "Write CD-Text based on info found in the binary file filename" +#~ msgstr "" +#~ "Skriv CD-Text-infromation baserat på information tagen från fil i binärt " +#~ "format" + +#~ msgid "" +#~ "Take all recording related info from a CDRWIN compliant CUE sheet file" +#~ msgstr "" +#~ "Ta all inspelningrelaterad information från en CDRWIN-anpassad CUE-" +#~ "bladsfil" + +#~ msgid "Set the International Standard Recording Number for the next track" +#~ msgstr "Ange det internationella standardinspelningsnumret för nästa spår" + +#~ msgid "Sets an index list for the next track" +#~ msgstr "Ange en indexlista för nästa spår" + +#~ msgid "All subsequent tracks are written in CD-DA audio format" +#~ msgstr "Alla följande spår är skrivna i CD-DA-ljudformatet" + +#~ msgid "Audio data is assumed to be in byte-swapped (little-endian) order" +#~ msgstr "Ljuddata antas vara i omvänd byteordning" + +#~ msgid "" +#~ "All subsequent tracks are written in CD-ROM mode 1 (Yellow Book) format" +#~ msgstr "" +#~ "Alla följande spår är skrivna i CD-ROM läge 1 (Yellow book) formatet" + +#~ msgid "All subsequent tracks are written in CD-ROM mode 2 format" +#~ msgstr "Alla följande spår är skrivna i CD-ROM läge 2 formatet" + +#~ msgid "All subsequent tracks are written in CD-ROM XA mode 2 form 1 format" +#~ msgstr "Alla följande spår är skrivna i CD-ROM XA läge 2 form 1 formatet" + +#~ msgid "All subsequent tracks are written in CD-ROM XA mode 2 form 2 format" +#~ msgstr "Alla följande spår är skrivna i CD-ROM XA läge 2 form 2 formatet" + +#~ msgid "" +#~ "All subsequent tracks are written in a way that allows a mix of CD-ROM XA " +#~ "mode 2 form 1/2 format" +#~ msgstr "" +#~ "Alla följande spår är skrivna på ett sätt som fillåter en blandning av CD-" +#~ "ROM XA läge 2 form 1/2 formaten" + +#~ msgid "The TOC type for the disk is set to CDI, with XA only" +#~ msgstr "Innehållsförteckningen är satt till CDI, med enbart XA" + +#~ msgid "Use the ISO-9660 file system size as the size of the next track" +#~ msgstr "Använd ISO-9660-filsystemets storlek som storlek på nästa spår" + +#~ msgid "" +#~ "15 sectors of zeroed data will be added to the end of this and each " +#~ "subsequent data track" +#~ msgstr "" +#~ "Lägg till 15 sektorer av nolldata till slutet av varje efterföljande " +#~ "dataspår" + +#~ msgid "Set the amount of data to be appended as padding to the next track" +#~ msgstr "" +#~ "Ange mängden data som skall läggas till som paddning till nästa spår" + +#~ msgid "Do not pad the following tracks - the default" +#~ msgstr "Lägg inte till paddning till de följande spåren - standard" + +#~ msgid "Output diagnostic for changed files" +#~ msgstr "Visa information om ändrade filer" + +#~ msgid "Do not dereference symbolic links" +#~ msgstr "Följ ej symboliska länkar" + +#~ msgid "Change from owner/group" +#~ msgstr "Byt från ägare/grupp" + +#~ msgid "Use same owner/group as file" +#~ msgstr "Använd samma ägargrupp som angiven fil" + +#~ msgid "Operate recursively" +#~ msgstr "Rekurivt läge" + +#~ msgid "Output diagnostic for every file" +#~ msgstr "Visa information om alla filer" + +#~ msgid "Command to run" +#~ msgstr "Kommando att utföra" + +#~ msgid "Add text to the end of the selected area" +#~ msgstr "Lägg till text till slutet av valt område" + +#~ msgid "Add text at cursor" +#~ msgstr "Lägg till text vid markören" + +#~ msgid "Replace selected part" +#~ msgstr "Ersätt valt område" + +#~ msgid "Select job under cursor" +#~ msgstr "Välj jobb under markören" + +#~ msgid "Select process under cursor" +#~ msgstr "Välj process under markören" + +#~ msgid "Select token under cursor" +#~ msgstr "Välj symbol under markören" + +#~ msgid "Select entire command line (default)" +#~ msgstr "Välj hela kommandoraden (standard)" + +#~ 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" + +#~ msgid "Inject readline functions to reader" +#~ msgstr "Skicka readline-funktion till läsaren" + +#~ msgid "Set/get cursor position, not buffer contents" +#~ msgstr "Sätt/hämta markörposition, inte bufferinnehåll" + +#~ msgid "Command to add completion to" +#~ msgstr "Kommando att komplettera" + +#~ msgid "Path to add completion to" +#~ msgstr "Sökväg att komplettera" + +#~ msgid "Posix-style option to complete" +#~ msgstr "Posix-typ av flagga att komplettera" + +#~ msgid "GNU-style option to complete" +#~ msgstr "GNU-typ av flagga att komplettera" + +#~ msgid "Old style long option to complete" +#~ msgstr "Gammal typ av lång flagga att komplettera" + +#~ msgid "Do not use file completion" +#~ msgstr "Använd inte fil-komplettering" + +#~ msgid "Require parameter" +#~ msgstr "Kräv parameter" + +#~ msgid "Require parameter and do not use file completion" +#~ msgstr "Kräv parameter, använd inte filkomplettering" + +#~ msgid "A list of possible arguments" +#~ msgstr "Parametrar specifikt för denna flagga för flagga" + +#~ msgid "Description of this completions" +#~ msgstr "Beskrivning av denna komplettering" + +#~ msgid "Option list is not complete" +#~ msgstr "Detta kommando accepterar andra flaggor än de här angivna" + +#~ msgid "" +#~ "The completion should only be used if the specified command has a zero " +#~ "exit status" +#~ msgstr "" +#~ "Completteringen skall bara användas om det angivna kommandot har " +#~ "nollskild avslutningstatus" + +#~ msgid "Cache test results in file config.cache" +#~ msgstr "Cachea test resultat i filen config.cache" + +#~ msgid "Do not create output files" +#~ msgstr "Skapa inte utfiler" + +#~ msgid "Architecture-independent install directory" +#~ msgstr "Arkitekturoberoende installationskatalog" + +#~ msgid "Architecture-dependent install directory" +#~ msgstr "Arkitekturberoende installationskatalog" + +#~ msgid "Configure for building on BUILD" +#~ msgstr "Konfiurera för att bygga på given målarkitektur" + +#~ msgid "Cross-compile to build programs to run on HOST" +#~ msgstr "Korskompilera för angiven värd" + +#~ msgid "Configure for building compilers for TARGET" +#~ msgstr "Konfigurera för att bygga kompilator för angivet mål" + +#~ msgid "Select output delimiter" +#~ msgstr "Välj utdataavgränsare" + +#~ msgid "Kerberos server mode" +#~ msgstr "Kerberosserverläge" + +#~ msgid "Print out history information for files" +#~ msgstr "Visa historikinformation för filer" + +#~ msgid "Prompt for password for authenticating server" +#~ msgstr "Be om lösenord för autentisering" + +#~ msgid "Password server mode" +#~ msgstr "Serverlösenordsläge" + +#~ msgid "Show last revision where each line of module was modified" +#~ msgstr "Visa senaste revision vid vilken vare rad i modul ändrades" + +#~ msgid "Indicate that a Module is no longer in use" +#~ msgstr "Indikera att modul inte längre används" + +#~ msgid "Print out history information for a module" +#~ msgstr "Skriv ut historik för modul" + +#~ msgid "Add a symbolic tag to a module" +#~ msgstr "Lägg till symbolisk tagg till modul" + +#~ msgid "Server mode" +#~ msgstr "Serverläge" + +#~ msgid "Display status information on checked out files" +#~ msgstr "Visa status för utcheckade files" + +#~ msgid "Add a symbolic tag to checked out version of files" +#~ msgstr "Lägg till symbolisk tagg till utcheckad version av filer" + +#~ msgid "Bring work tree in sync with repository" +#~ msgstr "Synkronisera arbetsträd med förråd" + +#~ msgid "See who is watching a file" +#~ msgstr "Visa övervakningar på fil" + +#~ msgid "Disable this command" +#~ msgstr "Inaktivera kommando" + +#~ msgid "Shows brief description of command and its arguments" +#~ msgstr "Visa kort beskrivning av underkommandon" + +#~ msgid "Suppress informational output" +#~ msgstr "Tyst läge" + +#~ msgid "Neither verbose nor quiet output" +#~ msgstr "Varken tyst eller utförligt läge" + +#~ msgid "Give output suitable for get --context" +#~ msgstr "Formatera utdata lämpligt för get --context" + +#~ msgid "Generate XML formatted output" +#~ msgstr "Generera XML-formaterad utdata" + +#~ msgid "Give human-readable output" +#~ msgstr "Människoanpassad formatering av utdata" + +#~ msgid "Don't summarize changes" +#~ msgstr "Summera inte ändringar" + +#~ msgid "Answer yes to all patches" +#~ msgstr "Svara ja på alla fixar" + +#~ msgid "Prompt user interactively" +#~ msgstr "Fråga användaren interaktivt" + +#~ msgid "Output patch in a darcs-specific format similar to diff -u" +#~ msgstr "Skriv fix i darcs-specifikt format som liknar diff -u" + +#~ msgid "Specify hash of creator patch (see docs)" +#~ msgstr "Ange hash av skaparfix (se dokumentationen)" + +#~ msgid "Make scripts executable" +#~ msgstr "Gör skript exekverbara" + +#~ msgid "Allow conflicts, but don't mark them" +#~ msgstr "Tillåt konflikter, men markera dem inte" + +#~ msgid "Run the test script" +#~ msgstr "Kör testskript" + +#~ msgid "Don't run the test script" +#~ msgstr "Kör inte testskript" + +#~ msgid "Don't actually take the action" +#~ msgstr "Gör ingenting" + +#~ msgid "Don't automatically fulfill dependencies" +#~ msgstr "Fråga efter extra beroenden" + +#~ msgid "Set default repository [DEFAULT]" +#~ msgstr "Välj standardförråd" + +#~ msgid "Don't set default repository" +#~ msgstr "Välj inte standardförråd" + +#~ msgid "Edit the long comment by default" +#~ msgstr "Redigera långa kommentarer som standard" + +#~ msgid "Don't give a long comment" +#~ msgstr "Redigera inte lång kommentar" + +#~ msgid "Prompt for whether to edit the long comment" +#~ msgstr "Fråga om den långa kommentaren skall redigeras" + +#~ msgid "Don't remove the test directory" +#~ msgstr "Ta inte bort testkatalog" + +#~ msgid "Remove the test directory" +#~ msgstr "Ta bort testkatalog" + +#~ msgid "Sign the patch with your gpg key" +#~ msgstr "Signera fix med din gpg-nyckel" + +#~ msgid "Specify sendmail command" +#~ msgstr "Ange sendmailkommando" + +#~ msgid "Give patch name and comment in file" +#~ msgstr "Välj fixnamn och kommentar via fil" + +#~ msgid "Send to context stored in FILENAME" +#~ msgstr "Skicka till sammanhang lagrat i FILNAMN" + +#~ msgid "Verify that the patch was signed by a key in PUBRING" +#~ msgstr "Verifiera att fix är signerad från nyckel i angiven nyckelring" + +#~ msgid "Don't verify patch signature" +#~ msgstr "Verifiera inte fix-signaturer" + +#~ msgid "Mark conflicts" +#~ msgstr "Markera konflikter" + +#~ msgid "Forward unsigned messages without extra header" +#~ msgstr "Skicka vidare osignerade meddelanden utan extra huvud" + +#~ msgid "Specify a sibling directory" +#~ msgstr "Ange en syskonkatalog" + +#~ msgid "Relink pristine tree (not recommended)" +#~ msgstr "Linka om till det orörda trädet (inte rekommenderat)" + +#~ msgid "Ignore changes whose lines match the REGEX" +#~ msgstr "Ignorera ändringar som matchar REGEX" + +#~ msgid "Output NUM lines of copied context" +#~ msgstr "Skriv ut NUM rader av kopierad sammanhang" + +#~ msgid "Output NUM lines of unified context" +#~ msgstr "Skriv ut NUM rader av unifieradt sammanhang" + +#~ msgid "Output at most NUM print columns" +#~ msgstr "Skriv ut som mest NUM kolumner" + +#~ msgid "Compare FILE2 to all operands" +#~ msgstr "Jämför FIL2 med alla operander" + +#~ msgid "Write size for all files" +#~ msgstr "Skriv ut storlek för alla filer" + +#~ msgid "Print file size, not disk usage" +#~ msgstr "Skriv ut filstorlek, inte använt diskutrymme" + +#~ msgid "Use 1B block size" +#~ msgstr "Använd 1B som blockstorlek" + +#~ msgid "Produce grand total" +#~ msgstr "Visa totalsumma" + +#~ msgid "Dereference file symlinks" +#~ msgstr "Följ symboliska länkar till filer" + +#~ msgid "Use 1kB block size" +#~ msgstr "Använd 1kB blockstorlek" + +#~ msgid "Count hard links multiple times" +#~ msgstr "Räkna hårda länkar alla gånger de förekommer" + +#~ msgid "Dereference all symlinks" +#~ msgstr "Följ alla symboliska länkar" + +#~ msgid "Do not include subdirectory size" +#~ msgstr "Inkludera inte underkatalogers storlek" + +#~ msgid "Display only a total for each argument" +#~ msgstr "Visa bara en totalsumma för varje argument" + +#~ msgid "Command" +#~ msgstr "Kommando" + +#~ msgid "Start with an empty environment" +#~ msgstr "Starta med tom miljö" + +#~ msgid "Remove variable from the environment" +#~ msgstr "Ta bort variabel från variablestacken" + +#~ msgid "File is executable" +#~ msgstr "Fil är program" + +#~ msgid "Run fish with this command" +#~ msgstr "Utför detta kommando i fish" + +#~ msgid "Only parse input, do not execute" +#~ msgstr "Verifiera bara kommandon, utför dem inte" + +#~ msgid "Run in interactive mode" +#~ msgstr "Kör i interaktivt läge" + +#~ msgid "Run in login mode" +#~ msgstr "Kör i loginläge" + +#~ msgid "Set function description" +#~ msgstr "Välj funktionsbeskrivning" + +#~ msgid "Function" +#~ msgstr "Funktion" + +#~ msgid "Builtin" +#~ msgstr "Inbyggt kommando" + +#~ msgid "Make the function a job exit event handler" +#~ msgstr "Gör funktionen till en händelsehanterare för avslutade jobb" + +#~ msgid "Make the function a process exit event handler" +#~ msgstr "Gör funktionen till en händelsehanterare för avslutade processer" + +#~ msgid "Make the function a signal event handler" +#~ msgstr "Gör funktionen till en händelsehanterare för signaler" + +#~ msgid "Make the function a variable update event handler" +#~ msgstr "Gör funktionen till en händelsehanterare för variabeluppdateringar" + +#~ msgid "Erase function" +#~ msgstr "Radera funktion" + +#~ msgid "Unmount" +#~ msgstr "Avmontera" + +#~ msgid "Quiet" +#~ msgstr "Tyst läge" + +#~ msgid "Lazy unmount" +#~ msgstr "Lat avmontering" + +#~ msgid "Enable automatic template instantiation at link time" +#~ msgstr "Slå på automatisk templateinstantiering vid länktillfälle" + +#~ msgid "Ignore errors" +#~ msgstr "Ignorera fel" + +#~ msgid "Make a signature" +#~ msgstr "Skapa signatur" + +#~ msgid "Make a clear text signature" +#~ msgstr "Skapa klartextsignatur" + +#~ msgid "Make a detached signature" +#~ msgstr "Skapa bortkopplad signatur" + +#~ msgid "Encrypt data" +#~ msgstr "Kryptera data" + +#~ msgid "Encrypt with a symmetric cipher using a passphrase" +#~ msgstr "Kryptera med symmetriskt chiffer och passfras" + +#~ msgid "Store only (make a simple RFC1991 packet)" +#~ msgstr "Endast lagring (skapa ett enkelt RFC1991-paket)" + +#~ msgid "Assume specified file or stdin is sigfile and verify it" +#~ msgstr "" +#~ "Antag att angiven fil eller standard in är signatur och verifiera den" + +#~ msgid "" +#~ "Modify certain other commands to accept multiple files for processing" +#~ msgstr "Ändra vissa andra kommandon so de behandlar multipla filer" + +#~ msgid "Identical to '--multifile --verify'" +#~ msgstr "Identiskt med '--multifile --verify'" + +#~ msgid "Identical to '--multifile --encrypt'" +#~ msgstr "Identiskt med '--multifile --encrypt'" + +#~ msgid "Identical to --multifile --decrypt" +#~ msgstr "Identiskt med --multifile --decrypt" + +#~ msgid "" +#~ "List all keys from the public keyrings, or just the ones given on the " +#~ "command line" +#~ msgstr "" +#~ "Visa alla nycklar från den öppna nyckelringen, eller de angivna på " +#~ "kommandoraden" + +#~ msgid "" +#~ "List all keys from the secret keyrings, or just the ones given on the " +#~ "command line" +#~ msgstr "" +#~ "Visa alla nycklar från den hemliga nyckelringen, eller de angivna på " +#~ "kommandoraden" + +#~ msgid "Same as --list-keys, but the signatures are listed too" +#~ msgstr "Samma som --list-keys, men visa även signaturer" + +#~ msgid "Same as --list-keys, but the signatures are listed and verified" +#~ msgstr "Samma som --list-keys, men visa och verifiera även signaturer" + +#~ msgid "List all keys with their fingerprints" +#~ msgstr "Visa alla nycklar och deras fingeravtryck" + +#~ msgid "Present a menu which enables you to do all key related tasks" +#~ msgstr "Visa en meny som låter dig utföra alla nyckelrelaterade aktiviteter" + +#~ msgid "Sign a public key with your secret key" +#~ msgstr "Signera en öppen nyckel med din hemliga nyckel" + +#~ msgid "Sign a public key with your secret key but mark it as non exportable" +#~ msgstr "" +#~ "Signera en öppen nyckel med din hemliga nyckel men markera den som icke-" +#~ "exporterbar" + +#~ msgid "Remove key from the public keyring" +#~ msgstr "Ta bort en nyckel från den öppna nyckelringen" + +#~ msgid "Remove key from the secret and public keyring" +#~ msgstr "Ta bort en nyckel från den öppna och den hemliga nyckelringen" + +#~ msgid "" +#~ "Same as --delete-key, but if a secret key exists, it will be removed first" +#~ msgstr "" +#~ "Samma som --delete-key, men om en hemlig nyckel existerar, ta bort den " +#~ "först" + +#~ msgid "Generate a revocation certificate for the complete key" +#~ msgstr "Generera ett återkallelsecertifikat för hela nyckeln" + +#~ msgid "Generate a designated revocation certificate for a key" +#~ msgstr "Generera ett utsett återkallelsecertifikat för en nyckel" + +#~ msgid "Export all or the given keys from all keyrings" +#~ msgstr "Exportera alla eller alla angivna nycklar från alla nyckelringar" + +#~ msgid "Same as --export but sends the keys to a keyserver" +#~ msgstr "Samma som --export, men skicka nycklar till en nyckelserver" + +#~ msgid "Same as --export, but exports the secret keys instead" +#~ msgstr "Samma som --export, men exportera hemliga nycklar istället" + +#~ msgid "Import/merge keys" +#~ msgstr "Importera/sammanslå mycklar" + +#~ msgid "Import the keys with the given key IDs from a keyserver" +#~ msgstr "Importera nycklarna med givet nyckel-id från nyckelserver" + +#~ msgid "" +#~ "Request updates from a keyserver for keys that already exist on the local " +#~ "keyring" +#~ msgstr "" +#~ "Begär uppdateringar från en nyckelserver för nycklar som redan existerar " +#~ "i den lokala nyckelringen" + +#~ msgid "Search the keyserver for the given names" +#~ msgstr "Sök nyckelservern efter de angivna namnen" + +#~ msgid "Do trust database maintenance" +#~ msgstr "Utför underhåll på förtroendedatabasen" + +#~ msgid "Do trust database maintenance without user interaction" +#~ msgstr "Utför underhåll på förtroendedatabasen utan användarinteraktion" + +#~ msgid "Send the ownertrust values to stdout" +#~ msgstr "Visa ögarförtroendevärdena på standard ut" + +#~ msgid "" +#~ "Update the trustdb with the ownertrust values stored in specified files " +#~ "or stdin" +#~ msgstr "" +#~ "Uppdatera förtroendedatabasen med ägarförtroendevärdena lagrade i den " +#~ "angivna filen eller standard in" + +#~ msgid "Create signature caches in the keyring" +#~ msgstr "Skapa signarurcache i nyckelringen" + +#~ msgid "" +#~ "Print message digest of specified algorithm for all given files or stdin" +#~ msgstr "" +#~ "Visa meddelandedigest med given algoritm för alla angivna filer eller " +#~ "standard in" + +#~ msgid "Print message digest of all algorithms for all given files or stdin" +#~ msgstr "" +#~ "Visa meddelandedigest med given algoritm för alla angivna filer eller " +#~ "standard in" + +#~ msgid "Emit specified number of random bytes of the given quality level" +#~ msgstr "" +#~ "Skapa det angivna antalet slumpmässiga bytes med den angivna kvaliteten" + +#~ msgid "Display version and supported algorithms, and exit" +#~ msgstr "Visa version och stödda algoritmer och avsluta" + +#~ msgid "Display warranty and exit" +#~ msgstr "Visa garanti och avsluta" + +#~ msgid "Create ASCII armored output" +#~ msgstr "Skapa ASCII-skyddad utdata" + +#~ msgid "" +#~ "Sets a limit on the number of bytes that will be generated when " +#~ "processing a file" +#~ msgstr "" +#~ "Sätt gräns på antal bytes som kommer genereras vid behandlande av en fil" + +#~ msgid "Use specified key as the key to sign with" +#~ msgstr "Använd angiven nyckel som nyckel för signering" + +#~ msgid "Use specified key as the default key to sign with" +#~ msgstr "Använd angiven nyckel som standardnyckel för signering" + +#~ msgid "Encrypt for specified user id" +#~ msgstr "Kryptera för angivet användarid" + +#~ msgid "Encrypt for specified user id, but hide the keyid of the key" +#~ msgstr "Kryptera för angivet användarid, men dölj nyckelid hos nyckel" + +#~ msgid "Use specified user id as default recipient" +#~ msgstr "Använd angiven användarid som standardmottagare" + +#~ msgid "Use the default key as default recipient" +#~ msgstr "Använd standardnyckel som standardmottagare" + +#~ msgid "Reset --default-recipient and --default-recipient-self" +#~ msgstr "Återställ --default-recipient och --default-recipient-self" + +#~ msgid "Give more information during processing" +#~ msgstr "Ge mer information under behandling" + +#~ msgid "Compression level" +#~ msgstr "Kompressionsnivå" + +#~ msgid "Use a different decompression method for BZIP2 compressed files" +#~ msgstr "Använd alternativ dekompressionsmetod för BZIP2-komprimerade filer" + +#~ msgid "" +#~ "Treat input files as text and store them in the OpenPGP canonical text " +#~ "form with standard 'CRLF' line endings" +#~ msgstr "" +#~ "Behandla indatafiler som text och lagra dem i det kanoniska OpenPGP-" +#~ "textformatet med standard 'CRLF' radavslut" + +#~ msgid "" +#~ "Don't treat input files as text and store them in the OpenPGP canonical " +#~ "text form with standard 'CRLF' line endings" +#~ msgstr "" +#~ "Behandla inte indatafiler som text och lagra dem inte i det kanoniska " +#~ "OpenPGP-textformatet med standard 'CRLF' radavslut" + +#~ msgid "Don't make any changes (this is not completely implemented)" +#~ msgstr "Gör inga ändringar (inte helt implementerat)" + +#~ msgid "Prompt before overwrite" +#~ msgstr "Fråga före överskrivning" + +#~ msgid "Batch mode" +#~ msgstr "Satsvis-läge" + +#~ msgid "Don't use batch mode" +#~ msgstr "Använd inte satsvis-läge" + +#~ msgid "Never write output to terminal" +#~ msgstr "Skriv aldrig utdata till terminalen" + +#~ msgid "Assume yes on most questions" +#~ msgstr "Anta ja på de flesta frågor" + +#~ msgid "Assume no on most questions" +#~ msgstr "Anta nej på de flesta frågor" + +#~ msgid "Prompt for a certification level when making a key signature" +#~ msgstr "Fråga efter certifieringsnivå vid nyckelsignaturskapande" + +#~ msgid "Don't prompt for a certification level when making a key signature" +#~ msgstr "Fråga inte efter certifieringsnivå vid nyckelsignaturskapande" + +#~ msgid "" +#~ "The default certification level to use for the level check when signing a " +#~ "key" +#~ msgstr "" +#~ "Standardcertifieringsnivå att använda för nivåkontroll vid nyckelsignering" + +#~ msgid "" +#~ "Disregard any signatures with a certification level below specified level " +#~ "when building the trust database" +#~ msgstr "" +#~ "Ignorera alla signaturer med signaturnivå under angiven nivå vid " +#~ "byggandet av förtroendedatabasen" + +#~ msgid "" +#~ "Assume that the specified key is as trustworthy as one of your own secret " +#~ "keys" +#~ msgstr "" +#~ "Anta att den angivna nyckeln är lika pålitlig som en av dina egna hemliga " +#~ "nycklar" + +#~ msgid "Specify trust model" +#~ msgstr "Ange förtroendemodell" + +#~ msgid "Select how to display key IDs" +#~ msgstr "Välj hur nyckelid ska visas" + +#~ msgid "Options for the keyserver" +#~ msgstr "Inställningar till nyckelservern" + +#~ msgid "Options for importing keys" +#~ msgstr "Inställningar för att importera nycklar" + +#~ msgid "Options for exporting keys" +#~ msgstr "Inställningar för att exportera nycklar" + +#~ msgid "Options for listing keys and signatures" +#~ msgstr "Inställningar för visning av nycklar och signaturer" + +#~ msgid "Options for verifying signatures" +#~ msgstr "Inställningar för verifiering av signaturer" + +#~ msgid "" +#~ "Display the keyring name at the head of key listings to show which " +#~ "keyring a given key resides on" +#~ msgstr "" +#~ "Visa nyckelringnamnet vid toppen av nyckellistan för att visa vilken " +#~ "nyckelring en given nyckel ligger i" + +#~ msgid "Set the home directory" +#~ msgstr "Välj hemkatalog" + +#~ msgid "Set the native character set" +#~ msgstr "Välj den interna teckenuppsättningen" + +#~ msgid "Assume that following command line arguments are given in UTF8" +#~ msgstr "Antag att efterföljande argument är lagrade i UTF8" + +#~ msgid "" +#~ "Assume that following arguments are encoded in the character set " +#~ "specified by --display-charset" +#~ msgstr "" +#~ "Antag att efterföljande argument är lagrade i teckenuppsättningen angiven " +#~ "av --display-charset" + +#~ msgid "Shortcut for '--options /dev/null'" +#~ msgstr "Genväg för '--options /dev/null'" + +#~ msgid "Write attribute subpackets to the specified file descriptor" +#~ msgstr "Skriv attributunderpaket till angiven filidentifierare" + +#~ msgid "Include secret key comment packets when exporting secret keys" +#~ msgstr "" +#~ "Inkludera hemliga nyckel-kommentarpaket vid exportering av hemliga nycklar" + +#~ msgid "Don't include secret key comment packets when exporting secret keys" +#~ msgstr "" +#~ "Inkludera inte hemliga nyckel-kommentarpaket vid exportering av hemliga " +#~ "nycklar (standard)" + +#~ msgid "Don't use a comment string" +#~ msgstr "Använd inte en kommentarsträng" + +#~ msgid "Include the version string in ASCII armored output" +#~ msgstr "Inkludera versionssträng i ASCII-skyddat utdata" + +#~ msgid "Don't include the version string in ASCII armored output" +#~ msgstr "Inkludera inte versionssträng i ASCII-skyddat utdata (standard)" + +#~ msgid "Set the 'for your eyes only' flag in the message" +#~ msgstr "Sätt 'for your eyes only'-flaggan i meddelandet" + +#~ msgid "Clear the 'for your eyes only' flag in the message" +#~ msgstr "Töm 'for your eyes only'-flaggan i meddelandet" + +#~ msgid "Create file with name as given in data" +#~ msgstr "Skapa fil med namn angivet i data" + +#~ msgid "Don't create file with name as given in data" +#~ msgstr "Skapa inte fil med namn angivet i data" + +#~ msgid "Use specified cipher algorithm" +#~ msgstr "Använd angiven chiffer-algoritm" + +#~ msgid "Use specified message digest algorithm" +#~ msgstr "Använd angiven meddelandedigestalgoritm" + +#~ msgid "Use specified compression algorithm" +#~ msgstr "Använd angiven kompressionsalgoritm" + +#~ msgid "Use specified message digest algorithm when signing a key" +#~ msgstr "Använd angiven meddelandedigestalgoritm vid nyckelsignering" + +#~ msgid "Use specified cipher algorithm to protect secret keys" +#~ msgstr "Använd angiven chifferalgoritm för att skydda hemliga nycklar" + +#~ msgid "Use specified digest algorithm to mangle the passphrases" +#~ msgstr "Använd angiven digestalgoritm för passfrasmangling" + +#~ msgid "Selects how passphrases are mangled" +#~ msgstr "Välj hur passfrasmangling" + +#~ msgid "Integrity protect secret keys by using a SHA-1 checksum" +#~ msgstr "" +#~ "Sködda hemliga nycklars integritet genom att använda en SHA-1-" +#~ "kontrollsumma" + +#~ msgid "Never allow the use of specified cipher algorithm" +#~ msgstr "Tilåt aldrig användandet av angiven chifferalgoritm" + +#~ msgid "Never allow the use of specified public key algorithm" +#~ msgstr "Tillåt aldrig användandet av angiven öppen nyckel-algoritm" + +#~ msgid "Do not cache the verification status of key signatures" +#~ msgstr "Cache:a inte verifieringsstatus av nyckelsignaturer" + +#~ msgid "Do not verify each signature right after creation" +#~ msgstr "Kontrollera inte varje signatur direkt efter skapande" + +#~ msgid "Automatically run the --check-trustdb command internally when needed" +#~ msgstr "Utför automatiskt '--check-trustdb'-kommandot internt vid behov" + +#~ msgid "Never automatically run the --check-trustdb" +#~ msgstr "Utför aldrig automatiskt '--check-trustdb'-kommandot" + +#~ msgid "Do not put the recipient keyid into encrypted packets" +#~ msgstr "Lägg inte in mottagarens nyckelid i krypterade paket" + +#~ msgid "Put the recipient keyid into encrypted packets" +#~ msgstr "Lägg in mottagarens nyckelid i krypterade paket" + +#~ msgid "" +#~ "Change the behavior of cleartext signatures so that they can be used for " +#~ "patch files" +#~ msgstr "" +#~ "Ändra beteendet av klartextsignaturer så att de kan användas för fix-filer" + +#~ msgid "Mangle From-field of email headers (default)" +#~ msgstr "Mangla 'From'-fält i e-posthuvuden (standard)" + +#~ msgid "Do not mangle From-field of email headers" +#~ msgstr "Mangla inte 'From'-fält i e-posthuvuden (standard)" + +#~ msgid "Try to use the GnuPG-Agent" +#~ msgstr "Försök använda GnuPG-Agent" + +#~ msgid "Do not try to use the GnuPG-Agent" +#~ msgstr "Försök inte använda GnuPG-Agent" + +#~ msgid "Force v3 signatures for signatures on data" +#~ msgstr "Tvinga v3-signaturer för signering av data" + +#~ msgid "Do not force v3 signatures for signatures on data" +#~ msgstr "Tvinga inte v3-signaturer för signering av data" + +#~ msgid "Always use v4 key signatures even on v3 keys" +#~ msgstr "Använd alltid v4-nyckelsignaturer även på v3-nycklar" + +#~ msgid "Don't use v4 key signatures on v3 keys" +#~ msgstr "Använd inte v4-nyckelsignaturer på v3-nycklar" + +#~ msgid "Force the use of encryption with a modification detection code" +#~ msgstr "Tvinga användandet av kryptering med en modifieringsdetekteringskod" + +#~ msgid "Disable the use of the modification detection code" +#~ msgstr "Avaktivera användandet av ändringsdetekteringskod" + +#~ msgid "" +#~ "Allow the import and use of keys with user IDs which are not self-signed" +#~ msgstr "" +#~ "Tillåt importering och användning av nycklar med användarid som inte är " +#~ "självsignerade" + +#~ msgid "" +#~ "Do not allow the import and use of keys with user IDs which are not self-" +#~ "signed" +#~ msgstr "" +#~ "Tillåt inte importering och användning av nycklar med användarid som inte " +#~ "är självsignerade" + +#~ msgid "" +#~ "Disable all checks on the form of the user ID while generating a new one" +#~ msgstr "" +#~ "Avaktivera alla kontroller på formatet av användarid vid generering av " +#~ "nya användarid" + +#~ msgid "Do not fail if signature is older than key" +#~ msgstr "Misslyckas inte om signatur är äldre än nyckel" + +#~ msgid "Allow subkeys that have a timestamp from the future" +#~ msgstr "Tillåt undernycklar som har tidsstämpel från framtiden" + +#~ msgid "Ignore CRC errors" +#~ msgstr "Ignorera CRC-fel" + +#~ msgid "Do not fail on MDC integrity protection failure" +#~ msgstr "Misslyckas inte vid MDC-integritetsskyddsmisslyckande" + +#~ msgid "" +#~ "Lock the databases the first time a lock is requested and do not release " +#~ "the lock until the process terminates" +#~ msgstr "" +#~ "Lås databaser vid första läsförfrågan och släpp inte låset före processen " +#~ "avslutar" + +#~ msgid "Release the locks every time a lock is no longer needed" +#~ msgstr "Släpp lås varje gång det inte längre behövs" + +#~ msgid "" +#~ "Do not create an internal pool file for quicker generation of random " +#~ "numbers" +#~ msgstr "Skapa inte en intern pool-fil för snabbare generering av slumptal" + +#~ msgid "Suppress the initial copyright message" +#~ msgstr "Visa inte initialt copyrightmeddelande" + +#~ msgid "Suppress the warning about 'using insecure memory'" +#~ msgstr "Undertryck varningen om 'använder osäkert minne'" + +#~ msgid "" +#~ "Suppress the warning about unsafe file and home directory (--homedir) " +#~ "permissions" +#~ msgstr "" +#~ "Undertryck varningen om osäkra fil- och hemkatalogrättigheter (--homedir) " + +#~ msgid "Suppress the warning about missing MDC integrity protection" +#~ msgstr "Undertryck varningen om saknat MDCintegritetsskydd" + +#~ msgid "Refuse to run if GnuPG cannot get secure memory" +#~ msgstr "Vägra köra om GnuPG inte kan få säkert minne" + +#~ msgid "Do not refuse to run if GnuPG cannot get secure memory (default)" +#~ msgstr "Vägra inte köra om GnuPG inte kan få säkert minne" + +#~ msgid "Assume the input data is not in ASCII armored format" +#~ msgstr "Antag att indata inte är i ASCII-skyddat format" + +#~ msgid "Do not add the default keyrings to the list of keyrings" +#~ msgstr "Lägg inte standardnyckelringar till listan på nyckelringar" + +#~ msgid "Skip the signature verification step" +#~ msgstr "Skippa signaturverifieringssteg" + +#~ msgid "Print key listings delimited by colons" +#~ msgstr "Visa nyckellistning separerad av kolon" + +#~ msgid "" +#~ "Print key listings delimited by colons (like --with-colons) and print the " +#~ "public key data" +#~ msgstr "" +#~ "Visa nyckellistning separerad av kolon (som --with-colons) och visa öppen " +#~ "nyckel data" + +#~ msgid "" +#~ "Same as the command --fingerprint but changes only the format of the " +#~ "output and may be used together with another command" +#~ msgstr "" +#~ "Samma som kommandot --fingerprint men byter bara formatet på utdata och " +#~ "kan användas med andra kommandon" + +#~ msgid "Changes the output of the list commands to work faster" +#~ msgstr "Ändrar utdata av listningskommandon så det fungerar snabbare" + +#~ msgid "" +#~ "Do not merge primary user ID and primary key in --with-colon listing mode " +#~ "and print all timestamps as UNIX timestamps" +#~ msgstr "" +#~ "Sammanställ inte primära användarid i '--with-colon'-listningsläge och " +#~ "skriv alla tidsstämplar som UNIX-tidsstämplar" + +#~ msgid "" +#~ "Changes the behaviour of some commands. This is like --dry-run but " +#~ "different" +#~ msgstr "Ändrar beteendet av vissa kommandon. Som --dry-run men annorlunda" + +#~ msgid "Display the session key used for one message" +#~ msgstr "Visa sessionsnyckel som används för ett meddelande" + +#~ msgid "Prompt for an expiration time" +#~ msgstr "Fråga efter utgångsdatum" + +#~ msgid "Do not prompt for an expiration time" +#~ msgstr "Fråga inte efter utgångsdatum" + +#~ msgid "" +#~ "Don't look at the key ID as stored in the message but try all secret keys " +#~ "in turn to find the right decryption key" +#~ msgstr "" +#~ "Undersök inte nyckelid lagrat i meddelande, försök alla hemliga nycklar i " +#~ "turordningför att hitta rätt dekrypteringsnyckel" + +#~ msgid "" +#~ "Enable a mode in which filenames of the form -&n, where n is a non-" +#~ "negative decimal number, refer to the file descriptor n and not to a file " +#~ "with that name" +#~ msgstr "" +#~ "Aktivera ett läge i vilket filnamn på formen -&n, där n är ett positivt " +#~ "heltal, refererar till filidentifierare n, och inte till filen med det " +#~ "angivna namnet" + +#~ msgid "Remove a given entry from the --group list" +#~ msgstr "Ta bort ett inlägg från ---group'-listan" + +#~ msgid "Remove all entries from the --group list" +#~ msgstr "Ta bort alla inlägg från förråd från '--group'-listan" + +#~ msgid "" +#~ "Don't change the permissions of a secret keyring back to user read/write " +#~ "only" +#~ msgstr "" +#~ "Ändra inte rättigheterna på en hemlig nyckel tillbaka till läs/skriv " +#~ "endast för användaren" + +#~ msgid "Print annotated source" +#~ msgstr "Skriv ut kommenterad källkod" + +#~ msgid "Do not print explanations" +#~ msgstr "Skriv inte ut förklaringar" + +#~ msgid "Print tally" +#~ msgstr "Visa sammanställning av antal funktionanrop" + +#~ msgid "Display summary" +#~ msgstr "Visa sammanställning" + +#~ msgid "No annotated source" +#~ msgstr "Visa inte kommenterad källkod" + +#~ msgid "Print full path of source" +#~ msgstr "Visa full sökväg till källkod" + +#~ msgid "No flat profile" +#~ msgstr "Visa inte platt profil" + +#~ msgid "Print call graph" +#~ msgstr "Visa anropsgraf" + +#~ msgid "No call graph" +#~ msgstr "Visa inte anropsgraf" + +#~ msgid "Annotate to file" +#~ msgstr "Skriv kommentarer till fil" + +#~ msgid "No tally" +#~ msgstr "Visa inte sammanställning av antal funktionanrop" + +#~ msgid "Suggest function ordering" +#~ msgstr "Föreslå funktionsordning" + +#~ msgid "Suggest file ordering" +#~ msgstr "Föreslå filordning" + +#~ msgid "Traditional mode" +#~ msgstr "Traditionellt läge" + +#~ msgid "Set width of output" +#~ msgstr "Välj bredd på utdata" + +#~ msgid "Annotate every line" +#~ msgstr "Kommentera varje rad" + +#~ msgid "Set demangling style" +#~ msgstr "Välj avmanglingsstil" + +#~ msgid "Turn of demangling" +#~ msgstr "Slå av avmangling" + +#~ msgid "Supress static functions" +#~ msgstr "Visa inte statiska funktioner" + +#~ msgid "Ignore symbols not known to be functions" +#~ msgstr "Ignorera symboler som inte är kända funktioner" + +#~ msgid "Line by line profiling" +#~ msgstr "Profilera radvis" + +#~ msgid "Only propagate times for matching symbols" +#~ msgstr "Propagera bara tider för matchande symboler" + +#~ msgid "Do not propagate times for matching symbols" +#~ msgstr "Skicka inte vidare tider för matchande symboler" + +#~ msgid "Mention unused functions in flat profile" +#~ msgstr "Nämn oanvända funktioner i platt profil" + +#~ msgid "Specify debugging options" +#~ msgstr "Välj debuginställningar" + +#~ msgid "Print summary" +#~ msgstr "Visa sammanfattning" + +#~ msgid "Action for devices" +#~ msgstr "Handling för enheter" + +#~ msgid "Action for directories" +#~ msgstr "Handling för kataloger" + +#~ msgid "List compression information" +#~ msgstr "Visa kompressionsinformation" + +#~ msgid "Do not save/restore filename" +#~ msgstr "Spara/återställ inte filnamn" + +#~ msgid "Save/restore filename" +#~ msgstr "Spara/återställ filnamn" + +#~ msgid "Display compression ratios" +#~ msgstr "Visa kompressionsgrad" + +#~ msgid "Use fast setting" +#~ msgstr "Använd inställningar för hög fart" + +#~ msgid "Use high compression setting" +#~ msgstr "Använd inställningar för hög kompressionsnivå" + +#~ msgid "Update interval" +#~ msgstr "Uppdateringsintervall" + +#~ msgid "Output file" +#~ msgstr "Utdatafil" + +#~ msgid "Print effective group id" +#~ msgstr "Visa effektivt grupp-id" + +#~ msgid "Print all group ids" +#~ msgstr "Visa alla grupp-id" + +#~ msgid "Print real ID, not effective" +#~ msgstr "Visa verkligt id, inte effektivt" + +#~ msgid "Print effective user ID" +#~ msgstr "Visa effektivt användar-id" + +#~ msgid "Show group id of job" +#~ msgstr "Visa grupp-id för jobb" + +#~ msgid "Show commandname of each job" +#~ msgstr "Visa kommandonamn för varje jobb" + +#~ msgid "Only show status for last job to be started" +#~ msgstr "Visa bara status för det senast startade jobbet" + +#~ msgid "Search after end of screen" +#~ msgstr "Sök förbi slut på skärmen" + +#~ msgid "Disable automtic buffer allocation" +#~ msgstr "Inaktivera automatisk buffert-allokering" + +#~ msgid "Repaint from top" +#~ msgstr "Rita om från toppen" + +#~ msgid "Clear and repaint from top" +#~ msgstr "Töm och rita om från toppen" + +#~ msgid "Supress error for lacking terminal capability" +#~ msgstr "Visa inte felmeddelanden för saknade terminalförmågor" + +#~ msgid "Exit on second EOF" +#~ msgstr "Avsluta andra gången filslut påträffas" + +#~ msgid "Exit on EOF" +#~ msgstr "Avsluta vid filslut" + +#~ msgid "Open non-regular files" +#~ msgstr "Öppna icke-reguljär fil" + +#~ msgid "Quit if file shorter than one screen" +#~ msgstr "Avsluta om filen är kortare än en skärmfull" + +#~ msgid "Hilight one search target" +#~ msgstr "Markera ett sökmål" + +#~ msgid "No search highlighting" +#~ msgstr "Markera inte sökmål" + +#~ msgid "Maximum backward scroll" +#~ msgstr "MAximal bakåtrullning" + +#~ msgid "Search ignores lowercase case" +#~ msgstr "Sökning ignorerar gemener" + +#~ msgid "Search ignores all case" +#~ msgstr "Sökning ignorerar skiftläge" + +#~ msgid "Target line" +#~ msgstr "Målrad" + +#~ msgid "Display status column" +#~ msgstr "Visa statuskolumn" + +#~ msgid "Verbose prompt" +#~ msgstr "Utförlig prompt" + +#~ msgid "Display line number" +#~ msgstr "Visa radnummer" + +#~ msgid "Display line number for each line" +#~ msgstr "Visa radnummer för varje rad" + +#~ msgid "Log input to file" +#~ msgstr "Logga indata till fil" + +#~ msgid "Log to file, overwrite" +#~ msgstr "Logga til fil, skriv över tidigare information" + +#~ msgid "Start at first occurrence of pattern" +#~ msgstr "Starta vid första matchningen av angivet mönster" + +#~ msgid "Prompt string" +#~ msgstr "Promptsträng" + +#~ msgid "Silent mode" +#~ msgstr "Tyst läge" + +#~ msgid "Completly silent mode" +#~ msgstr "Fullständigt tyst läge" + +#~ msgid "Display control chars" +#~ msgstr "Visa kontrolltecken" + +#~ msgid "Display control chars, guess screen appearance" +#~ msgstr "Visa kontrolltecken, försök gissa skärmutseende" + +#~ msgid "Multiple blank lines sqeezed" +#~ msgstr "Slå ihop multipla tomma rader" + +#~ msgid "Edit tag" +#~ msgstr "Redigera markering" + +#~ msgid "Set tag file" +#~ msgstr "Välj markeringsfil" + +#~ msgid "Allow backspace and carriage return" +#~ msgstr "Tillåt backsteg och vagnretur" + +#~ msgid "Allow backspace, tab and carriage return" +#~ msgstr "Tillåt backsteg, tabb och vagnretur" + +#~ msgid "Highlight first unread line on new page" +#~ msgstr "Markera den första olästa raden på ny sida" + +#~ msgid "Highlight first unread line on any movement" +#~ msgstr "Markera den första olästa radenvid alla rörelser" + +#~ msgid "Set tab stops" +#~ msgstr "Välj tabbstorlek" + +#~ msgid "No termcap init" +#~ msgstr "Initiera inte med termcap" + +#~ msgid "No keypad init" +#~ msgstr "Initiera inte numeriskt tangentbord" + +#~ msgid "Maximum forward scroll" +#~ msgstr "Maximal framrullning" + +#~ msgid "Max scroll window" +#~ msgstr "Maximalt rullningsfönster" + +#~ msgid "Set quote char" +#~ msgstr "Välj citat-tecken" + +#~ msgid "Lines after EOF are blank" +#~ msgstr "Gör rader efter filslut tomma" + +#~ msgid "Characters to scroll on left/right arrows" +#~ msgstr "Tecken att rulla på vänster/högerpil" + +#~ msgid "Set block size" +#~ msgstr "Välj blockstorlek" + +#~ msgid "Select quoting style" +#~ msgstr "Välj citatstil" + +#~ msgid "Sort criteria" +#~ msgstr "Sorteringskriterium" + +#~ msgid "Show time type" +#~ msgstr "Visa tidtyp" + +#~ msgid "Select time style" +#~ msgstr "Välj tidformat" + +#~ msgid "Assume tab stops at each COLS" +#~ msgstr "Antag tabbavstånd" + +#~ msgid "Assume screen width" +#~ msgstr "Antag skärmbredd" + +#~ msgid "Append dependencies to makefile" +#~ msgstr "Lägg till beroenden till makefil" + +#~ msgid "Warn about multiple inclusion" +#~ msgstr "Varna vid upprapad inkudering" + +#~ msgid "Environment before makefile" +#~ msgstr "Använd värden från miljövariabler före värden från make-fil" + +#~ msgid "Continue after an error" +#~ msgstr "Fortsätt vid fel" + +#~ msgid "Start when load drops" +#~ msgstr "Starta när belastningen minstar" + +#~ msgid "Do not execute commands" +#~ msgstr "Utför inte kommandon" + +#~ msgid "Print database" +#~ msgstr "Visa databas" + +#~ msgid "Question mode" +#~ msgstr "Frågeläge" + +#~ msgid "Eliminate implicit rules" +#~ msgstr "Ta bort implicita regler" + +#~ msgid "Don't continue after an error" +#~ msgstr "Fortsätt inte vid fel" + +#~ msgid "Touch files, don't run commands" +#~ msgstr "Ändra ändringstid på filer, utför inte kommandon" + +#~ msgid "Program section" +#~ msgstr "Programsektion" + +#~ msgid "Syscall section" +#~ msgstr "Systemanroppssektion" + +#~ msgid "Library section" +#~ msgstr "Bibliotekssektion" + +#~ msgid "Device section" +#~ msgstr "Enhetssektion" + +#~ msgid "File format section" +#~ msgstr "Filformatssektion" + +#~ msgid "Games section" +#~ msgstr "Spelsektion" + +#~ msgid "Misc section" +#~ msgstr "Övrig sektion" + +#~ msgid "Admin section" +#~ msgstr "Administartionssektion" + +#~ msgid "Kernel section" +#~ msgstr "Kärnsektion" + +#~ msgid "Tcl section" +#~ msgstr "Tclsektion" + +#~ msgid "New section" +#~ msgstr "Ny sektion" + +#~ msgid "Local section" +#~ msgstr "Lokal sektion" + +#~ msgid "Old section" +#~ msgstr "Gammal sektion" + +#~ msgid "Manpath" +#~ msgstr "Manualsökväg" + +#~ msgid "Pager" +#~ msgstr "Visare" + +#~ msgid "Always reformat" +#~ msgstr "Formatera alltid om" + +#~ msgid "Debug" +#~ msgstr "Debug-läge" + +#~ msgid "Debug and run" +#~ msgstr "Debugga och kör" + +#~ msgid "Show whatis information" +#~ msgstr "Visa whatis-information" + +#~ msgid "Format only" +#~ msgstr "Formatera bara, visa inte" + +#~ msgid "Show apropos information" +#~ msgstr "Visa apropos-information" + +#~ msgid "Search in all man pages" +#~ msgstr "Sök i alla manualsidor" + +#~ msgid "Set system" +#~ msgstr "Välj system" + +#~ msgid "Preprocessors" +#~ msgstr "Förprocessorer" + +#~ msgid "Format for printing" +#~ msgstr "Formatera för utskrift" + +#~ msgid "Only print locations" +#~ msgstr "Visa bara platser" + +#~ msgid "Print messages about what the program is doing" +#~ msgstr "Visa meddelanden om vad programmet gör" + +#~ msgid "Dump configuration file" +#~ msgstr "Dumpa konfigurationsfil" + +#~ msgid "Do not actually insert/remove module" +#~ msgstr "Utför inte insättning/borttagning av modul" + +#~ msgid "Ignore install and remove commands in configuration file" +#~ msgstr "" +#~ "Ignorera installations- och borttagningskommandon i konfigurationsfil" + +#~ msgid "Ignore bogus module names" +#~ msgstr "Ignorera felaktiga modulnamn" + +#~ msgid "Remove modules" +#~ msgstr "Ta bort moduler" + +#~ msgid "Ignore all version information" +#~ msgstr "Ignorera all versionsinformation" + +#~ msgid "Ignore module interface version" +#~ msgstr "Ignorera modulinterfaceversion" + +#~ msgid "Insert modules matching the given wildcard" +#~ msgstr "Ligg till alla moduler som matchar parameter med jokertecken" + +#~ msgid "Restrict wildcards to specified directory" +#~ msgstr "Begränsa jokertecken till den angivna katalogen" + +#~ msgid "Send error messages through syslog" +#~ msgstr "Skicka felmeddelanden genom syslog" + +#~ msgid "Specify kernel version" +#~ msgstr "Välj kärnversion" + +#~ msgid "List dependencies of module" +#~ msgstr "Visa beroenden för modul" + +#~ msgid "Rename module" +#~ msgstr "Byt namn på modul" + +#~ msgid "Fail if inserting already loaded module" +#~ msgstr "Misslyckas vid insättning av redan laddad modul" + +#~ msgid "Fork process for each mount" +#~ msgstr "Starta underprocess för varje montering" + +#~ msgid "Fake mounting" +#~ msgstr "Falsk montering" + +#~ msgid "Add label to output" +#~ msgstr "Lägg till etikett till utdata" + +#~ msgid "Do not write mtab" +#~ msgstr "Skriv inte till mtab" + +#~ msgid "Dynamically change postprocessing" +#~ msgstr "Ändra efterbehyandling dynamiskt" + +#~ msgid "Skip frames to maintain A/V sync" +#~ msgstr "Hoppa över bilder för att behålla ljud/bild synkronisering" + +#~ msgid "Full screen" +#~ msgstr "Fullskärmsläge" + +#~ msgid "Set playlist" +#~ msgstr "Välj spellista" + +#~ msgid "Audio language" +#~ msgstr "Ljudspråk" + +#~ msgid "Play audio from file" +#~ msgstr "Spela ljud från fil" + +#~ msgid "Set default CD-ROM drive" +#~ msgstr "Välj normal CD-ROM-enhet" + +#~ msgid "Set number of audio channels" +#~ msgstr "Välj antal ljudkanaler" + +#~ msgid "Set start chapter" +#~ msgstr "Välj startkapitel" + +#~ msgid "Set default DVD-ROM drive" +#~ msgstr "Välj normal DVD-ROM-enhet" + +#~ msgid "Set dvd viewing angle" +#~ msgstr "Välj dvd-betraktningsvinkel" + +#~ msgid "Force rebuilding index" +#~ msgstr "Tvinga ombyggning av index" + +#~ msgid "Override framerate" +#~ msgstr "Åsidosätt bildfrekvens" + +#~ msgid "Load index from file" +#~ msgstr "Ladda index från fil" + +#~ msgid "Force non-interleaved AVI parser" +#~ msgstr "Tvinga icke-sammanflätat AVI-tolk" + +#~ msgid "Rebuild index and save to file" +#~ msgstr "Bygg om index och spara till fil" + +#~ msgid "Seek to given time position" +#~ msgstr "Sök till angiven tidsposition" + +#~ msgid "TV capture mode" +#~ msgstr "TV-inspelningsläge" + +#~ msgid "Subtitle language" +#~ msgstr "Textningsspråk" + +#~ msgid "Subtitle file" +#~ msgstr "Textningsfil" + +#~ msgid "Handle subtitlefile as unicode" +#~ msgstr "Hantera textningsfil som unicode" + +#~ msgid "Handle subtitlefile as utf8" +#~ msgstr "Hantera textningsfil som utf8" + +#~ msgid "Make backup of each existing destination file" +#~ msgstr "Gör backup av varje existerande destinationsfil" + +#~ msgid "Do not prompt before overwriting" +#~ msgstr "Fråga inte före överskrivning" + +#~ msgid "Remove trailing slashes from source" +#~ msgstr "Ta bort snedstreck i slutet på källangivelser" + +#~ msgid "Target directory" +#~ msgstr "Målkatalog" + +#~ msgid "Do not overwrite newer files" +#~ msgstr "Skriv inte över nyare filer" + +#~ msgid "Also print directory history" +#~ msgstr "Skriv även ut kataloghistorik" + +#~ msgid "" +#~ "Make backup files, when patching a file, rename or copy the original " +#~ "instead of removing it" +#~ msgstr "" +#~ "Skapa backupfiler, vid fixning av fil, byt namn eller kopiera orginalet " +#~ "istället för att ta bort det" + +#~ msgid "Back up a file if the patch does not match the file exactly" +#~ msgstr "Skapa backup av fil om fix inte matchar filen exakt" + +#~ msgid "Do not back up a file if the patch does not match the file exactly" +#~ msgstr "Skapa inte backup av fil om fix inte matchar filen exakt" + +#~ msgid "Interpret the patch file as an ed script" +#~ msgstr "Tolka fixfil som ett ed-skript" + +#~ msgid "Set the maximum fuzz factor" +#~ msgstr "Sätt maximal fuzzfaktor" + +#~ msgid "Use style word to quote output names" +#~ msgstr "Använd angiven stil vid citering av utdatanamn" + +#~ msgid "Put rejects into rejectfile instead of the default .rej file" +#~ msgstr "" +#~ "Lägg till misslyckade fixar till angiven fil istället för standard-.rej-" +#~ "fil" + +#~ msgid "" +#~ "Assume that this patch was created with the old and new files swapped" +#~ msgstr "Antag att denna fix skapades med ombytta gamla och nya filer" + +#~ msgid "Work silently, unless an error occurs" +#~ msgstr "Arbeta tyst, om inte ett fel uppstår" + +#~ msgid "Interpret the patch file as a unified context diff" +#~ msgstr "Tolka fixfil som unifierad kontextdiff" + +#~ msgid "Debug option" +#~ msgstr "Debugflagga" + +#~ msgid "Set regexp used to split input" +#~ msgstr "Välj reguljärt uttryck för att avdela indata" + +#~ msgid "Edit files in-place" +#~ msgstr "Redigera filer på plats" + +#~ msgid "Include path" +#~ msgstr "Inkluderingssökväg" + +#~ msgid "Open folder" +#~ msgstr "Öppna katalog" + +#~ msgid "Open file" +#~ msgstr "Öppna fil" + +#~ msgid "Initial set of keystrokes" +#~ msgstr "Initiala tangenttryckningar" + +#~ msgid "Use function keys for commands" +#~ msgstr "Använd funktionstangenter för kommandon" + +#~ msgid "Expand collections in FOLDER LIST display" +#~ msgstr "Expandera samlingar i sidan 'FOLDER LIST'" + +#~ msgid "Start with specified current message number" +#~ msgstr "Starta vid angivet meddelandenummer" + +#~ msgid "Open folder read-only" +#~ msgstr "Öppna folder i skrivskyddat läge" + +#~ msgid "Set global configuration file" +#~ msgstr "Välj global konfigurationsfil" + +#~ msgid "Enable suspension support" +#~ msgstr "Aktivera stöd för programpausning (^Z)" + +#~ msgid "Produce a sample global configuration file" +#~ msgstr "Skapa global exempelkonfigurationsfil" + +#~ msgid "Produce sample configuration file" +#~ msgstr "Skapa exempelkonfigurationsfil" + +#~ msgid "Set mail sort order" +#~ msgstr "Välj brevsorteringsordning" + +#~ msgid "Config option" +#~ msgstr "Konfigurationsinställning" + +#~ msgid "Audible ping" +#~ msgstr "Hörbart ping" + +#~ msgid "Adaptive ping" +#~ msgstr "Adaptiv ping" + +#~ msgid "Allow pinging a broadcast address" +#~ msgstr "Tillåt pingning till broadcast-adress" + +#~ msgid "Do not allow ping to change source address of probes" +#~ msgstr "Tillåt inte ping att ändra källadress på sonder" + +#~ msgid "Stop after specified number of ECHO_REQUEST packets" +#~ msgstr "Stoppa efter angivet antal ECHO_REQUEST-paket" + +#~ msgid "Set the SO_DEBUG option on the socket being used" +#~ msgstr "Sätt SO_DEBUG-flaggan på uttaget (socket) som används" + +#~ 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" + +#~ msgid "Flood ping" +#~ msgstr "Översvämmningsping" + +#~ msgid "Wait specified interval of seconds between sending each packet" +#~ msgstr "Vänta angivet antal sekunder mellan skickande av paket" + +#~ msgid "Set source address to specified interface address" +#~ msgstr "Välj källadress till angiven gränssnittsadress" + +#~ msgid "Send the specified number of packets without waiting for reply" +#~ msgstr "Skicka angivet antal paket utan att vänta på svar" + +#~ msgid "Suppress loopback of multicast packets" +#~ msgstr "Undertryck vändslinga (loopback) för multicastpaket" + +#~ msgid "Numeric output only" +#~ msgstr "Bara numerisk utdata" + +#~ msgid "Pad packet with empty bytes" +#~ msgstr "Lägg till tomma bytes till paket" + +#~ msgid "Set Quality of Service -related bits in ICMP datagrams" +#~ msgstr "Sätt Tjänstekvalitets-relaterade bitar i ICMP-datagram" + +#~ msgid "Record route" +#~ msgstr "Spela in rutt" + +#~ 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" + +#~ msgid "Set socket buffer size" +#~ msgstr "Välj uttags (socket) buffertstorlek" + +#~ msgid "Set the IP Time to Live" +#~ msgstr "Välj paketlivstid på IP-protokollnivå" + +#~ msgid "Set special IP timestamp options" +#~ msgstr "Välj särskilda inställningar för IP-protokoll-tidsstämpel" + +#~ msgid "Select Path MTU Discovery strategy" +#~ msgstr "Välj MTU-väghittarstrategi" + +#~ msgid "Print full user-to-user latency" +#~ msgstr "Visa full användare-tilöl-användare-latens" + +#~ msgid "" +#~ "Specify a timeout, in seconds, before ping exits regardless of how many " +#~ "packets have been sent or received" +#~ msgstr "" +#~ "Ange en timeout, i sekunder, innan ping avslutar oavsett hur många paket " +#~ "som skickats eller tagits emot" + +#~ msgid "Time to wait for a response, in seconds" +#~ msgstr "Tid att vänta på ett svar, i sekunder" + +#~ msgid "Select all" +#~ msgstr "Välj alla" + +#~ msgid "Invert selection" +#~ msgstr "Invertera val" + +#~ msgid "Select all processes except session leaders and terminal-less" +#~ msgstr "Välj alla processer utom sessionsledare och terminal-lösa" + +#~ msgid "Select all processes except session leaders" +#~ msgstr "Välj alla processer utom sessionsledare" + +#~ msgid "Deselect all processes that do not fulfill conditions" +#~ msgstr "Avmarkera alla processer som inte uppfyller villkor" + +#~ msgid "Select by command" +#~ msgstr "Välj via kommando" + +#~ msgid "Select by group" +#~ msgstr "Välj via grupp" + +#~ msgid "Select by user" +#~ msgstr "Välj via användare" + +#~ msgid "Select by group/session" +#~ msgstr "Väljvia användare/session" + +#~ msgid "Select by PID" +#~ msgstr "Välj via process-id" + +#~ msgid "Select by parent PID" +#~ msgstr "Välj via förälders process-id" + +#~ msgid "Select by session ID" +#~ msgstr "Välj via sessions-id" + +#~ msgid "Select by tty" +#~ msgstr "Välj via tty" + +#~ msgid "Extra full format" +#~ msgstr "Extra utförligt format" + +#~ msgid "User defined format" +#~ msgstr "Användardefinerat format" + +#~ msgid "Add column for security data" +#~ msgstr "Lägg till kolumn med säkerhetsinformation" + +#~ msgid "Full format" +#~ msgstr "Fullt format" + +#~ msgid "Jobs format" +#~ msgstr "Jobbformat" + +#~ msgid "Do not show flags" +#~ msgstr "Visa inte flaggor" + +#~ msgid "Show hierarchy" +#~ msgstr "Visa hierarki" + +#~ msgid "Set namelist file" +#~ msgstr "Visa namnlistfil" + +#~ msgid "Wide output" +#~ msgstr "Bred utdata" + +#~ msgid "Execute argument as command" +#~ msgstr "Utför parameter som kommando" + +#~ msgid "Debug on" +#~ msgstr "Debugläge på" + +#~ msgid "Ignore environment variables" +#~ msgstr "Ignorera miljövariabler" + +#~ msgid "Interactive mode after executing commands" +#~ msgstr "Interaktivt läge efter att komandon utförts" + +#~ msgid "Enable optimizations" +#~ msgstr "Slå på optimeringar" + +#~ msgid "Warning control" +#~ msgstr "Varningsläge" + +#~ msgid "Division control" +#~ msgstr "Divisionskontroll" + +#~ msgid "Set prompt command" +#~ msgstr "Välj promptkommando" + +#~ msgid "Export variable to subprocess" +#~ msgstr "Exportera variabel till underprocess" + +#~ msgid "Make variable scope global" +#~ msgstr "Globalt definitionsområde" + +#~ msgid "Make variable scope local" +#~ msgstr "Lokalt defintionsområde" + +#~ 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" + +#~ msgid "Do not export variable to subprocess" +#~ msgstr "Exportera inte variabel till barnprocesser" + +#~ msgid "Force following parameters to be process ID's (The default)" +#~ msgstr "" +#~ "Tvinga efterföljande parametrar att tolkas som process-id (standard)" + +#~ msgid "Force following parameters to be interpreted as process group ID's" +#~ msgstr "Tvinga efterföljande parametrar att tolkas som grupp-id" + +#~ msgid "Force following parameters to be interpreted as user names" +#~ msgstr "Tvinga efterföljande parametrar att tolkas som användarnamn" + +#~ msgid "Ignore errors from non-empty directories" +#~ msgstr "Ignorera fel från icke-tomma kataloger" + +#~ msgid "Remove each component of path" +#~ msgstr "Ta bort alla sökvägskomponenter" + +#~ msgid "Pipe output through specified command" +#~ msgstr "Filtrera utdata genom angivet kommando" + +#~ msgid "Specify directory for rpm database" +#~ msgstr "Välj katalog för rpm-databas" + +#~ msgid "Specify root directory for rpm operations" +#~ msgstr "Välj rot-katalog för rpm-operationer" + +#~ 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" + +#~ msgid "Kanji code-set" +#~ msgstr "Använd Kanji-tecken" + +#~ msgid "Verbose mode without message" +#~ msgstr "Utförligt läge utan meddelande" + +#~ msgid "Compiler debug mode" +#~ msgstr "Kompliatordebugläge" + +#~ msgid "" +#~ "Preserves modification times, access times, and modes from the original " +#~ "file" +#~ msgstr "Bevara ändringstid, åtkomsttid och rättigheter från orginalfil" + +#~ msgid "Recursively copy" +#~ msgstr "Rekursiv kopiering" + +#~ msgid "Make font bold" +#~ msgstr "Använd fetstil" + +#~ msgid "Erase variable" +#~ msgstr "Radera variabel" + +#~ msgid "Test if variable is defined" +#~ msgstr "Testa om variabeln är definerad" + +#~ msgid "Ignore leading blanks" +#~ msgstr "Ignorera inledande mellanslag" + +#~ msgid "Consider only blanks and alphanumerics" +#~ msgstr "Ta endast hänsyn till mellanslag och alfanumeriska tecken" + +#~ msgid "Compare general numeric value" +#~ msgstr "Jämför generellt numeriskt värde" + +#~ msgid "Consider only printable" +#~ msgstr "Ta endast hänsyn till skrivbara tecken" + +#~ msgid "Compare month names" +#~ msgstr "Jämför månadsnamn" + +#~ msgid "Compare string numerical value" +#~ msgstr "Jämför strängars numeriska värde" + +#~ msgid "Reverse results" +#~ msgstr "Omvända resultat" + +#~ msgid "Only check if sorted" +#~ msgstr "Verifiera bara sortering" + +#~ msgid "Define key" +#~ msgstr "Definera nyckel" + +#~ msgid "Stabilize sort" +#~ msgstr "Stabilisera sortering" + +#~ msgid "Field separator" +#~ msgstr "Fältavdelare" + +#~ msgid "Output only first of equal lines" +#~ msgstr "Visa bara först raden vid dubletter" + +#~ msgid "Lines end with 0 byte" +#~ msgstr "Rader slutar ned nolltecken" + +#~ msgid "Disables forwarding of the authentication agent" +#~ msgstr "Inaktivera vidareskickning av autentiseringsagent" + +#~ msgid "Enables forwarding of the authentication agent" +#~ msgstr "Aktivera vidareskickning av autentiseringsagent" + +#~ msgid "Go to background" +#~ msgstr "Gå till bakgrunden" + +#~ msgid "Allow remote host to connect to local forwarded ports" +#~ msgstr "Tillåt fjärrvärd att koppla in sig på lokala vidareskickade portar" + +#~ msgid "Smartcard device" +#~ msgstr "Smartcardenhet" + +#~ msgid "Disable forwarding of Kerberos tickets" +#~ msgstr "Inaktivera vidareskickning av Kerberosbiljetter" + +#~ msgid "MAC algorithm" +#~ msgstr "MAC-algoritm" + +#~ msgid "Prevent reading from stdin" +#~ msgstr "Förhindra läsning från standard in" + +#~ msgid "Do not execute remote command" +#~ msgstr "Utför inte fjärrkommando" + +#~ msgid "Subsystem" +#~ msgstr "Subsystem" + +#~ msgid "Force pseudo-tty allocation" +#~ msgstr "Tvinga pseudo-tty-allokering" + +#~ msgid "Disable pseudo-tty allocation" +#~ msgstr "Inaktivera pseudo-tty-allokering" + +#~ msgid "Disable X11 forwarding" +#~ msgstr "Inaktivera X11-vidareskickning" + +#~ msgid "Enable X11 forwarding" +#~ msgstr "Aktivera X11-vidareskickning" + +#~ msgid "Locally forwarded ports" +#~ msgstr "Lokalt vidareskickade portar" + +#~ msgid "Remotely forwarded ports" +#~ msgstr "Vidareskickade portar på fjärrdatorn" + +#~ msgid "Dynamic port forwarding" +#~ msgstr "Dynamisk portvidareskickning" + +#~ msgid "Compression" +#~ msgstr "Kompression" + +#~ msgid "Enable debug" +#~ msgstr "Slå på debugning" + +#~ msgid "Foreground operation" +#~ msgstr "Förgrundsoperation" + +#~ msgid "Disable multi-threaded operation" +#~ msgstr "Inaktivera flertrådat läge" + +#~ msgid "Test if this is a login shell" +#~ msgstr "Testa om detta är ett login-skal" + +#~ msgid "Test if this is an interactive shell" +#~ msgstr "Testa om detta är ett interaktivt skal" + +#~ msgid "Test if a command substitution is currently evaluated" +#~ msgstr "Testa om en kommandosubstitution utförs för tillfället" + +#~ msgid "Test if a code block is currently evaluated" +#~ msgstr "Testa om ett kodblock utförs för tillfället" + +#~ msgid "Test if new jobs are never put under job control" +#~ msgstr "Testa om inga nya job ställs unde jobbkontroll" + +#~ msgid "Test if only interactive new jobs are put under job control" +#~ msgstr "Testa om bara interaktiva nya job ställs unde jobbkontroll" + +#~ msgid "Test if all new jobs are put under job control" +#~ msgstr "Testa om alla nya job ställs unde jobbkontroll" + +#~ msgid "" +#~ "Print a list of all function calls leading up to running the current " +#~ "command" +#~ msgstr "" +#~ "Visa en lista av alla funktionsanropp som lett fram till anropet på det " +#~ "nu körande kommandot" + +#~ msgid "Case insensitive" +#~ msgstr "Ignorera skiftläge" + +#~ msgid "Preserve environment" +#~ msgstr "Bevara miljövariabler" + +#~ msgid "Make login shell" +#~ msgstr "Skapa login-skal" + +#~ msgid "Pass -f to the shell" +#~ msgstr "Skicka -f till skalet" + +#~ msgid "Append archive to archive" +#~ msgstr "Lägg till arkiv till annat arkiv" + +#~ msgid "Create archive" +#~ msgstr "Skapa arkiv" + +#~ msgid "Compare archive and filesystem" +#~ msgstr "Jämför arkiv med filsystem" + +#~ msgid "Delete from archive" +#~ msgstr "Radera från arkiv" + +#~ msgid "Append files to archive" +#~ msgstr "Lägg till filer till arkiv" + +#~ msgid "Append new files" +#~ msgstr "Lägg till nya filer" + +#~ msgid "Extract from archive" +#~ msgstr "Hämta från arkiv" + +#~ msgid "Keep access time" +#~ msgstr "Behåll åtkomsttid" + +#~ msgid "Reblock while reading" +#~ msgstr "Gör om block-indelning under inläsning" + +#~ msgid "Print directory names" +#~ msgstr "Visa katalognamn" + +#~ msgid "Archive is local" +#~ msgstr "Arkiv är lokalt" + +#~ msgid "Run script at end of tape" +#~ msgstr "Utför skript vid slut på band" + +#~ msgid "Use old incremental GNU format" +#~ msgstr "Använd gammalt inkrementellt GNU-format" + +#~ msgid "Use new incremental GNU format" +#~ msgstr "Använd nytt inkrementellt GNU-format" + +#~ msgid "Dereference symlinks" +#~ msgstr "Följ symboliska länkar" + +#~ msgid "Ignore zero block in archive" +#~ msgstr "Ignorera nollblock i arkiv" + +#~ msgid "Filter through bzip2" +#~ msgstr "Filtrera genom bzip2" + +#~ msgid "Don't exit on unreadable files" +#~ msgstr "Avsluta inte vid oläsbara filer" + +#~ msgid "Don't overwrite" +#~ msgstr "Skriv inte över" + +#~ msgid "Stay in local filesystem" +#~ msgstr "Stanna på lokala filsystem" + +#~ msgid "Don't extract modification time" +#~ msgstr "Hämta inte ändringstider" + +#~ msgid "Multi volume archive" +#~ msgstr "Flervolymsarkiv" + +#~ msgid "Use V7 format" +#~ msgstr "Använd V7-format" + +#~ msgid "Extract to stdout" +#~ msgstr "Hämta till standard ut" + +#~ msgid "Extract all permissions" +#~ msgstr "Hämta alla rättigheter" + +#~ msgid "Don't strip leading /" +#~ msgstr "Ta inte bort inledande /" + +#~ msgid "Preserve all permissions and do not sort file arguments" +#~ msgstr "Bevara alla rättigheter, och sortera inte filargument" + +#~ msgid "Show record number" +#~ msgstr "Visa paketnummer" + +#~ msgid "Remove files after adding to archive" +#~ msgstr "Ta bort filer efter att de lagts till arkivet" + +#~ msgid "Preserve file ownership" +#~ msgstr "Bevara filägare" + +#~ msgid "Handle sparse files" +#~ msgstr "Hantera glesa filer" + +#~ msgid "-T has null-terminated names" +#~ msgstr "-T har noll-terminerade namn" + +#~ msgid "Print total bytes written" +#~ msgstr "Visa totalt anta skrivna bytes" + +#~ msgid "Ask for confirmation" +#~ msgstr "Be om bekräftelse" + +#~ msgid "Verify archive" +#~ msgstr "Verifiera arkiv" + +#~ msgid "Filter through compress" +#~ msgstr "Filtrera genom compress" + +#~ msgid "Filter through gzip" +#~ msgstr "Filtrera genom gzip" + +#~ msgid "Negate expression" +#~ msgstr "Negera uttryck" + +#~ msgid "String length is non-zero" +#~ msgstr "Strängens längd är nollskild" + +#~ msgid "String length is zero" +#~ msgstr "Strängens längd är noll" + +#~ msgid "Strings are equal" +#~ msgstr "Strängar är identiska" + +#~ msgid "Strings are not equal" +#~ msgstr "Strängar skiljer sig" + +#~ msgid "Integers are equal" +#~ msgstr "Heltal är identiska" + +#~ msgid "Left integer larger than or equal to right integer" +#~ msgstr "Vänster tal är större än eller lika med höger tal" + +#~ msgid "Left integer larger than right integer" +#~ msgstr "Vänster tal är större än höger tal" + +#~ msgid "Left integer less than or equal to right integer" +#~ msgstr "Vänster tal är mindre än eller lika med höger tal" + +#~ msgid "Left integer less than right integer" +#~ msgstr "Vänster tal är mindre än höger tal" + +#~ msgid "Left integer not equal to right integer" +#~ msgstr "Vänster tal skilt från höger tal" + +#~ msgid "File is block device" +#~ msgstr "Fil är blockenhet" + +#~ msgid "File is character device" +#~ msgstr "Fil är teckenenhet" + +#~ msgid "File is directory" +#~ msgstr "Fil är katalog" + +#~ msgid "File exists" +#~ msgstr "Fil existerar" + +#~ msgid "File is regular" +#~ msgstr "Fil är vanlig fil" + +#~ msgid "File is set-group-ID" +#~ msgstr "Fil har kör-som-grupp-bit satt" + +#~ msgid "File is readable" +#~ msgstr "Fil är läsbar" + +#~ msgid "File size is non-zero" +#~ msgstr "Filstorlek är nollskild" + +#~ msgid "File set-user-ID bit is set" +#~ msgstr "Fil har hör-som-användare-bit satt" + +#~ msgid "File is writable" +#~ msgstr "Fil är skrivbar" + +#~ msgid "Specify output format" +#~ msgstr "Välj utdataformat" + +#~ msgid "Use the portable output format" +#~ msgstr "Använd portabelt utdataformat" + +#~ msgid "Do not send the results to stderr, but overwrite the specified file" +#~ msgstr "" +#~ "Skicka inte utdata till standard fel, skriv istället över angiven fil" + +#~ msgid "(Used together with -o) Do not overwrite but append" +#~ msgstr "(Används tillsamans med -o) Skriv inte över utan lägg till" + +#~ msgid "Toggle command line/program name" +#~ msgstr "Växla visning av kommandorad/programnamn" + +#~ msgid "Toggle idle processes" +#~ msgstr "Växla visning av overksamma processer" + +#~ msgid "Monitor effective UID" +#~ msgstr "Bevaka effektivt användarid" + +#~ msgid "Monitor user" +#~ msgstr "Bevaka användare" + +#~ msgid "Monitor PID" +#~ msgstr "Bevaka process-id" + +#~ msgid "Secure mode" +#~ msgstr "Säkert läge" + +#~ msgid "Cumulative mode" +#~ msgstr "Ackumulerande läge" + +#~ msgid "Display names of all signals" +#~ msgstr "Visa namn på alla signaler" + +#~ msgid "Display all currently defined trap handlers" +#~ msgstr "Visa all för tillfället definerade trap-hanterare" + +#~ msgid "Print all possible definitions of the specified name" +#~ msgstr "Visa alla möjliga definitioner av det angivna namnet" + +#~ msgid "Print path to command, or nothing if name is not a command" +#~ msgstr "" +#~ "Visa sökväg till kommando, eller ingenting om namn inte är ett kommando" + +#~ msgid "Print path to command" +#~ msgstr "Visa sökväg till kommando" + +#~ msgid "Set or get all current limits" +#~ msgstr "Visa eller redigera alla resursanvändningsgränser" + +#~ msgid "Maximum size of core files created" +#~ msgstr "Maximal storlek på skapade corefiler" + +#~ msgid "Maximum size of a process's data segment" +#~ msgstr "Maximal storlek på på en process datasegment" + +#~ msgid "Maximum size of files created by the shell" +#~ msgstr "Maximal storlek på filer skapade av skalet" + +#~ msgid "Maximum size that may be locked into memory" +#~ msgstr "Maximal storlek som kan låsas i minnet" + +#~ msgid "Maximum resident set size" +#~ msgstr "Maximal 'resident set size'" + +#~ msgid "Maximum number of open file descriptors" +#~ msgstr "Maximalt antal öppna filidentifierare" + +#~ msgid "Maximum stack size" +#~ msgstr "Maximal stackstorlek" + +#~ msgid "Maximum amount of cpu time in seconds" +#~ msgstr "Maximal cpu-tid i sekunder" + +#~ msgid "Maximum number of processes available to a single user" +#~ msgstr "Maximalt antal processer tillgängliga för en enskild användare" + +#~ msgid "Maximum amount of virtual memory available to the shell" +#~ msgstr "Maximal mängd virtuellt minne tillgängligt för skalet" + +#~ msgid "Unmount without writing in /etc/mtab" +#~ msgstr "Avmontera utan stt skriva till /etc/mtab" + +#~ msgid "In case unmounting fails, try to remount read-only" +#~ msgstr "Om avmontering misslyckas, försök att ommontera i skrivskyddat läge" + +#~ msgid "" +#~ "In case the unmounted device was a loop device, also free this loop device" +#~ msgstr "" +#~ "Om den avmonterade enheten var en vändslinga, återlämna också denna enhet" + +#~ msgid "Don't call the /sbin/umount. helper even if it exists" +#~ msgstr "" +#~ "Anropa inte /sbin/umount.-hjälparen, även om den existerar" + +#~ msgid "Unmount all of the file systems described in /etc/mtab" +#~ msgstr "Avmontera all a filsystem i /etc/mtab" + +#~ msgid "Actions should only be taken on file systems of the specified type" +#~ msgstr "Utför bara handlingar på filsystem av angiven typ" + +#~ 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 angivna flaggorna i /etc/fstab" + +#~ msgid "Force unmount (in case of an unreachable NFS system)" +#~ msgstr "Tvinga avmontering (vid onåbart NFS-filsystem)" + +#~ msgid "" +#~ "Detach the filesystem from the filesystem hierarchy now, and cleanup all " +#~ "references to the filesystem as soon as it is not busy" +#~ msgstr "" +#~ "Koppla bort filsystemet från hierarkin nu, och rensa upp alla referenser " +#~ "till filsystemet så fort som det inte är upptaget" + +#~ msgid "Print kernel name" +#~ msgstr "Visa kärnnamn" + +#~ msgid "Print network node hostname" +#~ msgstr "Visa värdnamn på nätverksnod" + +#~ msgid "Print kernel release" +#~ msgstr "Visa kärnrelese" + +#~ msgid "Print machine name" +#~ msgstr "Visa maskinnamn" + +#~ msgid "Print processor" +#~ msgstr "Visa processor" + +#~ msgid "Print hardware platform" +#~ msgstr "Visa hårdvaruplattoform" + +#~ msgid "Display help and debug options" +#~ msgstr "Visa hjälp och debug-val" + +#~ msgid "Valgrind-ise children" +#~ msgstr "Kör barnprocesser i valgrind" + +#~ msgid "Log to file descriptor" +#~ msgstr "Logga fill filidentifierare" + +#~ msgid "Log to socket" +#~ msgstr "Logga till uttag (socket)" + +#~ msgid "Callers in stack trace" +#~ msgstr "Antal visade anrop i stack-spår" + +#~ msgid "Stop showing errors if too many" +#~ msgstr "Sluta visa fel om för många" + +#~ msgid "Continue trace below main()" +#~ msgstr "Fortsätt spåra under main()-anroppet" + +#~ msgid "Supress errors from file" +#~ msgstr "Undertryck fel från fil" + +#~ msgid "Print suppressions for detected errors" +#~ msgstr "Visa undertryckningar för detekterade fel" + +#~ msgid "Start debugger on error" +#~ msgstr "Starta debugger vid fel" + +#~ msgid "Debugger command" +#~ msgstr "Debuggerkommando" + +#~ msgid "Show reachable leaked memory" +#~ msgstr "Visa nåbart läckt minne" + +#~ msgid "" +#~ "Determines how willing Memcheck is to consider different backtraces to be " +#~ "the same" +#~ msgstr "" +#~ "Bestämmer hur villig Memcheck är att betrakta olika stack-spår som lika" + +#~ msgid "Set size of freed memory pool" +#~ msgstr "Välj storlek på pool av återlämnat minne" + +#~ msgid "" +#~ "Determines how willing Addrcheck is to consider different backtraces to " +#~ "be the same" +#~ msgstr "" +#~ "Bestämmer hur villig Addrcheck är att betrakta olika stack-spår som lika" + +#~ msgid "Type of L1 instruction cache" +#~ msgstr "Typ av L1-instruktionscache" + +#~ msgid "Type of L1 data cache" +#~ msgstr "Typ av L1-datacache" + +#~ msgid "Type of L2 cache" +#~ msgstr "Typ av L2-cache" + +#~ msgid "Specify a function that allocates memory" +#~ msgstr "Ange en minnesallokeringsfunktion" + +#~ msgid "Print byte counts" +#~ msgstr "Visa antal bytes" + +#~ msgid "Print character counts" +#~ msgstr "Visa antal tecken" + +#~ msgid "Print newline counts" +#~ msgstr "Visa antal radbrytningar" + +#~ msgid "Print length of longest line" +#~ msgstr "Visa längd av längsta rad" + +#~ msgid "Dont print header" +#~ msgstr "Visa inte huvud" + +#~ msgid "Ignore username for time calculations" +#~ msgstr "Ignorera användarnamn vid tidsberäkningar" + +#~ msgid "Short format" +#~ msgstr "Kort format" + +#~ msgid "Toggle printing of remote hostname" +#~ msgstr "Växla utskrift av värdnamn för andra datorer" + +#~ msgid "Go to background immediately after startup" +#~ msgstr "Gå till bakgrunden omedelbart efter uppstart" + +#~ msgid "Log all messages to logfile" +#~ msgstr "Logga alla meddelanden till loggfil" + +#~ msgid "Append all messages to logfile" +#~ msgstr "Lägg till alla meddelanden till loggfil" + +#~ msgid "Turn on debug output" +#~ msgstr "Slå på visning av debuginformation" + +#~ msgid "Turn off verbose without being completely quiet" +#~ msgstr "Slå av utförligt läge utan att vara helt tyst" + +#~ msgid "Read URLs from file" +#~ msgstr "Läs URLer från fil" + +#~ msgid "Force input to be treated as HTML" +#~ msgstr "Tvinga indata att behandlas som HTML" + +#~ msgid "Prepend string to relative links" +#~ msgstr "Lägg till sträng före relativa länkar" + +#~ msgid "Bind address on local machine" +#~ msgstr "Bind till adress på lokal maskin" + +#~ msgid "Set number of retries to number" +#~ msgstr "Välj antal gånger att försöka igen" + +#~ msgid "Concatenate output to file" +#~ msgstr "Sammanlägg utdata till fil" + +#~ msgid "Never overwrite files with same name" +#~ msgstr "Skriv aldrig över filer med samma namn" + +#~ msgid "Continue getting a partially-downloaded file" +#~ msgstr "Fortsätt hämta partiellt nedladdad fil" + +#~ msgid "Select progress meter type" +#~ msgstr "Välj förloppsindikatortyp" + +#~ msgid "Turn on time-stamping" +#~ msgstr "Slå på tidsstämpling" + +#~ msgid "Print the headers/responses sent by servers" +#~ msgstr "Visa huvuden/svar skickade från servrar" + +#~ msgid "Do not download the pages, just check that they are there" +#~ msgstr "Ladda inte ner sidorna, kontrollera bara att de är där" + +#~ msgid "Set the network timeout" +#~ msgstr "Välj nätverkstimeout" + +#~ msgid "Set the DNS lookup timeout" +#~ msgstr "Välj DNS-lookuptimeout" + +#~ msgid "Set the connect timeout" +#~ msgstr "Välj uppkopplingstimeout" + +#~ msgid "Set the read (and write) timeout" +#~ msgstr "Välj läs (och skriv) timeout" + +#~ msgid "Limit the download speed" +#~ msgstr "Begränsa nedladdningshastigheten" + +#~ msgid "Wait the specified number of seconds between the retrievals" +#~ msgstr "Vänta det angivna antalet sekunder mellan hämtningar" + +#~ msgid "Wait time between retries" +#~ msgstr "Vänta tid mellan nytt hämtförsök" + +#~ msgid "Wait random amount of time between retrievals" +#~ msgstr "Vänta en slumpvald tid mellan hämtningar" + +#~ msgid "Toggle proxy support" +#~ msgstr "Slå på proxystöd" + +#~ msgid "Specify download quota for automatic retrievals" +#~ msgstr "Ange nedladdningskvot för automatiska hämtningar" + +#~ msgid "Turn off caching of DNS lookups" +#~ msgstr "Slå av cachning av DNS-frågor" + +#~ msgid "" +#~ "Change which characters found in remote URLs may show up in local file " +#~ "names" +#~ msgstr "Ändra vilka tecken i fjärr-URL som får förekomma i lokala filnamn" + +#~ msgid "Do not create a hierarchy of directories" +#~ msgstr "Skapa inte en kataloghierarki" + +#~ msgid "Force creation of a hierarchy of directories" +#~ msgstr "Tvinga skapande av kataloghierarki" + +#~ msgid "Disable generation of host-prefixed directories" +#~ msgstr "Inaktivera generering av värd-prefixkatalogkomponenter" + +#~ msgid "Use the protocol name as a directory component" +#~ msgstr "Använd protokollnamn som katalogkomponent" + +#~ msgid "Ignore specified number of directory components" +#~ msgstr "Ignorera angivet antal katalogkomponenter" + +#~ msgid "Set directory prefix" +#~ msgstr "Välj katalogprefix" + +#~ msgid "Force html files to have html extension" +#~ msgstr "Tvinga html-filer att få html-suffix" + +#~ msgid "Specify the http username" +#~ msgstr "Välj httpanvändarnamn" + +#~ msgid "Specify the http password" +#~ msgstr "Välj httplösenord" + +#~ msgid "Disable server-side cache" +#~ msgstr "Inaktivera cache på serversidan" + +#~ msgid "Load cookies from file" +#~ msgstr "Ladda kakor från fil" + +#~ msgid "Save cookies to file" +#~ msgstr "Spara kakor till fil" + +#~ msgid "Save session cookies" +#~ msgstr "Spara sessionskakor" + +#~ msgid "Ignore 'Content-Length' header" +#~ msgstr "Ignorera 'Content-Length' huvud" + +#~ msgid "Define an additional-header to be passed to the HTTP servers" +#~ msgstr "Definera ett extra huvud att skicka till HTTP-servern" + +#~ msgid "Specify the proxy username" +#~ msgstr "Välj proxyanvändarnamn" + +#~ msgid "Specify the proxy password" +#~ msgstr "Välj proxylösenord" + +#~ msgid "Set referer URL" +#~ msgstr "Välj referens-URL" + +#~ msgid "Save the headers sent by the HTTP server" +#~ msgstr "Spara headers skickade av HTTP-servern" + +#~ msgid "Identify as agent-string" +#~ msgstr "Identifiera som följande agent" + +#~ msgid "" +#~ "Use POST as the method for all HTTP requests and send the specified data " +#~ "in the request body" +#~ msgstr "" +#~ "Använd POST som metod för atta HTTP-anropp och skicka den angivna datan i " +#~ "anroppskroppen" + +#~ msgid "Turn off keep-alive for http downloads" +#~ msgstr "Slå av keep-alive för http-nedladdningar" + +#~ msgid "Don't remove the temporary .listing files generated" +#~ msgstr "Radera inte de tillfälliga .listing filerna som genererats" + +#~ msgid "Turn off FTP globbing" +#~ msgstr "Använd inte filmatchning i FTP" + +#~ msgid "Use the passive FTP retrieval scheme" +#~ msgstr "Använd passiv FTP" + +#~ msgid "Traverse symlinks and retrieve pointed-to files" +#~ msgstr "Följ symboliska länkar och hämta pekade filer" + +#~ msgid "Turn on recursive retrieving" +#~ msgstr "Använd rekursiv hämtning" + +#~ msgid "Specify recursion maximum depth" +#~ msgstr "Maximalt rekursionsdjup" + +#~ msgid "Delete every single file downloaded" +#~ msgstr "Radera alla nedladdade filer" + +#~ msgid "" +#~ "Convert the links in the document to make them suitable for local viewing" +#~ msgstr "" +#~ "Konvertera länkarna i dokumentet så att de passar för att titta på lokalt" + +#~ msgid "Back up the original version" +#~ msgstr "Backa upp orginalversionen" + +#~ msgid "Turn on options suitable for mirroring" +#~ msgstr "Slå på passande flaggor för spegling" + +#~ msgid "" +#~ "Download all the files that are necessary to properly display a given " +#~ "HTML page" +#~ msgstr "" +#~ "Ladda ner alla filer som behövs för att visa en given HTML-sida korrekt" + +#~ msgid "Turn on strict parsing of HTML comments" +#~ msgstr "Slå på strikt tolkning av HTML-kommentarer" + +#~ msgid "Comma-separated lists of file name suffixes or patterns to accept" +#~ msgstr "Kommaseparerad lista av filnamns-suffix eller mönster att ladda ner" + +#~ msgid "Comma-separated lists of file name suffixes or patterns to reject" +#~ msgstr "" +#~ "Kommaseparerad lista av filnamns-suffix eller mönster att inte ladda ner" + +#~ msgid "Set domains to be followed" +#~ msgstr "Välj domäner att följa" + +#~ msgid "Specify the domains that are not to be followed" +#~ msgstr "Välj domäner som inte skall följas" + +#~ msgid "Follow FTP links from HTML documents" +#~ msgstr "Följ FTP-länkar från HTML-dokument" + +#~ msgid "HTML tags to follow" +#~ msgstr "Följ angivna HTML-taggar" + +#~ msgid "HTML tags to ignore" +#~ msgstr "Ignorera angivna HTML-taggar" + +#~ msgid "Enable spanning across hosts" +#~ msgstr "Följ länkar mellan olika värdar" + +#~ msgid "Follow relative links only" +#~ msgstr "Följ bara relativa länkar" + +#~ msgid "Specify a comma-separated list of directories you wish to follow" +#~ msgstr "Välj en kommaseparerad lista av kataloger som skall följas" + +#~ msgid "Specify a comma-separated list of directories you wish to exclude" +#~ msgstr "Välj en kommaseparerad lista av kataloger som skall exkluderas" + +#~ msgid "Print all matching executables in PATH, not just the first" +#~ msgstr "Visa alla matchande program i PATH, inte bara den första" + +#~ msgid "Read aliases from stdin, reporting matching ones on stdout" +#~ msgstr "Läs alias från standard in, raportera matchningar på standard ut" + +#~ msgid "Ignore option '--read-alias'" +#~ msgstr "Ignorera flaggan '--read-alias'" + +#~ msgid "" +#~ "Read shell function definitions from stdin, reporting matching ones on " +#~ "stdout" +#~ msgstr "" +#~ "Läs funktionsdefinitioner från standard in, raportera matchningar på " +#~ "standard ut" + +#~ msgid "Ignore option '--read-functions'" +#~ msgstr "Ignorera flaggan '--read-functions'" + +#~ msgid "Skip directories in PATH that start with a dot" +#~ msgstr "Hoppa över kataloger i PATH som börjar med en punkt" + +#~ msgid "" +#~ "Skip directories in PATH that start with a tilde and executables which " +#~ "reside in the HOME directory" +#~ msgstr "" +#~ "Hoppa över kataloger i PATH som börjar med ett tilde och program som " +#~ "ligger i HOME-katalogen" + +#~ msgid "" +#~ "If a directory in PATH starts with a dot and a matching executable was " +#~ "found for that path, then print './programname'" +#~ msgstr "" +#~ "Om en katalog i PATH börjar med en punkt och ett matchande program hittas " +#~ "i den katalogen, skriv ut './programnamn'" + +#~ msgid "Output a tilde when a directory matches the HOME directory" +#~ msgstr "Skriv ut ett tilde när en katalog matcher HOME-katalogen" + +#~ msgid "Stop processing options on the right if not on tty" +#~ msgstr "Sluta processa flaggor till höger om inte på en tty" + +#~ msgid "Same as -b -d --login -p -r -t -T -u" +#~ msgstr "Synonymt med -b -d --login -p -r -t -T -u" + +#~ msgid "Print time of last boot" +#~ msgstr "Visa tidpunkt för senaste uppstart" + +#~ msgid "Print line of headings" +#~ msgstr "Skriv ut rad av överskrifter" + +#~ msgid "Print idle time" +#~ msgstr "Visa overksam tid" + +#~ msgid "Print login process" +#~ msgstr "Visa inloggningsprocess" + +#~ msgid "Canonicalize hostnames via DNS" +#~ msgstr "Gör värdnamn kanoniska via DNS" + +#~ msgid "Print hostname and user for stdin" +#~ msgstr "Visa värdnamn och användare för standard in" + +#~ msgid "Print active processes spawned by init" +#~ msgstr "Visa aktiva processer skapade av init" + +#~ msgid "Print all login names and number of users logged on" +#~ msgstr "Skriv ut alla inloggningsnamn och antal inloggade användare" + +#~ msgid "Print current runlevel" +#~ msgstr "Skriv ut nuvarande körnivå" + +#~ msgid "Print name, line, and time" +#~ msgstr "Visa namn, rad och tid" + +#~ msgid "Print last system clock change" +#~ msgstr "Visa senaste systemklockändring" + +#~ msgid "Print users message status as +, - or ?" +#~ msgstr "Visa användarstatus som +, - eller ?" + +#~ msgid "List users logged in" +#~ msgstr "Visa inloggade användare" + +#~ msgid "" +#~ "Input filenames are terminated by a null character instead of by " +#~ "whitespace, and the quotes and backslash are not special" +#~ msgstr "" +#~ "Indatafilnamn avslutas av ett nulltecken istället för ett blanktecken, " +#~ "och citationstecken samt omvänt snedstreck är inte speciella" + +#~ msgid "Set the end of file string to eof-str" +#~ msgstr "Sätt slut-på-fil-strängen till angiven sträng" + +#~ msgid "" +#~ "Replace replace-str in the initial arguments with names from standard " +#~ "input" +#~ msgstr "" +#~ "Ersätt angiven sträng i ursprungsargumenten med namn från standard in" + +#~ msgid "Use at most max-lines nonblank input lines per command line" +#~ msgstr "Använd som mest angivet antal icke-tomma indatarader per kommando" + +#~ msgid "Use at most max-args arguments per command line" +#~ msgstr "Använd som mest angivet antal argument per kommando" + +#~ msgid "" +#~ "Prompt the user about whether to run each command line and read a line " +#~ "from the terminal" +#~ msgstr "" +#~ "Fråga användaren om varje kommando ska utföras och läs en rad från " +#~ "terminalen" + +#~ msgid "" +#~ "If the standard input does not contain any nonblanks, do not run the " +#~ "command" +#~ msgstr "" +#~ "Om inte standard in innehåller icke-tomma tecken, utför inte kommandot" + +#~ msgid "Use at most max-chars characters per command line" +#~ msgstr "Använd som mest angivet antal tecken per kommandorad" + +#~ msgid "" +#~ "Print the command line on the standard error output before executing it" +#~ msgstr "Skriv ut kommandoraden på standard fel före exekvering" + +#~ msgid "Exit if the size is exceeded" +#~ msgstr "Avsluta om storleken överskrids" + +#~ msgid "Run up to max-procs processes at a time" +#~ msgstr "Kör upp till angivet antal processer i taget" + +#~ msgid "Display grammar and exit" +#~ msgstr "Visa grammatik och avsluta" + +#~ msgid "Select window by name" +#~ msgstr "Välj fönster via namn" + +#~ msgid "Select root window" +#~ msgstr "Välj rotfönster" + +#~ msgid "Specify X server" +#~ msgstr "Välj X-server" + +#~ msgid "Do not show property type" +#~ msgstr "Visa inte egenskapstyp" + +#~ msgid "Select a window by clicking on its frame" +#~ msgstr "Välj ett fönster genom att klicka på dess ram" + +#~ msgid "Remove property" +#~ msgstr "Ta bort egenskap" + +#~ msgid "Set property" +#~ msgstr "Sätt egenskap" + +#~ msgid "Examine property updates forever" +#~ msgstr "Lyssna efter uppdateringar för alltid" + +#~ msgid "Make no changes" +#~ msgstr "Gör inga förändringar" + +#~ msgid "Append input to selection" +#~ msgstr "Lägg till indata till slutet at urval" + +#~ msgid "Append to selection as input grows" +#~ msgstr "Lägg till till urval när indata växer" + +#~ msgid "Read into selection" +#~ msgstr "Läs in i urval" + +#~ msgid "Write selection" +#~ msgstr "Visa urval" + +#~ msgid "Clear selection" +#~ msgstr "Töm urval" + +#~ msgid "Delete selection" +#~ msgstr "Radera urval" + +#~ msgid "Use primary selection" +#~ msgstr "Använd primärt urval" + +#~ msgid "Use secondary selection" +#~ msgstr "Använd sekundärt urval" + +#~ msgid "Use clipboard selection" +#~ msgstr "Använd urklipp (clipboard) istället för urval" + +#~ msgid "Make current selections persistent after program exit" +#~ msgstr "Gör så nuvarande urval finns kvar efter programavslut" + +#~ msgid "Exchange primary and secondary selections" +#~ msgstr "Växla primärt och sekundärt urval" + +#~ msgid "Timeout for retrieving selection" +#~ msgstr "Timeout under hämtning" + +#~ msgid "Do not detach from the controlling terminal" +#~ msgstr "Frikoppla inte från terminalen" + +#~ msgid "Print informative messages" +#~ msgstr "Visa informativa meddelanden" + +#~ msgid "Set debug level" +#~ msgstr "Välj debugnivå" + +#~ msgid "Set error level" +#~ msgstr "Välj felrapporteringsnivå" + +#~ msgid "Be tolerant of errors in commandline" +#~ msgstr "Tolerera fel i kommandoraden" + +#~ msgid "Set maximum delay between commands" +#~ msgstr "Välj maximal fördröjning mellan kommandon" + +#~ msgid "Run commands from cache" +#~ msgstr "Kör ett kommando från cache" + +#~ msgid "Specify installroot" +#~ msgstr "Välj installationsrot" + +#~ msgid "Enables obsolets processing logic" +#~ msgstr "Slå på hantering av obsoleta paket" + +#~ msgid "Output rss-data to file" +#~ msgstr "Skriv rss-data till fil" + +#~ msgid "Exclude specified package from updates" +#~ msgstr "Exkludera angivna paket från uppdateringar" + +#~ msgid "Freshen: only changed files" +#~ msgstr "Uppdatera: Lägg till ändrade filer" + +#~ msgid "Delete entries in zipfile" +#~ msgstr "Radera filer från zipfil" + +#~ msgid "Update: only changed or newer files" +#~ msgstr "Uppdatera: Lägg bara till ändrade och nya filer" + +#~ msgid "Move into zipfile (delete files)" +#~ msgstr "Radera de filer som läggs till arkivet" + +#~ msgid "Do not compress at all" +#~ msgstr "Komprimera inte alls" + +#~ msgid "Convert LF to CR LF" +#~ msgstr "Konvertera LF (Unixradbrytning) till CR LF (Windowsradbrytning)" + +#~ msgid "Convert CR LF to LF" +#~ msgstr "Konvertera CR LF (Windowsradbrytning) till LF (Unixradbrytning)" + +#~ msgid "Compress faster" +#~ msgstr "Snabb komprimering" + +#~ msgid "Compress better" +#~ msgstr "Högre kompressionsgrad" + +#~ msgid "Add one-line comments" +#~ msgstr "Lägg till enradskommentar" + +#~ msgid "Add zipfile comments" +#~ msgstr "Lägg till kommentar till zipfil" + +#~ msgid "Read names from stdin" +#~ msgstr "Läs namn från standard in" + +#~ msgid "Make zipfile as old as the latest entry" +#~ msgstr "Sätt filens ändringsdatum till ändringsdatum av senaste fil" + +#~ msgid "Fix zipfile" +#~ msgstr "Reparera zip-fil" + +#~ msgid "Fix zipfile (try harder)" +#~ msgstr "Reparera zip-fil (försök mer)" + +#~ msgid "Adjust offsets to suit self-extracting exe" +#~ msgstr "" +#~ "Justera förskjutningar för att lämna plats för att skapa ett " +#~ "självextraherande arkiv" + +#~ msgid "Strip prepended data" +#~ msgstr "Ta bort datablock före arkivet" + +#~ msgid "Test zipfile integrity" +#~ msgstr "Testa zipfilintegritet" + +#~ msgid "Exclude extra file attributes" +#~ msgstr "Exkludera extra filattribut" + +#~ msgid "Store symbolic links as links" +#~ msgstr "Lagra symboliska länkar som länkar" + +#~ msgid "PKZIP recursion" +#~ msgstr "PKZIP-rekursion" + +#~ msgid "Encrypt" +#~ msgstr "Kryptera" + +#~ msgid "Maximum uploads at once" +#~ msgstr "Maximalt antal samtidiga uppladningar" + +#~ msgid "Number of seconds between keepalives" +#~ msgstr "Sekunder mellan keepalives" + +#~ msgid "Bytes per request" +#~ msgstr "Bytes per förfrågan" + +#~ msgid "Requests per pipe" +#~ msgstr "Förfrågningar per rör" + +#~ msgid "Maximum length prefix encoding" +#~ msgstr "Maximal längd på prefixkod" + +#~ msgid "File for server response" +#~ msgstr "Fil att lagra serversvar i" + +#~ msgid "URL to get file from" +#~ msgstr "URL att hämta fil från" + +#~ msgid "Local file target" +#~ msgstr "Lokal fil att hämta till" + +#~ msgid "Time to close inactive socket" +#~ msgstr "Fördröjning innan inaktivt uttag (socket) stängs" + +#~ msgid "Time between checking timeouts" +#~ msgstr "Intervall mellan kontroller av timeouts" + +#~ msgid "Maximum outgoing slice length" +#~ msgstr "Längsta slice-storlek" + +#~ msgid "Maximum time to guess rate" +#~ msgstr "Maximalt tid att gissa kvot" + +#~ msgid "IP to bind to locally" +#~ msgstr "Lokal IP-adress att binda till" + +#~ msgid "Time between screen updates" +#~ msgstr "Tid mellan skärmuppdateringar" + +#~ msgid "Time to wait between requesting more peers" +#~ msgstr "Tidsintevall mellan förfrågningar efter nya fränder" + +#~ msgid "Minimum number of peers to not do requesting" +#~ msgstr "Minimalt antal fränder för att inte skicka förfrågan" + +#~ msgid "Number of seconds before assuming http timeout" +#~ msgstr "Sekunder innan http-timeout" + +#~ msgid "Number of peers at which to stop initiating new connections" +#~ msgstr "Antal fränder för att inte skapa nya uppkopplingar" + +#~ msgid "Maximum number of connections to allow" +#~ msgstr "Maximalt antal tillåtna uppkopplingar" + +#~ msgid "Whether to check hashes on disk" +#~ msgstr "Om disk-hashar skall verifieras" + +#~ msgid "Maximum kB/s to upload at" +#~ msgstr "Maximal uppladdningstakt i kB/s" + +#~ msgid "Seconds to wait for data to come in before assuming choking" +#~ msgstr "Antal sekunder att vänta innan antagande om strypning" + +#~ msgid "Whether to display diagnostic info" +#~ msgstr "Visa debuginfo" + +#~ msgid "Number of downloads at which to switch from random to rarest first" +#~ msgstr "" +#~ "Antal nedladdningar för att byta från slumpmässig slice till ovanligaste " +#~ "slice först" + +#~ msgid "Number of uploads to fill out to with optimistic unchokes" +#~ msgstr "Antalet uppladningar att fylla med optimistisk avstrypning" + +#~ msgid "Whether to inform the user that hash failures occur" +#~ msgstr "Om användaren skall informeras om hashfel" + +#~ msgid "%ls: Expected zero or two parameters, got %d\n" +#~ msgstr "%ls: Förväntade noll eller två argument, fick %d" + +#~ msgid "Current functions are: " +#~ msgstr "Nuvarande funktioner är: " + +#~ msgid "%ls: Not inside of block\n" +#~ msgstr "%ls: Inte i ett block\n" + +#~ msgid "%ls: Not inside of 'if' block\n" +#~ msgstr "%ls: Inte i ett 'if' block\n" + +#~ msgid "%ls: Expected exactly one argument, got %d\n" +#~ msgstr "%ls: Förväntade exakt ett argument, fick %d\n" + +#~ msgid "%ls: 'case' command while not in switch block\n" +#~ msgstr "%ls: 'case' kommandot kan bara användas i ett 'switch'-block\n" + +#~ msgid "%ls: Unknown error" +#~ msgstr "%ls: Okänt fel" + +#~ msgid "%ls: Can not specify scope when erasing array slice\n" +#~ msgstr "%ls: Kan inte ange definitionsområde vid radering av arraydel\n" + +#~ msgid "Could not get user information" +#~ msgstr "Kunde inte hitta information om användare" + +#~ msgid "Could not convert message '%s' to wide character string" +#~ msgstr "Kunde inte konvertera meddelandet '%s' till en bred teckensträng" + +#~ msgid "%ls: Argument '%s' is not a valid file descriptor\n" +#~ msgstr "%ls: Argumentet '%s' är inte en giltig filidentifierare\n" + +#~ msgid "Could not set up output file descriptors for pager" +#~ msgstr "Kunde inte initiera utdata-filidentifierare för visare" + +#~ msgid "Could not set up input file descriptors for pager" +#~ msgstr "Kunde inte initiera indata-filidentifierare för visare" + +#~ msgid "Could not open tty for pager" +#~ msgstr "Kunde inte öppna tty för visare" + +#~ msgid "Could not initialize result pipe" +#~ msgstr "Kunde inte initiera rör för utskrift av resultat" + +# +#~ msgid "Unspecified file descriptors" +#~ msgstr "Ospecificerad filidentifierare" + +# +#~ msgid "Could not read completions" +#~ msgstr "Kunde inte läsa kompletteringar" + +#~ msgid "Could not expand string '%ls'" +#~ msgstr "Kunde inte expandera strängen '%ls'" + +#~ msgid "An additional command is required" +#~ msgstr "Ett till kommand krävs" + +#~ 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." + +#~ msgid "Expected a command name, got token of type '%ls'" +#~ msgstr "" +#~ "Förväntade att hitta ett kommandonamn, hittade en symbol av typen '%ls'" + +#~ msgid "'case' builtin not inside of switch block" +#~ msgstr "" +#~ "Det inbyggda kommandot 'case' får bara användas i ett 'switch'-block." + +#~ msgid "Loop control command while not inside of loop" +#~ msgstr "Loopstyrningskommandon får bara användas i loopar." + +#~ msgid "'%ls' builtin not inside of if block" +#~ msgstr "Det inbyggda kommandot 'else' får bara användas i ett if-block" + +#~ msgid "'end' command outside of block" +#~ msgstr "Det inbyggda kommandot 'end' får bara användas i ett block" + +#~ msgid "Expected redirection specification, got token of type '%ls'" +#~ msgstr "Förväntade en IO dirigering, hittade en symbol av typen '%ls'" + +#~ msgid "" +#~ "Encountered redirection when expecting a command name. Fish does not " +#~ "allow a redirection operation before a command." +#~ msgstr "" +#~ "Förväntade ett kommandonamn, hittade en IO dirigering. Fish tillåter into " +#~ "IO dirigeringar före kommandonamn" + +#~ msgid "Invalid IO redirection" +#~ msgstr "Ogiltig IO omdirigering" + +#~ msgid "Requested redirection to something that is not a file descriptor %ls" +#~ msgstr "IO dirigering till någonting som inte är en filidentifierare" + +#~ msgid "Don't preserve the specified attributes" +#~ msgstr "Behåll inte de angivna attributen" + +#~ msgid "Control creation of sparse files" +#~ msgstr "Kontrollera skapandet av glesa filer" + +#~ msgid "add the specified files on the next commit" +#~ msgstr "Lägg till angiven fil fill den nuvarande listan av nyckelringar" + +#~ msgid "show changeset information by line for each file" +#~ msgstr "Visa ändringsinformation för paket" + +#~ msgid "create an unversioned archive of a repository revision" +#~ msgstr "Lägg till fil eller träd utan version till förrådet" + +#~ msgid "list repository named branches" +#~ msgstr "Inaktivera förråd" + +#~ msgid "create a changegroup file" +#~ msgstr "Skapa en kontrollpunktfil" + +#~ msgid "output the current or given revision of files" +#~ msgstr "Visa loggmeddelanden för en uppsättning revisioner och/eller filer" + +#~ msgid "make a copy of an existing repository" +#~ msgstr "Skapa lokal kopia av förråd" + +#~ msgid "commit the specified files or all outstanding changes" +#~ msgstr "Dekryptera angiven fil eller standard in" + +#~ msgid "diff repository (or selected files)" +#~ msgstr "Radera urval" + +#~ msgid "forget the specified files on the next commit" +#~ msgstr "Flytta filen angiven på kommandoraden" + +#~ msgid "copy changes from other branches onto the current branch" +#~ msgstr "Hämta ändringar från förrådet till arbetskopian" + +#~ msgid "identify the working copy or specified revision" +#~ msgstr "Uppdatera arbetskopian till en annan URL" + +#~ msgid "import an ordered set of patches" +#~ msgstr "Visa byteavstånd för matchningar" + +#~ msgid "create a new repository in the given directory" +#~ msgstr "Skapa förråd om det inte redan existerar" + +#~ msgid "locate files matching specific patterns" +#~ msgstr "Visa inte filer som matchar mönster" + +#~ msgid "output the current or given revision of the project manifest" +#~ msgstr "Visa loggmeddelanden för en uppsättning revisioner och/eller filer" + +#~ msgid "show changesets not found in the destination" +#~ msgstr "Fråga paket med angiven grupp" + +#~ msgid "show the parents of the working directory or revision" +#~ msgstr "Ändra arbetskatalog" + +#~ msgid "show aliases for remote repositories" +#~ msgstr "Ta bort inlägg i .cvspass för fjärrförråd" + +#~ msgid "pull changes from the specified source" +#~ msgstr "Fråga paket med angiven grupp" + +#~ msgid "push changes to the specified destination" +#~ msgstr "Fråga paket med angiven grupp" + +#~ msgid "remove the specified files on the next commit" +#~ msgstr "Flytta filen angiven på kommandoraden" + +#~ msgid "roll back the last transaction (dangerous)" +#~ msgstr "Ordna om fixarna i förrådet" + +#~ msgid "print the root (top) of the current working directory" +#~ msgstr "Ändra arbetskatalog" + +#~ msgid "show changed files in the working directory" +#~ msgstr "Ändra arbetskatalog" + +#~ msgid "summarize working directory state" +#~ msgstr "Visa nuvarande katalog" + +#~ msgid "list repository tags" +#~ msgstr "Inaktivera förråd" + +#~ msgid "show the tip revision" +#~ msgstr "Visa tid" + +#~ msgid "apply one or more changegroup files" +#~ msgstr "Läs paket från fil" + +#~ msgid "update working directory (or switch revisions)" +#~ msgstr "Ändra arbetskatalog" + +#~ msgid "verify the integrity of the repository" +#~ msgstr "Ta bort ett inlägg från förråd" + +#~ msgid "output version and copyright information" +#~ msgstr "Ignorera versionsmagiinformation" + +#~ msgid "Configuration Files" +#~ msgstr "Konfigureringsfil" + +#~ msgid "Date Formats" +#~ msgstr "Välj format" + +#~ msgid "Diff Formats" +#~ msgstr "Listformat" + +#~ msgid "Environment Variables" +#~ msgstr "Redigera miljövariabler" + +#~ msgid "Specifying File Sets" +#~ msgstr "Välj konfigurationsfil" + +#~ msgid "Configuring hgweb" +#~ msgstr "Konfigureringsfil" + +#~ msgid "Merge Tools" +#~ msgstr "Sammanslå sorterade filer" + +#~ msgid "Specifying Multiple Revisions" +#~ msgstr "Ange revision" + +#~ msgid "File Name Patterns" +#~ msgstr "Visa inte filer som matchar mönster" + +#~ msgid "Specifying Single Revisions" +#~ msgstr "Ange revision" + +#~ msgid "Specifying Revision Sets" +#~ msgstr "Ange revisionstiollstånd" + +#~ msgid "Subrepositories" +#~ msgstr "Aktivera förråd" + +#~ msgid "[+] include names matching the given patterns" +#~ msgstr "Visa inte filer som matchar mönster" + +#~ msgid "[+] exclude names matching the given patterns" +#~ msgstr "Lista alla moduler som matchar parameter med jokertecken" + +#~ msgid "[+] include names matching the given patterns" +#~ msgstr "Visa inte filer som matchar mönster" + +#~ msgid "[+] exclude names matching the given patterns" +#~ msgstr "Lista alla moduler som matchar parameter med jokertecken" + +#~ msgid "Annotate the specified revision" +#~ msgstr "Hjälp för det angivna inbyggda kommandot" + +#~ msgid "Use text as commit message" +#~ msgstr "Läs meddelande för tillägg från fil" + +#~ msgid "Read commit message from file" +#~ msgstr "Läs meddelande för tillägg från fil" + +#~ msgid "Record the specified date as commit date" +#~ msgstr "Hjälp för det angivna kommandot" + +#~ msgid "Record the specified user as committer" +#~ msgstr "Använd angiven sträng som kommentarsträng" + +#~ msgid "File to store the bundles into" +#~ msgstr "Redigera fix-paketbeskrivning" + +#~ msgid "Limit number of changes displayed" +#~ msgstr "Skriv bara ut angivet antal matchningar" + +#~ msgid "Display with template" +#~ msgstr "Visa alla matchningar" + +#~ msgid "Specify ssh command to use" +#~ msgstr "Ange kommando att operera på" + +#~ msgid "Specify hg command to run on the remote side" +#~ msgstr "Välj destinationsadress" + +#~ msgid "Search the repository as it is in REV" +#~ msgstr "Ange förråd-URL" + +#~ msgid "Show revisions matching date spec" +#~ msgstr "Visa bara matchande del" + +#~ msgid "Revision to display" +#~ msgstr "Välj display" + +#~ msgid "Specify merge tool" +#~ msgstr "Ange förtroendemodell" + +#~ msgid "Show parents of the specified revision" +#~ msgstr "Fråga paket med angiven grupp" + +#~ msgid "[+] target revision" +#~ msgstr "Slå ihop revisioner" + +#~ msgid "Tipmost revision matching date" +#~ msgstr "Visa inte filer som matchar mönster" + +#~ msgid "Revert to the specified revision" +#~ msgstr "Flytta filen angiven på kommandoraden" + +#~ msgid "For remote clients" +#~ msgstr "Visa eller ta bort funktioner" + +#~ msgid "Untrusted configuration options" +#~ msgstr "Välj konfigurationsinställningar" + +#~ msgid "List the changed files of a revision" +#~ msgstr "Visa alla engenskaper hos filer, kataloger eller revisioner" + +#~ msgid "" +#~ "\\nWARNING\\n\\nThe location for fish configuration files has changed to " +#~ "%s.\\nYour old files have been moved to this location.\\nYou can change " +#~ "to a different location by changing the value of the variable " +#~ "$XDG_CONFIG_HOME.\\n\\n" +#~ msgstr "" +#~ "\\nVARNING\\n\\nLagringsplatsen för fish-konfigureringsfiler har ändrats " +#~ "till %s. Dina gamla filer har flyttats till denna plats.\\nDu kan ändra " +#~ "denna plats genom att byta värde på variabeln $XDG_CONFIG_HOME.\\n\\n" + +#~ msgid "%ls: Missing function definition information." +#~ msgstr "%ls: Funktionsdefinition saknas." + +#~ msgid "%ls: Command only available in interactive sessions" +#~ msgstr "%ls: Kommandot finns bara tillgängligt under interaktiva sessioner" + +#~ msgid "Procces\n" +#~ msgstr "Process\n" + +#~ msgid "This is a bug. " +#~ msgstr "Detta är en bug. " + +#~ msgid "Could not create child process - exiting" +#~ msgstr "Kunde inte skapa barnprocess - avslutar programmet" + +#~ msgid "Failed to close file descriptor %d" +#~ msgstr "Misslyckades med att stänga filidentifierare %d" + +#~ msgid "" +#~ "Could not send process %d, '%ls' in job %d, '%ls' from group %d to group " +#~ "%d" +#~ msgstr "" +#~ "Kunde inte skicka process %d, '%ls', i jobb %d, '%ls' från grupp %d till " +#~ "grupp %d" + +#~ msgid "%s: Unknown error\n" +#~ msgstr "%s: Okänt fel\n" + +#~ msgid "Maximum recursion depth reached. Accidental infinite loop?" +#~ msgstr "Maximalt rekursionsdjup uppnått. Oavsiktlig oändlig upprepning?" + +#~ msgid "Maximum number of nested blocks reached." +#~ msgstr "Maximalt antal nästade block har uppnåtts." + +#~ msgid "" +#~ "Warning: No match for wildcard '%ls'. The command will not be executed." +#~ msgstr "" +#~ "Varning: Inga matchningar för jokertecknen i '%ls'. Kommandot kommer inte " +#~ "utföras." + +#~ msgid "Tried to evaluate null pointer." +#~ msgstr "Försökte evaluera nollpekare." + +#~ msgid "in . (source) call of file '%ls',\n" +#~ msgstr "i '.'-anrop av fil '%ls',\n" + +#~ msgid "Unknown command '%ls'" +#~ msgstr "Okänt kommando '%ls'" + +#~ msgid "Job command" +#~ msgstr "Jobb kommando" + +#~ msgid "Job list pointer" +#~ msgstr "Jobblistepekare" + +#~ msgid "Process command" +#~ msgstr "Processkommando" + +#~ msgid "There are stopped jobs\n" +#~ msgstr "Det finns stannade jobb\n" + +#~ msgid "Could not convert input. Read %d bytes." +#~ msgstr "Kunde inte konvertera indata. Läste %d bytes." + +#~ msgid "Could not read input stream" +#~ msgstr "Kunde inte läsa från indataström" + +#~ msgid "%s: Too many arguments\n" +#~ msgstr "%s: För många argument\n" + +#~ msgid "Invalid token" +#~ msgstr "Ogiltig symbol" + +#~ msgid "function %s called with null value for argument %s. " +#~ msgstr "funktionen %s anropades med nollvärde som argument %s. " + +#~ msgid "function %s called while blocking signals. " +#~ msgstr "funktionen %s anropades medan signaler var blockerade. " + +#~ msgid "Remove one or more files or directories from the repository" +#~ msgstr "Ta bort filer eller kataloger från lagret" + +#~ msgid "Move/rename one or more files or directories" +#~ msgstr "Flytta/byt namn på en eller flera filer eller kataloger" + +#~ msgid "Replace a token with a new value for that token" +#~ msgstr "Ersätt en symbol med ett nytt värde för den symbolen" + +#~ msgid "Revert to the recorded version (safe the first time only)" +#~ msgstr "Backa till senaste lagrade version (Är bara säkert en gång)" + +#~ msgid "Save changes in the working copy to the repository as a patch" +#~ msgstr "Spara ändringar i arbetskopian till lagret som en fix" + +#~ msgid "Tag the contents of the repository with a version name" +#~ msgstr "Tagga innehållet i lagret med ett versionsnummer" + +#~ msgid "Record an inverse patch without changing the working directory" +#~ msgstr "Lagra en omvänd fix utan att ändra arbetskopian" + +#~ msgid "Gives a changelog-style summary of the repository history" +#~ msgstr "Ge en changelog-formaterad summering av förrådhistorik" + +#~ msgid "Opposite of pull; unsafe if patch is not in remote repository" +#~ msgstr "Motsatsen till pull, osäker om fixen inte finns i fjärrlagret" + +#~ msgid "Apply patches (from an email bundle) to the repository" +#~ msgstr "Applicera fixar (från e-postpaket) till lagret" + +#~ msgid "Create a local copy of another repository" +#~ msgstr "Skapa lokal kopia av förråd" + +#~ msgid "Initialize a new source tree as a darcs repository" +#~ msgstr "Checka in filer till förråd" + +#~ msgid "Optimize the repository" +#~ msgstr "Optimera förråd" + +#~ msgid "Check the repository for consistency" +#~ msgstr "Kontrollera lagrets konsistens" + +#~ msgid "Name of version to checkpoint" +#~ msgstr "NAmn på version at använda som kontrollpunkt" + +#~ msgid "Use pattern from file" +#~ msgstr "Använd mönster från fil" + +#~ msgid "Use ARG as merge command" +#~ msgstr "Ange sammanslagningskommando" + +#~ msgid "Use ARG as external editor" +#~ msgstr "Ange extern editor" + +#~ msgid "Maximum number of log entries" +#~ msgstr "Maximalt antal logginlägg" + +#~ msgid "Commands to execute when fish exits" +#~ msgstr "Kommandon som utförs när fish avslutas" + +#~ msgid "Good bye\\n" +#~ msgstr "Hej då\\n" + +#~ msgid "" +#~ "%s: Expected exactly one argument, got %s.\\n\\nSynopsis:\\n\\t%sfunced%s " +#~ "FUNCTION\\n" +#~ msgstr "" +#~ "%s: Förväntade exakt ett argument, fick %s\\n\\nSynopsis:\\n\\t%svared%s " +#~ "VARIABEL\\n" + +#~ 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" + +#~ msgid "%ls: Expected at least one argument, got %d\n" +#~ msgstr "%ls: Förväntade minst ett argument, fick %d\n" + +#~ msgid "Evaluate parameters as a command" +#~ msgstr "Utför argument som kommando" + +#~ msgid "User home" +#~ msgstr "Hemkatalog" + +#~ msgid "Invalid Control sequence" +#~ msgstr "Ogiltig kontroll-sekvens" + +#~ msgid "Could not parse sequence '%ls'" +#~ msgstr "Kunde inte tolka sekvens '%ls'" + +#~ msgid "Invalid sequence - no dash after control\n" +#~ msgstr "Ogiltig sekvens - inget bindestreck efter 'control'\n" + +#~ msgid "Invalid sequence - Control-nothing?\n" +#~ msgstr "Ogiltig sekvens - Kontroll-ingenting?\n" + +#~ msgid "Invalid sequence - no dash after meta\n" +#~ msgstr "Ogiltig sekvens - inget bindestreck efter 'meta'\n" + +#~ msgid "Invalid sequence - Meta-nothing?" +#~ msgstr "Ogiltig sekvens - Meta-ingenting?" + +#~ msgid "Invalid sequence - '%ls' expanded to zero characters" +#~ msgstr "Ogiltig sekvens - '%ls' expanderades till en tom sträng" + +#~ msgid "Mismatched $endif in inputrc file" +#~ msgstr "$endif matchade inte i inputrc-fil" + +#~ msgid "Mismatched quote" +#~ msgstr "Citat-tecknen matchar inte varandra" + +#~ msgid "Expected a ':'" +#~ msgstr "Förväntade ett ':'" + +#~ msgid "I don't know what '%ls' means" +#~ msgstr "Vet inte vad '%ls' betyder" + +#~ msgid "Expected end of line, got '%ls'" +#~ msgstr "Förväntade radslut, fick '%ls'" + +#~ msgid "Syntax: set KEY VALUE" +#~ msgstr "Syntax: set NAMN VÄRDE" + +#~ msgid "Unable to parse key binding" +#~ msgstr "Kunde inte tolka tangentbordsgenväg" + +#~ msgid "I don't know what %ls means" +#~ msgstr "Vet inte vad '%ls' betyder" + +#~ msgid "Error while reading input information from file '%ls'" +#~ msgstr "Ett fel uppstod under inläsning av filen '%ls'" + +#~ msgid "" +#~ "This is a circular dependency in the autoloading scripts, please remove " +#~ "it." +#~ msgstr "" +#~ "Detta är ett cirkulärt beroende i de automatiskt laddade filerna, var " +#~ "vänlig ta bort det." + +#~ msgid "Error while reading commands" +#~ msgstr "Ett fel inträffade medan kommandon lästes in" + +#~ msgid "" +#~ "%s: Warning: The directory %s has been removed from your PATH because it " +#~ "does not exist\\n" +#~ msgstr "" +#~ "%s: Varning: Katalogen %s har tagits bort från din PATH eftersom den inte " +#~ "existerar\\n" + +#~ msgid "Comma-separated list of dependancy types to follow recursively" +#~ msgstr "Komma-separarad lista av beroendetyper att följa rekursivt" + +#~ msgid "Comma-separated list of dependancy types to show" +#~ msgstr "Komma-separarad lista av beroendetyper att visa" + +#~ msgid "Run in noninteractive mode" +#~ msgstr "Kör i icke-interaktivt läge" + +# +#~ msgid "Change input mode" +#~ msgstr "Ändra inmatningsläge" + +#~ msgid "Escape all non-printing characters" +#~ msgstr "Ersätt oskrivbara tecken med specialsekvenser" + +#~ msgid "Number nonblank lines" +#~ msgstr "Numrera icke-tomma rader" + +#~ msgid "Escape non-printing characters except tab" +#~ msgstr "Erätt oskrivbarta tecken utom tab med specialsekvenser" + +#~ msgid "Display $ at end of line" +#~ msgstr "Visa $ vid radslut" + +#~ msgid "Never more than single blank line" +#~ msgstr "Visa maximalt en tom rad i följd" + +#~ msgid "Escape non-printing characters except newline" +#~ msgstr "Erätt oskrivbarta tecken utom radbrytning med specialsekvenser" + +#~ msgid "Escape tab" +#~ msgstr "Ersätt tab med specialsekvens" + +#~ msgid "Escape non-printing except newline and tab" +#~ msgstr "" +#~ "Erätt oskrivbarta tecken utom tab och radbrytning med specialsekvenser" + +#~ msgid "Dereferense symbolic links" +#~ msgstr "Följ symboliska länkar" + +#~ msgid "Same as -dpR" +#~ msgstr "Samma sak som -dpR" + +#~ msgid "Copy contents of special files when recursive" +#~ msgstr "Kopiera innehåll i specialla filer i rekursivt läge" + +#~ msgid "Same as --no-dereference --preserve=link" +#~ msgstr "Samma sak som --no-dereference --preserve=link" + +#~ msgid "Follow command-line symbolic links" +#~ msgstr "Följ symboliska länkar från kommandoraden" + +#~ msgid "Link files instead of copying" +#~ msgstr "Länka filer istället för att kopiera dem" + +#~ msgid "Always follow symbolic links" +#~ msgstr "Följ alltid symboliska länkar" + +#~ msgid "Never follow symbolic links" +#~ msgstr "Följ aldrig symboliska länkar" + +#~ msgid "Use full source file name under DIRECTORY" +#~ msgstr "Använd fullt källfilsnamn under KATALOG" + +#~ msgid "Copy directories recursively" +#~ msgstr "Kopiera kataloger rekursivt" + +#~ msgid "" +#~ "Remove each existing destination file before attempting to open it " +#~ "(contrast with --force)" +#~ msgstr "" +#~ "Ta bort varje existerande målfil innan försök att öppna den (jämför med --" +#~ "force)" + +#~ msgid "Make symbolic links instead of copying" +#~ msgstr "Skapa symboliska länkar istället för att kopiera" + +#~ msgid "Treat DEST as a normal file" +#~ msgstr "Behandla DEST som en vanlig fil" + +#~ msgid "Stay on this file system" +#~ msgstr "Stanna på detta filsystem" + +#~ msgid "Create patch format diffs between releases" +#~ msgstr "Skapa differens mellan versioner i \"patch\"-format" + +#~ msgid "Specify legal cvsroot directory." +#~ msgstr "Välj laglig cvsroot-katalog" + +#~ msgid "Authenticate all net traffic" +#~ msgstr "Autentisera all nätverkstrafik" + +#~ msgid "Do not use the ~/.cvsrc file" +#~ msgstr "Ignorera ~/.cvsrc" + +#~ msgid "Cause CVS to be really quiet" +#~ msgstr "Gör CVS mycket tyst läge" + +#~ msgid "Cause CVS to be somewhat quiet" +#~ msgstr "Gör CVS något tystare" + +#~ msgid "Make checked-out files read-only" +#~ msgstr "Gör utcheckade filer skrivskyddade" + +#~ msgid "Show trace of program execution -- try with -n" +#~ msgstr "Visa spår av programexekvering -- använd med -n" + +#~ msgid "Make checked-out files read-write (default)" +#~ msgstr "Gör utcheckade filer läs och skrivbara" + +#~ msgid "Encrypt all net traffic" +#~ msgstr "Kryptera all nätverkstrafik" + +#~ msgid "Use the most recent revision no later than date" +#~ msgstr "Använd den senaste revisionen som ej är nyare än angivet datum" + +#~ msgid "Retrieve files even when no match for tag/date" +#~ msgstr "Hämta filer även när ingen matchning finns för tagg/datum" + +#~ msgid "Alter default keyword processing" +#~ msgstr "Ändra standardnyckelordsprocessning" + +#~ msgid "Don't recurse" +#~ msgstr "Rekursera inte" + +#~ msgid "Specify log message instead of invoking editor" +#~ msgstr "Ange logmeddelande istället för att anropa editor" + +#~ msgid "Don't run any tag programs" +#~ msgstr "Kör inga taggningsprogram" + +#~ msgid "Prune empty directories" +#~ msgstr "Rensa bort tomma kataloger" + +#~ msgid "Pipe files to stdout" +#~ msgstr "Skicka filer till standard ut" + +#~ msgid "Process directories recursively" +#~ msgstr "Processa underkataloger rekursivt" + +#~ msgid "Specify filenames to be filtered" +#~ msgstr "Ange filnamn att filtrera" + +#~ msgid "Lock a revision" +#~ msgstr "Lås en revision" + +#~ msgid "Force name/rev association" +#~ msgstr "Tvinga namn/revision-association" + +#~ msgid "Make a name/rev association" +#~ msgstr "Skapa namn/revision-association" + +#~ msgid "Run quietly" +#~ msgstr "Tyst läge" + +#~ msgid "Set a state attribute for a revision" +#~ msgstr "Välj ett tillståndsattribut för en revision" + +#~ msgid "Write descriptive text from a file into RCS" +#~ msgstr "Skriv beskrivande text från en fil till RCS" + +#~ msgid "Write descriptive text into RCS" +#~ msgstr "Skriv beskrivande text till RCS" + +#~ msgid "Unlock a revision" +#~ msgstr "Lås upp revision" + +#~ msgid "Annotate binary files" +#~ msgstr "Annotera binära filer" + +#~ msgid "Reset sticky tags/dates/k-opts" +#~ msgstr "Återställ fasta tagg/datum/k-opts" + +#~ msgid "Copy module file to stdout" +#~ msgstr "Kopiera modulfil till standard ut" + +#~ msgid "Name directory for working files" +#~ msgstr "Ange katalog för arbetsfiler" + +#~ msgid "For -d. Don't shorten paths" +#~ msgstr "För -d. Förkorta inte sökvägar" + +#~ msgid "Force new revision" +#~ msgstr "Tvinga ny revision" + +#~ msgid "Treat all whitespace as one space" +#~ msgstr "Behandla alla blanktecken som ett mellanslag" + +#~ msgid "Ignore blank line only changes" +#~ msgstr "Ignorera ändringar som bara består av ändringar i tomma rader" + +#~ msgid "Binary mode" +#~ msgstr "Binärt läge" + +#~ msgid "Report only whether files differ" +#~ msgstr "Skriv bara ut huruvida filerna skiljer sig" + +#~ msgid "Use context format" +#~ msgstr "Använd kontext-format" + +#~ msgid "Set context size" +#~ msgstr "Välj kontextstorlek" + +#~ msgid "Set context format and, optionally, size" +#~ msgstr "Välj kontextformat och eventuellt storlek" + +#~ msgid "Set line group format" +#~ msgstr "Välj radgruppsformat" + +#~ msgid "Make output a valid ed script" +#~ msgstr "Gör utdata till ett giltigt ed-skript" + +#~ msgid "Expand tabs to spaces" +#~ msgstr "Expandera tabbar till mellanslag" + +#~ msgid "Output that looks like an ed script" +#~ msgstr "Utdata ser ut som ett ed-skript" + +#~ msgid "Set regexp for context, unified formats" +#~ msgstr "Välj reguljärt uttryck för kontext, unifierade format" + +#~ msgid "Speed handling of large files with small changes" +#~ msgstr "Snabb hantering av stora filer med små ändringar" + +#~ msgid "Set horizon lines" +#~ msgstr "Välj horisontlinjer" + +#~ msgid "Ignore changes in case" +#~ msgstr "Ignorera ändringar i skiftläge" + +#~ msgid "Ignore changes matching regexp" +#~ msgstr "Ignorera ändringar som matchar reguljärt uttryck" + +#~ msgid "Make ifdef from diff" +#~ msgstr "Skapa ifdef från differens" + +#~ msgid "Ignore whitespace" +#~ msgstr "Ignorera blanktecken" + +#~ msgid "Start lines with a tab" +#~ msgstr "Starta rader med en tabb" + +#~ msgid "Use label instead of filename in output" +#~ msgstr "Använd etikett istället för filnamn i utdata" + +#~ msgid "Print only left column" +#~ msgstr "Visa bara vänster kolumn" + +#~ msgid "Use format to produce if-then-else output" +#~ msgstr "Använd format för att producera if-then-else utdata" + +#~ msgid "Produce RCS-style diffs" +#~ msgstr "Producera differenser i RCS-stil" + +#~ msgid "Treat files absent from one dir as empty" +#~ msgstr "Behandla saknade filer från katalog som om de vore tomma" + +#~ msgid "Specifies line formatting" +#~ msgstr "Ange radformatering" + +#~ msgid "Identify the C function each change is in" +#~ msgstr "Identifiera vilken C-funktion varje ändring är i" + +#~ msgid "Report identical files" +#~ msgstr "Rapportera identiska filer" + +#~ msgid "Use side-by-side format" +#~ msgstr "Använd sida-vid-sida-format" + +#~ msgid "Suppress common lines in side-by-side" +#~ msgstr "Undertryck vanliga rader i sida-vid-sida" + +#~ msgid "Use unified format" +#~ msgstr "Använd unifierat format" + +#~ msgid "Set context size in unified" +#~ msgstr "Välj kontextstorlek i unifierat format" + +#~ msgid "Set column width for side-by-side format" +#~ msgstr "Välj kolumnbredd för sida-vis-sida-format" + +#~ msgid "Report on each commit" +#~ msgstr "Rapport för varje tillägg" + +#~ msgid "Report on everything" +#~ msgstr "Rapport för allt" + +#~ msgid "Report on a module" +#~ msgstr "Rapport för modul" + +#~ msgid "Report on checked-out modules" +#~ msgstr "Rapport för ut-checkade moduler" + +#~ msgid "Report on all tags" +#~ msgstr "Rapport för alla taggar" + +#~ msgid "Show only records for this directory" +#~ msgstr "Visa bara poster för angiven katalog" + +#~ msgid "Multiple vendor branch" +#~ msgstr "Multipel distributör-gren" + +#~ msgid "Files to ignore during import" +#~ msgstr "Filer att ignorera vid import" + +#~ msgid "Print info about revision on default branch" +#~ msgstr "Visa information om revision i standardgren" + +#~ msgid "Specify date range for query" +#~ msgstr "Ange dataspann för fråga" + +#~ msgid "Print only file info" +#~ msgstr "Visa utförlig information" + +#~ msgid "Print only rcs filename" +#~ msgstr "Skriv bara RCS-filnamn" + +#~ msgid "Suppress header if no revisions found" +#~ msgstr "Visa inte huvud om inga revisioner hittas" + +#~ msgid "Same as -h, plus descriptive text" +#~ msgstr "Samma som -h, men med beskrivande text" + +#~ msgid "Specify users for query" +#~ msgstr "Ange användare för fråga" + +#~ msgid "Use context diff format" +#~ msgstr "Användar kontextdifferensformat" + +#~ msgid "Create summary change report" +#~ msgstr "Skapa översiktilig ändringsrapport" + +#~ msgid "diff top two revisions" +#~ msgstr "Visa differens mellan två senaste revisioner" + +#~ msgid "Use unidiff format" +#~ msgstr "Använd unidiff-format" + +#~ msgid "Reset sticky tags, dates, and k-opts" +#~ msgstr "Återställ fasta taggar, datum och k-opts" + +#~ msgid "Overwrite modified files with clean copies" +#~ msgstr "Skriv över ändrade filer med rena kopior" + +#~ msgid "Create any missing directories" +#~ msgstr "Skapa saknade kataloger" + +#~ msgid "Specify files to ignore" +#~ msgstr "Ange filer att ignorera" + +#~ msgid "Create new project" +#~ msgstr "Skapa nytt projekt" + +#~ msgid "" +#~ "In addition to modifications, look for files that are not boring, and " +#~ "thus are potentially pending addition" +#~ msgstr "" +#~ "Förutom att lägga till ändringar, sök efter interessanta filer att lägga " +#~ "till lagret" + +#~ msgid "Don't create compressed patches" +#~ msgstr "Skapa inte komprimerade fixar" + +#~ msgid "Expect to receive input from a pipe" +#~ msgstr "Förvänta indata från rör" + +#~ msgid "Ask for extra dependencies" +#~ msgstr "Fråga efter extra beroenden" + +#~ msgid "Don't ask for extra dependencies" +#~ msgstr "Fråga inte efter extra beroenden" + +#~ msgid "" +#~ "Don't look for any files or directories that could be added, and don't " +#~ "add them automatically" +#~ msgstr "" +#~ "Leta inte efter filer eller kataloger att lägga till, och lägg inte till " +#~ "dem automatiskt" + +#~ msgid "Don't make scripts executable" +#~ msgstr "Gör inte skript exekverbara" + +#~ msgid "Fail on patches that create conflicts [DEFAULT]" +#~ msgstr "Misslyckas på fixar som skapar konflikter [STANDARD]" + +#~ msgid "Check patches since latest checkpoint" +#~ msgstr "Kontrollera fixar sedan senaste kontrollpunkt" + +#~ msgid "Don't refuse to add files differing only in case" +#~ msgstr "Vägra inte lägga till filer som bara skiljer i skiftläge" + +#~ msgid "Do not sign the patch" +#~ msgstr "Signera inte fixen" + +#~ msgid "Use a plain pristine tree [DEFAULT]" +#~ msgstr "Använd enkelt pristint träd [DEFAULT]" + +#~ msgid "Use no pristine tree" +#~ msgstr "Använd inte pristint träd" + +#~ msgid "Give human readable output" +#~ msgstr "Människoanpassad formatering av utdata" + +#~ msgid "Don't skip boring files" +#~ msgstr "Skippa inte tråkiga filer" + +#~ msgid "Add contents of subdirectories" +#~ msgstr "Lägg till innehåll i underkataloger" + +#~ msgid "Don't add contents of subdirectories" +#~ msgstr "Lägg inte till innehåll i underkataloger" + +#~ msgid "Add files with date appended to avoid conflict. [EXPERIMENTAL]" +#~ msgstr "" +#~ "Lägg till filer med datum efter för att undvika konflikter. " +#~ "[EEXPERIMENTELLT]" + +#~ msgid "Don't use experimental date appending trick. [DEFAULT]" +#~ msgstr "Använd inte experimentellt datum-tillläggningstrick. [STANDARD]" + +#~ msgid "Rewrite all patches in current darcs format" +#~ msgstr "Skriv om alla fixar till nuvarande darcs-format" + +#~ msgid "Do not run posthook command." +#~ msgstr "Utför inte posthook-kommando" + +#~ msgid "Display date described by string" +#~ msgstr "Visa datum angivet i textsträng" + +#~ msgid "Display date for each line in file" +#~ msgstr "Visa datum för varje rad i fil" + +#~ msgid "Output in ISO 8601 format" +#~ msgstr "Visa datum i ISO 8601-format" + +#~ msgid "Output RFC-2822 compliant date string" +#~ msgstr "Visa datum i RFC-2822-format" + +#~ msgid "Display the last modification time of file" +#~ msgstr "Visa senaste ändringsdatum för fil" + +#~ msgid "Print or set Coordinated Universal Time" +#~ msgstr "Visa eller välj Koordinerad universaltid (UCT)" + +#~ msgid "List inode information" +#~ msgstr "Lista information om inoder" + +#~ msgid "List only local filesystems" +#~ msgstr "Lista bara lokala filsystem" + +#~ msgid "Use Posix format" +#~ msgstr "Använd Posix-format" + +#~ msgid "Include empty filesystems" +#~ msgstr "Inkludera tomma filsystem" + +#~ msgid "Do not sync before getting usage info" +#~ msgstr "Synkronisera inte filsystem innan användningsinformation hämtas" + +#~ msgid "Sync before getting usage info" +#~ msgstr "Synkronisera filsystem innan användningsinformation hämtas" + +#~ msgid "Print filesystem type" +#~ msgstr "Visa filsystemtyp" + +#~ msgid "Excluded filesystem type" +#~ msgstr "Exkludera filsystemtyp" + +#~ msgid "Show all filesystems" +#~ msgstr "Visa alla filsystem" + +#~ msgid "Show sizes in gigabytes" +#~ msgstr "Visa storlekar i gigabyte" + +#~ msgid "Show sizes in megabytes" +#~ msgstr "Visa storlekar i megabyte" + +#~ msgid "Print out the previously obtained statistics from the file systems" +#~ msgstr "Visa tidigare hämtad statistik från filsystemet" + +#~ msgid "Skip other filesystems" +#~ msgstr "Skippa andra filsystem" + +#~ msgid "No newline" +#~ msgstr "Skriv ingen radbrytning" + +#~ msgid "Use backslash escaped characters" +#~ msgstr "Använd omvänt snedstreck-specialsekvenser" + +#~ msgid "Do not use backslash escaped characters" +#~ msgstr "Använd inte omvänt snedstreck-specialsekvenser" + +#~ msgid "Do not load init files" +#~ msgstr "Ladda inte initieringsfiler" + +#~ msgid "Load users init file" +#~ msgstr "Ladda användarens initieringsfiler" + +#~ msgid "Use file as terminal" +#~ msgstr "Användard fil som terminal" + +#~ msgid "Execute Lisp function" +#~ msgstr "Utför lispfunktion" + +#~ msgid "Load Lisp code from file" +#~ msgstr "Ladda lispfunktion från fil" + +#~ msgid "Do not use X interface" +#~ msgstr "Använd inte X-användargränssnittet" + +#~ msgid "Create window on the specified display" +#~ msgstr "Skapa fönster på angiven skärm" + +#~ msgid "Allow dash (-) in function name" +#~ msgstr "Tillåt bindestreck (-) i funktionsnamn" + +#~ msgid "Language" +#~ msgstr "Språk" + +#~ msgid "Pass program exit codes" +#~ msgstr "Skicka vidare slutstatus" + +#~ msgid "Stop after assembler" +#~ msgstr "Stanna efter assembler" + +#~ msgid "Stop after compile" +#~ msgstr "Stanna efter kompilering" + +#~ msgid "Stop after preprocessor" +#~ msgstr "Stanna efter förprocessor" + +#~ msgid "Print commands to stderr" +#~ msgstr "Skriv kommandon till standard fel" + +#~ msgid "Print quoted commands to stderr, do not run" +#~ msgstr "Skriv citerade kommandon till standard fel, utför dem inte" + +#~ msgid "Use pipes" +#~ msgstr "Använd rör" + +#~ msgid "Use ansi mode" +#~ msgstr "Använd ansiläge" + +#~ msgid "Do not recognize asm, inline or typeof keywords" +#~ msgstr "Känn inte igen asm, inline och typeof nyckelorden" + +#~ msgid "Do not use builtin functions" +#~ msgstr "Använd inte inbyggda funktioner" + +#~ msgid "Assert hosted environment" +#~ msgstr "Försäkra värdmiljö" + +#~ msgid "Assert freestanding environment" +#~ msgstr "Försäkra självständig miljö" + +#~ msgid "Use Microsoft extensions" +#~ msgstr "Använd Microsoftförlängningar" + +#~ msgid "Use ANSI trigraphs" +#~ msgstr "Använd ANSI-trigrafer" + +#~ msgid "Do not use integrated preprocessor" +#~ msgstr "Använd inte inbyggd förprocessor" + +#~ msgid "char is unsigned" +#~ msgstr "char har inte tecken" + +#~ msgid "char is signed" +#~ msgstr "char har tecken" + +#~ msgid "bitfield is unsigned" +#~ msgstr "bitfield har inte tecken" + +#~ msgid "bitfield is signed" +#~ msgstr "bitfield har tecken" + +#~ msgid "All bitfields are signed" +#~ msgstr "Alla bitfield har tecken" + +#~ msgid "All bitfields are unsigned" +#~ msgstr "Inga bitfield har tecken" + +#~ msgid "String constants are not const" +#~ msgstr "Strängkonstanter är inte konstanta" + +#~ msgid "C++ ABI version" +#~ msgstr "C++ ABI-version" + +#~ msgid "Turn off access checking" +#~ msgstr "Slå av rättighetskontroll" + +#~ msgid "Check pointer returned by new" +#~ msgstr "Kontrollera pekare från 'new'" + +#~ msgid "Put globals in the common segment" +#~ msgstr "Lägg globaler i det gemensamma segmentet" + +#~ msgid "Accept $ in identifiers" +#~ msgstr "Acceptera $ i identifierare" + +#~ msgid "Reject $ in identifiers" +#~ msgstr "Acceptera inte $ i identifierare" + +#~ msgid "Do not omit unneeded temporarys" +#~ msgstr "Ta into bort onödiga tillfälliga variabler" + +#~ msgid "Allow exception violations" +#~ msgstr "Tillåt brott mot undantag" + +#~ msgid "Do not extend for-loop scope" +#~ msgstr "Utöka inte definitionsområde för for-loop" + +#~ msgid "Extend for-loop scope" +#~ msgstr "Utöka definitionsområde för for-loop" + +#~ msgid "Do not recognize typeof as keyword" +#~ msgstr "Känn inte igen typeof som nyckelord" + +#~ msgid "Do not emit code for implicit templates" +#~ msgstr "Skapa inte kod for implicita mallar" + +#~ msgid "Do not emit code for implicit inline templates" +#~ msgstr "Skapa inte kod för implicita inlinemallar" + +#~ msgid "Do not emit out-of-line code for inline functions" +#~ msgstr "Skapa inte icke-inlinekod for inline-funktioner" + +#~ msgid "Disable some built-in functions" +#~ msgstr "Inaktivera somliga inbyggda funktioner" + +#~ msgid "Disable operator keywords" +#~ msgstr "Inaktivera operator-nyckelord" + +#~ msgid "Disable optional diagnostics" +#~ msgstr "Inaktivera frivillig diagnostik" + +#~ msgid "Downgrade some errors to warnings" +#~ msgstr "Nedgradera vissa fel till varningar" + +#~ msgid "Disable generation of C++ runtime type information" +#~ msgstr "" +#~ "Inaktivera generering av C++-typinformation under körning av program" + +#~ msgid "Do not emit code for thread-safe initialization of local statics" +#~ msgstr "" +#~ "Skapa inte kod för tråd-säker initiering av lokala statiska variabler" + +#~ msgid "Use __cxa_atexit for destructors" +#~ msgstr "Använd __cxa_atexit för destruktorer" + +#~ msgid "Hides inline methods from export table" +#~ msgstr "Dölj inline-metoder från exporttabeller" + +#~ msgid "Do not use weak symbol support" +#~ msgstr "Stöd inte svaga symboler" + +#~ msgid "Match only the base name against the specified patterns" +#~ msgstr "Installera inte filer vars namn börjar med angiven sökväg" + +#~ msgid "Ignore case distinctions when matching patterns" +#~ msgstr "Ignorera skiftläge på filnamn" + +#~ msgid "Ignored" +#~ msgstr "Ignorera skiftläge" + +#~ msgid "Write no messages about errors encountered" +#~ msgstr "Visa meddelanden om vad programmet gör" + +#~ msgid "Interpret all patterns as extended regexps" +#~ msgstr "Mönster är ett förlängt reguljärt uttryck" + +#~ msgid "Match only the whole path name against the specified patterns" +#~ msgstr "Installera inte filer vars namn börjar med angiven sökväg" + +#~ msgid "Input is a file, use name and contents to determine mimetype" +#~ msgstr "" +#~ "Indata är en fil, använd namn och innehåll för att bestämma mime-typ" + +#~ msgid "Input is a file, use name to determine mimetype" +#~ msgstr "Indata är en fil, använd namn för att bestämma mime-typ" + +#~ msgid "Input is a mimetype" +#~ msgstr "Indata är en mime-typ" + +#~ msgid "Output mimetype" +#~ msgstr "Utdata är mimetyp" + +#~ msgid "Output description of mimetype" +#~ msgstr "Utdata är beskrivning av mimetyp" + +#~ msgid "Output default action for mimetype" +#~ msgstr "Utdata är standardkommando för filtyp" + +#~ msgid "Launch default action for each file" +#~ msgstr "Utför standardkommando för varje fil" + +#~ msgid "Mount filesystems in fstab" +#~ msgstr "Montera filsystemen i fstab" + +#~ msgid "Invoke CPP" +#~ msgstr "Kör C-förprocessorn" + +#~ msgid "Show threads" +#~ msgstr "Visa trådar" + +#~ msgid "Ignore first line of input" +#~ msgstr "Ignorera första raden indata" + +#~ msgid "Unlink directory (Only by superuser)" +#~ msgstr "Avlänka katalog (Kan bara utföras av administratör)" + +#~ msgid "Never prompt before removal" +#~ msgstr "Fråga inte före borttagning" + +#~ msgid "Prompt before removal" +#~ msgstr "Fråga före borttagning" + +#~ msgid "Recursively remove subdirectories" +#~ msgstr "Ta bort underkataloger rekursivt" + +#~ msgid "Explain what is done" +#~ msgstr "Förklara vad som utförs" + +#~ msgid "Encyption program" +#~ msgstr "Krypteringsprogram" + +#~ msgid "Disable all GNU extensions" +#~ msgstr "Inaktivera alla GNU-förlängningar" + +#~ msgid "Use extended regexp" +#~ msgstr "Använd utökade reguljära uttryck" + +#~ msgid "Consider files as separate" +#~ msgstr "Betrakta filer separat" + +#~ msgid "Use minimal IO buffers" +#~ msgstr "Minimera användning av IO-buffrar" + +#~ msgid "" +#~ "Delay opening files until a command containing the related 'w' function " +#~ "is applied" +#~ msgstr "" +#~ "Fördröj filöppnande till ett kommando inehållande den relaterade 'w' " +#~ "functionen appliceras" + +#~ msgid "Set which jobs are out under job control" +#~ msgstr "Välj vilka jobb som ställs under jobbkontroll" + +#~ msgid "Validate" +#~ msgstr "Verifiera" + +#~ msgid "Place files or directories under version control" +#~ msgstr "Placera filer och kataloger under versionskontroll" + +#~ msgid "Recursively clean up the working copy" +#~ msgstr "Rensa arbetskopian rekursivt" + +#~ msgid "Pass contents of file as additional args" +#~ msgstr "Skicka filinnehåll som extra argument" + +#~ msgid "Print as little as possible" +#~ msgstr "Skriv ut så lite som möjligt" + +#~ msgid "Enable automatic properties" +#~ msgstr "Aktivera automatiska egenskaper" + +#~ msgid "Print extra info" +#~ msgstr "Visa utförlig information" + +#~ msgid "Don't unlock targets" +#~ msgstr "Lås inte upp mål" + +#~ msgid "Descend recursively" +#~ msgstr "Rekurivt läge" + +#~ msgid "Give output suitable for concatenation" +#~ msgstr "Formatera utdata lämpligt för sammanslagning" + +#~ msgid "Disregard ignores" +#~ msgstr "Strunta i ignores" + +#~ msgid "Print client version info" +#~ msgstr "Visa klientversion" + +#~ msgid "force operation to run" +#~ msgstr "Tvinga operationen att utföras" + +#~ msgid "print as little as possible" +#~ msgstr "Skriv ut så lite som möjligt" + +#~ msgid "Logical and" +#~ msgstr "Logisk 'och'" + +#~ msgid "Logical or" +#~ msgstr "Logisk 'eller'" + +#~ msgid "Left file equal to right file" +#~ msgstr "Vänster fil identisk med höger fil" + +#~ msgid "Left file newer than right file" +#~ msgstr "Vänster fil nyare än höger fil" + +#~ msgid "Left file older than right file" +#~ msgstr "Vänster fil är äldre än höger fil" + +#~ msgid "File is symlink" +#~ msgstr "Fil är symbolisk länk" + +#~ msgid "File owned by effective group ID" +#~ msgstr "Fil ägs av effektiv grupp-id" + +#~ msgid "File has sticky bit set" +#~ msgstr "Fils fastbit är satt" + +#~ msgid "File owned by effective user ID" +#~ msgstr "Fil ägd av effektiv användar-id" + +#~ msgid "File is named pipe" +#~ msgstr "Fil är namngivet rör" + +#~ msgid "File is socket" +#~ msgstr "Fil är uttag (socket)" + +#~ msgid "FD is terminal" +#~ msgstr "Filidentifierare är terminal" + +#~ msgid "Maximium iterations" +#~ msgstr "Maximalt antal step" + +#~ msgid "Change access time" +#~ msgstr "Visa åtkomsttid" + +#~ msgid "Change modification time" +#~ msgstr "Ändra ändringstid" + +#~ msgid "Use this files times" +#~ msgstr "Använd denna fils tider" + +#~ msgid "Supress function and builtin lookup" +#~ msgstr "Undertryck kontroll av funktioner och inbyggda kommandon" + +#~ msgid "Print number of occurences" +#~ msgstr "Visa antal händelser" + +#~ msgid "Only print duplicates" +#~ msgstr "Visa bara dubletter" + +#~ msgid "Remove non-duplicate lines" +#~ msgstr "Ta bort rader som saknar dubletter" + +#~ msgid "Avoid comparing first N fields" +#~ msgstr "Jämför inte första N fält" + +#~ msgid "Avoid comparing first N characters" +#~ msgstr "Jämför inte de första N tecken" + +#~ msgid "Only print unique lines" +#~ msgstr "Visa bara unika rader" + +#~ msgid "Compare only specified number of characters" +#~ msgstr "Jämför bara angivet antal tecken" + +#~ msgid "Test if a key is contained in a set of values" +#~ msgstr "Testa om en nyckel finns med i en uppsättning av värden" + +#~ msgid "%s: Unknown option '%s'\\n" +#~ msgstr "%s: Okänd flagga '%s'\\n" + +#~ msgid "%s: Unknown argument '%s'\\n" +#~ msgstr "%s: Okänt argument '%s'\\n" + +#~ msgid "" +#~ "Current function definitions are:\n" +#~ "\n" +#~ msgstr "" +#~ "Nuvarande funktionsdefinitioner är:\n" +#~ "\n" + +#~ 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 noll-kommando till subskal. Detta är en fish-bug. Om den kan " +#~ "reproduceras, skicka en rapport till %s." + +#~ msgid "Parenthesis mismatch" +#~ msgstr "Paranteser matchar inte varandra" + +#~ msgid "Invalid input" +#~ msgstr "Ogiltig indata" + +#~ msgid "" +#~ "Tests if emerge command should have package as potential completion for " +#~ "removal" +#~ msgstr "" +#~ "Testa om emergekommando borde ha paket som potentiell komplettering för " +#~ "borttagning" + +#~ msgid "Cleans the system by removing outdated packages" +#~ msgstr "Rensa systemet genom att ta bort inaktuella paket" + +#~ msgid "" +#~ "Cleans the system by removing packages that are not associated with " +#~ "explicitly merged packages" +#~ msgstr "" +#~ "Rensa systemet genom att ta bort paket som int är associerade med " +#~ "explicit installerade paket" + +#~ msgid "" +#~ "Displays important portage variables that will be exported to ebuild.sh " +#~ "when performing merges" +#~ msgstr "" +#~ "Visa viktiga portage-variabler som kommer esporteras till ebuild.sh vid " +#~ "installationer" + +#~ msgid "" +#~ "Causes portage to process all the metacache files as is normally done on " +#~ "the tail end of an rsync update using emerge --sync" +#~ msgstr "" +#~ "Får portage att behandla alla metacache-filer som vanligtvis görs vid " +#~ "slutet av en rsync-uppdatering vid användande av emerge --sync" + +#~ msgid "" +#~ "Removes all but the most recently installed version of a package from " +#~ "your system" +#~ msgstr "" +#~ "Tar bort alla utom den senast installerade versionen av ett paket från " +#~ "ditt system" + +#~ msgid "" +#~ "Causes portage to check and update the dependency cache of all ebuilds in " +#~ "the portage tree" +#~ msgstr "" +#~ "Får portage att kontrollera och uppdatera beroendecachen av alla abuilds " +#~ "i partageträdet" + +#~ msgid "" +#~ "Searches for matches of the supplied string in the current local portage " +#~ "tree" +#~ msgstr "" +#~ "Söker efter matchar till den angivna strängen i det nuvarande lokala " +#~ "portageträdet" + +#~ msgid "Removes all matching packages completely from your system" +#~ msgstr "Ta bort alla matchande paket helt från ditt system" + +#~ msgid "" +#~ "Before performing the merge, display what ebuilds and tbz2s will be " +#~ "installed, in the same format as when using --pretend" +#~ msgstr "" +#~ "Före installationen utförs, visa vilka ebuilds och tbz2:or som kommer " +#~ "installeras, i samma format som vid --pretend" + +#~ msgid "" +#~ "Tell emerge to build binary packages for all ebuilds processed in " +#~ "addition to actually merging the packages" +#~ msgstr "" +#~ "Bygg binära paket för alla ebuilds som behandlats förutom att installera " +#~ "paketen" + +#~ msgid "Creates a binary package, but does not merge it to the system" +#~ msgstr "Skapa ett binärt paket, men installera dem inte" + +#~ msgid "" +#~ "When pretending, also display the ChangeLog entries for packages that " +#~ "will be upgraded" +#~ msgstr "" +#~ "Vid låtsasinstallation, visa också ChangeLog-filen för paketet som kommer " +#~ "uppgraderas" + +#~ msgid "Tell emerge to run the ebuild command in --debug mode" +#~ msgstr "Utför ebuild-kmmandot i '--debug'-läge" + +#~ msgid "" +#~ "When used in conjunction with --update, this flag forces emerge to " +#~ "consider the entire dependency tree of packages, instead of checking only " +#~ "the immediate dependencies of the packages" +#~ msgstr "" +#~ "Vid användning med --update tvingar denna flagga emerge att betrakta hela " +#~ "beroendeträdet av paket, istället för att bara kontrollera omedelbara " +#~ "beroenden" + +#~ msgid "Virtually tweaks the tree of installed packages to contain nothing" +#~ msgstr "Ändrar virtuellt trädet av installerade paket till att vara tomt" + +#~ msgid "" +#~ "Instead of doing any package building, just perform fetches for all " +#~ "packages (main package as well as all dependencies)" +#~ msgstr "" +#~ "Istället för att bygga paket, utför bara hämtning för alla paket " +#~ "(huvudpaket och alla beroenden)" + +#~ msgid "" +#~ "Same as --fetchonly except that all package files, including those not " +#~ "required to build the package, will be processed" +#~ msgstr "" +#~ "Samma som --fetchonly utom att alla paketfiler, inklusive de som inte " +#~ "krävs för att bygga paketet, processas" + +#~ msgid "" +#~ "Using the server and location defined in PORTAGE_BINHOST, portage will " +#~ "download the information from each binary file there and it will use that " +#~ "information to help build the dependency list" +#~ msgstr "" +#~ "Portage laddar ner informationen från varje binär fil från servern och " +#~ "platsen angivna i PORTAGE_BINHOST, och använder den informationen vid " +#~ "konstruktionen av beroendeträdet" + +#~ msgid "" +#~ "This option is identical to -g, except it will not use ANY information " +#~ "from the local machine" +#~ msgstr "" +#~ "Samma sak som -g, utom at det kommer inte använda NÅGON information från " +#~ "den lokala maskinen" + +#~ msgid "" +#~ "Tells emerge to include installed packages where USE flags have changed " +#~ "since installation" +#~ msgstr "" +#~ "Instruera emerge att inkludera installerade paket där USE-flaggor har " +#~ "ändrats sedan senaste installation" + +#~ msgid "" +#~ "Merge files in CONFIG_PROTECT to the live fs instead of silently dropping " +#~ "them" +#~ msgstr "" +#~ "Installera filer i CONFIG_PROTECT till filsystemet istället för att tyst " +#~ "ignorera dem" + +#~ msgid "Merge specified packages, but don't merge any dependencies" +#~ msgstr "Installera angivna paket, men installera inga beroenden" + +#~ msgid "" +#~ "Skip the packages specified on the command-line that have already been " +#~ "installed" +#~ msgstr "Skippa angivna paket som redan har installerats" + +#~ msgid "Disables the spinner regardless of terminal type" +#~ msgstr "Avaktivera statusuppdateraren, oavsett terminaltyp" + +#~ msgid "Emerge as normal, but don't add packages to the world profile" +#~ msgstr "" +#~ "Kör emerge som vanligt, men lägg inte till paket till världsprofilen" + +#~ msgid "" +#~ "Only merge (or pretend to merge) the dependencies of the specified " +#~ "packages, not the packages themselves" +#~ msgstr "" +#~ "Installera (eller låtsas installera) bara beroendena till de angivna " +#~ "paketen, inte själva paketen" + +#~ msgid "" +#~ "Do not merge, display what ebuilds and tbz2s would have been installed" +#~ msgstr "" +#~ "Installera inte, visa vilka ebuilds och tbz2:or som skulle ha installerats" + +#~ msgid "Reduced output from portage's displays" +#~ msgstr "Reducerad utdata från portage" + +#~ msgid "" +#~ "Matches the search string against the description field as well the " +#~ "package's name" +#~ msgstr "Matchar söksträngen mot beskrivningsfältet samt paketets namn" + +#~ msgid "" +#~ "Remove the first package in the resume list so that a merge may continue " +#~ "in the presence of an uncorrectable or inconsequential error" +#~ msgstr "" +#~ "Ta bort det första paketet i resume-listan så att en installation kan " +#~ "fortsätta vid irreparabelt eller oviktigt fel" + +#~ msgid "Shows the dependency tree using indentation for dependencies" +#~ msgstr "Visa beroendeträdet med indentering för beroenden" + +#~ msgid "" +#~ "Like --usepkg, except this only allows the use of binary packages, and it " +#~ "will abort the emerge if the package is not available at the time of " +#~ "dependency calculation" +#~ msgstr "" +#~ "Som --usepkg, men tillåter bara binära paket, och avbryter installationen " +#~ "om paketet inte finns tillgängligt vid beroendeberäkningarna" + +#~ msgid "Increased or expanded display of content in portage's displays" +#~ msgstr "Utökat utdata från portage" + +#~ msgid "" +#~ "Displays the currently installed version of portage along with other " +#~ "information useful for quick reference on a system" +#~ msgstr "" +#~ "Visar den för tillfället installerade versionen av portage och annan " +#~ "information som är användbar som en snabbreferens för systemet" + +#~ msgid "A short summary of all builtin commands" +#~ msgstr "En kort sammanfattning om alla inbyggda kommandon" + +#~ msgid "Increment priority by specified number first" +#~ msgstr "Öka prioritet med angivet nummer först" + +#~ msgid "Pipe or short circuit command requires additional command" +#~ msgstr "Pipa eller kortslutningkommando kräver ett efterföljande kommandon" + +#~ msgid "%ls: Argument must be a number: %ls\n" +#~ msgstr "%ls: Argumentet '%ls' måste vara ett heltal\n" + +#~ msgid "Could not set exit function" +#~ msgstr "Kunde inte sätta avslutningsfunktionen" + +#~ msgid "No history item at index %d\n" +#~ msgstr "Ingen historieinformation vid index %d\n" + +#~ msgid "%ls: Expected at least two arguments\n" +#~ msgstr "%ls: Förväntade minst två argument\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index 8a09b58ee..1dde54a15 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -11,16 +11,16 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: src/autoload.cpp:96 -#, fuzzy, c-format +#, c-format msgid "" "Could not autoload item '%ls', it is already being autoloaded. This is a " "circular dependency in the autoloading scripts, please remove it." -msgstr "不能自动加载项目 “%ls”,它已经被自动加载了。" +msgstr "" #: src/builtin_argparse.cpp:36 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid option spec '%ls' at char '%lc'\n" -msgstr "%ls:进程id %ls 非法 '%lc'\n" +msgstr "" #: src/builtin_argparse.cpp:129 #, c-format @@ -28,14 +28,14 @@ msgid "%ls: Mutually exclusive flags '%ls' and `%ls` seen\n" msgstr "" #: src/builtin_argparse.cpp:160 -#, fuzzy, c-format +#, c-format msgid "%ls: exclusive flag string '%ls' is not valid\n" -msgstr "%ls:种子值 “%ls” 不是一个有效的数字\n" +msgstr "" #: src/builtin_argparse.cpp:176 -#, fuzzy, c-format +#, c-format msgid "%ls: exclusive flag '%ls' is not valid\n" -msgstr "%ls:种子值 “%ls” 不是一个有效的数字\n" +msgstr "" #: src/builtin_argparse.cpp:196 #, c-format @@ -74,14 +74,14 @@ msgid "%ls: No option specs were provided\n" msgstr "" #: src/builtin_argparse.cpp:391 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid --min-args value '%ls'\n" -msgstr "%ls:变量名 “%ls” 非法\n" +msgstr "" #: src/builtin_argparse.cpp:401 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid --max-args value '%ls'\n" -msgstr "%ls:变量名 “%ls” 非法\n" +msgstr "" #: src/builtin_bg.cpp:23 #, c-format @@ -101,14 +101,14 @@ msgid "%ls: There are no suitable jobs\n" msgstr "%ls:没有匹配的任务\n" #: src/builtin_bg.cpp:80 src/builtin_disown.cpp:82 src/builtin_wait.cpp:147 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is not a valid job specifier\n" -msgstr "%ls:“%ls” 不是一个任务\n" +msgstr "" #: src/builtin_bg.cpp:95 src/builtin_disown.cpp:89 src/builtin_wait.cpp:163 -#, fuzzy, c-format +#, c-format msgid "%ls: Could not find job '%d'\n" -msgstr "%ls:找不到home目录 '%d'\n" +msgstr "" #: src/builtin_bind.cpp:141 #, c-format @@ -126,9 +126,9 @@ msgid "%ls: Unknown error trying to bind to key named '%ls'\n" msgstr "%ls:在尝试绑定名为 “%ls” 的键时发生未知错误\n" #: src/builtin_bind.cpp:239 -#, fuzzy, c-format +#, c-format msgid "%ls: No binding found for key '%ls'\n" -msgstr "%s: No description for type %s\n" +msgstr "" #: src/builtin_bind.cpp:242 #, c-format @@ -186,14 +186,14 @@ msgid "%ls: Could not set PWD variable\n" msgstr "%ls:不能设置 PWD 变量\n" #: src/builtin_commandline.cpp:344 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown input function '%ls'" -msgstr "%ls:未知的输入函数 “%ls”" +msgstr "" #: src/builtin_complete.cpp:183 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid token '%ls'\n" -msgstr "%ls:变量名 “%ls” 非法\n" +msgstr "" #: src/builtin_complete.cpp:203 #, c-format @@ -230,14 +230,13 @@ msgid "%ls: Not inside of loop\n" msgstr "%ls:不在循环体内部\n" #: src/builtin.cpp:372 -#, fuzzy, c-format +#, c-format msgid "%ls: Command not valid at an interactive prompt\n" -msgstr "%ls: 只在不活跃的进程上\n" +msgstr "" #: src/builtin.cpp:410 src/builtin.cpp:460 -#, fuzzy msgid "Test a condition" -msgstr "设置配置选项" +msgstr "" #: src/builtin.cpp:411 msgid "Execute command if previous command suceeded" @@ -313,9 +312,8 @@ msgid "Remove job from job list" msgstr "" #: src/builtin.cpp:431 -#, fuzzy msgid "Print arguments" -msgstr "打印单词计数" +msgstr "" #: src/builtin.cpp:432 msgid "Evaluate block if condition is false" @@ -382,14 +380,12 @@ msgid "Execute command if previous command failed" msgstr "如果前一条命令失败执行命令" #: src/builtin.cpp:448 -#, fuzzy msgid "Prints formatted text" -msgstr "显示命令类型" +msgstr "" #: src/builtin.cpp:449 -#, fuzzy msgid "Print the working directory" -msgstr "显示工作目录" +msgstr "" #: src/builtin.cpp:450 msgid "Generate random number" @@ -481,9 +477,9 @@ msgid "" msgstr "%ls:不能将任务 %d, “%ls” 带到前台,因为它不受到任务控制\n" #: src/builtin_function.cpp:68 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown signal '%ls'" -msgstr "%ls:未知的信号 “%ls”" +msgstr "" #: src/builtin_function.cpp:113 #, c-format @@ -491,33 +487,31 @@ msgid "%ls: Cannot find calling job for event handler" msgstr "" #: src/builtin_function.cpp:121 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid process id '%ls'" -msgstr "%ls:进程id %ls 非法" +msgstr "" #: src/builtin_function.cpp:179 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected function name" -msgstr "%ls:应有函数名" +msgstr "" #: src/builtin_function.cpp:185 -#, fuzzy, c-format +#, c-format msgid "%ls: Illegal function name '%ls'" -msgstr "%ls:函数名 “%ls” 非法" +msgstr "" #: src/builtin_function.cpp:192 -#, fuzzy, c-format +#, c-format msgid "" "%ls: The name '%ls' is reserved,\n" "and can not be used as a function name" msgstr "" -"%ls:名字 “%ls” 已经保留,\n" -"不能作为函数名" #: src/builtin_function.cpp:239 -#, fuzzy, c-format +#, c-format msgid "%ls: Unexpected positional argument '%ls'" -msgstr "%ls:应有一个参数,提供了 %ls 个" +msgstr "" #: src/builtin_functions.cpp:275 src/builtin.h:38 #, c-format @@ -535,16 +529,16 @@ msgid "%ls: Function '%ls' does not exist\n" msgstr "%ls:函数 “%ls” 不存在\n" #: src/builtin_functions.cpp:307 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected exactly one function name for --details\n" -msgstr "%ls:应恰好有一个函数名\n" +msgstr "" #: src/builtin_functions.cpp:342 -#, fuzzy, c-format +#, c-format msgid "" "%ls: Expected exactly two names (current function name, and new function " "name)\n" -msgstr "%ls:应恰好有一个函数名\n" +msgstr "" #: src/builtin_functions.cpp:359 #, c-format @@ -552,9 +546,9 @@ msgid "%ls: Illegal function name '%ls'\n" msgstr "%ls:函数名 “%ls” 非法\n" #: src/builtin_functions.cpp:368 -#, fuzzy, c-format +#, c-format msgid "%ls: Function '%ls' already exists. Cannot create copy '%ls'\n" -msgstr "%ls:函数 “%ls” 不存在 '%ls'\n" +msgstr "" #: src/builtin_history.cpp:71 src/builtin_status.cpp:117 #, c-format @@ -567,9 +561,9 @@ msgid "%ls: you cannot use any options with the %ls command\n" msgstr "" #: src/builtin_history.cpp:163 -#, fuzzy, c-format +#, c-format msgid "%ls: max value '%ls' is not a valid number\n" -msgstr "%ls:种子值 “%ls” 不是一个有效的数字\n" +msgstr "" #: src/builtin_history.cpp:261 msgid "builtin history delete only supports --exact\n" @@ -604,9 +598,8 @@ msgid "Group\n" msgstr "组\n" #: src/builtin_jobs.cpp:84 -#, fuzzy msgid "Process\n" -msgstr "进程\n" +msgstr "" #: src/builtin_jobs.cpp:95 msgid "Command\n" @@ -618,9 +611,9 @@ msgid "%ls: There are no jobs\n" msgstr "%ls:没有任务\n" #: src/builtin_math.cpp:44 -#, fuzzy, c-format +#, c-format msgid "%ls: '%ls' is not a valid scale value\n" -msgstr "%ls:“%ls” 不是一个任务\n" +msgstr "" #: src/builtin_math.cpp:148 #, c-format @@ -633,18 +626,18 @@ msgid "More than %d var names in math expression." msgstr "" #: src/builtin_math.cpp:194 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid expression: %ls\n" -msgstr "%ls:进程id %ls 非法\n" +msgstr "" #: src/builtin_printf.cpp:243 msgid "Number out of range" msgstr "" #: src/builtin_printf.cpp:249 -#, fuzzy, c-format +#, c-format msgid "%ls: expected a numeric value" -msgstr "%s:应有一个参数" +msgstr "" #: src/builtin_printf.cpp:251 #, c-format @@ -670,14 +663,14 @@ msgid "invalid field width: %ls" msgstr "" #: src/builtin_printf.cpp:674 -#, fuzzy, c-format +#, c-format msgid "invalid precision: %ls" -msgstr "非法的进程ID: %ls" +msgstr "" #: src/builtin_printf.cpp:699 -#, fuzzy, c-format +#, c-format msgid "%.*ls: invalid conversion specification" -msgstr "%.*ls:非法的选项组合" +msgstr "" #: src/builtin_read.cpp:123 #, c-format @@ -686,9 +679,9 @@ msgid "" msgstr "" #: src/builtin_read.cpp:132 -#, fuzzy, c-format +#, c-format msgid "%ls: Argument '%ls' is out of range\n" -msgstr "%ls: Argument “%ls” is not a number\n" +msgstr "" #: src/builtin_read.cpp:344 #, c-format @@ -696,9 +689,9 @@ msgid "%ls: You can't specify both -p and -P\n" msgstr "" #: src/builtin_realpath.cpp:44 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid path: %ls\n" -msgstr "%ls:非法状态: %ls\n" +msgstr "" #: src/builtin_return.cpp:100 #, c-format @@ -706,19 +699,19 @@ msgid "%ls: Not inside of function\n" msgstr "%ls:不在函数体之内\n" #: src/builtin_set_color.cpp:159 src/builtin_set_color.cpp:178 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown color '%ls'\n" -msgstr "%ls:未知的任务 “%ls”\n" +msgstr "" #: src/builtin_set_color.cpp:167 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected an argument\n" -msgstr "%ls:应有一个参数,提供了 个\n" +msgstr "" #: src/builtin_set.cpp:62 -#, fuzzy, c-format +#, c-format msgid "%ls: Warning: $%ls entry \"%ls\" is not valid (%s)\n" -msgstr "%ls:$ %ls 种子值 “%ls” 不是一个有效的数字 (%s)\n" +msgstr "" #: src/builtin_set.cpp:64 #, c-format @@ -731,9 +724,9 @@ msgid "%ls: You provided %d indexes but %d values\n" msgstr "" #: src/builtin_set.cpp:66 -#, fuzzy, c-format +#, c-format msgid "%ls: Erase needs a variable name\n" -msgstr "%ls:Erase 需要一个变量名\n" +msgstr "" #: src/builtin_set.cpp:67 #, c-format @@ -753,14 +746,14 @@ msgid "%ls: Tried to change the read-only variable '%ls'\n" msgstr "%ls:试图改变只读变量 “%ls” 的值\n" #: src/builtin_set.cpp:310 -#, fuzzy, c-format +#, c-format msgid "%ls: Tried to set the special variable '%ls' with the wrong scope\n" -msgstr "%ls:试图改变只读变量 “%ls” 的值\n" +msgstr "" #: src/builtin_set.cpp:317 -#, fuzzy, c-format +#, c-format msgid "%ls: Tried to set the special variable '%ls' to an invalid value\n" -msgstr "%ls:试图改变只读变量 “%ls” 的值\n" +msgstr "" #: src/builtin_set.cpp:355 #, c-format @@ -768,9 +761,9 @@ msgid "%ls: Invalid index starting at '%ls'\n" msgstr "%ls:开始于 “%ls” 的索引非法\n" #: src/builtin_set.cpp:537 -#, fuzzy, c-format +#, c-format msgid "$%ls: not set in %ls scope\n" -msgstr "%ls:不在循环体内部 %ls\n" +msgstr "" #: src/builtin_set.cpp:542 msgid "exported" @@ -786,14 +779,14 @@ msgid "$%ls: set in %ls scope, %ls, with %d elements\n" msgstr "" #: src/builtin_set.cpp:554 -#, fuzzy, c-format +#, c-format msgid "$%ls[%d]: length=%d value=|%ls|\n" -msgstr "$%ls[%d]: length=%d value=|%ls|\n" +msgstr "" #: src/builtin_set.cpp:578 -#, fuzzy, c-format +#, c-format msgid "$%ls: invalid var name\n" -msgstr "%ls:非法状态\n" +msgstr "" #: src/builtin_set.cpp:584 #, c-format @@ -816,9 +809,9 @@ msgid "%ls: Error while reading file '%ls'\n" msgstr "%ls:读取文件 “%ls” 时发生错误\n" #: src/builtin_status.cpp:155 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid level value '%ls'\n" -msgstr "%ls:变量名 “%ls” 非法\n" +msgstr "" #: src/builtin_status.cpp:276 msgid "This is a login shell\n" @@ -850,39 +843,38 @@ msgid "Standard input" msgstr "标准输入" #: src/builtin_status.cpp:320 -#, fuzzy msgid "Not a function" -msgstr "定义一个新函数" +msgstr "" #: src/builtin_string.cpp:39 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected argument\n" -msgstr "%ls:应有一个参数,提供了个\n" +msgstr "" #: src/builtin_string.cpp:160 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid escape style '%ls'\n" -msgstr "%ls:开始于 “%ls” 的索引非法\n" +msgstr "" #: src/builtin_string.cpp:238 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid length value '%ls'\n" -msgstr "%ls:变量名 “%ls” 非法\n" +msgstr "" #: src/builtin_string.cpp:258 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid max value '%ls'\n" -msgstr "%ls:变量名 “%ls” 非法\n" +msgstr "" #: src/builtin_string.cpp:275 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid count value '%ls'\n" -msgstr "%ls:变量名 “%ls” 非法\n" +msgstr "" #: src/builtin_string.cpp:321 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid start value '%ls'\n" -msgstr "%ls:开始于 “%ls” 的索引非法\n" +msgstr "" #: src/builtin_string.cpp:743 #, c-format @@ -909,9 +901,9 @@ msgid "%ls: Regular expression substitute error: %ls\n" msgstr "" #: src/builtin_test.cpp:608 -#, fuzzy, c-format +#, c-format msgid "invalid integer '%ls'" -msgstr "非法的进程ID: %ls" +msgstr "" #: src/builtin_ulimit.cpp:285 #, c-format @@ -919,9 +911,9 @@ msgid "%ls: New limit cannot be an empty string\n" msgstr "" #: src/builtin_ulimit.cpp:297 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid limit '%ls'\n" -msgstr "%ls:变量名 “%ls” 非法\n" +msgstr "" #: src/common.cpp:1551 msgid "Current terminal parameters have rows and/or columns set to zero." @@ -982,14 +974,13 @@ msgid "Could not set up terminal." msgstr "" #: src/env.cpp:576 -#, fuzzy msgid "TERM environment variable not set." -msgstr "处理环境变量" +msgstr "" #: src/env.cpp:578 -#, fuzzy, c-format +#, c-format msgid "TERM environment variable set to '%ls'." -msgstr "处理环境变量 '%ls'" +msgstr "" #: src/env.cpp:579 msgid "Check that this terminal type is supported on this system." @@ -1061,9 +1052,9 @@ msgid "signal handler for %ls (%ls)" msgstr "" #: src/event.cpp:124 -#, fuzzy, c-format +#, c-format msgid "handler for variable '%ls'" -msgstr "处理环境变量 '%ls'" +msgstr "" #: src/event.cpp:129 #, c-format @@ -1114,9 +1105,9 @@ msgid "An error occurred while redirecting file '%s'" msgstr "" #: src/exec.cpp:714 -#, fuzzy, c-format +#, c-format msgid "Unknown function '%ls'" -msgstr "未知的内置命令 “%ls”" +msgstr "" #: src/exec.cpp:801 #, c-format @@ -1128,18 +1119,17 @@ msgid "Child process" msgstr "" #: src/expand.cpp:58 -#, fuzzy msgid "Process" -msgstr "进程" +msgstr "" #: src/expand.cpp:61 msgid "Job" msgstr "" #: src/expand.cpp:64 -#, fuzzy, c-format +#, c-format msgid "Job: %ls" -msgstr "任务控制:%ls" +msgstr "" #: src/expand.cpp:67 msgid "Shell process" @@ -1182,14 +1172,14 @@ msgid "Can not use the no-execute mode when running an interactive session" msgstr "" #: src/fish.cpp:431 -#, fuzzy, c-format +#, c-format msgid "Error while reading file %ls\n" -msgstr "读取文件 “%ls” 时发生错误\n" +msgstr "" #: src/fish_indent.cpp:389 -#, fuzzy, c-format +#, c-format msgid "%ls, version %s\n" -msgstr "%ls:拒绝访问:“%s”\n" +msgstr "" #: src/fish_indent.cpp:453 #, c-format @@ -1205,9 +1195,8 @@ msgid "Opening \"%s\" failed: %s\n" msgstr "" #: src/fish_indent.cpp:469 -#, fuzzy msgid "Too many arguments\n" -msgstr "参数过多\n" +msgstr "" #: src/fish_key_reader.cpp:241 #, c-format @@ -1266,9 +1255,9 @@ msgid "(no matches)" msgstr "" #: src/parse_execution.cpp:556 -#, fuzzy, c-format +#, c-format msgid "switch: Expected exactly one argument, got %lu\n" -msgstr "应有一个参数,提供了 %lu 个\n" +msgstr "" #: src/parse_execution.cpp:791 #, c-format @@ -1283,9 +1272,9 @@ msgid "The file '%ls' is not executable by this user" msgstr "" #: src/parse_execution.cpp:1007 -#, fuzzy, c-format +#, c-format msgid "Invalid redirection target: %ls" -msgstr "非法的进程ID: %ls" +msgstr "" #: src/parse_execution.cpp:1021 #, c-format @@ -1355,9 +1344,8 @@ msgid "Could not write profiling information to file '%s'" msgstr "" #: src/parser.cpp:308 -#, fuzzy msgid "Time\tSum\tCommand\n" -msgstr "状态\t命令\n" +msgstr "" #: src/parser.cpp:366 #, c-format @@ -1370,9 +1358,9 @@ msgid "from sourcing file %ls\n" msgstr "" #: src/parser.cpp:392 -#, fuzzy, c-format +#, c-format msgid "in function '%ls'\n" -msgstr "未知的输入函数 “%ls”\n" +msgstr "" #: src/parser.cpp:396 msgid "in command substitution\n" @@ -1388,9 +1376,8 @@ msgid "\tcalled during startup\n" msgstr "" #: src/parser.cpp:412 -#, fuzzy msgid "\tcalled on standard input\n" -msgstr "\t标准输入\n" +msgstr "" #: src/parser.cpp:425 #, c-format @@ -1492,14 +1479,14 @@ msgid "An error occured while reading output from code block" msgstr "" #: src/proc.cpp:856 -#, fuzzy, c-format +#, c-format msgid "Could not send job %d ('%ls') with pgid %d to foreground" -msgstr "将任务 %d,“%ls” 发送到前台 pgid %d" +msgstr "" #: src/proc.cpp:885 -#, fuzzy, c-format +#, c-format msgid "Could not send job %d ('%ls') to foreground" -msgstr "将任务 %d,“%ls” 发送到前台" +msgstr "" #: src/proc.cpp:909 src/proc.cpp:918 src/proc.cpp:932 msgid "Could not return shell to foreground" @@ -1511,14 +1498,12 @@ msgid "More than one job in foreground: job 1: '%ls' job 2: '%ls'" msgstr "" #: src/proc.cpp:1075 -#, fuzzy msgid "Process argument list" -msgstr "打印单词计数" +msgstr "" #: src/proc.cpp:1076 -#, fuzzy msgid "Process name" -msgstr "进程" +msgstr "" #: src/proc.cpp:1079 #, c-format @@ -1553,18 +1538,14 @@ msgid "Pop null reader block" msgstr "" #: src/reader.cpp:2160 -#, fuzzy msgid "There are still jobs active:\n" -msgstr "没有匹配的任务\n" +msgstr "" #: src/reader.cpp:2161 -#, fuzzy msgid "" "\n" " PID Command\n" msgstr "" -"\n" -" 命令\n" #: src/reader.cpp:2170 msgid "A second attempt to exit will terminate them.\n" @@ -1576,9 +1557,9 @@ msgid "" msgstr "" #: src/reader.cpp:3205 -#, fuzzy, c-format +#, c-format msgid "Unknown key binding 0x%X" -msgstr "未知的内置命令 “%ls”" +msgstr "" #: src/reader.cpp:3294 msgid "Error while reading from file descriptor" @@ -1691,9 +1672,8 @@ msgid "Stop from terminal output" msgstr "" #: src/signal.cpp:99 -#, fuzzy msgid "Urgent socket condition" -msgstr "设置配置选项" +msgstr "" #: src/signal.cpp:102 msgid "CPU time limit exceeded" @@ -1780,44 +1760,44 @@ msgid "Cannot use stdin (fd 0) as pipe output" msgstr "" #: src/wgetopt.cpp:246 -#, fuzzy, c-format +#, c-format msgid "%ls: Invalid option -- %lc\n" -msgstr "%ls:进程id %ls 非法\n" +msgstr "" #: src/wgetopt.cpp:277 -#, fuzzy, c-format +#, c-format msgid "%ls: Option requires an argument -- %lc\n" -msgstr "%ls:应有一个参数,提供了 %d 个\n" +msgstr "" #: src/wgetopt.cpp:304 -#, fuzzy, c-format +#, c-format msgid "%ls: Option '--%ls' doesn't allow an argument\n" -msgstr "%ls:函数 “%ls” 不存在\n" +msgstr "" #: src/wgetopt.cpp:308 -#, fuzzy, c-format +#, c-format msgid "%ls: Option '%lc%ls' doesn't allow an argument\n" -msgstr "%ls:函数 “%lc%ls” 不存在\n" +msgstr "" #: src/wgetopt.cpp:320 -#, fuzzy, c-format +#, c-format msgid "%ls: Option '%ls' requires an argument\n" -msgstr "%ls:函数 “%ls” 不存在\n" +msgstr "" #: src/wgetopt.cpp:383 -#, fuzzy, c-format +#, c-format msgid "%ls: Option '%ls' is ambiguous\n" -msgstr "%ls:函数 “%ls” 不存在\n" +msgstr "" #: src/wgetopt.cpp:402 -#, fuzzy, c-format +#, c-format msgid "%ls: Unrecognized option '--%ls'\n" -msgstr "%ls:未知的输入函数 “%ls”\n" +msgstr "" #: src/wgetopt.cpp:405 -#, fuzzy, c-format +#, c-format msgid "%ls: Unrecognized option '%lc%ls'\n" -msgstr "%ls:未知的输入函数 “%lc%ls”\n" +msgstr "" #: src/wildcard.cpp:27 /tmp/fish/implicit/share/completions/journalctl.fish:2 msgid "Executable" @@ -1882,18 +1862,16 @@ msgid "getcwd() failed with errno %d/%s" msgstr "" #: src/builtin.h:35 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected argument for option %ls\n" -msgstr "%ls:应有一个参数,提供了 %d 个\n" +msgstr "" #: src/builtin.h:41 -#, fuzzy, c-format +#, c-format msgid "" "%ls: Invalid combination of options,\n" "%ls\n" msgstr "" -"%ls:非法的选项组合\n" -"%ls\n" #: src/builtin.h:45 #, c-format @@ -1906,39 +1884,39 @@ msgid "%ls: Variable can't be both exported and unexported\n" msgstr "" #: src/builtin.h:51 -#, fuzzy, c-format +#, c-format msgid "%ls: Unknown option '%ls'\n" -msgstr "%ls:未知的任务 “%ls”\n" +msgstr "" #: src/builtin.h:54 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected %d args, got %d\n" -msgstr "%ls:应有一个参数%d,提供了 %d 个\n" +msgstr "" #: src/builtin.h:55 -#, fuzzy, c-format +#, c-format msgid "%ls %ls: Expected %d args, got %d\n" -msgstr "%ls %ls:应有一个参数%d,提供了 %d 个\n" +msgstr "" #: src/builtin.h:56 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected at least %d args, got only %d\n" -msgstr "%ls:应有一个参数%d,提供了 %d 个\n" +msgstr "" #: src/builtin.h:57 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected at most %d args, got %d\n" -msgstr "%ls:应有一个参数%d,提供了 %d 个\n" +msgstr "" #: src/builtin.h:60 -#, fuzzy, c-format +#, c-format msgid "%ls: Variable name '%ls' is not valid. See `help identifiers`.\n" -msgstr "%ls:种子值 “%ls” 不是一个有效的数字\n" +msgstr "" #: src/builtin.h:63 -#, fuzzy, c-format +#, c-format msgid "%ls: mode name '%ls' is not valid. See `help identifiers`.\n" -msgstr "%ls:种子值 “%ls” 不是一个有效的数字\n" +msgstr "" #: src/builtin.h:66 #, c-format @@ -1946,19 +1924,19 @@ msgid "%ls: Too many arguments\n" msgstr "%ls:参数过多\n" #: src/builtin.h:69 -#, fuzzy, c-format +#, c-format msgid "%ls: Argument '%ls' is not a number\n" -msgstr "%ls: Argument “%ls” is not a number\n" +msgstr "" #: src/builtin.h:72 -#, fuzzy, c-format +#, c-format msgid "%ls: Expected a subcommand to follow the command\n" -msgstr "%ls:应有一个参数,提供了个\n" +msgstr "" #: src/builtin.h:73 -#, fuzzy, c-format +#, c-format msgid "%ls: Subcommand '%ls' is not valid\n" -msgstr "%ls:“%ls” 不是一个文件\n" +msgstr "" #: src/builtin.h:76 #, c-format @@ -2317,9 +2295,8 @@ msgid "Prints a description of a domain or service" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:12 -#, fuzzy msgid "Prints information about the service cache" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:13 msgid "Prints which services are disabled" @@ -2332,14 +2309,12 @@ msgid "" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:15 -#, fuzzy msgid "Prints port information about a process" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:16 -#, fuzzy msgid "Prints port information about the host" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:17 msgid "Resolves a port name from a process to an endpoint in launchd" @@ -2391,9 +2366,8 @@ msgid "Unloads the specified service name" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:29 -#, fuzzy msgid "Lists information about services" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:30 msgid "Starts the specified service" @@ -2426,9 +2400,8 @@ msgid "Execute a program in the bootstrap context of a given user" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:37 -#, fuzzy msgid "Submit a basic job from the command line" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:38 msgid "Prints the PID of the launchd controlling the session" @@ -2439,9 +2412,8 @@ msgid "Prints the UID of the current launchd session" msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:40 -#, fuzzy msgid "Prints the name of the current launchd session" -msgstr "跳过最内层循环的当前一轮的剩余部分" +msgstr "" #: /tmp/fish/explicit/share/completions/launchctl.fish:41 msgid "Prints a description of an error" @@ -2649,9 +2621,8 @@ msgid "Reset preferred minor to current one" msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:58 -#, fuzzy msgid "Abort currently running actions" -msgstr "列出当前运行的任务" +msgstr "" #: /tmp/fish/explicit/share/completions/mdadm.fish:59 msgid "Abort currently running actions, prevent their restart" @@ -2771,9 +2742,8 @@ msgid "Value received by 'zfs receive'" msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:10 -#, fuzzy msgid "Value valid for the current mount" -msgstr "停止当前求值的函数" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:11 msgid "Read-only value" @@ -2951,9 +2921,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:51 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:14 -#, fuzzy msgid "Max number of snapshots" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:52 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:4 @@ -3009,9 +2978,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:62 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:25 -#, fuzzy msgid "Hide .zfs directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:63 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_rw_properties.fish:26 @@ -3108,9 +3076,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:84 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:1 -#, fuzzy msgid "Unicode normalization" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/explicit/share/completions/zfs.fish:85 #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_write_once_properties.fish:2 @@ -3134,9 +3101,8 @@ msgid "Dataset name" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:1 -#, fuzzy msgid "Pool full name" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:5 msgid "Mirror of at least two devices" @@ -3187,9 +3153,8 @@ msgid "Usage percentage of pool" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:18 -#, fuzzy msgid "Deduplication ratio" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:19 msgid "Amount of uninitialized space within the pool" @@ -3229,9 +3194,8 @@ msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:28 #: /tmp/fish/explicit/share/completions/zpool.fish:29 -#, fuzzy msgid "Alternate root directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:30 #: /tmp/fish/explicit/share/completions/zpool.fish:31 @@ -3253,9 +3217,8 @@ msgid "Default bootable dataset" msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:37 -#, fuzzy msgid "Pool configuration cache" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/explicit/share/completions/zpool.fish:38 msgid "Comment about the pool" @@ -3290,14 +3253,12 @@ msgid "All properties" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:1 -#, fuzzy msgid "%s: Could not figure out what to do!\\n" -msgstr "%s:找不到home目录\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:2 -#, fuzzy msgid "%s %s: Requires at least two arguments\\n" -msgstr "%ls:函数 “%ls” 不存在\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:3 #: /tmp/fish/explicit/share/functions/abbr.fish:5 @@ -3307,9 +3268,8 @@ msgid "%s %s: Abbreviation %s cannot have spaces in the word\\n" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:4 -#, fuzzy msgid "%s %s: Expected one argument\\n" -msgstr "%ls:应有一个参数,提供了 %d 个\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:6 #: /tmp/fish/explicit/share/functions/abbr.fish:10 @@ -3317,56 +3277,16 @@ msgid "%s %s: No abbreviation named %s\\n" msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:7 -#, fuzzy msgid "%s %s: Requires exactly two arguments\\n" -msgstr "%ls:函数 “%ls” 不存在\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:11 -#, fuzzy msgid "%s %s: Abbreviation %s already exists, cannot rename %s\\n" -msgstr "%s %s:函数 “%s” 不存在 %s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/abbr.fish:12 #: /tmp/fish/explicit/share/functions/abbr.fish:13 -#, fuzzy msgid "%s %s: Unexpected argument -- '%s'\\n" -msgstr "%s %s:应有一个参数,提供了 %s 个\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:1 -#, fuzzy -msgid "%s: invalid option -- %s\\n" -msgstr "%s:进程id %s 非法\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:2 -msgid "%s: %s cannot be specified along with %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:3 -msgid "%s: option requires an argument -- %s\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:4 -#, fuzzy -msgid "%s: Unexpected argument -- %s\\n" -msgstr "%s:应有一个参数,提供了 %s 个\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:5 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:8 -msgid "%s: abbreviation cannot have spaces in the key\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:6 -msgid "%s: abbreviation must have a value\\n" -msgstr "" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:7 -#, fuzzy -msgid "%s: abbreviation '%s' already exists, cannot rename\\n" -msgstr "%s:函数 “%s” 不存在\\n" - -#: /tmp/fish/explicit/share/functions/abbr_old.fish:9 -#: /tmp/fish/explicit/share/functions/abbr_old.fish:10 -msgid "%s: no such abbreviation '%s'\\n" msgstr "" #: /tmp/fish/explicit/share/functions/alias.fish:1 @@ -3382,9 +3302,8 @@ msgid "Too many args for cd command" msgstr "" #: /tmp/fish/explicit/share/functions/cdh.fish:1 -#, fuzzy msgid "cdh: Expected zero or one arguments" -msgstr "cdh: 应有一个参数,提供了 个\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/cdh.fish:2 msgid "No previous directories to select. You have to cd at least once." @@ -3419,14 +3338,6 @@ msgstr "" msgid "or the file was empty" msgstr "" -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:2 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:3 -#: /tmp/fish/explicit/share/functions/__fish_complete_tar.fish:4 -#: /tmp/fish/explicit/share/functions/__fish_complete_unrar.fish:1 -msgid "%s\\tArchived file\\n" -msgstr "" - #: /tmp/fish/explicit/share/functions/__fish_complete_zfs_ro_properties.fish:3 msgid "Achieved compression ratio" msgstr "" @@ -3562,9 +3473,8 @@ msgstr "" #: /tmp/fish/explicit/share/functions/fish_md5.fish:1 #: /tmp/fish/explicit/share/functions/fish_md5.fish:2 -#, fuzzy msgid "%s: Too many arguments %s\\n" -msgstr "%s:参数过多%s\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/__fish_move_last.fish:1 msgid "Hit end of history…\\n" @@ -3591,9 +3501,8 @@ msgid "Package" msgstr "" #: /tmp/fish/explicit/share/functions/fish_update_completions.fish:1 -#, fuzzy msgid "python executable not found" -msgstr "有条件地执行一个命令区块" +msgstr "" #: /tmp/fish/explicit/share/functions/funced.fish:2 msgid "Editing failed or was cancelled" @@ -3612,19 +3521,16 @@ msgid "Cancelled function editing" msgstr "" #: /tmp/fish/explicit/share/functions/funcsave.fish:1 -#, fuzzy msgid "%s: Could not create configuration directory\\n" -msgstr "%s:找不到home目录\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/funcsave.fish:2 -#, fuzzy msgid "%s: Unknown function '%s'\\n" -msgstr "%s:未知的输入函数 “%s”\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/help.fish:1 -#, fuzzy msgid "%s: Could not find a web browser.\\n" -msgstr "%ls:找不到home目录\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/help.fish:3 msgid "help: Help is being displayed in your default browser.\\n" @@ -3639,9 +3545,8 @@ msgid "%ls: you cannot use any options with the %ls command\\n" msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:2 -#, fuzzy msgid "%ls: %ls expected %d args, got %d\\n" -msgstr "%ls:%ls 应有一个参数%d,提供了 %d 个\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/history.fish:3 msgid "You must specify at least one search term when deleting entries\\n" @@ -3661,9 +3566,8 @@ msgid "You did not say 'yes' so I will not clear your command history\\n" msgstr "" #: /tmp/fish/explicit/share/functions/isatty.fish:1 -#, fuzzy msgid "%s: Too many arguments" -msgstr "%ls:参数过多" +msgstr "" #: /tmp/fish/explicit/share/functions/nextd.fish:1 #: /tmp/fish/explicit/share/functions/prevd.fish:1 @@ -3679,29 +3583,25 @@ msgid "%s: Directory stack is empty…\\n" msgstr "" #: /tmp/fish/explicit/share/functions/psub.fish:1 -#, fuzzy msgid "%s: Not inside of command substitution" -msgstr "%ls:不在函数体之内" +msgstr "" #: /tmp/fish/explicit/share/functions/realpath.fish:1 msgid "%s: These flags are not allowed by fish realpath: '%s'" msgstr "" #: /tmp/fish/explicit/share/functions/seq.fish:1 -#, fuzzy msgid "%s: Expected 1, 2 or 3 arguments, got %d\\n" -msgstr "%ls:应有一个参数,提供了 %d 个\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/seq.fish:2 -#, fuzzy msgid "%s: '%s' is not a number\\n" -msgstr "%ls:“%ls” 不是一个任务\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/setenv.fish:1 #: /tmp/fish/explicit/share/functions/umask.fish:3 -#, fuzzy msgid "%s: Too many arguments\\n" -msgstr "%ls:参数过多\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/setenv.fish:2 msgid "%s: Variable name must contain alphanumeric characters\\n" @@ -3737,14 +3637,12 @@ msgstr "" #: /tmp/fish/explicit/share/functions/umask.fish:1 #: /tmp/fish/explicit/share/functions/umask.fish:2 -#, fuzzy msgid "%s: Invalid mask '%s'\\n" -msgstr "%s:变量名 “%s” 非法\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/_validate_int.fish:1 -#, fuzzy msgid "%s: Value '%s' for flag '%s' is not an integer\\n" -msgstr "%s:“%s” 不是%s一个任务\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/_validate_int.fish:2 msgid "%s: Value '%s' for flag '%s' less than min allowed of '%s'\\n" @@ -3755,9 +3653,8 @@ msgid "%s: Value '%s' for flag '%s' greater than max allowed of '%s'\\n" msgstr "" #: /tmp/fish/explicit/share/functions/vared.fish:1 -#, fuzzy msgid "%s: Unknown option %s\\n" -msgstr "%s:未知的输入函数 “%s”\\n" +msgstr "" #: /tmp/fish/explicit/share/functions/vared.fish:2 msgid "" @@ -3924,9 +3821,8 @@ msgid "Output the part of line matching pattern" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:12 -#, fuzzy msgid "Print all lines" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:13 msgid "Specify pattern explicitly" @@ -4064,9 +3960,8 @@ msgid "Read the list of files to search from STDIN" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:46 -#, fuzzy msgid "Ignore directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:47 msgid "Don't ignore directory" @@ -4121,9 +4016,8 @@ msgid "Removes all filters associated with type" msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:58 -#, fuzzy msgid "Ignores environment variables and ackrc files" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/ack.fish:59 msgid "Specifies location of ackrc file" @@ -4276,7 +4170,6 @@ msgstr "" #: /tmp/fish/implicit/share/completions/echo.fish:5 #: /tmp/fish/implicit/share/completions/entr.fish:3 #: /tmp/fish/implicit/share/completions/env.fish:5 -#: /tmp/fish/implicit/share/completions/eval.fish:1 #: /tmp/fish/implicit/share/completions/exec.fish:1 #: /tmp/fish/implicit/share/completions/exit.fish:1 #: /tmp/fish/implicit/share/completions/fg.fish:1 @@ -4446,9 +4339,8 @@ msgid "Port forwarding" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:20 -#, fuzzy msgid "Return bugreport information" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:21 msgid "Perform device backup" @@ -4608,9 +4500,8 @@ msgid "Package(s) to backup" msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:60 -#, fuzzy msgid "List all forward socket connections" -msgstr "列出或移除函数" +msgstr "" #: /tmp/fish/implicit/share/completions/adb.fish:61 msgid "Fails the forward if local is already forwarded" @@ -4813,9 +4704,8 @@ msgid "Remove runstate file at first" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:22 -#, fuzzy msgid "Set environment variable" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:23 msgid "The configuration file for init" @@ -4830,9 +4720,8 @@ msgid "The PID file to use" msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:26 -#, fuzzy msgid "Run the task in background" -msgstr "将任务置于后台" +msgstr "" #: /tmp/fish/implicit/share/completions/alsactl.fish:27 msgid "Use syslog for messages" @@ -4862,7 +4751,6 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:2 #: /tmp/fish/implicit/share/completions/mocha.fish:1 #: /tmp/fish/implicit/share/completions/modinfo.fish:11 -#: /tmp/fish/implicit/share/completions/netcat.fish:7 #: /tmp/fish/implicit/share/completions/netctl-auto.fish:1 #: /tmp/fish/implicit/share/completions/poweroff.fish:1 #: /tmp/fish/implicit/share/completions/terraform.fish:2 @@ -5321,9 +5209,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/mogrify.fish:80 #: /tmp/fish/implicit/share/completions/montage.fish:68 #: /tmp/fish/implicit/share/completions/stream.fish:27 -#, fuzzy msgid "Print detailed information about the image" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:42 #: /tmp/fish/implicit/share/completions/display.fish:49 @@ -5468,9 +5355,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/import.fish:53 #: /tmp/fish/implicit/share/completions/montage.fish:101 #: /tmp/fish/implicit/share/completions/stream.fish:30 -#, fuzzy msgid "Print program options" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/animate.fish:60 #: /tmp/fish/implicit/share/completions/compare.fish:42 @@ -5834,9 +5720,8 @@ msgid "Runs the package's tests contained within the spec directory" msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:76 -#, fuzzy msgid "Path to atom command" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/apm.fish:77 msgid "Delete the symlink in ~/.atom/packages for the package" @@ -6083,9 +5968,8 @@ msgid "Build source without install" msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:11 -#, fuzzy msgid "Clean source directories" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-build.fish:12 msgid "Update source and rebuild" @@ -6253,9 +6137,8 @@ msgid "Auto-gen package cache" msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:24 -#, fuzzy msgid "Print all names" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-cache.fish:25 msgid "Dep and rdep recursive" @@ -6320,9 +6203,8 @@ msgid "Access config file from shell" msgstr "" #: /tmp/fish/implicit/share/completions/apt-config.fish:3 -#, fuzzy msgid "Dump contents of config file" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-extracttemplates.fish:2 msgid "Set temp dir" @@ -6394,9 +6276,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apt.fish:7 #: /tmp/fish/implicit/share/completions/git.fish:4 -#, fuzzy msgid "Set a configuration option" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/apt.fish:8 #: /tmp/fish/implicit/share/completions/hugo.fish:1 @@ -6412,32 +6293,28 @@ msgid "Target release" msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:2 -#, fuzzy msgid "Generate package from source" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:3 msgid "Generate source index file" msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:4 -#, fuzzy msgid "Generate contents file" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:5 -#, fuzzy msgid "Generate release file" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:6 msgid "Remove records" msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:7 -#, fuzzy msgid "Generate MD5 sums" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:8 msgid "Use a binary db" @@ -6466,9 +6343,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apt-ftparchive.fish:16 #: /tmp/fish/implicit/share/completions/apt-sortpkgs.fish:5 #: /tmp/fish/implicit/share/completions/composer.fish:7 -#, fuzzy msgid "Set config options" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:5 msgid "Update sources" @@ -6635,9 +6511,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apt-get.fish:48 #: /tmp/fish/implicit/share/completions/apt-mark.fish:14 -#, fuzzy msgid "Set a config option" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/aptitude.fish:1 msgid "Test if aptitude has yet to be given the subcommand" @@ -6930,9 +6805,8 @@ msgid "Specify email address" msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:6 -#, fuzzy msgid "Ask confirmation" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-listchanges.fish:7 msgid "Display all changelogs" @@ -7096,9 +6970,8 @@ msgid "Show build dependencies" msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:3 -#, fuzzy msgid "Generate a dotty graph" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-rdepends.fish:4 msgid "Show state of dependencies" @@ -7134,9 +7007,8 @@ msgid "Probe a CD" msgstr "" #: /tmp/fish/implicit/share/completions/apt-setup.fish:2 -#, fuzzy msgid "Run in non-interactive mode" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-source.fish:2 #: /tmp/fish/implicit/share/completions/apt-show-source.fish:3 @@ -7173,9 +7045,8 @@ msgid "Print only upgradeable packages" msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:5 -#, fuzzy msgid "Print all versions" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-show-versions.fish:6 msgid "Print package name/distro" @@ -7210,9 +7081,8 @@ msgid "Conf file" msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:5 -#, fuzzy msgid "Finish after number of servers" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-spy.fish:6 msgid "File to grab servers" @@ -7320,14 +7190,12 @@ msgid "Specify a dir" msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:17 -#, fuzzy msgid "Run on current dir" -msgstr "在当前进程下执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:18 -#, fuzzy msgid "Omit debian version" -msgstr "触发一个事件️" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-src.fish:19 msgid "Do not del built files" @@ -7356,9 +7224,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:4 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:4 -#, fuzzy msgid "Select an action" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/apt-zip-inst.fish:5 #: /tmp/fish/implicit/share/completions/apt-zip-list.fish:5 @@ -7421,9 +7288,8 @@ msgid "Sets the timeout" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:10 -#, fuzzy msgid "Sets a config" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:11 msgid "Skip the working copy configuration file" @@ -7446,9 +7312,8 @@ msgid "Reads an arc configuration option" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:16 -#, fuzzy msgid "Show detailed information about options" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:17 msgid "Download a file to local disk" @@ -7542,9 +7407,8 @@ msgid "Delete the flag on an object" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:39 -#, fuzzy msgid "Set the note on a flag" -msgstr "设置终端颜色" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:40 msgid "Export the local changeset to a file" @@ -7731,9 +7595,8 @@ msgid "Alias for arc feature" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:85 -#, fuzzy msgid "Amend the working copy" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:87 msgid "Show the amended commit message" @@ -7748,9 +7611,8 @@ msgid "Shows the help" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:90 -#, fuzzy msgid "Print detailed information about each command" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:91 msgid "Share and grab text using the Paste application" @@ -7773,18 +7635,16 @@ msgid "Commit a revision which has been accepted by a reviewer" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:96 -#, fuzzy msgid "Commit a specific revision" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:97 msgid "Show the command which would be issued" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:98 -#, fuzzy msgid "Apply changes to the working copy" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:99 msgid "Do not run any sanity checks" @@ -7949,9 +7809,8 @@ msgid "Always disable coverage information" msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:142 -#, fuzzy msgid "Backouts on a previous commit" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/arc.fish:143 msgid "Make a raw Conduit method call" @@ -8166,19 +8025,16 @@ msgid "Take addr from filename, default /etc/ethers" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:1 -#, fuzzy msgid "Omit false conditionals" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:2 -#, fuzzy msgid "Omit debugging directives" -msgstr "触发一个事件️" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:3 -#, fuzzy msgid "Include general information" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:4 msgid "Include high-level source" @@ -8217,14 +8073,12 @@ msgid "Produce assembler debugging messages" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:13 -#, fuzzy msgid "Remap debug information" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:14 -#, fuzzy msgid "Redefine symbols" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:15 msgid "Require executable stack for this object" @@ -8251,9 +8105,8 @@ msgid "Skip whitespace and comment preprocessing" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:21 -#, fuzzy msgid "Generate debugging information" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:22 msgid "Generate STABS debugging information" @@ -8272,19 +8125,16 @@ msgid "Generate per-function section names for DWARF line information" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:26 -#, fuzzy msgid "Set the hash table size close" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:27 -#, fuzzy msgid "Show help message and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:28 -#, fuzzy msgid "Show target specific options" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:29 msgid "Add DIR to search list for .include directives" @@ -8307,9 +8157,8 @@ msgid "Assemble in MRI compatibility mode" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:34 -#, fuzzy msgid "Write dependency information in given file" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:35 msgid "Do not pad the end of sections to alignment boundaries" @@ -8340,9 +8189,8 @@ msgid "Use same format as native assembler when possible" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:42 -#, fuzzy msgid "Print assembler version number and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:43 #: /tmp/fish/implicit/share/completions/gunzip.fish:8 @@ -8367,9 +8215,8 @@ msgid "Read option from given file" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:48 -#, fuzzy msgid "Print assembler version number" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:49 msgid "Don't optimize code alignment" @@ -8380,28 +8227,24 @@ msgid "Quieten some warnings" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:51 -#, fuzzy msgid "Generate 32 bits code" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:52 -#, fuzzy msgid "Generate 64 bits code" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:53 -#, fuzzy msgid "Generate x32 code" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:54 msgid "Encode SSE instructions with VEX prefix" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:55 -#, fuzzy msgid "Check SSE instructions" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:56 msgid "Check operand combinations for validity" @@ -8456,9 +8299,8 @@ msgid "Strip all lock prefixes" msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:70 -#, fuzzy msgid "Generate relax relocations" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/as.fish:71 msgid "Accept only AMD64 ISA" @@ -8481,9 +8323,8 @@ msgid "Show the full history of the target, with file diffs" msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:3 -#, fuzzy msgid "Put the source files in current directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/asp.fish:4 msgid "Collect garbage" @@ -8586,9 +8427,8 @@ msgid "Keep the browser process in the foreground." msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:3 -#, fuzzy msgid "Print usage message." -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/atom.fish:4 msgid "Log all output to file." @@ -8874,9 +8714,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacman.fish:17 #: /tmp/fish/implicit/share/completions/tmux.fish:12 #: /tmp/fish/implicit/share/completions/yaourt.fish:23 -#, fuzzy msgid "Alternate config file" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:25 #: /tmp/fish/implicit/share/completions/pacaur.fish:27 @@ -9117,9 +8956,8 @@ msgid "Restores a record kept with -B" msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:69 -#, fuzzy msgid "Backup to directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/aura.fish:70 msgid "Save this many versions" @@ -9378,9 +9216,8 @@ msgid "Wrap encoded line after given number of caracters (default 76)" msgstr "" #: /tmp/fish/implicit/share/completions/bc.fish:1 -#, fuzzy msgid "Force interactive mode" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/bc.fish:2 msgid "Define math library" @@ -9692,9 +9529,8 @@ msgid "Open brew/formula's homepage" msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:43 -#, fuzzy msgid "Display information about formula" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/brew.fish:44 msgid "Display info for all formulae" @@ -10372,9 +10208,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gunzip.fish:5 #: /tmp/fish/implicit/share/completions/gzip.fish:5 #: /tmp/fish/implicit/share/completions/zcat.fish:3 -#, fuzzy msgid "Print license" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/busctl.fish:1 msgid "Suppress message payload display" @@ -10437,9 +10272,8 @@ msgid "List all help topics" msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:3 -#, fuzzy msgid "List all commands" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/bzr.fish:4 msgid "Help about supported formats" @@ -10914,9 +10748,8 @@ msgid "Add feed" msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:11 -#, fuzzy msgid "Set configuration directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:12 #: /tmp/fish/implicit/share/completions/pine.fish:10 @@ -10932,16 +10765,14 @@ msgid "Set feed directory" msgstr "" #: /tmp/fish/implicit/share/completions/canto.fish:15 -#, fuzzy msgid "Set script directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:1 #: /tmp/fish/implicit/share/completions/light.fish:2 #: /tmp/fish/implicit/share/completions/rustc.fish:1 -#, fuzzy msgid "Print version info and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/cargo.fish:2 msgid "List installed commands" @@ -11239,9 +11070,8 @@ msgid "Allows the user to manually select a driver for the device" msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:37 -#, fuzzy msgid "Set driver specific options" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/cdrecord.fish:38 msgid "" @@ -11512,18 +11342,16 @@ msgid "Username" msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:1 -#, fuzzy msgid "Specify your login shell" -msgstr "这是登录shell" +msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:2 msgid "Display help and exit\t" msgstr "" #: /tmp/fish/implicit/share/completions/chsh.fish:4 -#, fuzzy msgid "List available shells and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:2 msgid "Update your climate install" @@ -11579,9 +11407,8 @@ msgid "Find the biggest files recursively" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:17 -#, fuzzy msgid "Find the biggest directories" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:18 msgid "Find directory size" @@ -11600,9 +11427,8 @@ msgid "Report duplicate files in a directory" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:22 -#, fuzzy msgid "Count the number of occurences" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:23 msgid "Monitor file for changes" @@ -11641,9 +11467,8 @@ msgid "List open ports" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:32 -#, fuzzy msgid "Edit the hosts file" -msgstr "退出这个 shell" +msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:33 msgid "http-server serving the current directory" @@ -11718,9 +11543,8 @@ msgid "Find the trash size" msgstr "" #: /tmp/fish/implicit/share/completions/climate.fish:51 -#, fuzzy msgid "Empty the trash" -msgstr "退出这个 shell" +msgstr "" #: /tmp/fish/implicit/share/completions/combine.fish:1 msgid "Combine sets of lines from two files using boolean operations" @@ -11755,9 +11579,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/setsid.fish:1 #: /tmp/fish/implicit/share/completions/ssh.fish:1 #: /tmp/fish/implicit/share/completions/sudo.fish:20 -#, fuzzy msgid "Command to run" -msgstr "命令" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:2 msgid "Add text to the end of the selected area" @@ -11784,9 +11607,8 @@ msgid "Select token under cursor" msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:8 -#, fuzzy msgid "Select entire command line (default)" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/commandline.fish:9 msgid "Only return that part of the command line before the cursor" @@ -11952,9 +11774,8 @@ msgid "Old style long option to complete" msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:6 -#, fuzzy msgid "Do not use file completion" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/complete.fish:7 msgid "Require parameter" @@ -11999,9 +11820,8 @@ msgid "User script" msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:2 -#, fuzzy msgid "Short information about Composer" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/composer.fish:3 msgid "Create an archive of this composer package" @@ -12360,9 +12180,8 @@ msgid "Do not create output files" msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:7 -#, fuzzy msgid "Set source directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/configure.fish:8 msgid "Architecture-independent install directory" @@ -12726,83 +12545,6 @@ msgstr "" msgid "Enhance or reduce the image contrast" msgstr "" -#: /tmp/fish/implicit/share/completions/cower.fish:1 -msgid "Show output in a more script friendly format" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:2 -msgid "Download [twice to fetch dependencies]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:3 -msgid "Show info for target [twice for more details]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:4 -msgid "Search for packages by maintainer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:5 -msgid "Search for packages by name" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:6 -msgid "Check AUR packages for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:7 -msgid "Use colored output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:8 -msgid "Show debug output" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:9 -msgid "Overwrite existing files when downloading" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:10 -#, fuzzy -msgid "Print formatted" -msgstr "显示命令类型" - -#: /tmp/fish/implicit/share/completions/cower.fish:11 -msgid "Display help and quit" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:12 -msgid "Ignore a package upgrade" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:13 -msgid "Ignore a binary repo when checking for updates" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:14 -msgid "Specify a delimiter for list formatters" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:15 -msgid "Output less" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:16 -msgid "Download targets to DIR" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:17 -msgid "Limit the number of threads created [10]" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:18 -msgid "Curl timeout in seconds" -msgstr "" - -#: /tmp/fish/implicit/share/completions/cower.fish:19 -msgid "Output more" -msgstr "" - #: /tmp/fish/implicit/share/completions/cowsay.fish:1 #: /tmp/fish/implicit/share/completions/cowthink.fish:1 msgid "Specify eye string" @@ -13054,9 +12796,8 @@ msgid "Kerberos server mode" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:33 -#, fuzzy msgid "Print out history information for files" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:34 msgid "Prompt for password for authenticating server" @@ -13107,18 +12848,16 @@ msgid "Server mode" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:46 -#, fuzzy msgid "Display status information on checked out files" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:47 msgid "Add a symbolic tag to checked out version of files" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:48 -#, fuzzy msgid "Undo an edit command" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:49 msgid "Bring work tree in sync with repository" @@ -13165,9 +12904,8 @@ msgid "[users] Remove (comma-separated) user names from access list" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:60 -#, fuzzy msgid "Run interactively." -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:61 msgid "Set keyword substitution mode:" @@ -13593,9 +13331,8 @@ msgid "Last modified (committed or modified report)" msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:165 -#, fuzzy msgid "Working directory must match" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:166 msgid "Since date (Many formats)" @@ -13787,9 +13524,8 @@ msgid "Revision - symbolic or numeric." msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:221 -#, fuzzy msgid "Delete the given directory." -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/cvs.fish:222 msgid "Delete the file before removing it." @@ -13890,9 +13626,8 @@ msgid "Download missing sources" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:7 -#, fuzzy msgid "Prepare source directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:8 msgid "Build software" @@ -13955,9 +13690,8 @@ msgid "Send announcement email" msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:23 -#, fuzzy msgid "Delete working directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/cygport.fish:24 msgid "Same as prep build inst pkg" @@ -14333,9 +14067,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:978 #: /tmp/fish/implicit/share/completions/darcs.fish:996 #: /tmp/fish/implicit/share/completions/darcs.fish:1016 -#, fuzzy msgid "Suppress informational output" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:429 #: /tmp/fish/implicit/share/completions/darcs.fish:473 @@ -14597,9 +14330,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:707 #: /tmp/fish/implicit/share/completions/darcs.fish:760 #: /tmp/fish/implicit/share/completions/darcs.fish:803 -#, fuzzy msgid "Generate XML formatted output" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/darcs.fish:455 #: /tmp/fish/implicit/share/completions/darcs.fish:493 @@ -15291,14 +15023,12 @@ msgid "Use last acquired lease if cannot obtain one even if expired" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:7 -#, fuzzy msgid "Push given value the environment" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:8 -#, fuzzy msgid "Reapply configuration for each interface" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:9 msgid "Request DHCP server to update DNS using FQDN instead of hostname" @@ -15349,9 +15079,8 @@ msgid "Renew existing addresses on specified interface" msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:21 -#, fuzzy msgid "Request DHCP option" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/dhcpcd.fish:22 msgid "Keep configuration even when dhcpcd exits" @@ -15554,17 +15283,15 @@ msgstr "" #: /tmp/fish/implicit/share/completions/lsof.fish:1 #: /tmp/fish/implicit/share/completions/lua.fish:5 #: /tmp/fish/implicit/share/completions/wicd-cli.fish:1 -#, fuzzy msgid "Print help and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:14 #: /tmp/fish/implicit/share/completions/feh.fish:55 #: /tmp/fish/implicit/share/completions/fuser.fish:12 #: /tmp/fish/implicit/share/completions/tree.fish:43 -#, fuzzy msgid "Print version and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/dig.fish:15 msgid "TCP mode" @@ -16065,9 +15792,8 @@ msgid "Build package from directory" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:9 -#, fuzzy msgid "List contents of .deb" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:10 msgid "Show .deb information" @@ -16078,9 +15804,8 @@ msgid "List packages matching pattern" msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:12 -#, fuzzy msgid "List contents of packages" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/dpkg.fish:13 msgid "Print status of package" @@ -16115,9 +15840,8 @@ msgid "Prevent reloading templates" msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:1 -#, fuzzy msgid "Get current status of the dropboxd" -msgstr "负的任务退出代码(exit status)" +msgstr "" #: /tmp/fish/implicit/share/completions/dropbox.fish:2 msgid "Provide help" @@ -16226,9 +15950,8 @@ msgid "Use 1kB block size" msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:10 -#, fuzzy msgid "Count hard links multiple times" -msgstr "多次执行一条命令" +msgstr "" #: /tmp/fish/implicit/share/completions/du.fish:11 msgid "Dereference all symlinks" @@ -16592,9 +16315,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:1 #: /tmp/fish/implicit/share/completions/iex.fish:1 -#, fuzzy msgid "Prints version and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/elixir.fish:2 #: /tmp/fish/implicit/share/completions/iex.fish:2 @@ -16670,9 +16392,8 @@ msgid "do not do interactive display; implies -q" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:2 -#, fuzzy msgid "change to directory DIR" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:3 msgid "start a server in the background" @@ -16766,9 +16487,8 @@ msgid "override color mode for character terminals" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:28 -#, fuzzy msgid "window background color" -msgstr "将任务置于后台" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:29 msgid "disable many display features; used for debugging Emacs" @@ -16791,9 +16511,8 @@ msgid "default font; must be fixed-width" msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:34 -#, fuzzy msgid "window foreground color" -msgstr "将任务带回到前台" +msgstr "" #: /tmp/fish/implicit/share/completions/emacs.fish:35 msgid "make the first frame high as the screen" @@ -17070,9 +16789,8 @@ msgid "Unmount when idle for specified MINUTES" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:2 -#, fuzzy msgid "Run in the foreground" -msgstr "将任务带回到前台" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:3 msgid "Verbose messages when run foreground" @@ -17087,9 +16805,8 @@ msgid "Enables debugging within the FUSE library" msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:6 -#, fuzzy msgid "Return data even from corrupted files" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/encfs.fish:7 msgid "Make files public to all other users" @@ -17142,16 +16859,14 @@ msgid "Output version information" msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:1 -#, fuzzy msgid "Redefine variable" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:2 #: /tmp/fish/implicit/share/completions/nice.fish:1 #: /tmp/fish/implicit/share/completions/time.fish:1 -#, fuzzy msgid "Command" -msgstr "命令" +msgstr "" #: /tmp/fish/implicit/share/completions/env.fish:3 msgid "Start with an empty environment" @@ -17311,18 +17026,16 @@ msgid "show help" msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:5 -#, fuzzy msgid "print the version" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:6 msgid "Writes config values to a JSON file." msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:7 -#, fuzzy msgid "Outputs useful debug information." -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:8 msgid "Downloads a solution given the ID of the latest iteration." @@ -17361,9 +17074,8 @@ msgid "Submits a new iteration to a problem on exercism.io." msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:16 -#, fuzzy msgid "Lists the available language tracks." -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/exercism.fish:17 msgid "REMOVED" @@ -17430,14 +17142,12 @@ msgid "dump diffs between jail initialisation and freeze time into a flavour" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:12 -#, fuzzy msgid "create the basejail from binary packages" -msgstr "创建代码区块" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:13 -#, fuzzy msgid "list all jails" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:14 msgid "restart a running jail" @@ -17464,9 +17174,8 @@ msgid "check for reasons for the jails to fail" msgstr "" #: /tmp/fish/implicit/share/completions/ezjail-admin.fish:24 -#, fuzzy msgid "create or update the basejail from source" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:1 #: /tmp/fish/implicit/share/completions/pkgfile.fish:2 @@ -17474,9 +17183,8 @@ msgid "show this help message and exit" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:2 -#, fuzzy msgid "print detailed info about command NAME" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:3 msgid "formats --list, choices: short, normal, nested" @@ -17491,9 +17199,8 @@ msgid "Force sudo password prompt up-front" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:6 -#, fuzzy msgid "print list of possible commands and exit" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:7 msgid "comma separated KEY=VALUE pairs to set Fab env vars" @@ -17521,14 +17228,12 @@ msgid "abort instead of prompting (for password, host, etc)" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:13 -#, fuzzy msgid "specify location of config file to use" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:14 -#, fuzzy msgid "Color error output" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:15 msgid "do not load user known_hosts file" @@ -17635,9 +17340,8 @@ msgid "skip over unknown tasks" msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:41 -#, fuzzy msgid "Path to SSH config file" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/fab.fish:42 msgid "set connection timeout to N seconds" @@ -17808,9 +17512,8 @@ msgid "Disable Xinerama support" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:37 -#, fuzzy msgid "Save files to given directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:38 msgid "Preload images" @@ -17931,9 +17634,8 @@ msgid "Set font to print title on index" msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:69 -#, fuzzy msgid "Center file on background" -msgstr "将任务置于后台" +msgstr "" #: /tmp/fish/implicit/share/completions/feh.fish:70 msgid "Fit file into background by zooming until image fits" @@ -17962,9 +17664,8 @@ msgid "Select font" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:2 -#, fuzzy msgid "Change font directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:3 msgid "Center output horizontally" @@ -17983,9 +17684,8 @@ msgid "Set justification according to text direction" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:7 -#, fuzzy msgid "Set output to terminal width" -msgstr "设置终端颜色" +msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:8 msgid "Set output width" @@ -18036,9 +17736,8 @@ msgid "Print right-to-left" msgstr "" #: /tmp/fish/implicit/share/completions/figlet.fish:25 -#, fuzzy msgid "Print with default text direction" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/file.fish:1 msgid "Do not prepend filenames to output lines" @@ -18202,9 +17901,8 @@ msgid "File is executable" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:25 -#, fuzzy msgid "Always false" -msgstr "总是" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:26 msgid "File is on filesystem of specified type" @@ -18291,9 +17989,8 @@ msgid "File uses specified units of space" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:47 -#, fuzzy msgid "Always true" -msgstr "总是" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:48 msgid "File is of specified type" @@ -18328,9 +18025,8 @@ msgid "Delete selected files" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:55 -#, fuzzy msgid "Execute specified command for each located file" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:56 msgid "Execute specified command for each located file, in the files directory" @@ -18371,27 +18067,24 @@ msgid "Print null separated full file names" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:65 -#, fuzzy msgid "Print formated data" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:66 msgid "Do not recurse unless -depth is specified" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:67 -#, fuzzy msgid "Exit at once" -msgstr "退出这个 shell" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:68 msgid "List file in ls -dils format" msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:69 -#, fuzzy msgid "Negate result of action" -msgstr "负的任务退出代码(exit status)" +msgstr "" #: /tmp/fish/implicit/share/completions/find.fish:70 msgid "Result is only true if both previous and next action are true" @@ -18410,9 +18103,8 @@ msgid "Only parse input, do not execute" msgstr "" #: /tmp/fish/implicit/share/completions/fish.fish:5 -#, fuzzy msgid "Run in interactive mode" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/fish.fish:6 msgid "Run in login mode" @@ -18820,9 +18512,8 @@ msgid "Initialize a directory for building" msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:20 -#, fuzzy msgid "Run a build command inside the build dir" -msgstr "执行内部命令而不是一个函数" +msgstr "" #: /tmp/fish/implicit/share/completions/flatpak.fish:21 msgid "Finish a build dir for export" @@ -19008,9 +18699,8 @@ msgid "Show all versions" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:47 -#, fuzzy msgid "Undo latest bad/good command." -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:48 #: /tmp/fish/implicit/share/completions/git.fish:88 @@ -19026,9 +18716,8 @@ msgid "Make branch local" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:51 -#, fuzzy msgid "Set background color" -msgstr "将任务置于后台" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:52 #: /tmp/fish/implicit/share/completions/fossil.fish:106 @@ -19066,9 +18755,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:177 #: /tmp/fish/implicit/share/completions/fossil.fish:180 #: /tmp/fish/implicit/share/completions/fossil.fish:267 -#, fuzzy msgid "Run command on repository" -msgstr "在当前进程下执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:61 msgid "Print a file" @@ -19573,9 +19261,8 @@ msgid "Allow binary files to be diffed" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:217 -#, fuzzy msgid "External diff command" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:218 msgid "Disallow pushing to the repository" @@ -19638,9 +19325,8 @@ msgid "Use modification times" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:233 -#, fuzzy msgid "PGP command" -msgstr "命令" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:234 msgid "HTTP proxy URL" @@ -19713,9 +19399,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:252 #: /tmp/fish/implicit/share/completions/fossil.fish:253 -#, fuzzy msgid "Show information about files" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:254 msgid "Show stash contents" @@ -19795,9 +19480,8 @@ msgid "Find tag type" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:279 -#, fuzzy msgid "Limit number of tags" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:281 #: /tmp/fish/implicit/share/completions/git.fish:293 @@ -19877,9 +19561,8 @@ msgid "Print debug information" msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:304 -#, fuzzy msgid "Print information about all files" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/fossil.fish:305 msgid "Print fossil version" @@ -19910,24 +19593,21 @@ msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:1 #: /tmp/fish/implicit/share/completions/funcsave.fish:1 -#, fuzzy msgid "Save function" -msgstr "定义一个新函数" +msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:2 msgid "Open function in external editor" msgstr "" #: /tmp/fish/implicit/share/completions/funced.fish:3 -#, fuzzy msgid "Edit in interactive mode" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:1 #: /tmp/fish/implicit/share/completions/functions.fish:5 -#, fuzzy msgid "Set function description" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:2 #: /tmp/fish/implicit/share/completions/functions.fish:2 @@ -19961,9 +19641,8 @@ msgid "Make the function a generic event handler" msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:9 -#, fuzzy msgid "Specify named arguments" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/function.fish:10 msgid "Do not shadow variable scope of calling function" @@ -19974,9 +19653,8 @@ msgid "Inherit completions from the given command" msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:1 -#, fuzzy msgid "Erase function" -msgstr "定义一个新函数" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:3 msgid "Show hidden functions" @@ -19995,14 +19673,12 @@ msgid "Copy the specified function to the specified new name" msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:9 -#, fuzzy msgid "Display information about the function" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/functions.fish:10 -#, fuzzy msgid "Print more output" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/fuser.fish:1 msgid "Show all files specified on the command line" @@ -20073,9 +19749,8 @@ msgid "Lazy unmount" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:1 -#, fuzzy msgid "Standard mode" -msgstr "标准输入" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:2 msgid "Place output in file" @@ -23373,14 +23048,12 @@ msgid "Generate the predefine, \"_SIO\", for server IO" msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:764 -#, fuzzy msgid "Use GNU ld specific options" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:765 -#, fuzzy msgid "Use HP ld specific options" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/gcc.fish:766 msgid "Generate code that uses long call sequences" @@ -25583,18 +25256,16 @@ msgid "Use file file as a core dump to examine" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:7 -#, fuzzy msgid "Execute GDB commands from file file" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:8 msgid "Add directory to the path to search for source files" msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:9 -#, fuzzy msgid "Do not execute commands from any .gdbinit files" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/gdb.fish:11 #: /tmp/fish/implicit/share/completions/root.fish:1 @@ -25630,14 +25301,12 @@ msgid "Run GDB using a text (console) user interface" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:1 -#, fuzzy msgid "Print usage informations and quit" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:2 -#, fuzzy msgid "Print the version and quit" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:3 msgid "Use URL as the remote source for gems" @@ -25652,9 +25321,8 @@ msgid "Use no HTTP proxy for remote operations" msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:6 -#, fuzzy msgid "Get help on this command" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/gem.fish:7 msgid "Set the verbose level of output" @@ -26238,9 +25906,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:72 #: /tmp/fish/implicit/share/completions/git.fish:259 -#, fuzzy msgid "Interactive mode" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:73 msgid "Interactively choose hunks to stage" @@ -26889,9 +26556,8 @@ msgid "Reset current HEAD to the specified state" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:266 -#, fuzzy msgid "Reset files in working directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:270 msgid "Reflog" @@ -27027,9 +26693,8 @@ msgid "Create a new branch from a stash" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:307 -#, fuzzy msgid "Set and read git configuration variables" -msgstr "将输入的一行读入到变量中" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:308 msgid "Generate patch series to send upstream" @@ -27159,9 +26824,8 @@ msgid "Show commit summary" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:342 -#, fuzzy msgid "Run command on each submodule" -msgstr "在当前进程下执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:343 msgid "Sync submodules' URL with .gitmodules" @@ -27347,9 +27011,8 @@ msgid "Ignore whitespace changes" msgstr "" #: /tmp/fish/implicit/share/completions/git.fish:389 -#, fuzzy msgid "Custom command" -msgstr "命令" +msgstr "" #: /tmp/fish/implicit/share/completions/godoc.fish:1 msgid "Comma-separated list of analyses to perform" @@ -27468,14 +27131,12 @@ msgid "print packages being built" msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:7 -#, fuzzy msgid "print and preserve work directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:8 -#, fuzzy msgid "print the commands" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/go.fish:9 msgid "c compiler flags" @@ -27845,9 +27506,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:22 #: /tmp/fish/implicit/share/completions/signify.fish:2 -#, fuzzy msgid "Generate a new key pair" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:23 msgid "Present a menu which enables you to do all key related tasks" @@ -28147,9 +27807,8 @@ msgid "Use specified file instead of the default trustdb" msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:96 -#, fuzzy msgid "Set the home directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/gpg.fish:97 msgid "Set the native character set" @@ -28749,9 +28408,8 @@ msgid "List files in folder" msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:45 -#, fuzzy msgid "Create a directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/gphoto2.fish:46 msgid "Remove a directory" @@ -28842,9 +28500,8 @@ msgid "Overwrite files without asking" msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:1 -#, fuzzy msgid "Print annotated source" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/gprof.fish:2 msgid "Do not print explanations" @@ -29179,9 +28836,8 @@ msgid "Pattern is basic regex" msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:19 -#, fuzzy msgid "Print filename" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/grep.fish:20 msgid "Suppress printing filename" @@ -29429,18 +29085,16 @@ msgid "Check if given file is BIOS bootsector" msgstr "" #: /tmp/fish/implicit/share/completions/grub-file.fish:32 -#, fuzzy msgid "Display usage and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:1 msgid "Compress GRUB files" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:2 -#, fuzzy msgid "Use image and modules under given directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:3 msgid "Install given fonts" @@ -29455,9 +29109,8 @@ msgid "Embed given file as public key for signature checking" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:6 -#, fuzzy msgid "Use translations under given directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:7 msgid "Install only given locales" @@ -29532,9 +29185,8 @@ msgid "Don't apply any reed-solomon codes when embedding core.img" msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:26 -#, fuzzy msgid "Set product version" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/grub-install.fish:27 msgid "Delete device map if it already exists" @@ -29557,9 +29209,8 @@ msgid "Print the grunt version. Combine with --verbose for more info" msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:1 -#, fuzzy msgid "Print the version information" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/gsettings.fish:2 msgid "Specify a custom schemas directory" @@ -29988,9 +29639,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:44 #: /tmp/fish/implicit/share/completions/helm.fish:84 -#, fuzzy msgid "Set values on the command line" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/helm.fish:45 #: /tmp/fish/implicit/share/completions/helm.fish:85 @@ -30127,9 +29777,8 @@ msgid "Autosuggestions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:2 -#, fuzzy msgid "Builtin commands" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:3 msgid "Cartesian Products" @@ -30156,28 +29805,24 @@ msgid "Writing your own completions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:9 -#, fuzzy msgid "Where to put completions" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:10 msgid "Debugging fish scripts" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:12 -#, fuzzy msgid "Command line editor" -msgstr "命令" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:13 -#, fuzzy msgid "Emacs mode commands" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:14 -#, fuzzy msgid "Escaping characters" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:15 msgid "Event handlers" @@ -30193,9 +29838,8 @@ msgid "Brace expansion {a,b,c}" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:18 -#, fuzzy msgid "Command substitution" -msgstr "命令" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:19 msgid "Command substitution (SUBCOMMAND)" @@ -30230,9 +29874,8 @@ msgid "Searchable history" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:29 -#, fuzzy msgid "Shell variable and function names" -msgstr "函数名 非法" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:30 msgid "Initialization files" @@ -30283,57 +29926,49 @@ msgid "Input/Output (IO) redirection" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:42 -#, fuzzy msgid "Shared bindings" -msgstr "处理 fish 键 绑定" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:43 msgid "Introduction to the fish syntax" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:44 -#, fuzzy msgid "Background jobs" -msgstr "将任务置于后台" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:45 -#, fuzzy msgid "Conditional execution of code and flow control" -msgstr "有条件地执行一个命令区块" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:46 #: /tmp/fish/implicit/share/completions/help.fish:74 -#, fuzzy msgid "Functions" -msgstr "定义一个新函数" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:47 -#, fuzzy msgid "Autoloading functions" -msgstr "定义一个新函数" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:48 msgid "Defining aliases" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:49 -#, fuzzy msgid "Job control" -msgstr "任务控制" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:50 -#, fuzzy msgid "Some common words" -msgstr "状态\t命令" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:51 msgid "Programmable title" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:52 -#, fuzzy msgid "Shell variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:53 msgid "Arrays" @@ -30344,53 +29979,44 @@ msgid "Variables for changing highlighting colors" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:55 -#, fuzzy msgid "Exporting variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:56 -#, fuzzy msgid "Variable scope for functions" -msgstr "定义一个新函数" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:57 -#, fuzzy msgid "Locale variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:58 msgid "Variable scope" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:59 -#, fuzzy msgid "Special variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:60 -#, fuzzy msgid "The status variable" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:61 -#, fuzzy msgid "More on universal variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:62 -#, fuzzy msgid "Vi mode commands" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:63 -#, fuzzy msgid "Command mode" -msgstr "命令" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:64 -#, fuzzy msgid "Insert mode" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:65 msgid "Visual mode" @@ -30409,18 +30035,16 @@ msgid "Combiners (And, Or, Not)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:70 -#, fuzzy msgid "Command Substitutions" -msgstr "命令" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:71 msgid "Conditionals (If, Else, Switch)" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:72 -#, fuzzy msgid "Exit Status" -msgstr "负的任务退出代码(exit status)" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:73 msgid "Exports (Shell Variables)" @@ -30447,18 +30071,16 @@ msgid "Ready for more?" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:81 -#, fuzzy msgid "Pipes and Redirections" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:82 msgid "Prompt" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:83 -#, fuzzy msgid "Running Commands" -msgstr "在当前进程下执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:84 msgid "Separating Commands (Semicolon)" @@ -30477,14 +30099,12 @@ msgid "Tab Completions" msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:88 -#, fuzzy msgid "Universal Variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:89 -#, fuzzy msgid "Variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/help.fish:90 msgid "Why fish?" @@ -30770,9 +30390,8 @@ msgid "downloads database backup" msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:73 -#, fuzzy msgid "get information about a specific backup" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/heroku.fish:74 msgid "restore a backup (default latest) to a database" @@ -30861,9 +30480,8 @@ msgid "repository root directory or name of overlay bundle file" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:2 -#, fuzzy msgid "change working directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:3 msgid "do not prompt, automatically pick the first choice for all prompts" @@ -30902,9 +30520,8 @@ msgid "always print a traceback on exception" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:12 -#, fuzzy msgid "time how long the command takes" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:13 msgid "print command execution profile" @@ -31365,9 +30982,8 @@ msgid "mark a branch as closed, hiding it from the branch list" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:108 -#, fuzzy msgid "amend the parent of the working directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:109 #: /tmp/fish/implicit/share/completions/hg.fish:423 @@ -31592,14 +31208,12 @@ msgid "directory strip option for patch" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:205 -#, fuzzy msgid "don't commit, just update the working directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:206 -#, fuzzy msgid "apply patch without touching the working directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:207 msgid "apply patch to the nodes from which it was generated" @@ -31694,9 +31308,8 @@ msgid "include revisions where files were removed" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:250 -#, fuzzy msgid "revisions committed by user" -msgstr "用户执行的历史命令" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:251 msgid "show changesets within the given named branch" @@ -31799,9 +31412,8 @@ msgid "print first line of patch header" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:321 -#, fuzzy msgid "do not update the new working directories" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:323 msgid "location of source patch repository" @@ -32002,9 +31614,8 @@ msgid "print patches not in series" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:422 -#, fuzzy msgid "amend the parent of the working dir" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:436 msgid "record delete for missing files" @@ -32057,9 +31668,8 @@ msgid "name of access log file to write to" msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:466 -#, fuzzy msgid "run server in background" -msgstr "将任务置于后台" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:467 msgid "used internally by daemon mode" @@ -32095,9 +31705,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:475 #: /tmp/fish/implicit/share/completions/hg.fish:476 -#, fuzzy msgid "for remote clients" -msgstr "列出或移除函数" +msgstr "" #: /tmp/fish/implicit/share/completions/hg.fish:477 msgid "web templates to use" @@ -32317,9 +31926,8 @@ msgid "Include content with publishdate in the future" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:12 -#, fuzzy msgid "Cache directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:13 msgid "Canonicalize all relative URLs using baseurl" @@ -32330,14 +31938,12 @@ msgid "Remove files from destination not found in static directories" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:15 -#, fuzzy msgid "Content directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:16 -#, fuzzy msgid "Destination directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:17 msgid "Do not build 404 page" @@ -32372,14 +31978,12 @@ msgid "Print missing translations" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:25 -#, fuzzy msgid "Ignore the cache directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:26 -#, fuzzy msgid "Layout directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:27 msgid "Do not sync permission mode of files" @@ -32406,9 +32010,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:58 #: /tmp/fish/implicit/share/completions/hugo.fish:92 #: /tmp/fish/implicit/share/completions/hugo.fish:103 -#, fuzzy msgid "Source directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:33 #: /tmp/fish/implicit/share/completions/hugo.fish:46 @@ -32417,9 +32020,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:34 #: /tmp/fish/implicit/share/completions/hugo.fish:47 -#, fuzzy msgid "Display metrics about template executions" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:35 #: /tmp/fish/implicit/share/completions/hugo.fish:48 @@ -32431,9 +32033,8 @@ msgid "Theme to use" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:37 -#, fuzzy msgid "Themes directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:38 msgid "Use /filename.html instead of /filename/" @@ -32480,14 +32081,12 @@ msgid "Help for ulimit" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:53 -#, fuzzy msgid "Print the site configuration" -msgstr "列出当前运行的任务" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:54 -#, fuzzy msgid "Help for config" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:55 msgid "Convert the content to different formats" @@ -32526,9 +32125,8 @@ msgid "Help for toYAML" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:66 -#, fuzzy msgid "Print Hugo version and environment info" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:67 msgid "Help for env" @@ -32583,23 +32181,20 @@ msgid "Generate Markdown documentation for the Hugo CLI" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:80 -#, fuzzy msgid "Doc directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:81 msgid "Help for doc" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:82 -#, fuzzy msgid "Generate man pages for the Hugo CLI" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:83 -#, fuzzy msgid "Man pages directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:84 msgid "Help for man" @@ -32618,9 +32213,8 @@ msgid "Import from Jekyll" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:88 -#, fuzzy msgid "Allow import into non-empty target directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:89 msgid "Help for jekyll" @@ -32635,18 +32229,16 @@ msgid "Help for list" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:93 -#, fuzzy msgid "List all drafts" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:94 msgid "Help for drafts" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:95 -#, fuzzy msgid "List all expired posts" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:96 msgid "Help for expired" @@ -32661,9 +32253,8 @@ msgid "Help for future" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:99 -#, fuzzy msgid "Create new content" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:100 msgid "Editor to use" @@ -32678,14 +32269,12 @@ msgid "Content type to create" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:104 -#, fuzzy msgid "Create a new site" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:105 -#, fuzzy msgid "Create site inside non-empty directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:106 msgid "Config and front matter format" @@ -32696,9 +32285,8 @@ msgid "Help for site" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:108 -#, fuzzy msgid "Create a new theme" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:109 msgid "Help for theme" @@ -32753,9 +32341,8 @@ msgid "Port on which the server will listen" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:122 -#, fuzzy msgid "Render to destination directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:123 msgid "Reset the content draft status" @@ -32766,14 +32353,12 @@ msgid "Help for undraft" msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:125 -#, fuzzy msgid "Print the version number of Hugo" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/hugo.fish:126 -#, fuzzy msgid "Help for version" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/i3-msg.fish:1 msgid "Only send ipc message and suppress output" @@ -32898,32 +32483,28 @@ msgid "Print out the address" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:5 -#, fuzzy msgid "Print netmask" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:6 -#, fuzzy msgid "Print network address" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:7 msgid "Print broadcast" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:8 -#, fuzzy msgid "Print mtu" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:9 msgid "Print out the hardware address" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:10 -#, fuzzy msgid "Print flags" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:11 msgid "Print all statistics on input" @@ -32942,9 +32523,8 @@ msgid "Print # of in errors" msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:15 -#, fuzzy msgid "Print # of in drops" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/ifdata.fish:16 msgid "Print # of in fifo overruns" @@ -33153,9 +32733,8 @@ msgid "Use specified network namespace" msgstr "" #: /tmp/fish/implicit/share/completions/ip.fish:17 -#, fuzzy msgid "Execute command for all objects" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:1 msgid "Create a set identified with SETNAME" @@ -33175,18 +32754,16 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:5 #: /tmp/fish/implicit/share/completions/ipset.fish:6 -#, fuzzy msgid "Destroy the specified set or all sets" -msgstr "在指定列表中搜索一个特定的字符串" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:7 msgid "a" msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:9 -#, fuzzy msgid "Output format to the list command" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/ipset.fish:10 msgid "Suppress any output" @@ -33278,9 +32855,8 @@ msgid "Source specification" msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:19 -#, fuzzy msgid "Destination specification" -msgstr "非法的选项组合" +msgstr "" #: /tmp/fish/implicit/share/completions/iptables.fish:21 msgid "Interface via which a packet was received" @@ -33377,9 +32953,8 @@ msgid "Alias for --color" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:15 -#, fuzzy msgid "The path to a jest config file" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:16 msgid "" @@ -33410,9 +32985,8 @@ msgid "Print debugging info about your jest config" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:22 -#, fuzzy msgid "The test environment used for all tests" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:23 msgid "Use this flag to show full diffs instead of a patch" @@ -33455,9 +33029,8 @@ msgid "Maps code coverage reports against original source code" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:33 -#, fuzzy msgid "Specifies the maximum number of workers" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:34 msgid "Directory names to be searched recursively up from the requiring module" @@ -33490,9 +33063,8 @@ msgid "Activates notifications for test results" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:41 -#, fuzzy msgid "Run tests based on the changed files" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:42 msgid "A file where to write test results" @@ -33531,9 +33103,8 @@ msgid "Paths to directories that Jest should use to search for files in" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:51 -#, fuzzy msgid "Run all tests serially in the current process" -msgstr "在当前进程下执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:52 msgid "The paths to modules to configure the testing environment" @@ -33544,9 +33115,8 @@ msgid "The path to a module to configure the testing framework" msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:54 -#, fuzzy msgid "Print your jest config and then exits" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:55 msgid "Prevent tests from printing messages through the console" @@ -33626,9 +33196,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:73 #: /tmp/fish/implicit/share/completions/snap.fish:15 #: /tmp/fish/implicit/share/completions/vagrant.fish:3 -#, fuzzy msgid "Print the version and exit" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/jest.fish:74 msgid "Watch files for changes and rerun tests related to changed files" @@ -33651,14 +33220,12 @@ msgid "Enable debugger" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:2 -#, fuzzy msgid "Output usage information" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:3 -#, fuzzy msgid "Output version number" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:4 msgid "Create a new JHipster application" @@ -33705,9 +33272,8 @@ msgid "Create entities from the JDL file passed in argument" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:14 -#, fuzzy msgid "Display information about your current project and system" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:15 msgid "Deploy the current application to Kubernetes" @@ -33732,18 +33298,16 @@ msgid "Create a new JHipster server-side application" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:20 -#, fuzzy msgid "Create a new Spring service bean" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:21 msgid "Upgrade the JHipster version and the generated application" msgstr "" #: /tmp/fish/implicit/share/completions/jhipster.fish:22 -#, fuzzy msgid "Print command completion script" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/jobs.fish:2 msgid "Show the process id of each process in the job" @@ -33770,9 +33334,8 @@ msgid "OR" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:4 -#, fuzzy msgid "Prints a short help text and exits" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:5 msgid "Prints a short version string and exits" @@ -33787,9 +33350,8 @@ msgid "Show live tail of entries" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:9 -#, fuzzy msgid "Controls the number of journal lines" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:10 msgid "Show all lines, even in follow mode" @@ -33836,9 +33398,8 @@ msgid "Print all possible data values" msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:21 -#, fuzzy msgid "Specify journal directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/journalctl.fish:22 msgid "Generate a new 128 bit ID" @@ -33937,9 +33498,8 @@ msgid "Prepend given directory to search modules" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:19 -#, fuzzy msgid "Set exit status" -msgstr "负的任务退出代码(exit status)" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:20 msgid "Set variable" @@ -33950,14 +33510,12 @@ msgid "Set JSON-encoded variable" msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:22 -#, fuzzy msgid "Read JSON in file and bind to given variable" -msgstr "将输入的一行读入到变量中" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:23 -#, fuzzy msgid "Read JSON in file and bind to given variable [see man]" -msgstr "将输入的一行读入到变量中" +msgstr "" #: /tmp/fish/implicit/share/completions/jq.fish:24 msgid "Run tests in given file" @@ -34004,9 +33562,8 @@ msgid "Show help information and exit" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:1 -#, fuzzy msgid "List all devices" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:2 msgid "List available (paired and reachable) devices" @@ -34047,65 +33604,56 @@ msgid "Share a file to a said device" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:11 -#, fuzzy msgid "Display the notifications on a said device" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:12 msgid "Lock the specified device" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:13 -#, fuzzy msgid "Sends an SMS. Requires destination" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:14 msgid "Phone number to send the message" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:15 -#, fuzzy msgid "Device ID" -msgstr "定义一个新函数" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:16 -#, fuzzy msgid "Device Name" -msgstr "定义一个新函数" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:17 -#, fuzzy msgid "Get encryption info about said device" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:18 msgid "Lists remote commands and their ids" msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:19 -#, fuzzy msgid "Executes a remote command by id" -msgstr "有条件地执行一个命令区块" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:20 msgid "Displays this help." msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:21 -#, fuzzy msgid "Displays version information." -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:22 -#, fuzzy msgid "Show author information." -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:23 -#, fuzzy msgid "Show license information." -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/kdeconnect-cli.fish:24 msgid "The base file name of the desktop entry for this application." @@ -34187,9 +33735,8 @@ msgid "Describe available commands or one specific command" msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:4 -#, fuzzy msgid "Lists one or more instances" -msgstr "列出或移除函数" +msgstr "" #: /tmp/fish/implicit/share/completions/kitchen.fish:5 msgid "List the name of each instance only, one per line" @@ -34645,9 +34192,8 @@ msgid "Display status column" msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:19 -#, fuzzy msgid "Specify key bindings file" -msgstr "处理 fish 键 绑定" +msgstr "" #: /tmp/fish/implicit/share/completions/less.fish:21 msgid "Prompt with percentage" @@ -34764,9 +34310,8 @@ msgid "Characters to scroll on left/right arrows" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:3 -#, fuzzy msgid "Get value (default)" -msgstr "(默认)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:4 msgid "Set value" @@ -34793,9 +34338,8 @@ msgid "Save brightness" msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:10 -#, fuzzy msgid "Brightness (default)" -msgstr "(默认)" +msgstr "" #: /tmp/fish/implicit/share/completions/light.fish:11 msgid "Maximum brightness" @@ -34894,9 +34438,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:4 #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:37 #: /tmp/fish/implicit/share/completions/timedatectl.fish:7 -#, fuzzy msgid "Print a short help text and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/localectl.fish:5 #: /tmp/fish/implicit/share/completions/systemd-nspawn.fish:38 @@ -34938,9 +34481,8 @@ msgid "Ignore case distinctions" msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:10 -#, fuzzy msgid "Limit the number of matches" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/locate.fish:11 msgid "Use ASCII NUL as a separator" @@ -35284,9 +34826,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:6 -#, fuzzy msgid "Shows the current default destination" -msgstr "停止当前求值的函数" +msgstr "" #: /tmp/fish/implicit/share/completions/lpstat.fish:7 msgid "Shows a long listing of printers, classes, or jobs" @@ -35345,9 +34886,8 @@ msgid "output info about filesystems" msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:7 -#, fuzzy msgid "usage information (this)" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/lsblk.fish:8 msgid "use ascii characters only" @@ -35494,9 +35034,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:22 #: /tmp/fish/implicit/share/completions/ls.fish:77 -#, fuzzy msgid "Print inode number of files" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:23 #: /tmp/fish/implicit/share/completions/ls.fish:78 @@ -35534,9 +35073,8 @@ msgid "Display only security context and file name" msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:33 -#, fuzzy msgid "Print author" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:34 #: /tmp/fish/implicit/share/completions/xz.fish:19 @@ -35553,9 +35091,8 @@ msgid "Use colors" msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:37 -#, fuzzy msgid "Generate dired output" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:38 msgid "List format" @@ -35575,9 +35112,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:44 #: /tmp/fish/implicit/share/completions/ls.fish:67 -#, fuzzy msgid "Print raw entry names" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/ls.fish:45 msgid "Long format without groups" @@ -36001,9 +35537,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:3 #: /tmp/fish/implicit/share/completions/systemctl.fish:39 #: /tmp/fish/implicit/share/completions/systemd-analyze.fish:3 -#, fuzzy msgid "Print a short help and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:4 #: /tmp/fish/implicit/share/completions/pactl.fish:9 @@ -36034,9 +35569,8 @@ msgid "Also show machines starting with a '.'" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:11 -#, fuzzy msgid "Show information about machine" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:12 msgid "Do not ellipsize process tree entries" @@ -36107,9 +35641,8 @@ msgid "Bind-mount a directory to a machine" msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:29 -#, fuzzy msgid "Create destination directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/machinectl.fish:30 msgid "Apply read-only mount" @@ -36369,9 +35902,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:3 #: /tmp/fish/implicit/share/completions/tar.fish:15 #: /tmp/fish/implicit/share/functions/cd.fish:1 -#, fuzzy msgid "Change directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:5 msgid "Environment before makefile" @@ -36394,18 +35926,16 @@ msgid "Start when load drops" msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:11 -#, fuzzy msgid "Do not execute commands" -msgstr "有条件地执行一个命令区块" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:12 msgid "Ignore specified file" msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:13 -#, fuzzy msgid "Print database" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:14 msgid "Question mode" @@ -36424,9 +35954,8 @@ msgid "Touch files, don't run commands" msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:20 -#, fuzzy msgid "Print working directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/make.fish:21 msgid "Pretend file is modified" @@ -36497,9 +36026,8 @@ msgid "Disable color in output messages" msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:17 -#, fuzzy msgid "Only download and extract files" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/makepkg.fish:18 msgid "Use alternative " @@ -36598,9 +36126,8 @@ msgid "Library section" msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:4 -#, fuzzy msgid "Device section" -msgstr "定义一个新函数" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:5 msgid "File format section" @@ -36687,9 +36214,8 @@ msgid "Set system" msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:28 -#, fuzzy msgid "Preprocessors" -msgstr "进程" +msgstr "" #: /tmp/fish/implicit/share/completions/man.fish:29 msgid "Format for printing" @@ -36757,9 +36283,8 @@ msgid "Save the ftpfs dialog with the server in FILE" msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:15 -#, fuzzy msgid "Print the last working directory to FILE" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/mc.fish:16 msgid "Set alternative mode drawing of frameworks" @@ -36830,9 +36355,8 @@ msgid "Build a legacy array without superblocks" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:3 -#, fuzzy msgid "Create a new array" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:4 msgid "Select monitor mode" @@ -36861,24 +36385,20 @@ msgid "Be more verbose" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:13 -#, fuzzy msgid "Force operation" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:14 -#, fuzzy msgid "Specify config file or directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:15 -#, fuzzy msgid "Scan for missing information" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:16 -#, fuzzy msgid "Set metadata style to use" -msgstr "负的任务退出代码(exit status)" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:17 msgid "Provide home host identity" @@ -36893,14 +36413,12 @@ msgid "Give cluster name" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:20 -#, fuzzy msgid "Specify the number of active devices" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:21 -#, fuzzy msgid "Specify the number of spare devices" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:22 msgid "Specify the space to use from each drive" @@ -36915,18 +36433,16 @@ msgid "Specify the chunk size" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:25 -#, fuzzy msgid "Specify rounding factor" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:26 msgid "Specify RAID level" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:27 -#, fuzzy msgid "Specify data layout" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:28 msgid "Specify file for write-intent bitmap" @@ -36989,9 +36505,8 @@ msgid "Specify max nodes in the cluster" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:43 -#, fuzzy msgid "Specify journal device for RAID-4/5/6 array" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:44 msgid "UUID of array to assemble" @@ -37014,9 +36529,8 @@ msgid "Update superblock properties" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:49 -#, fuzzy msgid "Freeze --grow command" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:50 msgid "Test mode" @@ -37063,41 +36577,36 @@ msgid "Print details on array" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:61 -#, fuzzy msgid "Print details on platform capabilities" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:62 msgid "Format data output as key=value pairs" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:63 -#, fuzzy msgid "Print content of device metadata" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:64 msgid "Fix examination for buggy SPARC 2.2 kernel RAID" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:65 -#, fuzzy msgid "Print report about bitmap" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:66 msgid "List recorded bad blocks" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:67 -#, fuzzy msgid "Dump metadata to directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:68 -#, fuzzy msgid "Restore metadata from directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:69 msgid "Deactivate array" @@ -37116,9 +36625,8 @@ msgid "Update subarray" msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:73 -#, fuzzy msgid "Wait for pending operations" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/mdadm.fish:74 msgid "Mark array as clean ASAP" @@ -37250,9 +36758,8 @@ msgid "Evaluate indexing information for path" msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:9 -#, fuzzy msgid "Evaluate permissions information for path" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/mddiagnose.fish:10 msgid "Write the diagnostic to the specified path" @@ -37404,9 +36911,8 @@ msgid "When logging hits line file:N, emit a stack trace (default :0)" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:3 -#, fuzzy msgid "Write log files in this directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:4 msgid "Log to standard error instead of files" @@ -37496,18 +37002,16 @@ msgid "Display the kubernetes dashboard URL instead of opening it" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:31 -#, fuzzy msgid "Add machine IP to NO_PROXY environment variable" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:32 msgid "Force environment to be configured for a specified shell" msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:33 -#, fuzzy msgid "Unset variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/minikube.fish:35 msgid "List the URLs for the services in local cluster" @@ -38069,9 +37573,8 @@ msgid "Extract timecodes of a track as timecode v2 file" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:9 -#, fuzzy msgid "Extract cue information as text file" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:10 msgid "Parse the whole file instead of relying on the index" @@ -38092,9 +37595,8 @@ msgid "Force the translations for 'code' to be used" msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:14 -#, fuzzy msgid "Charset for strings on the command line" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/mkvextract.fish:15 msgid "Outputs messages in specified charset" @@ -38325,9 +37827,8 @@ msgid "Print program version and exit" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:2 -#, fuzzy msgid "Print usage and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:3 msgid "Turn on logging to a file" @@ -38461,9 +37962,8 @@ msgid "Turn off a control" msgstr "" #: /tmp/fish/implicit/share/completions/mocp.fish:35 -#, fuzzy msgid "Toggle a control" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/modinfo.fish:1 msgid "Print only 'author'" @@ -39081,9 +38581,8 @@ msgid "Backup suffix" msgstr "" #: /tmp/fish/implicit/share/completions/mv.fish:7 -#, fuzzy msgid "Target directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/mv.fish:8 msgid "Do not overwrite newer files" @@ -39529,9 +39028,8 @@ msgid "" msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:92 -#, fuzzy msgid "Generate a changelog report." -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/mvn.fish:93 msgid "Generate a file activity report." @@ -43242,90 +42740,6 @@ msgstr "" msgid "Exclude files that match any pattern in file" msgstr "" -#: /tmp/fish/implicit/share/completions/netcat.fish:1 -msgid "Remote hostname" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:2 -msgid "Same as -e, but use /bin/sh" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:3 -msgid "Program to execute after connection" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:4 -msgid "Allow broadcasts" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:5 -msgid "Source-routing hop points" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:6 -msgid "Source-routing pointer" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:8 -msgid "Delay interval for lines sent, ports scaned" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:9 -msgid "Set keepalive option" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:10 -msgid "Listen mode, acts as a server" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:11 -msgid "Numeric-only IP addresses, no DNS" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:12 -msgid "Hex dump of traffic" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:13 -msgid "Local port number" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:14 -msgid "Randomize local and remote ports" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:15 -msgid "Quit after EOF on stdin and delay of secs" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:16 -msgid "Local source address" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:17 -msgid "Answer Telnet negotiation" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:18 -msgid "UDP Mode" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:19 -msgid "Verbose, use twice to be more verbose" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:20 -msgid "Timeout for connects and final net reads" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:21 -msgid "Set Type of Service" -msgstr "" - -#: /tmp/fish/implicit/share/completions/netcat.fish:22 -msgid "No I/O - used for scanning" -msgstr "" - #: /tmp/fish/implicit/share/completions/netctl-auto.fish:3 msgid "List all available profiles for automatic selection" msgstr "" @@ -43432,9 +42846,8 @@ msgid "Add specified amount to niceness value" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:1 -#, fuzzy msgid "change to specified directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:2 msgid "specify build file [default=build.ninja]" @@ -43469,9 +42882,8 @@ msgid "adjust warnings, specify flags" msgstr "" #: /tmp/fish/implicit/share/completions/ninja.fish:11 -#, fuzzy msgid "print ninja version" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/nl.fish:1 msgid "use STYLE for numbering body lines" @@ -43676,9 +43088,8 @@ msgid "Throw errors on deprecations" msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:8 -#, fuzzy msgid "Print v8 command line options" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/node.fish:9 msgid "Set max v8 stack size (bytes)" @@ -44689,9 +44100,8 @@ msgid "Check for outdated packages" msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:52 -#, fuzzy msgid "Create a tarball from a package" -msgstr "创建代码区块" +msgstr "" #: /tmp/fish/implicit/share/completions/npm.fish:53 msgid "Display NPM prefix" @@ -44802,9 +44212,8 @@ msgid "Display content of section headers" msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:7 -#, fuzzy msgid "Display the contents of all headers" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/objdump.fish:8 msgid "Display assembler contents of executable sections" @@ -45099,9 +44508,8 @@ msgid "Do not dump metadata about files" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:34 -#, fuzzy msgid "Generate man page" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:35 msgid "Which generation to restore" @@ -45344,9 +44752,8 @@ msgid "Do not check directories" msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:96 -#, fuzzy msgid "Check directories" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/obnam.fish:97 msgid "Do not check files" @@ -45485,14 +44892,12 @@ msgid "Produce no output to stderr" msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:2 -#, fuzzy msgid "Print this help text" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:3 -#, fuzzy msgid "Print the version number" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/oggenc.fish:4 msgid "Set bits/sample for raw input. Default is 16" @@ -45802,9 +45207,8 @@ msgid "Search into the package list." msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:52 -#, fuzzy msgid "Display information about specific packages." -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/opam.fish:53 msgid "Manage multiple installation of compilers." @@ -46033,9 +45437,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:29 #: /tmp/fish/implicit/share/completions/pacman.fish:20 #: /tmp/fish/implicit/share/completions/yaourt.fish:26 -#, fuzzy msgid "Hook file directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/pacaur.fish:32 msgid "Apply only for AUR targets" @@ -46484,9 +45887,8 @@ msgid "Only search the AUR" msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:5 -#, fuzzy msgid "Set the output directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/pbget.fish:6 msgid "Display this message" @@ -46664,9 +46066,8 @@ msgid "Execute command" msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:19 -#, fuzzy msgid "Execute command, enable optional features" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/perl.fish:20 msgid "Disable sitecustomize.pl" @@ -46757,9 +46158,8 @@ msgid "Flush filter params specified by mod" msgstr "" #: /tmp/fish/implicit/share/completions/pfctl.fish:3 -#, fuzzy msgid "Table command" -msgstr "状态\t命令" +msgstr "" #: /tmp/fish/implicit/share/completions/pgrep.fish:1 msgid "Output delimiter" @@ -46983,9 +46383,8 @@ msgid "Automated package installation" msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:5 -#, fuzzy msgid "Update packages" -msgstr "创建代码区块" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg_add.fish:6 msgid "Fuzzy match" @@ -47222,9 +46621,8 @@ msgid "Convert package from pkg_add format" msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:22 -#, fuzzy msgid "Create a package" -msgstr "创建代码区块" +msgstr "" #: /tmp/fish/implicit/share/completions/pkg.fish:23 #: /tmp/fish/implicit/share/completions/pkg.fish:31 @@ -47475,9 +46873,8 @@ msgid "Remove package and sources" msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:14 -#, fuzzy msgid "Keep working dir" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/pkgmk.fish:15 msgid "Use another config" @@ -47515,9 +46912,8 @@ msgid "Displays help information" msgstr "" #: /tmp/fish/implicit/share/completions/poff.fish:7 -#, fuzzy msgid "Prints the version and exits" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/portmaster.fish:1 msgid "run 'make config' for all ports (overrides -G)." @@ -47809,9 +47205,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:15 #: /tmp/fish/implicit/share/completions/prt-get.fish:76 -#, fuzzy msgid "Search for a pattern in the footprints in the ports tree" -msgstr "在指定列表中搜索一个特定的字符串" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:16 #: /tmp/fish/implicit/share/completions/prt-get.fish:77 @@ -47849,9 +47244,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:23 #: /tmp/fish/implicit/share/completions/prt-get.fish:83 -#, fuzzy msgid "Print formatted list of ports" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:25 #: /tmp/fish/implicit/share/completions/prt-get.fish:85 @@ -47869,9 +47263,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:28 #: /tmp/fish/implicit/share/completions/prt-get.fish:87 -#, fuzzy msgid "Print the listing of the directory of a port" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:29 #: /tmp/fish/implicit/share/completions/prt-get.fish:88 @@ -47910,9 +47303,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:42 #: /tmp/fish/implicit/share/completions/prt-get.fish:101 -#, fuzzy msgid "Keep work directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/prt-get.fish:43 #: /tmp/fish/implicit/share/completions/prt-get.fish:102 @@ -48020,9 +47412,8 @@ msgid "Deselect all processes that do not fulfill conditions" msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:7 -#, fuzzy msgid "Select by command" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/ps.fish:8 msgid "Select by group" @@ -48140,9 +47531,8 @@ msgid "run only single command (SQL or internal) and exit" msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:3 -#, fuzzy msgid "execute commands from file, then exit" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/psql.fish:4 msgid "list available databases, then exit" @@ -48321,14 +47711,12 @@ msgid "Wait given time (in secs) between updates" msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:19 -#, fuzzy msgid "Set terminal width" -msgstr "设置终端颜色" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:20 -#, fuzzy msgid "Set terminal height" -msgstr "设置终端颜色" +msgstr "" #: /tmp/fish/implicit/share/completions/pv.fish:21 msgid "Prefix output with given name" @@ -48468,9 +47856,8 @@ msgid "Set coma-seperated options" msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:7 -#, fuzzy msgid "Set one option" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/pygmentize.fish:8 msgid "Set filter" @@ -48509,9 +47896,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:2 #: /tmp/fish/implicit/share/completions/python3.fish:2 #: /tmp/fish/implicit/share/completions/python.fish:2 -#, fuzzy msgid "Execute argument as command" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:3 #: /tmp/fish/implicit/share/completions/python3.fish:3 @@ -48522,9 +47908,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:4 #: /tmp/fish/implicit/share/completions/python3.fish:4 #: /tmp/fish/implicit/share/completions/python.fish:4 -#, fuzzy msgid "Ignore environment variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/python2.fish:6 #: /tmp/fish/implicit/share/completions/python3.fish:6 @@ -48608,9 +47993,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:18 #: /tmp/fish/implicit/share/completions/python.fish:22 -#, fuzzy msgid "Set implementation-specific option" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/python3.fish:19 #: /tmp/fish/implicit/share/completions/python.fish:23 @@ -48772,9 +48156,8 @@ msgid "Activate clean mode" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:3 -#, fuzzy msgid "Change configuration directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:4 msgid "Create copies of the default configuration" @@ -48789,9 +48172,8 @@ msgid "Pick multiple files with ranger" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:7 -#, fuzzy msgid "Pick directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:8 msgid "Open ranger with given file selected" @@ -48810,9 +48192,8 @@ msgid "Print statistics of CPU usage on exit" msgstr "" #: /tmp/fish/implicit/share/completions/ranger.fish:12 -#, fuzzy msgid "Execute command after configuration file read" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:1 msgid "List all rbenv commands" @@ -48847,9 +48228,8 @@ msgid "Set or show the shell-specific Ruby version" msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:9 -#, fuzzy msgid "Show the current Ruby version" -msgstr "停止当前求值的函数" +msgstr "" #: /tmp/fish/implicit/share/completions/rbenv.fish:10 msgid "List all Ruby versions known by rbenv" @@ -48863,22 +48243,6 @@ msgstr "" msgid "Show the full path for the given Ruby command" msgstr "" -#: /tmp/fish/implicit/share/completions/rc.d.fish:1 -msgid "Filter started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:2 -msgid "Filter stopped daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:3 -msgid "Filter auto started daemons" -msgstr "" - -#: /tmp/fish/implicit/share/completions/rc.d.fish:4 -msgid "Filter manually started daemons" -msgstr "" - #: /tmp/fish/implicit/share/completions/rc-service.fish:1 msgid "Tests if the service exists or not" msgstr "" @@ -48904,9 +48268,8 @@ msgid "Run quietly (Does not affect errors)" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:2 -#, fuzzy msgid "Set prompt command" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:3 #: /tmp/fish/implicit/share/completions/set.fish:4 @@ -48957,9 +48320,8 @@ msgid "Store the results as an array" msgstr "" #: /tmp/fish/implicit/share/completions/read.fish:13 -#, fuzzy msgid "Set right-hand prompt command" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/readlink.fish:1 msgid "Canonicalize, follow symlinks, last can be missing" @@ -49054,9 +48416,8 @@ msgid "Remove each component of path" msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:1 -#, fuzzy msgid "Prints the help text." -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/rmmod.fish:2 msgid "Send errors to syslog instead of standard error." @@ -49101,9 +48462,8 @@ msgid "Run with memory usage monitoring" msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:5 -#, fuzzy msgid "List of rpm configuration files" -msgstr "列出或移除函数" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:6 msgid "Pipe output through specified command" @@ -49321,9 +48681,8 @@ msgid "List packages on which this package depends" msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:53 -#, fuzzy msgid "List the package specific scriptlets" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/rpm.fish:54 msgid "" @@ -49928,9 +49287,8 @@ msgid "Remove bucket" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:3 -#, fuzzy msgid "List objects or buckets" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:4 msgid "List all object in all buckets" @@ -49965,9 +49323,8 @@ msgid "Disk usage by buckets" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:12 -#, fuzzy msgid "Get various information about Buckets or Files" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:13 msgid "Copy object" @@ -50086,9 +49443,8 @@ msgid "Run interactive (re)configuration tool" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:44 -#, fuzzy msgid "Dump current configuration" -msgstr "列出当前运行的任务" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:45 msgid "AWS Access Key" @@ -50107,9 +49463,8 @@ msgid "Dry run, test only" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:49 -#, fuzzy msgid "Use HTTPS (default)" -msgstr "(默认)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:50 msgid "Don't use HTTPS" @@ -50140,18 +49495,16 @@ msgid "Resume multipart upload by UploadId" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:57 -#, fuzzy msgid "Skip existing files at destination" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:58 msgid "Upload/download/delete recursively" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:59 -#, fuzzy msgid "Check MD5 sums (default)" -msgstr "(默认)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:60 msgid "Skip MD5 sum check" @@ -50322,9 +49675,8 @@ msgid "Encrypt with specified AWS KMS-managed key" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:102 -#, fuzzy msgid "Use specified encoding" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:103 msgid "Add encoding to CSV extension list" @@ -50371,9 +49723,8 @@ msgid "Apply expiry to objects matching prefix" msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:114 -#, fuzzy msgid "Show progress (default on TTY)" -msgstr "(默认)" +msgstr "" #: /tmp/fish/implicit/share/completions/s3cmd.fish:115 msgid "Don't show progress meter (default if non-TTY)" @@ -50671,14 +50022,12 @@ msgid "Connect to a server with an interactive sbt prompt" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:3 -#, fuzzy msgid "Print options help message" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:4 -#, fuzzy msgid "Print more details" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:5 msgid "Set log level to debug" @@ -50701,27 +50050,24 @@ msgid "Use global caches, but not global ~/.sbt directory" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:10 -#, fuzzy msgid "Disable interactive mode" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:11 msgid "Specify path to global settings/plugins" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:12 -#, fuzzy msgid "Specify path to shared boot directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:13 msgid "Specify path to local Ivy repository" msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:14 -#, fuzzy msgid "Set memory options" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/sbt.fish:15 msgid "Turn on JVM debugging, open at the given port" @@ -51204,9 +50550,8 @@ msgid "Preselect window" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:30 -#, fuzzy msgid "Set shell" -msgstr "退出这个 shell" +msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:31 msgid "Session name" @@ -51229,9 +50574,8 @@ msgid "Multi attach" msgstr "" #: /tmp/fish/implicit/share/completions/screen.fish:37 -#, fuzzy msgid "Send command" -msgstr "状态\t命令" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:2 msgid "Display version information and exit" @@ -51258,9 +50602,8 @@ msgid "Image quality [1-100]" msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:8 -#, fuzzy msgid "Grab shot from multiple heads" -msgstr "多次执行一组指令" +msgstr "" #: /tmp/fish/implicit/share/completions/scrot.fish:9 msgid "Select a window or rectangle with the mouse" @@ -51473,9 +50816,8 @@ msgid "Verify a signed checksum list" msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:3 -#, fuzzy msgid "Sign specified message" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/signify.fish:4 msgid "Verify a signed message and sig" @@ -51503,18 +50845,16 @@ msgid "List installed snaps" msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:8 -#, fuzzy msgid "List of interfaces" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:9 msgid "List change IDs" msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:10 -#, fuzzy msgid "List aliases" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:11 msgid "Check that no assertion type is used yet" @@ -51525,9 +50865,8 @@ msgid "Check if certain assertion type is used" msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:13 -#, fuzzy msgid "List assertion filters" -msgstr "列出或移除函数" +msgstr "" #: /tmp/fish/implicit/share/completions/snap.fish:14 msgid "Show this help message" @@ -51546,9 +50885,8 @@ msgid "Consider only blanks and alphanumerics" msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:4 -#, fuzzy msgid "Compare general numeric value" -msgstr "应有一个参数" +msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:5 msgid "Consider only printable" @@ -51603,9 +50941,8 @@ msgid "Field separator" msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:19 -#, fuzzy msgid "Set temporary directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/sort.fish:20 msgid "Output only first of equal lines" @@ -51628,9 +50965,8 @@ msgid "Interface to transmit from" msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:6 -#, fuzzy msgid "Go to background" -msgstr "将任务置于后台" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:7 msgid "Allow remote host to connect to local forwarded ports" @@ -51657,9 +50993,8 @@ msgid "Prevent reading from stdin" msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:13 -#, fuzzy msgid "Do not execute remote command" -msgstr "有条件地执行一个命令区块" +msgstr "" #: /tmp/fish/implicit/share/completions/ssh.fish:16 msgid "Subsystem" @@ -51975,14 +51310,12 @@ msgid "Subcommands specific to package signatures (experimental)" msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:2 -#, fuzzy msgid "Test if this is a login shell" -msgstr "这是登录shell" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:3 -#, fuzzy msgid "Test if this is an interactive shell" -msgstr "这是登录shell" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:4 msgid "Test if a command substitution is currently evaluated" @@ -52009,14 +51342,12 @@ msgid "Test if all new jobs are put under job control" msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:10 -#, fuzzy msgid "Print the filename of the currently running script" -msgstr "列出当前运行的任务" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:11 -#, fuzzy msgid "Print the line number of the currently running script" -msgstr "列出当前运行的任务" +msgstr "" #: /tmp/fish/implicit/share/completions/status.fish:12 msgid "" @@ -52108,14 +51439,12 @@ msgid "Remove newline" msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:1 -#, fuzzy msgid "Load the given project" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:2 -#, fuzzy msgid "Run the given command" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/subl.fish:3 msgid "Open a new window" @@ -52164,23 +51493,20 @@ msgid "Read password from stdin" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:8 -#, fuzzy msgid "Run command in the background" -msgstr "在当前进程下执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:9 msgid "Edit" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:10 -#, fuzzy msgid "Run command as group" -msgstr "在当前进程下执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:12 -#, fuzzy msgid "Run a login shell" -msgstr "这是登录shell" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:13 msgid "Reset or ignore the credential timestamp" @@ -52205,27 +51531,24 @@ msgid "Run the given command in a shell" msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:18 -#, fuzzy msgid "Run command as user" -msgstr "在当前进程下执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/sudo.fish:19 msgid "Validate the credentials, extending timeout" msgstr "" #: /tmp/fish/implicit/share/completions/su.fish:1 -#, fuzzy msgid "Make login shell" -msgstr "这是登录shell" +msgstr "" #: /tmp/fish/implicit/share/completions/su.fish:2 msgid "Pass command to shell" msgstr "" #: /tmp/fish/implicit/share/completions/su.fish:3 -#, fuzzy msgid "Pass -f to the shell" -msgstr "退出这个 shell" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:1 msgid "Make a completion for a subcommand" @@ -52361,9 +51684,8 @@ msgid "Restore pristine working copy file (undo most local edits)." msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:33 -#, fuzzy msgid "Print the status of working copy files and directories." -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:34 msgid "Update the working copy to a different URL." @@ -52394,9 +51716,8 @@ msgid "Do not cache authentication tokens" msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:41 -#, fuzzy msgid "Do no interactive prompting" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/svn.fish:42 msgid "" @@ -53129,9 +52450,8 @@ msgid "Reblock while reading" msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:16 -#, fuzzy msgid "Print directory names" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:17 msgid "Archive file" @@ -53231,9 +52551,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:44 #: /tmp/fish/implicit/share/completions/tar.fish:45 -#, fuzzy msgid "Do not sort file arguments" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:46 msgid "Preserve file ownership" @@ -53261,9 +52580,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:54 #: /tmp/fish/implicit/share/completions/tar.fish:55 -#, fuzzy msgid "Ask for confirmation" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/tar.fish:56 msgid "Verify archive" @@ -53316,9 +52634,8 @@ msgid "The role to set the termite window to report itself with" msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:5 -#, fuzzy msgid "Set the termite window's title" -msgstr "设置终端颜色" +msgstr "" #: /tmp/fish/implicit/share/completions/termite.fish:6 msgid "Tell termite to change to when launching" @@ -53410,9 +52727,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:9 #: /tmp/fish/implicit/share/completions/terraform.fish:26 #: /tmp/fish/implicit/share/completions/terraform.fish:84 -#, fuzzy msgid "Limit the number of concurrent operations" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/terraform.fish:10 #: /tmp/fish/implicit/share/completions/terraform.fish:27 @@ -53731,9 +53047,8 @@ msgid "File is character device" msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:17 -#, fuzzy msgid "File is directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/test.fish:18 msgid "File exists" @@ -53957,9 +53272,8 @@ msgid "Delete one or more snapshots" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:24 -#, fuzzy msgid "Print information about destinations" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:25 msgid "Turn off automatic backups" @@ -53995,9 +53309,8 @@ msgid "Print paths for all snapshots" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:33 -#, fuzzy msgid "Print the path to the current machine directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:34 msgid "Removes a backup destination" @@ -54012,9 +53325,8 @@ msgid "Restore an item" msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:39 -#, fuzzy msgid "Set a backup destination" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/completions/tmutil.fish:40 msgid "Add to the list of destinations" @@ -54085,9 +53397,8 @@ msgid "Like -2, but indicates that the terminal supports 88 colours" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:6 -#, fuzzy msgid "Behave as a login shell" -msgstr "这是登录shell" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:7 msgid "Set the quiet server option" @@ -54106,9 +53417,8 @@ msgid "Report the tmux version" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:11 -#, fuzzy msgid "Execute command using the default shell" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:13 msgid "Specify the name of the server socket to use" @@ -54201,9 +53511,8 @@ msgid "refresh client" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:35 -#, fuzzy msgid "update client status bar" -msgstr "负的任务退出代码(exit status)" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:36 msgid "rename session" @@ -54214,9 +53523,8 @@ msgid "save msgs in status bar in per-client msg log" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:38 -#, fuzzy msgid "execute commands from path" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:39 msgid "start tmux server if not running; do not create a session" @@ -54266,9 +53574,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:51 #: /tmp/fish/implicit/share/completions/tmux.fish:74 -#, fuzzy msgid "bind key to command" -msgstr "结束一个命令块" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:52 msgid "bind for command mode instead of normal mode" @@ -54288,9 +53595,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:56 #: /tmp/fish/implicit/share/completions/tmux.fish:58 -#, fuzzy msgid "list all key bindings" -msgstr "处理 fish 键 绑定" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:57 #: /tmp/fish/implicit/share/completions/tmux.fish:68 @@ -54319,9 +53625,8 @@ msgid "unbind the command bound to key" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:65 -#, fuzzy msgid "remove all key bindings" -msgstr "处理 fish 键 绑定" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:66 msgid "binding for command mode" @@ -54332,15 +53637,13 @@ msgid "command bound to key without a prefix (if any) removed" msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:69 -#, fuzzy msgid "Set or unset an environment variable" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:70 #: /tmp/fish/implicit/share/completions/tmux.fish:75 -#, fuzzy msgid "global environment" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/tmux.fish:71 msgid "remove from environment before starting a new process" @@ -54591,9 +53894,8 @@ msgid "List session information from the server" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:31 -#, fuzzy msgid "List statistical information from the server" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:32 msgid "List all torrents" @@ -54652,9 +53954,8 @@ msgid "Try to download the specified files last" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:47 -#, fuzzy msgid "Set the maximum number of peers" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:48 msgid "Remove the current torrents" @@ -54697,14 +53998,12 @@ msgid "Remove a tracker from a torrent" msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:58 -#, fuzzy msgid "Start the current torrents" -msgstr "停止当前求值的函数" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:59 -#, fuzzy msgid "Stop the current torrents" -msgstr "停止当前求值的函数" +msgstr "" #: /tmp/fish/implicit/share/completions/transmission-remote.fish:60 msgid "Start added torrents paused" @@ -54831,9 +54130,8 @@ msgid "Displays or changes the API endpoint" msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:11 -#, fuzzy msgid "Show or modify build environment variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/travis.fish:12 msgid "Helps you out when in dire need of information" @@ -55293,9 +54591,8 @@ msgid "Suppress function and builtin lookup" msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:4 -#, fuzzy msgid "Print command type" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/type.fish:5 msgid "Print path to command, or nothing if name is not a command" @@ -55360,19 +54657,16 @@ msgid "Set SMART data for a drive" msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:15 -#, fuzzy msgid "Object to get information about" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:16 -#, fuzzy msgid "Block device to get information about" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:17 -#, fuzzy msgid "Drive to get information about" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/udisksctl.fish:18 msgid "Filesystem type to use" @@ -55435,19 +54729,16 @@ msgid "Block device for ATA device" msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:1 -#, fuzzy msgid "Set or get soft limit" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:2 -#, fuzzy msgid "Set or get hard limit" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:3 -#, fuzzy msgid "Set or get all current limits" -msgstr "显示或设置 shell 资源使用限制" +msgstr "" #: /tmp/fish/implicit/share/completions/ulimit.fish:4 msgid "Maximum size of core files created" @@ -55587,18 +54878,16 @@ msgid "Print machine name" msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:14 -#, fuzzy msgid "Print processor" -msgstr "进程" +msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:15 msgid "Print hardware platform" msgstr "" #: /tmp/fish/implicit/share/completions/uname.fish:16 -#, fuzzy msgid "Print operating system" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/unexpand.fish:1 msgid "convert all blanks, instead of just initial blanks" @@ -55689,9 +54978,8 @@ msgid "Override cache method for a specified overlay" msgstr "" #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:2 -#, fuzzy msgid "Be verbose (default)" -msgstr "(默认)" +msgstr "" #: /tmp/fish/implicit/share/completions/update-eix-remote.fish:3 msgid "Call wget as the given USER" @@ -55767,9 +55055,8 @@ msgid "Change user's password file comment" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:3 -#, fuzzy msgid "Change user's login directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:4 msgid "Date on which the user account will be disabled" @@ -55804,9 +55091,8 @@ msgid "Allow non-unique UID" msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:13 -#, fuzzy msgid "Apply changes in this directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/usermod.fish:14 msgid "The name of the user's new login shell" @@ -56475,28 +55761,24 @@ msgid "be quiet and make the output more parseable" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:12 -#, fuzzy msgid "set the registry directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:13 -#, fuzzy msgid "set the addons source directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:14 -#, fuzzy msgid "set the addons target directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:15 msgid "increase verbosity" msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:16 -#, fuzzy msgid "set the system-wide target directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/vim-addons.fish:17 msgid "set target directory to the system-wide one" @@ -56511,9 +55793,8 @@ msgid "Source file after the first file has been read" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:3 -#, fuzzy msgid "Execute Ex command before loading any vimrc" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:4 msgid "Use device as terminal (Amiga only)" @@ -56718,9 +55999,8 @@ msgid "Set server name" msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:59 -#, fuzzy msgid "Print version information and exit" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/vim.fish:60 msgid "Run gvim in another window (GTK GUI only)" @@ -56852,9 +56132,8 @@ msgid "Remove packages listed in a file" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:33 -#, fuzzy msgid "Search for a file within installed packages" -msgstr "在指定列表中搜索一个特定的字符串" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:34 #: /tmp/fish/implicit/share/completions/wajig.fish:115 @@ -57083,9 +56362,8 @@ msgid "Convert a RedHat .rpm file to a Debian .deb file" msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:94 -#, fuzzy msgid "Search for packages containing listed words" -msgstr "在指定列表中搜索一个特定的字符串" +msgstr "" #: /tmp/fish/implicit/share/completions/wajig.fish:95 msgid "Find local Debian archives suitable for sources.list" @@ -57227,14 +56505,12 @@ msgid "Pass command to exec instead of \"sh -c\"" msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:1 -#, fuzzy msgid "Print byte counts" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:2 -#, fuzzy msgid "Print character counts" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:3 msgid "Print newline counts" @@ -57245,9 +56521,8 @@ msgid "Print length of longest line" msgstr "" #: /tmp/fish/implicit/share/completions/wc.fish:5 -#, fuzzy msgid "Print word counts" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/wesnoth.fish:1 msgid "Number sets BitsPerPixel value" @@ -57392,9 +56667,8 @@ msgid "Go to background immediately after startup" msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:4 -#, fuzzy msgid "Execute command as if part of .wgetrc" -msgstr "如果前一条命令失败执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:5 msgid "Log all messages to logfile" @@ -57562,9 +56836,8 @@ msgid "Load cookies from file" msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:51 -#, fuzzy msgid "Save cookies to file" -msgstr "对文件内容求值" +msgstr "" #: /tmp/fish/implicit/share/completions/wget.fish:52 msgid "Save session cookies" @@ -57856,9 +57129,8 @@ msgid "Print all login names and number of users logged on" msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:11 -#, fuzzy msgid "Print current runlevel" -msgstr "列出当前运行的任务" +msgstr "" #: /tmp/fish/implicit/share/completions/who.fish:12 msgid "Print name, line, and time" @@ -58068,9 +57340,8 @@ msgid "set/list network variables" msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:28 -#, fuzzy msgid "get network variables" -msgstr "处理环境变量" +msgstr "" #: /tmp/fish/implicit/share/completions/wpa_cli.fish:29 msgid "save the current configuration" @@ -58147,9 +57418,8 @@ msgid "Use at most max-lines nonblank input lines per command line" msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:9 -#, fuzzy msgid "Use at most max-args arguments per command line" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/xargs.fish:10 msgid "" @@ -58417,9 +57687,8 @@ msgid "Show the main window" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:1 -#, fuzzy msgid "Set the initial window geometry" -msgstr "设置终端颜色" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:2 msgid "Set the window title" @@ -58446,9 +57715,8 @@ msgid "Set the color for background outside the page area" msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:8 -#, fuzzy msgid "Set the initial zoom factor" -msgstr "设置终端颜色" +msgstr "" #: /tmp/fish/implicit/share/completions/xpdf.fish:9 msgid "Start in continuous view mode" @@ -58745,9 +58013,8 @@ msgid "Don't define a primary output" msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:43 -#, fuzzy msgid "Print current screen configuration" -msgstr "列出当前运行的任务" +msgstr "" #: /tmp/fish/implicit/share/completions/xrandr.fish:44 msgid "" @@ -58902,9 +58169,8 @@ msgid "Do not detach from the controlling terminal" msgstr "" #: /tmp/fish/implicit/share/completions/xsel.fish:17 -#, fuzzy msgid "Print informative messages" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:1 msgid "Never highlight the text cursor" @@ -59187,9 +58453,8 @@ msgid "Force scrollbar to the left side" msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:71 -#, fuzzy msgid "The shell in xterm's window will be login shell" -msgstr "这不是登录shell" +msgstr "" #: /tmp/fish/implicit/share/completions/xterm.fish:72 msgid "Ring bell if the user types near the end of line" @@ -59424,9 +58689,8 @@ msgid "Test the integrity of compressed files" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:4 -#, fuzzy msgid "Print information about compressed files" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:5 msgid "Don't delete the input files" @@ -59533,9 +58797,8 @@ msgid "Suppress warnings/notices" msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:33 -#, fuzzy msgid "Don't set the exit status to 2" -msgstr "负的任务退出代码(exit status)" +msgstr "" #: /tmp/fish/implicit/share/completions/xz.fish:34 msgid "Print messages in a machine-parsable format" @@ -59830,18 +59093,16 @@ msgid "Set error level" msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:16 -#, fuzzy msgid "Be tolerant of errors in commandline" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:17 msgid "Set maximum delay between commands" msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:18 -#, fuzzy msgid "Run commands from cache" -msgstr "在当前进程下执行命令" +msgstr "" #: /tmp/fish/implicit/share/completions/yum.fish:20 msgid "Specify installroot" @@ -59906,32 +59167,28 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:2 #: /tmp/fish/implicit/share/completions/zpool.fish:2 -#, fuzzy msgid "Display a help message" -msgstr "打印单词计数" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:3 -#, fuzzy msgid "Create a volume or filesystem" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:4 msgid "Destroy a dataset" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:5 -#, fuzzy msgid "Create a snapshot" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:6 msgid "Roll back a filesystem to a previous snapshot" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:7 -#, fuzzy msgid "Create a clone of a snapshot" -msgstr "创建代码区块" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:8 msgid "" @@ -60040,9 +59297,8 @@ msgid "Volume size" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:35 -#, fuzzy msgid "Create a sparse volume" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:36 msgid "Blocksize" @@ -60057,14 +59313,12 @@ msgid "Recursively destroy all dependents" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:39 -#, fuzzy msgid "Force unmounting" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:41 -#, fuzzy msgid "Print machine-parsable verbose information" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:43 msgid "Defer snapshot deletion" @@ -60160,9 +59414,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:80 #: /tmp/fish/implicit/share/completions/zfs.fish:95 #: /tmp/fish/implicit/share/completions/zpool.fish:66 -#, fuzzy msgid "Print parsable (exact) values for numbers" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:69 #: /tmp/fish/implicit/share/completions/zfs.fish:97 @@ -60193,9 +59446,8 @@ msgid "Fields to display" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:79 -#, fuzzy msgid "Property source to display" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:82 msgid "Property to get" @@ -60218,9 +59470,8 @@ msgid "Upgrade all eligible filesystems" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:90 -#, fuzzy msgid "Upgrade to the specified version" -msgstr "在指定列表中搜索一个特定的字符串" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:91 msgid "Filesystem to upgrade" @@ -60256,9 +59507,8 @@ msgid "Temporary mount point property" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:104 -#, fuzzy msgid "Report progress" -msgstr "进程" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:105 msgid "Mount all available ZFS filesystems" @@ -60316,9 +59566,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:119 #: /tmp/fish/implicit/share/completions/zfs.fish:128 -#, fuzzy msgid "Generate a deduplicated stream" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:120 #: /tmp/fish/implicit/share/completions/zfs.fish:129 @@ -60332,14 +59581,12 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:122 #: /tmp/fish/implicit/share/completions/zfs.fish:131 -#, fuzzy msgid "Print verbose information about the stream in a machine-parsable format" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:123 -#, fuzzy msgid "Generate compressed stream" -msgstr "生成随机数" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:125 #: /tmp/fish/implicit/share/completions/zfs.fish:133 @@ -60348,19 +59595,17 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:126 #: /tmp/fish/implicit/share/completions/zfs.fish:134 -#, fuzzy msgid "Print verbose information about the stream" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:135 msgid "Dataset to send" msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:136 -#, fuzzy msgid "" "Print verbose information about the stream and the time spent processing it" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/zfs.fish:137 msgid "Dry run: do not actually receive the stream" @@ -60635,9 +59880,8 @@ msgid "Clear devices errors in pool" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:6 -#, fuzzy msgid "Create a new storage pool" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:7 msgid "Destroy a storage pool" @@ -60660,9 +59904,8 @@ msgid "Get one or several pool properties" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:12 -#, fuzzy msgid "Display pool command history" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:13 msgid "List importable pools, or import some" @@ -60681,9 +59924,8 @@ msgid "List pools with health status and space usage" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:17 -#, fuzzy msgid "Take the specified devices offline" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:18 msgid "Bring the specified devices back online" @@ -60788,9 +60030,8 @@ msgid "Virtual device to operate on" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:40 -#, fuzzy msgid "Initiate recovery mode" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:41 #: /tmp/fish/implicit/share/completions/zpool.fish:85 @@ -60851,9 +60092,8 @@ msgid "Physical device to detach" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:58 -#, fuzzy msgid "Print verbose event information" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:60 msgid "Output appended data as the log grows" @@ -60888,23 +60128,20 @@ msgid "Also display internal events" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:72 -#, fuzzy msgid "Display log records using long format" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:73 msgid "Pool to get command history of" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:74 -#, fuzzy msgid "Read configuration from specified cache file" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:75 -#, fuzzy msgid "Search for devices or files in specified directory" -msgstr "改变工作目录(当前目录)" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:76 msgid "List or import destroyed pools only (requires -f for importation)" @@ -60920,14 +60157,12 @@ msgid "Properties of the imported pool" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:79 -#, fuzzy msgid "Force import" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:80 -#, fuzzy msgid "Recovery mode" -msgstr "只在不活跃的进程上" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:81 msgid "Search for and import all pools found" @@ -60969,9 +60204,8 @@ msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:95 #: /tmp/fish/implicit/share/completions/zpool.fish:104 -#, fuzzy msgid "Print verbose statistics" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:96 msgid "Pool to retrieve I/O stats from" @@ -60982,9 +60216,8 @@ msgid "Treat exported or foreign devices as inactive" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:98 -#, fuzzy msgid "Device to clear ZFS label information from" -msgstr "返回 fish 的状态信息" +msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:106 msgid "Pool to list properties of" @@ -61089,9 +60322,8 @@ msgid "Display upgradeable ZFS versions" msgstr "" #: /tmp/fish/implicit/share/completions/zpool.fish:146 -#, fuzzy msgid "Upgrade to the specified legacy version" -msgstr "在指定列表中搜索一个特定的字符串" +msgstr "" #: /tmp/fish/implicit/share/completions/zypper.fish:2 msgid "Repo" @@ -62074,18 +61306,13 @@ msgstr "" msgid "Manage abbreviations using new fish 3.0 scheme." msgstr "" -#: /tmp/fish/implicit/share/functions/abbr_old.fish:1 -msgid "Manage abbreviations using old fish 2.x scheme." -msgstr "" - #: /tmp/fish/implicit/share/functions/alias.fish:1 msgid "Creates a function wrapping a command" msgstr "" #: /tmp/fish/implicit/share/functions/cdh.fish:1 -#, fuzzy msgid "Menu based cd command" -msgstr "状态\t命令" +msgstr "" #: /tmp/fish/implicit/share/functions/contains_seq.fish:1 msgid "Return true if array contains a sequence" @@ -62096,9 +61323,8 @@ msgid "Print the current directory history (the prev and next lists)" msgstr "" #: /tmp/fish/implicit/share/functions/dirs.fish:1 -#, fuzzy msgid "Print directory stack" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/functions/down-or-search.fish:1 msgid "" @@ -62110,14 +61336,9 @@ msgstr "" msgid "Edit the command buffer in an external editor" msgstr "" -#: /tmp/fish/implicit/share/functions/eval.fish:1 -msgid "Evaluate parameters as a command" -msgstr "" - #: /tmp/fish/implicit/share/functions/_.fish:1 -#, fuzzy msgid "Alias for the gettext command" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/functions/_.fish:2 msgid "Fallback alias for the gettext command" @@ -62131,14 +61352,6 @@ msgstr "" msgid "Return 0 if the current token has an open single-quote" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_abook_formats.fish:1 -msgid "Complete abook formats" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_complete_ant_targets.fish:1 -msgid "Print list of targets from build.xml and imported files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_atool_archive_contents.fish:1 msgid "List archive contents" msgstr "" @@ -62260,9 +61473,8 @@ msgid "Whether to inform the user that hash failures occur" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_cd.fish:1 -#, fuzzy msgid "Completions for the cd command" -msgstr "设置或取得命令行" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_command.fish:1 msgid "Complete using all available commands" @@ -62357,9 +61569,8 @@ msgid "Apply command to all printers" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:7 -#, fuzzy msgid "Sets a job option" -msgstr "设置配置选项" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:8 msgid "Send an email on job completion" @@ -62398,9 +61609,8 @@ msgid "Scale image files to use up to number percent of the page" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:17 -#, fuzzy msgid "Set the number of characters per inch to use" -msgstr "参数的个数的计数" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_complete_lpr.fish:18 msgid "Set the number of lines per inch to use" @@ -62490,10 +61700,6 @@ msgstr "" msgid "Complete by list of running processes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_setxkbmap.fish:1 -msgid "Complete setxkb options" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_ssh.fish:1 msgid "common completions for ssh commands" msgstr "" @@ -62534,26 +61740,10 @@ msgstr "" msgid "Complete subcommand" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_subcommand_root.fish:1 -msgid "" -"Run the __fish_complete_subcommand function using a PATH containing /sbin " -"and /usr/sbin" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_suffix.fish:1 msgid "Complete using files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_svn_diff.fish:1 -#, fuzzy -msgid "Complete \"svn diff\" arguments" -msgstr "参数的个数的计数" - -#: /tmp/fish/implicit/share/functions/__fish_complete_tar.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_complete_unrar.fish:1 -msgid "Peek inside of archives and list all files" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_user_at_hosts.fish:1 msgid "Print list host-names with user@" msgstr "" @@ -62562,10 +61752,6 @@ msgstr "" msgid "Print a list of local users, with the real user name as a description" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_complete_wvdial_peers.fish:1 -msgid "Complete wvdial peers" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_complete_zfs_mountpoint_properties.fish:1 msgid "Completes with ZFS mountpoint properties" msgstr "" @@ -62637,7 +61823,6 @@ msgid "Checks if a specific option has been given in the current commandline" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_crux_packages.fish:1 -#: /tmp/fish/implicit/share/functions/__fish_prt_packages.fish:1 msgid "Obtain a list of installed packages" msgstr "" @@ -62665,57 +61850,47 @@ msgstr "" msgid "Command used to find descriptions for commands" msgstr "" -#: /tmp/fish/implicit/share/functions/fish_fallback_prompt.fish:1 -msgid "" -"A simple fallback prompt without too much color or special characters for " -"linux VTs" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:1 +msgid "Helper function for fish_git_prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_filter_ant_targets.fish:1 -msgid "Display targets within an ant build.xml file" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:1 -msgid "Helper function for __fish_git_prompt" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:2 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:2 msgid "Prompt function for Git" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:3 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:3 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has staged " +"fish_git_prompt helper, tells whether or not the current branch has staged " "files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:4 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:4 msgid "" -"__fish_git_prompt helper, tells whether or not the current branch has " +"fish_git_prompt helper, tells whether or not the current branch has " "tracked, modified files" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:5 -msgid "__fish_git_prompt helper, returns the current Git operation and branch" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:5 +msgid "fish_git_prompt helper, returns the current Git operation and branch" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:6 -msgid "__fish_git_prompt helper, checks char variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:6 +msgid "fish_git_prompt helper, checks char variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:7 -msgid "__fish_git_prompt helper, checks color variables" +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:7 +msgid "fish_git_prompt helper, checks color variables" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:8 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:8 msgid "Event handler, repaints prompt when functionality changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:9 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:9 msgid "Event handler, repaints prompt when any color changes" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_git_prompt.fish:10 +#: /tmp/fish/implicit/share/functions/fish_git_prompt.fish:10 msgid "Event handler, repaints prompt when any char changes" msgstr "" @@ -62778,9 +61953,8 @@ msgid "Move the last element of a directory history from src to dest" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_no_arguments.fish:1 -#, fuzzy msgid "Internal fish function" -msgstr "定义一个新函数" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_not_contain_opt.fish:1 msgid "Checks that a specific option is not in the current command line" @@ -62790,31 +61964,14 @@ msgstr "" msgid "Paginate the current command using the users default pager" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_ports_dirs.fish:1 -msgid "Obtain a list of ports local collections" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_abook_emails.fish:1 -msgid "Print email addresses (abook)" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_addresses.fish:1 msgid "Print a list of known network addresses" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_arch_daemons.fish:1 -#, fuzzy -msgid "Print arch daemons" -msgstr "打印单词计数" - #: /tmp/fish/implicit/share/functions/__fish_print_commands.fish:1 msgid "Print a list of documented fish commands" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_debian_services.fish:1 -msgid "Prints services installed" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_encodings.fish:1 msgid "Complete using available character encodings" msgstr "" @@ -62823,16 +61980,9 @@ msgstr "" msgid "Print a list of all known filesystem types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_function_prototypes.fish:1 -msgid "" -"Prints the names of all function prototypes found in the headers in the " -"current directory" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_groups.fish:1 -#, fuzzy msgid "Print a list of local groups" -msgstr "显示命令类型" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_help.fish:1 msgid "Print help message for the specified fish function or builtin" @@ -62851,12 +62001,7 @@ msgid "Print lpr options" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_lpr_printers.fish:1 -#, fuzzy msgid "Print lpr printers" -msgstr "打印单词计数" - -#: /tmp/fish/implicit/share/functions/__fish_print_lsblk_columns.fish:1 -msgid "Print available lsblk columns" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_print_mounted.fish:1 @@ -62883,73 +62028,27 @@ msgstr "" msgid "Print directories where desktop files are stored" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xdg_desktop_file_ids.fish:1 -msgid "Print all available xdg desktop file IDs" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_xdg_mimetypes.fish:1 msgid "Print XDG mime types" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_modes.fish:1 -#, fuzzy -msgid "Print xrandr modes" -msgstr "打印单词计数" - -#: /tmp/fish/implicit/share/functions/__fish_print_xrandr_outputs.fish:1 -#, fuzzy -msgid "Print xrandr outputs" -msgstr "打印单词计数" - #: /tmp/fish/implicit/share/functions/__fish_print_xwindows.fish:1 msgid "Print X windows" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_bookmarks.fish:1 -msgid "Lists ZFS bookmarks, if the feature is enabled" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_filesystems.fish:1 -msgid "Lists ZFS filesystems" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_print_zfs_snapshots.fish:1 msgid "Lists ZFS snapshots" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_print_zfs_volumes.fish:1 -msgid "Lists ZFS volumes" -msgstr "" - #: /tmp/fish/implicit/share/functions/fish_prompt.fish:1 msgid "Write out the prompt" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_prt_no_subcommand.fish:1 -msgid "Test if prt-get has yet to be given the command" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_ports.fish:1 -msgid "Obtain a list of ports" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_package.fish:1 -msgid "Test if prt-get should have packages as potential completion" -msgstr "" - -#: /tmp/fish/implicit/share/functions/__fish_prt_use_port.fish:1 -msgid "Test if prt-get should have ports as potential completion" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:1 #: /tmp/fish/implicit/share/functions/__fish_pwd.fish:2 msgid "Show current path" msgstr "" -#: /tmp/fish/implicit/share/functions/__fish_sgrep.fish:1 -msgid "Call grep without honoring GREP_OPTIONS settings" -msgstr "" - #: /tmp/fish/implicit/share/functions/__fish_shared_key_bindings.fish:1 msgid "Bindings shared between emacs and vi mode" msgstr "" @@ -62967,12 +62066,7 @@ msgid "Prompt function for svn" msgstr "" #: /tmp/fish/implicit/share/functions/_fish_systemctl.fish:1 -#, fuzzy msgid "Call systemctl with some options from the current commandline" -msgstr "设置或取得命令行" - -#: /tmp/fish/implicit/share/functions/__fish_test_arg.fish:1 -msgid "Test if the token under the cursor matches the specified wildcard" msgstr "" #: /tmp/fish/implicit/share/functions/__fish_toggle_comment_commandline.fish:1 @@ -62980,9 +62074,8 @@ msgid "Comment/uncomment the current command" msgstr "" #: /tmp/fish/implicit/share/functions/fish_update_completions.fish:1 -#, fuzzy msgid "Update man-page based completions" -msgstr "编辑命令相关的补全" +msgstr "" #: /tmp/fish/implicit/share/functions/__fish_use_subcommand.fish:1 msgid "Test if a non-switch argument has been given in the current commandline" @@ -63037,9 +62130,8 @@ msgstr "" #: /tmp/fish/implicit/share/functions/ls.fish:1 #: /tmp/fish/implicit/share/functions/ls.fish:2 #: /tmp/fish/implicit/share/functions/ls.fish:3 -#, fuzzy msgid "List contents of directory" -msgstr "显示工作目录" +msgstr "" #: /tmp/fish/implicit/share/functions/man.fish:1 msgid "Format and display the on-line manual pages" @@ -63133,7 +62225,6 @@ msgstr "" msgid "Edit variable value" msgstr "" -#, fuzzy #~ msgid "%ls: --array option requires a single variable name.\n" #~ msgstr "" #~ "%ls:Erase 需要一个变量名\n" @@ -63143,34 +62234,26 @@ msgstr "" #~ "%ls: Multiple variable names specified in single call (%ls and %.*ls)\n" #~ msgstr "%ls:在一个调用中指定了多个变量 (%ls and %.*ls)\n" -#, fuzzy #~ msgid "%ls: Values cannot be specfied with erase\n" #~ msgstr "%ls:没有指定键\n" -#, fuzzy #~ msgid "string: Expected subcommand\n" #~ msgstr "%ls:应有函数名\n" -#, fuzzy #~ msgid "string: Unknown subcommand '%ls'\n" #~ msgstr "%ls:未知的任务 “%ls”\n" -#, fuzzy #~ msgid "terminal_give_to_job(): Could not send job %d ('%ls') to foreground" #~ msgstr "将任务 %d,“%ls” 发送到前台" -#, fuzzy #~ msgid "%s: Expected function name\\n" #~ msgstr "%s:应有函数名\\n" -#, fuzzy #~ msgid "%ls: Invalid combination of options,\\n%ls\\n" #~ msgstr "%ls:非法的选项组合\\n%ls\\n" -#, fuzzy #~ msgid "Evaluate contents of file (deprecated, see \"source\")" #~ msgstr "对文件内容求值" -#, fuzzy #~ msgid "Edit a unit" #~ msgstr "触发一个事件️" diff --git a/share/completions/VBoxHeadless.fish b/share/completions/VBoxHeadless.fish index 4dbbce6cd..7f9011565 100644 --- a/share/completions/VBoxHeadless.fish +++ b/share/completions/VBoxHeadless.fish @@ -5,7 +5,7 @@ complete -c VBoxHeadless -l vrdeproperty -o vrdeproperty -s e -x -d "Set VRDE pr complete -c VBoxHeadless -l settingspw -x -d "Specify settings password" complete -c VBoxHeadless -l settingspwfile -f -d "Specify file containing setting password" complete -c VBoxHeadless -l start-paused -o start-paused -d "Start VM in paused state" -complete -c VBoxHeadless -l capture -o capture -s c -x -d "Record VM screen ouput to file" +complete -c VBoxHeadless -l capture -o capture -s c -x -d "Record VM screen output to file" complete -c VBoxHeadless -l width -s w -x -d "Frame width when recording" complete -c VBoxHeadless -l height -s h -x -d "Frame height when recording" complete -c VBoxHeadless -l bitrate -s r -x -d "Recording bit rate when recording" diff --git a/share/completions/abbr.fish b/share/completions/abbr.fish index 05e4feeb4..f9557a32f 100644 --- a/share/completions/abbr.fish +++ b/share/completions/abbr.fish @@ -1,7 +1,7 @@ complete -c abbr -f -s a -l add -d 'Add abbreviation' # Abbr keys can't contain spaces, so we can safely replace the first space with a tab # `abbr -s` won't work here because that already escapes -complete -c abbr -s e -l erase -d 'Erase abbreviation' -xa '(string replace " " \t -- $fish_user_abbreviations)' +complete -c abbr -s e -l erase -d 'Erase abbreviation' -xa '(abbr --list)' complete -c abbr -f -s s -l show -d 'Print all abbreviations' complete -c abbr -f -s l -l list -d 'Print all abbreviation names' complete -c abbr -f -s h -l help -d 'Help' diff --git a/share/completions/abook.fish b/share/completions/abook.fish index 97b144b02..7ba131ee1 100644 --- a/share/completions/abook.fish +++ b/share/completions/abook.fish @@ -1,16 +1,29 @@ +function __fish_complete_abook_formats --description 'Complete abook formats' + set -l pat + switch $argv[1] + case in + set pat '/output:/,$d; /input:\|^$/d' + case out + set pat '/input:/,/output:/d; /^$/d' + case '*' + return 1 + end + abook --formats | sed -e $pat -e 's/^\s\+//' +end + complete -c abook -s h -d 'Show usage' complete -c abook -s C -l config -d 'Use an alternative configuration file' -r -complete -c abook -l datafile -d 'Use an alternative addressbook file' -r -complete -c abook -l mutt-query -d 'Make a query for mutt' -x -complete -c abook -l add-email -d 'Read email message from stdin and add the sender' -complete -c abook -l add-email-quiet -d 'Same as --add-email. Without confirmation' -complete -c abook -l convert -d 'Convert address book files' +complete -c abook -l datafile -d 'Use an alternative addressbook file' -r +complete -c abook -l mutt-query -d 'Make a query for mutt' -x +complete -c abook -l add-email -d 'Read email message from stdin and add the sender' +complete -c abook -l add-email-quiet -d 'Same as --add-email. Without confirmation' +complete -c abook -l convert -d 'Convert address book files' set -l convert 'contains -- --convert (commandline -po)' -complete -c abook -l informat -d 'Input file format' -xa '(__fish_complete_abook_formats in)' -n $convert -complete -c abook -l outformat -d 'Output file format' -xa '(__fish_complete_abook_formats out)' -n $convert -complete -c abook -l infile -d 'Input file (default: stdin)' -r -n $convert -complete -c abook -l outfile -d 'Output file (default: stdout)' -r -n $convert +complete -c abook -l informat -d 'Input file format' -xa '(__fish_complete_abook_formats in)' -n $convert +complete -c abook -l outformat -d 'Output file format' -xa '(__fish_complete_abook_formats out)' -n $convert +complete -c abook -l infile -d 'Input file (default: stdin)' -r -n $convert +complete -c abook -l outfile -d 'Output file (default: stdout)' -r -n $convert -complete -c abook -l formats -d 'Print available formats' +complete -c abook -l formats -d 'Print available formats' diff --git a/share/completions/ack.fish b/share/completions/ack.fish index 60db3d4c8..e94fcf613 100644 --- a/share/completions/ack.fish +++ b/share/completions/ack.fish @@ -83,9 +83,9 @@ complete -c ack -l thpppt -d 'Bill the Cat' complete -c ack -l bar -d 'The warning admiral' # File types -if type ack > /dev/null - for type in (ack --dump 2>/dev/null | perl -lne 'print $1 if /^\s+--type-add=([^:]+)/' | uniq) - complete -c ack -l $type -d "Allow $type file type" - complete -c ack -l no$type -l no-$type -d "Don't allow $type file type" - end +if type ack >/dev/null + for type in (ack --dump 2>/dev/null | perl -lne 'print $1 if /^\s+--type-add=([^:]+)/' | uniq) + complete -c ack -l $type -d "Allow $type file type" + complete -c ack -l no$type -l no-$type -d "Don't allow $type file type" + end end diff --git a/share/completions/acpi.fish b/share/completions/acpi.fish index bf822be6c..99c7619d0 100644 --- a/share/completions/acpi.fish +++ b/share/completions/acpi.fish @@ -14,7 +14,7 @@ complete -c acpi -s A -l without-ac-adapter -d 'Suppress ac-adapter information' complete -c acpi -s V -l everything -d 'Show every device, overrides above options' complete -c acpi -s s -l show-empty -d 'Show non-operational devices' complete -c acpi -s S -l hide-empty -d 'Hide non-operational devices' -complete -c acpi -s c -l celcius -d 'Use celcius as the temperature unit' +complete -c acpi -s c -l celcius -d 'Use celsius as the temperature unit' complete -c acpi -s f -l fahrenheit -d 'Use fahrenheit as the temperature unit' complete -c acpi -s k -l kelvin -d 'Use kelvin as the temperature unit' complete -c acpi -s d -l directory -d ' path to ACPI info (/proc/acpi)' diff --git a/share/completions/adb.fish b/share/completions/adb.fish index 559a3e3bc..b055347ee 100644 --- a/share/completions/adb.fish +++ b/share/completions/adb.fish @@ -59,17 +59,17 @@ function __fish_adb_list_uninstallable_packages end function __fish_adb_list_files - set -l token (commandline -ct) + set -l token (commandline -ct) - # Have tab complete show initial / if nothing on current token - if test -z "$token" - set token "/" - end + # Have tab complete show initial / if nothing on current token + if test -z "$token" + set token "/" + end - # Return list of directories suffixed with '/' - __fish_adb_run_command find -H "$token*" -maxdepth 0 -type d 2>/dev/null | awk '{print $1"/"}' - # Return list of files - __fish_adb_run_command find -H "$token*" -maxdepth 0 -type f 2>/dev/null + # Return list of directories suffixed with '/' + __fish_adb_run_command find -H "$token*" -maxdepth 0 -type d 2>/dev/null | awk '{print $1"/"}' + # Return list of files + __fish_adb_run_command find -H "$token*" -maxdepth 0 -type f 2>/dev/null end diff --git a/share/completions/amixer.fish b/share/completions/amixer.fish index a901fe35d..724e3e87c 100644 --- a/share/completions/amixer.fish +++ b/share/completions/amixer.fish @@ -2,13 +2,13 @@ set -l cmds 'scontrols scontents controls contents sget sset cset cget set get' complete -c amixer -xa "$cmds" -n "not __fish_seen_subcommand_from $cmds" complete -c amixer -n '__fish_seen_subcommand_from sset sget get set' -xa "(amixer scontrols | cut --delimiter \' --fields 2)" -complete -c amixer -s h -l help -d 'this help' -complete -c amixer -s c -l card -r -d 'select the card' -complete -c amixer -s D -l device -r -d 'select the device, default \'default\'' -complete -c amixer -s d -l debug -d 'debug mode' -complete -c amixer -s n -l nocheck -d 'do not perform range checking' -complete -c amixer -s v -l version -d 'print version of this program' -complete -c amixer -s q -l quiet -d 'be quiet' -complete -c amixer -s i -l inactive -d 'show also inactive controls' -complete -c amixer -s a -l abstract -d 'select abstraction level' -xa 'none basic' -complete -c amixer -s s -l stdin -d 'Read and execute commands from stdin sequentially' +complete -c amixer -s h -l help -d 'this help' +complete -c amixer -s c -l card -r -d 'select the card' +complete -c amixer -s D -l device -r -d 'select the device, default \'default\'' +complete -c amixer -s d -l debug -d 'debug mode' +complete -c amixer -s n -l nocheck -d 'do not perform range checking' +complete -c amixer -s v -l version -d 'print version of this program' +complete -c amixer -s q -l quiet -d 'be quiet' +complete -c amixer -s i -l inactive -d 'show also inactive controls' +complete -c amixer -s a -l abstract -d 'select abstraction level' -xa 'none basic' +complete -c amixer -s s -l stdin -d 'Read and execute commands from stdin sequentially' diff --git a/share/completions/and.fish b/share/completions/and.fish index 9066e6101..50d2825b6 100644 --- a/share/completions/and.fish +++ b/share/completions/and.fish @@ -1,3 +1,3 @@ complete -c and -s h -l help -d 'Display help and exit' -complete -c and -xa '( __fish_complete_subcommand )' +complete -c and -xa '(__fish_complete_subcommand --allow-functions-and-builtins)' diff --git a/share/completions/animate.fish b/share/completions/animate.fish index 70c9323db..fadc47945 100644 --- a/share/completions/animate.fish +++ b/share/completions/animate.fish @@ -1,65 +1,65 @@ -complete -c animate -o alpha -d 'On, activate, off, deactivate, set, opaque, copy transparent, extract, background, or shape [option]' -xa '(animate -list alpha)' -complete -c animate -o authenticate -d 'Decipher image with this password [password]' -complete -c animate -o backdrop -d 'Display image centered on a backdrop' -complete -c animate -o channel -d 'Apply option to select image channels [type]' -xa '(animate -list channel)' -complete -c animate -o colormap -d 'Shared or Private [type]' -x -complete -c animate -o colorspace -d 'Alternate image colorspace [type]' -xa '(animate -list colorspace)' -complete -c animate -o decipher -d 'Convert cipher pixels to plain pixels [filename]' -r -complete -c animate -o define -d 'Define one or more image format options [format:option]' -complete -c animate -o delay -d 'Display the next image after pausing [value]' -complete -c animate -o density -d 'Horizontal and vertical density of the image [geometry]' -complete -c animate -o depth -d 'Image depth [value]' -complete -c animate -o display -d 'Display image to this X server [server]' -complete -c animate -o dispose -d 'Layer disposal method [method]' -xa '(animate -list dispose)' -complete -c animate -o dither -d 'Apply error diffusion to image [method]' -xa '(animate -list dither)' -complete -c animate -o filter -d 'Use this filter when resizing an image [type]' -xa '(animate -list filter)' -complete -c animate -o format -d 'Output formatted image characteristics ["string"]' -complete -c animate -o gamma -d 'Level of gamma correction [value]' -complete -c animate -o geometry -d 'Preferred size and location of the Image window [geometry]' -complete -c animate -o gravity -d 'Horizontal and vertical backdrop placement [type]' -xa '(animate -list gravity)' -complete -c animate -o identify -d 'Identify the format and characteristics of the image' -complete -c animate -o immutable -d 'Displayed image cannot be modified' -complete -c animate -o interlace -d 'Type of image interlacing scheme [type]' -xa '(animate -list interlace)' -complete -c animate -o interpolate -d 'Pixel color interpolation method [method]' -xa '(animate -list interpolate)' -complete -c animate -o limit -d 'Pixel cache resource limit [type value]' -x -complete -c animate -o loop -d 'Loop images then exit [iterations]' -complete -c animate -o map -d 'Display image using this Standard Colormap [type]' -x -complete -c animate -o monitor -d 'Monitor progress ' -complete -c animate -o pause -d 'Seconds to pause before reanimating' -complete -c animate -o page -d 'Size and location of an image canvas (setting) [geometry]' -complete -c animate -o quantize -d 'Reduce colors in this colorspace [colorspace]' -xa '(animate -list colorspace)' -complete -c animate -o quiet -d 'Suppress all warning messages' -complete -c animate -o regard-warnings -d 'Pay attention to warning messages' -complete -c animate -o remote -d 'Command execute a command in an remote display process' -complete -c animate -o respect-parentheses -d 'Settings remain in effect until parenthesis boundary' -complete -c animate -o sampling-factor -d 'Horizontal and vertical sampling factor [geometry]' -complete -c animate -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' -complete -c animate -o set -d 'Attribute set an image attribute [ value]' -complete -c animate -o size -d 'Width and height of image [geometry]' -complete -c animate -o transparent-color -d 'Transparent color [color]' -xa '(__fish_complete_convert_options color)' -complete -c animate -o treedepth -d 'Color tree depth [value]' -complete -c animate -o verbose -d 'Print detailed information about the image' -complete -c animate -o visual -d 'Display image using this visual type [type]' -x -complete -c animate -o virtual-pixel -d 'Virtual pixel access method [method]' -xa '(animate -list virtual-pixel)' -complete -c animate -o window -d 'Display image to background of this window [id]' -xa 'root (__fish_print_xwindows)' -complete -c animate -o colors -d 'Preferred number of colors in the image [value]' -complete -c animate -o crop -d 'Preferred size and location of the cropped image [geometry]' -complete -c animate -o extract -d 'Extract area from image [geometry]' -complete -c animate -o monochrome -d 'Transform image to black and white' -complete -c animate -o repage -d 'Size and location of an image canvas (operator) [geometry]' -complete -c animate -o resample -d 'Change the resolution of an image [geometry]' -complete -c animate -o resize -d 'Resize the image [geometry]' -complete -c animate -o rotate -d 'Apply Paeth rotation to the image [degrees]' -complete -c animate -o strip -d 'Strip image of all profiles and comments' -complete -c animate -o thumbnail -d 'Create a thumbnail of the image [geometry]' -complete -c animate -o trim -d 'Trim image edges' -complete -c animate -o coalesce -d 'Merge a sequence of images' -complete -c animate -o flatten -d 'Flatten a sequence of images' -complete -c animate -o debug -d 'Display copious debugging information [events]' -xa '(animate -list debug)' -complete -c animate -o help -d 'Print program options' -complete -c animate -o list -d 'Print a list of supported option arguments [type]' -xa '(animate -list list)' -complete -c animate -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' -complete -c animate -o version -d 'Print version information Press any button to map or unmap the Command widget' -complete -c animate -o matte -d 'Store matte channel if the image has one' -complete -c animate -o scenes -d 'Range image scene range' -complete -c animate -o support -d 'Resize support: > 1.0 is blurry, < 1.0 is sharp [factor]' +complete -c animate -o alpha -d 'On, activate, off, deactivate, set, opaque, copy transparent, extract, background, or shape [option]' -xa '(animate -list alpha)' +complete -c animate -o authenticate -d 'Decipher image with this password [password]' +complete -c animate -o backdrop -d 'Display image centered on a backdrop' +complete -c animate -o channel -d 'Apply option to select image channels [type]' -xa '(animate -list channel)' +complete -c animate -o colormap -d 'Shared or Private [type]' -x +complete -c animate -o colorspace -d 'Alternate image colorspace [type]' -xa '(animate -list colorspace)' +complete -c animate -o decipher -d 'Convert cipher pixels to plain pixels [filename]' -r +complete -c animate -o define -d 'Define one or more image format options [format:option]' +complete -c animate -o delay -d 'Display the next image after pausing [value]' +complete -c animate -o density -d 'Horizontal and vertical density of the image [geometry]' +complete -c animate -o depth -d 'Image depth [value]' +complete -c animate -o display -d 'Display image to this X server [server]' +complete -c animate -o dispose -d 'Layer disposal method [method]' -xa '(animate -list dispose)' +complete -c animate -o dither -d 'Apply error diffusion to image [method]' -xa '(animate -list dither)' +complete -c animate -o filter -d 'Use this filter when resizing an image [type]' -xa '(animate -list filter)' +complete -c animate -o format -d 'Output formatted image characteristics ["string"]' +complete -c animate -o gamma -d 'Level of gamma correction [value]' +complete -c animate -o geometry -d 'Preferred size and location of the Image window [geometry]' +complete -c animate -o gravity -d 'Horizontal and vertical backdrop placement [type]' -xa '(animate -list gravity)' +complete -c animate -o identify -d 'Identify the format and characteristics of the image' +complete -c animate -o immutable -d 'Displayed image cannot be modified' +complete -c animate -o interlace -d 'Type of image interlacing scheme [type]' -xa '(animate -list interlace)' +complete -c animate -o interpolate -d 'Pixel color interpolation method [method]' -xa '(animate -list interpolate)' +complete -c animate -o limit -d 'Pixel cache resource limit [type value]' -x +complete -c animate -o loop -d 'Loop images then exit [iterations]' +complete -c animate -o map -d 'Display image using this Standard Colormap [type]' -x +complete -c animate -o monitor -d 'Monitor progress ' +complete -c animate -o pause -d 'Seconds to pause before reanimating' +complete -c animate -o page -d 'Size and location of an image canvas (setting) [geometry]' +complete -c animate -o quantize -d 'Reduce colors in this colorspace [colorspace]' -xa '(animate -list colorspace)' +complete -c animate -o quiet -d 'Suppress all warning messages' +complete -c animate -o regard-warnings -d 'Pay attention to warning messages' +complete -c animate -o remote -d 'Command execute a command in an remote display process' +complete -c animate -o respect-parentheses -d 'Settings remain in effect until parenthesis boundary' +complete -c animate -o sampling-factor -d 'Horizontal and vertical sampling factor [geometry]' +complete -c animate -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' +complete -c animate -o set -d 'Attribute set an image attribute [ value]' +complete -c animate -o size -d 'Width and height of image [geometry]' +complete -c animate -o transparent-color -d 'Transparent color [color]' -xa '(__fish_complete_convert_options color)' +complete -c animate -o treedepth -d 'Color tree depth [value]' +complete -c animate -o verbose -d 'Print detailed information about the image' +complete -c animate -o visual -d 'Display image using this visual type [type]' -x +complete -c animate -o virtual-pixel -d 'Virtual pixel access method [method]' -xa '(animate -list virtual-pixel)' +complete -c animate -o window -d 'Display image to background of this window [id]' -xa 'root (__fish_print_xwindows)' +complete -c animate -o colors -d 'Preferred number of colors in the image [value]' +complete -c animate -o crop -d 'Preferred size and location of the cropped image [geometry]' +complete -c animate -o extract -d 'Extract area from image [geometry]' +complete -c animate -o monochrome -d 'Transform image to black and white' +complete -c animate -o repage -d 'Size and location of an image canvas (operator) [geometry]' +complete -c animate -o resample -d 'Change the resolution of an image [geometry]' +complete -c animate -o resize -d 'Resize the image [geometry]' +complete -c animate -o rotate -d 'Apply Paeth rotation to the image [degrees]' +complete -c animate -o strip -d 'Strip image of all profiles and comments' +complete -c animate -o thumbnail -d 'Create a thumbnail of the image [geometry]' +complete -c animate -o trim -d 'Trim image edges' +complete -c animate -o coalesce -d 'Merge a sequence of images' +complete -c animate -o flatten -d 'Flatten a sequence of images' +complete -c animate -o debug -d 'Display copious debugging information [events]' -xa '(animate -list debug)' +complete -c animate -o help -d 'Print program options' +complete -c animate -o list -d 'Print a list of supported option arguments [type]' -xa '(animate -list list)' +complete -c animate -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' +complete -c animate -o version -d 'Print version information Press any button to map or unmap the Command widget' +complete -c animate -o matte -d 'Store matte channel if the image has one' +complete -c animate -o scenes -d 'Range image scene range' +complete -c animate -o support -d 'Resize support: > 1.0 is blurry, < 1.0 is sharp [factor]' diff --git a/share/completions/ansible-vault.fish b/share/completions/ansible-vault.fish index 7437ef5b9..6a50495c2 100644 --- a/share/completions/ansible-vault.fish +++ b/share/completions/ansible-vault.fish @@ -1,7 +1,40 @@ -complete -c ansible-vault -l ask-vault-pass -f -d "Ask for vault password" -complete -c ansible-vault -s h -l help -f -d "Show this help message and exit" -complete -c ansible-vault -l new-vault-password-file -r -d "New vault password file for rekey" -complete -c ansible-vault -l output -r -d "Output file name for encrypt or decrypt; use - for stdout" -complete -c ansible-vault -l vault-password-file -r -d "Vault password file" -complete -c ansible-vault -s v -l verbose -d "Verbose mode (-vvv for more, -vvvv to enable connection debugging)" + +function __fish_ansible_vault_no_subcommand -d 'Test if ansible-vault has yet to be given the subcommand' + commandline -pc | not string match --regex '[^-]\b(?:create|decrypt|edit|encrypt|encrypt_string|rekey|view)\b' +end + +function __fish_ansible_vault_using_command + set -l cmd (string trim (__fish_ansible_vault_no_subcommand)) + test -z "$cmd" + and return 1 + contains -- "$cmd" $argv +end + + +# generic options complete -c ansible-vault -l version -d "Display version and exit" +complete -c ansible-vault -s h -l help -f -d "Show help message and exit" +complete -c ansible-vault -s v -l verbose -d "Verbose mode (-vvv for more, -vvvv to enable connection debugging)" +complete -c ansible-vault -l ask-vault-pass -f -d "Ask for vault password" +complete -c ansible-vault -l new-vault-id -r -d "the new vault identity to use for rekey" +complete -c ansible-vault -l new-vault-password-file -r -d "New vault password file for rekey" +complete -c ansible-vault -l vault-id -r -d "the vault identity to use" +complete -c ansible-vault -l vault-password-file -r -d "Vault password file" + +# subcommands +complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -a decrypt -d 'Decrypt encrypted file or stdin' +complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -a encrypt -d 'Encrypt a file or stdin' +complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -ra create -d 'Create encrypted file' +complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -ra edit -d 'Edit encrypted file' +complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -ra rekey -d 'Rekey encrypted file' +complete -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -ra view -d 'View contents of something encrypted' +complete -f -c ansible-vault -n '__fish_ansible_vault_no_subcommand' -a encrypt_string -d 'Encrypt string' + +# encrypt_string options +complete -c ansible-vault -n '__fish_ansible_vault_using_command encrypt encrypt_string' -r -l stdin-name -f -d 'Specify the variable name for stdin' +complete -c ansible-vault -n '__fish_ansible_vault_using_command encrypt encrypt_string' -r -s n -l name -f -d 'Specify the variable name' +complete -c ansible-vault -n '__fish_ansible_vault_using_command encrypt encrypt_string' -s p -l prompt -d 'Prompt for the string to encrypt' + +# shared options +complete -c ansible-vault -n '__fish_ansible_vault_using_command encrypt encrypt_string rekey edit create' -l encrypt-vault-id -r -d "the vault id used to encrypt (required if more than vault-id is provided)" +complete -c ansible-vault -n '__fish_ansible_vault_using_command encrypt encrypt_string decrypt' -l output -r -d "Output file name for encrypt or decrypt; use - for stdout" diff --git a/share/completions/ant.fish b/share/completions/ant.fish index 82b82a7a0..e31b6b04f 100644 --- a/share/completions/ant.fish +++ b/share/completions/ant.fish @@ -1,7 +1,63 @@ # Apache Ant (1.9.5) completion for Fish Shell. +function __fish_complete_ant_targets -d "Print list of targets from build.xml and imported files" + function __get_buildfile -d "Get a buildfile that will be used by ant" + set -l tokens $argv # tokens from 'commandline -co' + set -l prev $tokens[1] + set -l buildfile "build.xml" + for token in $argv[2..-1] + switch $prev + case -buildfile -file -f + set buildfile (eval echo $token) + end + set prev $token + end + # return last one + echo $buildfile + end + function __parse_ant_targets_from_projecthelp -d "Parse ant targets from projecthelp" + set -l buildfile $argv[1] # full path to buildfile + set -l targets (ant -p -debug -f $buildfile 2> /dev/null | string match -r '^\s[[:graph:]].*$') + for target in $targets + # Use [[:graph:]] and [[:print:]] to ignore ANSI escape code + set -l tokens (string match -r '^\s([[:graph:]]+)(?:\s+([[:print:]]+))?' "$target") + if [ (count $tokens) -ge 3 ] + echo $tokens[2]\t$tokens[3] + else if [ (count $tokens) -ge 2 ] + echo $tokens[2] + end + end + end + function __get_ant_targets_from_projecthelp -d "Get ant targets from projecthelp" + set -l buildfile $argv[1] # full path to buildfile + + if [ \( -z "$XDG_CACHE_HOME" \) -o \( ! -d "$XDG_CACHE_HOME" \) ] + set XDG_CACHE_HOME "$HOME/.cache" + end + + set -l cache_dir "$XDG_CACHE_HOME/fish/ant_completions" + mkdir -p $cache_dir + + set -l cache_file $cache_dir/(fish_md5 -s $buildfile) + if [ ! -s "$cache_file" ] + # generate cache file if empty + __parse_ant_targets_from_projecthelp $buildfile >$cache_file + end + + cat $cache_file + end + + set -l tokens $argv + set -l buildfile (realpath -eq $buildfile (__get_buildfile $tokens)) + if [ $status -ne 0 ] + return 1 # return nothing if buildfile does not exist + end + + __get_ant_targets_from_projecthelp $buildfile +end + # completion for ant targets -complete -x -c ant -a "(__fish_complete_ant_targets)" +complete -x -c ant -a "(__fish_complete_ant_targets (commandline -co))" # Script Options: complete -f -c ant -l help -l h -d 'print help message and ant help' diff --git a/share/completions/apm.fish b/share/completions/apm.fish index 15622b417..da226eead 100644 --- a/share/completions/apm.fish +++ b/share/completions/apm.fish @@ -178,7 +178,7 @@ atom.io registry" complete -x -c apm -n "__fish_apm_using_command login" -l token -d "Specify API token" # outdated & upgrade & update - set -l upgrade_commands "outdated upgrade update" + set -l upgrade_commands "outdated upgrade update" complete -f -c apm -n '__fish_apm_needs_command' -a $upgrade_commands -d "Upgrade out of date packages" complete -f -c apm -n "__fish_apm_using_command $upgrade_commands" -l json -d "Output outdated packages as JSON array" complete -x -c apm -n "__fish_apm_using_command $upgrade_commands" -l compatible -d "Only install packages/themes compatible with specified Atom version" diff --git a/share/completions/apropos.fish b/share/completions/apropos.fish index 309358255..8344a3e96 100644 --- a/share/completions/apropos.fish +++ b/share/completions/apropos.fish @@ -1,9 +1,9 @@ function __fish_complete_apropos - if test (commandline -ct) - set str (commandline -ct) - apropos $str 2>/dev/null |sed -e "s/^\(.*$str\([^ ]*\).*\)\$/$str\2"\t"\1/" - end + if test (commandline -ct) + set str (commandline -ct) + apropos $str 2>/dev/null | sed -e "s/^\(.*$str\([^ ]*\).*\)\$/$str\2"\t"\1/" + end end complete -xc apropos -a '(__fish_complete_apropos)' -d "whatis entry" diff --git a/share/completions/apt-cache.fish b/share/completions/apt-cache.fish index ce6df53cb..4070a343b 100644 --- a/share/completions/apt-cache.fish +++ b/share/completions/apt-cache.fish @@ -30,12 +30,12 @@ complete -r -c apt-cache -s c -l config-file -d "Specify config file" complete -x -c apt-cache -s o -l option -d "Specify options" function __fish_apt-cache_use_package -d 'Test if apt command should have packages as potential completion' - for i in (commandline -opc) - if contains -- $i contains show showpkg showsrc depends rdepends dotty policy - return 0 - end - end - return 1 + for i in (commandline -opc) + if contains -- $i contains show showpkg showsrc depends rdepends dotty policy + return 0 + end + end + return 1 end complete -c apt-cache -n '__fish_apt-cache_use_package' -a '(__fish_print_packages)' -d 'Package' diff --git a/share/completions/apt-extracttemplates.fish b/share/completions/apt-extracttemplates.fish index 9ddf27596..1d1d049ee 100644 --- a/share/completions/apt-extracttemplates.fish +++ b/share/completions/apt-extracttemplates.fish @@ -2,6 +2,6 @@ #apt-extracttemplates complete -c apt-extracttemplates -s h -l help -d "Display help and exit" complete -r -c apt-extracttemplates -s t -d "Set temp dir" -complete -r -c apt-extracttemplates -s c -d "Specifiy config file" +complete -r -c apt-extracttemplates -s c -d "Specify config file" complete -r -c apt-extracttemplates -s o -d "Specify options" diff --git a/share/completions/apt-file.fish b/share/completions/apt-file.fish index 2a22b8000..20129557c 100644 --- a/share/completions/apt-file.fish +++ b/share/completions/apt-file.fish @@ -11,7 +11,7 @@ complete -f -c apt-file -s i -l ignore-case -d "Do not expand pattern" 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 -r -c apt-file -s s -l sources-list -a '(set -l files /etc/apt/*; string replace /etc/apt/ "" -- $files)' -d "Set sources.list file" 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/share/completions/apt-get.fish b/share/completions/apt-get.fish index 3aebaab77..f691ce87f 100644 --- a/share/completions/apt-get.fish +++ b/share/completions/apt-get.fish @@ -1,21 +1,21 @@ #completion for apt-get function __fish_apt_no_subcommand -d 'Test if apt has yet to be given the subcommand' - for i in (commandline -opc) - if contains -- $i update upgrade dselect-upgrade dist-upgrade install remove purge source build-dep check clean autoclean changelog - return 1 - end - end - return 0 + for i in (commandline -opc) + if contains -- $i update upgrade dselect-upgrade dist-upgrade install remove purge source build-dep check clean autoclean changelog + return 1 + end + end + return 0 end function __fish_apt_use_package -d 'Test if apt command should have packages as potential completion' - for i in (commandline -opc) - if contains -- $i contains install remove purge build-dep changelog - return 0 - end - end - return 1 + for i in (commandline -opc) + if contains -- $i contains install remove purge build-dep changelog + return 0 + end + end + return 1 end complete -c apt-get -n '__fish_apt_use_package' -a '(__fish_print_packages)' -d 'Package' diff --git a/share/completions/apt-listbugs.fish b/share/completions/apt-listbugs.fish index 4e6341d47..87e8802c0 100644 --- a/share/completions/apt-listbugs.fish +++ b/share/completions/apt-listbugs.fish @@ -1,6 +1,6 @@ #apt-listbugs 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 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 -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" diff --git a/share/completions/apt-mark.fish b/share/completions/apt-mark.fish index e1caf2513..c118609b8 100644 --- a/share/completions/apt-mark.fish +++ b/share/completions/apt-mark.fish @@ -1,21 +1,21 @@ #completion for apt-mark function __fish_apt_no_subcommand -d 'Test if apt has yet to be given the subcommand' - for i in (commandline -opc) - if contains -- $i auto manual hold unhold showauto showmanual showhold - return 1 - end - end - return 0 + for i in (commandline -opc) + if contains -- $i auto manual hold unhold showauto showmanual showhold + return 1 + end + end + return 0 end function __fish_apt_use_package -d 'Test if apt command should have packages as potential completion' - for i in (commandline -opc) - if contains -- $i contains auto manual hold unhold - return 0 - end - end - return 1 + for i in (commandline -opc) + if contains -- $i contains auto manual hold unhold + return 0 + end + end + return 1 end complete -c apt-mark -n '__fish_apt_use_package' -a '(__fish_print_packages)' -d 'Package' diff --git a/share/completions/apt-show-versions.fish b/share/completions/apt-show-versions.fish index b3d4f8a60..61bb661f0 100644 --- a/share/completions/apt-show-versions.fish +++ b/share/completions/apt-show-versions.fish @@ -1,5 +1,5 @@ #apt-show-versions -complete -c apt-show-source -s h -l help -d 'Display help and exit' +complete -c apt-show-versions -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 packages' diff --git a/share/completions/apt.fish b/share/completions/apt.fish index 6bc06a84e..fd6a1ce2c 100644 --- a/share/completions/apt.fish +++ b/share/completions/apt.fish @@ -3,8 +3,9 @@ set -l all_subcmds update upgrade full-upgrade search list install show remove edit-sources purge changelog autoremove depends rdepends set -l pkg_subcmds install upgrade full-upgrade show search purge changelog policy depends rdepends set -l installed_pkg_subcmds remove +set -l handle_file_pkg_subcmds install -function __fish_apt_subcommand +function __fish_apt_subcommand --no-scope-shadowing set subcommand $argv[1] set -e argv[1] complete -f -c apt -n "not __fish_seen_subcommand_from $all_subcmds" -a $subcommand $argv @@ -16,62 +17,68 @@ function __fish_apt_option complete -f -c apt -n "__fish_seen_subcommand_from $subcommand" $argv end -complete -c apt -n "__fish_seen_subcommand_from $pkg_subcmds" -a '(__fish_print_packages | head -n 250)' +complete -c apt -f + +complete -k -c apt -n "__fish_seen_subcommand_from $pkg_subcmds" -a '(__fish_print_packages | head -n 250 | sort)' complete -c apt -n "__fish_seen_subcommand_from $installed_pkg_subcmds" -a '(__fish_print_packages --installed | string match -re -- "(?:\\b|_)"(commandline -ct | string escape --style=regex) | head -n 250)' -d 'Package' +complete -k -c apt -n "__fish_seen_subcommand_from $handle_file_pkg_subcmds" -a '(__fish_complete_suffix .deb)' # Support flags -complete -x -f -c apt -s h -l help -d 'Display help' -complete -x -f -c apt -s v -l version -d 'Display version and exit' +complete -f -c apt -s h -l help -d 'Display help' +complete -f -c apt -s v -l version -d 'Display version and exit' # General options -complete -f -c apt -s o -l option -d 'Set a configuration option' -complete -f -c apt -s c -l config-file -d 'Configuration file' -complete -f -c apt -s t -d 'Target release' +complete -x -c apt -s o -l option -d 'Set a configuration option' +complete -r -c apt -s c -l config-file -d 'Configuration file' +complete -x -c apt -s t -d 'Target release' # List -__fish_apt_subcommand list -d 'List packages' -__fish_apt_option list -l installed -d 'Installed packages' -__fish_apt_option list -l upgradable -d 'Upgradable packages' -__fish_apt_option list -l all-versions -d 'Show all versions of any package' +__fish_apt_subcommand list -d 'List packages' +__fish_apt_option list -l installed -d 'Installed packages' +__fish_apt_option list -l upgradable -d 'Upgradable packages' +__fish_apt_option list -l all-versions -d 'Show all versions of any package' # Search -__fish_apt_subcommand search -r -d 'Search for packages' +__fish_apt_subcommand search -r -d 'Search for packages' # Search -__fish_apt_subcommand show -r -d 'Show package information' +__fish_apt_subcommand show -r -d 'Show package information' # Install -__fish_apt_subcommand install -r -d 'Install packages' +__fish_apt_subcommand install -r -d 'Install packages' +__fish_apt_option install -l reinstall -d 'Reinstall package' # Remove -__fish_apt_subcommand remove -r -d 'Remove packages' +__fish_apt_subcommand remove -r -d 'Remove packages' # Edit sources -__fish_apt_subcommand edit-sources -d 'Edit sources list' +__fish_apt_subcommand edit-sources -d 'Edit sources list' # Update -__fish_apt_subcommand update -x -d 'Update package list' +__fish_apt_subcommand update -x -d 'Update package list' # Upgrade -__fish_apt_subcommand upgrade -r -d 'Upgrade packages' +__fish_apt_subcommand upgrade -r -d 'Upgrade packages' # Full Upgrade -__fish_apt_subcommand full-upgrade -r -d 'Upgrade packages, removing others when needed' +__fish_apt_subcommand full-upgrade -r -d 'Upgrade packages, removing others when needed' # Purge -__fish_apt_subcommand purge -x -d 'Remove packages and delete their config files' +__fish_apt_subcommand purge -x -d 'Remove packages and delete their config files' # Changelog -__fish_apt_subcommand changelog -r -d 'Download and display package changelog' +__fish_apt_subcommand changelog -r -d 'Download and display package changelog' # Autoremove -__fish_apt_subcommand autoremove -d 'Remove packages no longer needed as dependencies' +__fish_apt_subcommand autoremove -d 'Remove packages no longer needed as dependencies' # Policy -__fish_apt_subcommand policy -x -d 'Display source or package priorities' +__fish_apt_subcommand policy -x -d 'Display source or package priorities' # Depends -__fish_apt_subcommand depends -r -d 'List package dependencies' +__fish_apt_subcommand depends -r -d 'List package dependencies' # Rdepends -__fish_apt_subcommand rdepends -r -d 'List package reverse dependencies' +__fish_apt_subcommand rdepends -r -d 'List package reverse dependencies' + +functions -e __fish_apt_subcommand __fish_apt_option diff --git a/share/completions/aptitude.fish b/share/completions/aptitude.fish index 2267e0c78..089ffdd23 100644 --- a/share/completions/aptitude.fish +++ b/share/completions/aptitude.fish @@ -1,68 +1,68 @@ #completion for aptitude -function __fish_apt_no_subcommand -d 'Test if aptitude has yet to be given the subcommand' - for i in (commandline -opc) - if contains -- $i autoclean clean forget-new keep-all update safe-upgrade changelog full-upgrade download forbid-version hold install keep markauto purge reinstall remove show unhold unmarkauto search help - return 1 - end - end - return 0 +function __fish_apt_no_subcommand -d 'Test if aptitude has yet to be given the subcommand' + for i in (commandline -opc) + if contains -- $i autoclean clean forget-new keep-all update safe-upgrade changelog full-upgrade download forbid-version hold install keep markauto purge reinstall remove show unhold unmarkauto search help + return 1 + end + end + return 0 end -function __fish_apt_use_package -d 'Test if aptitude command should have packages as potential completion' - for i in (commandline -opc) - if contains -- $i changelog full-upgrade download forbid-version hold install keep-all markauto purge reinstall remove show unhold unmarkauto - return 0 - end - end - return 1 +function __fish_apt_use_package -d 'Test if aptitude command should have packages as potential completion' + for i in (commandline -opc) + if contains -- $i changelog full-upgrade download forbid-version hold install keep-all markauto purge reinstall remove show unhold unmarkauto + return 0 + end + end + return 1 end -complete -c aptitude -n '__fish_apt_use_package' -a '(__fish_print_packages)' -d 'Package' +complete -c aptitude -n '__fish_apt_use_package' -a '(__fish_print_packages)' -d 'Package' -complete -c aptitude -s h -l help -d 'Display a brief help message. Identical to the help action' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'autoclean' -d 'Remove any cached packages which can no longer be downloaded' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'clean' -d 'Remove all downloaded .deb files from the package cache directory' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'forget-new' -d 'Forget all internal information about what packages are \'new\'' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'keep-all' -d 'Cancel all scheduled actions on all packages' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'update' -d 'Update the list of available packages from the apt sources' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'safe-upgrade' -d 'Upgrade installed packages to their most recent version' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'changelog' -d 'Download and displays the Debian changelog for the packages' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'full-upgrade' -d 'Upgrade, removing or installing packages as necessary' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'download' -d 'Download the packages to the current directory' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'forbid-version' -d 'Forbid the upgrade to a particular version' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'hold' -d 'Ignore the packages by future upgrade commands' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'install' -d 'Install the packages' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'keep' -d 'Cancel any scheduled actions on the packages' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'markauto' -d 'Mark packages as automatically installed' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'purge' -d 'Remove and delete all associated configuration and data files' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'reinstall' -d 'Reinstall the packages' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'remove' -d 'Remove the packages' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'show' -d 'Display detailed information about the packages' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'unhold' -d 'Consider the packages by future upgrade commands' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'unmarkauto' -d 'Mark packages as manually installed' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'search' -d 'Search for packages matching one of the patterns' -complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'help' -d 'Display brief summary of the available commands and options' +complete -c aptitude -s h -l help -d 'Display a brief help message. Identical to the help action' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'autoclean' -d 'Remove any cached packages which can no longer be downloaded' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'clean' -d 'Remove all downloaded .deb files from the package cache directory' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'forget-new' -d 'Forget all internal information about what packages are \'new\'' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'keep-all' -d 'Cancel all scheduled actions on all packages' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'update' -d 'Update the list of available packages from the apt sources' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'safe-upgrade' -d 'Upgrade installed packages to their most recent version' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'changelog' -d 'Download and displays the Debian changelog for the packages' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'full-upgrade' -d 'Upgrade, removing or installing packages as necessary' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'download' -d 'Download the packages to the current directory' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'forbid-version' -d 'Forbid the upgrade to a particular version' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'hold' -d 'Ignore the packages by future upgrade commands' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'install' -d 'Install the packages' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'keep' -d 'Cancel any scheduled actions on the packages' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'markauto' -d 'Mark packages as automatically installed' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'purge' -d 'Remove and delete all associated configuration and data files' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'reinstall' -d 'Reinstall the packages' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'remove' -d 'Remove the packages' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'show' -d 'Display detailed information about the packages' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'unhold' -d 'Consider the packages by future upgrade commands' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'unmarkauto' -d 'Mark packages as manually installed' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'search' -d 'Search for packages matching one of the patterns' +complete -f -n '__fish_apt_no_subcommand' -c aptitude -a 'help' -d 'Display brief summary of the available commands and options' -complete -c aptitude -s D -l show-deps -d 'Show explanations of automatic installations and removals' -complete -c aptitude -s d -l download-only -d 'Download Only' -complete -c aptitude -s f -l fix-broken -d 'Correct broken dependencies' -complete -c aptitude -l purge-unused -d 'Purge packages that are not required by any installed package' -complete -c aptitude -s P -l prompt -d 'Always display a prompt' -complete -c aptitude -s R -l without-recommends -d 'Do not treat recommendations as dependencies' -complete -c aptitude -s r -l with-recommends -d 'Treat recommendations as dependencies' -complete -c aptitude -s s -l simulate -d 'Don\'t perform the actions. Just show them' -complete -c aptitude -l schedule-only -d 'Schedule operations to be performed in the future' -complete -c aptitude -s q -l quiet -d 'Suppress incremental progress indicators' -complete -c aptitude -s V -l show-versions -d 'Show which versions of packages will be installed' -complete -c aptitude -s v -l verbose -d 'Display extra information' -complete -c aptitude -l version -d 'Display the version of aptitude and compile information' -complete -c aptitude -l visual-preview -d 'Start up the visual interface and display its preview screen' -complete -c aptitude -s y -l assume-yes -d 'Assume the answer yes for all question prompts' -complete -c aptitude -s Z -d 'Show how much disk space will be used or freed' -complete -r -c aptitude -s F -l display-format -d 'Specify the format to be used by the search command' -complete -r -c aptitude -s t -l target-release -d 'Set the release from which packages should be installed' -complete -r -c aptitude -s O -l sort -d 'Specify the order for the output from the search command' -complete -r -c aptitude -s o -d 'Set a configuration file option directly' -complete -r -c aptitude -s w -l width -d 'Specify the display width for the output from the search command' +complete -c aptitude -s D -l show-deps -d 'Show explanations of automatic installations and removals' +complete -c aptitude -s d -l download-only -d 'Download Only' +complete -c aptitude -s f -l fix-broken -d 'Correct broken dependencies' +complete -c aptitude -l purge-unused -d 'Purge packages that are not required by any installed package' +complete -c aptitude -s P -l prompt -d 'Always display a prompt' +complete -c aptitude -s R -l without-recommends -d 'Do not treat recommendations as dependencies' +complete -c aptitude -s r -l with-recommends -d 'Treat recommendations as dependencies' +complete -c aptitude -s s -l simulate -d 'Don\'t perform the actions. Just show them' +complete -c aptitude -l schedule-only -d 'Schedule operations to be performed in the future' +complete -c aptitude -s q -l quiet -d 'Suppress incremental progress indicators' +complete -c aptitude -s V -l show-versions -d 'Show which versions of packages will be installed' +complete -c aptitude -s v -l verbose -d 'Display extra information' +complete -c aptitude -l version -d 'Display the version of aptitude and compile information' +complete -c aptitude -l visual-preview -d 'Start up the visual interface and display its preview screen' +complete -c aptitude -s y -l assume-yes -d 'Assume the answer yes for all question prompts' +complete -c aptitude -s Z -d 'Show how much disk space will be used or freed' +complete -r -c aptitude -s F -l display-format -d 'Specify the format to be used by the search command' +complete -r -c aptitude -s t -l target-release -d 'Set the release from which packages should be installed' +complete -r -c aptitude -s O -l sort -d 'Specify the order for the output from the search command' +complete -r -c aptitude -s o -d 'Set a configuration file option directly' +complete -r -c aptitude -s w -l width -d 'Specify the display width for the output from the search command' diff --git a/share/completions/arc.fish b/share/completions/arc.fish index a4e157d8d..13757afa0 100644 --- a/share/completions/arc.fish +++ b/share/completions/arc.fish @@ -41,7 +41,7 @@ complete -f -c arc -n '__fish_arc_needs_command' -l conduit-token -d 'Specify th complete -f -c arc -n '__fish_arc_needs_command' -l conduit-version -d 'Force a version' complete -f -c arc -n '__fish_arc_needs_command' -l conduit-timeout -d 'Sets the timeout' complete -f -c arc -n '__fish_arc_needs_command' -l config -d 'Sets a config' -complete -f -c arc -n '__fish_arc_needs_command' -l skip-arcconfig -d 'Skip the working copy configuration file' +complete -f -c arc -n '__fish_arc_needs_command' -l skip-arcconfig -d 'Skip the working copy configuration file' complete -c arc -n '__fish_arc_needs_command' -l arcrc-file -d 'Use provided file instead of ~/.arcrc' ### shell-complete diff --git a/share/completions/asp.fish b/share/completions/asp.fish index 8308f235f..8fdd0e735 100644 --- a/share/completions/asp.fish +++ b/share/completions/asp.fish @@ -22,5 +22,5 @@ complete -c asp -n "not __fish_seen_subcommand_from $commands" -a untrack -d "Re # This will run into the description race. complete -c asp -n "__fish_seen_subcommand_from checkout {diff,short,}log export list-{arches,repos} show update" -a "(asp list-all | string replace -r '.*/' '')" -f complete -c asp -n "__fish_seen_subcommand_from checkout {diff,short,}log export list-{arches,repos} show update untrack" -a "(asp list-local | string replace -r '.*/' '')" -f \ --d "Locally tracked package" + -d "Locally tracked package" diff --git a/share/completions/aws.fish b/share/completions/aws.fish new file mode 100644 index 000000000..5bee05b19 --- /dev/null +++ b/share/completions/aws.fish @@ -0,0 +1,273 @@ +# These are very much incomplete completions for the aws-cli suite. +# In addition to a complete list of services, the `aws s3` completions are mostly complete +# (and are the primary reason this file exists). The automatically generated completions +# for `aws` via `fish_update_completions` are pretty useless due to non-standard formatting. + +function __s3_is_maybe_bucket + commandline -ct | string match -qr -- '^(|s|s3|s3:?/?/?[^/]*)$' +end + +function __s3_is_bucket + commandline -ct | string match -q -r -- '^s3:/?/?[^/]*$' +end + +function __s3_is_remote_path + commandline -ct | string match -q -r -- "^s3://.+/.*" +end + +function __s3_ls_buckets + aws s3 ls | string replace -rf '.* (\S+)$' 's3://$1/' +end + +function __s3_ls_dir + set -l dir (commandline -ct | string replace -rf '(s3://.*/).*' '$1') + printf "$dir%s\n" (aws s3 ls $dir 2>/dev/null | string replace -fr '^(:?\S+ +\S+ +\S+ |^.*PRE )(.*)' '$2') +end + +# Determines whether the first non-switch argument to `aws s3` was in $argv +# This accounts for things like `aws --debug s3 foo ... s3://...` +function __s3_cmd_in + set -l is_s3 0 + set -l tokens (commandline -co) + for token in $tokens[2..-1] + # Ignore switches everywhere + if string match -qr -- "^--" $token + continue + end + + # Check if `aws` command is `s3` + if test $is_s3 -eq 0 + if string match -q -- "s3" $token + set is_s3 1 + continue + else + return 1 + end + end + + # Check if `aws s3` sub-sub-command is in $argv + if contains $token $argv + return 0 + else + return 1 + end + end + + return 1 +end + +# Determines whether the first non-switch argument to `aws` was in $argv +function __aws_cmd_in + set -l tokens (commandline -co) + for token in $tokens[2..-1] + if string match -qr "^--" -- $token + # Ignore switches everywhere + continue + else if contains $token $argv + return 0 + else + return 1 + end + end + + return 1 +end + +# S3 completions +complete -c 'aws' -n "__fish_prev_arg_in s3" -xa "cp mv rm help sync ls mb mv presign rb website" + +# When completing a remote path, complete the bucket name first, then based off +# the bucket name, we can complete the path itself. + +# Commands that take only remote parameters (cannot operate on local files). +complete -c 'aws' -n "__s3_is_maybe_bucket && __s3_cmd_in ls rb rm" -xa "(__s3_ls_buckets)" +# Commands that can operate on local or remote files. To prevent the shell +# locking up unnecessarily, only complete if no argument was specified or if the +# argument being specified could be an S3 path. +complete -c 'aws' -n "__s3_is_maybe_bucket && __s3_cmd_in mv cp presign mb sync" -a "(__s3_ls_buckets)" + +# Complete the paths themselves +complete -c 'aws' -n "__s3_is_remote_path" -xa "(__s3_ls_dir)" +complete -c 'aws' -n "__s3_is_bucket" -xa "(__s3_ls_buckets)" + +# This list is extracted from the output of `aws help`, which can't be ingested directly, +# as it emits considerable ANSI output and other terminal control characters. +set -l aws_services \ + acm \ + acm-pca \ + alexaforbusiness \ + amplify \ + apigateway \ + apigatewaymanagementapi \ + apigatewayv2 \ + application-autoscaling \ + appmesh \ + appstream \ + appsync \ + athena \ + autoscaling \ + autoscaling-plans \ + backup \ + batch \ + budgets \ + ce \ + chime \ + cloud9 \ + clouddirectory \ + cloudformation \ + cloudfront \ + cloudhsm \ + cloudhsmv2 \ + cloudsearch \ + cloudsearchdomain \ + cloudtrail \ + cloudwatch \ + codebuild \ + codecommit \ + codepipeline \ + codestar \ + cognito-identity \ + cognito-idp \ + cognito-sync \ + comprehend \ + comprehendmedical \ + configservice \ + configure \ + connect \ + cur \ + datapipeline \ + datasync \ + dax \ + deploy \ + devicefarm \ + directconnect \ + discovery \ + dlm \ + dms \ + docdb \ + ds \ + dynamodb \ + dynamodbstreams \ + ec2 \ + ecr \ + ecs \ + efs \ + eks \ + elasticache \ + elasticbeanstalk \ + elastictranscoder \ + elb \ + elbv2 \ + emr \ + es \ + events \ + firehose \ + fms \ + fsx \ + gamelift \ + glacier \ + globalaccelerator \ + glue \ + greengrass \ + guardduty \ + health \ + help \ + history \ + iam \ + importexport \ + inspector \ + iot \ + iot-data \ + iot-jobs-data \ + iot1click-devices \ + iot1click-projects \ + iotanalytics \ + kafka \ + kinesis \ + kinesis-video-archived-media \ + kinesis-video-media \ + kinesisanalytics \ + kinesisanalyticsv2 \ + kinesisvideo \ + kms \ + lambda \ + lex-models \ + lex-runtime \ + license-manager \ + lightsail \ + logs \ + machinelearning \ + macie \ + marketplace-entitlement \ + marketplacecommerceanalytics \ + mediaconnect \ + mediaconvert \ + medialive \ + mediapackage \ + mediastore \ + mediastore-data \ + mediatailor \ + meteringmarketplace \ + mgh \ + mobile \ + mq \ + mturk \ + neptune \ + opsworks \ + opsworks-cm \ + organizations \ + pi \ + pinpoint \ + pinpoint-email \ + pinpoint-sms-voice \ + polly \ + pricing \ + quicksight \ + ram \ + rds \ + rds-data \ + redshift \ + rekognition \ + resource-groups \ + resourcegroupstaggingapi \ + robomaker \ + route53 \ + route53domains \ + route53resolver \ + s3 \ + s3api \ + s3control \ + sagemaker \ + sagemaker-runtime \ + sdb \ + secretsmanager \ + securityhub \ + serverlessrepo \ + servicecatalog \ + servicediscovery \ + ses \ + shield \ + signer \ + sms \ + snowball \ + sns \ + sqs \ + ssm \ + stepfunctions \ + storagegateway \ + sts \ + support \ + swf \ + textract \ + transcribe \ + transfer \ + translate \ + waf \ + waf-regional \ + workdocs \ + worklink \ + workmail \ + workspaces \ + xray + +complete -c aws -n '__fish_is_first_token' -xa "$aws_services" diff --git a/share/completions/bat.fish b/share/completions/bat.fish new file mode 100644 index 000000000..036543fac --- /dev/null +++ b/share/completions/bat.fish @@ -0,0 +1,88 @@ +# Generated by hand against bat 0.12.0. +# bat is at . + +# TODO: Have --map-syntax properly suggest from- and to-languages. +# NOTE: The completion for --style won’t help the user write anything in the comma-separated-list form. + +function __bat_complete_languages_and_extensions -d 'All languages and their filenames/extensions, one per line' + command bat --list-languages | string split : | string split , +end + +function __bat_complete_language_extensions -d 'All language extensions/names, one per line' + command bat --list-languages | cut -d : -f 2 | string split , +end + +function __bat_complete_themes -d 'All themes, one per line' + command bat --list-themes +end + +set -l style_opts ' + auto\tdefault + full\t + plain\t + changes\t + header\t + grid\t + numbers\t +' + +set -l color_opts ' + auto\tdefault + never\t + always\t +' + +set -l italic_text_opts ' + always\t + never\tdefault +' + +set -l decorations_opts "$color_opts" +set -l paging_opts "$color_opts" + +set -l wrap_opts ' + auto\tdefault + never\t + character\t +' + +# While --tabs theoretically takes any number, most people should be OK with these. Specifying a list lets me explain what 0 does. +set -l tabs_opts ' + 0\tpasses tabs through directly + 1\t + 2\t + 4\t + 8\t +' + +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -s l -l language -a '(__bat_complete_languages_and_extensions)' -d 'Set language for syntax highlighting' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -f -s L -l list-language -d 'List supported languages for syntax highlighting' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -s m -l map-syntax -d 'Map file name/extension to existing syntax' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l theme -a '(__bat_complete_themes)' -d 'Set theme for syntax highlighting' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -f -l list-themes -d 'List syntax-highlighting themes' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l style -a "$style_opts" -d 'Choose what to add to the file contents' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -s p -l plain -d 'Show no decorations; -pp disables paging too' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -s n -l number -d 'Only show line numbers and no other decorations' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -s A -l show-all -d 'Show non-printable characters' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -s r -l line-range -d 'Only print lines from [M]:[N] (either optional)' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -s H -l highlight-line -d 'Highlight the given line' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l color -ka "$color_opts" -d 'Specify when to use colors' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l italic-text -ka "$italic_text_opts" -d 'Specify when to use ANSI italic-text sequences' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l decorations -ka "$decorations_opts" -d 'Specify when to use --style decorations' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l paging -ka "$paging_opts" -d 'Specify when to use a pager' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l pager -d 'Specify what pager to use' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l wrap -ka "$wrap_opts" -d 'Specify text-wrapping mode' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l tabs -a "$tabs_opts" -d 'Sets tab width to N spaces' +# Don’t suggest the always-ignored added-only-for-POSIX-compliance -u/--unbuffered. Output is always unbuffered. +complete -c bat -n 'not __fish_seen_subcommand_from cache' -x -l terminal-width -d 'Explicitly set terminal width, optionally prefixed with +/-' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -s h -l help -d 'Print help' +complete -c bat -n 'not __fish_seen_subcommand_from cache' -s V -l version -d 'Show version information' + +# cache things +complete -c bat -n '__fish_use_subcommand' -a cache -d 'Manage syntax-definition and theme cache' +complete -c bat -n '__fish_seen_subcommand_from cache' -f -s b -l build -d 'Initialize/update cache from the source directory' +complete -c bat -n '__fish_seen_subcommand_from cache' -f -s c -l clear -d 'Remove cached definitions and themes' +complete -c bat -n '__fish_seen_subcommand_from cache' -r -l source -d 'Specify directory to load syntaxes/themes from' +complete -c bat -n '__fish_seen_subcommand_from cache' -r -l target -d 'Specify directory to store cached syntaxes/themes' +complete -c bat -n '__fish_seen_subcommand_from cache' -f -l blank -d 'Create completely new syntax/theme sets instead of appending to the defaults' +complete -c bat -n '__fish_seen_subcommand_from cache' -f -s h -l help -d 'Print help about cache management' diff --git a/share/completions/bd.fish b/share/completions/bd.fish index 3e3805938..fb9444ab0 100644 --- a/share/completions/bd.fish +++ b/share/completions/bd.fish @@ -7,9 +7,9 @@ complete -c bd -A -f -complete -c bd -s c -d "Classic mode: goes back to the first directory named as the string" -complete -c bd -s s -d "Seems mode: goes back to the first directory containing string" -complete -c bd -s i -d "Case insensitive move (implies seems mode)" +complete -c bd -s c -d "Classic mode: goes back to the first directory named as the string" +complete -c bd -s s -d "Seems mode: goes back to the first directory containing string" +complete -c bd -s i -d "Case insensitive move (implies seems mode)" complete -c bd -s h -x -d "Display help and exit" function __fish_bd_complete_dirs diff --git a/share/completions/begin.fish b/share/completions/begin.fish new file mode 100644 index 000000000..4d3c1256f --- /dev/null +++ b/share/completions/begin.fish @@ -0,0 +1,2 @@ +complete -c begin -s h -l help -d 'Display help and exit' +complete -c begin -xa '(__fish_complete_subcommand --allow-functions-and-builtins)' diff --git a/share/completions/bind.fish b/share/completions/bind.fish index c6153cf8a..dd37570c5 100644 --- a/share/completions/bind.fish +++ b/share/completions/bind.fish @@ -43,14 +43,16 @@ function __fish_bind_test2 end +complete -c bind -f complete -c bind -s a -l all -d 'Show unavailable key bindings/erase all bindings' complete -c bind -s e -l erase -d 'Erase mode' complete -c bind -s f -l function-names -d 'Print names of available functions' complete -c bind -s h -l help -d "Display help and exit" complete -c bind -s k -l key -d 'Specify key name, not sequence' complete -c bind -s K -l key-names -d 'Print names of available keys' -complete -c bind -s m -l mode -d 'Add to named bind mode' -complete -c bind -s M -l new-mode -d 'Change current bind mode to named mode' +complete -c bind -s M -l mode -d 'Specify the bind mode that the bind is used in' -xa '(bind -L)' +complete -c bind -s m -l sets-mode -d 'Change current mode after bind is executed' -xa '(bind -L)' +complete -c bind -s L -l list-modes -d 'Display a list of defined bind modes' complete -c bind -n __fish_bind_test1 -a '(bind --key-names)' -d 'Key name' -x complete -c bind -n __fish_bind_test2 -a '(bind --function-names)' -d 'Function name' -x diff --git a/share/completions/bosh.fish b/share/completions/bosh.fish index a2bda6b79..a3b771162 100644 --- a/share/completions/bosh.fish +++ b/share/completions/bosh.fish @@ -1,92 +1,92 @@ set -l subcommands add-blob alias-env attach-disk blobs cancel-task clean-up \ - cloud-check cloud-config config configs cpi-config create-env create-release \ - delete-config delete-deployment delete-disk delete-env delete-release \ - delete-snapshot delete-snapshots delete-stemcell delete-vm deploy deployment \ - deployments diff-config disks environment environments errands event events \ - export-release finalize-release generate-job generate-package help ignore \ - init-release inspect-release instances interpolate locks log-in log-out logs \ - manifest orphan-disk recreate releases remove-blob repack-stemcell \ - reset-release restart run-errand runtime-config scp snapshots ssh start \ - stemcells stop sync-blobs take-snapshot task tasks unignore \ - update-cloud-config update-config update-cpi-config update-resurrection \ - update-runtime-config upload-blobs upload-release upload-stemcell variables \ - vendor-package vms + cloud-check cloud-config config configs cpi-config create-env create-release \ + delete-config delete-deployment delete-disk delete-env delete-release \ + delete-snapshot delete-snapshots delete-stemcell delete-vm deploy deployment \ + deployments diff-config disks environment environments errands event events \ + export-release finalize-release generate-job generate-package help ignore \ + init-release inspect-release instances interpolate locks log-in log-out logs \ + manifest orphan-disk recreate releases remove-blob repack-stemcell \ + reset-release restart run-errand runtime-config scp snapshots ssh start \ + stemcells stop sync-blobs take-snapshot task tasks unignore \ + update-cloud-config update-config update-cpi-config update-resurrection \ + update-runtime-config upload-blobs upload-release upload-stemcell variables \ + vendor-package vms -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'add-blob' --description "Add blob" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'alias-env' --description "Alias environment to save URL and CA certificate" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'attach-disk' --description "Attaches disk to an instance" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'blobs' --description "List blobs" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'cancel-task' --description "Cancel task at its next checkpoint" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'clean-up' --description "Clean up releases, stemcells, disks, etc." -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'cloud-check' --description "Cloud consistency check and interactive repair" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'cloud-config' --description "Show current cloud config" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'config' --description "Show current config" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'configs' --description "List configs" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'cpi-config' --description "Show current CPI config" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'create-env' --description "Create or update BOSH environment" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'create-release' --description "Create release" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-config' --description "Delete config" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-deployment' --description "Delete deployment" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-disk' --description "Delete disk" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-env' --description "Delete BOSH environment" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-release' --description "Delete release" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-snapshot' --description "Delete snapshot" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-snapshots' --description "Delete all snapshots in a deployment" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-stemcell' --description "Delete stemcell" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-vm' --description "Delete VM" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'deploy' --description "Update deployment" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'deployment' --description "Show deployment information" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'deployments' --description "List deployments" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'diff-config' --description "Diff two configs by ID" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'disks' --description "List disks" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'environment' --description "Show environment" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'environments' --description "List environments" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'errands' --description "List errands" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'event' --description "Show event details" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'events' --description "List events" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'export-release' --description "Export the compiled release to a tarball" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'finalize-release' --description "Create final release from dev release tarball" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'generate-job' --description "Generate job" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'generate-package' --description "Generate package" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'help' --description "Show this help message" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'ignore' --description "Ignore an instance" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'init-release' --description "Initialize release" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'inspect-release' --description "List release contents such as jobs" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'instances' --description "List all instances in a deployment" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'interpolate' --description "Interpolates variables into a manifest" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'locks' --description "List current locks" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'log-in' --description "Log in" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'log-out' --description "Log out" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'logs' --description "Fetch logs from instance(s)" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'manifest' --description "Show deployment manifest" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'orphan-disk' --description "Orphan disk" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'recreate' --description "Recreate instance(s)" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'releases' --description "List releases" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'remove-blob' --description "Remove blob" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'repack-stemcell' --description "Repack stemcell" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'reset-release' --description "Reset release" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'restart' --description "Restart instance(s)" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'run-errand' --description "Run errand" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'runtime-config' --description "Show current runtime config" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'scp' --description "SCP to/from instance(s)" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'snapshots' --description "List snapshots" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'ssh' --description "SSH into instance(s)" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'start' --description "Start instance(s)" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'stemcells' --description "List stemcells" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'stop' --description "Stop instance(s)" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'sync-blobs' --description "Sync blobs" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'take-snapshot' --description "Take snapshot" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'task' --description "Show task status and start tracking its output" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'tasks' --description "List running or recent tasks" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'unignore' --description "Unignore an instance" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'update-cloud-config' --description "Update current cloud config" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'update-config' --description "Update config" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'update-cpi-config' --description "Update current CPI config" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'update-resurrection' --description "Enable/disable resurrection" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'update-runtime-config' --description "Update current runtime config" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'upload-blobs' --description "Upload blobs" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'upload-release' --description "Upload release" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'upload-stemcell' --description "Upload stemcell" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'variables' --description "List variables" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'vendor-package' --description "Vendor package" -complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'vms' --description "List all VMs in all deployments" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'add-blob' --description "Add blob" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'alias-env' --description "Alias environment to save URL and CA certificate" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'attach-disk' --description "Attaches disk to an instance" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'blobs' --description "List blobs" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'cancel-task' --description "Cancel task at its next checkpoint" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'clean-up' --description "Clean up releases, stemcells, disks, etc." +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'cloud-check' --description "Cloud consistency check and interactive repair" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'cloud-config' --description "Show current cloud config" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'config' --description "Show current config" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'configs' --description "List configs" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'cpi-config' --description "Show current CPI config" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'create-env' --description "Create or update BOSH environment" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'create-release' --description "Create release" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-config' --description "Delete config" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-deployment' --description "Delete deployment" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-disk' --description "Delete disk" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-env' --description "Delete BOSH environment" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-release' --description "Delete release" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-snapshot' --description "Delete snapshot" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-snapshots' --description "Delete all snapshots in a deployment" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-stemcell' --description "Delete stemcell" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'delete-vm' --description "Delete VM" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'deploy' --description "Update deployment" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'deployment' --description "Show deployment information" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'deployments' --description "List deployments" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'diff-config' --description "Diff two configs by ID" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'disks' --description "List disks" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'environment' --description "Show environment" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'environments' --description "List environments" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'errands' --description "List errands" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'event' --description "Show event details" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'events' --description "List events" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'export-release' --description "Export the compiled release to a tarball" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'finalize-release' --description "Create final release from dev release tarball" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'generate-job' --description "Generate job" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'generate-package' --description "Generate package" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'help' --description "Show this help message" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'ignore' --description "Ignore an instance" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'init-release' --description "Initialize release" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'inspect-release' --description "List release contents such as jobs" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'instances' --description "List all instances in a deployment" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'interpolate' --description "Interpolates variables into a manifest" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'locks' --description "List current locks" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'log-in' --description "Log in" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'log-out' --description "Log out" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'logs' --description "Fetch logs from instance(s)" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'manifest' --description "Show deployment manifest" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'orphan-disk' --description "Orphan disk" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'recreate' --description "Recreate instance(s)" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'releases' --description "List releases" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'remove-blob' --description "Remove blob" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'repack-stemcell' --description "Repack stemcell" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'reset-release' --description "Reset release" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'restart' --description "Restart instance(s)" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'run-errand' --description "Run errand" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'runtime-config' --description "Show current runtime config" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'scp' --description "SCP to/from instance(s)" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'snapshots' --description "List snapshots" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'ssh' --description "SSH into instance(s)" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'start' --description "Start instance(s)" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'stemcells' --description "List stemcells" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'stop' --description "Stop instance(s)" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'sync-blobs' --description "Sync blobs" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'take-snapshot' --description "Take snapshot" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'task' --description "Show task status and start tracking its output" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'tasks' --description "List running or recent tasks" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'unignore' --description "Unignore an instance" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'update-cloud-config' --description "Update current cloud config" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'update-config' --description "Update config" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'update-cpi-config' --description "Update current CPI config" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'update-resurrection' --description "Enable/disable resurrection" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'update-runtime-config' --description "Update current runtime config" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'upload-blobs' --description "Upload blobs" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'upload-release' --description "Upload release" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'upload-stemcell' --description "Upload stemcell" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'variables' --description "List variables" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'vendor-package' --description "Vendor package" +complete -f -n "__fish_use_subcommand $subcommands" -c bosh -a 'vms' --description "List all VMs in all deployments" diff --git a/share/completions/bower.fish b/share/completions/bower.fish index d4c45c949..a32226738 100644 --- a/share/completions/bower.fish +++ b/share/completions/bower.fish @@ -1,5 +1,5 @@ function __bower_cmds - echo -en "cache\tManage bower cache + echo -en "cache\tManage bower cache help\tDisplay help information about Bower home\tOpens a package homepage into your favorite browser info\tInfo of a particular package @@ -20,7 +20,7 @@ version\tBump a package version end function __bower_args - echo -en "-f\tMakes various commands more forceful + echo -en "-f\tMakes various commands more forceful --force\tMakes various commands more forceful -j\tOutput consumable JSON --json\tOutput consumable JSON @@ -41,20 +41,27 @@ function __bower_args end function __bower_matching_pkgs - bower search (commandline -ct) | string match -r "\S+[^\s]" | string match -v "Search" + bower search (commandline -ct) | string match -r "\S+[^\s]" | string match -v "Search" end -# Output of `bower list` is a) slow, b) convoluted. Use `jq` instead. +# Output of `bower list` is a) slow, b) convoluted. Use `python` or `jq` instead. function __bower_list_installed - if not type -q jq - return 1 - end + if not test -e bower.json + return 1 + end - if not test -e bower.json - return 1 - end + if set -l python (__fish_anypython) + # Warning: That weird indentation is necessary, because python. + $python -c 'import json, sys; data = json.load(sys.stdin); +for k,v in data["dependencies"].items(): print(k + "\t" + v[:18])' bower.json 2>/dev/null + return + end - jq -r '.dependencies | to_entries[] | .key' bower.json + if not type -q jq + return 1 + end + + jq -r '.dependencies | to_entries[] | .key' bower.json end complete -c bower -n "__fish_is_first_token" -x -a '(__bower_cmds)' diff --git a/share/completions/brew.fish b/share/completions/brew.fish index e3930c41b..8d9cc6c99 100644 --- a/share/completions/brew.fish +++ b/share/completions/brew.fish @@ -1,507 +1,3 @@ -function __fish_brew_get_cmd - for c in (commandline -opc) - if not string match -q -- '-*' $c - echo $c - end - end -end - -function __fish_brew_needs_command - set cmd (__fish_brew_get_cmd) - if not set -q cmd[2] - return 0 - end - return 1 -end - -function __fish_brew_using_command - set index 2 - - if set -q argv[2] - set index $argv[2] - end - - set cmd (__fish_brew_get_cmd) - - if set -q cmd[$index] - if [ $argv[1] = $cmd[$index] ] - return 0 - end - end - return 1 -end - -function __fish_brew_formulae - # list all local formula, do not use `brew search some_text` against searching online - # TODO fix the problem with `tap-pin`, tap-pin will modify the priority - # If you pin your custom tap for VIM, you should - # `brew install homebrew/core/vim` to install VIM from `core` repo - # `brew install vim` to install VIM from more prior repo - # but `brew search` won't change display for custom VIM and core VIM - # 'vim' for core VIM - # 'custUser/custRepo/vim' for more prior VIM - # more info: https://github.com/Homebrew/brew/blob/master/share/doc/homebrew/brew-tap.md#formula-duplicate-names - brew search -end - -function __fish_brew_installed_formulas - brew list -end - -function __fish_brew_leaves - brew leaves -end - -function __fish_brew_outdated_formulas - brew outdated -end - -function __fish_brew_pinned_formulas - brew list --pinned -end - -function __fish_brew_taps - brew tap -end - - -########################### -# subcommand initializing # -########################### - -######## -# cask # -######## - -function __fish_brew_is_subcommand_cask - if __fish_brew_using_command cask - for action in $argv - if __fish_brew_using_command $action 3 - return 0 - end - end - end - return 1 -end - -function __fish_brew_needs_cask_action - if __fish_brew_using_command cask - set cmd (__fish_brew_get_cmd) - if not set -q cmd[3] - return 0 - end - end - return 1 -end - -function __fish_brew_casks - brew search --casks -end - -function __fish_brew_casks_installed - brew cask list -end - - -############ -# services # -############ - -function __fish_brew_is_subcommand_services - if __fish_brew_using_command services - for action in $argv - if __fish_brew_using_command $action 3 - return 0 - end - end - end - return 1 -end - -function __fish_brew_needs_services_action - if __fish_brew_using_command services - set cmd (__fish_brew_get_cmd) - if not set -q cmd[3] - return 0 - end - end - return 1 -end - -function __fish_brew_services - brew services list | awk '{if (NR>1) print $1}' -end - - -##################### -# brew commands # -# (brew cask below) # -##################### - -# audit -complete -f -c brew -n '__fish_brew_needs_command' -a audit -d 'Check formula' -complete -f -c brew -n '__fish_brew_using_command audit' -a '(__fish_brew_formulae)' - -# bottle -complete -f -c brew -n '__fish_brew_needs_command' -a bottle -d 'Create a binary package' -complete -f -c brew -n '__fish_brew_using_command bottle' -l 'homebrew-developer' -d 'Output developer debug information' -complete -f -c brew -n '__fish_brew_using_command bottle' -l 'no-revision' -d 'Do not bump the bottle revision number' -complete -f -c brew -n '__fish_brew_using_command bottle' -l 'rb' -d 'Write bottle block to a Ruby source file' -complete -f -c brew -n '__fish_brew_using_command bottle' -l 'write' -d 'Write bottle block to formula file' -complete -f -c brew -n '__fish_brew_using_command bottle' -l 'merge' -d 'Merge multiple bottle outputs' - -# cask -complete -f -c brew -n '__fish_brew_needs_command' -a cask -d 'Manage installed casks' - -# cat -complete -f -c brew -n '__fish_brew_needs_command' -a cat -d 'Display formula' -complete -f -c brew -n '__fish_brew_using_command cat' -a '(__fish_brew_formulae)' - -# cleanup -complete -f -c brew -n '__fish_brew_needs_command' -a cleanup -d 'Remove old installed versions' -complete -f -c brew -n '__fish_brew_using_command cleanup' -l force -d 'Remove out-of-date keg-only brews as well' -complete -f -c brew -n '__fish_brew_using_command cleanup' -l dry-run -d 'Show what files would be removed' -complete -f -c brew -n '__fish_brew_using_command cleanup' -s n -d 'Show what files would be removed' -complete -f -c brew -n '__fish_brew_using_command cleanup' -s s -d 'Scrub the cache' -complete -f -c brew -n '__fish_brew_using_command cleanup' -a '(__fish_brew_installed_formulas)' - -# create -complete -f -c brew -n '__fish_brew_needs_command' -a create -d 'Create new formula from URL' -complete -f -c brew -n '__fish_brew_using_command create' -l cmake -d 'Use template for CMake-style build' -complete -f -c brew -n '__fish_brew_using_command create' -l autotools -d 'Use template for Autotools-style build' -complete -f -c brew -n '__fish_brew_using_command create' -l no-fetch -d 'Don\'t download URL' -complete -f -c brew -n '__fish_brew_using_command create' -l set-name -d 'Override name autodetection' -complete -f -c brew -n '__fish_brew_using_command create' -l set-version -d 'Override version autodetection' - -# desc -complete -f -c brew -n '__fish_brew_needs_command' -a desc -d "Summarize specified formulae in one line" -complete -f -c brew -n '__fish_brew_using_command desc' -l search -d 'Search names and descriptions' -complete -f -c brew -n '__fish_brew_using_command desc' -l name -d 'Search only names' -complete -f -c brew -n '__fish_brew_using_command desc' -l description -d 'Search only descriptions' -complete -f -c brew -n '__fish_brew_using_command desc' -a '(__fish_brew_formulae)' - -# deps -complete -f -c brew -n '__fish_brew_needs_command' -a deps -d 'Show a formula\'s dependencies' -complete -f -c brew -n '__fish_brew_using_command deps' -l 1 -d 'Show only 1 level down' -complete -f -c brew -n '__fish_brew_using_command deps' -s n -d 'Show in topological order' -complete -f -c brew -n '__fish_brew_using_command deps' -l tree -d 'Show dependencies as tree' -complete -f -c brew -n '__fish_brew_using_command deps' -l all -d 'Show dependencies for all formulae' -complete -f -c brew -n '__fish_brew_using_command deps' -l installed -d 'Show dependencies for installed formulae' -complete -f -c brew -n '__fish_brew_using_command deps' -a '(__fish_brew_formulae)' - -# diy -complete -f -c brew -n '__fish_brew_needs_command' -a 'diy configure' -d 'Determine installation prefix for non-brew software' -complete -f -c brew -n '__fish_brew_using_command diy' -l set-name -d 'Set name of package' -complete -f -c brew -n '__fish_brew_using_command diy' -l set-version -d 'Set version of package' - -complete -f -c brew -n '__fish_brew_needs_command' -a 'doctor' -d 'Check your system for problems' - -# edit -complete -f -c brew -n '__fish_brew_needs_command' -a 'edit' -d 'Open brew/formula for editing' -complete -f -c brew -n '__fish_brew_using_command edit' -a '(__fish_brew_formulae)' - -# fetch -complete -f -c brew -n '__fish_brew_needs_command' -a fetch -d 'Download source for formula' -complete -f -c brew -n '__fish_brew_using_command fetch' -l force -d 'Remove a previously cached version and re-fetch' -complete -f -c brew -n '__fish_brew_using_command fetch' -l HEAD -d 'Download the HEAD version from a VCS' -complete -f -c brew -n '__fish_brew_using_command fetch' -l deps -d 'Also download dependencies' -complete -f -c brew -n '__fish_brew_using_command fetch' -s v -d 'Make HEAD checkout verbose' -complete -f -c brew -n '__fish_brew_using_command fetch' -l build-from-source -d 'Fetch source package instead of bottle' -complete -f -c brew -n '__fish_brew_using_command fetch' -a '(__fish_brew_formulae)' - -complete -f -c brew -n '__fish_brew_needs_command' -a 'help' -d 'Display help' - -# home -complete -f -c brew -n '__fish_brew_needs_command' -a home -d 'Open brew/formula\'s homepage' -complete -c brew -n '__fish_brew_using_command home' -a '(__fish_brew_formulae)' - -# info -complete -f -c brew -n '__fish_brew_needs_command' -a 'info abv' -d 'Display information about formula' -complete -f -c brew -n '__fish_brew_using_command info' -l all -d 'Display info for all formulae' -complete -f -c brew -n '__fish_brew_using_command info' -l github -d 'Open the GitHub History page for formula' -complete -c brew -n '__fish_brew_using_command info' -a '(__fish_brew_formulae)' - -# install -complete -f -c brew -n '__fish_brew_needs_command' -a 'install' -d 'Install formula' -complete -f -c brew -n '__fish_brew_using_command install' -l force -d 'Force install' -complete -f -c brew -n '__fish_brew_using_command install' -l debug -d 'If install fails, open shell in temp directory' -complete -f -c brew -n '__fish_brew_using_command install' -l ignore-dependencies -d 'skip installing any dependencies of any kind' -complete -f -c brew -n '__fish_brew_using_command install' -l cc -a "clang gcc-4.0 gcc-4.2 gcc-4.3 gcc-4.4 gcc-4.5 gcc-4.6 gcc-4.7 gcc-4.8 gcc-4.9 llvm-gcc" -d 'Attempt to compile using the specified compiler' -complete -f -c brew -n '__fish_brew_using_command install' -l build-from-source -d 'Compile from source even if a bottle is provided' -complete -f -c brew -n '__fish_brew_using_command install' -l devel -d 'Install the development version of formula' -complete -f -c brew -n '__fish_brew_using_command install' -l HEAD -d 'Install the HEAD version from VCS' -complete -f -c brew -n '__fish_brew_using_command install' -l interactive -d 'Download and patch formula, then open a shell' -complete -f -c brew -n '__fish_brew_using_command install' -l env -a "std super" -d 'Force the specified build environment' -complete -f -c brew -n '__fish_brew_using_command install' -l build-bottle -d 'Optimize for a generic CPU architecture' -complete -f -c brew -n '__fish_brew_using_command install' -l bottle-arch -a 'core core2 penryn g3 g4 g4e g5' -d 'Optimize for the specified CPU architecture' -complete -c brew -n '__fish_brew_using_command install' -a '(__fish_brew_formulae)' - -# leaves -complete -f -c brew -n '__fish_brew_needs_command' -a 'leaves' -d 'List installed top level formulae' -complete -f -c brew -n '__fish_brew_using_command leaves' -a '(__fish_brew_leaves)' - -# link -complete -f -c brew -n '__fish_brew_needs_command' -a 'link ln' -d 'Symlink installed formula' -complete -f -c brew -n '__fish_brew_using_command link' -l overwrite -d 'Overwrite existing files' -complete -f -c brew -n '__fish_brew_using_command ln' -l overwrite -d 'Overwrite existing files' -complete -f -c brew -n '__fish_brew_using_command link' -l dry-run -d 'Show what files would be linked or overwritten' -complete -f -c brew -n '__fish_brew_using_command ln' -l dry-run -d 'Show what files would be linked or overwritten' -complete -f -c brew -n '__fish_brew_using_command link' -l force -d 'Allow keg-only formulae to be linked' -complete -f -c brew -n '__fish_brew_using_command ln' -l force -d 'Allow keg-only formulae to be linked' -complete -f -c brew -n '__fish_brew_using_command link' -a '(__fish_brew_installed_formulas)' -complete -f -c brew -n '__fish_brew_using_command ln' -a '(__fish_brew_installed_formulas)' - -# linkapps -complete -f -c brew -n '__fish_brew_needs_command' -a linkapps -d 'Symlink .app bundles into /Applications' -complete -f -c brew -n '__fish_brew_using_command linkapps' -l local -d 'Link .app bundles into ~/Applications instead' - -# list -complete -f -c brew -n '__fish_brew_needs_command' -a 'list ls' -d 'List all installed formula' -complete -f -c brew -n '__fish_brew_using_command list' -l unbrewed -d 'List all files in the Homebrew prefix not installed by brew' -complete -f -c brew -n '__fish_brew_using_command list' -l versions -d 'Show the version number' -complete -f -c brew -n '__fish_brew_using_command list' -l pinned -d 'Show the versions of pinned formulae' -complete -c brew -n '__fish_brew_using_command list' -a '(__fish_brew_formulae)' - -# ls -complete -f -c brew -n '__fish_brew_using_command ls' -l unbrewed -d 'List all files in the Homebrew prefix not installed by brew' -complete -f -c brew -n '__fish_brew_using_command ls' -l versions -d 'Show the version number' -complete -f -c brew -n '__fish_brew_using_command ls' -l pinned -d 'Show the versions of pinned formulae' -complete -c brew -n '__fish_brew_using_command ls' -a '(__fish_brew_formulae)' - -# log -complete -f -c brew -n '__fish_brew_needs_command' -a log -d 'Show log for formula' -complete -c brew -n '__fish_brew_using_command log' -a '(__fish_brew_formulae)' -d 'formula' - -# missing -complete -f -c brew -n '__fish_brew_needs_command' -a missing -d 'Check formula for missing dependencies' -complete -c brew -n '__fish_brew_using_command missing' -a '(__fish_brew_formulae)' -d 'formula' - -# options -complete -f -c brew -n '__fish_brew_needs_command' -a options -d 'Display install options for formula' -complete -f -c brew -n '__fish_brew_using_command options' -l compact -d 'Show all options as a space-delimited list' -complete -f -c brew -n '__fish_brew_using_command options' -l all -d 'Show options for all formulae' -complete -f -c brew -n '__fish_brew_using_command options' -l installed -d 'Show options for all installed formulae' -complete -c brew -n '__fish_brew_using_command options' -a '(__fish_brew_formulae)' -d 'formula' - -# outdated -complete -f -c brew -n '__fish_brew_needs_command' -a outdated -d 'Show formula that have updated versions' -complete -f -c brew -n '__fish_brew_using_command outdated' -l quiet -d 'Display only names' - -# pin -complete -f -c brew -n '__fish_brew_needs_command' -a pin -d 'Pin the specified formulae to their current versions' -complete -f -c brew -n '__fish_brew_using_command pin' -a '(__fish_brew_installed_formulas)' -d 'formula' - -# prune -complete -f -c brew -n '__fish_brew_needs_command' -a prune -d 'Remove dead symlinks' - -# search -complete -f -c brew -n '__fish_brew_needs_command' -a 'search -S' -d 'Search for formula by name' -complete -f -c brew -n '__fish_brew_using_command search' -l macports -d 'Search on MacPorts' -complete -f -c brew -n '__fish_brew_using_command search' -l fink -d 'Search on Fink' -complete -f -c brew -n '__fish_brew_using_command -S' -l macports -d 'Search on MacPorts' -complete -f -c brew -n '__fish_brew_using_command -S' -l fink -d 'Search on Fink' - -# services -complete -f -c brew -n '__fish_brew_needs_command' -a services -d 'Manage Homebrew services' -complete -f -c brew -n '__fish_brew_needs_services_action' -a cleanup -d 'Get rid of stale services and unused plist' -complete -f -c brew -n '__fish_brew_needs_services_action' -a list -d 'List all services managed by Homebrew' -complete -f -c brew -n '__fish_brew_needs_services_action' -a restart -d 'Gracefully restart a service' -complete -f -c brew -n '__fish_brew_needs_services_action' -a start -d 'Start a service' -complete -f -c brew -n '__fish_brew_needs_services_action' -a stop -d 'Stop a service' -complete -f -c brew -n '__fish_brew_is_subcommand_services restart start stop' -a '(__fish_brew_services)' -d 'formula' -complete -f -c brew -n '__fish_brew_is_subcommand_services restart start stop' -l all -d 'All Services' - -# sh -complete -f -c brew -n '__fish_brew_needs_command' -a sh -d 'Instantiate a Homebrew build enviornment' -complete -f -c brew -n '__fish_brew_using_command sh' -l env=std -d 'Use stdenv instead of superenv' - -# tap -complete -f -c brew -n '__fish_brew_needs_command' -a tap -d 'Tap a new formula repository on GitHub' -complete -f -c brew -n '__fish_brew_using_command tap' -l repair -d 'Create and prune tap symlinks as appropriate' - -# test -complete -f -c brew -n '__fish_brew_needs_command' -a test -d 'Run tests for formula' -complete -f -c brew -n '__fish_brew_using_command test' -a '(__fish_brew_installed_formulas)' -d 'formula' - -# uninstall -complete -f -c brew -n '__fish_brew_needs_command' -a 'uninstall remove rm' -d 'Uninstall formula' -complete -f -c brew -n '__fish_brew_using_command uninstall' -a '(__fish_brew_installed_formulas)' -complete -f -c brew -n '__fish_brew_using_command remove' -a '(__fish_brew_installed_formulas)' -complete -f -c brew -n '__fish_brew_using_command rm' -a '(__fish_brew_installed_formulas)' -complete -f -c brew -n '__fish_brew_using_command uninstall' -l force -d 'Delete all installed versions' -complete -f -c brew -n '__fish_brew_using_command remove' -l force -d 'Delete all installed versions' -complete -f -c brew -n '__fish_brew_using_command rm' -l force -d 'Delete all installed versions' - -# unlink -complete -f -c brew -n '__fish_brew_needs_command' -a unlink -d 'Unlink formula' -complete -f -c brew -n '__fish_brew_using_command unlink' -a '(__fish_brew_installed_formulas)' - -# unlinkapps -complete -f -c brew -n '__fish_brew_needs_command' -a unlinkapps -d 'Remove links created by brew linkapps' -complete -f -c brew -n '__fish_brew_using_command unlinkapps' -l local -d 'Remove links from ~/Applications created by brew linkapps' - -# unpack -complete -f -c brew -n '__fish_brew_needs_command' -a unpack -d 'Extract source code' -complete -c brew -n '__fish_brew_using_command unpack' -a '(__fish_brew_formulae)' - -# unpin -complete -f -c brew -n '__fish_brew_needs_command' -a unpin -d 'Unpin specified formulae' -complete -f -c brew -n '__fish_brew_using_command unpin' -a '(__fish_brew_pinned_formulas)' - -# untap -complete -f -c brew -n '__fish_brew_needs_command' -a untap -d 'Remove a tapped repository' -complete -f -c brew -n '__fish_brew_using_command untap' -a '(__fish_brew_taps)' - -# update -complete -f -c brew -n '__fish_brew_needs_command' -a update -d 'Fetch newest version of Homebrew and formulas' -complete -f -c brew -n '__fish_brew_using_command update' -l rebase -d 'Use git pull --rebase' - -# update-reset -complete -f -c brew -n '__fish_brew_needs_command' -a update-reset -d 'Reset all Homebrew taps to upstream state' - -# upgrade -complete -f -c brew -n '__fish_brew_needs_command' -a upgrade -d 'Upgrade outdated brews' -complete -f -c brew -n '__fish_brew_using_command upgrade' -a '(__fish_brew_outdated_formulas)' - -# uses -complete -f -c brew -n '__fish_brew_needs_command' -a uses -d 'Show formulas that depend on specified formula' -complete -f -c brew -n '__fish_brew_using_command uses' -l installed -d 'List only installed formulae' -complete -f -c brew -n '__fish_brew_using_command uses' -l recursive -d 'Resolve more than one level of dependencies' -complete -c brew -n '__fish_brew_using_command uses' -a '(__fish_brew_formulae)' - - -################# -# brew switches # -################# - -complete -f -c brew -n '__fish_brew_needs_command' -a '-v --version' -d 'Print version number of brew' -complete -f -c brew -n '__fish_brew_needs_command' -l env -x -d 'Show Homebrew a summary of the build environment' -complete -f -c brew -n '__fish_brew_needs_command' -l repository -x -d 'Display where Homebrew\'s .git directory is located' -complete -f -c brew -n '__fish_brew_needs_command' -l config -x -d 'Show Homebrew and system configuration' - -# --prefix -complete -f -c brew -n '__fish_brew_needs_command' -l prefix -d 'Display Homebrew\'s install path' -complete -f -c brew -n '__fish_brew_using_command --prefix' -a '(__fish_brew_formulae)' -d 'Display formula\'s install path' - -# --cache -complete -f -c brew -n '__fish_brew_needs_command' -l cache -d 'Display Homebrew\'s download cache' -complete -f -c brew -n '__fish_brew_needs_command' -n '__fish_brew_using_command --cache' -a '(__fish_brew_formulae)' -d 'Display the file or directory used to cache formula' - -# --cellar -complete -f -c brew -n '__fish_brew_needs_command' -l cellar -d 'Display Homebrew\'s Cellar path' -complete -f -c brew -n '__fish_brew_using_command --cellar' -a '(__fish_brew_formulae)' -d 'Display formula\'s install path in Cellar' - - -###################### -# brew cask commands # -##################### - -# audit -complete -f -c brew -n '__fish_brew_needs_cask_action' -a audit -d 'Audit casks, add token to audit specific cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask audit' -a '(__fish_brew_casks)' - -# cat -complete -f -c brew -n '__fish_brew_needs_cask_action' -a cat -d 'Display cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask cat' -a '(__fish_brew_casks)' - - -# cleanup -complete -f -c brew -n '__fish_brew_needs_cask_action' -a cleanup -d 'Cleans up cached downloads and tracker symlinks' -complete -f -c brew -n '__fish_brew_is_subcommand_cask cleanup' -l outdated -d 'Only clean cached downloads older than 10 days' - -# create -complete -f -c brew -n '__fish_brew_needs_cask_action' -a create -d 'Create a new cask' - -# doctor/dr -complete -f -c brew -n '__fish_brew_needs_cask_action' -a 'doctor dr' -d 'Checks for configuration issues' - -# edit -complete -f -c brew -n '__fish_brew_needs_cask_action' -a edit -d 'Edit cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask edit' -a '(__fish_brew_casks)' - -# fetch -complete -f -c brew -n '__fish_brew_needs_cask_action' -a fetch -d 'Fetch cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask fetch' -l force -d 'Force a redownload of cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask fetch' -a '(__fish_brew_casks)' - -# home -complete -f -c brew -n '__fish_brew_needs_cask_action' -a 'home homepage' -d 'Open cask/cask\'s homepage' -complete -f -c brew -n '__fish_brew_is_subcommand_cask home' -a '(__fish_brew_casks)' - -# homepage -complete -f -c brew -n '__fish_brew_is_subcommand_cask homepage' -a '(__fish_brew_casks_installed)' - -# info -complete -f -c brew -n '__fish_brew_needs_cask_action' -a 'info abv' -d 'Dislay info about cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask info' -a '(__fish_brew_casks)' - -# adv -complete -f -c brew -n '__fish_brew_is_subcommand_cask abv' -a '(__fish_brew_casks)' - -# install -complete -f -c brew -n '__fish_brew_needs_cask_action' -a install -d 'Install cask indentified by token' -complete -f -c brew -n '__fish_brew_is_subcommand_cask install' -l force -d 'Force install of cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask install' -l require-sha -d 'Require SHA, fails otherwise' -complete -f -c brew -n '__fish_brew_is_subcommand_cask install' -l skip-cask-deps -d 'Skip any cask dependencies' -complete -c brew -n '__fish_brew_is_subcommand_cask install' -a '(__fish_brew_casks)' - -# list -complete -f -c brew -n '__fish_brew_needs_cask_action' -a 'list ls' -d 'List installed casks' -complete -f -c brew -n '__fish_brew_is_subcommand_cask list' -s 1 -d 'Format output as a single column' -complete -f -c brew -n '__fish_brew_is_subcommand_cask list' -l versions -d 'Show all installed versions' -complete -f -c brew -n '__fish_brew_is_subcommand_cask list' -a '(__fish_brew_casks_installed)' -d 'List staged files' - -# ls -complete -f -c brew -n '__fish_brew_is_subcommand_cask ls' -s 1 -d 'Format output as a single column' -complete -f -c brew -n '__fish_brew_is_subcommand_cask ls' -l versions -d 'Show all installed versions' -complete -f -c brew -n '__fish_brew_is_subcommand_cask ls' -a '(__fish_brew_casks_installed)' -d 'List staged files' - -# outdated -complete -f -c brew -n '__fish_brew_needs_cask_action' -a outdated -d 'List outdated casks' -complete -f -c brew -n '__fish_brew_is_subcommand_cask outdated' -l greedy -d 'Include casks having auto_updates true or version :latest' -complete -f -c brew -n '__fish_brew_is_subcommand_cask outdated' -l quiet -d 'Suppresses the display of versions' -complete -f -c brew -n '__fish_brew_is_subcommand_cask outdated' -l verbose -d 'Forces the display of the outdated and latest version' -complete -f -c brew -n '__fish_brew_is_subcommand_cask outdated' -a '(__fish_brew_casks_installed)' - -# reinstall -complete -f -c brew -n '__fish_brew_needs_cask_action' -a reinstall -d 'Reinstall cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask reinstall' -a '(__fish_brew_casks_installed)' - -# search -complete -f -c brew -n '__fish_brew_needs_cask_action' -a 'search -S' -d 'Search all known casks. RexEx by delimiting using /regex/' - -# style -complete -f -c brew -n '__fish_brew_needs_cask_action' -a style -d 'Check all or the given casks for correct style using RuboCop' -complete -f -c brew -n '__fish_brew_is_subcommand_cask style' -l fix -d 'Auto-correct any style errors if possible' -complete -f -c brew -n '__fish_brew_is_subcommand_cask style' -a '(__fish_brew_casks)' - -# uninstall -complete -f -c brew -n '__fish_brew_needs_cask_action' -a 'remove rm uninstall' -d 'Uninstall cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask uninstall' -l force -d 'Force the uninstall' -complete -f -c brew -n '__fish_brew_is_subcommand_cask uninstall' -a '(__fish_brew_casks_installed)' - -# remove -complete -f -c brew -n '__fish_brew_is_subcommand_cask remove' -l force -d 'Force the uninstall' -complete -f -c brew -n '__fish_brew_is_subcommand_cask remove' -a '(__fish_brew_casks_installed)' - -# rm -complete -f -c brew -n '__fish_brew_is_subcommand_cask rm' -l force -d 'Force the uninstall' -complete -f -c brew -n '__fish_brew_is_subcommand_cask rm' -a '(__fish_brew_casks_installed)' - -# upgrade -complete -f -c brew -n '__fish_brew_needs_cask_action' -a upgrade -d 'Upgrade all or given cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask upgrade' -l force -d 'Force upgrade' -complete -f -c brew -n '__fish_brew_is_subcommand_cask upgrade' -l greedy -d 'Include casks having auto_updates true or version :latest' -complete -f -c brew -n '__fish_brew_is_subcommand_cask upgrade' -a '(__fish_brew_casks_installed)' - -# zap -complete -f -c brew -n '__fish_brew_needs_cask_action' -a zap -d 'Unconditionally remove all files associated with the given Cask' -complete -f -c brew -n '__fish_brew_is_subcommand_cask zap' -a '(__fish_brew_casks_installed)' - - -###################### -# brew cask switches # -###################### - -# version -complete -f -c brew -n '__fish_brew_needs_cask_action' -a --version -d 'Print version number of Caskroom' +# Completions for brew are maintained upstream. +# They should be installed with brew, +# and PRs should be directed to https://github.com/Homebrew/brew/blob/master/completions/fish/brew.fish. diff --git a/share/completions/btrfs.fish b/share/completions/btrfs.fish new file mode 100644 index 000000000..9db3c5712 --- /dev/null +++ b/share/completions/btrfs.fish @@ -0,0 +1,428 @@ +# Completions for btrfs-progs + +# Todo: +# - (Done) Detailed options per command +# - Simplified duplicate options completion with `for` +# - Simplified descriptions + +# Filter the completions per primary command +function __btrfs_commands + if not set -q argv[1] + return 1 + end + set -l cmd (commandline -cp) + if string match -qr -- "btrfs\s+$argv[1]\s+\S*" $cmd + return 0 + end + return 1 +end + +# Filter the completions per command group +function __btrfs_command_groups + if not set -q argv[1] + return 1 + end + set -l cmd (commandline -cp) + if set -q argv[2] + if string match -qr -- "btrfs\s+$argv[1]\s+$argv[2]\s+\S*" $cmd + return 0 + end + return 1 + end + if string match -qr -- "btrfs\s+$argv[1]\s+\S*\$" $cmd + return 0 + end + return 1 +end + +set -l check '__btrfs_commands check' +set -l restore '__btrfs_commands restore' +set -l send '__btrfs_commands send' +set -l receive '__btrfs_commands receive' +set -l help '__btrfs_commands help' + +set -l subvolume '__btrfs_command_groups subvolume' +set -l filesystem '__btrfs_command_groups filesystem' +set -l balance '__btrfs_command_groups balance' +set -l device '__btrfs_command_groups device' +set -l scrub '__btrfs_command_groups scrub' +set -l rescue '__btrfs_command_groups rescue' +set -l inspect_internal '__btrfs_command_groups inspect-internal' +set -l property '__btrfs_command_groups property' +set -l quota '__btrfs_command_groups quota' +set -l qgroup '__btrfs_command_groups qgroup' +set -l replace '__btrfs_command_groups replace' + +# Global command +complete -f -c btrfs -l help -d 'Display help information' + +# Primary command +complete -f -c btrfs -n '__fish_is_first_arg' -a check -d 'Check structural integrity of a filesystem (unmounted).' +complete -f -c btrfs -n '__fish_is_first_arg' -a restore -d 'Try to restore files from a damaged filesystem (unmounted)' +complete -f -c btrfs -n '__fish_is_first_arg' -a send -d 'Send the subvolume(s) to stdout.' +complete -f -c btrfs -n '__fish_is_first_arg' -a receive -d 'Receive subvolumes from a stream' +complete -f -c btrfs -n '__fish_is_first_arg' -a help -d 'Display help information' +complete -f -c btrfs -n '__fish_is_first_arg' -a version -d 'Display btrfs-progs version' + +# Primary command groups +complete -f -c btrfs -n '__fish_is_first_arg' -a subvolume -d 'manage subvolumes: create, delete, list, etc' +complete -f -c btrfs -n '__fish_is_first_arg' -a filesystem -d 'overall filesystem tasks and information' +complete -f -c btrfs -n '__fish_is_first_arg' -a balance -d 'balance data across devices, or change block groups using filters' +complete -f -c btrfs -n '__fish_is_first_arg' -a device -d 'manage and query devices in the filesystem' +complete -f -c btrfs -n '__fish_is_first_arg' -a scrub -d 'verify checksums of data and metadata' +complete -f -c btrfs -n '__fish_is_first_arg' -a rescue -d 'toolbox for specific rescue operations' +complete -f -c btrfs -n '__fish_is_first_arg' -a inspect-internal -d 'query various internal information' +complete -f -c btrfs -n '__fish_is_first_arg' -a property -d 'modify properties of filesystem objects' +complete -f -c btrfs -n '__fish_is_first_arg' -a quota -d 'manage filesystem quota settings' +complete -f -c btrfs -n '__fish_is_first_arg' -a qgroup -d 'manage quota groups' +complete -f -c btrfs -n '__fish_is_first_arg' -a replace -d 'replace a device in the filesystem' + +# btrfs check +complete -f -c btrfs -n $check -s s -l super -d 'Use this SUPERBLOCK copy' +complete -f -c btrfs -n $check -s b -l backup -d 'Use the first valid BACKUP root copy' +complete -f -c btrfs -n $check -s r -l tree-root -d 'Use the given bytenr for the TREE root' +complete -f -c btrfs -n $check -l chunk-root -d 'Use the given bytenr for the CHUNK-TREE root' +complete -f -c btrfs -n $check -l readonly -d 'Run in read-only mode' +complete -f -c btrfs -n $check -l repair -d 'Try to repair the filesystem' +complete -f -c btrfs -n $check -l force -d 'Skip mount checks, repair is not possible' +complete -f -c btrfs -n $check -l mode -d 'Allows choice of memory/IO trade-offs' -ra '{original,lowmem}' +complete -f -c btrfs -n $check -l init-csum-tree -d 'Create a new CRC tree (repair only)' +complete -f -c btrfs -n $check -l init-extent-tree -d 'Create a new extent tree (repair only)' +complete -f -c btrfs -n $check -l clear-space-cache -d 'clear space cache (repair only)' -ra '{v1,v2}' +complete -f -c btrfs -n $check -l check-data-csum -d 'Verify checksums of data blocks' +complete -f -c btrfs -n $check -s Q -l qgroup-report -d 'Print a report on qgroup consistency' +complete -f -c btrfs -n $check -s E -l subvol-extents -d 'Print subvolume extents and sharing state' +complete -f -c btrfs -n $check -s p -l progress -d 'Indicate progress' + +# btrfs restore +complete -f -c btrfs -n $restore -s s -l snapshots -d 'Get snapshots' +complete -f -c btrfs -n $restore -s x -l xattr -d 'Restore extended attributes' +complete -f -c btrfs -n $restore -s m -l metadata -d 'Restore owner, mode and times' +complete -f -c btrfs -n $restore -s S -l symlink -d 'Restore symbolic links' +complete -f -c btrfs -n $restore -s v -l verbose -d 'Verbose' +complete -f -c btrfs -n $restore -s i -l ignore-errors -d 'Ignore errors' +complete -f -c btrfs -n $restore -s o -l overwrite -d 'Overwrite' +complete -f -c btrfs -n $restore -s t -d 'Tree location' +complete -f -c btrfs -n $restore -s f -d 'Filesystem location' +complete -f -c btrfs -n $restore -s u -l super -d 'Super mirror' +complete -f -c btrfs -n $restore -s r -l root -d 'Root objectid' +complete -f -c btrfs -n $restore -s d -d 'Find dir' +complete -f -c btrfs -n $restore -s l -l list-roots -d 'List tree roots' +complete -f -c btrfs -n $restore -s D -l dry-run -d 'Only list files that would be recovered' +complete -f -c btrfs -n $restore -l path-regex -d 'Restore only filenames matching regex' +complete -f -c btrfs -n $restore -s c -d 'Ignore case (--path-regex only)' + +# btrfs send +complete -f -c btrfs -n $send -s e -d '' +complete -f -c btrfs -n $send -s p -d 'Send an incremental stream from to ' +complete -f -c btrfs -n $send -s c -d 'Use this snapshot as a clone source for an incremental send' +complete -f -c btrfs -n $send -s f -d 'Output is normally written to stdout' +complete -f -c btrfs -n $send -l no-data -d 'send in NO_FILE_DATA mode' +complete -f -c btrfs -n $send -s v -l verbose -d 'Enable verbose output to stderr' +complete -f -c btrfs -n $send -s q -l quiet -d 'Suppress all messages, except errors' + +# btrfs receive +complete -f -c btrfs -n $receive -s v -d 'Increase verbosity about performed actions' +complete -f -c btrfs -n $receive -s q -l quiet -d 'Suppress all messages, except errors' +complete -f -c btrfs -n $receive -s f -d 'Read the stream from FILE instead of stdin' +complete -f -c btrfs -n $receive -s e -d 'Terminate after receiving an marker in the stream' +complete -f -c btrfs -n $receive -s C -l chroot -d 'Confine the process to using chroot' +complete -f -c btrfs -n $receive -s E -l max-errors -d 'Terminate when NUMBER errors occur' +complete -f -c btrfs -n $receive -s m -d 'The root mount point of the destination filesystem' +complete -f -c btrfs -n $receive -l dump -d 'Dump stream metadata' + +# btrfs help +complete -f -c btrfs -n $help -l full -d 'Display detailed help on every command' +complete -f -c btrfs -n $help -l box -d 'Show list of built-in tools (busybox style)' + +# btrfs subvolume +complete -f -c btrfs -n $subvolume -a create -d 'Create a subvolume' +complete -f -c btrfs -n $subvolume -a delete -d 'Delete subvolume(s)' +complete -f -c btrfs -n $subvolume -a list -d 'List subvolumes and snapshots in the filesystem.' +complete -f -c btrfs -n $subvolume -a snapshot -d 'Create a snapshot of the subvolume' +complete -f -c btrfs -n $subvolume -a get-default -d 'Get the default subvolume of a filesystem' +complete -f -c btrfs -n $subvolume -a set-default -d 'Set the default subvolume of the filesystem mounted as default.' +complete -f -c btrfs -n $subvolume -a find-new -d 'List the recently modified files in a filesystem' +complete -f -c btrfs -n $subvolume -a show -d 'Show more information about the subvolume' +complete -f -c btrfs -n $subvolume -a sync -d 'Wait until given subvolume(s) are completely removed from the filesystem.' +# btrfs subvolume create +complete -f -c btrfs -n '__btrfs_command_groups subvolume create' -s i -d 'Add subvolume to a qgroup (can be given multiple times)' +# btrfs subvolume delete +complete -f -c btrfs -n '__btrfs_command_groups subvolume delete' -s c -l commit-after -d 'Wait for transaction commit at the end of the operation' +complete -f -c btrfs -n '__btrfs_command_groups subvolume delete' -s C -l commit-each -d 'Wait for transaction commit after deleting each subvolume' +complete -f -c btrfs -n '__btrfs_command_groups subvolume delete' -s v -l verbose -d 'Verbose output of operations' +# btrfs subvolume list +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s o -d 'Print only subvolumes below specified path' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s a -d 'Print all the subvolumes and absolute and relative path' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s p -d 'Print parent ID' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s c -d 'Print the ogeneration of the subvolume' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s g -d 'Print the generation of the subvolume' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s u -d 'Print the uuid of subvolumes (and snapshots)' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s q -d 'Print the parent uuid of the snapshots' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s R -d 'Print the uuid of the received snapshots' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s s -d 'List only snapshots' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s r -d 'List readonly subvolumes (including snapshots)' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s d -d 'List deleted subvolumes that are not yet cleaned' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s t -d 'Print the result as a table' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s G -d 'Filter the subvolumes by generation' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -s C -d 'Filter the subvolumes by ogeneration' +complete -f -c btrfs -n '__btrfs_command_groups subvolume list' -l sort -d 'List the subvolume in order' -a '{gen,ogen,rootid,path}' +# btrfs subvolume snapshot +complete -f -c btrfs -n '__btrfs_command_groups subvolume snapshot' -s r -d 'Create a readonly snapshot' +complete -f -c btrfs -n '__btrfs_command_groups subvolume snapshot' -s i -d 'Add snapshot to a qgroup (can be given multiple times)' +# btrfs subvolume show +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -s r -l rootid -d 'Show rootid of the subvolume' +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -s u -l uuid -d 'Show uuid of the subvolume' +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -s b -l raw -d 'Show raw numbers in bytes' +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -s h -l human-readable -d 'Show human friendly numbers, base 1024' +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -s H -d 'Show human friendly numbers, base 1000' +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -l iec -d 'Use 1024 as a base (KiB, MiB, GiB, TiB)' +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -l si -d 'Use 1000 as a base (kB, MB, GB, TB)' +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -s k -l kbytes -d 'Show sizes in KiB, or kB with --si' +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -s m -l mbytes -d 'Show sizes in MiB, or MB with --si' +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -s g -l gbytes -d 'Show sizes in GiB, or GB with --si' +complete -f -c btrfs -n '__btrfs_command_groups subvolume show' -s t -l tbytes -d 'Show sizes in TiB, or TB with --si' +# btrfs subvolume sync +complete -f -c btrfs -n '__btrfs_command_groups subvolume sync' -s s -d 'Sleep NUMBER seconds between checks' + +# btrfs filesystem +complete -f -c btrfs -n $filesystem -a df -d 'Show space usage information for a mount point' +complete -f -c btrfs -n $filesystem -a du -d 'Summarize disk usage of each file.' +complete -f -c btrfs -n $filesystem -a show -d 'Show the structure of a filesystem' +complete -f -c btrfs -n $filesystem -a sync -d 'Force a sync on a filesystem' +complete -f -c btrfs -n $filesystem -a defragment -d 'Defragment a file or a directory' +complete -f -c btrfs -n $filesystem -a resize -d 'Resize a filesystem' +complete -f -c btrfs -n $filesystem -a label -d 'Get or change the label of a filesystem' +complete -f -c btrfs -n $filesystem -a usage -d 'Show detailed information about internal filesystem usage.' +# btrfs filesystem df +complete -f -c btrfs -n '__btrfs_command_groups filesystem df' -s b -l raw -d 'Show raw numbers in bytes' +complete -f -c btrfs -n '__btrfs_command_groups filesystem df' -s h -l human-readable -d 'Show human friendly numbers, base 1024' +complete -f -c btrfs -n '__btrfs_command_groups filesystem df' -s H -d 'Show human friendly numbers, base 1000' +complete -f -c btrfs -n '__btrfs_command_groups filesystem df' -l iec -d 'Use 1024 as a base (KiB, MiB, GiB, TiB)' +complete -f -c btrfs -n '__btrfs_command_groups filesystem df' -l si -d 'Use 1000 as a base (kB, MB, GB, TB)' +complete -f -c btrfs -n '__btrfs_command_groups filesystem df' -s k -l kbytes -d 'Show sizes in KiB, or kB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem df' -s m -l mbytes -d 'Show sizes in MiB, or MB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem df' -s g -l gbytes -d 'Show sizes in GiB, or GB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem df' -s t -l tbytes -d 'Show sizes in TiB, or TB with --si' +# btrfs filesystem du +complete -f -c btrfs -n '__btrfs_command_groups filesystem du' -s s -l summarize -d 'Display only a total for each argument' +complete -f -c btrfs -n '__btrfs_command_groups filesystem du' -l raw -d 'Show raw numbers in bytes' +complete -f -c btrfs -n '__btrfs_command_groups filesystem du' -l human-readable -d 'Show human friendly numbers, base 1024' +complete -f -c btrfs -n '__btrfs_command_groups filesystem du' -l iec -d 'Use 1024 as a base (KiB, MiB, GiB, TiB)' +complete -f -c btrfs -n '__btrfs_command_groups filesystem du' -l si -d 'Use 1000 as a base (kB, MB, GB, TB)' +complete -f -c btrfs -n '__btrfs_command_groups filesystem du' -l kbytes -d 'Show sizes in KiB, or kB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem du' -l mbytes -d 'Show sizes in MiB, or MB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem du' -l gbytes -d 'Show sizes in GiB, or GB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem du' -l tbytes -d 'Show sizes in TiB, or TB with --si' +# btrfs filesystem show +complete -f -c btrfs -n '__btrfs_command_groups filesystem show' -s d -l all-devices -d 'Show only disks under /dev containing btrfs filesystem' +complete -f -c btrfs -n '__btrfs_command_groups filesystem show' -s m -l mounted -d 'Show only mounted btrfs' +complete -f -c btrfs -n '__btrfs_command_groups filesystem show' -l raw -d 'Show raw numbers in bytes' +complete -f -c btrfs -n '__btrfs_command_groups filesystem show' -l human-readable -d 'Show human friendly numbers, base 1024' +complete -f -c btrfs -n '__btrfs_command_groups filesystem show' -l iec -d 'Use 1024 as a base (KiB, MiB, GiB, TiB)' +complete -f -c btrfs -n '__btrfs_command_groups filesystem show' -l si -d 'Use 1000 as a base (kB, MB, GB, TB)' +complete -f -c btrfs -n '__btrfs_command_groups filesystem show' -l kbytes -d 'Show sizes in KiB, or kB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem show' -l mbytes -d 'Show sizes in MiB, or MB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem show' -l gbytes -d 'Show sizes in GiB, or GB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem show' -l tbytes -d 'Show sizes in TiB, or TB with --si' +# btrfs filesystem defragment +complete -f -c btrfs -n '__btrfs_command_groups filesystem defragment' -s v -d 'Be verbose' +complete -f -c btrfs -n '__btrfs_command_groups filesystem defragment' -s r -d 'Defragment files recursively' +complete -f -c btrfs -n '__btrfs_command_groups filesystem defragment' -s c -d 'Compress the file while defragmenting' -ra '{zlib,lzo,zstd}' +complete -f -c btrfs -n '__btrfs_command_groups filesystem defragment' -s f -d 'Flush data to disk immediately after defragmenting' +complete -f -c btrfs -n '__btrfs_command_groups filesystem defragment' -s s -d 'Defragment only from NUMBER byte onward' +complete -f -c btrfs -n '__btrfs_command_groups filesystem defragment' -s l -d 'Defragment only up to LEN bytes' +complete -f -c btrfs -n '__btrfs_command_groups filesystem defragment' -s t -d 'Target extent SIZE hint' +# btrfs filesystem usage +complete -f -c btrfs -n '__btrfs_command_groups filesystem usage' -s b -l raw -d 'Show raw numbers in bytes' +complete -f -c btrfs -n '__btrfs_command_groups filesystem usage' -s h -l human-readable -d 'Show human friendly numbers, base 1024' +complete -f -c btrfs -n '__btrfs_command_groups filesystem usage' -s H -d 'Show human friendly numbers, base 1000' +complete -f -c btrfs -n '__btrfs_command_groups filesystem usage' -l iec -d 'Use 1024 as a base (KiB, MiB, GiB, TiB)' +complete -f -c btrfs -n '__btrfs_command_groups filesystem usage' -l si -d 'Use 1000 as a base (kB, MB, GB, TB)' +complete -f -c btrfs -n '__btrfs_command_groups filesystem usage' -s k -l kbytes -d 'Show sizes in KiB, or kB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem usage' -s m -l mbytes -d 'Show sizes in MiB, or MB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem usage' -s g -l gbytes -d 'Show sizes in GiB, or GB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem usage' -s t -l tbytes -d 'Show sizes in TiB, or TB with --si' +complete -f -c btrfs -n '__btrfs_command_groups filesystem usage' -s T -d 'Show data in tabular format' + +# btrfs balance +complete -f -c btrfs -n $balance -a start -d 'Balance chunks across the devices' +complete -f -c btrfs -n $balance -a pause -d 'Pause running balance' +complete -f -c btrfs -n $balance -a cancel -d 'Cancel running or paused balance' +complete -f -c btrfs -n $balance -a resume -d 'Resume interrupted balance' +complete -f -c btrfs -n $balance -a status -d 'Show status of running or paused balance' +# btrfs balance start +complete -f -c btrfs -n '__btrfs_command_groups balance start' -s d -d 'Act on data chunks with FILTERS' +complete -f -c btrfs -n '__btrfs_command_groups balance start' -s m -d 'Act on metadata chunks with FILTERS' +complete -f -c btrfs -n '__btrfs_command_groups balance start' -s s -d 'Act on system chunks with FILTERS (only under -f)' +complete -f -c btrfs -n '__btrfs_command_groups balance start' -s v -d 'Be verbose' +complete -f -c btrfs -n '__btrfs_command_groups balance start' -s f -d 'Force a reduction of metadata integrity' +complete -f -c btrfs -n '__btrfs_command_groups balance start' -l full-balance -d 'Do not print warning and do not delay start' +complete -f -c btrfs -n '__btrfs_command_groups balance start' -l background -l bg -d 'Run the balance as a background process' +# btrfs balance status +complete -f -c btrfs -n '__btrfs_command_groups balance status' -s v -d 'Be verbose' + +# btrfs device +complete -f -c btrfs -n $device -a add -d 'Add one or more devices to a mounted filesystem.' +complete -f -c btrfs -n $device -a delete -d 'Remove a device from a filesystem' +complete -f -c btrfs -n $device -a remove -d 'Remove a device from a filesystem' +complete -f -c btrfs -n $device -a scan -d 'Scan or forget (unregister) devices of btrfs filesystems' +complete -f -c btrfs -n $device -a ready -d 'Check and wait until a group of devices of a filesystem is ready for mount' +complete -f -c btrfs -n $device -a stats -d 'Show device IO error statistics' +complete -f -c btrfs -n $device -a usage -d 'Show detailed information about internal allocations in devices.' +# btrfs device add +complete -f -c btrfs -n '__btrfs_command_groups device add' -s K -l nodiscard -d 'Do not perform TRIM on DEVICES' +complete -f -c btrfs -n '__btrfs_command_groups device add' -s f -l force -d 'Force overwrite existing filesystem on the disk' +# btrfs device scan +complete -f -c btrfs -n '__btrfs_command_groups device scan' -s d -l all-devices -d 'Enumerate and register all devices' +complete -f -c btrfs -n '__btrfs_command_groups device scan' -s u -l forget -d 'Unregister a given device or all stale devices' +# btrfs device stats +complete -f -c btrfs -n '__btrfs_command_groups device stats' -s c -l check -d 'Return non-zero if any stat counter is not zero' +complete -f -c btrfs -n '__btrfs_command_groups device stats' -s z -l reset -d 'Show current stats and reset values to zero' +# btrfs device usage +complete -f -c btrfs -n '__btrfs_command_groups device usage' -s b -l raw -d 'Show raw numbers in bytes' +complete -f -c btrfs -n '__btrfs_command_groups device usage' -s h -l human-readable -d 'Show human friendly numbers, base 1024' +complete -f -c btrfs -n '__btrfs_command_groups device usage' -s H -d 'Show human friendly numbers, base 1000' +complete -f -c btrfs -n '__btrfs_command_groups device usage' -l iec -d 'Use 1024 as a base (KiB, MiB, GiB, TiB)' +complete -f -c btrfs -n '__btrfs_command_groups device usage' -l si -d 'Use 1000 as a base (kB, MB, GB, TB)' +complete -f -c btrfs -n '__btrfs_command_groups device usage' -s k -l kbytes -d 'Show sizes in KiB, or kB with --si' +complete -f -c btrfs -n '__btrfs_command_groups device usage' -s m -l mbytes -d 'Show sizes in MiB, or MB with --si' +complete -f -c btrfs -n '__btrfs_command_groups device usage' -s g -l gbytes -d 'Show sizes in GiB, or GB with --si' +complete -f -c btrfs -n '__btrfs_command_groups device usage' -s t -l tbytes -d 'Show sizes in TiB, or TB with --si' + +# btrfs scrub +complete -f -c btrfs -n $scrub -a start -d 'Start a new scrub. If a scrub is already running, the new one fails.' +complete -f -c btrfs -n $scrub -a cancel -d 'Cancel a running scrub' +complete -f -c btrfs -n $scrub -a resume -d 'Resume previously canceled or interrupted scrub' +complete -f -c btrfs -n $scrub -a status -d 'Show status of running or finished scrub' +# btrfs scrub start +complete -f -c btrfs -n '__btrfs_command_groups scrub start' -s B -d 'Do not background' +complete -f -c btrfs -n '__btrfs_command_groups scrub start' -s d -d 'Stats per device (-B only)' +complete -f -c btrfs -n '__btrfs_command_groups scrub start' -s q -d 'Be quiet' +complete -f -c btrfs -n '__btrfs_command_groups scrub start' -s r -d 'Read only mode' +complete -f -c btrfs -n '__btrfs_command_groups scrub start' -s R -d 'Raw print mode, print full data instead of summary' +complete -f -c btrfs -n '__btrfs_command_groups scrub start' -s c -d 'Set ioprio class (see ionice(1) manpage)' +complete -f -c btrfs -n '__btrfs_command_groups scrub start' -s n -d 'Set ioprio classdata (see ionice(1) manpage)' +complete -f -c btrfs -n '__btrfs_command_groups scrub start' -s f -d 'Force starting new scrub' +# btrfs scrub resume +complete -f -c btrfs -n '__btrfs_command_groups scrub resume' -s B -d 'Do not background' +complete -f -c btrfs -n '__btrfs_command_groups scrub resume' -s d -d 'Stats per device (-B only)' +complete -f -c btrfs -n '__btrfs_command_groups scrub resume' -s q -d 'Be quiet' +complete -f -c btrfs -n '__btrfs_command_groups scrub resume' -s r -d 'Read only mode' +complete -f -c btrfs -n '__btrfs_command_groups scrub resume' -s R -d 'Raw print mode, print full data instead of summary' +complete -f -c btrfs -n '__btrfs_command_groups scrub resume' -s c -d 'Set ioprio class (see ionice(1) manpage)' +complete -f -c btrfs -n '__btrfs_command_groups scrub resume' -s n -d 'Set ioprio classdata (see ionice(1) manpage)' +# btrfs scrub status +complete -f -c btrfs -n '__btrfs_command_groups scrub status' -s d -d 'Stats per DEVICE' +complete -f -c btrfs -n '__btrfs_command_groups scrub status' -s R -d 'Print raw stats' + +# btrfs rescue +complete -f -c btrfs -n $rescue -a chunk-recover -d 'Recover the chunk tree by scanning the devices one by one.' +complete -f -c btrfs -n $rescue -a super-recover -d 'Recover bad superblocks from good copies' +complete -f -c btrfs -n $rescue -a zero-log -d 'Clear the tree log. Usable if it\'s corrupted and prevents mount.' +complete -f -c btrfs -n $rescue -a fix-device-size -d 'Re-align device and super block sizes. Usable if newer kernel refuse to mount it due to mismatch super size' +# btrfs rescue chunk-recover +complete -f -c btrfs -n '__btrfs_command_groups rescue chunk-recover' -s y -d 'Assume an answer of YES to all questions' +complete -f -c btrfs -n '__btrfs_command_groups rescue chunk-recover' -s v -d 'Verbose mode' +# btrfs rescue super-recover +complete -f -c btrfs -n '__btrfs_command_groups rescue super-recover' -s y -d 'Assume an answer of YES to all questions' +complete -f -c btrfs -n '__btrfs_command_groups rescue super-recover' -s v -d 'Verbose mode' + +# btrfs inspect-internal +complete -f -c btrfs -n $inspect_internal -a inode-resolve -d 'Get file system paths for the given inode' +complete -f -c btrfs -n $inspect_internal -a logical-resolve -d 'Get file system paths for the given logical address' +complete -f -c btrfs -n $inspect_internal -a subvolid-resolve -d 'Get file system paths for the given subvolume ID.' +complete -f -c btrfs -n $inspect_internal -a rootid -d 'Get tree ID of the containing subvolume of path.' +complete -f -c btrfs -n $inspect_internal -a min-dev-size -d 'Get the minimum size the device can be shrunk to. The device id 1 is used by default.' +complete -f -c btrfs -n $inspect_internal -a dump-tree -d 'Dump tree structures from a given device' +complete -f -c btrfs -n $inspect_internal -a dump-super -d 'Dump superblock from a device in a textual form' +complete -f -c btrfs -n $inspect_internal -a tree-stats -d 'Print various stats for trees' +# btrfs inspect-internal inode-resolve +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal inode-resolve' -s v -d 'Verbose mode' +# btrfs inspect-internal logical-resolve +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal logical-resolve' -s P -d 'Skip the path resolving and print the inodes instead' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal logical-resolve' -s v -d 'Verbose mode' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal logical-resolve' -s s -d 'Set inode container\'s SIZE' +# btrfs inspect-internal min-dev-size +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal min-dev-size' -l id -d 'Specify the DEVICE-ID to query' +# btrfs inspect-internal dump-tree +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -s e -l extents -d 'Print only extent info: extent and device trees' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -s d -l device -d 'Print only device info: tree root, chunk and device trees' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -s r -l roots -d 'Print only short root node info' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -s R -l backups -d 'Print short root node info and backup root info' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -s u -l uuid -d 'Print only the uuid tree' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -s b -l block -d 'Print info from the specified BLOCK only' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -s t -l tree -d 'Print only tree with the given ID' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -l follow -d 'Use with -b, to show all children tree blocks of ' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -l noscan -d 'Do not scan the devices from the filesystem' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -l bfs -d 'Breadth-first traversal of the trees, print nodes, then leaves' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-tree' -l dfs -d 'Depth-first traversal of the trees' +# btrfs inspect-internal dump-super +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-super' -s f -l full -d 'Print full superblock information, backup roots etc.' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-super' -s a -l all -d 'Print information about all superblocks' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-super' -s s -l super -d 'Specify which SUPER-BLOCK copy to print out' -ra '{0,1,2}' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-super' -s F -l force -d 'Attempt to dump superblocks with bad magic' +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal dump-super' -l bytenr -d 'Specify alternate superblock OFFSET' +# btrfs inspect-internal tree-stats +complete -f -c btrfs -n '__btrfs_command_groups inspect-internal tree-stats' -s b -d 'Show raw numbers in bytes' + +# btrfs property +complete -f -c btrfs -n $property -a get -d 'Get a property value of a btrfs object' +complete -f -c btrfs -n $property -a set -d 'Set a property on a btrfs object' +complete -f -c btrfs -n $property -a list -d 'Lists available properties with their descriptions for the given object' +# btrfs property get +complete -f -c btrfs -n '__btrfs_command_groups property get' -s t -d 'List properties for the given object type' -ra '{inode,subvol,filesystem,device}' +# btrfs property set +complete -f -c btrfs -n '__btrfs_command_groups property set' -s t -d 'List properties for the given object type' -ra '{inode,subvol,filesystem,device}' +# btrfs property list +complete -f -c btrfs -n '__btrfs_command_groups property list' -s t -d 'List properties for the given object type' -ra '{inode,subvol,filesystem,device}' + +# btrfs quota +complete -f -c btrfs -n $quota -a enable -d 'Enable subvolume quota support for a filesystem.' +complete -f -c btrfs -n $quota -a disable -d 'Disable subvolume quota support for a filesystem.' +complete -f -c btrfs -n $quota -a rescan -d 'Trash all qgroup numbers and scan the metadata again with the current config.' +# btrfs quota rescan +complete -f -c btrfs -n '__btrfs_command_groups quota rescan' -s s -d 'Show status of a running rescan operation' +complete -f -c btrfs -n '__btrfs_command_groups quota rescan' -s w -d 'Wait for rescan operation to finish' + +# btrfs qgroup +complete -f -c btrfs -n $qgroup -a assign -d 'Assign SRC as the child qgroup of DST' +complete -f -c btrfs -n $qgroup -a remove -d 'Remove a child qgroup SRC from DST.' +complete -f -c btrfs -n $qgroup -a create -d 'Create a subvolume quota group.' +complete -f -c btrfs -n $qgroup -a destroy -d 'Destroy a quota group.' +complete -f -c btrfs -n $qgroup -a show -d 'Show subvolume quota groups.' +complete -f -c btrfs -n $qgroup -a limit -d 'Set the limits a subvolume quota group.' +# btrfs qgroup assign +complete -f -c btrfs -n '__btrfs_command_groups qgroup assign' -l rescan -d 'Schedule qutoa rescan if needed' +complete -f -c btrfs -n '__btrfs_command_groups qgroup assign' -l no-rescan -d 'Don\'t schedule quota rescan' +# btrfs qgroup show +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -s p -d 'Print parent qgroup id' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -s c -d 'Print child qgroup id' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -s r -d 'Print limit of referenced size of qgroup' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -s e -d 'Print limit of exclusive size of qgroup' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -s F -d 'List all qgroups including ancestral qgroups' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -s f -d 'List all qgroups excluding ancestral qgroups' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -l raw -d 'Show raw numbers in bytes' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -l human-readable -d 'Show human friendly numbers, base 1024' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -l iec -d 'Use 1024 as a base (KiB, MiB, GiB, TiB)' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -l si -d 'Use 1000 as a base (kB, MB, GB, TB)' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -l kbytes -d 'Show sizes in KiB, or kB with --si' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -l mbytes -d 'Show sizes in MiB, or MB with --si' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -l gbytes -d 'Show sizes in GiB, or GB with --si' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -l tbytes -d 'Show sizes in TiB, or TB with --si' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -l sort -d 'List qgroups sorted by specified items' -a '{qgroupid,rfer,excl,max_rfer,max_excl}' +complete -f -c btrfs -n '__btrfs_command_groups qgroup show' -l sync -d 'Force sync of the filesystem before getting info' +# btrfs qgroup limit +complete -f -c btrfs -n '__btrfs_command_groups qgroup limit' -s c -d 'Limit amount of data after compression' +complete -f -c btrfs -n '__btrfs_command_groups qgroup limit' -s e -d 'Limit space exclusively assigned to this qgroup' + +# btrfs replace +complete -f -c btrfs -n $replace -a start -d 'Replace device of a btrfs filesystem.' +complete -f -c btrfs -n $replace -a status -d 'Print status and progress information of a running device replace' +complete -f -c btrfs -n $replace -a cancel -d 'Cancel a running device replace operation.' +# btrfs replace start +complete -f -c btrfs -n '__btrfs_command_groups replace start' -s r -d 'Only read from if no other zero-defect mirror exists' +complete -f -c btrfs -n '__btrfs_command_groups replace start' -s f -d 'Force using and overwriting ' +complete -f -c btrfs -n '__btrfs_command_groups replace start' -s B -d 'Do not background' +# btrfs replace status +complete -f -c btrfs -n '__btrfs_command_groups replace status' -s 1 -d 'Only print once until the replace operation finishes' diff --git a/share/completions/builtin.fish b/share/completions/builtin.fish index 52f48d4f9..27800d3b3 100644 --- a/share/completions/builtin.fish +++ b/share/completions/builtin.fish @@ -1,5 +1,4 @@ - -complete -c builtin -s h -l help -d 'Display help and exit' -complete -c builtin -s n -l names -d 'Print names of all existing builtins' -complete -c builtin -xa '(builtin -n)' -complete -c builtin -n '__fish_use_subcommand' -xa '__fish_complete_subcommand' +complete -c builtin -n 'test (count (commandline -opc)) -eq 1' -s h -l help -d 'Display help and exit' +complete -c builtin -n 'test (count (commandline -opc)) -eq 1' -s n -l names -d 'Print names of all existing builtins' +complete -c builtin -n 'test (count (commandline -opc)) -eq 1' -xa '(builtin -n)' +complete -c builtin -n 'test (count (commandline -opc)) -ge 2' -xa '(__fish_complete_subcommand)' diff --git a/share/completions/bundle.fish b/share/completions/bundle.fish index 7223a8127..d61b304d7 100644 --- a/share/completions/bundle.fish +++ b/share/completions/bundle.fish @@ -1,25 +1,25 @@ # Completion for bundler function __fish_bundle_no_command -d 'Test if bundle has been given no subcommand' - set cmd (commandline -opc) - if [ (count $cmd) -eq 1 ] - return 0 - end - return 1 + set cmd (commandline -opc) + if [ (count $cmd) -eq 1 ] + return 0 + end + return 1 end function __fish_bundle_using_command -d 'Test if bundle has been given a specific subcommand' - set cmd (commandline -opc) - if [ (count $cmd) -gt 1 ] - if [ $argv[1] = $cmd[2] ] - return 0 + set cmd (commandline -opc) + if [ (count $cmd) -gt 1 ] + if [ $argv[1] = $cmd[2] ] + return 0 + end end - end - return 1 + return 1 end function __fish_bundled_gems - bundle list | sed '1 d' | sed -e 's/\*//g' -e 's/(.*)//g' -e 's/^ *//g' -e 's/ *$//g' + bundle list | sed '1 d' | sed -e 's/\*//g' -e 's/(.*)//g' -e 's/^ *//g' -e 's/ *$//g' end # Options for all commands @@ -47,7 +47,7 @@ complete -f -n '__fish_bundle_using_command install' -c bundle -l binstubs -d 'C complete -f -n '__fish_bundle_using_command install' -c bundle -l shebang -d 'Specify a ruby executable to use with generated binstubs' complete -f -n '__fish_bundle_using_command install' -c bundle -l standalone -d 'Make a bundle that can work without RubyGems or Bundler at run-time' complete -f -n '__fish_bundle_using_command install' -c bundle -s P -l trust-policy -d 'Apply a RubyGems security policy: {High,Medium,Low,No}Security' -complete -f -n '__fish_bundle_using_command install' -c bundle -s j -l jobs -d 'Install gems parallely by starting size number of parallel workers' +complete -f -n '__fish_bundle_using_command install' -c bundle -s j -l jobs -d 'Install gems parallelly by starting size number of parallel workers' complete -f -n '__fish_bundle_using_command install' -c bundle -l no-cache -d 'Do not update the cache in vendor/cache with the newly bundled gems' complete -f -n '__fish_bundle_using_command install' -c bundle -l quiet -d 'Do not print progress information to stdout' complete -f -n '__fish_bundle_using_command install' -c bundle -l clean -d 'Run bundle clean automatically after install' @@ -56,7 +56,7 @@ complete -f -n '__fish_bundle_using_command install' -c bundle -l no-prune -d 'D complete -f -n '__fish_bundle_using_command install' -c bundle -l frozen -d 'Do not allow the Gemfile.lock to be updated after this install' # Update -complete -f -n '__fish_bundle_no_command' -c bundle -a 'update' -d 'Update dependencies to their latest versions' +complete -f -n '__fish_bundle_no_command' -c bundle -a 'update' -d 'Update dependencies to their latest versions' complete -f -n '__fish_bundle_using_command update' -c bundle -l source -d 'The name of a :git or :path source used in the Gemfile' complete -f -n '__fish_bundle_using_command update' -c bundle -l local -d 'Do not attempt to fetch gems remotely and use the gem cache instead' complete -f -n '__fish_bundle_using_command update' -c bundle -l quiet -d 'Only output warnings and errors' @@ -75,7 +75,7 @@ complete -f -n '__fish_bundle_using_command binstubs' -c bundle -l force -d 'Ove complete -f -n '__fish_bundle_using_command binstubs' -c bundle -a '(__fish_bundled_gems)' # Exec -complete -f -n '__fish_bundle_no_command' -c bundle -a 'exec' -d 'Execute a script in the context of the current bundle' +complete -f -n '__fish_bundle_no_command' -c bundle -a exec -d 'Execute a script in the context of the current bundle' complete -f -n '__fish_bundle_using_command exec' -c bundle -l keep-file-descriptors -d 'Exec runs a command, providing it access to the gems in the bundle' # Help @@ -83,7 +83,7 @@ complete -f -n '__fish_bundle_no_command' -c bundle -a 'help' -d 'Describe avail complete -f -n '__fish_bundle_using_command help' -c bundle -a 'install' -d 'Install the gems specified by the Gemfile or Gemfile.lock' complete -f -n '__fish_bundle_using_command help' -c bundle -a 'update' -d 'Update dependencies to their latest versions' complete -f -n '__fish_bundle_using_command help' -c bundle -a 'package' -d 'Package .gem files into the vendor/cache directory' -complete -f -n '__fish_bundle_using_command help' -c bundle -a 'exec' -d 'Execute a script in the context of the current bundle' +complete -f -n '__fish_bundle_using_command help' -c bundle -a exec -d 'Execute a script in the context of the current bundle' complete -f -n '__fish_bundle_using_command help' -c bundle -a 'config' -d 'Specify and read configuration options for bundler' complete -f -n '__fish_bundle_using_command help' -c bundle -a 'check' -d 'Check bundler requirements for your application' complete -f -n '__fish_bundle_using_command help' -c bundle -a 'list' -d 'Show all of the gems in the current bundle' @@ -145,7 +145,7 @@ complete -f -n '__fish_bundle_using_command init' -c bundle -l gemspec -d 'Use a # Gem complete -f -n '__fish_bundle_no_command' -c bundle -a 'gem' -d 'Create a simple gem, suitable for development with bundler' -complete -f -n '__fish_bundle_using_command gem' -c bundle -s b -l bin -d 'Generate a binary for your library' +complete -f -n '__fish_bundle_using_command gem' -c bundle -s b -l bin -d 'Generate a binary for your library' complete -f -n '__fish_bundle_using_command gem' -c bundle -s t -l test -d 'Generate a test directory for your library (rspec or minitest)' complete -f -n '__fish_bundle_using_command gem' -c bundle -s e -l edit -d 'Path to your editor' complete -f -n '__fish_bundle_using_command gem' -c bundle -l ext -d 'Generate the boilerplate for C extension code' @@ -155,7 +155,7 @@ complete -f -n '__fish_bundle_no_command' -c bundle -a 'platform' -d 'Displays p complete -f -n '__fish_bundle_using_command platform' -c bundle -l ruby -d 'Only display Ruby directive information' # Clean -complete -f -n '__fish_bundle_no_command' -c bundle -a 'clean' -d 'Cleans up unused gems in your bundler directory' +complete -f -n '__fish_bundle_no_command' -c bundle -a 'clean' -d 'Cleans up unused gems in your bundler directory' complete -f -n '__fish_bundle_using_command clean' -c bundle -l dry-run -d 'Only print out changes, do not actually clean gems' complete -f -n '__fish_bundle_using_command clean' -c bundle -l force -d 'Forces clean even if --path is not set' diff --git a/share/completions/busctl.fish b/share/completions/busctl.fish index 6358d37e5..29d3d2bc6 100644 --- a/share/completions/busctl.fish +++ b/share/completions/busctl.fish @@ -7,22 +7,22 @@ # A simple wrapper to call busctl with the correct mode and output function __fish_busctl - # TODO: If there's a "--address" argument we need to pass that - # We also need to pass the _last_ of these (`busctl --user --system` operates on the system bus) - set -l mode + # TODO: If there's a "--address" argument we need to pass that + # We also need to pass the _last_ of these (`busctl --user --system` operates on the system bus) + set -l mode if __fish_contains_opt user - set mode "--user" - else - set mode "--system" - end + set mode "--user" + else + set mode "--system" + end command busctl $mode $argv --no-legend --no-pager 2>/dev/null end function _fish_busctl set -l args a-address= s-show-machine u-unique A-acquired ä-activatable \ - m-match= S-size= l-list q-quiet v-verbose e-expect-reply= Ä-auto-start= \ - 1-allow-interactive-authorization= t-timeout= 2-augment-creds= U-user 3-system \ - H/host= M/machine= n-no-pager N-no-legend h/help V-version + m-match= S-size= l-list q-quiet v-verbose e-expect-reply= Ä-auto-start= \ + 1-allow-interactive-authorization= t-timeout= 2-augment-creds= U-user 3-system \ + H/host= M/machine= n-no-pager N-no-legend h/help V-version set -l cmdline (commandline -opc) (commandline -ct) set -e cmdline[1] argparse $args -- $cmdline 2>/dev/null @@ -91,27 +91,29 @@ function _fish_busctl end function __fish_busctl_busnames - __fish_busctl list --acquired | string replace -r '\s+.*$' '' - # Describe unique names (":1.32") with their process (e.g. `:1.32\tsteam`) - __fish_busctl list --unique | string replace -r '\s+\S+\s+(\S+)\s+.*$' '\t$1' + __fish_busctl list --acquired | string replace -r '\s+.*$' '' + # Describe unique names (":1.32") with their process (e.g. `:1.32\tsteam`) + __fish_busctl list --unique | string replace -r '\s+\S+\s+(\S+)\s+.*$' '\t$1' end function __fish_busctl_objects -a busname - __fish_busctl tree --list $busname | string replace -r '\s+.*$' '' + __fish_busctl tree --list $busname | string replace -r '\s+.*$' '' end function __fish_busctl_interfaces -a busname -a object - __fish_busctl introspect --list $busname $object | string replace -r '\s+.*$' '' + __fish_busctl introspect --list $busname $object | string replace -r '\s+.*$' '' end function __fish_busctl_members -a type -a busname -a object -a interface - __fish_busctl introspect --list $busname $object $interface \ - | string match -- "* $type *" | string replace -r '.(\S+) .*' '$1' + __fish_busctl introspect --list $busname $object $interface \ + | string match -- "* $type *" | string replace -r '.(\S+) .*' '$1' end function __fish_busctl_signature -a busname -a object -a interface -a member - __fish_busctl introspect --list $busname $object $interface \ - | string match ".$member *" | while read a b c d; echo $c; end + __fish_busctl introspect --list $busname $object $interface \ + | string match ".$member *" | while read a b c d + echo $c + end end ### Commands diff --git a/share/completions/bzip2.fish b/share/completions/bzip2.fish index 4d9b589b4..01199d2b5 100644 --- a/share/completions/bzip2.fish +++ b/share/completions/bzip2.fish @@ -16,7 +16,7 @@ complete -c bzip2 -s t -l test -d "Check integrity" complete -c bzip2 -s f -l force -d "Overwrite" complete -c bzip2 -s k -l keep -d "Do not overwrite" complete -c bzip2 -s s -l small -d "Reduce memory usage" -complete -c bzip2 -s q -l quiet -d "Supress errors" +complete -c bzip2 -s q -l quiet -d "Suppress errors" complete -c bzip2 -s v -l verbose -d "Print compression ratios" complete -c bzip2 -s L -l license -d "Print license" complete -c bzip2 -s V -l version -d "Display version and exit" diff --git a/share/completions/cabal.fish b/share/completions/cabal.fish index 02eecd5f8..ba3908841 100644 --- a/share/completions/cabal.fish +++ b/share/completions/cabal.fish @@ -1,12 +1,12 @@ function __fish_complete_cabal - if type -q -f cabal - set cmd (commandline -poc) - if test (count $cmd) -gt 1 - cabal $cmd[2..-1] --list-options - else - cabal --list-options - end + if type -q -f cabal + set cmd (commandline -poc) + if test (count $cmd) -gt 1 + cabal $cmd[2..-1] --list-options + else + cabal --list-options end + end end complete -c cabal -a '(__fish_complete_cabal)' diff --git a/share/completions/caddy.fish b/share/completions/caddy.fish index 6281a67f5..da185b59b 100644 --- a/share/completions/caddy.fish +++ b/share/completions/caddy.fish @@ -1,27 +1,27 @@ # Caddy is a general-purpose HTTP/2 web server that serves HTTPS by default. # https://caddyserver.com -complete -c caddy -o agree -d "Agree to the CA's Subscriber Agreement" -complete -c caddy -x -o ca -d "URL to certificate authority's ACME server directory" -complete -c caddy -x -o catimeout -d "Default ACME CA HTTP timeout" -complete -c caddy -r -o conf -a stdin -d "Caddyfile to load" -complete -c caddy -x -o cpu -d "CPU cap" -complete -c caddy -o disable-http-challenge -d "Disable the ACME HTTP challenge" -complete -c caddy -o disable-tls-sni-challenge -d "Disable the ACME TLS-SNI challenge" -complete -c caddy -x -o email -d "Default ACME CA account email address" -complete -c caddy -x -o grace -d "Maximum duration of graceful shutdown" -complete -c caddy -x -o host -d "Default host" -complete -c caddy -x -o http-port -d "Default port to use for HTTP" -complete -c caddy -o http2 -d "Use HTTP/2" -complete -c caddy -x -o https-port -d "Default port to use for HTTPS" -complete -c caddy -r -o log -d "Process log file" -complete -c caddy -r -o pidfile -d "Path to write pid file" -complete -c caddy -o plugins -d "List installed plugins" -complete -c caddy -x -o port -d "Default port" -complete -c caddy -o quic -d "Use experimental QUIC" -complete -c caddy -o quiet -d "Quiet mode (no initialization output)" -complete -c caddy -x -o revoke -d "Hostname for which to revoke the certificate" -complete -c caddy -r -o root -d "Root path of default site" -complete -c caddy -x -o type -d "Type of server to run" -complete -c caddy -o validate -d "Parse the Caddyfile but do not start the server" -complete -c caddy -o version -d "Show version" +complete -c caddy -o agree -d "Agree to the CA's Subscriber Agreement" +complete -c caddy -x -o ca -d "URL to certificate authority's ACME server directory" +complete -c caddy -x -o catimeout -d "Default ACME CA HTTP timeout" +complete -c caddy -r -o conf -a stdin -d "Caddyfile to load" +complete -c caddy -x -o cpu -d "CPU cap" +complete -c caddy -o disable-http-challenge -d "Disable the ACME HTTP challenge" +complete -c caddy -o disable-tls-sni-challenge -d "Disable the ACME TLS-SNI challenge" +complete -c caddy -x -o email -d "Default ACME CA account email address" +complete -c caddy -x -o grace -d "Maximum duration of graceful shutdown" +complete -c caddy -x -o host -d "Default host" +complete -c caddy -x -o http-port -d "Default port to use for HTTP" +complete -c caddy -o http2 -d "Use HTTP/2" +complete -c caddy -x -o https-port -d "Default port to use for HTTPS" +complete -c caddy -r -o log -d "Process log file" +complete -c caddy -r -o pidfile -d "Path to write pid file" +complete -c caddy -o plugins -d "List installed plugins" +complete -c caddy -x -o port -d "Default port" +complete -c caddy -o quic -d "Use experimental QUIC" +complete -c caddy -o quiet -d "Quiet mode (no initialization output)" +complete -c caddy -x -o revoke -d "Hostname for which to revoke the certificate" +complete -c caddy -r -o root -d "Root path of default site" +complete -c caddy -x -o type -d "Type of server to run" +complete -c caddy -o validate -d "Parse the Caddyfile but do not start the server" +complete -c caddy -o version -d "Show version" diff --git a/share/completions/camcontrol.fish b/share/completions/camcontrol.fish new file mode 100644 index 000000000..bac58bcde --- /dev/null +++ b/share/completions/camcontrol.fish @@ -0,0 +1,5 @@ +# The following lists are complete as of FreeBSD 12 + +set -l commands aam apm attrib cmd debug defects devlist eject epc format fwdownload help hpa identify idle inquiry load modepage negotiate opcodes periphlist persist readcap reportluns reprobe rescan reset sanitize security sleep smpcmd smpmaninfo smppc smpphylist smprg standby start stop tags timestamp tur zone + +complete -c camcontrol -n '__fish_is_first_token' -xa "$commands" diff --git a/share/completions/canto.fish b/share/completions/canto.fish index 7c487fb75..98008712e 100644 --- a/share/completions/canto.fish +++ b/share/completions/canto.fish @@ -1,17 +1,17 @@ function __fish_canto_using_command - set cmd (commandline -opc) - if [ (count $cmd) -gt 1 ] - if [ $argv[1] = $cmd[2] ] - return 0 + set cmd (commandline -opc) + if [ (count $cmd) -gt 1 ] + if [ $argv[1] = $cmd[2] ] + return 0 + end + if [ count $argv -gt 2 ] + if [ $argv[2] = $cmd[2] ] + return 0 + end + end end - if [ count $argv -gt 2 ] - if [ $argv[2] = $cmd[2] ] - return 0 - end - end - end - return 1 + return 1 end @@ -25,7 +25,7 @@ complete -f -c canto -s n -l checknew -d 'Show number of new items for feed' complete -f -c canto -n '__fish_canto_using_command -l --checknew' -d 'Feed' -a '(command canto -l)' complete -c canto -s o -l opml -d 'Print conf as OPML' -complete -c cnato -s i -l import -d 'Import from OPML' +complete -c canto -s i -l import -d 'Import from OPML' complete -f -c canto -s r -l url -d 'Add feed' complete -c canto -s D -l dir -d 'Set configuration directory' diff --git a/share/completions/cargo.fish b/share/completions/cargo.fish index fbea632be..2f0114342 100644 --- a/share/completions/cargo.fish +++ b/share/completions/cargo.fish @@ -7,49 +7,49 @@ complete -c cargo -l list -d 'List installed commands' complete -c cargo -s v -l verbose -d 'Use verbose output' complete -c cargo -s q -l quiet -d 'No output printed to stdout' -set __fish_cargo_subcommands (cargo --list | tail -n +2 | string trim | string replace -r '\s+' '\t') +set __fish_cargo_subcommands (cargo --list 2>&1 | string replace -rf '^\s+([^\s]+)\s+(.*)' '$1\t$2') complete -c cargo -f -c cargo -n '__fish_use_subcommand' -a '$__fish_cargo_subcommands' complete -c cargo -x -c cargo -n '__fish_seen_subcommand_from help' -a '$__fish_cargo_subcommands' for x in bench build clean doc fetch generate-lockfile \ - locate-project package pkgid publish \ - read-manifest run rustc test update \ - verify-project; - complete -c cargo -r -n "__fish_seen_subcommand_from $x" -l manifest-path -d 'path to the manifest to compile' + locate-project package pkgid publish \ + read-manifest run rustc test update \ + verify-project + complete -c cargo -r -n "__fish_seen_subcommand_from $x" -l manifest-path -d 'path to the manifest to compile' end -for x in bench build clean doc rustc test update; - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -s p -l spec -d 'Package to build' +for x in bench build clean doc rustc test update + complete -c cargo -x -n "__fish_seen_subcommand_from $x" -s p -l spec -d 'Package to build' end -for x in bench build clean doc run rustc test; - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l target -d 'Build for the target triple' +for x in bench build clean doc run rustc test + complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l target -d 'Build for the target triple' end -for x in bench build rustc test; - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l bench -d 'Only the specified benchmark' - complete -c cargo -n "__fish_seen_subcommand_from $x" -l lib -d 'Only this package\'s library' - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l test -d 'Only the specified test' +for x in bench build rustc test + complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l bench -a "(cargo bench --bench 2>&1 | string replace -rf '^\s+' '')" + complete -c cargo -n "__fish_seen_subcommand_from $x" -l lib -d 'Only this package\'s library' + complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l test -a "(cargo test --test 2>&1 | string replace -rf '^\s+' '')" end -for x in bench build run rustc test; - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l bin -d 'Only the specified binary' - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l example -d 'Only the specified example' +for x in bench build run rustc test + complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l bin -a "(cargo run --bin 2>&1 | string replace -rf '^\s+' '')" + complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l example -a "(cargo run --example 2>&1 | string replace -rf '^\s+' '')" end -for x in build run rustc test; - complete -c cargo -n "__fish_seen_subcommand_from $x" -l release -d 'Build artifacts in release mode, with optimizations' +for x in build run rustc test + complete -c cargo -n "__fish_seen_subcommand_from $x" -l release -d 'Build artifacts in release mode, with optimizations' end -for x in bench test; - complete -c cargo -n "__fish_seen_subcommand_from $x" -l no-run -d 'Compile but do not run' +for x in bench test + complete -c cargo -n "__fish_seen_subcommand_from $x" -l no-run -d 'Compile but do not run' end -for x in bench build doc run rustc test; - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -s j -l jobs -d 'Number of jobs to run in parallel' - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l features -d 'Space-separated list of features to also build' - complete -c cargo -n "__fish_seen_subcommand_from $x" -l no-default-features -d 'Do not build the `default` feature' +for x in bench build doc run rustc test + complete -c cargo -x -n "__fish_seen_subcommand_from $x" -s j -l jobs -d 'Number of jobs to run in parallel' + complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l features -d 'Space-separated list of features to also build' + complete -c cargo -n "__fish_seen_subcommand_from $x" -l no-default-features -d 'Do not build the `default` feature' end complete -c cargo -n '__fish_seen_subcommand_from doc' -l no-deps -d 'Don\'t build documentation for dependencies' @@ -63,21 +63,21 @@ complete -c cargo -n '__fish_seen_subcommand_from new' -l bin complete -c cargo -x -n '__fish_seen_subcommand_from git-checkout' -l url complete -c cargo -x -n '__fish_seen_subcommand_from git-checkout' -l reference -for x in login publish search; - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l host -d 'The host to submit the request to' +for x in login publish search + complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l host -d 'The host to submit the request to' end complete -c cargo -n '__fish_seen_subcommand_from doc' -l open -d 'Opens the docs in a browser after the operation' complete -c cargo -r -n '__fish_seen_subcommand_from owner' -s a -l add -d 'Login of a user to add as an owner' -complete -c cargo -r -n '__fish_seen_subcommand_from owner' -s r -l remove -d 'Login of a user to remove as an owner' +complete -c cargo -r -n '__fish_seen_subcommand_from owner' -s r -l remove -d 'Login of a user to remove as an owner' -for x in owner yank; - complete -c cargo -r -n "__fish_seen_subcommand_from $x" -l index -d 'Registry index to use' +for x in owner yank + complete -c cargo -r -n "__fish_seen_subcommand_from $x" -l index -d 'Registry index to use' end -for x in owner publish yank; - complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l token -d 'API token to use when authenticating' +for x in owner publish yank + complete -c cargo -x -n "__fish_seen_subcommand_from $x" -l token -d 'API token to use when authenticating' end complete -c cargo -n '__fish_seen_subcommand_from package' -l no-verify -d 'Don\'t verify the contents by building them' diff --git a/share/completions/cat.fish b/share/completions/cat.fish index 2a7bce379..b7cc526c5 100644 --- a/share/completions/cat.fish +++ b/share/completions/cat.fish @@ -1,21 +1,21 @@ -if cat --version 2>/dev/null > /dev/null # GNU - complete -c cat -s A -l show-all -d "Escape all non-printing characters" - complete -c cat -s b -l number-nonblank -d "Number nonblank lines" - complete -c cat -s e -d "Escape non-printing characters except tab" - complete -c cat -s E -l show-ends -d "Display \$ at end of line" - complete -c cat -s n -l number -d "Number all lines" - complete -c cat -s s -l squeeze-blank -d "Never more than single blank line" - complete -c cat -s t -d "Escape non-printing characters except newline" - complete -c cat -s T -l show-tabs -d "Escape tab" - complete -c cat -s v -d "Escape non-printing except newline and tab" - complete -c cat -l help -d "Display help and exit" - complete -c cat -l version -d "Display version and exit" +if cat --version 2>/dev/null >/dev/null # GNU + complete -c cat -s A -l show-all -d "Escape all unprintables" + complete -c cat -s b -l number-nonblank -d "Number non-blank lines" + complete -c cat -s e -d "Escape unprintables except \\t" + complete -c cat -s E -l show-ends -d "Display \$ at line end" + complete -c cat -s n -l number -d "Enumerate lines" + complete -c cat -s s -l squeeze-blank -d "Never >1 blank line" + complete -c cat -s t -d "Escape unprintables except \\n" + complete -c cat -s T -l show-tabs -d "Escape tab" + complete -c cat -s v -d "Escape unprintables except '\\n' and \\t" + complete -c cat -l help -d "Display help and exit" + complete -c cat -l version -d "Display version and exit" else # OS X - complete -c cat -s b -d "Number non-blank lines" - complete -c cat -s e -d "Display non-printing characters, and `\$' at the end of each line" - complete -c cat -s n -d "Number all lines" - complete -c cat -s s -d "Single spaced output by squeezing adjacent empty lines" - complete -c cat -s t -d "Display non-printing characters, and tab characters as `^I'" - complete -c cat -s u -d "Disable output buffering" - complete -c cat -s v -d "Display non-printing characters so they're visible." + complete -c cat -s b -d "Specify # of non-blank lines" + complete -c cat -s e -d "Show unprintables, end lines with \$" + complete -c cat -s n -d "Enumerate lines" + complete -c cat -s s -d "Squeeze away >1 blank lines" + complete -c cat -s t -d "Show unprintables; tab as '^I'" + complete -c cat -s u -d "Disable output buffering" + complete -c cat -s v -d "Escape non-printing chars" end \ No newline at end of file diff --git a/share/completions/cf.fish b/share/completions/cf.fish index ac1a7080c..5b1bebb23 100644 --- a/share/completions/cf.fish +++ b/share/completions/cf.fish @@ -1,208 +1,208 @@ set -l subcommands help version login logout passwd target api auth apps app \ - push scale delete rename start stop restart restage restart-app-instance \ - run-task tasks terminate-task events files logs env set-env unset-env stacks \ - stack copy-source create-app-manifest get-health-check set-health-check \ - enable-ssh disable-ssh ssh-enabled ssh marketplace services service \ - create-service update-service delete-service rename-service \ - create-service-key service-keys service-key delete-service-key bind-service \ - unbind-service bind-route-service unbind-route-service \ - create-user-provided-service update-user-provided-service orgs org \ - create-org delete-org rename-org spaces space create-space delete-space \ - rename-space allow-space-ssh disallow-space-ssh space-ssh-allowed domains \ - create-domain delete-domain create-shared-domain delete-shared-domain \ - router-groups routes create-route check-route map-route unmap-route \ - delete-route delete-orphaned-routes network-policies add-network-policy \ - remove-network-policy buildpacks create-buildpack update-buildpack \ - rename-buildpack delete-buildpack create-user delete-user org-users \ - set-org-role unset-org-role space-users set-space-role unset-space-role \ - quotas quota set-quota create-quota delete-quota update-quota \ - share-private-domain unshare-private-domain space-quotas space-quota \ - create-space-quota update-space-quota delete-space-quota set-space-quota \ - unset-space-quota service-auth-tokens create-service-auth-token \ - update-service-auth-token delete-service-auth-token service-brokers \ - create-service-broker update-service-broker delete-service-broker \ - rename-service-broker migrate-service-instances purge-service-offering \ - purge-service-instance service-access enable-service-access \ - disable-service-access security-group security-groups create-security-group \ - update-security-group delete-security-group bind-security-group \ - unbind-security-group bind-staging-security-group staging-security-groups \ - unbind-staging-security-group bind-running-security-group \ - running-security-groups unbind-running-security-group \ - running-environment-variable-group staging-environment-variable-group \ - set-staging-environment-variable-group set-running-environment-variable-group \ - isolation-segments create-isolation-segment delete-isolation-segment \ - enable-org-isolation disable-org-isolation set-org-default-isolation-segment \ - reset-org-default-isolation-segment set-space-isolation-segment \ - reset-space-isolation-segment feature-flags feature-flag enable-feature-flag \ - disable-feature-flag curl config oauth-token ssh-code add-plugin-repo \ - remove-plugin-repo list-plugin-repos repo-plugins plugins install-plugin \ - uninstall-plugin + push scale delete rename start stop restart restage restart-app-instance \ + run-task tasks terminate-task events files logs env set-env unset-env stacks \ + stack copy-source create-app-manifest get-health-check set-health-check \ + enable-ssh disable-ssh ssh-enabled ssh marketplace services service \ + create-service update-service delete-service rename-service \ + create-service-key service-keys service-key delete-service-key bind-service \ + unbind-service bind-route-service unbind-route-service \ + create-user-provided-service update-user-provided-service orgs org \ + create-org delete-org rename-org spaces space create-space delete-space \ + rename-space allow-space-ssh disallow-space-ssh space-ssh-allowed domains \ + create-domain delete-domain create-shared-domain delete-shared-domain \ + router-groups routes create-route check-route map-route unmap-route \ + delete-route delete-orphaned-routes network-policies add-network-policy \ + remove-network-policy buildpacks create-buildpack update-buildpack \ + rename-buildpack delete-buildpack create-user delete-user org-users \ + set-org-role unset-org-role space-users set-space-role unset-space-role \ + quotas quota set-quota create-quota delete-quota update-quota \ + share-private-domain unshare-private-domain space-quotas space-quota \ + create-space-quota update-space-quota delete-space-quota set-space-quota \ + unset-space-quota service-auth-tokens create-service-auth-token \ + update-service-auth-token delete-service-auth-token service-brokers \ + create-service-broker update-service-broker delete-service-broker \ + rename-service-broker migrate-service-instances purge-service-offering \ + purge-service-instance service-access enable-service-access \ + disable-service-access security-group security-groups create-security-group \ + update-security-group delete-security-group bind-security-group \ + unbind-security-group bind-staging-security-group staging-security-groups \ + unbind-staging-security-group bind-running-security-group \ + running-security-groups unbind-running-security-group \ + running-environment-variable-group staging-environment-variable-group \ + set-staging-environment-variable-group set-running-environment-variable-group \ + isolation-segments create-isolation-segment delete-isolation-segment \ + enable-org-isolation disable-org-isolation set-org-default-isolation-segment \ + reset-org-default-isolation-segment set-space-isolation-segment \ + reset-space-isolation-segment feature-flags feature-flag enable-feature-flag \ + disable-feature-flag curl config oauth-token ssh-code add-plugin-repo \ + remove-plugin-repo list-plugin-repos repo-plugins plugins install-plugin \ + uninstall-plugin -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'help' --description "Show help" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'version' --description "Print the version" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'login' --description "Log user in" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'logout' --description "Log user out" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'passwd' --description "Change user password" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'target' --description "Set or view the targeted org or space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'api' --description "Set or view target api url" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'auth' --description "Authenticate user non-interactively" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'apps' --description "List all apps in the target space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'app' --description "Display health and status for an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'push' --description "Push a new app or sync changes to an existing app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'scale' --description "Change or view the instance count, disk space limit, and memory limit for an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete' --description "Delete an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename' --description "Rename an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'start' --description "Start an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'stop' --description "Stop an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'restart' --description "Stop all instances of the app, then start them again. This causes downtime." -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'restage' --description "Recreate the app's executable artifact using the latest pushed app files and the latest environment (variables, service bindings, buildpack, stack, etc.)" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'restart-app-instance' --description "Terminate, then restart an app instance" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'run-task' --description "Run a one-off task on an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'tasks' --description "List tasks of an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'terminate-task' --description "Terminate a running task of an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'events' --description "Show recent app events" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'files' --description "Print out a list of files in a directory or the contents of a specific file of an app running on the DEA backend" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'logs' --description "Tail or show recent logs for an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'env' --description "Show all env variables for an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-env' --description "Set an env variable for an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unset-env' --description "Remove an env variable" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'stacks' --description "List all stacks (a stack is a pre-built file system, including an operating system, that can run apps)" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'stack' --description "Show information for a stack (a stack is a pre-built file system, including an operating system, that can run apps)" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'copy-source' --description "Copies the source code of an application to another existing application (and restarts that application)" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-app-manifest' --description "Create an app manifest for an app that has been pushed successfully" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'get-health-check' --description "Show the type of health check performed on an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-health-check' --description "Change type of health check performed on an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'enable-ssh' --description "Enable ssh for the application" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'disable-ssh' --description "Disable ssh for the application" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'ssh-enabled' --description "Reports whether SSH is enabled on an application container instance" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'ssh' --description "SSH to an application container instance" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'marketplace' --description "List available offerings in the marketplace" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'services' --description "List all service instances in the target space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service' --description "Show service instance info" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-service' --description "Create a service instance" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-service' --description "Update a service instance" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-service' --description "Delete a service instance" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename-service' --description "Rename a service instance" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-service-key' --description "Create key for a service instance" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service-keys' --description "List keys for a service instance" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service-key' --description "Show service key info" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-service-key' --description "Delete a service key" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'bind-service' --description "Bind a service instance to an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unbind-service' --description "Unbind a service instance from an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'bind-route-service' --description "Bind a service instance to an HTTP route" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unbind-route-service' --description "Unbind a service instance from an HTTP route" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-user-provided-service' --description "Make a user-provided service instance available to CF apps" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-user-provided-service' --description "Update user-provided service instance" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'orgs' --description "List all orgs" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'org' --description "Show org info" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-org' --description "Create an org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-org' --description "Delete an org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename-org' --description "Rename an org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'spaces' --description "List all spaces in an org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'space' --description "Show space info" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-space' --description "Create a space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-space' --description "Delete a space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename-space' --description "Rename a space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'allow-space-ssh' --description "Allow SSH access for the space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'disallow-space-ssh' --description "Disallow SSH access for the space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'space-ssh-allowed' --description "Reports whether SSH is allowed in a space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'domains' --description "List domains in the target org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-domain' --description "Create a domain in an org for later use" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-domain' --description "Delete a domain" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-shared-domain' --description "Create a domain that can be used by all orgs (admin-only)" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-shared-domain' --description "Delete a shared domain" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'router-groups' --description "List router groups" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'routes' --description "List all routes in the current space or the current organization" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-route' --description "Create a url route in a space for later use" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'check-route' --description "Perform a simple check to determine whether a route currently exists or not" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'map-route' --description "Add a url route to an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unmap-route' --description "Remove a url route from an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-route' --description "Delete a route" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-orphaned-routes' --description "Delete all orphaned routes (i.e. those that are not mapped to an app)" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'network-policies' --description "List direct network traffic policies" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'add-network-policy' --description "Create policy to allow direct network traffic from one app to another" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'remove-network-policy' --description "Remove network traffic policy of an app" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'buildpacks' --description "List all buildpacks" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-buildpack' --description "Create a buildpack" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-buildpack' --description "Update a buildpack" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename-buildpack' --description "Rename a buildpack" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-buildpack' --description "Delete a buildpack" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-user' --description "Create a new user" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-user' --description "Delete a user" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'org-users' --description "Show org users by role" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-org-role' --description "Assign an org role to a user" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unset-org-role' --description "Remove an org role from a user" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'space-users' --description "Show space users by role" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-space-role' --description "Assign a space role to a user" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unset-space-role' --description "Remove a space role from a user" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'quotas' --description "List available usage quotas" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'quota' --description "Show quota info" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-quota' --description "Assign a quota to an org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-quota' --description "Define a new resource quota" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-quota' --description "Delete a quota" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-quota' --description "Update an existing resource quota" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'share-private-domain' --description "Share a private domain with an org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unshare-private-domain' --description "Unshare a private domain with an org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'space-quotas' --description "List available space resource quotas" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'space-quota' --description "Show space quota info" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-space-quota' --description "Define a new space resource quota" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-space-quota' --description "Update an existing space quota" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-space-quota' --description "Delete a space quota definition and unassign the space quota from all spaces" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-space-quota' --description "Assign a space quota definition to a space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unset-space-quota' --description "Unassign a quota from a space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service-auth-tokens' --description "List service auth tokens" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-service-auth-token' --description "Create a service auth token" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-service-auth-token' --description "Update a service auth token" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-service-auth-token' --description "Delete a service auth token" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service-brokers' --description "List service brokers" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-service-broker' --description "Create a service broker" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-service-broker' --description "Update a service broker" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-service-broker' --description "Delete a service broker" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename-service-broker' --description "Rename a service broker" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'migrate-service-instances' --description "Migrate service instances from one service plan to another" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'purge-service-offering' --description "Recursively remove a service and child objects from Cloud Foundry database without making requests to a service broker" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'purge-service-instance' --description "Recursively remove a service instance and child objects from Cloud Foundry database without making requests to a service broker" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service-access' --description "List service access settings" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'enable-service-access' --description "Enable access to a service or service plan for one or all orgs" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'disable-service-access' --description "Disable access to a service or service plan for one or all orgs" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'security-group' --description "Show a single security group" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'security-groups' --description "List all security groups" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-security-group' --description "Create a security group" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-security-group' --description "Update a security group" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-security-group' --description "Deletes a security group" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'bind-security-group' --description "Bind a security group to a particular space, or all existing spaces of an org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unbind-security-group' --description "Unbind a security group from a space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'bind-staging-security-group' --description "Bind a security group to the list of security groups to be used for staging applications" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'staging-security-groups' --description "List security groups in the staging set for applications" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unbind-staging-security-group' --description "Unbind a security group from the set of security groups for staging applications" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'bind-running-security-group' --description "Bind a security group to the list of security groups to be used for running applications" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'running-security-groups' --description "List security groups in the set of security groups for running applications" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unbind-running-security-group' --description "Unbind a security group from the set of security groups for running applications" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'running-environment-variable-group' --description "Retrieve the contents of the running environment variable group" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'staging-environment-variable-group' --description "Retrieve the contents of the staging environment variable group" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'help' --description "Show help" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'version' --description "Print the version" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'login' --description "Log user in" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'logout' --description "Log user out" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'passwd' --description "Change user password" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'target' --description "Set or view the targeted org or space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'api' --description "Set or view target api url" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'auth' --description "Authenticate user non-interactively" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'apps' --description "List all apps in the target space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'app' --description "Display health and status for an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'push' --description "Push a new app or sync changes to an existing app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'scale' --description "Change or view the instance count, disk space limit, and memory limit for an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete' --description "Delete an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename' --description "Rename an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'start' --description "Start an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'stop' --description "Stop an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'restart' --description "Stop all instances of the app, then start them again. This causes downtime." +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'restage' --description "Recreate the app's executable artifact using the latest pushed app files and the latest environment (variables, service bindings, buildpack, stack, etc.)" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'restart-app-instance' --description "Terminate, then restart an app instance" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'run-task' --description "Run a one-off task on an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'tasks' --description "List tasks of an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'terminate-task' --description "Terminate a running task of an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'events' --description "Show recent app events" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'files' --description "Print out a list of files in a directory or the contents of a specific file of an app running on the DEA backend" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'logs' --description "Tail or show recent logs for an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'env' --description "Show all env variables for an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-env' --description "Set an env variable for an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unset-env' --description "Remove an env variable" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'stacks' --description "List all stacks (a stack is a pre-built file system, including an operating system, that can run apps)" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'stack' --description "Show information for a stack (a stack is a pre-built file system, including an operating system, that can run apps)" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'copy-source' --description "Copies the source code of an application to another existing application (and restarts that application)" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-app-manifest' --description "Create an app manifest for an app that has been pushed successfully" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'get-health-check' --description "Show the type of health check performed on an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-health-check' --description "Change type of health check performed on an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'enable-ssh' --description "Enable ssh for the application" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'disable-ssh' --description "Disable ssh for the application" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'ssh-enabled' --description "Reports whether SSH is enabled on an application container instance" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'ssh' --description "SSH to an application container instance" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'marketplace' --description "List available offerings in the marketplace" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'services' --description "List all service instances in the target space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service' --description "Show service instance info" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-service' --description "Create a service instance" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-service' --description "Update a service instance" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-service' --description "Delete a service instance" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename-service' --description "Rename a service instance" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-service-key' --description "Create key for a service instance" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service-keys' --description "List keys for a service instance" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service-key' --description "Show service key info" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-service-key' --description "Delete a service key" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'bind-service' --description "Bind a service instance to an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unbind-service' --description "Unbind a service instance from an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'bind-route-service' --description "Bind a service instance to an HTTP route" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unbind-route-service' --description "Unbind a service instance from an HTTP route" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-user-provided-service' --description "Make a user-provided service instance available to CF apps" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-user-provided-service' --description "Update user-provided service instance" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'orgs' --description "List all orgs" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'org' --description "Show org info" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-org' --description "Create an org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-org' --description "Delete an org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename-org' --description "Rename an org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'spaces' --description "List all spaces in an org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'space' --description "Show space info" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-space' --description "Create a space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-space' --description "Delete a space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename-space' --description "Rename a space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'allow-space-ssh' --description "Allow SSH access for the space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'disallow-space-ssh' --description "Disallow SSH access for the space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'space-ssh-allowed' --description "Reports whether SSH is allowed in a space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'domains' --description "List domains in the target org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-domain' --description "Create a domain in an org for later use" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-domain' --description "Delete a domain" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-shared-domain' --description "Create a domain that can be used by all orgs (admin-only)" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-shared-domain' --description "Delete a shared domain" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'router-groups' --description "List router groups" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'routes' --description "List all routes in the current space or the current organization" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-route' --description "Create a url route in a space for later use" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'check-route' --description "Perform a simple check to determine whether a route currently exists or not" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'map-route' --description "Add a url route to an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unmap-route' --description "Remove a url route from an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-route' --description "Delete a route" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-orphaned-routes' --description "Delete all orphaned routes (i.e. those that are not mapped to an app)" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'network-policies' --description "List direct network traffic policies" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'add-network-policy' --description "Create policy to allow direct network traffic from one app to another" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'remove-network-policy' --description "Remove network traffic policy of an app" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'buildpacks' --description "List all buildpacks" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-buildpack' --description "Create a buildpack" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-buildpack' --description "Update a buildpack" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename-buildpack' --description "Rename a buildpack" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-buildpack' --description "Delete a buildpack" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-user' --description "Create a new user" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-user' --description "Delete a user" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'org-users' --description "Show org users by role" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-org-role' --description "Assign an org role to a user" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unset-org-role' --description "Remove an org role from a user" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'space-users' --description "Show space users by role" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-space-role' --description "Assign a space role to a user" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unset-space-role' --description "Remove a space role from a user" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'quotas' --description "List available usage quotas" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'quota' --description "Show quota info" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-quota' --description "Assign a quota to an org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-quota' --description "Define a new resource quota" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-quota' --description "Delete a quota" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-quota' --description "Update an existing resource quota" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'share-private-domain' --description "Share a private domain with an org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unshare-private-domain' --description "Unshare a private domain with an org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'space-quotas' --description "List available space resource quotas" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'space-quota' --description "Show space quota info" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-space-quota' --description "Define a new space resource quota" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-space-quota' --description "Update an existing space quota" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-space-quota' --description "Delete a space quota definition and unassign the space quota from all spaces" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-space-quota' --description "Assign a space quota definition to a space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unset-space-quota' --description "Unassign a quota from a space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service-auth-tokens' --description "List service auth tokens" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-service-auth-token' --description "Create a service auth token" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-service-auth-token' --description "Update a service auth token" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-service-auth-token' --description "Delete a service auth token" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service-brokers' --description "List service brokers" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-service-broker' --description "Create a service broker" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-service-broker' --description "Update a service broker" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-service-broker' --description "Delete a service broker" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'rename-service-broker' --description "Rename a service broker" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'migrate-service-instances' --description "Migrate service instances from one service plan to another" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'purge-service-offering' --description "Recursively remove a service and child objects from Cloud Foundry database without making requests to a service broker" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'purge-service-instance' --description "Recursively remove a service instance and child objects from Cloud Foundry database without making requests to a service broker" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'service-access' --description "List service access settings" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'enable-service-access' --description "Enable access to a service or service plan for one or all orgs" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'disable-service-access' --description "Disable access to a service or service plan for one or all orgs" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'security-group' --description "Show a single security group" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'security-groups' --description "List all security groups" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-security-group' --description "Create a security group" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'update-security-group' --description "Update a security group" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-security-group' --description "Deletes a security group" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'bind-security-group' --description "Bind a security group to a particular space, or all existing spaces of an org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unbind-security-group' --description "Unbind a security group from a space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'bind-staging-security-group' --description "Bind a security group to the list of security groups to be used for staging applications" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'staging-security-groups' --description "List security groups in the staging set for applications" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unbind-staging-security-group' --description "Unbind a security group from the set of security groups for staging applications" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'bind-running-security-group' --description "Bind a security group to the list of security groups to be used for running applications" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'running-security-groups' --description "List security groups in the set of security groups for running applications" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'unbind-running-security-group' --description "Unbind a security group from the set of security groups for running applications" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'running-environment-variable-group' --description "Retrieve the contents of the running environment variable group" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'staging-environment-variable-group' --description "Retrieve the contents of the staging environment variable group" complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-staging-environment-variable-group' --description "Pass parameters as JSON to create a staging environment variable group" complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-running-environment-variable-group' --description "Pass parameters as JSON to create a running environment variable group" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'isolation-segments' --description "List all isolation segments" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-isolation-segment' --description "Create an isolation segment" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-isolation-segment' --description "Delete an isolation segment" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'enable-org-isolation' --description "Entitle an organization to an isolation segment" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'disable-org-isolation' --description "Revoke an organization's entitlement to an isolation segment" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-org-default-isolation-segment' --description "Set the default isolation segment used for apps in spaces in an org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'reset-org-default-isolation-segment' --description "Reset the default isolation segment used for apps in spaces of an org" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-space-isolation-segment' --description "Assign the isolation segment for a space" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'reset-space-isolation-segment' --description "Reset the space's isolation segment to the org default" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'feature-flags' --description "Retrieve list of feature flags with status" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'feature-flag' --description "Retrieve an individual feature flag with status" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'enable-feature-flag' --description "Allow use of a feature" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'disable-feature-flag' --description "Prevent use of a feature" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'curl' --description "Executes a request to the targeted API endpoint" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'config' --description "Write default values to the config" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'oauth-token' --description "Retrieve and display the OAuth token for the current session" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'ssh-code' --description "Get a one time password for ssh clients" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'add-plugin-repo' --description "Add a new plugin repository" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'remove-plugin-repo' --description "Remove a plugin repository" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'list-plugin-repos' --description "List all the added plugin repositories" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'repo-plugins' --description "List all available plugins in specified repository or in all added repositories" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'plugins' --description "List commands of installed plugins" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'install-plugin' --description "Install CLI plugin" -complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'uninstall-plugin' --description "Uninstall CLI plugin" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'isolation-segments' --description "List all isolation segments" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'create-isolation-segment' --description "Create an isolation segment" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'delete-isolation-segment' --description "Delete an isolation segment" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'enable-org-isolation' --description "Entitle an organization to an isolation segment" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'disable-org-isolation' --description "Revoke an organization's entitlement to an isolation segment" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-org-default-isolation-segment' --description "Set the default isolation segment used for apps in spaces in an org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'reset-org-default-isolation-segment' --description "Reset the default isolation segment used for apps in spaces of an org" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'set-space-isolation-segment' --description "Assign the isolation segment for a space" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'reset-space-isolation-segment' --description "Reset the space's isolation segment to the org default" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'feature-flags' --description "Retrieve list of feature flags with status" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'feature-flag' --description "Retrieve an individual feature flag with status" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'enable-feature-flag' --description "Allow use of a feature" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'disable-feature-flag' --description "Prevent use of a feature" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'curl' --description "Executes a request to the targeted API endpoint" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'config' --description "Write default values to the config" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'oauth-token' --description "Retrieve and display the OAuth token for the current session" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'ssh-code' --description "Get a one time password for ssh clients" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'add-plugin-repo' --description "Add a new plugin repository" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'remove-plugin-repo' --description "Remove a plugin repository" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'list-plugin-repos' --description "List all the added plugin repositories" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'repo-plugins' --description "List all available plugins in specified repository or in all added repositories" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'plugins' --description "List commands of installed plugins" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'install-plugin' --description "Install CLI plugin" +complete -f -n "__fish_use_subcommand $subcommands" -c cf -a 'uninstall-plugin' --description "Uninstall CLI plugin" diff --git a/share/completions/chown.fish b/share/completions/chown.fish index 11eb6fae7..5d72dfd24 100644 --- a/share/completions/chown.fish +++ b/share/completions/chown.fish @@ -9,4 +9,4 @@ complete -c chown -s v -l verbose -d "Output diagnostic for every file" complete -c chown -s h -l help -d "Display help and exit" complete -c chown -l version -d "Display version and exit" complete -c chown -d "Username" -a "(__fish_print_users):" -complete -c chown -d "Username" -a "(string match -r '.*:' (commandline -ct))(__fish_complete_groups)" +complete -c chown -d "Username" -a "(string match -r -- '.*:' (commandline -ct))(__fish_complete_groups)" diff --git a/share/completions/chronyc.fish b/share/completions/chronyc.fish new file mode 100644 index 000000000..cdc5496fc --- /dev/null +++ b/share/completions/chronyc.fish @@ -0,0 +1,99 @@ +# Completions for chronyc + +# Global options +complete -f -c chronyc -s 4 -d "Use only IPv4 address for hostname resolution" +complete -f -c chronyc -s 6 -d "Use only IPv6 address for hostname resolution" +complete -f -c chronyc -s n -d "Disable resolving of IP address to hostname" +complete -f -c chronyc -s c -d "Print the report in CSV format" +complete -f -c chronyc -s d -d "Enable print of debugging message" +complete -f -c chronyc -s m -d "Allow multiple commands to be specified" +complete -f -c chronyc -s h -d "Specify the host to connect" +complete -f -c chronyc -s p -d "Specify the UDP port number used by the target to monitor connections" +complete -f -c chronyc -s f -d "Option for compatibility" +complete -f -c chronyc -s a -d "Option for compatibility" +complete -f -c chronyc -s v -d "Show version number" + +# Commands +## System clock +complete -f -c chronyc -n "__fish_use_subcommand" -a tracking -d "Show system time info" +complete -f -c chronyc -n "__fish_use_subcommand" -a makestep -d "Correct the clock by stepping" +complete -f -c chronyc -n "__fish_use_subcommand" -a maxupdateskew -d "Modify max valid skew to update frequency" +complete -f -c chronyc -n "__fish_use_subcommand" -a waitsync -d "Wait until synced in specified limits" + +## Time sources +complete -f -c chronyc -n "__fish_use_subcommand" -a sources -d "Show info about current sources" +complete -x -c chronyc -n "__fish_seen_subcommand_from sources" -s v -d "Be verbose" +complete -f -c chronyc -n "__fish_use_subcommand" -a sourcestats -d "Show statistics about collected measurements" +complete -x -c chronyc -n "__fish_seen_subcommand_from sourcestats" -s v -d "Be verbose" +complete -f -c chronyc -n "__fish_use_subcommand" -a reselect -d "Force reselecting sync source" +complete -f -c chronyc -n "__fish_use_subcommand" -a reselectdist -d "Modify reselection distance" + +## NTP sources +complete -f -c chronyc -n "__fish_use_subcommand" -a activity -d "Check how many NTP sources are online/offline" +complete -f -c chronyc -n "__fish_use_subcommand" -a ntpdata -d "Show info about last valid measurement" +complete -f -c chronyc -n "__fish_use_subcommand" -a add +complete -f -c chronyc -n "__fish_seen_subcommand_from add" -a peer -d "Add new NTP peer" +complete -f -c chronyc -n "__fish_seen_subcommand_from add" -a server -d "Add new NTP server" +complete -f -c chronyc -n "__fish_use_subcommand" -a delete -d "Remove server/peer" +complete -f -c chronyc -n "__fish_use_subcommand" -a burst -d "Start rapid set of measurements" +complete -f -c chronyc -n "__fish_use_subcommand" -a maxdelay -d "Modify max valid sample delay" +complete -f -c chronyc -n "__fish_use_subcommand" -a maxdelaydevratio -d "Modify max valid delay/deviation ratio" +complete -f -c chronyc -n "__fish_use_subcommand" -a maxdelayratio -d "Modify max valid delay/min ratio" +complete -f -c chronyc -n "__fish_use_subcommand" -a maxpoll -d "Modify max polling interval" +complete -f -c chronyc -n "__fish_use_subcommand" -a minpoll -d "Modify min polling interval" +complete -f -c chronyc -n "__fish_use_subcommand" -a minstratum -d "Modify min stratum" +complete -f -c chronyc -n "__fish_use_subcommand" -a offline -d "Set sources in subnet to offline status" +complete -f -c chronyc -n "__fish_use_subcommand" -a online -d "Set sources in subnet to online status" +complete -f -c chronyc -n "__fish_use_subcommand" -a onoffline -d "Set all sources to online/offline status according to network config" +complete -f -c chronyc -n "__fish_use_subcommand" -a polltarget -d "Modify poll target" +complete -f -c chronyc -n "__fish_use_subcommand" -a refresh -d "Refresh IP address" + +## Manual time input +complete -f -c chronyc -n "__fish_use_subcommand" -a manual +complete -f -c chronyc -n "__fish_seen_subcommand_from manual" -a on -d "Enable settime command" +complete -f -c chronyc -n "__fish_seen_subcommand_from manual" -a off -d "Disable settime command" +complete -f -c chronyc -n "__fish_seen_subcommand_from manual" -a delete -d "Delete previous settime entry" +complete -f -c chronyc -n "__fish_seen_subcommand_from manual" -a list -d "Show previous settime entries" +complete -f -c chronyc -n "__fish_seen_subcommand_from manual" -a reset -d "Reset settime command" +complete -f -c chronyc -n "__fish_use_subcommand" -a settime -d "Set daemon time" + +## NTP access +complete -f -c chronyc -n "__fish_use_subcommand" -a accheck -d "Check whether address is allowed" +complete -f -c chronyc -n "__fish_use_subcommand" -a clients -d "Report on clients that have accessed the server" +complete -f -c chronyc -n "__fish_use_subcommand" -a serverstats -d "Show statistics of the server" +complete -f -c chronyc -n "__fish_use_subcommand" -a allow -d "Allow access to subnet as a default" +complete -f -c chronyc -n "__fish_seen_subcommand_from allow" -a all -d "Allow access to subnet and all children" +complete -f -c chronyc -n "__fish_use_subcommand" -a deny -d "Deny access to subnet as a default" +complete -f -c chronyc -n "__fish_seen_subcommand_from deny" -a all -d "Deny access to subnet and all children" +complete -f -c chronyc -n "__fish_use_subcommand" -a local -d "Serve time even when not synced" +complete -f -c chronyc -n "__fish_seen_subcommand_from local" -a off -d "Don't serve time when not synced" +complete -f -c chronyc -n "__fish_use_subcommand" -a smoothing -d "Show current time smoothing state" +complete -f -c chronyc -n "__fish_use_subcommand" -a smoothtime +complete -f -c chronyc -n "__fish_seen_subcommand_from smoothtime" -a activate -d "Activate time smoothing" +complete -f -c chronyc -n "__fish_seen_subcommand_from smoothtime" -a reset -d "Reset time smoothing" + +## Monitoring access +complete -f -c chronyc -n "__fish_use_subcommand" -a cmdaccheck -d "Check whether address is allowed" +complete -f -c chronyc -n "__fish_use_subcommand" -a cmdallow -d "Allow access to subnet as a default" +complete -f -c chronyc -n "__fish_seen_subcommand_from cmdallow" -a all -d "Allow access to subnet and all children" +complete -f -c chronyc -n "__fish_use_subcommand" -a cmddeny -d "Deny access to subnet as a default" +complete -f -c chronyc -n "__fish_seen_subcommand_from cmddeny" -a all -d "Deny access to subnet and all children" + +## RTC +complete -f -c chronyc -n "__fish_use_subcommand" -a rtcdata -d "Print current RTC performance parameters" +complete -f -c chronyc -n "__fish_use_subcommand" -a trimrtc -d "Correct RTC relative to system clock" +complete -f -c chronyc -n "__fish_use_subcommand" -a writertc -d "Save RTC performance parameters to file" + +## Other daemon commands +complete -f -c chronyc -n "__fish_use_subcommand" -a cyclelogs -d "Close and reopen log files" +complete -f -c chronyc -n "__fish_use_subcommand" -a dump -d "Dump all measurements to save files" +complete -f -c chronyc -n "__fish_use_subcommand" -a rekey -d "Reread keys from key file" +complete -f -c chronyc -n "__fish_use_subcommand" -a shutdown -d "Stop daemon" + +## Client commands +complete -f -c chronyc -n "__fish_use_subcommand" -a dns -d "Configure how hostname and IP address are resolved" +complete -f -c chronyc -n "__fish_use_subcommand" -a timeout -d "Set initial response timeout" +complete -f -c chronyc -n "__fish_use_subcommand" -a retries -d "Set max number of retries" +complete -f -c chronyc -n "__fish_use_subcommand" -a keygen -d "Generate key for key file" +complete -f -c chronyc -n "__fish_use_subcommand" -a "exit quit" -d "Leave the program" +complete -f -c chronyc -n "__fish_use_subcommand" -a help -d "Show help message" diff --git a/share/completions/clang++.fish b/share/completions/clang++.fish index 7b7087c3a..904d56ea8 100644 --- a/share/completions/clang++.fish +++ b/share/completions/clang++.fish @@ -4,4 +4,4 @@ complete -p '*clang++*' -n '__fish_should_complete_switches' -xa '(__fish_clang_complete)' complete -p '*clang++*' -n 'not __fish_should_complete_switches' \ - -xa '(__fish_complete_suffix \'{.o,.out,.c,.cpp,.so,.dylib}\')' + -xa "(__fish_complete_suffix .o; __fish_complete_suffix .out; __fish_complete_suffix .c; __fish_complete_suffix .cpp; __fish_complete_suffix .so; __fish_complete_suffix .dylib)" diff --git a/share/completions/clang.fish b/share/completions/clang.fish index b7879550e..3eec3575d 100644 --- a/share/completions/clang.fish +++ b/share/completions/clang.fish @@ -5,7 +5,8 @@ # This pattern unfortunately matches clang-format, etc. as well. complete -p '*clang*' -n '__fish_should_complete_switches' -xa '(__fish_clang_complete)' complete -c 'clang' -n 'not __fish_should_complete_switches' \ - -xa "(__fish_complete_suffix '{.o,.out,.c,.cpp,.so,.dylib}')" + -xa "(__fish_complete_suffix .o; __fish_complete_suffix .out; __fish_complete_suffix .c; __fish_complete_suffix .cpp; __fish_complete_suffix .so; __fish_complete_suffix .dylib)" + # again but without the -x this time for the pattern-matched completion complete -p '*clang*' -n 'not __fish_should_complete_switches' \ - -a "(__fish_complete_suffix '{.o,.out,.c,.cpp,.so,.dylib}')" + -a "(__fish_complete_suffix .o; __fish_complete_suffix .out; __fish_complete_suffix .c; __fish_complete_suffix .cpp; __fish_complete_suffix .so; __fish_complete_suffix .dylib)" diff --git a/share/completions/code.fish b/share/completions/code.fish new file mode 100644 index 000000000..c4f44cc5e --- /dev/null +++ b/share/completions/code.fish @@ -0,0 +1,41 @@ +# Visual Studio Code + +function __fish_complete_vscode_extensions + command --quiet code; and code --list-extensions +end + +complete -c code -s d -l diff -d 'Compare two files with each other' +complete -c code -s a -l add -d 'Add folder(s) to the last active window' +complete -c code -s g -l goto -x -d 'line and character position' +complete -c code -s n -l new-window -d 'Force to open a new window' +complete -c code -s r -l reuse-window -d 'Force to open a file or folder in an already opened window' +complete -c code -s w -l wait -d 'Wait for the files to be closed before returning' +complete -c code -l locale -x -d 'The locale to use (e.g. en-US or zh-TW)' +complete -c code -l user-data-dir -ra "(__fish_complete_directories)" -d 'Specifies the directory that user data is kept in' +complete -c code -s v -l version -d 'Print version' +complete -c code -s h -l help -d 'Print usage' +complete -c code -l folder-uri -d 'Opens a window with given folder uri(s)' +complete -c code -l file-uri -d 'Opens a window with given file uri(s)' + +# Extensions management +complete -c code -l extensions-dir -d 'Set the root path for extensions' +complete -c code -l list-extensions -d 'List the installed extensions' +complete -c code -l show-versions -d 'Show versions of installed extensions' -n '__fish_seen_argument -l list-extensions' +complete -c code -l install-extension -xa "(__fish_complete_vscode_extensions)" -d 'Installs or updates the extension' +complete -c code -l force -n '__fish_seen_argument -l install-extension' -d 'Avoid prompts when installing' +complete -c code -l enable-proposed-api -xa "(__fish_complete_vscode_extensions)" -d 'Enables proposed API features for extensions' +complete -c code -l uninstall-extension -xa "(__fish_complete_vscode_extensions)" -d 'Uninstall extension' +complete -c code -l disable-extension -xa "(__fish_complete_vscode_extensions)" -d 'Disable extension(s)' +complete -c code -l disable-extensions -d 'Disable all installed extensions' + +# Troubleshooting +complete -c code -l verbose -d 'Print verbose output (implies --wait)' +complete -c code -l log -a 'critical error warn info debug trace off' -d 'Log level to use (default: info)' +complete -c code -s s -l status -d 'Print process usage and diagnostics information' +complete -c code -s p -l prof-modules -d 'Capture JS module performance markers' +complete -c code -l prof-startup -d 'Run CPU profiler during startup' +complete -c code -l inspect-extensions -d 'Allow debugging and profiling of extensions' +complete -c code -l inspect-brk-extensions -x -d 'Allow debugging and profiling of extensions' +complete -c code -l disable-gpu -d 'Disable GPU hardware acceleration' +complete -c code -l upload-logs -d 'Uploads logs from current session to a secure endpoint' +complete -c code -l max-memory -x -d 'Max memory size for a window (Mbytes)' diff --git a/share/completions/command.fish b/share/completions/command.fish index 1ed4cbf7d..85d4eca3a 100644 --- a/share/completions/command.fish +++ b/share/completions/command.fish @@ -1,4 +1,6 @@ - -complete -c command -s h -l help -d 'Display help and exit' -complete -c command -s s -l search -d 'Print the file that would be executed' -complete -c command -d "Command to run" -xa "(__fish_complete_subcommand)" +complete -c command -n 'test (count (commandline -opc)) -eq 1' -s h -l help -d 'Display help and exit' +complete -c command -n 'test (count (commandline -opc)) -eq 1' -s a -l all -d 'Print all external commands by the given name' +complete -c command -n 'test (count (commandline -opc)) -eq 1' -s q -l quiet -d 'Do not print anything, only set exit status' +complete -c command -n 'test (count (commandline -opc)) -eq 1' -s s -l search -d 'Print the file that would be executed' +complete -c command -n 'test (count (commandline -opc)) -eq 1' -s s -l search -d 'Print the file that would be executed' +complete -c command -xa "(__fish_complete_subcommand)" diff --git a/share/completions/commandline.fish b/share/completions/commandline.fish index f60f9b774..1a7e7953e 100644 --- a/share/completions/commandline.fish +++ b/share/completions/commandline.fish @@ -4,8 +4,8 @@ complete -c commandline -s a -l append -d "Add text to the end of the selected a complete -c commandline -s i -l insert -d "Add text at cursor" complete -c commandline -s r -l replace -d "Replace selected part" -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 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)" diff --git a/share/completions/compare.fish b/share/completions/compare.fish index 117691143..4b87f43bd 100644 --- a/share/completions/compare.fish +++ b/share/completions/compare.fish @@ -1,45 +1,45 @@ -complete -c compare -o alpha -d 'On, activate, off, deactivate, set, opaque, copy transparent, extract, background, or shape [option]' -xa '(compare -list alpha)' -complete -c compare -o authenticate -d 'Decipher image with this password [password]' -complete -c compare -o channel -d 'Apply option to select image channels [type]' -xa '(compare -list channel)' -complete -c compare -o colorspace -d 'Alternate image colorspace [type]' -xa '(compare -list colorspace)' -complete -c compare -o compose -d 'Set image composite operator [operator]' -complete -c compare -o compress -d 'Type of pixel compression when writing the image [type]' -xa '(compare -list compress)' -complete -c compare -o decipher -d 'Convert cipher pixels to plain pixels [filename]' -r -complete -c compare -o define -d 'Define one or more image format options [format:option]' -complete -c compare -o density -d 'Horizontal and vertical density of the image [geometry]' -complete -c compare -o depth -d 'Image depth [value]' -complete -c compare -o dissimilarity-threshold -d 'Maximum distortion for (sub)image match [value]' -complete -c compare -o encipher -d 'Convert plain pixels to cipher pixels [filename]' -r -complete -c compare -o extract -d 'Extract area from image [geometry]' -complete -c compare -o format -d 'Output formatted image characteristics ["string"]' -complete -c compare -o fuzz -d 'Colors within this distance are considered equal [distance]' -complete -c compare -o highlight-color -d 'Emphasize pixel differences with this color [color]' -xa '(__fish_complete_convert_options color)' -complete -c compare -o identify -d 'Identify the format and characteristics of the image' -complete -c compare -o interlace -d 'Type of image interlacing scheme [type]' -xa '(compare -list interlace)' -complete -c compare -o limit -d 'Pixel cache resource limit [type value]' -x -complete -c compare -o lowlight-color -d 'De-emphasize pixel differences with this color [color]' -xa '(__fish_complete_convert_options color)' -complete -c compare -o metric -d 'Measure differences between images with this metric [type]' -xa '(compare -list metric)' -complete -c compare -o monitor -d 'Monitor progress ' -complete -c compare -o passphrase -d 'Get the passphrase from this file [filename]' -r -complete -c compare -o profile -d 'Add, delete, or apply an image profile [filename]' -r -complete -c compare -o quality -d 'JPEG/MIFF/PNG compression level [value]' -complete -c compare -o quiet -d 'Suppress all warning messages' -complete -c compare -o quantize -d 'Reduce colors in this colorspace [colorspace]' -xa '(compare -list colorspace)' -complete -c compare -o regard-warnings -d 'Pay attention to warning messages' -complete -c compare -o respect-parentheses -d 'Settings remain in effect until parenthesis boundary' -complete -c compare -o sampling-factor -d 'Horizontal and vertical sampling factor [geometry]' -complete -c compare -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' -complete -c compare -o set -d 'Attribute set an image attribute [ value]' -complete -c compare -o size -d 'Width and height of image [geometry]' -complete -c compare -o subimage-search -d 'Search for subimage' -complete -c compare -o transparent-color -d 'Transparent color [color]' -xa '(__fish_complete_convert_options color)' -complete -c compare -o type -d 'Image type [type]' -xa '(compare -list type)' -complete -c compare -o verbose -d 'Print detailed information about the image' -complete -c compare -o version -d 'Print version information' -complete -c compare -o virtual-pixel -d 'Virtual pixel access method [method]' -xa '(compare -list virtual-pixel)' -complete -c compare -o debug -d 'Display copious debugging information [events]' -xa '(compare -list debug)' -complete -c compare -o help -d 'Print program options' -complete -c compare -o list -d 'Print a list of supported option arguments [type]' -xa '(compare -list list)' -complete -c compare -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' -complete -c compare -o synchronize -d 'Synchronize image to storage device' -complete -c compare -o taint -d 'Declare the image as modified' +complete -c compare -o alpha -d 'On, activate, off, deactivate, set, opaque, copy transparent, extract, background, or shape [option]' -xa '(compare -list alpha)' +complete -c compare -o authenticate -d 'Decipher image with this password [password]' +complete -c compare -o channel -d 'Apply option to select image channels [type]' -xa '(compare -list channel)' +complete -c compare -o colorspace -d 'Alternate image colorspace [type]' -xa '(compare -list colorspace)' +complete -c compare -o compose -d 'Set image composite operator [operator]' +complete -c compare -o compress -d 'Type of pixel compression when writing the image [type]' -xa '(compare -list compress)' +complete -c compare -o decipher -d 'Convert cipher pixels to plain pixels [filename]' -r +complete -c compare -o define -d 'Define one or more image format options [format:option]' +complete -c compare -o density -d 'Horizontal and vertical density of the image [geometry]' +complete -c compare -o depth -d 'Image depth [value]' +complete -c compare -o dissimilarity-threshold -d 'Maximum distortion for (sub)image match [value]' +complete -c compare -o encipher -d 'Convert plain pixels to cipher pixels [filename]' -r +complete -c compare -o extract -d 'Extract area from image [geometry]' +complete -c compare -o format -d 'Output formatted image characteristics ["string"]' +complete -c compare -o fuzz -d 'Colors within this distance are considered equal [distance]' +complete -c compare -o highlight-color -d 'Emphasize pixel differences with this color [color]' -xa '(__fish_complete_convert_options color)' +complete -c compare -o identify -d 'Identify the format and characteristics of the image' +complete -c compare -o interlace -d 'Type of image interlacing scheme [type]' -xa '(compare -list interlace)' +complete -c compare -o limit -d 'Pixel cache resource limit [type value]' -x +complete -c compare -o lowlight-color -d 'De-emphasize pixel differences with this color [color]' -xa '(__fish_complete_convert_options color)' +complete -c compare -o metric -d 'Measure differences between images with this metric [type]' -xa '(compare -list metric)' +complete -c compare -o monitor -d 'Monitor progress ' +complete -c compare -o passphrase -d 'Get the passphrase from this file [filename]' -r +complete -c compare -o profile -d 'Add, delete, or apply an image profile [filename]' -r +complete -c compare -o quality -d 'JPEG/MIFF/PNG compression level [value]' +complete -c compare -o quiet -d 'Suppress all warning messages' +complete -c compare -o quantize -d 'Reduce colors in this colorspace [colorspace]' -xa '(compare -list colorspace)' +complete -c compare -o regard-warnings -d 'Pay attention to warning messages' +complete -c compare -o respect-parentheses -d 'Settings remain in effect until parenthesis boundary' +complete -c compare -o sampling-factor -d 'Horizontal and vertical sampling factor [geometry]' +complete -c compare -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' +complete -c compare -o set -d 'Attribute set an image attribute [ value]' +complete -c compare -o size -d 'Width and height of image [geometry]' +complete -c compare -o subimage-search -d 'Search for subimage' +complete -c compare -o transparent-color -d 'Transparent color [color]' -xa '(__fish_complete_convert_options color)' +complete -c compare -o type -d 'Image type [type]' -xa '(compare -list type)' +complete -c compare -o verbose -d 'Print detailed information about the image' +complete -c compare -o version -d 'Print version information' +complete -c compare -o virtual-pixel -d 'Virtual pixel access method [method]' -xa '(compare -list virtual-pixel)' +complete -c compare -o debug -d 'Display copious debugging information [events]' -xa '(compare -list debug)' +complete -c compare -o help -d 'Print program options' +complete -c compare -o list -d 'Print a list of supported option arguments [type]' -xa '(compare -list list)' +complete -c compare -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' +complete -c compare -o synchronize -d 'Synchronize image to storage device' +complete -c compare -o taint -d 'Declare the image as modified' diff --git a/share/completions/complete.fish b/share/completions/complete.fish index 6e9a7b1f6..35ab244df 100644 --- a/share/completions/complete.fish +++ b/share/completions/complete.fish @@ -1,20 +1,20 @@ # Completions for complete -complete -c complete -s c -l command -d "Command to add completion to" -r -complete -c complete -s p -l path -d "Path to add completion to" -complete -c complete -s s -l short-option -d "POSIX-style short option to complete" -complete -c complete -s l -l long-option -d "GNU-style long option to complete" -complete -c complete -s o -l old-option -d "Old style long option to complete" +complete -c complete -s c -l command -d "Command to add completion to" -xa '(__fish_complete_command)' +complete -c complete -s p -l path -d "Path to add completion to" -r +complete -c complete -s s -l short-option -d "POSIX-style short option to complete" -x +complete -c complete -s l -l long-option -d "GNU-style long option to complete" -x +complete -c complete -s o -l old-option -d "Old style long option to complete" -x complete -c complete -s f -l no-files -d "Don't use file completion" complete -c complete -s r -l require-parameter -d "Require parameter" complete -c complete -s x -l exclusive -d "Require parameter and don\'t use file completion" -complete -c complete -s a -l arguments -d "Space-separated list of possible option arguments" -complete -c complete -s d -l description -d "Description of completion" +complete -c complete -s a -l arguments -d "Space-separated list of possible option arguments" -x +complete -c complete -s d -l description -d "Description of completion" -x complete -c complete -s e -l erase -d "Remove completion" complete -c complete -s h -l help -d "Display help and exit" complete -c complete -s C -l do-complete -d "Print completions for a commandline specified as a parameter" -complete -c complete -s n -l condition -d "Completion only used if command has zero exit status" -r -complete -c complete -s w -l wraps -d "Inherit completions from specified command" +complete -c complete -s n -l condition -d "Completion only used if command has zero exit status" -x +complete -c complete -s w -l wraps -d "Inherit completions from specified command" -xa '(__fish_complete_command)' # Deprecated options diff --git a/share/completions/composer.fish b/share/completions/composer.fish index 4ae7cb064..b441970eb 100644 --- a/share/completions/composer.fish +++ b/share/completions/composer.fish @@ -1,39 +1,42 @@ function __fish_composer_needs_command - set cmd (commandline -opc) + set cmd (commandline -opc) - if [ (count $cmd) -eq 1 ] - return 0 - end + if [ (count $cmd) -eq 1 ] + return 0 + end - return 1 + return 1 end function __fish_composer_using_command - set cmd (commandline -opc) + set cmd (commandline -opc) - if [ (count $cmd) -gt 1 ] - if [ $argv[1] = $cmd[2] ] - return 0 + if [ (count $cmd) -gt 1 ] + if [ $argv[1] = $cmd[2] ] + return 0 + end end - end - return 1 + return 1 end function __fish_composer_required_packages test -f composer.json; or return + set -l python (__fish_anypython); or return echo " +import itertools import json json_data = open('composer.json') data = json.load(json_data) json_data.close() -packages = data['require'].keys() + data['require-dev'].keys() -print \"\n\".join(packages) - " | python +packages = itertools.chain(data['require'].keys(), data['require-dev'].keys()) +print(\"\n\".join(packages)) + " | $python end function __fish_composer_installed_packages test -f composer.lock; or return + set -l python (__fish_anypython); or return echo " import json json_data = open('composer.lock') @@ -44,82 +47,295 @@ for package in data['packages']: installed_packages.append(package['name']) for package in data['packages-dev']: installed_packages.append(package['name']) -print \"\n\".join(installed_packages) -" | python +print(\"\n\".join(installed_packages)) +" | $python end function __fish_composer_scripts test -f composer.json; or return + set -l python (__fish_anypython); or return echo " import json json_data = open('composer.json') data = json.load(json_data) json_data.close() if 'scripts' in data and data['scripts']: - print \"\n\".join(data['scripts'].keys()) -" | python + print(\"\n\".join(data['scripts'].keys())) +" | $python end -#add cmds list -set --local composer_cmds 'about' 'archive' 'browse' 'clear-cache' 'clearcache' 'config' 'create-project' 'depends' 'diagnose' 'dump-autoload' 'dumpautoload' 'global' 'help' 'home' 'init' 'install' 'licenses' 'list' 'remove' 'require' 'run-script' 'search' 'self-update' 'selfupdate' 'show' 'status' 'update' 'validate' - -#help -complete -f -c composer -n '__fish_composer_using_command help' -a "$composer_cmds" - -#update -complete -f -c composer -n '__fish_composer_using_command update' -a "(__fish_composer_required_packages)" - -#remove -complete -f -c composer -n '__fish_composer_using_command remove' -a "(__fish_composer_required_packages)" - -#diagnostics on installed commands -complete -f -c composer -n '__fish_composer_using_command why' -a "(__fish_composer_installed_packages)" -complete -f -c composer -n '__fish_composer_using_command why-not' -a "(__fish_composer_installed_packages)" -complete -f -c composer -n '__fish_composer_using_command depends' -a "(__fish_composer_installed_packages)" +# add cmds list +set --local composer_cmds 'about' 'archive' 'browse' 'check-platform-reqs' 'clear-cache' 'config' 'create-project' 'depends' 'diagnose' 'dump-autoload' 'exec' 'global' 'help' 'home' 'init' 'install' 'licenses' 'list' 'outdated' 'prohibits' 'remove' 'require' 'run-script' 'search' 'self-update' 'show' 'suggests' 'status' 'update' 'validate' 'why' 'why-not' # Custom scripts complete -f -c composer -n '__fish_composer_needs_command' -a '(__fish_composer_scripts)' -d 'User script' complete -f -c composer -n '__fish_composer_using_command run-script' -a "(__fish_composer_scripts)" +complete -f -c composer -n '__fish_composer_using_command run-script' -l 'timeout' -d 'Sets script timeout in seconds, or 0 for never.' +complete -f -c composer -n '__fish_composer_using_command run-script' -l 'dev' -d 'Sets the dev mode.' +complete -f -c composer -n '__fish_composer_using_command run-script' -l 'no-dev' -d 'Disables the dev mode.' +complete -f -c composer -n '__fish_composer_using_command run-script' -l 'list' -d 'List scripts.' -#popisky +# commands complete -f -c composer -n '__fish_composer_needs_command' -a 'about' -d 'Short information about Composer' complete -f -c composer -n '__fish_composer_needs_command' -a 'archive' -d 'Create an archive of this composer package' complete -f -c composer -n '__fish_composer_needs_command' -a 'browse' -d 'Opens the package\'s repository URL or homepage in your browser.' +complete -f -c composer -n '__fish_composer_needs_command' -a 'check-platform-reqs' -d 'Check that platform requirements are satisfied.' complete -f -c composer -n '__fish_composer_needs_command' -a 'clear-cache' -d 'Clears composer\'s internal package cache.' -complete -f -c composer -n '__fish_composer_needs_command' -a 'clearcache' -d 'Clears composer\'s internal package cache.' complete -f -c composer -n '__fish_composer_needs_command' -a 'config' -d 'Set config options' complete -f -c composer -n '__fish_composer_needs_command' -a 'create-project' -d 'Create new project from a package into given directory.' complete -f -c composer -n '__fish_composer_needs_command' -a 'depends' -d 'Shows which packages depend on the given package' complete -f -c composer -n '__fish_composer_needs_command' -a 'diagnose' -d 'Diagnoses the system to identify common errors.' complete -f -c composer -n '__fish_composer_needs_command' -a 'dump-autoload' -d 'Dumps the autoloader' -complete -f -c composer -n '__fish_composer_needs_command' -a 'dumpautoload' -d 'Dumps the autoloader' -complete -f -c composer -n '__fish_composer_needs_command' -a 'global' -d 'Allows running commands in the global composer dir (\$COMPOSER_HOME).' +complete -f -c composer -n '__fish_composer_needs_command' -a 'exec' -d 'Executes a vendored binary/script.' +complete -f -c composer -n '__fish_composer_needs_command' -a 'global' -d 'Allows running commands in the global composer dir ($COMPOSER_HOME).' complete -f -c composer -n '__fish_composer_needs_command' -a 'help' -d 'Displays help for a command' complete -f -c composer -n '__fish_composer_needs_command' -a 'home' -d 'Opens the package\'s repository URL or homepage in your browser.' complete -f -c composer -n '__fish_composer_needs_command' -a 'init' -d 'Creates a basic composer.json file in current directory.' complete -f -c composer -n '__fish_composer_needs_command' -a 'install' -d 'Installs the project dependencies from the composer.lock file if present, or falls back on the composer.json.' complete -f -c composer -n '__fish_composer_needs_command' -a 'licenses' -d 'Show information about licenses of dependencies' complete -f -c composer -n '__fish_composer_needs_command' -a 'list' -d 'Lists commands' +complete -f -c composer -n '__fish_composer_needs_command' -a 'outdated' -d 'Shows a list of installed packages that have updates available, including their latest version.' +complete -f -c composer -n '__fish_composer_needs_command' -a 'prohibits' -d 'Shows which packages prevent the given package from being installed.' complete -f -c composer -n '__fish_composer_needs_command' -a 'remove' -d 'Removes a package from the require or require-dev' complete -f -c composer -n '__fish_composer_needs_command' -a 'require' -d 'Adds required packages to your composer.json and installs them' complete -f -c composer -n '__fish_composer_needs_command' -a 'run-script' -d 'Run the scripts defined in composer.json.' complete -f -c composer -n '__fish_composer_needs_command' -a 'search' -d 'Search for packages' complete -f -c composer -n '__fish_composer_needs_command' -a 'self-update' -d 'Updates composer.phar to the latest version.' -complete -f -c composer -n '__fish_composer_needs_command' -a 'selfupdate' -d 'Updates composer.phar to the latest version.' complete -f -c composer -n '__fish_composer_needs_command' -a 'show' -d 'Show information about packages' complete -f -c composer -n '__fish_composer_needs_command' -a 'status' -d 'Show a list of locally modified packages' +complete -f -c composer -n '__fish_composer_needs_command' -a 'suggests' -d 'Shows package suggestions.' complete -f -c composer -n '__fish_composer_needs_command' -a 'update' -d 'Updates your dependencies to the latest version according to composer.json, and updates the composer.lock file.' complete -f -c composer -n '__fish_composer_needs_command' -a 'validate' -d 'Validates a composer.json' complete -f -c composer -n '__fish_composer_needs_command' -a 'why' -d 'Shows which packages cause the given package to be installed' complete -f -c composer -n '__fish_composer_needs_command' -a 'why-not' -d 'Shows which packages prevent the given package from being installed' -complete -f -c composer -n '__fish_composer_needs_command' -s 'h' -l 'help' -d 'Displays composer\'s help.' -complete -f -c composer -n '__fish_composer_needs_command' -s 'q' -l 'quiet' -d 'Do not output any message.' -complete -f -c composer -n '__fish_composer_needs_command' -s 'v' -l 'verbose' -d 'Increase the verbosity of messages: 1 for normal output (-v), 2 for more verbose output (-vv) and 3 for debug (-vvv).' -complete -f -c composer -n '__fish_composer_needs_command' -s 'V' -l 'version' -d 'Display composer\'s application version.' -complete -f -c composer -n '__fish_composer_needs_command' -l 'ansi' -d 'Force ANSI output.' -complete -f -c composer -n '__fish_composer_needs_command' -l 'np-ansi' -d 'Disable ANSI output.' -complete -f -c composer -n '__fish_composer_needs_command' -s 'n' -l 'no-interaction' -d 'Do not ask any interactive question.' -complete -f -c composer -n '__fish_composer_needs_command' -l 'profile' -d 'Display timing and memory usage information.' -complete -f -c composer -n '__fish_composer_needs_command' -s 'd' -l 'working-dir' -d 'If specified, use the given directory as working directory.' +# archive +complete -f -c composer -n '__fish_composer_using_command archive' -l 'format' -d 'Format of the resulting archive: tar or zip' +complete -f -c composer -n '__fish_composer_using_command archive' -l 'dir' -d 'Write the archive to this directory' +complete -f -c composer -n '__fish_composer_using_command archive' -l 'file' -d 'Write the archive with the given file name. Note that the format will be appended.' +complete -f -c composer -n '__fish_composer_using_command archive' -l 'ignore-filters' -d 'Ignore filters when saving package' +# browse +complete -f -c composer -n '__fish_composer_using_command browse' -l 'homepage' -d 'Open the homepage instead of the repository URL.' +complete -f -c composer -n '__fish_composer_using_command browse' -l 'show' -d 'Only show the homepage or repository URL.' + +# check-platform-reqs +complete -f -c composer -n '__fish_composer_using_command check-platform-reqs' -l 'no-dev' -d 'Disables checking of require-dev packages requirements.' + +# config +complete -f -c composer -n '__fish_composer_using_command config' -l 'global' -d 'Apply command to the global config file' +complete -f -c composer -n '__fish_composer_using_command config' -l 'editor' -d 'Open editor' +complete -f -c composer -n '__fish_composer_using_command config' -l 'auth' -d 'Affect auth config file (only used for --editor)' +complete -f -c composer -n '__fish_composer_using_command config' -l 'unset' -d 'Unset the given setting-key' +complete -f -c composer -n '__fish_composer_using_command config' -l 'list' -d 'List configuration settings' +complete -f -c composer -n '__fish_composer_using_command config' -l 'file' -d 'If you want to choose a different composer.json or config.json' +complete -f -c composer -n '__fish_composer_using_command config' -l 'absolute' -d 'Returns absolute paths when fetching *-dir config values instead of relative' + +# create-project +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'stability' -d 'Minimum-stability allowed (unless a version is specified).' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'prefer-source' -d 'Forces installation from package sources when possible, including VCS information.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'prefer-dist' -d 'Forces installation from package dist even for dev versions.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'repository' -d 'Pick a different repository (as url or json config) to look for the package.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'repository-url' -d 'DEPRECATED: Use --repository instead.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'dev' -d 'Enables installation of require-dev packages (enabled by default, only present for BC).' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'no-dev' -d 'Disables installation of require-dev packages.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'no-custom-installers' -d 'DEPRECATED: Use no-plugins instead.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'no-scripts' -d 'Whether to prevent execution of all defined scripts in the root package.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'no-progress' -d 'Do not output download progress.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'no-secure-http' -d 'Disable the secure-http config option temporarily while installing the root package. Use at your own risk. Using this flag is a bad idea.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'keep-vcs' -d 'Whether to prevent deleting the vcs folder.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'remove-vcs' -d 'Whether to force deletion of the vcs folder without prompting.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'no-install' -d 'Whether to skip installation of the package dependencies.' +complete -f -c composer -n '__fish_composer_using_command create-project' -l 'ignore-platform-reqs' -d 'Ignore platform requirements (php & ext- packages).' + +# depends +complete -f -c composer -n '__fish_composer_using_command depends' -a "(__fish_composer_installed_packages)" +complete -f -c composer -n '__fish_composer_using_command depends' -l 'recursive' -d 'Recursively resolves up to the root package' +complete -f -c composer -n '__fish_composer_using_command depends' -l 'tree' -d 'Prints the results as a nested tree' + +# dump-autoload +complete -f -c composer -n '__fish_composer_using_command dump-autoload' -l 'no-scripts' -d 'Skips the execution of all scripts defined in composer.json file.' +complete -f -c composer -n '__fish_composer_using_command dump-autoload' -l 'optimize' -d 'Optimizes PSR0 and PSR4 packages to be loaded with classmaps too, good for production.' +complete -f -c composer -n '__fish_composer_using_command dump-autoload' -l 'classmap-authoritative' -d 'Autoload classes from the classmap only. Implicitly enables `--optimize`.' +complete -f -c composer -n '__fish_composer_using_command dump-autoload' -l 'apcu' -d 'Use APCu to cache found/not-found classes.' +complete -f -c composer -n '__fish_composer_using_command dump-autoload' -l 'no-dev' -d 'Disables autoload-dev rules.' + +# exec +complete -f -c composer -n '__fish_composer_using_command exec' -l 'list' + +# help +complete -f -c composer -n '__fish_composer_using_command help' -a "$composer_cmds" +complete -f -c composer -n '__fish_composer_using_command help' -l 'xml' -d 'To output help as XML' +complete -f -c composer -n '__fish_composer_using_command help' -l 'format' -d 'The output format (txt, xml, json, or md)' +complete -f -c composer -n '__fish_composer_using_command help' -l 'raw' -d 'To output raw command help' + +# init +complete -f -c composer -n '__fish_composer_using_command init' -l 'name' -d 'Name of the package' +complete -f -c composer -n '__fish_composer_using_command init' -l 'description' -d 'Description of package' +complete -f -c composer -n '__fish_composer_using_command init' -l 'author' -d 'Author name of package' +complete -f -c composer -n '__fish_composer_using_command init' -l 'type' -d 'Type of package (e.g. library, project, metapackage, composer-plugin)' +complete -f -c composer -n '__fish_composer_using_command init' -l 'homepage' -d 'Homepage of package' +complete -f -c composer -n '__fish_composer_using_command init' -l 'require' -d 'Package to require with a version constraint, e.g. foo/bar:1.0.0 or foo/bar=1.0.0 or "foo/bar 1.0.0"' +complete -f -c composer -n '__fish_composer_using_command init' -l 'require-dev' -d 'Package to require for development with a version constraint, e.g. foo/bar:1.0.0 or foo/bar=1.0.0 or "foo/bar 1.0.0"' +complete -f -c composer -n '__fish_composer_using_command init' -l 'stability' -d 'Minimum stability (empty or one of: stable, RC, beta, alpha, dev)' +complete -f -c composer -n '__fish_composer_using_command init' -l 'license' -d 'License of package' +complete -f -c composer -n '__fish_composer_using_command init' -l 'repository' -d 'Add custom repositories, either by URL or using JSON arrays' + +# install +complete -f -c composer -n '__fish_composer_using_command install' -l 'prefer-source' -d 'Forces installation from package sources when possible, including VCS information.' +complete -f -c composer -n '__fish_composer_using_command install' -l 'prefer-dist' -d 'Forces installation from package dist even for dev versions.' +complete -f -c composer -n '__fish_composer_using_command install' -l 'dry-run' -d 'Outputs the operations but will not execute anything (implicitly enables --verbose).' +complete -f -c composer -n '__fish_composer_using_command install' -l 'dev' -d 'Enables installation of require-dev packages (enabled by default, only present for BC).' +complete -f -c composer -n '__fish_composer_using_command install' -l 'no-dev' -d 'Disables installation of require-dev packages.' +complete -f -c composer -n '__fish_composer_using_command install' -l 'no-custom-installers' -d 'DEPRECATED: Use no-plugins instead.' +complete -f -c composer -n '__fish_composer_using_command install' -l 'no-autoloader' -d 'Skips autoloader generation' +complete -f -c composer -n '__fish_composer_using_command install' -l 'no-scripts' -d 'Skips the execution of all scripts defined in composer.json file.' +complete -f -c composer -n '__fish_composer_using_command install' -l 'no-progress' -d 'Do not output download progress.' +complete -f -c composer -n '__fish_composer_using_command install' -l 'no-suggest' -d 'Do not show package suggestions.' +complete -f -c composer -n '__fish_composer_using_command install' -l 'optimize-autoloader' -d 'Optimize autoloader during autoloader dump' +complete -f -c composer -n '__fish_composer_using_command install' -l 'classmap-authoritative' -d 'Autoload classes from the classmap only. Implicitly enables `--optimize-autoloader`.' +complete -f -c composer -n '__fish_composer_using_command install' -l 'apcu-autoloader' -d 'Use APCu to cache found/not-found classes.' +complete -f -c composer -n '__fish_composer_using_command install' -l 'ignore-platform-reqs' -d 'Ignore platform requirements (php & ext- packages).' + +# licenses +complete -f -c composer -n '__fish_composer_using_command licenses' -l 'format' -d 'Format of the output: text or json' +complete -f -c composer -n '__fish_composer_using_command licenses' -l 'no-dev' -d 'Disables search in require-dev packages.' + +# list +complete -f -c composer -n '__fish_composer_using_command list' -l 'xml' -d 'To output list as XML' +complete -f -c composer -n '__fish_composer_using_command list' -l 'raw' -d 'To output raw command list' +complete -f -c composer -n '__fish_composer_using_command list' -l 'format' -d 'The output format (txt, xml, json, or md)' + +# outdated +complete -f -c composer -n '__fish_composer_using_command outdated' -l 'outdated' -d 'Show only packages that are outdated (this is the default, but present here for compat with `show`' +complete -f -c composer -n '__fish_composer_using_command outdated' -l 'all' -d 'Show all installed packages with their latest versions' +complete -f -c composer -n '__fish_composer_using_command outdated' -l 'direct' -d 'Shows only packages that are directly required by the root package' +complete -f -c composer -n '__fish_composer_using_command outdated' -l 'strict' -d 'Return a non-zero exit code when there are outdated packages' +complete -f -c composer -n '__fish_composer_using_command outdated' -l 'minor-only' -d 'Show only packages that have minor SemVer-compatible updates. Use with the --outdated option.' +complete -f -c composer -n '__fish_composer_using_command outdated' -l 'format' -d 'Format of the output: text or json' +complete -f -c composer -n '__fish_composer_using_command outdated' -l 'ignore' -d 'Ignore specified package(s). Use it with the --outdated option if you don\'t want to be informed about new versions of some packages.' + +# prohibits +complete -f -c composer -n '__fish_composer_using_command prohibits' -l 'recursive' -d 'Recursively resolves up to the root package' +complete -f -c composer -n '__fish_composer_using_command prohibits' -l 'tree' -d 'Prints the results as a nested tree' + +# remove +complete -f -c composer -n '__fish_composer_using_command remove' -a "(__fish_composer_required_packages)" +complete -f -c composer -n '__fish_composer_using_command remove' -l 'dev' -d 'Removes a package from the require-dev section.' +complete -f -c composer -n '__fish_composer_using_command remove' -l 'no-progress' -d 'Do not output download progress.' +complete -f -c composer -n '__fish_composer_using_command remove' -l 'no-update' -d 'Disables the automatic update of the dependencies.' +complete -f -c composer -n '__fish_composer_using_command remove' -l 'no-scripts' -d 'Skips the execution of all scripts defined in composer.json file.' +complete -f -c composer -n '__fish_composer_using_command remove' -l 'update-no-dev' -d 'Run the dependency update with the --no-dev option.' +complete -f -c composer -n '__fish_composer_using_command remove' -l 'update-with-dependencies' -d 'Allows inherited dependencies to be updated with explicit dependencies. (Deprecrated, is now default behavior)' +complete -f -c composer -n '__fish_composer_using_command remove' -l 'no-update-with-dependencies' -d 'Does not allow inherited dependencies to be updated with explicit dependencies.' +complete -f -c composer -n '__fish_composer_using_command remove' -l 'ignore-platform-reqs' -d 'Ignore platform requirements (php & ext- packages).' +complete -f -c composer -n '__fish_composer_using_command remove' -l 'optimize-autoloader' -d 'Optimize autoloader during autoloader dump' +complete -f -c composer -n '__fish_composer_using_command remove' -l 'classmap-authoritative' -d 'Autoload classes from the classmap only. Implicitly enables `--optimize-autoloader`.' +complete -f -c composer -n '__fish_composer_using_command remove' -l 'apcu-autoloader' -d 'Use APCu to cache found/not-found classes.' + +# require +complete -f -c composer -n '__fish_composer_using_command require' -l 'dev' -d 'Add requirement to require-dev.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'prefer-source' -d 'Forces installation from package sources when possible, including VCS information.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'prefer-dist' -d 'Forces installation from package dist even for dev versions.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'no-progress' -d 'Do not output download progress.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'no-suggest' -d 'Do not show package suggestions.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'no-update' -d 'Disables the automatic update of the dependencies.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'no-scripts' -d 'Skips the execution of all scripts defined in composer.json file.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'update-no-dev' -d 'Run the dependency update with the --no-dev option.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'update-with-dependencies' -d 'Allows inherited dependencies to be updated, except those that are root requirements.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'update-with-all-dependencies' -d 'Allows all inherited dependencies to be updated, including those that are root requirements.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'ignore-platform-reqs' -d 'Ignore platform requirements (php & ext- packages).' +complete -f -c composer -n '__fish_composer_using_command require' -l 'prefer-stable' -d 'Prefer stable versions of dependencies.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'prefer-lowest' -d 'Prefer lowest versions of dependencies.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'sort-packages' -d 'Sorts packages when adding/updating a new dependency' +complete -f -c composer -n '__fish_composer_using_command require' -l 'optimize-autoloader' -d 'Optimize autoloader during autoloader dump' +complete -f -c composer -n '__fish_composer_using_command require' -l 'classmap-authoritative' -d 'Autoload classes from the classmap only. Implicitly enables `--optimize-autoloader`.' +complete -f -c composer -n '__fish_composer_using_command require' -l 'apcu-autoloader' -d 'Use APCu to cache found/not-found classes.' + +# search +complete -f -c composer -n '__fish_composer_using_command search' -l 'only-name' -d 'Search only in name' +complete -f -c composer -n '__fish_composer_using_command search' -l 'type' -d 'Search for a specific package type' + +# self-update +complete -f -c composer -n '__fish_composer_using_command self-update' -l 'rollback' -d 'Revert to an older installation of composer' +complete -f -c composer -n '__fish_composer_using_command self-update' -l 'clean-backups' -d 'Delete old backups during an update. This makes the current version of composer the only backup available after the update' +complete -f -c composer -n '__fish_composer_using_command self-update' -l 'no-progress' -d 'Do not output download progress.' +complete -f -c composer -n '__fish_composer_using_command self-update' -l 'update-keys' -d 'Prompt user for a key update' +complete -f -c composer -n '__fish_composer_using_command self-update' -l 'stable' -d 'Force an update to the stable channel' +complete -f -c composer -n '__fish_composer_using_command self-update' -l 'preview' -d 'Force an update to the preview channel' +complete -f -c composer -n '__fish_composer_using_command self-update' -l 'snapshot' -d 'Force an update to the snapshot channel' +complete -f -c composer -n '__fish_composer_using_command self-update' -l 'set-channel-only' -d 'Only store the channel as the default one and then exit' + +# show +complete -f -c composer -n '__fish_composer_using_command show' -a "(__fish_composer_installed_packages)" +complete -f -c composer -n '__fish_composer_using_command show' -l 'all' -d 'List all packages' +complete -f -c composer -n '__fish_composer_using_command show' -l 'installed' -d 'List installed packages only (enabled by default, only present for BC).' +complete -f -c composer -n '__fish_composer_using_command show' -l 'platform' -d 'List platform packages only' +complete -f -c composer -n '__fish_composer_using_command show' -l 'available' -d 'List available packages only' +complete -f -c composer -n '__fish_composer_using_command show' -l 'self' -d 'Show the root package information' +complete -f -c composer -n '__fish_composer_using_command show' -l 'name-only' -d 'List package names only' +complete -f -c composer -n '__fish_composer_using_command show' -l 'path' -d 'Show package paths' +complete -f -c composer -n '__fish_composer_using_command show' -l 'tree' -d 'List the dependencies as a tree' +complete -f -c composer -n '__fish_composer_using_command show' -l 'latest' -d 'Show the latest version' +complete -f -c composer -n '__fish_composer_using_command show' -l 'outdated' -d 'Show the latest version but only for packages that are outdated' +complete -f -c composer -n '__fish_composer_using_command show' -l 'ignore' -d 'Ignore specified package(s). Use it with the --outdated option if you don\'t want to be informed about new versions of some packages.' +complete -f -c composer -n '__fish_composer_using_command show' -l 'minor-only' -d 'Show only packages that have minor SemVer-compatible updates. Use with the --outdated option.' +complete -f -c composer -n '__fish_composer_using_command show' -l 'direct' -d 'Shows only packages that are directly required by the root package' +complete -f -c composer -n '__fish_composer_using_command show' -l 'strict' -d 'Return a non-zero exit code when there are outdated packages' +complete -f -c composer -n '__fish_composer_using_command show' -l 'format' -d 'Format of the output: text or json' + +# suggests +complete -f -c composer -n '__fish_composer_using_command suggests' -l 'by-package' -d 'Groups output by suggesting package' +complete -f -c composer -n '__fish_composer_using_command suggests' -l 'by-suggestion' -d 'Groups output by suggested package' +complete -f -c composer -n '__fish_composer_using_command suggests' -l 'no-dev' -d 'Exclude suggestions from require-dev packages' + +# update +complete -f -c composer -n '__fish_composer_using_command update' -a "(__fish_composer_required_packages)" +complete -f -c composer -n '__fish_composer_using_command update' -l 'prefer-source' -d 'Forces installation from package sources when possible, including VCS information.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'prefer-dist' -d 'Forces installation from package dist even for dev versions.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'dry-run' -d 'Outputs the operations but will not execute anything (implicitly enables --verbose).' +complete -f -c composer -n '__fish_composer_using_command update' -l 'dev' -d 'Enables installation of require-dev packages (enabled by default, only present for BC).' +complete -f -c composer -n '__fish_composer_using_command update' -l 'no-dev' -d 'Disables installation of require-dev packages.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'lock' -d 'Only updates the lock file hash to suppress warning about the lock file being out of date.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'no-custom-installers' -d 'DEPRECATED: Use no-plugins instead.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'no-autoloader' -d 'Skips autoloader generation' +complete -f -c composer -n '__fish_composer_using_command update' -l 'no-scripts' -d 'Skips the execution of all scripts defined in composer.json file.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'no-progress' -d 'Do not output download progress.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'no-suggest' -d 'Do not show package suggestions.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'with-dependencies' -d 'Add also dependencies of whitelisted packages to the whitelist, except those defined in root package.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'with-all-dependencies' -d 'Add also all dependencies of whitelisted packages to the whitelist, including those defined in root package.' +complete -f -c composer -n '__fish_composer_using_command update' -s 'v' -l 'verbose' -d 'Shows more details including new commits pulled in when updating packages.' +complete -f -c composer -n '__fish_composer_using_command update' -s 'o' -l 'optimize-autoloader' -d 'Optimize autoloader during autoloader dump.' +complete -f -c composer -n '__fish_composer_using_command update' -s 'a' -l 'classmap-authoritative' -d 'Autoload classes from the classmap only. Implicitly enables `--optimize-autoloader`.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'apcu-autoloader' -d 'Use APCu to cache found/not-found classes.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'ignore-platform-reqs' -d 'Ignore platform requirements (php & ext- packages).' +complete -f -c composer -n '__fish_composer_using_command update' -l 'prefer-stable' -d 'Prefer stable versions of dependencies.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'prefer-lowest' -d 'Prefer lowest versions of dependencies.' +complete -f -c composer -n '__fish_composer_using_command update' -s 'i' -l 'interactive' -d 'Interactive interface with autocompletion to select the packages to update.' +complete -f -c composer -n '__fish_composer_using_command update' -l 'root-reqs' -d 'Restricts the update to your first degree dependencies.' + +# validate +complete -f -c composer -n '__fish_composer_using_command validate' -l 'no-check-all' -d 'Do not validate requires for overly strict/loose constraints' +complete -f -c composer -n '__fish_composer_using_command validate' -l 'no-check-lock' -d 'Do not check if lock file is up to date' +complete -f -c composer -n '__fish_composer_using_command validate' -l 'no-check-publish' -d 'Do not check for publish errors' +complete -f -c composer -n '__fish_composer_using_command validate' -l 'with-dependencies' -d 'Also validate the composer.json of all installed dependencies' +complete -f -c composer -n '__fish_composer_using_command validate' -l 'strict' -d 'Return a non-zero exit code for warnings as well as errors' + +# why +complete -f -c composer -n '__fish_composer_using_command why' -a "(__fish_composer_installed_packages)" + +# why-not +complete -f -c composer -n '__fish_composer_using_command why-not' -a "(__fish_composer_installed_packages)" + +# global options +complete -c composer -n '__fish_composer_needs_command' -s 'h' -l 'help' -d 'Displays composer\'s help.' +complete -c composer -n '__fish_composer_needs_command' -s 'q' -l 'quiet' -d 'Do not output any message.' +complete -c composer -n '__fish_composer_needs_command' -s 'v' -l 'verbose' -d 'Increase the verbosity of messages: 1 for normal output (-v), 2 for more verbose output (-vv) and 3 for debug (-vvv).' +complete -c composer -n '__fish_composer_needs_command' -s 'V' -l 'version' -d 'Display composer\'s application version.' +complete -c composer -n '__fish_composer_needs_command' -l 'ansi' -d 'Force ANSI output.' +complete -c composer -n '__fish_composer_needs_command' -l 'no-ansi' -d 'Disable ANSI output.' +complete -c composer -n '__fish_composer_needs_command' -s 'n' -l 'no-interaction' -d 'Do not ask any interactive question.' +complete -c composer -n '__fish_composer_needs_command' -l 'profile' -d 'Display timing and memory usage information.' +complete -c composer -n '__fish_composer_needs_command' -l 'no-plugins' -d 'Whether to disable plugins.' +complete -c composer -n '__fish_composer_needs_command' -s 'd' -l 'working-dir' -d 'If specified, use the given directory as working directory.' +complete -c composer -n '__fish_composer_needs_command' -l 'no-cache' -d 'Prevent use of the cache.' diff --git a/share/completions/composite.fish b/share/completions/composite.fish index 28de77397..ce972cbae 100644 --- a/share/completions/composite.fish +++ b/share/completions/composite.fish @@ -1,85 +1,85 @@ -complete -c composite -o affine -d 'Affine transform matrix [matrix]' -complete -c composite -o alpha -d 'On, activate, off, deactivate, set, opaque, copy transparent, extract, background, or shape [option]' -xa '(convert -list alpha)' -complete -c composite -o authenticate -d 'Decipher image with this password [password]' -complete -c composite -o blue-primary -d 'Chromaticity blue primary point [point]' -complete -c composite -o channel -d 'Apply option to select image channels [type]' -xa '(convert -list channel)' -complete -c composite -o colorspace -d 'Alternate image colorspace [type]' -xa '(convert -list colorspace)' -complete -c composite -o comment -d 'Annotate image with comment [string]' -complete -c composite -o compose -d 'Composite operator [operator]' -complete -c composite -o compress -d 'Type of pixel compression when writing the image [type]' -xa '(convert -list compress)' -complete -c composite -o define -d 'Define one or more image format options [format:option]' -complete -c composite -o depth -d 'Image depth [value]' -complete -c composite -o density -d 'Horizontal and vertical density of the image [geometry]' -complete -c composite -o display -d 'Get image or font from this X server [server]' -complete -c composite -o dispose -d 'Layer disposal method [method]' -xa '(convert -list dispose)' -complete -c composite -o dither -d 'Apply error diffusion to image [method]' -xa '(convert -list dither)' -complete -c composite -o encoding -d 'Encoding type [type text]' -xa '(__fish_print_encodings)' -complete -c composite -o endian -d 'Endianness (MSB or LSB) of the image [type]' -xa '(convert -list endian)' -complete -c composite -o filter -d 'Use this filter when resizing an image [type]' -xa '(convert -list filter)' -complete -c composite -o font -d 'Render text with this font [name]' -xa '(__fish_complete_convert_options font)' -complete -c composite -o format -d 'Output formatted image characteristics ["string"]' -complete -c composite -o gravity -d 'Which direction to gravitate towards [type]' -xa '(convert -list gravity)' -complete -c composite -o green-primary -d 'Chromaticity green primary point [point]' -complete -c composite -o interlace -d 'Type of image interlacing scheme [type]' -xa '(convert -list interlace)' -complete -c composite -o interpolate -d 'Pixel color interpolation method [method]' -xa '(convert -list interpolate)' -complete -c composite -o label -d 'Assign a label to an image [string]' -complete -c composite -o limit -d 'Pixel cache resource limit [type value]' -x -complete -c composite -o monitor -d 'Monitor progress ' -complete -c composite -o page -d 'Size and location of an image canvas (setting) [geometry]' -complete -c composite -o pointsize -d 'Font point size [value]' -complete -c composite -o quality -d 'JPEG/MIFF/PNG compression level [value]' -complete -c composite -o quiet -d 'Suppress all warning messages' -complete -c composite -o red-primary -d 'Chromaticity red primary point [point]' -complete -c composite -o regard-warnings -d 'Pay attention to warning messages' -complete -c composite -o respect-parentheses -d 'Settings remain in effect until parenthesis boundary' -complete -c composite -o sampling-factor -d 'Horizontal and vertical sampling factor [geometry]' -complete -c composite -o scene -d 'Image scene number [value]' -complete -c composite -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' -complete -c composite -o size -d 'Width and height of image [geometry]' -complete -c composite -o synchronize -d 'Synchronize image to storage device' -complete -c composite -o taint -d 'Declare the image as modified' -complete -c composite -o transparent-color -d 'Transparent color [color]' -xa '(__fish_complete_convert_options color)' -complete -c composite -o treedepth -d 'Color tree depth [value]' -complete -c composite -o tile -d 'Repeat composite operation across and down image' -complete -c composite -o units -d 'The units of image resolution [type]' -xa '(convert -list units)' -complete -c composite -o verbose -d 'Print detailed information about the image' -complete -c composite -o virtual-pixel -d 'Virtual pixel access method [method]' -xa '(convert -list virtual-pixel)' -complete -c composite -o white-point -d 'Chromaticity white point [point]' -complete -c composite -o blend -d 'Blend images [geometry]' -complete -c composite -o border -d 'Surround image with a border of color [geometry]' -complete -c composite -o bordercolor -d 'Border color [color]' -xa '(__fish_complete_convert_options color)' -complete -c composite -o colors -d 'Preferred number of colors in the image [value]' -complete -c composite -o decipher -d 'Convert cipher pixels to plain pixels [filename]' -r -complete -c composite -o displace -d 'Shift lookup according to a relative displacement map [geometry]' -complete -c composite -o dissolve -d 'Dissolve the two images a given percent [value]' -complete -c composite -o distort -d 'Shift lookup according to a absolute distortion map [geometry]' -complete -c composite -o encipher -d 'Convert plain pixels to cipher pixels [filename]' -r -complete -c composite -o extract -d 'Extract area from image [geometry]' -complete -c composite -o geometry -d 'Location of the composite image [geometry]' -complete -c composite -o identify -d 'Identify the format and characteristics of the image' -complete -c composite -o monochrome -d 'Transform image to black and white' -complete -c composite -o negate -d 'Replace every pixel with its complementary color ' -complete -c composite -o profile -d 'Add ICM or IPTC information profile to image [filename]' -r -complete -c composite -o quantize -d 'Reduce colors in this colorspace [colorspace]' -xa '(convert -list colorspace)' -complete -c composite -o repage -d 'Size and location of an image canvas (operator) [geometry]' -complete -c composite -o rotate -d 'Apply Paeth rotation to the image [degrees]' -complete -c composite -o resize -d 'Resize the image [geometry]' -complete -c composite -o sharpen -d 'Sharpen the image [geometry]' -complete -c composite -o shave -d 'Shave pixels from the image edges [geometry]' -complete -c composite -o stegano -d 'Offset hide watermark within an image' -complete -c composite -o stereo -d 'Combine two image to create a stereo anaglyph [geometry]' -complete -c composite -o strip -d 'Strip image of all profiles and comments' -complete -c composite -o thumbnail -d 'Create a thumbnail of the image [geometry]' -complete -c composite -o transform -d 'Affine transform image' -complete -c composite -o type -d 'Image type [type]' -xa '(convert -list type)' -complete -c composite -o unsharp -d 'Sharpen the image [geometry]' -complete -c composite -o watermark -d 'Percent brightness and saturation of a watermark [geometry]' -complete -c composite -o write -d 'Write images to this file [filename]' -r -complete -c composite -o swap -d 'Swap two images in the image sequence [indexes]' -complete -c composite -o debug -d 'Display copious debugging information [events]' -xa '(convert -list debug)' -complete -c composite -o help -d 'Print program options' -complete -c composite -o list -d 'Print a list of supported option arguments [type]' -xa '(convert -list list)' -complete -c composite -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' -complete -c composite -o version -d 'Print version information' -complete -c composite -o matte -d 'Store matte channel if the image has one' -complete -c composite -o support -d 'Resize support: > 1.0 is blurry, < 1.0 is sharp [factor]' +complete -c composite -o affine -d 'Affine transform matrix [matrix]' +complete -c composite -o alpha -d 'On, activate, off, deactivate, set, opaque, copy transparent, extract, background, or shape [option]' -xa '(convert -list alpha)' +complete -c composite -o authenticate -d 'Decipher image with this password [password]' +complete -c composite -o blue-primary -d 'Chromaticity blue primary point [point]' +complete -c composite -o channel -d 'Apply option to select image channels [type]' -xa '(convert -list channel)' +complete -c composite -o colorspace -d 'Alternate image colorspace [type]' -xa '(convert -list colorspace)' +complete -c composite -o comment -d 'Annotate image with comment [string]' +complete -c composite -o compose -d 'Composite operator [operator]' +complete -c composite -o compress -d 'Type of pixel compression when writing the image [type]' -xa '(convert -list compress)' +complete -c composite -o define -d 'Define one or more image format options [format:option]' +complete -c composite -o depth -d 'Image depth [value]' +complete -c composite -o density -d 'Horizontal and vertical density of the image [geometry]' +complete -c composite -o display -d 'Get image or font from this X server [server]' +complete -c composite -o dispose -d 'Layer disposal method [method]' -xa '(convert -list dispose)' +complete -c composite -o dither -d 'Apply error diffusion to image [method]' -xa '(convert -list dither)' +complete -c composite -o encoding -d 'Encoding type [type text]' -xa '(__fish_print_encodings)' +complete -c composite -o endian -d 'Endianness (MSB or LSB) of the image [type]' -xa '(convert -list endian)' +complete -c composite -o filter -d 'Use this filter when resizing an image [type]' -xa '(convert -list filter)' +complete -c composite -o font -d 'Render text with this font [name]' -xa '(__fish_complete_convert_options font)' +complete -c composite -o format -d 'Output formatted image characteristics ["string"]' +complete -c composite -o gravity -d 'Which direction to gravitate towards [type]' -xa '(convert -list gravity)' +complete -c composite -o green-primary -d 'Chromaticity green primary point [point]' +complete -c composite -o interlace -d 'Type of image interlacing scheme [type]' -xa '(convert -list interlace)' +complete -c composite -o interpolate -d 'Pixel color interpolation method [method]' -xa '(convert -list interpolate)' +complete -c composite -o label -d 'Assign a label to an image [string]' +complete -c composite -o limit -d 'Pixel cache resource limit [type value]' -x +complete -c composite -o monitor -d 'Monitor progress ' +complete -c composite -o page -d 'Size and location of an image canvas (setting) [geometry]' +complete -c composite -o pointsize -d 'Font point size [value]' +complete -c composite -o quality -d 'JPEG/MIFF/PNG compression level [value]' +complete -c composite -o quiet -d 'Suppress all warning messages' +complete -c composite -o red-primary -d 'Chromaticity red primary point [point]' +complete -c composite -o regard-warnings -d 'Pay attention to warning messages' +complete -c composite -o respect-parentheses -d 'Settings remain in effect until parenthesis boundary' +complete -c composite -o sampling-factor -d 'Horizontal and vertical sampling factor [geometry]' +complete -c composite -o scene -d 'Image scene number [value]' +complete -c composite -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' +complete -c composite -o size -d 'Width and height of image [geometry]' +complete -c composite -o synchronize -d 'Synchronize image to storage device' +complete -c composite -o taint -d 'Declare the image as modified' +complete -c composite -o transparent-color -d 'Transparent color [color]' -xa '(__fish_complete_convert_options color)' +complete -c composite -o treedepth -d 'Color tree depth [value]' +complete -c composite -o tile -d 'Repeat composite operation across and down image' +complete -c composite -o units -d 'The units of image resolution [type]' -xa '(convert -list units)' +complete -c composite -o verbose -d 'Print detailed information about the image' +complete -c composite -o virtual-pixel -d 'Virtual pixel access method [method]' -xa '(convert -list virtual-pixel)' +complete -c composite -o white-point -d 'Chromaticity white point [point]' +complete -c composite -o blend -d 'Blend images [geometry]' +complete -c composite -o border -d 'Surround image with a border of color [geometry]' +complete -c composite -o bordercolor -d 'Border color [color]' -xa '(__fish_complete_convert_options color)' +complete -c composite -o colors -d 'Preferred number of colors in the image [value]' +complete -c composite -o decipher -d 'Convert cipher pixels to plain pixels [filename]' -r +complete -c composite -o displace -d 'Shift lookup according to a relative displacement map [geometry]' +complete -c composite -o dissolve -d 'Dissolve the two images a given percent [value]' +complete -c composite -o distort -d 'Shift lookup according to a absolute distortion map [geometry]' +complete -c composite -o encipher -d 'Convert plain pixels to cipher pixels [filename]' -r +complete -c composite -o extract -d 'Extract area from image [geometry]' +complete -c composite -o geometry -d 'Location of the composite image [geometry]' +complete -c composite -o identify -d 'Identify the format and characteristics of the image' +complete -c composite -o monochrome -d 'Transform image to black and white' +complete -c composite -o negate -d 'Replace every pixel with its complementary color ' +complete -c composite -o profile -d 'Add ICM or IPTC information profile to image [filename]' -r +complete -c composite -o quantize -d 'Reduce colors in this colorspace [colorspace]' -xa '(convert -list colorspace)' +complete -c composite -o repage -d 'Size and location of an image canvas (operator) [geometry]' +complete -c composite -o rotate -d 'Apply Paeth rotation to the image [degrees]' +complete -c composite -o resize -d 'Resize the image [geometry]' +complete -c composite -o sharpen -d 'Sharpen the image [geometry]' +complete -c composite -o shave -d 'Shave pixels from the image edges [geometry]' +complete -c composite -o stegano -d 'Offset hide watermark within an image' +complete -c composite -o stereo -d 'Combine two image to create a stereo anaglyph [geometry]' +complete -c composite -o strip -d 'Strip image of all profiles and comments' +complete -c composite -o thumbnail -d 'Create a thumbnail of the image [geometry]' +complete -c composite -o transform -d 'Affine transform image' +complete -c composite -o type -d 'Image type [type]' -xa '(convert -list type)' +complete -c composite -o unsharp -d 'Sharpen the image [geometry]' +complete -c composite -o watermark -d 'Percent brightness and saturation of a watermark [geometry]' +complete -c composite -o write -d 'Write images to this file [filename]' -r +complete -c composite -o swap -d 'Swap two images in the image sequence [indexes]' +complete -c composite -o debug -d 'Display copious debugging information [events]' -xa '(convert -list debug)' +complete -c composite -o help -d 'Print program options' +complete -c composite -o list -d 'Print a list of supported option arguments [type]' -xa '(convert -list list)' +complete -c composite -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' +complete -c composite -o version -d 'Print version information' +complete -c composite -o matte -d 'Store matte channel if the image has one' +complete -c composite -o support -d 'Resize support: > 1.0 is blurry, < 1.0 is sharp [factor]' diff --git a/share/completions/conda.fish b/share/completions/conda.fish index 6a15256ce..88a391485 100644 --- a/share/completions/conda.fish +++ b/share/completions/conda.fish @@ -42,23 +42,23 @@ complete -c conda -s h -l help -d "Show help and exit" __fish_conda_top -s V -l version -d "Show the conda version number and exit" # top-level commands -__fish_conda_top -a clean -d "Remove unused packages and caches" -__fish_conda_top -a config -d "Modify configuration values in .condarc" -__fish_conda_top -a create -d "Create a new conda environment from a list of specified packages" -__fish_conda_top -a help -d "Displays a list of available conda commands and their help strings" -__fish_conda_top -a info -d "Display information about current conda install" -__fish_conda_top -a install -d "Installs a list of packages into a specified conda environment" -__fish_conda_top -a list -d "List linked packages in a conda environment" -__fish_conda_top -a package -d "Low-level conda package utility (EXPERIMENTAL)" -__fish_conda_top -a remove -d "Remove a list of packages from a specified conda environment" +__fish_conda_top -a clean -d "Remove unused packages and caches" +__fish_conda_top -a config -d "Modify configuration values in .condarc" +__fish_conda_top -a create -d "Create a new conda environment from a list of specified packages" +__fish_conda_top -a help -d "Displays a list of available conda commands and their help strings" +__fish_conda_top -a info -d "Display information about current conda install" +__fish_conda_top -a install -d "Installs a list of packages into a specified conda environment" +__fish_conda_top -a list -d "List linked packages in a conda environment" +__fish_conda_top -a package -d "Low-level conda package utility (EXPERIMENTAL)" +__fish_conda_top -a remove -d "Remove a list of packages from a specified conda environment" __fish_conda_top -a uninstall -d "Alias for conda remove" -__fish_conda_top -a search -d "Search for packages and display associated information" -__fish_conda_top -a update -d "Updates conda packages to the latest compatible version" -__fish_conda_top -a upgrade -d "Alias for conda update" +__fish_conda_top -a search -d "Search for packages and display associated information" +__fish_conda_top -a update -d "Updates conda packages to the latest compatible version" +__fish_conda_top -a upgrade -d "Alias for conda update" # command added by sourcing ~/miniconda3/etc/fish/conf.d/conda.fish, # which is the recommended way to use conda with fish -__fish_conda_top -a activate -d "Activate the given environment" +__fish_conda_top -a activate -d "Activate the given environment" __fish_conda activate -x -a "(__fish_conda_environments)" __fish_conda_top -a deactivate -d "Deactivate current environment, reactivating the previous one" @@ -66,52 +66,52 @@ __fish_conda_top -a deactivate -d "Deactivate current environment, reactivating set -l __fish_conda_commands clean config create help info install list package remove uninstall search update upgrade for cmd in $__fish_conda_commands - __fish_conda $cmd -l json -d "Report all output as json" - __fish_conda $cmd -l debug -d "Show debug output" + __fish_conda $cmd -l json -d "Report all output as json" + __fish_conda $cmd -l debug -d "Show debug output" __fish_conda $cmd -l verbose -s v -d "Use once for info, twice for debug, three times for trace" end # 'clean' command -__fish_conda clean -s y -l yes -d "Do not ask for confirmation" -__fish_conda clean -l dry-run -d "Only display what would have been done" -__fish_conda clean -s q -l quiet -d "Do not display progress bar" -__fish_conda clean -s a -l all -d "Remove all: same as -iltps" -__fish_conda clean -s i -l index-cache -d "Remove index cache" -__fish_conda clean -s l -l lock -d "Remove all conda lock files" -__fish_conda clean -s t -l tarballs -d "Remove cached package tarballs" -__fish_conda clean -s p -l packages -d "Remove unused cached packages (no check for symlinks)" +__fish_conda clean -s y -l yes -d "Do not ask for confirmation" +__fish_conda clean -l dry-run -d "Only display what would have been done" +__fish_conda clean -s q -l quiet -d "Do not display progress bar" +__fish_conda clean -s a -l all -d "Remove all: same as -iltps" +__fish_conda clean -s i -l index-cache -d "Remove index cache" +__fish_conda clean -s l -l lock -d "Remove all conda lock files" +__fish_conda clean -s t -l tarballs -d "Remove cached package tarballs" +__fish_conda clean -s p -l packages -d "Remove unused cached packages (no check for symlinks)" __fish_conda clean -s s -l source-cache -d "Remove files from the source cache of conda build" # 'config' command -__fish_conda config -l system -d "Write to the system .condarc file" -__fish_conda config -l env -d "Write to the active conda environment .condarc file" -__fish_conda config -l file -d "Write to the given file" -__fish_conda config -l show -x -a "(__fish_conda_config_keys)" -d "Display configuration values" -__fish_conda config -l show-sources -d "Display all identified configuration sources" -__fish_conda config -l validate -d "Validate all configuration sources" -__fish_conda config -l describe -x -a "(__fish_conda_config_keys)" -d "Describe configuration parameters" -__fish_conda config -l write-default -d "Write the default configuration to a file" -__fish_conda config -l get -x -a "(__fish_conda_config_keys)" -d "Get a configuration value" -__fish_conda config -l append -d "Add one configuration value to the end of a list key" -__fish_conda config -l prepend -d "Add one configuration value to the beginning of a list key" -__fish_conda config -l add -d "Alias for --prepend" -__fish_conda config -l set -x -a "(__fish_conda_config_keys)" -d "Set a boolean or string key" -__fish_conda config -l remove -x -a "(__fish_conda_config_keys)" -d "Remove a configuration value from a list key" +__fish_conda config -l system -d "Write to the system .condarc file" +__fish_conda config -l env -d "Write to the active conda environment .condarc file" +__fish_conda config -l file -d "Write to the given file" +__fish_conda config -l show -x -a "(__fish_conda_config_keys)" -d "Display configuration values" +__fish_conda config -l show-sources -d "Display all identified configuration sources" +__fish_conda config -l validate -d "Validate all configuration sources" +__fish_conda config -l describe -x -a "(__fish_conda_config_keys)" -d "Describe configuration parameters" +__fish_conda config -l write-default -d "Write the default configuration to a file" +__fish_conda config -l get -x -a "(__fish_conda_config_keys)" -d "Get a configuration value" +__fish_conda config -l append -d "Add one configuration value to the end of a list key" +__fish_conda config -l prepend -d "Add one configuration value to the beginning of a list key" +__fish_conda config -l add -d "Alias for --prepend" +__fish_conda config -l set -x -a "(__fish_conda_config_keys)" -d "Set a boolean or string key" +__fish_conda config -l remove -x -a "(__fish_conda_config_keys)" -d "Remove a configuration value from a list key" __fish_conda config -l remove-key -x -a "(__fish_conda_config_keys)" -d "Remove a configuration key (and all its values)" -__fish_conda config -l stdin -d "Apply configuration given in yaml format from stdin" +__fish_conda config -l stdin -d "Apply configuration given in yaml format from stdin" # 'help' command -__fish_conda "help" -d "Displays a list of available conda commands and their help strings" +__fish_conda "help" -d "Displays a list of available conda commands and their help strings" __fish_conda "help" -x -a "$__fish_conda_commands" # 'info' command -__fish_conda info -l offline -d "Offline mode, don't connect to the Internet." -__fish_conda info -s a -l all -d "Show all information, (environments, license, and system information)" -__fish_conda info -s e -l envs -d "List all known conda environments" -__fish_conda info -s l -l license -d "Display information about the local conda licenses list" -__fish_conda info -s s -l system -d "List environment variables" -__fish_conda info -l base -d "Display base environment path" +__fish_conda info -l offline -d "Offline mode, don't connect to the Internet." +__fish_conda info -s a -l all -d "Show all information, (environments, license, and system information)" +__fish_conda info -s e -l envs -d "List all known conda environments" +__fish_conda info -s l -l license -d "Display information about the local conda licenses list" +__fish_conda info -s s -l system -d "List environment variables" +__fish_conda info -l base -d "Display base environment path" __fish_conda info -l unsafe-channels -d "Display list of channels with tokens exposed" # The remaining commands share many options, so the definitions are written the other way around: diff --git a/share/completions/configure.fish b/share/completions/configure.fish index 6c7880ef2..017e7b3dd 100644 --- a/share/completions/configure.fish +++ b/share/completions/configure.fish @@ -1,3 +1,76 @@ +function __fish_parse_configure + if test (count $argv) -ne 1 + echo "Usage: parse_configure path/to/configure" 1>&2 + return 1 + end + + # `complete` parses `./configure` as `configure` so we have to handle all paths, not just ./ + if not test -x $argv[1] + printf "Cannot find or execute '%s'\n" $argv[1] 1>&2 + return 1 + end + + # Must support output along the lines of + # -h, --help display this help and exit + # --help=short display options specific to this package + # --help=recursive display the short help of all the included packages + # -V, --version display version information and exit + # -q, --quiet, --silent do not print `checking ...' messages + + set -l next_line + set -l line + set -l buffer + # Just fish's `./configure --help` takes ~350ms to run, before parsing + # The following chain attempts to extract the help message: + cat $argv[1] | tr \n \u0e | sed -n 's/.*Report the --help message\(.*\?\)ac_status.*/\1/; s/ac_status.*//p' | tr \u0e \n | + while test "$next_line" != "" || read -lL next_line + # In autoconfigure scripts, the first column wraps at 26 chars + # echo next_line: $next_line + # echo old_line: $line + if test "$line" = "" + set line $next_line + set next_line "" # mark it as consumed + continue + else if string match -qr '^( |\t){2,}[^-]\S*' -- $next_line + # echo "continuation line found. Old value of line: " \"$line\" + set line "$line "(string trim $next_line) + set next_line "" # mark it as consumed + continue + end + + # echo line: $line + + # Search for one or more strings starting with `-` separated by commas + if string replace -fr '^\s+(-.*?)\s+([^\s\-].*)' '$1\n$2' -- $line | read -lL opts description + for opt in (string split -n , -- $opts | string trim) + + if string match -qr -- '--[a-z_0-9-]+=\[.*\]' $opt + # --option=[OPTIONAL_VALUE] + string replace -r -- '(--[a-z_0-9-]+)=.*' '$1' $opt | read opt + else if string match -qr -- '--[a-z_0-9-]+\[=.*\]' $opt + # --option[=OPTIONAL_VALUE] + string replace -r -- '(--[a-z_0-9-]+)\[=.*' '$1' $opt | read opt + else if string match -qr -- '--[a-z_0-9-]+=[A-Z]+' $opt + # --option=CLASS_OF_VALUE (eg FILE or DIR) + string replace -r -- '(--[a-z_0-9-]+)=.*' '$1' $opt | read opt + else if string match -qr -- '--[a-z_0-9-]+=\S+' $opt + # --option=literal_value, leave as-is + else if string match -qr -- '--[a-z_0-9-]+$' $opt + # long option, leave as-is + else if string match -qr -- '-[^-]$' $opt + # short option, leave as-is + else + continue + end + + echo "$opt"\t"$description" # parsed by `complete` as value and description + end + end + + set line "" + end +end + complete -c configure -s h -l help -x -a "short recursive" -d "Display help and exit" complete -c configure -s V -l version -d "Display version and exit" complete -c configure -s q -l quiet -d "Quiet mode" diff --git a/share/completions/conjure.fish b/share/completions/conjure.fish index 8907ad209..46954e08c 100644 --- a/share/completions/conjure.fish +++ b/share/completions/conjure.fish @@ -1,9 +1,9 @@ -complete -c conjure -o monitor -d 'Monitor progress ' -complete -c conjure -o quiet -d 'Suppress all warning messages' -complete -c conjure -o regard-warnings -d 'Pay attention to warning messages' -complete -c conjure -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' -complete -c conjure -o verbose -d 'Print detailed information about the image' -complete -c conjure -o debug -d 'Display copious debugging information [events]' -xa '(convert -list debug)' -complete -c conjure -o help -d 'Print program options' -complete -c conjure -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' +complete -c conjure -o monitor -d 'Monitor progress ' +complete -c conjure -o quiet -d 'Suppress all warning messages' +complete -c conjure -o regard-warnings -d 'Pay attention to warning messages' +complete -c conjure -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' +complete -c conjure -o verbose -d 'Print detailed information about the image' +complete -c conjure -o debug -d 'Display copious debugging information [events]' -xa '(convert -list debug)' +complete -c conjure -o help -d 'Print program options' +complete -c conjure -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' #complete -c conjure -o list -d 'Print a list of supported option arguments [type]' -xa '(convert -list list)' diff --git a/share/completions/convert.fish b/share/completions/convert.fish index 95e7b5dd5..5e19772af 100644 --- a/share/completions/convert.fish +++ b/share/completions/convert.fish @@ -1,232 +1,232 @@ -complete -c convert -o adjoin -d 'Join images into a single multi-image file' -complete -c convert -o affine -d 'Affine transform matrix [matrix]' -complete -c convert -o alpha -d 'Activate, deactivate, reset, or set the alpha channel [option]' -xa '(convert -list alpha)' -complete -c convert -o antialias -d 'Remove pixel-aliasing ' -complete -c convert -o authenticate -d 'Decipher image with this password [password]' -complete -c convert -o attenuate -d 'Lessen (or intensify) when adding noise to an image [value]' -complete -c convert -o background -d 'Background color [color]' -xa '(__fish_complete_convert_options color)' -complete -c convert -o bias -d 'Add bias when convolving an image [value]' -complete -c convert -o black-point-compensation -d 'Use black point compensation' -complete -c convert -o blue-primary -d 'Chromaticity blue primary point [point]' -complete -c convert -o bordercolor -d 'Border color [color]' -xa '(__fish_complete_convert_options color)' -complete -c convert -o caption -d 'Assign a caption to an image [string]' -complete -c convert -o channel -d 'Apply option to select image channels [type]' -xa '(convert -list channel)' -complete -c convert -o colors -d 'Preferred number of colors in the image [value]' -complete -c convert -o colorspace -d 'Alternate image colorspace [type]' -xa '(convert -list colorspace)' -complete -c convert -o comment -d 'Annotate image with comment [string]' -complete -c convert -o compose -d 'Set image composite operator [operator]' -complete -c convert -o compress -d 'Type of pixel compression when writing the image [type]' -xa '(convert -list compress)' -complete -c convert -o define -d 'Define one or more image format options [format:option]' -complete -c convert -o delay -d 'Display the next image after pausing [value]' -complete -c convert -o density -d 'Horizontal and vertical density of the image [geometry]' -complete -c convert -o depth -d 'Image depth [value]' -complete -c convert -o direction -d 'Render text right-to-left or left-to-right [type]' -xa '(convert -list direction)' -complete -c convert -o display -d 'Get image or font from this X server [server]' -complete -c convert -o dispose -d 'Layer disposal method [method]' -xa '(convert -list dispose)' -complete -c convert -o dither -d 'Apply error diffusion to image [method]' -xa '(convert -list dither)' -complete -c convert -o encoding -d 'Encoding type [type text]' -xa '(__fish_print_encodings)' -complete -c convert -o endian -d 'Endianness (MSB or LSB) of the image [type]' -xa '(convert -list endian)' -complete -c convert -o family -d 'Render text with this font family [name]' -xa '(__fish_complete_convert_options family)' -complete -c convert -o fill -d 'Color to use when filling a graphic primitive [color]' -xa '(__fish_complete_convert_options color)' -complete -c convert -o filter -d 'Use this filter when resizing an image [type]' -xa '(convert -list filter)' -complete -c convert -o font -d 'Render text with this font [name]' -xa '(__fish_complete_convert_options font)' -complete -c convert -o format -d 'Output formatted image characteristics ["string"]' -complete -c convert -o fuzz -d 'Colors within this distance are considered equal [distance]' -complete -c convert -o gravity -d 'Horizontal and vertical text placement [type]' -xa '(convert -list gravity)' -complete -c convert -o green-primary -d 'Chromaticity green primary point [point]' -complete -c convert -o intent -d 'Type of rendering intent when managing the image color [type]' -xa '(convert -list intent)' -complete -c convert -o interlace -d 'Type of image interlacing scheme [type]' -xa '(convert -list interlace)' -complete -c convert -o interline-spacing -d 'Set the space between two text lines [value]' -complete -c convert -o interpolate -d 'Pixel color interpolation method [method]' -xa '(convert -list interpolate)' -complete -c convert -o interword-spacing -d 'Set the space between two words [value]' -complete -c convert -o kerning -d 'Set the space between two letters [value]' -complete -c convert -o label -d 'Assign a label to an image [string]' -complete -c convert -o limit -d 'Pixel cache resource limit [type value]' -x -complete -c convert -o loop -d 'Add Netscape loop extension to your GIF animation [iterations]' -complete -c convert -o mask -d 'Associate a mask with the image [filename]' -r -complete -c convert -o mattecolor -d 'Frame color [color]' -xa '(__fish_complete_convert_options color)' -complete -c convert -o monitor -d 'Monitor progress ' -complete -c convert -o orient -d 'Image orientation [type]' -xa '(convert -list orientation)' -complete -c convert -o page -d 'Size and location of an image canvas (setting) [geometry]' -complete -c convert -o ping -d 'Efficiently determine image attributes' -complete -c convert -o pointsize -d 'Font point size [value]' -complete -c convert -o precision -d 'Maximum number of significant digits to print [value]' -complete -c convert -o preview -d 'Image preview type [type]' -xa '(convert -list preview)' -complete -c convert -o quality -d 'JPEG/MIFF/PNG compression level [value]' -complete -c convert -o quiet -d 'Suppress all warning messages' -complete -c convert -o red-primary -d 'Chromaticity red primary point [point]' -complete -c convert -o regard-warnings -d 'Pay attention to warning messages' -complete -c convert -o remap -d 'Transform image colors to match this set of colors [filename]' -r -complete -c convert -o respect-parentheses -d 'Settings remain in effect until parenthesis boundary' -complete -c convert -o sampling-factor -d 'Horizontal and vertical sampling factor [geometry]' -complete -c convert -o scene -d 'Image scene number [value]' -complete -c convert -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' -complete -c convert -o size -d 'Width and height of image [geometry]' -complete -c convert -o stretch -d 'Render text with this font stretch [type]' -xa '(convert -list stretch)' -complete -c convert -o stroke -d 'Graphic primitive stroke color [color]' -xa '(__fish_complete_convert_options color)' -complete -c convert -o strokewidth -d 'Graphic primitive stroke width [value]' -complete -c convert -o style -d 'Render text with this font style [type]' -xa '(convert -list style)' -complete -c convert -o synchronize -d 'Synchronize image to storage device' -complete -c convert -o taint -d 'Declare the image as modified' -complete -c convert -o texture -d 'Name of texture to tile onto the image background [filename]' -r -complete -c convert -o tile-offset -d 'Tile offset [geometry]' -complete -c convert -o treedepth -d 'Color tree depth [value]' -complete -c convert -o transparent-color -d 'Transparent color [color]' -xa '(__fish_complete_convert_options color)' -complete -c convert -o undercolor -d 'Annotation bounding box color [color]' -xa '(__fish_complete_convert_options color)' -complete -c convert -o units -d 'The units of image resolution [type]' -xa '(convert -list units)' -complete -c convert -o verbose -d 'Print detailed information about the image' -complete -c convert -o view -d 'FlashPix viewing transforms' -complete -c convert -o virtual-pixel -d 'Virtual pixel access method [method]' -xa '(convert -list virtual-pixel)' -complete -c convert -o weight -d 'Render text with this font weight [type]' -x -complete -c convert -o white-point -d 'Chromaticity white point [point]' -complete -c convert -o adaptive-blur -d 'Adaptively blur pixels; decrease effect near edges [geometry]' -complete -c convert -o adaptive-resize -d 'Adaptively resize image using \'mesh\' interpolation [geometry]' -complete -c convert -o adaptive-sharpen -d 'Adaptively sharpen pixels; increase effect near edges [geometry]' -complete -c convert -o annotate -d 'Annotate the image with text [geometry text]' -complete -c convert -o auto-gamma -d 'Automagically adjust gamma level of image' -complete -c convert -o auto-level -d 'Automagically adjust color levels of image' -complete -c convert -o auto-orient -d 'Automagically orient (rotate) image' -complete -c convert -o bench -d 'Measure performance [iterations]' -complete -c convert -o black-threshold -d 'Force all pixels below the threshold into black [value]' -complete -c convert -o blue-shift -d 'Simulate a scene at nighttime in the moonlight [factor]' -complete -c convert -o blur -d 'Reduce image noise and reduce detail levels [geometry]' -complete -c convert -o border -d 'Surround image with a border of color [geometry]' -complete -c convert -o brightness-contrast -d 'Improve brightness / contrast of the image [geometry]' -complete -c convert -o cdl -d 'Color correct with a color decision list [filename]' -r -complete -c convert -o charcoal -d 'Simulate a charcoal drawing [radius]' -complete -c convert -o chop -d 'Remove pixels from the image interior [geometry]' -complete -c convert -o clamp -d 'Restrict pixel range from 0 to the quantum depth' -complete -c convert -o clip -d 'Clip along the first path from the 8BIM profile' -complete -c convert -o clip-mask -d 'Associate a clip mask with the image [filename]' -r -complete -c convert -o clip-path -d 'Clip along a named path from the 8BIM profile [id]' -complete -c convert -o colorize -d 'Colorize the image with the fill color [value]' -complete -c convert -o color-matrix -d 'Apply color correction to the image [matrix]' -complete -c convert -o contrast -d 'Enhance or reduce the image contrast' -complete -c convert -o contrast-stretch -d 'Improve contrast by `stretching\' the intensity range [geometry]' -complete -c convert -o convolve -d 'Apply a convolution kernel to the image [coefficients]' -complete -c convert -o cycle -d 'Cycle the image colormap [amount]' -complete -c convert -o decipher -d 'Convert cipher pixels to plain pixels [filename]' -r -complete -c convert -o deskew -d 'Straighten an image [threshold]' -complete -c convert -o despeckle -d 'Reduce the speckles within an image' -complete -c convert -o distort -d 'Args distort images according to given method ad args [method]' -xa '(convert -list distort)' -complete -c convert -o draw -d 'Annotate the image with a graphic primitive [string]' -complete -c convert -o edge -d 'Apply a filter to detect edges in the image [radius]' -complete -c convert -o encipher -d 'Convert plain pixels to cipher pixels [filename]' -r -complete -c convert -o emboss -d 'Emboss an image [radius]' -complete -c convert -o enhance -d 'Apply a digital filter to enhance a noisy image' -complete -c convert -o equalize -d 'Perform histogram equalization to an image' -complete -c convert -o evaluate -d 'Evaluate an arithmetic, relational, or logical expression [operator value]' -complete -c convert -o extent -d 'Set the image size [geometry]' -complete -c convert -o extract -d 'Extract area from image [geometry]' -complete -c convert -o fft -d 'Implements the discrete Fourier transform (DFT)' -complete -c convert -o flip -d 'Flip image vertically' -complete -c convert -o floodfill -d 'Color floodfill the image with color [geometry]' -complete -c convert -o flop -d 'Flop image horizontally' -complete -c convert -o frame -d 'Surround image with an ornamental border [geometry]' -complete -c convert -o function -d 'Apply function over image values [name parameters]' -xa '(convert -list function)' -complete -c convert -o gamma -d 'Level of gamma correction [value]' -complete -c convert -o gaussian-blur -d 'Reduce image noise and reduce detail levels [geometry]' -complete -c convert -o geometry -d 'Preferred size or location of the image [geometry]' -complete -c convert -o identify -d 'Identify the format and characteristics of the image' -complete -c convert -o ift -d 'Implements the inverse discrete Fourier transform (DFT)' -complete -c convert -o implode -d 'Implode image pixels about the center [amount]' -complete -c convert -o lat -d 'Local adaptive thresholding [geometry]' -complete -c convert -o layers -d 'Optimize, merge, or compare image layers [method]' -xa '(convert -list layers)' -complete -c convert -o level -d 'Adjust the level of image contrast [value]' -complete -c convert -o level-colors -d 'Level image with the given colors [color,color]' -xa '(__fish_complete_list , "__fish_complete_convert_options color")' -complete -c convert -o linear-stretch -d 'Improve contrast by `stretching with saturation\' [geometry]' -complete -c convert -o liquid-rescale -d 'Rescale image with seam-carving [geometry]' -complete -c convert -o median -d 'Apply a median filter to the image [geometry]' -complete -c convert -o mode -d 'Make each pixel the \'predominant color\' of the neighborhood [geometry]' -complete -c convert -o modulate -d 'Vary the brightness, saturation, and hue [value]' -complete -c convert -o monochrome -d 'Transform image to black and white' -complete -c convert -o morphology -d 'Apply a morphology method to the image [method kernel]' -xa '(convert -list morphology)' -complete -c convert -o motion-blur -d 'Simulate motion blur [geometry]' -complete -c convert -o negate -d 'Replace every pixel with its complementary color ' -complete -c convert -o noise -d 'Add or reduce noise in an image [geometry]' -complete -c convert -o normalize -d 'Transform image to span the full range of colors' -complete -c convert -o opaque -d 'Change this color to the fill color [color]' -xa '(__fish_complete_convert_options color)' -complete -c convert -o ordered-dither -d 'Add a noise pattern to the image with specific amplitudes [NxN]' -complete -c convert -o paint -d 'Simulate an oil painting [radius]' -complete -c convert -o polaroid -d 'Simulate a Polaroid picture [angle]' -complete -c convert -o posterize -d 'Reduce the image to a limited number of color levels [levels]' -complete -c convert -o profile -d 'Add, delete, or apply an image profile [filename]' -r -complete -c convert -o quantize -d 'Reduce colors in this colorspace [colorspace]' -xa '(convert -list colorspace)' -complete -c convert -o radial-blur -d 'Radial blur the image [angle]' -complete -c convert -o raise -d 'Lighten/darken image edges to create a 3-D effect [value]' -complete -c convert -o random-threshold -d 'Random threshold the image [low,high]' -complete -c convert -o region -d 'Apply options to a portion of the image [geometry]' -complete -c convert -o render -d 'Render vector graphics' -complete -c convert -o repage -d 'Size and location of an image canvas [geometry]' -complete -c convert -o resample -d 'Change the resolution of an image [geometry]' -complete -c convert -o resize -d 'Resize the image [geometry]' -complete -c convert -o roll -d 'Roll an image vertically or horizontally [geometry]' -complete -c convert -o rotate -d 'Apply Paeth rotation to the image [degrees]' -complete -c convert -o sample -d 'Scale image with pixel sampling [geometry]' -complete -c convert -o scale -d 'Scale the image [geometry]' -complete -c convert -o segment -d 'Segment an image [values]' -complete -c convert -o selective-blur -d 'Selectively blur pixels within a contrast threshold [geometry]' -complete -c convert -o sepia-tone -d 'Simulate a sepia-toned photo [threshold]' -complete -c convert -o set -d 'Set an image property [property value]' -complete -c convert -o shade -d 'Shade the image using a distant light source [degrees]' -complete -c convert -o shadow -d 'Simulate an image shadow [geometry]' -complete -c convert -o sharpen -d 'Sharpen the image [geometry]' -complete -c convert -o shave -d 'Shave pixels from the image edges [geometry]' -complete -c convert -o shear -d 'Slide one edge of the image along the X or Y axis [geometry]' -complete -c convert -o sigmoidal-contrast -d 'Increase the contrast without saturating highlights or shadows [geometry]' -complete -c convert -o sketch -d 'Simulate a pencil sketch [geometry]' -complete -c convert -o solarize -d 'Negate all pixels above the threshold level [threshold]' -complete -c convert -o sparse-color -d 'Args fill in a image based on a few color points [method]' -xa '(convert -list sparse-color)' -complete -c convert -o splice -d 'Splice the background color into the image [geometry]' -complete -c convert -o spread -d 'Displace image pixels by a random amount [radius]' -complete -c convert -o statistic -d 'Replace each pixel with corresponding statistic from the neighborhood [type geometry]' -xa '(convert -list statistic)' -complete -c convert -o strip -d 'Strip image of all profiles and comments' -complete -c convert -o swirl -d 'Swirl image pixels about the center [degrees]' -complete -c convert -o threshold -d 'Threshold the image [value]' -complete -c convert -o thumbnail -d 'Create a thumbnail of the image [geometry]' -complete -c convert -o tile -d 'Tile image when filling a graphic primitive [filename]' -r -complete -c convert -o tint -d 'Tint the image with the fill color [value]' -complete -c convert -o transform -d 'Affine transform image' -complete -c convert -o transparent -d 'Make this color transparent within the image [color]' -xa '(__fish_complete_convert_options color)' -complete -c convert -o transpose -d 'Flip image vertically and rotate 90 degrees' -complete -c convert -o transverse -d 'Flop image horizontally and rotate 270 degrees' -complete -c convert -o trim -d 'Trim image edges' -complete -c convert -o type -d 'Image type [type]' -xa '(convert -list type)' -complete -c convert -o unique-colors -d 'Discard all but one of any pixel color' -complete -c convert -o unsharp -d 'Sharpen the image [geometry]' -complete -c convert -o vignette -d 'Soften the edges of the image in vignette style [geometry]' -complete -c convert -o wave -d 'Alter an image along a sine wave [geometry]' -complete -c convert -o white-threshold -d 'Force all pixels above the threshold into white [value]' -complete -c convert -o append -d 'Append an image sequence' -complete -c convert -o clut -d 'Apply a color lookup table to the image' -complete -c convert -o coalesce -d 'Merge a sequence of images' -complete -c convert -o combine -d 'Combine a sequence of images' -complete -c convert -o composite -d 'Composite image ' -complete -c convert -o crop -d 'Cut out a rectangular region of the image [geometry]' -complete -c convert -o deconstruct -d 'Break down an image sequence into constituent parts' -complete -c convert -o evaluate-sequence -d 'Evaluate an arithmetic, relational, or logical expression [operator]' -complete -c convert -o flatten -d 'Flatten a sequence of images' -complete -c convert -o fx -d 'Apply mathematical expression to an image channel(s) [expression]' -complete -c convert -o hald-clut -d 'Apply a Hald color lookup table to the image' -complete -c convert -o morph -d 'Morph an image sequence [value]' -complete -c convert -o mosaic -d 'Create a mosaic from an image sequence' -complete -c convert -o print -d 'Interpret string and print to console [string]' -complete -c convert -o process -d 'Process the image with a custom image filter [arguments]' -xa '(convert -list filter)' -complete -c convert -o separate -d 'Separate an image channel into a grayscale image' -complete -c convert -o smush -d 'Smush an image sequence together [geometry]' -complete -c convert -o write -d 'Write images to this file [filename]' -r -complete -c convert -o clone -d 'Clone an image [indexes]' -complete -c convert -o delete -d 'Delete the image from the image sequence [indexes]' -complete -c convert -o duplicate -d 'Duplicate an image one or more times [count,indexes]' -complete -c convert -o insert -d 'Insert last image into the image sequence [index]' -complete -c convert -o reverse -d 'Reverse image sequence' -complete -c convert -o swap -d 'Swap two images in the image sequence [indexes]' -complete -c convert -o debug -d 'Display copious debugging information [events]' -xa '(convert -list debug)' -complete -c convert -o help -d 'Print program options' -complete -c convert -o list -d 'Print a list of supported option arguments [type]' -xa '(convert -list list)' -complete -c convert -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' -complete -c convert -o version -d 'Print version information' -complete -c convert -o matte -d 'Store matte channel if the image has one' -complete -c convert -o origin -d 'Image origin [geometry]' -complete -c convert -o support -d 'Resize support: > 1.0 is blurry, < 1.0 is sharp [factor]' -complete -c convert -o affinity -d 'Transform image colors to match this set of colors [filename]' -r +complete -c convert -o adjoin -d 'Join images into a single multi-image file' +complete -c convert -o affine -d 'Affine transform matrix [matrix]' +complete -c convert -o alpha -d 'Activate, deactivate, reset, or set the alpha channel [option]' -xa '(convert -list alpha)' +complete -c convert -o antialias -d 'Remove pixel-aliasing ' +complete -c convert -o authenticate -d 'Decipher image with this password [password]' +complete -c convert -o attenuate -d 'Lessen (or intensify) when adding noise to an image [value]' +complete -c convert -o background -d 'Background color [color]' -xa '(__fish_complete_convert_options color)' +complete -c convert -o bias -d 'Add bias when convolving an image [value]' +complete -c convert -o black-point-compensation -d 'Use black point compensation' +complete -c convert -o blue-primary -d 'Chromaticity blue primary point [point]' +complete -c convert -o bordercolor -d 'Border color [color]' -xa '(__fish_complete_convert_options color)' +complete -c convert -o caption -d 'Assign a caption to an image [string]' +complete -c convert -o channel -d 'Apply option to select image channels [type]' -xa '(convert -list channel)' +complete -c convert -o colors -d 'Preferred number of colors in the image [value]' +complete -c convert -o colorspace -d 'Alternate image colorspace [type]' -xa '(convert -list colorspace)' +complete -c convert -o comment -d 'Annotate image with comment [string]' +complete -c convert -o compose -d 'Set image composite operator [operator]' +complete -c convert -o compress -d 'Type of pixel compression when writing the image [type]' -xa '(convert -list compress)' +complete -c convert -o define -d 'Define one or more image format options [format:option]' +complete -c convert -o delay -d 'Display the next image after pausing [value]' +complete -c convert -o density -d 'Horizontal and vertical density of the image [geometry]' +complete -c convert -o depth -d 'Image depth [value]' +complete -c convert -o direction -d 'Render text right-to-left or left-to-right [type]' -xa '(convert -list direction)' +complete -c convert -o display -d 'Get image or font from this X server [server]' +complete -c convert -o dispose -d 'Layer disposal method [method]' -xa '(convert -list dispose)' +complete -c convert -o dither -d 'Apply error diffusion to image [method]' -xa '(convert -list dither)' +complete -c convert -o encoding -d 'Encoding type [type text]' -xa '(__fish_print_encodings)' +complete -c convert -o endian -d 'Endianness (MSB or LSB) of the image [type]' -xa '(convert -list endian)' +complete -c convert -o family -d 'Render text with this font family [name]' -xa '(__fish_complete_convert_options family)' +complete -c convert -o fill -d 'Color to use when filling a graphic primitive [color]' -xa '(__fish_complete_convert_options color)' +complete -c convert -o filter -d 'Use this filter when resizing an image [type]' -xa '(convert -list filter)' +complete -c convert -o font -d 'Render text with this font [name]' -xa '(__fish_complete_convert_options font)' +complete -c convert -o format -d 'Output formatted image characteristics ["string"]' +complete -c convert -o fuzz -d 'Colors within this distance are considered equal [distance]' +complete -c convert -o gravity -d 'Horizontal and vertical text placement [type]' -xa '(convert -list gravity)' +complete -c convert -o green-primary -d 'Chromaticity green primary point [point]' +complete -c convert -o intent -d 'Type of rendering intent when managing the image color [type]' -xa '(convert -list intent)' +complete -c convert -o interlace -d 'Type of image interlacing scheme [type]' -xa '(convert -list interlace)' +complete -c convert -o interline-spacing -d 'Set the space between two text lines [value]' +complete -c convert -o interpolate -d 'Pixel color interpolation method [method]' -xa '(convert -list interpolate)' +complete -c convert -o interword-spacing -d 'Set the space between two words [value]' +complete -c convert -o kerning -d 'Set the space between two letters [value]' +complete -c convert -o label -d 'Assign a label to an image [string]' +complete -c convert -o limit -d 'Pixel cache resource limit [type value]' -x +complete -c convert -o loop -d 'Add Netscape loop extension to your GIF animation [iterations]' +complete -c convert -o mask -d 'Associate a mask with the image [filename]' -r +complete -c convert -o mattecolor -d 'Frame color [color]' -xa '(__fish_complete_convert_options color)' +complete -c convert -o monitor -d 'Monitor progress ' +complete -c convert -o orient -d 'Image orientation [type]' -xa '(convert -list orientation)' +complete -c convert -o page -d 'Size and location of an image canvas (setting) [geometry]' +complete -c convert -o ping -d 'Efficiently determine image attributes' +complete -c convert -o pointsize -d 'Font point size [value]' +complete -c convert -o precision -d 'Maximum number of significant digits to print [value]' +complete -c convert -o preview -d 'Image preview type [type]' -xa '(convert -list preview)' +complete -c convert -o quality -d 'JPEG/MIFF/PNG compression level [value]' +complete -c convert -o quiet -d 'Suppress all warning messages' +complete -c convert -o red-primary -d 'Chromaticity red primary point [point]' +complete -c convert -o regard-warnings -d 'Pay attention to warning messages' +complete -c convert -o remap -d 'Transform image colors to match this set of colors [filename]' -r +complete -c convert -o respect-parentheses -d 'Settings remain in effect until parenthesis boundary' +complete -c convert -o sampling-factor -d 'Horizontal and vertical sampling factor [geometry]' +complete -c convert -o scene -d 'Image scene number [value]' +complete -c convert -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' +complete -c convert -o size -d 'Width and height of image [geometry]' +complete -c convert -o stretch -d 'Render text with this font stretch [type]' -xa '(convert -list stretch)' +complete -c convert -o stroke -d 'Graphic primitive stroke color [color]' -xa '(__fish_complete_convert_options color)' +complete -c convert -o strokewidth -d 'Graphic primitive stroke width [value]' +complete -c convert -o style -d 'Render text with this font style [type]' -xa '(convert -list style)' +complete -c convert -o synchronize -d 'Synchronize image to storage device' +complete -c convert -o taint -d 'Declare the image as modified' +complete -c convert -o texture -d 'Name of texture to tile onto the image background [filename]' -r +complete -c convert -o tile-offset -d 'Tile offset [geometry]' +complete -c convert -o treedepth -d 'Color tree depth [value]' +complete -c convert -o transparent-color -d 'Transparent color [color]' -xa '(__fish_complete_convert_options color)' +complete -c convert -o undercolor -d 'Annotation bounding box color [color]' -xa '(__fish_complete_convert_options color)' +complete -c convert -o units -d 'The units of image resolution [type]' -xa '(convert -list units)' +complete -c convert -o verbose -d 'Print detailed information about the image' +complete -c convert -o view -d 'FlashPix viewing transforms' +complete -c convert -o virtual-pixel -d 'Virtual pixel access method [method]' -xa '(convert -list virtual-pixel)' +complete -c convert -o weight -d 'Render text with this font weight [type]' -x +complete -c convert -o white-point -d 'Chromaticity white point [point]' +complete -c convert -o adaptive-blur -d 'Adaptively blur pixels; decrease effect near edges [geometry]' +complete -c convert -o adaptive-resize -d 'Adaptively resize image using \'mesh\' interpolation [geometry]' +complete -c convert -o adaptive-sharpen -d 'Adaptively sharpen pixels; increase effect near edges [geometry]' +complete -c convert -o annotate -d 'Annotate the image with text [geometry text]' +complete -c convert -o auto-gamma -d 'Automagically adjust gamma level of image' +complete -c convert -o auto-level -d 'Automagically adjust color levels of image' +complete -c convert -o auto-orient -d 'Automagically orient (rotate) image' +complete -c convert -o bench -d 'Measure performance [iterations]' +complete -c convert -o black-threshold -d 'Force all pixels below the threshold into black [value]' +complete -c convert -o blue-shift -d 'Simulate a scene at nighttime in the moonlight [factor]' +complete -c convert -o blur -d 'Reduce image noise and reduce detail levels [geometry]' +complete -c convert -o border -d 'Surround image with a border of color [geometry]' +complete -c convert -o brightness-contrast -d 'Improve brightness / contrast of the image [geometry]' +complete -c convert -o cdl -d 'Color correct with a color decision list [filename]' -r +complete -c convert -o charcoal -d 'Simulate a charcoal drawing [radius]' +complete -c convert -o chop -d 'Remove pixels from the image interior [geometry]' +complete -c convert -o clamp -d 'Restrict pixel range from 0 to the quantum depth' +complete -c convert -o clip -d 'Clip along the first path from the 8BIM profile' +complete -c convert -o clip-mask -d 'Associate a clip mask with the image [filename]' -r +complete -c convert -o clip-path -d 'Clip along a named path from the 8BIM profile [id]' +complete -c convert -o colorize -d 'Colorize the image with the fill color [value]' +complete -c convert -o color-matrix -d 'Apply color correction to the image [matrix]' +complete -c convert -o contrast -d 'Enhance or reduce the image contrast' +complete -c convert -o contrast-stretch -d 'Improve contrast by `stretching\' the intensity range [geometry]' +complete -c convert -o convolve -d 'Apply a convolution kernel to the image [coefficients]' +complete -c convert -o cycle -d 'Cycle the image colormap [amount]' +complete -c convert -o decipher -d 'Convert cipher pixels to plain pixels [filename]' -r +complete -c convert -o deskew -d 'Straighten an image [threshold]' +complete -c convert -o despeckle -d 'Reduce the speckles within an image' +complete -c convert -o distort -d 'Args distort images according to given method ad args [method]' -xa '(convert -list distort)' +complete -c convert -o draw -d 'Annotate the image with a graphic primitive [string]' +complete -c convert -o edge -d 'Apply a filter to detect edges in the image [radius]' +complete -c convert -o encipher -d 'Convert plain pixels to cipher pixels [filename]' -r +complete -c convert -o emboss -d 'Emboss an image [radius]' +complete -c convert -o enhance -d 'Apply a digital filter to enhance a noisy image' +complete -c convert -o equalize -d 'Perform histogram equalization to an image' +complete -c convert -o evaluate -d 'Evaluate an arithmetic, relational, or logical expression [operator value]' +complete -c convert -o extent -d 'Set the image size [geometry]' +complete -c convert -o extract -d 'Extract area from image [geometry]' +complete -c convert -o fft -d 'Implements the discrete Fourier transform (DFT)' +complete -c convert -o flip -d 'Flip image vertically' +complete -c convert -o floodfill -d 'Color floodfill the image with color [geometry]' +complete -c convert -o flop -d 'Flop image horizontally' +complete -c convert -o frame -d 'Surround image with an ornamental border [geometry]' +complete -c convert -o function -d 'Apply function over image values [name parameters]' -xa '(convert -list function)' +complete -c convert -o gamma -d 'Level of gamma correction [value]' +complete -c convert -o gaussian-blur -d 'Reduce image noise and reduce detail levels [geometry]' +complete -c convert -o geometry -d 'Preferred size or location of the image [geometry]' +complete -c convert -o identify -d 'Identify the format and characteristics of the image' +complete -c convert -o ift -d 'Implements the inverse discrete Fourier transform (DFT)' +complete -c convert -o implode -d 'Implode image pixels about the center [amount]' +complete -c convert -o lat -d 'Local adaptive thresholding [geometry]' +complete -c convert -o layers -d 'Optimize, merge, or compare image layers [method]' -xa '(convert -list layers)' +complete -c convert -o level -d 'Adjust the level of image contrast [value]' +complete -c convert -o level-colors -d 'Level image with the given colors [color,color]' -xa '(__fish_complete_list , "__fish_complete_convert_options color")' +complete -c convert -o linear-stretch -d 'Improve contrast by `stretching with saturation\' [geometry]' +complete -c convert -o liquid-rescale -d 'Rescale image with seam-carving [geometry]' +complete -c convert -o median -d 'Apply a median filter to the image [geometry]' +complete -c convert -o mode -d 'Make each pixel the \'predominant color\' of the neighborhood [geometry]' +complete -c convert -o modulate -d 'Vary the brightness, saturation, and hue [value]' +complete -c convert -o monochrome -d 'Transform image to black and white' +complete -c convert -o morphology -d 'Apply a morphology method to the image [method kernel]' -xa '(convert -list morphology)' +complete -c convert -o motion-blur -d 'Simulate motion blur [geometry]' +complete -c convert -o negate -d 'Replace every pixel with its complementary color ' +complete -c convert -o noise -d 'Add or reduce noise in an image [geometry]' +complete -c convert -o normalize -d 'Transform image to span the full range of colors' +complete -c convert -o opaque -d 'Change this color to the fill color [color]' -xa '(__fish_complete_convert_options color)' +complete -c convert -o ordered-dither -d 'Add a noise pattern to the image with specific amplitudes [NxN]' +complete -c convert -o paint -d 'Simulate an oil painting [radius]' +complete -c convert -o polaroid -d 'Simulate a Polaroid picture [angle]' +complete -c convert -o posterize -d 'Reduce the image to a limited number of color levels [levels]' +complete -c convert -o profile -d 'Add, delete, or apply an image profile [filename]' -r +complete -c convert -o quantize -d 'Reduce colors in this colorspace [colorspace]' -xa '(convert -list colorspace)' +complete -c convert -o radial-blur -d 'Radial blur the image [angle]' +complete -c convert -o raise -d 'Lighten/darken image edges to create a 3-D effect [value]' +complete -c convert -o random-threshold -d 'Random threshold the image [low,high]' +complete -c convert -o region -d 'Apply options to a portion of the image [geometry]' +complete -c convert -o render -d 'Render vector graphics' +complete -c convert -o repage -d 'Size and location of an image canvas [geometry]' +complete -c convert -o resample -d 'Change the resolution of an image [geometry]' +complete -c convert -o resize -d 'Resize the image [geometry]' +complete -c convert -o roll -d 'Roll an image vertically or horizontally [geometry]' +complete -c convert -o rotate -d 'Apply Paeth rotation to the image [degrees]' +complete -c convert -o sample -d 'Scale image with pixel sampling [geometry]' +complete -c convert -o scale -d 'Scale the image [geometry]' +complete -c convert -o segment -d 'Segment an image [values]' +complete -c convert -o selective-blur -d 'Selectively blur pixels within a contrast threshold [geometry]' +complete -c convert -o sepia-tone -d 'Simulate a sepia-toned photo [threshold]' +complete -c convert -o set -d 'Set an image property [property value]' +complete -c convert -o shade -d 'Shade the image using a distant light source [degrees]' +complete -c convert -o shadow -d 'Simulate an image shadow [geometry]' +complete -c convert -o sharpen -d 'Sharpen the image [geometry]' +complete -c convert -o shave -d 'Shave pixels from the image edges [geometry]' +complete -c convert -o shear -d 'Slide one edge of the image along the X or Y axis [geometry]' +complete -c convert -o sigmoidal-contrast -d 'Increase the contrast without saturating highlights or shadows [geometry]' +complete -c convert -o sketch -d 'Simulate a pencil sketch [geometry]' +complete -c convert -o solarize -d 'Negate all pixels above the threshold level [threshold]' +complete -c convert -o sparse-color -d 'Args fill in a image based on a few color points [method]' -xa '(convert -list sparse-color)' +complete -c convert -o splice -d 'Splice the background color into the image [geometry]' +complete -c convert -o spread -d 'Displace image pixels by a random amount [radius]' +complete -c convert -o statistic -d 'Replace each pixel with corresponding statistic from the neighborhood [type geometry]' -xa '(convert -list statistic)' +complete -c convert -o strip -d 'Strip image of all profiles and comments' +complete -c convert -o swirl -d 'Swirl image pixels about the center [degrees]' +complete -c convert -o threshold -d 'Threshold the image [value]' +complete -c convert -o thumbnail -d 'Create a thumbnail of the image [geometry]' +complete -c convert -o tile -d 'Tile image when filling a graphic primitive [filename]' -r +complete -c convert -o tint -d 'Tint the image with the fill color [value]' +complete -c convert -o transform -d 'Affine transform image' +complete -c convert -o transparent -d 'Make this color transparent within the image [color]' -xa '(__fish_complete_convert_options color)' +complete -c convert -o transpose -d 'Flip image vertically and rotate 90 degrees' +complete -c convert -o transverse -d 'Flop image horizontally and rotate 270 degrees' +complete -c convert -o trim -d 'Trim image edges' +complete -c convert -o type -d 'Image type [type]' -xa '(convert -list type)' +complete -c convert -o unique-colors -d 'Discard all but one of any pixel color' +complete -c convert -o unsharp -d 'Sharpen the image [geometry]' +complete -c convert -o vignette -d 'Soften the edges of the image in vignette style [geometry]' +complete -c convert -o wave -d 'Alter an image along a sine wave [geometry]' +complete -c convert -o white-threshold -d 'Force all pixels above the threshold into white [value]' +complete -c convert -o append -d 'Append an image sequence' +complete -c convert -o clut -d 'Apply a color lookup table to the image' +complete -c convert -o coalesce -d 'Merge a sequence of images' +complete -c convert -o combine -d 'Combine a sequence of images' +complete -c convert -o composite -d 'Composite image ' +complete -c convert -o crop -d 'Cut out a rectangular region of the image [geometry]' +complete -c convert -o deconstruct -d 'Break down an image sequence into constituent parts' +complete -c convert -o evaluate-sequence -d 'Evaluate an arithmetic, relational, or logical expression [operator]' +complete -c convert -o flatten -d 'Flatten a sequence of images' +complete -c convert -o fx -d 'Apply mathematical expression to an image channel(s) [expression]' +complete -c convert -o hald-clut -d 'Apply a Hald color lookup table to the image' +complete -c convert -o morph -d 'Morph an image sequence [value]' +complete -c convert -o mosaic -d 'Create a mosaic from an image sequence' +complete -c convert -o print -d 'Interpret string and print to console [string]' +complete -c convert -o process -d 'Process the image with a custom image filter [arguments]' -xa '(convert -list filter)' +complete -c convert -o separate -d 'Separate an image channel into a grayscale image' +complete -c convert -o smush -d 'Smush an image sequence together [geometry]' +complete -c convert -o write -d 'Write images to this file [filename]' -r +complete -c convert -o clone -d 'Clone an image [indexes]' +complete -c convert -o delete -d 'Delete the image from the image sequence [indexes]' +complete -c convert -o duplicate -d 'Duplicate an image one or more times [count,indexes]' +complete -c convert -o insert -d 'Insert last image into the image sequence [index]' +complete -c convert -o reverse -d 'Reverse image sequence' +complete -c convert -o swap -d 'Swap two images in the image sequence [indexes]' +complete -c convert -o debug -d 'Display copious debugging information [events]' -xa '(convert -list debug)' +complete -c convert -o help -d 'Print program options' +complete -c convert -o list -d 'Print a list of supported option arguments [type]' -xa '(convert -list list)' +complete -c convert -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' +complete -c convert -o version -d 'Print version information' +complete -c convert -o matte -d 'Store matte channel if the image has one' +complete -c convert -o origin -d 'Image origin [geometry]' +complete -c convert -o support -d 'Resize support: > 1.0 is blurry, < 1.0 is sharp [factor]' +complete -c convert -o affinity -d 'Transform image colors to match this set of colors [filename]' -r diff --git a/share/completions/cower.fish b/share/completions/cower.fish deleted file mode 100644 index 9b1c6269d..000000000 --- a/share/completions/cower.fish +++ /dev/null @@ -1,23 +0,0 @@ -complete -c cower -f -s b -l 'brief' -d 'Show output in a more script friendly format' -complete -c cower -f -s d -l 'download' -d 'Download [twice to fetch dependencies]' -complete -c cower -f -s i -l 'info' -d 'Show info for target [twice for more details]' -complete -c cower -f -s m -l 'msearch' -d 'Search for packages by maintainer' -complete -c cower -f -s s -l 'search' -d 'Search for packages by name' -complete -c cower -f -s u -l 'update' -d 'Check AUR packages for updates' -complete -c cower -f -s c -l 'color' -xa 'always auto never' -d 'Use colored output' -complete -c cower -f -s v -l 'debug' -d 'Show debug output' -complete -c cower -f -s f -l 'force' -d 'Overwrite existing files when downloading' -complete -c cower -f -l 'format' -d 'Print formatted' -complete -c cower -f -s h -l 'help' -d 'Display help and quit' -complete -c cower -f -l 'ignore' -xa "(pacman -Qq)" -d 'Ignore a package upgrade' -complete -c cower -f -l 'ignorerepo' -xa "(__fish_print_pacman_repos)" -d 'Ignore a binary repo when checking for updates' -complete -c cower -f -l 'listdelim' -d 'Specify a delimiter for list formatters' -complete -c cower -f -s q -l 'quiet' -d 'Output less' -complete -c cower -f -s t -l 'target' -d 'Download targets to DIR' -complete -c cower -f -l 'threads' -d 'Limit the number of threads created [10]' -complete -c cower -f -l 'timeout' -d 'Curl timeout in seconds' -complete -c cower -f -s v -l 'verbose' -d 'Output more' - -# Complete with AUR packages: -# If the search string is too short, cower prints an annoying message to stderr - ignore that -complete -c cower -f -n 'not string match -q -- "-*" (commandline --current-token)' -a '(cower --format="%n\t%d\n" --search (commandline --current-token) 2>/dev/null)' diff --git a/share/completions/cowsay.fish b/share/completions/cowsay.fish index 7f49c70aa..89b41dbd2 100644 --- a/share/completions/cowsay.fish +++ b/share/completions/cowsay.fish @@ -5,7 +5,7 @@ complete -c cowsay -s f -d "Specify cow file" -x -a '(cowsay -l|tail -n +2|tr \ complete -c cowsay -s h -d "Display help and exit" complete -c cowsay -s l -d "List all cowfiles" complete -c cowsay -s n -d "No word wrapping" -complete -c cowsay -s T -d "Specify tounge string" +complete -c cowsay -s T -d "Specify tongue string" complete -c cowsay -s W -d "Column width" -r complete -c cowsay -s b -d "Borg cow" complete -c cowsay -s d -d "Dead cow" diff --git a/share/completions/cowthink.fish b/share/completions/cowthink.fish index f45b7b132..e99be1829 100644 --- a/share/completions/cowthink.fish +++ b/share/completions/cowthink.fish @@ -5,7 +5,7 @@ complete -c cowthink -s f -d "Specify cow file" -x -a '(cowthink -l|tail -n +2|t complete -c cowthink -s h -d "Display help and exit" complete -c cowthink -s l -d "List all cowfiles" complete -c cowthink -s n -d "No word wrapping" -complete -c cowthink -s T -d "Specify tounge string" +complete -c cowthink -s T -d "Specify tongue string" complete -c cowthink -s W -d "Column width" -r complete -c cowthink -s b -d "Borg cow" complete -c cowthink -s d -d "Dead cow" diff --git a/share/completions/cp.fish b/share/completions/cp.fish index e81ec8a7f..d095c5ccb 100644 --- a/share/completions/cp.fish +++ b/share/completions/cp.fish @@ -1,76 +1,76 @@ -if cp --version 2>/dev/null > /dev/null # GNU cp - complete -c cp -s a -l archive -d "Same as -dpR" - complete -c cp -s b -l backup -d "Make backup of each existing destination file" -a "none off numbered t existing nil simple never" - complete -c cp -l copy-contents -d "Copy contents of special files when recursive" - complete -c cp -s d -d "Same as --no-dereference --preserve=link" - complete -c cp -s f -l force -d "Do not prompt before overwriting" - complete -c cp -s i -l interactive -d "Prompt before overwrite" - complete -c cp -s H -d "Follow command-line symbolic links" - complete -c cp -s l -l link -d "Link files instead of copying" - complete -c cp -l strip-trailing-slashes -d "Remove trailing slashes from source" - complete -c cp -s S -l suffix -r -d "Backup suffix" - complete -c cp -s t -l target-directory -d "Target directory" -x -a "(__fish_complete_directories (commandline -ct) 'Target directory')" - complete -c cp -s u -l update -d "Do not overwrite newer files" - complete -c cp -s v -l verbose -d "Verbose mode" - complete -c cp -l help -d "Display help and exit" - complete -c cp -l version -d "Display version and exit" - complete -c cp -s L -l dereference -d "Always follow symbolic links" - complete -c cp -s P -l no-dereference -d "Never follow symbolic links" - complete -c cp -s p -d "Same as --preserve=mode,ownership,timestamps" - complete -c cp -f -l preserve -d "Preserve ATTRIBUTES if possible" -xa "mode ownership timestamps links all" - complete -c cp -f -l no-preserve -r -d "Don't preserve ATTRIBUTES" -xa "mode ownership timestamps links all" - complete -c cp -l parents -d "Use full source file name under DIRECTORY" - complete -c cp -s r -s R -l recursive -d "Copy directories recursively" - complete -c cp -l remove-destination -d "First remove existing destination files" - complete -c cp -f -l sparse -r -d "Control creation of sparse files" -xa "always auto never" - complete -c cp -s s -l symbolic-link -d "Make symbolic links instead of copying" - complete -c cp -s T -l no-target-directory -d "Treat DEST as a normal file" - complete -c cp -s x -l one-file-system -d "Stay on this file system" - complete -c cp -s X -l context -r -d "Set SELinux context of copy to CONTEXT" +if cp --version 2>/dev/null >/dev/null # GNU cp + complete -c cp -s a -l archive -d "Same as -dpR" + complete -c cp -s b -l backup -d "Make backup of each existing destination file" -a "none off numbered t existing nil simple never" + complete -c cp -l copy-contents -d "Copy contents of special files when recursive" + complete -c cp -s d -d "Same as --no-dereference --preserve=link" + complete -c cp -s f -l force -d "Do not prompt before overwriting" + complete -c cp -s i -l interactive -d "Prompt before overwrite" + complete -c cp -s H -d "Follow command-line symbolic links" + complete -c cp -s l -l link -d "Link files instead of copying" + complete -c cp -l strip-trailing-slashes -d "Remove trailing slashes from source" + complete -c cp -s S -l suffix -r -d "Backup suffix" + complete -c cp -s t -l target-directory -d "Target directory" -x -a "(__fish_complete_directories (commandline -ct) 'Target directory')" + complete -c cp -s u -l update -d "Do not overwrite newer files" + complete -c cp -s v -l verbose -d "Verbose mode" + complete -c cp -l help -d "Display help and exit" + complete -c cp -l version -d "Display version and exit" + complete -c cp -s L -l dereference -d "Always follow symbolic links" + complete -c cp -s P -l no-dereference -d "Never follow symbolic links" + complete -c cp -s p -d "Same as --preserve=mode,ownership,timestamps" + complete -c cp -f -l preserve -d "Preserve ATTRIBUTES if possible" -xa "mode ownership timestamps links all" + complete -c cp -f -l no-preserve -r -d "Don't preserve ATTRIBUTES" -xa "mode ownership timestamps links all" + complete -c cp -l parents -d "Use full source file name under DIRECTORY" + complete -c cp -s r -s R -l recursive -d "Copy directories recursively" + complete -c cp -l remove-destination -d "First remove existing destination files" + complete -c cp -f -l sparse -r -d "Control creation of sparse files" -xa "always auto never" + complete -c cp -s s -l symbolic-link -d "Make symbolic links instead of copying" + complete -c cp -s T -l no-target-directory -d "Treat DEST as a normal file" + complete -c cp -s x -l one-file-system -d "Stay on this file system" + complete -c cp -s X -l context -r -d "Set SELinux context of copy to CONTEXT" else # BSD/macOS - set -l uname (uname -s) - # Solaris: cp [-R | r [H | L | P ]] [-fi ] [-p ] - # openbsd: cp [-R | [H | L | P ]] [-fi ] [-pv ] - # macos: cp [-R | [H | L | P ]] [-fin] [-pva cX ] # -c: clone -X: copy xattrs - # netbsd: cp [-R | [H | L | P ]] [-fi ] [-pval N] # -l: hard link instead of copy -N: don't copy file flags - # dragonfly: cp [-R | [H | L | P ]] [-fin] [-pvalx ] # -x: don't traverse mount points - # freebsd: cp [-R | [H | L | P ]] [-fin] [-pvalxs ] # -s: symlink instead of copy - if [ "$uname" = SunOS ] # annoying - complete -c cp -s r -d "Copy directories recursively" - complete -c cp -s R -d "Like -r, but replicating pipes instead of reading pipes" - else - complete -c cp -s R -d "Copy directories recursively" - end - complete -c cp -s H -d "with -R: Follow symlinks in cp arguments" - complete -c cp -s L -d "with -R: Follow all symlinks" - complete -c cp -s P -d "with -R: Don't follow symlinks (default)" + set -l uname (uname -s) + # Solaris: cp [-R | r [H | L | P ]] [-fi ] [-p ] + # openbsd: cp [-R | [H | L | P ]] [-fi ] [-pv ] + # macos: cp [-R | [H | L | P ]] [-fin] [-pva cX ] # -c: clone -X: copy xattrs + # netbsd: cp [-R | [H | L | P ]] [-fi ] [-pval N] # -l: hard link instead of copy -N: don't copy file flags + # dragonfly: cp [-R | [H | L | P ]] [-fin] [-pvalx ] # -x: don't traverse mount points + # freebsd: cp [-R | [H | L | P ]] [-fin] [-pvalxs ] # -s: symlink instead of copy + if [ "$uname" = SunOS ] # annoying + complete -c cp -s r -d "Copy directories recursively" + complete -c cp -s R -d "Like -r, but replicating pipes instead of reading pipes" + else + complete -c cp -s R -d "Copy directories recursively" + end + complete -c cp -s H -d "-R: Follow symlink arguments" + complete -c cp -s L -d "-R: Follow all symlinks" + complete -c cp -s P -d "-R: Don't follow symlinks (default)" - complete -c cp -s f -d "Replace destination without confirmation" - complete -c cp -s i -d "Prompt before overwrite" - not contains "$uname" SunOS OpenBSD NetBSD - and complete -c cp -s n -d "Don't overwrite existing files" + complete -c cp -s f -d "Don't confirm to overwrite" + complete -c cp -s i -d "Prompt before overwrite" + not contains "$uname" SunOS OpenBSD NetBSD + and complete -c cp -s n -d "Don't overwrite existing" - complete -c cp -s p -d "Preserve attributes of source file" - if [ "$uname" = SunOS ] - exit 0 - end - complete -c cp -s v -d "Print file names as files are copied" - if [ "$uname" = OpenBSD ] - exit 0 - end - complete -c cp -s a -d "Archive mode (-pPR)" - if [ "$uname" = Darwin ] - complete -c cp -s c -d "Clone using clonefile(2)" - complete -c cp -s X -d "Do not copy xattrs or resource forks" - exit 0 - end - complete -c cp -s l -d "Hard link instead of copying" - if [ "$uname" = NetBSD ] - complete -c cp -s N -d "Don't copy file flags" - exit 0 - end - complete -c cp -s x -d "Don't traverse file system mount points" - if [ "$uname" = FreeBSD ] - complete -c cp -s s -d "Symlink instead of copying" - end + complete -c cp -s p -d "Preserve attributes of source" + if [ "$uname" = SunOS ] + exit 0 + end + complete -c cp -s v -d "Print filenames as they're copied" + if [ "$uname" = OpenBSD ] + exit 0 + end + complete -c cp -s a -d "Archive mode (-pPR)" + if [ "$uname" = Darwin ] + complete -c cp -s c -d "Clone using clonefile(2)" + complete -c cp -s X -d "Omit xattrs, resource forks" + exit 0 + end + complete -c cp -s l -d "Hard link instead of copying" + if [ "$uname" = NetBSD ] + complete -c cp -s N -d "Don't copy file flags" + exit 0 + end + complete -c cp -s x -d "Don't traverse mount points" + if [ "$uname" = FreeBSD ] + complete -c cp -s s -d "Symlink instead of copying" + end end diff --git a/share/completions/cryptsetup.fish b/share/completions/cryptsetup.fish new file mode 100644 index 000000000..fb8f22045 --- /dev/null +++ b/share/completions/cryptsetup.fish @@ -0,0 +1,92 @@ +#cryptsetup 2.2.2 + +#variables +set -l seen __fish_seen_subcommand_from +set -l actions benchmark close config convert erase isLuks luksAddKey luksChangeKey luksConvertKey luksDump luksFormat luksHeaderBackup luksHeaderRestore luksKillSlot luksRemoveKey luksResume luksSuspend luksUUID open reencrypt repair resize status tcryptDump token + +#actions +complete -c cryptsetup -x -n "not $seen $actions" -a "$actions" + +#options +complete -c cryptsetup -l active-name -d "Override device autodetection of dm device to be reencrypted" +complete -c cryptsetup -l align-payload -d "Align payload at sector boundaries - for luksFormat" +complete -c cryptsetup -l allow-discards -d "Allow discards (aka TRIM) requests for device" +complete -c cryptsetup -l batch-mode -s q -d "Do not ask for confirmation" +complete -c cryptsetup -l cipher -s c -d "The cipher used to encrypt the disk (see /proc/crypto)" +complete -c cryptsetup -l debug -d "Show debug messages" +complete -c cryptsetup -l debug-json -d "Show debug messages including JSON metadata" +complete -c cryptsetup -l decrypt -d "Decrypt LUKS2 device (remove encryption)" +complete -c cryptsetup -l deferred -d "Device removal is deferred until the last user closes it" +complete -c cryptsetup -l device-size -d "Use only specified device size (ignore rest of device). DANGEROUS!" +complete -c cryptsetup -l disable-keyring -d "Disable loading volume keys via kernel keyring" +complete -c cryptsetup -l disable-locks -d "Disable locking of on-disk metadata" +complete -c cryptsetup -l dump-master-key -d "Dump volume (master) key instead of keyslots info" +complete -c cryptsetup -l encrypt -d "Encrypt LUKS2 device (in-place encryption)" +complete -c cryptsetup -l force-password -d "Disable password quality check (if enabled)" +complete -c cryptsetup -l hash -s h -d "The hash used to create the encryption key from the passphrase" +complete -c cryptsetup -l header -d "Device or file with separated LUKS header" +complete -c cryptsetup -l header-backup-file -d "File with LUKS header and keyslots backup" +complete -c cryptsetup -l help -s '?' -d "Show help message" +complete -c cryptsetup -l hotzone-size -d "Maximal reencryption hotzone size" +complete -c cryptsetup -l init-only -d "Initialize LUKS2 reencryption in metadata only" +complete -c cryptsetup -l integrity -s I -d "Data integrity algorithm (LUKS2 only)" +complete -c cryptsetup -l integrity-no-journal -d "Disable journal for integrity device" +complete -c cryptsetup -l integrity-no-wipe -d "Do not wipe device after format" +complete -c cryptsetup -l iter-time -s i -d "PBKDF iteration time for LUKS (in ms)" +complete -c cryptsetup -l json-file -d "Read or write the json from or to a file" +complete -c cryptsetup -l key-description -d "Key description" +complete -c cryptsetup -l key-file -s d -d "Read the key from a file" +complete -c cryptsetup -l key-size -s s -d "The size of the encryption key" +complete -c cryptsetup -l key-slot -s S -d "Slot number for new key (default is first free)" +complete -c cryptsetup -l keyfile-offset -d "Number of bytes to skip in keyfile" +complete -c cryptsetup -l keyfile-size -s l -d "Limits the read from keyfile" +complete -c cryptsetup -l keyslot-cipher -d "LUKS2 keyslot: The cipher used for keyslot encryption" +complete -c cryptsetup -l keyslot-key-size -d "LUKS2 keyslot: The size of the encryption key" +complete -c cryptsetup -l label -d "Set label for the LUKS2 device" +complete -c cryptsetup -l luks2-keyslots-size -d "LUKS2 header keyslots area size" +complete -c cryptsetup -l luks2-metadata-size -d "LUKS2 header metadata area size" +complete -c cryptsetup -l master-key-file -d "Read the volume (master) key from file" +complete -c cryptsetup -l new-keyfile-offset -d "Number of bytes to skip in newly added keyfile" +complete -c cryptsetup -l new-keyfile-size -d "Limits the read from newly added keyfile" +complete -c cryptsetup -l offset -s o -d "The start offset in the backend device" +complete -c cryptsetup -l pbkdf -d "PBKDF algorithm (for LUKS2): argon2i, argon2id, pbkdf2" +complete -c cryptsetup -l pbkdf-force-iterations -d "PBKDF iterations cost (forced, disables benchmark)" +complete -c cryptsetup -l pbkdf-memory -d "PBKDF memory cost limit" +complete -c cryptsetup -l pbkdf-parallel -d "PBKDF parallel cost" +complete -c cryptsetup -l perf-same_cpu_crypt -d "Use dm-crypt same_cpu_crypt performance compatibility option" +complete -c cryptsetup -l perf-submit_from_crypt_cpus -d "Use dm-crypt submit_from_crypt_cpus performance compatibility option" +complete -c cryptsetup -l persistent -d "Set activation flags persistent for device" +complete -c cryptsetup -l priority -d "Keyslot priority: ignore, normal, prefer" +complete -c cryptsetup -l progress-frequency -d "Progress line update (in seconds)" +complete -c cryptsetup -l readonly -s r -d "Create a readonly mapping" +complete -c cryptsetup -l reduce-device-size -d "Reduce data device size (move data offset). DANGEROUS!" +complete -c cryptsetup -l refresh -d "Refresh (reactivate) device with new parameters" +complete -c cryptsetup -l resilience -d "Reencryption hotzone resilience type (checksum,journal,none)" +complete -c cryptsetup -l resilience-hash -d "Reencryption hotzone checksums hash" +complete -c cryptsetup -l resume-only -d "Resume initialized LUKS2 reencryption only" +complete -c cryptsetup -l sector-size -d "Encryption sector size (default: 512 bytes)" +complete -c cryptsetup -l serialize-memory-hard-pbkdf -d "Use global lock to serialize memory hard PBKDF (OOM workaround)" +complete -c cryptsetup -l shared -d "Share device with another non-overlapping crypt segment" +complete -c cryptsetup -l size -s b -d "The size of the device" +complete -c cryptsetup -l skip -s p -d "How many sectors of the encrypted data to skip at the beginning" +complete -c cryptsetup -l subsystem -d "Set subsystem label for the LUKS2 device" +complete -c cryptsetup -l tcrypt-backup -d "Use backup (secondary) TCRYPT header" +complete -c cryptsetup -l tcrypt-hidden -d "Use hidden header (hidden TCRYPT device)" +complete -c cryptsetup -l tcrypt-system -d "Device is system TCRYPT drive (with bootloader)" +complete -c cryptsetup -l test-passphrase -d "Do not activate device, just check passphrase" +complete -c cryptsetup -l timeout -s t -d "Timeout for interactive passphrase prompt (in seconds)" +complete -c cryptsetup -l token-id -d "Token number (default: any)" +complete -c cryptsetup -l token-only -d "Do not ask for passphrase if activation by token fails" +complete -c cryptsetup -l tries -s T -d "How often the input of the passphrase can be retried" +complete -c cryptsetup -l type -s M -d "Type of device metadata: luks, luks1, luks2, plain, loopaes, tcrypt" +complete -c cryptsetup -l unbound -d "Create unbound (no assigned data segment) LUKS2 keyslot" +complete -c cryptsetup -l usage -d "Display brief usage" +complete -c cryptsetup -l use-random -d "Use /dev/random for generating volume key" +complete -c cryptsetup -l use-urandom -d "Use /dev/urandom for generating volume key" +complete -c cryptsetup -l uuid -d "UUID for device to use" +complete -c cryptsetup -l veracrypt -d "Scan also for VeraCrypt compatible device" +complete -c cryptsetup -l veracrypt-pim -d "Personal Iteration Multiplier for VeraCrypt compatible device" +complete -c cryptsetup -l veracrypt-query-pim -d "Query Personal Iteration Multiplier for VeraCrypt compatible device" +complete -c cryptsetup -l verbose -s v -d "Shows more detailed error messages" +complete -c cryptsetup -l verify-passphrase -s y -d "Verifies the passphrase by asking for it twice" +complete -c cryptsetup -l version -s V -d "Print package version" diff --git a/share/completions/csc.fish b/share/completions/csc.fish new file mode 100644 index 000000000..669163e37 --- /dev/null +++ b/share/completions/csc.fish @@ -0,0 +1,130 @@ +# Completions for the Visual C# Compiler(Roslyn) +# See: https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/compiler-options/listed-by-category + +# Optimization +for bytes in 512 1024 2048 4096 8192 + complete -c csc -o "filealign:$bytes" -d "Specifies the size of sections in the output file" +end + +complete -c csc -s o -o "o+" -o optimize -o "optimize+" -d "Enable optimizations" +complete -c csc -o "o-" -o "optimize-" -d "Disable optimizations" + +# Output Files +complete -c csc -o deterministic -d "Causes the compiler to output an assembly whose binary content is identical across compilations if inputs are identical" +complete -c csc -o "doc:" -d "Specifies an XML file where processed documentation comments are to be written" +complete -c csc -o "out:" -d "Specifies the output file" +complete -c csc -o "pathmap:" -d "Specify a mapping for source path names output by the compiler" +complete -c csc -o "pdb:" -d "Specifies the file name and location of the .pdb file" +complete -c csc -o "platform:anycpu" -d "Specify any platform as the output platform (default)" +complete -c csc -o "platform:anycpu32bitpreferred" -d "Specify any platform as the output platform" +complete -c csc -o "platform:ARM" -d "Specify ARM as the output platform" +complete -c csc -o "platform:ARM64" -d "Specify ARM64 as the output platform" +complete -c csc -o "platform:x64" -d "Specify AMD64 or EM64T as the output platform" +complete -c csc -o "platform:x86" -d "Specify x86 as the output platform" +complete -c csc -o "platform:Itanium" -d "Specify Itanium as the output platform" +complete -c csc -o "preferreduilang:" -d "Specify a language for compiler output" +complete -c csc -o "refout:" -d "Generate a reference assembly in addition to the primary assembly" +complete -c csc -o refonly -d "Generate a reference assembly instead of a primary assembly" +complete -c csc -o "t:appcontainerexe" -o "target:appcontainerexe" -d "Specify .exe file for Windows 8.x Store apps as the format of the output file" +complete -c csc -o "t:exe" -o "target:exe" -d "Specify .exe file as the format of the output file (default)" +complete -c csc -o "t:library" -o "target:library" -d "Specify code library as the format of the output file" +complete -c csc -o "t:module" -o "target:module" -d "Specify module as the format of the output file" +complete -c csc -o "t:winexe" -o "target:winexe" -d "Specify Windows program as the format of the output file" +complete -c csc -o "t:winmdobj" -o "target:winmdobj" -d "Specify intermediate .winmdobj file as the format of the output file" +complete -c csc -o "modulename:" -d "Specify the name of the source module" + +# .NET Framework Assemblies +complete -c csc -o "addmodule:" -d "Specifies one or more modules to be part of this assembly" +complete -c csc -o delaysign -o "delaysign+" -d "Instructs the compiler to add the public key but to leave the assembly unsigned" +complete -c csc -o "delaysign-" -d "Disable -delaysign" +complete -c csc -o "keycontainer:" -d "Specifies the name of the cryptographic key container" +complete -c csc -o "keyfile:" -d "Specifies the filename containing the cryptographic key" +complete -c csc -o "lib:" -d "Specifies the location of assemblies referenced by means of -reference" +complete -c csc -o nostdlib -o "nostdlib+" -d "Instructs the compiler not to import the standard library (mscorlib.dll)" +complete -c csc -o "nostdlib-" -d "Disable -nostdlib" +complete -c csc -o publicsign -d "Apply a public key without signing the assembly, but set the bit in the assembly indicating the assembly is signed" +complete -c csc -o "r:" -o "reference:" -d "Imports metadata from a file that contains an assembly" +complete -c csc -o "a:" -o "analyzer:" -d "Run the analyzers from this assembly" +complete -c csc -o "additionalfile:" -d "Names additional files that don't directly affect code generation but may be used by analyzers for producing errors or warnings" +complete -c csc -o embed -d "Embed all source files in the PDB" +complete -c csc -o "embed:" -d "Embed specific files in the PDB" + +# Debugging/Error Checking +complete -c csc -o "bugreport:" -d "Creates a file that contains information that makes it easy to report a bug" +complete -c csc -o checked -o "checked+" -d "Specifies whether integer arithmetic that overflows the bounds of the data type will cause an exception at run time" +complete -c csc -o "checked-" -d "Disable -checked" + +complete -c csc -o debug -o "debug+" -d "Instruct the compiler to emit debugging information" +for arguments in full pdbonly + complete -c csc -o "debug:$arguments" -d "Instruct the compiler to emit debugging information" +end +complete -c csc -o "debug-" -d "Disable -debug" + +for arguments in none prompt queue send + complete -c csc -o "errorreport:$arguments" -d "Sets error reporting behavior" +end + +complete -c csc -o fullpaths -d "Specifies the absolute path to the file in compiler output" +complete -c csc -o "nowarn:" -d "Suppresses the compiler's generation of specified warnings" + +for warning_level in (seq 0 4) + if test $warning_level -ne 4 + complete -c csc -o "w:$warning_level" -o "warn:$warning_level" -d "Sets the warning level to $warning_level" + else + complete -c csc -o "w:$warning_level" -o "warn:$warning_level" -d "Sets the warning level to $warning_level (default)" + end +end + +complete -c csc -o warnaserror -o "warnaserror+" -d "Promotes warnings to errors" +complete -c csc -o "warnaserror-" -d "Disable -warnaserror" +complete -c csc -o "ruleset:" -d "Specify a ruleset file that disables specific diagnostics" + +# Preprocessor +complete -c csc -o "d:" -o "define:" -d "Defines preprocessor symbols" + +# Resources +complete -c csc -o "l:" -o "link:" -d "Makes COM type information in specified assemblies available to the project" +complete -c csc -o "linkres:" -o "linkresource:" -d "Creates a link to a managed resource" +complete -c csc -o "res:" -o "resource:" -d "Embeds a .NET Framework resource into the output file" +complete -c csc -o "win32icon:" -d "Specifies an .ico file to insert into the output file" +complete -c csc -o "win32res:" -d "Specifies a Win32 resource to insert into the output file" + +# Miscellaneous +complete -c csc -s "?" -o help -d "Lists compiler options to stdout" +complete -c csc -o "baseaddress:" -d "Specifies the preferred base address at which to load a DLL" +complete -c csc -o "codepage:" -d "Specifies the code page to use for all source code files in the compilation" +complete -c csc -o highentropyva -o "highentropyva+" -d "Specifies that the executable file supports address space layout randomization (ASLR)" +complete -c csc -o "highentropyva-" -d "Disable -highentropyva" + +complete -c csc -o "langversion:?" -d "Display the allowed values for language version" +complete -c csc -o "langversion:default" -d "Specify latest major version as language version" +complete -c csc -o "langversion:latest" -d "Specify latest version (including minor releases) as language version" +complete -c csc -o "langversion:latestMajor" -d "Specify latest major version as language version" +complete -c csc -o "langversion:preview" -d "Specify latest preview version as language version" +complete -c csc -o "langversion:ISO-1" -d "Specify ISO/IEC 23270:2003 C# (1.0/1.2) as language version" +complete -c csc -o "langversion:ISO-2" -d "Specify ISO/IEC 23270:2006 C# (2.0) as language version" +for version_number in (seq 3 8) + switch $version_number + case 7 + complete -c csc -o "langversion:$version_number" -d "Specify C# $version_number.0 as language version" + complete -c csc -o "langversion:$version_number.1" -d "Specify C# $version_number.1 as language version" + complete -c csc -o "langversion:$version_number.2" -d "Specify C# $version_number.2 as language version" + complete -c csc -o "langversion:$version_number.3" -d "Specify C# $version_number.3 as language version" + case 8 + complete -c csc -o "langversion:$version_number.0" -d "Specify C# $version_number.0 as language version" + case "*" + complete -c csc -o "langversion:$version_number" -d "Specify C# $version_number.0 as language version" + end +end + +complete -c csc -o "m:" -o "main:" -d "Specifies the location of the Main method" +complete -c csc -o noconfig -d "Instructs the compiler not to compile with csc.rsp" +complete -c csc -o nologo -d "Suppresses compiler banner information" +complete -c csc -o "recurse:" -d "Searches subdirectories for source files to compile" +complete -c csc -o "subsystemversion:" -d "Specifies the minimum version of the subsystem that the executable file can use" +complete -c csc -o unsafe -d "Enables compilation of code that uses the unsafe keyword" +complete -c csc -o utf8output -d "Displays compiler output using UTF-8 encoding" +complete -c csc -o parallel -o "parallel+" -d "Specifies whether to use concurrent build" +complete -c csc -o "parallel-" -d "Disable -parallel" +complete -c csc -o "checksumalgorithm:SHA1" -d "Specify SHA1 as the algorithm for calculating the source file checksum stored in PDB (default)" +complete -c csc -o "checksumalgorithm:SHA256" -d "Specify SHA256 as the algorithm for calculating the source file checksum stored in PDB" diff --git a/share/completions/csi.fish b/share/completions/csi.fish new file mode 100644 index 000000000..bb1c67bb2 --- /dev/null +++ b/share/completions/csi.fish @@ -0,0 +1,8 @@ +# Completions for the Visual C# Interactive Compiler(Roslyn) + +complete -c csi -o help -o "?" -d "Display this usage message" +complete -c csi -o version -d "Display the version and exit" +complete -c csi -s i -d "Drop to REPL after executing the specified script" +complete -c csi -o "r:" -o "reference:" -d "Reference metadata from the specified assembly file(s)" +complete -c csi -o "lib:" -o "libPath:" -o "libPaths:" -d "List of directories where to look for libraries specified by #r directive" +complete -c csi -o "u:" -o "using:" -o "usings:" -o "import:" -o "imports:" -d "Define global namespace using" diff --git a/share/completions/cwebp.fish b/share/completions/cwebp.fish new file mode 100644 index 000000000..3ce394730 --- /dev/null +++ b/share/completions/cwebp.fish @@ -0,0 +1,146 @@ +# Current as of cwebp 1.0.3. + +set -l preset_opts ' + default\t + photo\t + picture\t + drawing\t + icon\t + text\t +' + +set -l z_opts ' + 0\tfastest + 1\t + 2\t + 3\t + 4\t + 5\t + 6\t + 7\t + 8\t + 9\tslowest +' + +set -l m_opts ' + 0\tfastest + 1\t + 2\t + 3\t + 4\tdefault + 5\t + 6\tslowest +' + +set -l segments_opts ' + 1\t + 2\t + 3\t + 4\tdefault +' + +set -l sharpness_opts ' + 0\tmost sharp; default + 1\t + 2\t + 3\t + 4\t + 5\t + 6\t + 7\tleast sharp +' + +function __fish_cwebp_pass_opts + seq 0 10 | awk '{printf "%s\t\n", $0}' - +end + +set -l alpha_method_opts ' + 0\t + 1\tdefault +' + +set -l alpha_filter_opts ' + none\t + fast\tdefault + best\t +' + +set -l metadata_opts ' + all\t + none\tdefault + exif\t + icc\t + xmp\t +' + +function __fish_cwebp_is_first_arg_or_its_value -a 'arg' -d 'Like __fish_is_first_arg, but also returns true for the second token after a given parameter' + set -l tokens (commandline -co) + + switch (count $tokens) + case 1 + return 0 + case 2 + if test "$tokens[2]" = "$arg" + return 0 + end + return 1 + case '*' + return 1 + end +end + +complete -c cwebp -f -o h -o help -d 'Help (short)' +complete -c cwebp -f -o H -o longhelp -l help -d 'Help (long)' + +complete -c cwebp -x -o q -d 'Quality (float; 0…100; default: 75)' +complete -c cwebp -x -o alpha_q -d 'Transparency-compression quality (integer 0…100; default: 100)' + +complete -c cwebp -x -n '__fish_cwebp_is_first_arg_or_its_value -preset' -o preset -a $preset_opts -d 'Preset setting' + +complete -c cwebp -x -o z -a "$z_opts" -d 'Lossless preset of level' +complete -c cwebp -x -o m -a "$m_opts" -d 'Compression method' +complete -c cwebp -x -o segments -a "$segments_opts" -d 'Number of segments to use' +complete -c cwebp -x -o size -d 'Target size (in bytes)' +complete -c cwebp -x -o psnr -d 'Target PSNR (in dB; typically: 42)' + +complete -c cwebp -x -o s -d 'Input size (width x height) for YUV' +complete -c cwebp -x -o sns -d 'Spatial noise shaping (integer 0…100; default: 50)' +complete -c cwebp -x -o f -d 'Filter strength (integer 0…100; default: 60)' +complete -c cwebp -x -o sharpness -a "$sharpness_opts" -d 'Filter sharpness' +complete -c cwebp -o strong -d 'Use strong filter' +complete -c cwebp -o simple -d 'Use simple filter' +complete -c cwebp -o sharp_yuv -d 'Use sharper (and slower) RGB->YUV conversion' +complete -c cwebp -x -o partition_limit -d 'Limit quality to fit the 512k limit on the first partition (integer 0:no degradation…100:full degradation)' +complete -c cwebp -x -o pass -a '(__fish_cwebp_pass_opts)' -d 'Analysis pass number' +complete -c cwebp -x -o crop -d 'Crop picture with rectangle' +complete -c cwebp -x -o resize -d 'Resize picture to after any cropping' +complete -c cwebp -o mt -d 'Use multi-threading if available' +complete -c cwebp -o low_memory -d 'Reduce memory usage (slows encoding)' +complete -c cwebp -x -o map -d 'Print map of extra info' +complete -c cwebp -o print_psnr -d 'Print averaged PSNR distortion' +complete -c cwebp -o print_ssim -d 'Print averaged SSIM distortion' +complete -c cwebp -o print_lsim -d 'Print local-similarity distortion' +complete -c cwebp -r -o d -a '(__fish_complete_suffix .pgm)' -d 'Dump compressed output to given PGM file' +complete -c cwebp -x -o alpha_method -a "$alpha_method_opts" -d 'Transparency-compression method' +complete -c cwebp -x -o alpha_filter -a "$alpha_filter_opts" -k -d 'Predictive filtering for alpha plane' +complete -c cwebp -x -o exact -d 'Preserve RGB values in transparent area' +complete -c cwebp -x -o blend_alpha -d 'Blend colors against background color (e.g. 0xc0e0d0)' +complete -c cwebp -o noalpha -d 'Discard any transparency information' +complete -c cwebp -o lossless -d 'Encode image losslessly' +complete -c cwebp -x -o near_lossless -d 'Use near-lossless image preprocessing (integer 0…100:off; default: 100)' +complete -c cwebp -x -o hint -a 'photo picture graph' -d 'Specify image-characteristics hint' + +complete -c cwebp -x -o metadata -a "$metadata_opts" -k -d 'Comma-separated list of metadata to copy, if present' + +complete -c cwebp -o short -d 'Condense printed messages' +complete -c cwebp -o quiet -d 'Don\'t print anything' +complete -c cwebp -o version -d 'Print version number and exit' +complete -c cwebp -o noasm -d 'Disable all assembly optimizations' +complete -c cwebp -o v -d 'Be verbose (print encoding/decoding times)' +complete -c cwebp -o progress -d 'Report encoding progress' + +complete -c cwebp -o jpeg_like -d 'Roughly match expected JPEG size' +complete -c cwebp -o af -d 'Auto-adjust filter strength' +complete -c cwebp -x -o pre -d 'Pre-processing filter (integer)' + +complete -c cwebp -r -o o -a '(__fish_complete_suffix .webp)' -d 'Output to file' diff --git a/share/completions/cygpath.fish b/share/completions/cygpath.fish new file mode 100644 index 000000000..2a7a8d696 --- /dev/null +++ b/share/completions/cygpath.fish @@ -0,0 +1,26 @@ +complete -c cygpath -s d -l dos -d 'Print DOS/short form (C:PROGRA~1)' +complete -c cygpath -s m -l mixed -d 'Print Windows form with regular slashes (C:/WINNT)' +complete -c cygpath -s M -l mode -d 'Report on mode of file' +complete -c cygpath -s u -l unix -d 'Print Unix form (/cygdrive/c/winnt)' +complete -c cygpath -s w -l windows -d 'Print Windows form (C:\\WINNT)' +complete -c cygpath -s t -l type -a 'dos mixed unix windows' -d 'Print TYPE form' +complete -c cygpath -s a -l absolute -d 'Output absolute path' +complete -c cygpath -s l -l long-name -d 'Print Windows long form' -n '__fish_seen_argument -s w -l windows; or __fish_seen_argument -s m -l mixed' +complete -c cygpath -s p -l path -d 'NAME is a colon-separated list' +complete -c cygpath -s U -l proc-cygdrive -d 'Emit /proc/cygdrive instead of /cygdrive prefix' +complete -c cygpath -s s -l short-name -d 'Print DOS/short form' -n '__fish_seen_argument -s w -l windows; or __fish_seen_argument -s m -l mixed' +complete -c cygpath -s C -l codepage -r -a 'ANSI OEM UTF8' -d 'Print pathname in CODEPAGE' -n '__fish_seen_argument -s d -l dos; or __fish_seen_argument -s w -l windows; or __fish_seen_argument -s m -l mixed' +complete -c cygpath -s A -l allusers -d 'Use "All Users" instead of current user' -n '__fish_seen_argument -s D -l desktop; or __fish_seen_argument -s O -l mydocs; or __fish_seen_argument -s P -l smprograms' +complete -c cygpath -s D -l desktop -d 'Output "Desktop" directory' +complete -c cygpath -s H -l homeroot -d 'Output "Profiles" directory' +complete -c cygpath -s O -l mydocs -d 'Output "My Documents" directory' +complete -c cygpath -s P -l smprograms -d 'Output Start Menu "Programs" directory' +complete -c cygpath -s S -l sysdir -d 'Output system directory' +complete -c cygpath -s W -l windir -d 'Output "Windows" directory' +complete -c cygpath -s F -l folder -x -d 'Output special folder with numeric ID' +complete -c cygpath -s f -l file -r -d 'Read FILE for input' +complete -c cygpath -s o -l option -d 'Read options from FILE as well' -n '__fish_seen_argument -s f -l file' +complete -c cygpath -s c -l close -x -d 'Close HANDLE' +complete -c cygpath -s i -l ignore -d 'Ignore missing argument' +complete -c cygpath -s h -l help -d 'Output usage information' +complete -c cygpath -s V -l version -d 'Output version information' diff --git a/share/completions/cygport.fish b/share/completions/cygport.fish index 92c5497d0..9c993f414 100644 --- a/share/completions/cygport.fish +++ b/share/completions/cygport.fish @@ -1,32 +1,32 @@ # Options -complete -c cygport -s 4 -l 32 -d "Build for 32-bit Cygwin" -complete -c cygport -s 8 -l 64 -d "Build for 64-bit Cygwin" -complete -c cygport -l debug -d "Enable debugging messages" +complete -c cygport -s 4 -l 32 -d "Build for 32-bit Cygwin" +complete -c cygport -s 8 -l 64 -d "Build for 64-bit Cygwin" +complete -c cygport -l debug -d "Enable debugging messages" # Cygport file complete -c cygport -n '__fish_is_first_token' -f -a '*.cygport' -d "Cygport file" # Commands complete -c cygport -n 'not __fish_is_first_token' -f -a 'downloadall fetchall wgetall getall' -d "Download all sources" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'download fetch wget get' -d "Download missing sources" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'prep unpack' -d "Prepare source directory" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'compile build make' -d "Build software" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'check test' -d "Run test suite" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'inst install' -d "Install into DESTDIR and run post-installation steps" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'postinst' -d "Run post-installation steps" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'list' -d "List package files" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'listdebug listdbg' -d "List debug package files" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'dep' -d "Show dependencies" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'info' -d "Show packaging info" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'homepage web www' -d "Show project homepage URL" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'package-test pkg-test' -d "Create packages, marked as test" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'package pkg' -d "Create packages" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'diff mkdiff mkpatch' -d "Create source patches" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'upload up' -d "Upload finished packages" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'stage' -d "Upload packages without marking !ready" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'announce' -d "Send announcement email" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'clean finish' -d "Delete working directory" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'almostall all' -d "Same as prep build inst pkg" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'help' -d "Show help" -complete -c cygport -n 'not __fish_is_first_token' -f -a 'version' -d "Show version" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'download fetch wget get' -d "Download missing sources" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'prep unpack' -d "Prepare source directory" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'compile build make' -d "Build software" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'check test' -d "Run test suite" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'inst install' -d "Install into DESTDIR and run post-installation steps" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'postinst' -d "Run post-installation steps" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'list' -d "List package files" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'listdebug listdbg' -d "List debug package files" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'dep' -d "Show dependencies" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'info' -d "Show packaging info" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'homepage web www' -d "Show project homepage URL" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'package-test pkg-test' -d "Create packages, marked as test" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'package pkg' -d "Create packages" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'diff mkdiff mkpatch' -d "Create source patches" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'upload up' -d "Upload finished packages" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'stage' -d "Upload packages without marking !ready" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'announce' -d "Send announcement email" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'clean finish' -d "Delete working directory" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'almostall all' -d "Same as prep build inst pkg" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'help' -d "Show help" +complete -c cygport -n 'not __fish_is_first_token' -f -a 'version' -d "Show version" diff --git a/share/completions/cygstart.fish b/share/completions/cygstart.fish new file mode 100644 index 000000000..8e04e3d58 --- /dev/null +++ b/share/completions/cygstart.fish @@ -0,0 +1,25 @@ +complete -c cygstart -s a -l action -r -a 'open explore edit find print' -d 'Use specified action instead of default' +complete -c cygstart -s o -l open -d 'Short for: --action open' +complete -c cygstart -s x -l explore -d 'Short for: --action explore' +complete -c cygstart -s e -l edit -d 'Short for: --action edit' +complete -c cygstart -s f -l find -d 'Short for: --action find' +complete -c cygstart -s p -l print -d 'Short for: --action print' +complete -c cygstart -s d -l directory -r -d 'Set working directory' +complete -c cygstart -l hide -d 'Hide window and activates another window' +complete -c cygstart -l maximize -d 'Maximize the specified window' +complete -c cygstart -l minimize -d 'Minimize the specified window' +complete -c cygstart -l restore -d 'Activate and display window' +complete -c cygstart -l show -d 'Activate window and display in current size and position' +complete -c cygstart -l showmaximized -d 'Activate and maximize window' +complete -c cygstart -l showminimized -d 'Activate and minimize window' +complete -c cygstart -l showminnoactive -d 'Display window minimized' +complete -c cygstart -l showna -d 'Display window in current state' +complete -c cygstart -l shownoactivate -d 'Display a window in most recent size and position' +complete -c cygstart -l shownormal -d 'Activate and display a window' +complete -c cygstart -s w -l wait -d 'Wait until the application terminates before exiting' +complete -c cygstart -s v -l verbose -d 'Show the actual ShellExecute call made' +complete -c cygstart -s '?' -l help -d 'Show this help message' +complete -c cygstart -l usage -d 'Display brief usage message' +complete -c cygstart -l version -d 'Display version information' +complete -c cygstart -l license -d 'Display licensing information' +complete -c cygstart -l reference -d 'Open MSDN reference for ShellExecute' diff --git a/share/completions/darcs.fish b/share/completions/darcs.fish index 6638ca1ab..b5cabf362 100644 --- a/share/completions/darcs.fish +++ b/share/completions/darcs.fish @@ -41,35 +41,35 @@ complete -c darcs -n '__fish_use_subcommand' -x -a repair -d 'Repair a corrupted complete -c darcs -n '__fish_use_subcommand' -x -a convert -d 'Convert repositories between various formats' function __fish_darcs_use_show_command - set -l cmd (commandline -poc) - set -e cmd[1] + set -l cmd (commandline -poc) + set -e cmd[1] - if contains 'show' $cmd - for i in $cmd - switch $i - case contents - return 1 - case dependencies - return 1 - case files - return 1 - case index - return 1 - case pristine - return 1 - case repo - return 1 - case authors - return 1 - case tags - return 1 - case patch-index - return 1 - end + if contains 'show' $cmd + for i in $cmd + switch $i + case contents + return 1 + case dependencies + return 1 + case files + return 1 + case index + return 1 + case pristine + return 1 + case repo + return 1 + case authors + return 1 + case tags + return 1 + case patch-index + return 1 + end + end + return 0 end - return 0 - end - return 1 + return 1 end complete -c darcs -n '__fish_darcs_use_show_command' -x -a contents -d 'Outputs a specific version of a file' @@ -83,39 +83,39 @@ complete -c darcs -n '__fish_darcs_use_show_command' -x -a tags -d 'Show all tag complete -c darcs -n '__fish_darcs_use_show_command' -x -a patch-index -d 'Check integrity of patch index' function __fish_darcs_use_optimize_command - set -l cmd (commandline -poc) - set -e cmd[1] + set -l cmd (commandline -poc) + set -e cmd[1] - if contains 'optimize' $cmd - for i in $cmd - switch $i - case clean - return 1 - case http - return 1 - case reorder - return 1 - case enable-patch-index - return 1 - case disable-patch-index - return 1 - case compress - return 1 - case uncompress - return 1 - case relink - return 1 - case pristine - return 1 - case upgrade - return 1 - case cache - return 1 - end + if contains 'optimize' $cmd + for i in $cmd + switch $i + case clean + return 1 + case http + return 1 + case reorder + return 1 + case enable-patch-index + return 1 + case disable-patch-index + return 1 + case compress + return 1 + case uncompress + return 1 + case relink + return 1 + case pristine + return 1 + case upgrade + return 1 + case cache + return 1 + end + end + return 0 end - return 0 - end - return 1 + return 1 end complete -c darcs -n '__fish_darcs_use_optimize_command' -x -a clean -d 'Garbage collect pristine, inventories and patches' @@ -132,23 +132,23 @@ complete -c darcs -n '__fish_darcs_use_optimize_command' -x -a cache -d 'Garbage function __fish_darcs_use_convert_command - set -l cmd (commandline -poc) - set -e cmd[1] + set -l cmd (commandline -poc) + set -e cmd[1] - if contains 'convert' $cmd - for i in $cmd - switch $i - case darcs-2 - return 1 - case export - return 1 - case import - return 1 - end + if contains 'convert' $cmd + for i in $cmd + switch $i + case darcs-2 + return 1 + case export + return 1 + case import + return 1 + end + end + return 0 end - return 0 - end - return 1 + return 1 end complete -c darcs -l 'help' -d 'Show a brief description of the command and its options' diff --git a/share/completions/date.fish b/share/completions/date.fish index d033932d8..63a89945f 100644 --- a/share/completions/date.fish +++ b/share/completions/date.fish @@ -1,22 +1,41 @@ -if date --version > /dev/null 2>/dev/null - complete -c date -s d -l date -d "Display date described by string" -x - complete -c date -s f -l file -d "Display date for each line in file" -r - complete -c date -s I -l iso-8601 -d "Output in ISO 8601 format" -x -a "date hours minutes seconds" - complete -c date -s s -l set -d "Set time" -x - complete -c date -s R -l rfc-2822 -d "Output RFC-2822 compliant date string" - complete -c date -s r -l reference -d "Display the last modification time of file" -r - complete -c date -s u -l utc -d "Print or set Coordinated Universal Time" - complete -c date -l universal -d "Print or set Coordinated Universal Time" - complete -c date -s h -l help -d "Display help and exit" - complete -c date -s v -l version -d "Display version and exit" -else # OS X - complete -c date -s d -d 'Set the kernel\'s value for daylight saving time' -x - complete -c date -s f -d 'Use format string to parse the date provided rather than default format' - complete -c date -s j -d 'Do no try to set the date' - complete -c date -s n -d 'Set the time for current machine only in the local group' - complete -c date -s r -d 'Print date and time represented by SEC since Epoch' -x - complete -c date -s t -d 'Set system\'s value for MINUTES west of GMT' - complete -c date -s u -d 'Display or set the date int UTC time' - complete -c date -s v -d 'Adjust the time component backward(-)/forward(+) according to VAL' -x +complete -c date -f -d "display or set date and time" +if date --version >/dev/null 2>/dev/null + complete -c date -s d -l date -d "Display date described by string" -x + complete -c date -s f -l file -d "Display date for each line in file" -r + complete -c date -s I -l iso-8601 -d "Output in ISO-8601 format" -x -a "date hours minutes seconds" + complete -c date -s s -l set -d "Set time" -x + complete -c date -s R -l rfc-2822 -d "Output RFC-2822 date string" + complete -c date -s r -l reference -d "Display last modification time of file" -r + complete -c date -s u -l utc -d "Print/set UTC time" -f + complete -c date -l universal -d "Print/set UTC time" -f + complete -c date -s h -l help -d "Display help and exit" -f + complete -c date -s v -l version -d "Display version and exit" -f +else + complete -c date -s u -d 'Display or set UTC time' -f + complete -c date -s j -d "Don't actually set the clock" -f + complete -c date -s d -d "Set system's value for DST" -x + + set -l uname (uname -s) + + test "$uname" != OpenBSD + and complete -c date -s n -d 'Set clock for local machine only' -f + + switch $uname + case FreeBSD Darwin DragonFly + # only -u is actually POSIX. Rest are BSD extensions: + complete -c date -s r -d "Show file mtime, or format seconds" -r + complete -c date -s v -d 'Adjust clock +/- by time specified' -f + case NetBSD OpenBSD + complete -c date -s a -d "Change clock slowly with adjtime" -x + complete -c date -s r -d "Show date given seconds since epoch" -x + if test "$uname" = NetBSD + complete -c date -s d -d "Parse human-described date-time and show result" -x + exit + end + complete -c date -s z -d "Specify timezone for output" -x + end + + complete -c date -s t -d "Set system's minutes west of GMT" -x + complete -c date -s f -d 'Use format string to parse date' -f end diff --git a/share/completions/df.fish b/share/completions/df.fish index 5809ae91d..1f77d036f 100644 --- a/share/completions/df.fish +++ b/share/completions/df.fish @@ -3,7 +3,7 @@ # # -# Test if we are using GNU sed +# Test if we are using GNU df # set -l is_gnu @@ -18,21 +18,21 @@ __fish_gnu_complete -c df -s t -l type -r -d "Show file systems of specified typ if test -n "$is_gnu" - complete -c df -s a -l all -d "Include empty file systems" - complete -c df -s B -l block-size -r -d "Block size" - complete -c df -s H -l si -d "Human readable sizes, powers of 1000" - complete -c df -l no-sync -d "Do not sync before getting usage info" - complete -c df -l sync -d "Sync before getting usage info" - complete -c df -s T -l print-type -d "Print file system type" - complete -c df -s x -l exclude-type -d "Excluded file system type" -r -x -a "(__fish_print_filesystems)" - complete -c df -l help -d "Display help and exit" - complete -c df -l version -d "Display version and exit" + complete -c df -s a -l all -d "Include empty file systems" + complete -c df -s B -l block-size -r -d "Block size" + complete -c df -s H -l si -d "Human readable sizes, powers of 1000" + complete -c df -l no-sync -d "Do not sync before getting usage info" + complete -c df -l sync -d "Sync before getting usage info" + complete -c df -s T -l print-type -d "Print file system type" + complete -c df -s x -l exclude-type -d "Excluded file system type" -r -x -a "(__fish_print_filesystems)" + complete -c df -l help -d "Display help and exit" + complete -c df -l version -d "Display version and exit" else - complete -c df -s a -d "Show all file systems" - complete -c df -s g -d "Show sizes in gigabytes" - complete -c df -s m -d "Show sizes in megabytes" - complete -c df -s n -d "Print out the previously obtained statistics from the file systems" + complete -c df -s a -d "Show all file systems" + complete -c df -s g -d "Show sizes in gigabytes" + complete -c df -s m -d "Show sizes in megabytes" + complete -c df -s n -d "Print out the previously obtained statistics from the file systems" end diff --git a/share/completions/dhcpcd.fish b/share/completions/dhcpcd.fish index 5d34fc275..8c9d7747c 100644 --- a/share/completions/dhcpcd.fish +++ b/share/completions/dhcpcd.fish @@ -18,7 +18,7 @@ complete -c dhcpcd -l logfile -s j -r -d 'Writes to specfied log file instead of complete -c dhcpcd -l release -s k -x -d 'Release lease and de-configure interface' -a '(__fish_print_interfaces)' complete -c dhcpcd -l leasetime -s l -x -d 'Request specific lease time in secs' complete -c dhcpcd -l master -s M -d 'Start dhcpcd in Master mode' -complete -c dhcpcd -l metric -s m -x -d 'Set prefered interface based on given rank (lowest wins)' +complete -c dhcpcd -l metric -s m -x -d 'Set preferred interface based on given rank (lowest wins)' complete -c dhcpcd -l rebind -s n -x -d 'Reload config and rebind specified interface' -a '(__fish_print_interfaces)' complete -c dhcpcd -l renew -s N -x -d 'Renew existing addresses on specified interface' -a '(__fish_print_interfaces)' complete -c dhcpcd -l option -s o -x -d 'Request DHCP option' diff --git a/share/completions/diskutil.fish b/share/completions/diskutil.fish index a75b622d1..ca9265a8e 100644 --- a/share/completions/diskutil.fish +++ b/share/completions/diskutil.fish @@ -5,11 +5,13 @@ ############# function __fish_diskutil_devices - set -l mountpoints /dev/disk*; printf '%s\n' $mountpoints + set -l mountpoints /dev/disk* + printf '%s\n' $mountpoints end function __fish_diskutil_mounted_volumes - set -l mountpoints /Volumes/*; printf '%s\n' $mountpoints + set -l mountpoints /Volumes/* + printf '%s\n' $mountpoints end function __fish_diskutil_using_not_subcommand diff --git a/share/completions/display.fish b/share/completions/display.fish index b0750bd0d..8a764dd2b 100644 --- a/share/completions/display.fish +++ b/share/completions/display.fish @@ -1,97 +1,97 @@ -complete -c display -o alpha -d 'On, activate, off, deactivate, set, opaque, copy transparent, extract, background, or shape [option]' -xa '(display -list alpha)' -complete -c display -o antialias -d 'Remove pixel-aliasing ' -complete -c display -o authenticate -d 'Decipher image with this password [password]' -complete -c display -o backdrop -d 'Display image centered on a backdrop' -complete -c display -o channel -d 'Apply option to select image channels [type]' -xa '(display -list channel)' -complete -c display -o colormap -d 'Shared or Private [type]' -x -complete -c display -o colorspace -d 'Alternate image colorspace [type]' -xa '(display -list colorspace)' -complete -c display -o comment -d 'Annotate image with comment [string]' -complete -c display -o compress -d 'Type of pixel compression when writing the image [type]' -xa '(display -list compress)' -complete -c display -o define -d 'Define one or more image format options [format:option]' -complete -c display -o delay -d 'Display the next image after pausing [value]' -complete -c display -o density -d 'Horizontal and vertical density of the image [geometry]' -complete -c display -o depth -d 'Image depth [value]' -complete -c display -o display -d 'Display image to this X server [server]' -complete -c display -o dispose -d 'Layer disposal method [method]' -xa '(display -list dispose)' -complete -c display -o dither -d 'Apply error diffusion to image [method]' -xa '(display -list dither)' -complete -c display -o endian -d 'Endianness (MSB or LSB) of the image [type]' -xa '(display -list endian)' -complete -c display -o filter -d 'Use this filter when resizing an image [type]' -xa '(display -list filter)' -complete -c display -o format -d 'Output formatted image characteristics [string]' -complete -c display -o geometry -d 'Preferred size and location of the Image window [geometry]' -complete -c display -o gravity -d 'Horizontal and vertical backdrop placement [type]' -xa '(display -list gravity)' -complete -c display -o identify -d 'Identify the format and characteristics of the image' -complete -c display -o immutable -d 'Displayed image cannot be modified' -complete -c display -o interlace -d 'Type of image interlacing scheme [type]' -xa '(display -list interlace)' -complete -c display -o interpolate -d 'Pixel color interpolation method [method]' -xa '(display -list interpolate)' -complete -c display -o label -d 'Assign a label to an image [string]' -complete -c display -o limit -d 'Pixel cache resource limit [type value]' -x -complete -c display -o loop -d 'Loop images then exit [iterations]' -complete -c display -o map -d 'Display image using this Standard Colormap [type]' -x -complete -c display -o monitor -d 'Monitor progress ' -complete -c display -o page -d 'Size and location of an image canvas [geometry]' -complete -c display -o profile -d 'Add, delete, or apply an image profile [filename]' -r -complete -c display -o quality -d 'JPEG/MIFF/PNG compression level [value]' -complete -c display -o quantize -d 'Reduce colors in this colorspace [colorspace]' -xa '(display -list colorspace)' -complete -c display -o quiet -d 'Suppress all warning messages' -complete -c display -o regard-warnings -d 'Pay attention to warning messages' -complete -c display -o remote -d 'Command execute a command in an remote display process' -complete -c display -o repage -d 'Size and location of an image canvas (operator) [geometry]' -complete -c display -o respect-parentheses -d 'Settings remain in effect until parenthesis boundary' -complete -c display -o sampling-factor -d 'Horizontal and vertical sampling factor [geometry]' -complete -c display -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' -complete -c display -o set -d 'Set an image property [property value]' -complete -c display -o size -d 'Width and height of image [geometry]' -complete -c display -o texture -d 'Name of texture to tile onto the image background [filename]' -r -complete -c display -o transparent-color -d 'Transparent color [color]' -xa '(__fish_complete_convert_options color)' -complete -c display -o treedepth -d 'Color tree depth [value]' -complete -c display -o update -d 'Seconds detect when image file is modified and redisplay' -complete -c display -o verbose -d 'Print detailed information about the image' -complete -c display -o visual -d 'Display image using this visual type [type]' -x -complete -c display -o virtual-pixel -d 'Virtual pixel access method [method]' -xa '(display -list virtual-pixel)' -complete -c display -o window -d 'Display image to background of this window [id]' -xa 'root (__fish_print_xwindows)' -complete -c display -o window-group -d 'Exit program when this window id is destroyed [id]' -complete -c display -o write -d 'Write image to a file [filename]' -r -complete -c display -o auto-orient -d 'Automagically orient image' -complete -c display -o border -d 'Surround image with a border of color [geometry]' -complete -c display -o clip -d 'Clip along the first path from the 8BIM profile' -complete -c display -o clip-path -d 'Clip along a named path from the 8BIM profile [id]' -complete -c display -o colors -d 'Preferred number of colors in the image [value]' -complete -c display -o contrast -d 'Enhance or reduce the image contrast' -complete -c display -o crop -d 'Preferred size and location of the cropped image [geometry]' -complete -c display -o decipher -d 'Convert cipher pixels to plain pixels [filename]' -r -complete -c display -o deskew -d 'Straighten an image [threshold]' -complete -c display -o despeckle -d 'Reduce the speckles within an image' -complete -c display -o edge -d 'Apply a filter to detect edges in the image [factor]' -complete -c display -o enhance -d 'Apply a digital filter to enhance a noisy image' -complete -c display -o equalize -d 'Perform histogram equalization to an image' -complete -c display -o extract -d 'Extract area from image [geometry]' -complete -c display -o flip -d 'Flip image in the vertical direction' -complete -c display -o flop -d 'Flop image in the horizontal direction' -complete -c display -o frame -d 'Surround image with an ornamental border [geometry]' -complete -c display -o fuzz -d 'Colors within this distance are considered equal [distance]' -complete -c display -o gamma -d 'Level of gamma correction [value]' -complete -c display -o monochrome -d 'Transform image to black and white' -complete -c display -o negate -d 'Replace every pixel with its complementary color' -complete -c display -o normalize -d 'Transform image to span the full range of colors' -complete -c display -o raise -d 'Lighten/darken image edges to create a 3-D effect [value]' -complete -c display -o resample -d 'Change the resolution of an image [geometry]' -complete -c display -o resize -d 'Resize the image [geometry]' -complete -c display -o roll -d 'Roll an image vertically or horizontally [geometry]' -complete -c display -o rotate -d 'Apply Paeth rotation to the image [degrees]' -complete -c display -o sample -d 'Scale image with pixel sampling [geometry]' -complete -c display -o segment -d 'Segment an image [value]' -complete -c display -o sharpen -d 'Sharpen the image [geometry]' -complete -c display -o strip -d 'Strip image of all profiles and comments' -complete -c display -o threshold -d 'Threshold the image [value]' -complete -c display -o thumbnail -d 'Create a thumbnail of the image [geometry]' -complete -c display -o trim -d 'Trim image edges' -complete -c display -o coalesce -d 'Merge a sequence of images' -complete -c display -o flatten -d 'Flatten a sequence of images' -complete -c display -o debug -d 'Display copious debugging information [events]' -xa '(display -list debug)' -complete -c display -o help -d 'Print program options' -complete -c display -o list -d 'Print a list of supported option arguments [type]' -xa '(display -list list)' -complete -c display -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' -complete -c display -o version -d 'Print version information' -complete -c display -o matte -d 'Store matte channel if the image has one' -complete -c display -o scenes -d 'Range image scene range' -complete -c display -o support -d 'Resize support: > 1.0 is blurry, < 1.0 is sharp [factor]' +complete -c display -o alpha -d 'On, activate, off, deactivate, set, opaque, copy transparent, extract, background, or shape [option]' -xa '(display -list alpha)' +complete -c display -o antialias -d 'Remove pixel-aliasing ' +complete -c display -o authenticate -d 'Decipher image with this password [password]' +complete -c display -o backdrop -d 'Display image centered on a backdrop' +complete -c display -o channel -d 'Apply option to select image channels [type]' -xa '(display -list channel)' +complete -c display -o colormap -d 'Shared or Private [type]' -x +complete -c display -o colorspace -d 'Alternate image colorspace [type]' -xa '(display -list colorspace)' +complete -c display -o comment -d 'Annotate image with comment [string]' +complete -c display -o compress -d 'Type of pixel compression when writing the image [type]' -xa '(display -list compress)' +complete -c display -o define -d 'Define one or more image format options [format:option]' +complete -c display -o delay -d 'Display the next image after pausing [value]' +complete -c display -o density -d 'Horizontal and vertical density of the image [geometry]' +complete -c display -o depth -d 'Image depth [value]' +complete -c display -o display -d 'Display image to this X server [server]' +complete -c display -o dispose -d 'Layer disposal method [method]' -xa '(display -list dispose)' +complete -c display -o dither -d 'Apply error diffusion to image [method]' -xa '(display -list dither)' +complete -c display -o endian -d 'Endianness (MSB or LSB) of the image [type]' -xa '(display -list endian)' +complete -c display -o filter -d 'Use this filter when resizing an image [type]' -xa '(display -list filter)' +complete -c display -o format -d 'Output formatted image characteristics [string]' +complete -c display -o geometry -d 'Preferred size and location of the Image window [geometry]' +complete -c display -o gravity -d 'Horizontal and vertical backdrop placement [type]' -xa '(display -list gravity)' +complete -c display -o identify -d 'Identify the format and characteristics of the image' +complete -c display -o immutable -d 'Displayed image cannot be modified' +complete -c display -o interlace -d 'Type of image interlacing scheme [type]' -xa '(display -list interlace)' +complete -c display -o interpolate -d 'Pixel color interpolation method [method]' -xa '(display -list interpolate)' +complete -c display -o label -d 'Assign a label to an image [string]' +complete -c display -o limit -d 'Pixel cache resource limit [type value]' -x +complete -c display -o loop -d 'Loop images then exit [iterations]' +complete -c display -o map -d 'Display image using this Standard Colormap [type]' -x +complete -c display -o monitor -d 'Monitor progress ' +complete -c display -o page -d 'Size and location of an image canvas [geometry]' +complete -c display -o profile -d 'Add, delete, or apply an image profile [filename]' -r +complete -c display -o quality -d 'JPEG/MIFF/PNG compression level [value]' +complete -c display -o quantize -d 'Reduce colors in this colorspace [colorspace]' -xa '(display -list colorspace)' +complete -c display -o quiet -d 'Suppress all warning messages' +complete -c display -o regard-warnings -d 'Pay attention to warning messages' +complete -c display -o remote -d 'Command execute a command in an remote display process' +complete -c display -o repage -d 'Size and location of an image canvas (operator) [geometry]' +complete -c display -o respect-parentheses -d 'Settings remain in effect until parenthesis boundary' +complete -c display -o sampling-factor -d 'Horizontal and vertical sampling factor [geometry]' +complete -c display -o seed -d 'Seed a new sequence of pseudo-random numbers [value]' +complete -c display -o set -d 'Set an image property [property value]' +complete -c display -o size -d 'Width and height of image [geometry]' +complete -c display -o texture -d 'Name of texture to tile onto the image background [filename]' -r +complete -c display -o transparent-color -d 'Transparent color [color]' -xa '(__fish_complete_convert_options color)' +complete -c display -o treedepth -d 'Color tree depth [value]' +complete -c display -o update -d 'Seconds detect when image file is modified and redisplay' +complete -c display -o verbose -d 'Print detailed information about the image' +complete -c display -o visual -d 'Display image using this visual type [type]' -x +complete -c display -o virtual-pixel -d 'Virtual pixel access method [method]' -xa '(display -list virtual-pixel)' +complete -c display -o window -d 'Display image to background of this window [id]' -xa 'root (__fish_print_xwindows)' +complete -c display -o window-group -d 'Exit program when this window id is destroyed [id]' +complete -c display -o write -d 'Write image to a file [filename]' -r +complete -c display -o auto-orient -d 'Automagically orient image' +complete -c display -o border -d 'Surround image with a border of color [geometry]' +complete -c display -o clip -d 'Clip along the first path from the 8BIM profile' +complete -c display -o clip-path -d 'Clip along a named path from the 8BIM profile [id]' +complete -c display -o colors -d 'Preferred number of colors in the image [value]' +complete -c display -o contrast -d 'Enhance or reduce the image contrast' +complete -c display -o crop -d 'Preferred size and location of the cropped image [geometry]' +complete -c display -o decipher -d 'Convert cipher pixels to plain pixels [filename]' -r +complete -c display -o deskew -d 'Straighten an image [threshold]' +complete -c display -o despeckle -d 'Reduce the speckles within an image' +complete -c display -o edge -d 'Apply a filter to detect edges in the image [factor]' +complete -c display -o enhance -d 'Apply a digital filter to enhance a noisy image' +complete -c display -o equalize -d 'Perform histogram equalization to an image' +complete -c display -o extract -d 'Extract area from image [geometry]' +complete -c display -o flip -d 'Flip image in the vertical direction' +complete -c display -o flop -d 'Flop image in the horizontal direction' +complete -c display -o frame -d 'Surround image with an ornamental border [geometry]' +complete -c display -o fuzz -d 'Colors within this distance are considered equal [distance]' +complete -c display -o gamma -d 'Level of gamma correction [value]' +complete -c display -o monochrome -d 'Transform image to black and white' +complete -c display -o negate -d 'Replace every pixel with its complementary color' +complete -c display -o normalize -d 'Transform image to span the full range of colors' +complete -c display -o raise -d 'Lighten/darken image edges to create a 3-D effect [value]' +complete -c display -o resample -d 'Change the resolution of an image [geometry]' +complete -c display -o resize -d 'Resize the image [geometry]' +complete -c display -o roll -d 'Roll an image vertically or horizontally [geometry]' +complete -c display -o rotate -d 'Apply Paeth rotation to the image [degrees]' +complete -c display -o sample -d 'Scale image with pixel sampling [geometry]' +complete -c display -o segment -d 'Segment an image [value]' +complete -c display -o sharpen -d 'Sharpen the image [geometry]' +complete -c display -o strip -d 'Strip image of all profiles and comments' +complete -c display -o threshold -d 'Threshold the image [value]' +complete -c display -o thumbnail -d 'Create a thumbnail of the image [geometry]' +complete -c display -o trim -d 'Trim image edges' +complete -c display -o coalesce -d 'Merge a sequence of images' +complete -c display -o flatten -d 'Flatten a sequence of images' +complete -c display -o debug -d 'Display copious debugging information [events]' -xa '(display -list debug)' +complete -c display -o help -d 'Print program options' +complete -c display -o list -d 'Print a list of supported option arguments [type]' -xa '(display -list list)' +complete -c display -o log -d 'Format of debugging information [format]' -xa '(__fish_complete_convert_options format)' +complete -c display -o version -d 'Print version information' +complete -c display -o matte -d 'Store matte channel if the image has one' +complete -c display -o scenes -d 'Range image scene range' +complete -c display -o support -d 'Resize support: > 1.0 is blurry, < 1.0 is sharp [factor]' diff --git a/share/completions/dlocate.fish b/share/completions/dlocate.fish index 7289bf971..035f67939 100644 --- a/share/completions/dlocate.fish +++ b/share/completions/dlocate.fish @@ -1,6 +1,6 @@ -complete -c dlocate -s S -x -d 'List records that match filenames' -complete -c dlocate -s L -d 'List all files in the package' -xa '(__fish_print_packages)' +complete -c dlocate -s S -x -d 'List records that match filenames' +complete -c dlocate -s L -d 'List all files in the package' -xa '(__fish_print_packages)' complete -c dlocate -o ls -d 'ls -ldF all files in the package' -xa '(__fish_print_packages)' complete -c dlocate -o du -d 'du -sck all files in the package' -xa '(__fish_print_packages)' diff --git a/share/completions/dmesg.fish b/share/completions/dmesg.fish index 0b17de138..9e111507d 100644 --- a/share/completions/dmesg.fish +++ b/share/completions/dmesg.fish @@ -1,20 +1,51 @@ -set -l levels '( __fish_complete_list , "echo emerg\nalert\ncrit\nerr\nwarn\nnotice\ninfo\ndebug" )' -complete -c dmesg -s C -l clear -d 'Clear the kernel ring buffer' -complete -c dmesg -s c -l read-clear -d 'Read and clear all messages' -complete -c dmesg -s D -l console-off -d 'Disable printing messages to console' -complete -c dmesg -s d -l show-delta -d 'Show time delta between printed messages' -complete -c dmesg -s E -l console-on -d 'Enable printing messages to console' -complete -c dmesg -s F -l file -d 'Use the file instead of the kernel log buffer' -complete -c dmesg -s f -l facility -d 'Restrict output to defined facilities' -xa '( __fish_complete_list , "echo kern\nuser\nmail\ndaemon\nauth\nsyslog\nlpr\nnews" )' -complete -c dmesg -s h -l help -d 'Display this help and exit' -complete -c dmesg -s k -l kernel -d 'Display kernel messages' -complete -c dmesg -s l -l level -d 'Restrict output to defined levels' -xa $levels -complete -c dmesg -s n -l console-level -d 'Set level of messages printed to console' -xa $levels -complete -c dmesg -s r -l raw -d 'Print the raw message buffer' -complete -c dmesg -s s -l buffer-size -d 'Buffer size to query the kernel ring buffer' -x -complete -c dmesg -s T -l ctime -d 'Show human readable timestamp ' -complete -c dmesg -s t -l notime -d 'Don\'t print messages timestamp' -complete -c dmesg -s u -l userspace -d 'Display userspace messages' -complete -c dmesg -s V -l version -d 'Output version information and exit' -complete -c dmesg -s x -l decode -d 'Decode facility and level to readable string' +complete -c dmesg -f -d 'Display system message buffer' +switch (uname -s) + # + # Solaris + # + case SunOS + exit 1 # no options, we are done + # + # Loonix dmesg + # + case Linux + set -l levels '( __fish_complete_list , "echo emerg\nalert\ncrit\nerr\nwarn\nnotice\ninfo\ndebug" )' + complete -c dmesg -s C -l clear -f -d'Clear kernel ring buffer' + complete -c dmesg -s c -l read-clear -f -d'Read & clear all msgs' + complete -c dmesg -s D -l console-off -f -d'Disable writing to console' + complete -c dmesg -s d -l show-delta -f -d'Show timestamp deltas' + complete -c dmesg -s E -l console-on -f -d'Enable writing to console' + complete -c dmesg -s F -l file -r -d'Use file instead of log buffer' + complete -c dmesg -s f -l facility -x -d'Only print for given facilities' -a '( __fish_complete_list , "echo kern\nuser\nmail\ndaemon\nauth\nsyslog\nlpr\nnews" )' + complete -c dmesg -s h -l help -f -d'Display help' + complete -c dmesg -s k -l kernel -f -d'Print kernel messages' + complete -c dmesg -s l -l level -x -d'Restrict output to given levels' -a $levels + complete -c dmesg -s n -l console-level -x -d'Adjust threshold to print to console' -a $levels + complete -c dmesg -s r -l raw -f -d'Print raw message buffer' + complete -c dmesg -s s -l buffer-size -x -d'Buffer size to query kernel' + complete -c dmesg -s T -l ctime -f -d'Human-readable timestamps' + complete -c dmesg -s t -l notime -f -d'Don\'t print timestamps' + complete -c dmesg -s u -l userspace -f -d'Print userspace messages' + complete -c dmesg -s V -l version -f -d'Show dmesg version' + complete -c dmesg -s x -l decode -f -d'Decode facility & level numbers' + exit 0 # done + # + # unique options specific BSDs have + # + case NetBSD + complete -c dmesg -s d -f -d'show timestamp deltas' + complete -c dmesg -s T -f -d'human-readable timestamps' + complete -c dmesg -s t -f -d'don\'t print timestamps' + case OpenBSD + complete -c dmesg -s S -f -d'display console message buffer-size' + case FreeBSD DragonFly + complete -c dmesg -s a -f -d'print all data in the message buffer' + complete -c dmesg -s c -f -d'clear kernel buffer after printing' +end + +# +# common BSD dmesg options (macOS only does these two) +# +complete -c dmesg -s M -r -d'get namelist values from given core' +complete -c dmesg -s N -r -d'get namelist from given kernel' diff --git a/share/completions/dnf.fish b/share/completions/dnf.fish index 63a427093..99c43b7e1 100644 --- a/share/completions/dnf.fish +++ b/share/completions/dnf.fish @@ -2,4 +2,307 @@ # Completions for the dnf command # -complete -c dnf -w yum +function __dnf_list_installed_packages + dnf repoquery --cacheonly "$cur*" --qf "%{NAME}" --installed +end + +function __dnf_list_available_packages + if type -q sqlite3 + sqlite3 /var/cache/dnf/packages.db "SELECT pkg FROM available WHERE pkg LIKE \"$cur%\"" 2>/dev/null + end +end + +function __dnf_list_transactions + if type -q sqlite3 + sqlite3 /var/lib/dnf/history.sqlite "SELECT id, cmdline FROM trans" 2>/dev/null | string replace "|" \t + end +end + +# Alias +complete -c dnf -n "__fish_use_subcommand" -xa alias -d "Manage aliases" +complete -c dnf -n "__fish_seen_subcommand_from alias" -xa add -d "Add a new alias" +complete -c dnf -n "__fish_seen_subcommand_from alias" -xa list -d "Lists all defined aliases" +complete -c dnf -n "__fish_seen_subcommand_from alias" -xa delete -d "Delete an alias" + +# Autoremove +complete -c dnf -n "__fish_use_subcommand" -xa autoremove -d "Removes unneeded packages" +complete -c dnf -n "__fish_seen_subcommand_from autoremove" -xa "(__dnf_list_installed_packages)" + +# Check +complete -c dnf -n "__fish_use_subcommand" -xa check -d "Check for problems in packagedb" +complete -c dnf -n "__fish_seen_subcommand_from check" -l dependencies -d "Checks dependencies" +complete -c dnf -n "__fish_seen_subcommand_from check" -l duplicates -d "Checks duplicates" +complete -c dnf -n "__fish_seen_subcommand_from check" -l obsoleted -d "Checks obsoleted" +complete -c dnf -n "__fish_seen_subcommand_from check" -l provides -d "Checks provides" + +# Check-Update +complete -c dnf -n "__fish_use_subcommand" -xa check-update -d "Checks for updates" +complete -c dnf -n "__fish_seen_subcommand_from check-update" -l changelogs + +# Clean +complete -c dnf -n "__fish_use_subcommand" -xa clean -d "Clean up cache directory" +complete -c dnf -n "__fish_seen_subcommand_from clean" -xa dbcache -d "Removes the database cache" +complete -c dnf -n "__fish_seen_subcommand_from clean" -xa expire-cache -d "Marks the repository metadata expired" +complete -c dnf -n "__fish_seen_subcommand_from clean" -xa metadata -d "Removes repository metadata" +complete -c dnf -n "__fish_seen_subcommand_from clean" -xa packages -d "Removes any cached packages" +complete -c dnf -n "__fish_seen_subcommand_from clean" -xa all -d "Removes all cache" + +# Distro-sync +complete -c dnf -n "__fish_use_subcommand" -xa distro-sync -d "Synchronizes packages to match the latest" + +# Downgrade +complete -c dnf -n "__fish_use_subcommand" -xa downgrade -d "Downgrades the specified package" +complete -c dnf -n "__fish_seen_subcommand_from downgrade" -xa "(__dnf_list_installed_packages)" + +# Group +complete -c dnf -n "__fish_use_subcommand" -xa group -d "Manage groups" + +complete -c dnf -n "__fish_seen_subcommand_from group; and not __fish_seen_subcommand_from mark" -xa summary -d "Display overview of installed and available groups" +complete -c dnf -n "__fish_seen_subcommand_from group; and not __fish_seen_subcommand_from mark" -xa info -d "Display package list of a group" +# Group install +complete -c dnf -n "__fish_seen_subcommand_from group; and not __fish_seen_subcommand_from mark" -xa install -d "Install group" +complete -c dnf -n "__fish_seen_subcommand_from group; and __fish_seen_subcommand_from install" -l with-optional -d "Include optional packages" +# Group list +complete -c dnf -n "__fish_seen_subcommand_from group; and not __fish_seen_subcommand_from mark" -xa list -d "List groups" +complete -c dnf -n "__fish_seen_subcommand_from group; and __fish_seen_subcommand_from list" -l installed -d "List installed groups" +complete -c dnf -n "__fish_seen_subcommand_from group; and __fish_seen_subcommand_from list" -l available -d "List available groups" +complete -c dnf -n "__fish_seen_subcommand_from group; and __fish_seen_subcommand_from list" -l hidden -d "List hidden groups" +# Group remove +complete -c dnf -n "__fish_seen_subcommand_from group; and not __fish_seen_subcommand_from mark" -xa remove -d "Remove group" +complete -c dnf -n "__fish_seen_subcommand_from group; and __fish_seen_subcommand_from remove" -l with-optional -d "Include optional packages" + +complete -c dnf -n "__fish_seen_subcommand_from group; and not __fish_seen_subcommand_from mark" -xa upgrade -d "Upgrade group" +# Group mark +complete -c dnf -n "__fish_seen_subcommand_from group; and not __fish_seen_subcommand_from mark" -xa mark -d "Marks group without manipulating packages" +complete -c dnf -n "__fish_seen_subcommand_from group; and __fish_seen_subcommand_from mark" -xa install -d "Mark group installed without installing packages" +complete -c dnf -n "__fish_seen_subcommand_from group; and __fish_seen_subcommand_from mark" -xa remove -d "Mark group removed without removing packages" + +# Help +complete -c dnf -n "__fish_use_subcommand" -xa help -d "Display help and exit" + +# History +complete -c dnf -n "__fish_use_subcommand" -xa history -d "View and manage past transactions" +complete -c dnf -n "__fish_seen_subcommand_from history" -xa list -d "Lists all transactions" +complete -c dnf -n "__fish_seen_subcommand_from history" -xa info -d "Describe the given transactions" +complete -c dnf -n "__fish_seen_subcommand_from history" -xa redo -d "Redoes the specified transaction" +complete -c dnf -n "__fish_seen_subcommand_from history" -xa rollback -d "Undo all transactions performed after the specified transaction" +complete -c dnf -n "__fish_seen_subcommand_from history" -xa undo -d "Undoes the specified transaction" +complete -c dnf -n "__fish_seen_subcommand_from history" -xa userinstalled -d "Lists all user installed packages" + +for i in info redo rollback undo + complete -c dnf -n "__fish_seen_subcommand_from history; and __fish_seen_subcommand_from $i" -xa "(__dnf_list_transactions)" +end + +# Info +complete -c dnf -n "__fish_use_subcommand" -xa info -d "Describes the given package" +complete -c dnf -n "__fish_seen_subcommand_from info; and not __fish_seen_subcommand_from history" -xa "(__dnf_list_available_packages)" + +# Install +complete -c dnf -n "__fish_use_subcommand" -xa install -d "Install package" +complete -c dnf -n "__fish_seen_subcommand_from install" -xa "(__dnf_list_available_packages)" + +# List +complete -c dnf -n "__fish_use_subcommand" -xa list -d "Lists all packages" +complete -c dnf -n "__fish_seen_subcommand_from list" -l all -d "Lists all packages" +complete -c dnf -n "__fish_seen_subcommand_from list" -l installed -d "Lists installed packages" +complete -c dnf -n "__fish_seen_subcommand_from list" -l available -d "Lists available packages" +complete -c dnf -n "__fish_seen_subcommand_from list" -l extras -d "Lists installed packages that are not in any known repository" +complete -c dnf -n "__fish_seen_subcommand_from list" -l obsoletes -d "List installed obsoleted packages" +complete -c dnf -n "__fish_seen_subcommand_from list" -l recent -d "List recently added packages" +complete -c dnf -n "__fish_seen_subcommand_from list" -l upgrades -d "List available upgrades" +complete -c dnf -n "__fish_seen_subcommand_from list" -l autoremove -d "List packages which will be removed by autoremove" + +# Makecache +complete -c dnf -n "__fish_use_subcommand" -xa makecache -d "Downloads and caches metadata for all known repos" +complete -c dnf -n "__fish_seen_subcommand_from makecache" -l timer -d "Instructs DNF to be more resource-aware" + +# Mark +complete -c dnf -n "__fish_use_subcommand" -xa mark -d "Mark packages" +complete -c dnf -n "__fish_seen_subcommand_from mark" -xa install -d "Mark package installed" +complete -c dnf -n "__fish_seen_subcommand_from mark" -xa remove -d "Unmarks installed package" +complete -c dnf -n "__fish_seen_subcommand_from mark" -xa group -d "Mark installed by group" + +# Module +complete -c dnf -n "__fish_use_subcommand" -xa module -d "Manage modules" +complete -c dnf -n "__fish_seen_subcommand_from module" -xa install -d "Install module" +complete -c dnf -n "__fish_seen_subcommand_from module" -xa update -d "Update modules" +complete -c dnf -n "__fish_seen_subcommand_from module" -xa remove -d "Remove module" +complete -c dnf -n "__fish_seen_subcommand_from module" -xa enable -d "Enable a module" +complete -c dnf -n "__fish_seen_subcommand_from module" -xa disable -d "Disable a module" +complete -c dnf -n "__fish_seen_subcommand_from module" -xa reset -d "Reset module state" +complete -c dnf -n "__fish_seen_subcommand_from module" -xa list -d "List modules" +complete -c dnf -n "__fish_seen_subcommand_from module; and __fish_seen_subcommand_from list" -l all -d "Lists all module " +complete -c dnf -n "__fish_seen_subcommand_from module; and __fish_seen_subcommand_from list" -l enabled -d "Lists enabled module" +complete -c dnf -n "__fish_seen_subcommand_from module; and __fish_seen_subcommand_from list" -l disabled -d "Lists disabled module" +complete -c dnf -n "__fish_seen_subcommand_from module; and __fish_seen_subcommand_from list" -l installed -d "List installed modules" +complete -c dnf -n "__fish_seen_subcommand_from module" -xa info -d "Print module information" +complete -c dnf -n "__fish_seen_subcommand_from module; and __fish_seen_subcommand_from info" -l profile -d "Print module profiles information" + +# Provides +complete -c dnf -n "__fish_use_subcommand" -xa provides -d "Finds packages providing the given command" + +# Reinstall +complete -c dnf -n "__fish_use_subcommand" -xa reinstall -d "Reinstalls a package" +complete -c dnf -n "__fish_seen_subcommand_from reinstall" -xa "(__dnf_list_installed_packages)" + +# Remove +complete -c dnf -n "__fish_use_subcommand" -xa remove -d "Remove packages" +complete -c dnf -n "__fish_seen_subcommand_from remove" -xa "(__dnf_list_installed_packages)" -d "Removes the specified packages" +complete -c dnf -n "__fish_seen_subcommand_from remove" -l duplicates -d "Removes older version of duplicated packages" +complete -c dnf -n "__fish_seen_subcommand_from remove" -l oldinstallonly -d "Removes old installonly packages" + +# Repolist and Repoinfo +complete -c dnf -n "__fish_use_subcommand" -xa repoinfo -d "Verbose repolist" +complete -c dnf -n "__fish_use_subcommand" -xa repolist -d "Lists all enabled repositories" + +for i in repolist repoinfo + complete -c dnf -n "__fish_seen_subcommand_from $i" -l enabled -d "Lists all enabled repositories" + complete -c dnf -n "__fish_seen_subcommand_from $i" -l disabled -d "Lists all disabled repositories" + complete -c dnf -n "__fish_seen_subcommand_from $i" -l all -d "Lists all repositories" +end + +# Repoquery +complete -c dnf -n "__fish_use_subcommand" -xa repoquery -d "Queries DNF repositories" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l querytags -d "Provides the list of tags" + +# repoquery select options +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -s a -l all +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l enabled +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l arch -l archlist +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l duplicates +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l unneeded +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l available +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l extras +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -s f -l file +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l installed +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l installonly +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l latest-limit +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l recent +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l repo +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l unsatisfied +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l upgrades +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l userinstalled +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l whatdepends +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l whatconflicts +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l whatenhances +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l whatobsoletes +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l whatprovides +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l whatrecommends +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l whatrequires +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l whatsuggests +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l whatsupplements +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l alldeps +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l exactdeps +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l srpm + +# Query options +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -s i -l info -d "Show detailed information about the package" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -s l -l list -d "Show the list of files in the package" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -s s -l source -d "Show the package source RPM name" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l changelogs -d "Print the package changelogs" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l conflicts -d "Display capabilities that the package conflicts with" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l depends -d "Display capabilities that the package depends on" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l enhances -d "Display capabilities enhanced by the package" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l location -d "Show a location where the package could be downloaded from" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l obsoletes -d "Display capabilities that the package obsoletes" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l provides -d "Display capabilities provided by the package" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l recommends -d "Display capabilities recommended by the package" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l requires -d "Display capabilities that the package depends on" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l requires-pre -d "Display capabilities that the package depends on" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l suggests -d "Display capabilities suggested by the package" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l supplements -d "Display capabilities supplemented by the package" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l tree -d "Display a recursive tree of packages" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l deplist -d "Produce a list of all dependencies" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l nvr -d "Format like name-version-release" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l nevra -d "Format like name-epoch:version-release.architecture" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l envra -d "Format like epoch:name-version-release.architecture" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l qf -l queryformat -d "Custom display format" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l recursive -d "Query packages recursively" +complete -c dnf -n "__fish_seen_subcommand_from repoquery" -l resolve -d "Resolve capabilities to originating packages" + +# Repository-Packages +complete -c dnf -n "__fish_use_subcommand" -xa repository-packages -d "Run commands on all packages in the repository" + +# Search +complete -c dnf -n "__fish_use_subcommand" -xa search -d "Search package metadata for keywords" +complete -c dnf -n "__fish_seen_subcommand_from search" -l all -d "Lists packages that match at least one of the keys" + +# Shell +complete -c dnf -n "__fish_use_subcommand" -xa shell -d "Opens an interactive shell" + +# Swap +complete -c dnf -n "__fish_use_subcommand" -xa swap -d "Remove spec and install spec in one transaction" + +# Updateinfo +complete -c dnf -n "__fish_use_subcommand" -xa updateinfo -d "Display information about update advisories" +complete -c dnf -n "__fish_seen_subcommand_from updateinfo" -l summary -d "Displays the summary" +complete -c dnf -n "__fish_seen_subcommand_from updateinfo" -l list -d "List of advisories" +complete -c dnf -n "__fish_seen_subcommand_from updateinfo" -l info -d "Detailed information" + +# updateinfo options +complete -c dnf -n "__fish_seen_subcommand_from updateinfo" -l all +complete -c dnf -n "__fish_seen_subcommand_from updateinfo" -l available +complete -c dnf -n "__fish_seen_subcommand_from updateinfo" -l installed +complete -c dnf -n "__fish_seen_subcommand_from updateinfo" -l updates + +# Upgrade +complete -c dnf -n "__fish_use_subcommand" -xa upgrade -d "Updates packages" +complete -c dnf -n "__fish_seen_subcommand_from upgrade" -xa "(__dnf_list_installed_packages)" + +# Upgrade-Minimal +complete -c dnf -n "__fish_use_subcommand" -xa upgrade-minimal -d "Updates packages" +complete -c dnf -n "__fish_seen_subcommand_from upgrade-minimal" -xa "(__dnf_list_installed_packages)" + +# Options: +# Using __fish_no_arguments here so that users are not completely overloaded with +# available options when using subcommands (e.g. repoquery) (40 vs 100ish) +complete -c dnf -n "__fish_no_arguments" -s 4 -d "Use IPv4 only" +complete -c dnf -n "__fish_no_arguments" -s 6 -d "Use IPv6 only" +complete -c dnf -n "__fish_no_arguments" -l advisory -l advisories -d "Include packages corresponding to the advisory ID" +complete -c dnf -n "__fish_no_arguments" -l allowerasing -d "Allow erasing of installed packages to resolve dependencies" +complete -c dnf -n "__fish_no_arguments" -l assumeno -d "Answer no for all questions" +complete -c dnf -n "__fish_no_arguments" -s b -l best -d "Try the best available package versions in transactions" +complete -c dnf -n "__fish_no_arguments" -l bugfix -d "Include packages that fix a bugfix issue" +complete -c dnf -n "__fish_no_arguments" -l bz -l bzs -d "Include packages that fix a Bugzilla ID" +complete -c dnf -n "__fish_no_arguments" -s C -l cacheonly -d "Run entirely from system cache" +complete -c dnf -n "__fish_no_arguments" -l color -xa "always never auto" -d "Control whether color is used" +complete -c dnf -n "__fish_no_arguments" -s c -l config -d "Configuration file location" +complete -c dnf -n "__fish_no_arguments" -l cve -l cves -d "Include packages that fix a CVE" +complete -c dnf -n "__fish_no_arguments" -s d -l debuglevel -d "Debugging output level" +complete -c dnf -n "__fish_no_arguments" -l debugsolver -d "Dump dependency solver debugging info" +complete -c dnf -n "__fish_no_arguments" -l disableexcludes -l disableexcludepkgs -d "Disable excludes" +complete -c dnf -n "__fish_no_arguments" -l disable -l set-disabled -d "Disable specified repositories" +complete -c dnf -n "__fish_no_arguments" -l disableplugin -d "Disable the listed plugins specified" +complete -c dnf -n "__fish_no_arguments" -l disablerepo -d "Disable specified repositories" +complete -c dnf -n "__fish_no_arguments" -l downloaddir -l destdir -d "Change downloaded packages to provided directory" +complete -c dnf -n "__fish_no_arguments" -l downloadonly -d "Download packages without performing any transaction" +complete -c dnf -n "__fish_no_arguments" -l enable -l set-enabled -d "Enable specified repositories" +complete -c dnf -n "__fish_no_arguments" -l enableplugin -d "Enable the listed plugins" +complete -c dnf -n "__fish_no_arguments" -l enablerepo -d "Enable additional repositories" +complete -c dnf -n "__fish_no_arguments" -l enhancement -d "Include enhancement relevant packages" +complete -c dnf -n "__fish_no_arguments" -s x -l exclude -d "Exclude packages specified" +complete -c dnf -n "__fish_no_arguments" -l forcearch -d "Force the use of the specified architecture" +complete -c dnf -n "__fish_no_arguments" -s h -l help -l help-i -d "Show the help" +complete -c dnf -n "__fish_no_arguments" -l installroot -d "Specifies an alternative installroot" +complete -c dnf -n "__fish_no_arguments" -l newpackage -d "Include newpackage relevant packages" +complete -c dnf -n "__fish_no_arguments" -l noautoremove -d "Disable autoremove" +complete -c dnf -n "__fish_no_arguments" -l nobest -d "Set best option to False" +complete -c dnf -n "__fish_no_arguments" -l nodocs -d "Do not install documentation" +complete -c dnf -n "__fish_no_arguments" -l nogpgcheck -d "Skip checking GPG signatures on packages" +complete -c dnf -n "__fish_no_arguments" -l noplugins -d "Disable all plugins" +complete -c dnf -n "__fish_no_arguments" -l obsoletes -d "Enables obsoletes processing logic" +complete -c dnf -n "__fish_no_arguments" -s q -l quiet -d "Quiet mode" +complete -c dnf -n "__fish_no_arguments" -s R -l randomwait -d "Maximum command wait time" +complete -c dnf -n "__fish_no_arguments" -l refresh -d "Set metadata as expired before running the command" +complete -c dnf -n "__fish_no_arguments" -l releasever -d "Configure the distribution release" +complete -c dnf -n "__fish_no_arguments" -l repofrompath -d "Specify repository to add to the repositories for this query" +complete -c dnf -n "__fish_no_arguments" -l repo -l repoid -d "Enable just specific repositories by an id or a glob" +complete -c dnf -n "__fish_no_arguments" -l rpmverbosity -d "RPM debug scriptlet output level" +complete -c dnf -n "__fish_no_arguments" -l sec-severity -l secseverity -d "Includes packages that provide a fix for an issue of the specified severity" +complete -c dnf -n "__fish_no_arguments" -l security -d "Includes packages that provide a fix for a security issue" +complete -c dnf -n "__fish_no_arguments" -l setopt -d "Override a configuration option" +complete -c dnf -n "__fish_no_arguments" -l skip-broken -d "Skips broken packages" +complete -c dnf -n "__fish_no_arguments" -l showduplicates -d "Shows duplicate packages" +complete -c dnf -n "__fish_no_arguments" -s v -l verbose -d "Verbose mode" +complete -c dnf -n "__fish_no_arguments" -l version -d "Shows DNF version and exit" +complete -c dnf -n "__fish_no_arguments" -s y -l assumeyes -d "Answer yes for all questions" \ No newline at end of file diff --git a/share/completions/doas.fish b/share/completions/doas.fish index 6789e6021..10527c0fe 100644 --- a/share/completions/doas.fish +++ b/share/completions/doas.fish @@ -14,7 +14,7 @@ function __fish_doas_print_remaining_args # we want. if test -n "$argv" and not string match -qr '^-' $argv[1] - echo $argv + string join0 -- $argv return 0 else return 1 @@ -22,8 +22,9 @@ function __fish_doas_print_remaining_args end function __fish_complete_doas_subcommand - set -l args (__fish_doas_print_remaining_args) - complete -C"$args" + set -l args (__fish_doas_print_remaining_args | string split0) + set -lx -a PATH /usr/local/sbin /sbin /usr/sbin + __fish_complete_subcommand --commandline $args end complete -c doas -n "not __fish_doas_print_remaining_args" -s a -d "Choose auth method on systems using /etc/login.conf" diff --git a/share/completions/dpkg-reconfigure.fish b/share/completions/dpkg-reconfigure.fish index 8b1459bf5..2ddbdb6ab 100644 --- a/share/completions/dpkg-reconfigure.fish +++ b/share/completions/dpkg-reconfigure.fish @@ -3,7 +3,7 @@ complete -f -c dpkg-reconfigure -a '(__fish_print_packages)' -d 'Package' # Support flags -complete -x -f -c dpkg-reconfigure -s h -l help -d 'Display help' +complete -x -f -c dpkg-reconfigure -s h -l help -d 'Display help' # General options complete -f -c dpkg-reconfigure -s f -l frontend -r -a "dialog readline noninteractive gnome kde editor web" -d 'Set configuration frontend' diff --git a/share/completions/dpkg.fish b/share/completions/dpkg.fish index d60b6dbad..857085d21 100644 --- a/share/completions/dpkg.fish +++ b/share/completions/dpkg.fish @@ -1,19 +1,19 @@ -complete -c dpkg -s i -l install -d 'Install .deb package' -xa '(__fish_complete_suffix .deb)' -complete -c dpkg -l unpack -d 'Unpack .deb package' -xa '(__fish_complete_suffix .deb)' -complete -c dpkg -l configure -d 'Configure package' -xa '(dpkg-query -W -f \'${Package}\n\')' -complete -c dpkg -s r -l remove -d 'Remove package' -xa '(dpkg-query -W -f \'${Package}\n\')' -complete -c dpkg -s P -l purge -d 'Purge package' -xa '(dpkg-query -W -f \'${Package}\n\')' -complete -c dpkg -s V -l verify -d 'Verify contents of package' -xa '(dpkg-query -W -f \'${Package}\n\')' -complete -c dpkg -l force-all -d 'Continue on all problems' +complete -c dpkg -s i -l install -d 'Install .deb package' -xa '(__fish_complete_suffix .deb)' +complete -c dpkg -l unpack -d 'Unpack .deb package' -xa '(__fish_complete_suffix .deb)' +complete -c dpkg -l configure -d 'Configure package' -xa '(dpkg-query -W -f \'${Package}\n\')' +complete -c dpkg -s r -l remove -d 'Remove package' -xa '(dpkg-query -W -f \'${Package}\n\')' +complete -c dpkg -s P -l purge -d 'Purge package' -xa '(dpkg-query -W -f \'${Package}\n\')' +complete -c dpkg -s V -l verify -d 'Verify contents of package' -xa '(dpkg-query -W -f \'${Package}\n\')' +complete -c dpkg -l force-all -d 'Continue on all problems' # dpkg-deb options -complete -c dpkg -s b -l build -d 'Build package from directory' -xa '(__fish_complete_directories (commandline -ct))' -complete -c dpkg -s c -l contents -d 'List contents of .deb' -xa '(__fish_complete_suffix .deb)' -complete -c dpkg -s I -l info -d 'Show .deb information' -xa '(__fish_complete_suffix .deb)' +complete -c dpkg -s b -l build -d 'Build package from directory' -xa '(__fish_complete_directories (commandline -ct))' +complete -c dpkg -s c -l contents -d 'List contents of .deb' -xa '(__fish_complete_suffix .deb)' +complete -c dpkg -s I -l info -d 'Show .deb information' -xa '(__fish_complete_suffix .deb)' # dpkg-query options -complete -c dpkg -s l -l list -d 'List packages matching pattern' -xa '(dpkg-query -W -f \'${Package}\n\')' -complete -c dpkg -s L -l listfiles -d 'List contents of packages' -xa '(dpkg-query -W -f \'${Package}\n\')' -complete -c dpkg -s s -l status -d 'Print status of package' -xa '(dpkg-query -W -f \'${Package}\n\')' -complete -c dpkg -s S -l search -d 'Search for packages containing file' +complete -c dpkg -s l -l list -d 'List packages matching pattern' -xa '(dpkg-query -W -f \'${Package}\n\')' +complete -c dpkg -s L -l listfiles -d 'List contents of packages' -xa '(dpkg-query -W -f \'${Package}\n\')' +complete -c dpkg -s s -l status -d 'Print status of package' -xa '(dpkg-query -W -f \'${Package}\n\')' +complete -c dpkg -s S -l search -d 'Search for packages containing file' diff --git a/share/completions/dropbox.fish b/share/completions/dropbox.fish deleted file mode 100644 index ecb0bcc50..000000000 --- a/share/completions/dropbox.fish +++ /dev/null @@ -1,39 +0,0 @@ - -function __dropbox_needs_argument - set -l cmd (commandline -opc) - if set -q cmd[2] - switch "$cmd[2]" - case '-*' - case '*' - return 1 - end - end -end - -complete -c dropbox -x -complete -c dropbox -n __dropbox_needs_argument -a status -d "Get current status of the dropboxd" -complete -c dropbox -n __dropbox_needs_argument -a help -d "Provide help" -complete -c dropbox -n __dropbox_needs_argument -a running -d "Return 1 if dropbox is running" -complete -c dropbox -n __dropbox_needs_argument -a autostart -d "Ubuntu: automatically start dropbox at login" -complete -c dropbox -n "__dropbox_needs_argument; and dropbox running" -a start -d "Start dropboxd" -complete -c dropbox -n "__dropbox_needs_argument; and not dropbox running" -a puburl -d "Get public url of a file in your dropbox" -complete -c dropbox -n "__dropbox_needs_argument; and not dropbox running" -a stop -d "Stop dropboxd" -complete -c dropbox -n "__dropbox_needs_argument; and not dropbox running" -a 'stat filestatus' -d "Get current sync status of one or more files" -complete -c dropbox -n "__dropbox_needs_argument; and not dropbox running" -a ls -d "List directory contents with current sync status" -complete -c dropbox -n "__dropbox_needs_argument; and not dropbox running" -a exclude -d "Ignores/excludes a directory from syncing" -complete -c dropbox -n "__dropbox_needs_argument; and not dropbox running" -a lansync -d "Enables or disables LAN sync" - -set -l subcommands help puburl stop running start file status ls autostart exclude lansync stat -complete -c dropbox -n "__fish_seen_subcommand_from help" -xa "$subcommands" -complete -c dropbox -n "__fish_seen_subcommand_from start" -s i -l install -d "Auto install dropboxd if not available on the system" -complete -c dropbox -n "__fish_seen_subcommand_from filestatus stat" -s l -l list -d "Prints out information in a format similar to ls. works best when your console supports color :)" -complete -c dropbox -n "__fish_seen_subcommand_from filestatus stat ls" -s a -l all -d "Do not ignore entries starting with ." -complete -c dropbox -n "__fish_seen_subcommand_from autostart lansync" -xa '(echo -e "y\tEnable\nn\tDisable")' - -set -l needs_excl_arg "__fish_seen_subcommand_from exclude; and not __fish_seen_subcommand_from list add remove" -complete -c dropbox -n $needs_excl_arg -xa list -d "Prints a list of directories currently excluded from syncing" -complete -c dropbox -n $needs_excl_arg -xa add -d "Adds one or more directories to the exclusion list" -complete -c dropbox -n $needs_excl_arg -xa remove -d "Removes one or more directories from the exclusion list" -complete -c dropbox -n "__fish_seen_subcommand_from exclude; and __fish_seen_subcommand_from remove" -xa '(dropbox exclude list | sed -e "1d")' -complete -c dropbox -n "__fish_seen_subcommand_from exclude; and __fish_seen_subcommand_from add" -xa '(set -l CDPATH; __fish_complete_cd)' - diff --git a/share/completions/dumpcap.fish b/share/completions/dumpcap.fish new file mode 100644 index 000000000..c6ad50f8f --- /dev/null +++ b/share/completions/dumpcap.fish @@ -0,0 +1,11 @@ +# dumpcap - Dump network traffic + +__fish_complete_wireshark dumpcap + +complete -c dumpcap -s C -d 'Limit the amount of memory in bytes for storing captured packets in memory' -x +complete -c dumpcap -s d -d 'Dump the code generated for the capture filter in a human-readable form, and exit' +complete -c dumpcap -s M -d 'When used with -D, -L, -S or --list-time-stamp-types print machine-readable output' +complete -c dumpcap -s N -d 'Limit the number of packets used for storing captured packets in memory' -x +complete -c dumpcap -s P -d 'Save files as pcap instead of the default pcapng' +complete -c dumpcap -s S -d 'Print statistics for each interface once every second' +complete -c dumpcap -s t -d 'Use a separate thread per interface' diff --git a/share/completions/duply.fish b/share/completions/duply.fish index 22eb046fc..c4884395a 100644 --- a/share/completions/duply.fish +++ b/share/completions/duply.fish @@ -4,24 +4,24 @@ complete --command duply --no-files --condition '__fish_is_first_token' --argume complete --command duply --no-files --arguments 'usage' -d 'Get usage help text' # Second parameter is a duply command -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'create' -d 'Creates a configuration profile' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'backup' -d 'Backup with pre/post script execution' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'bkp' -d 'Backup without executing pre/post scripts' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'pre' -d 'Execute /pre script' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'post' -d 'Execute /post script' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'full' -d 'Force full backup' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'incr' -d 'Force incremental backup' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'list' -d 'List all files in backup (as it was at , default: now)' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'status' -d 'Prints backup sets and chains currently in repository' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'verify' -d 'List files changed since latest backup' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'purge' -d 'Shows outdated backup archives [--force, delete these files]' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'create' -d 'Creates a configuration profile' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'backup' -d 'Backup with pre/post script execution' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'bkp' -d 'Backup without executing pre/post scripts' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'pre' -d 'Execute /pre script' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'post' -d 'Execute /post script' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'full' -d 'Force full backup' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'incr' -d 'Force incremental backup' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'list' -d 'List all files in backup (as it was at , default: now)' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'status' -d 'Prints backup sets and chains currently in repository' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'verify' -d 'List files changed since latest backup' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'purge' -d 'Shows outdated backup archives [--force, delete these files]' complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'purge-full' -d 'Shows outdated backups [--force, delete these files]' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'cleanup' -d 'Shows broken backup archives [--force, delete these files]' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'restore' -d 'Restore the backup to [as it was at ]' -complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'fetch' -d 'Restore single file/folder from backup [as it was at ]' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'cleanup' -d 'Shows broken backup archives [--force, delete these files]' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'restore' -d 'Restore the backup to [as it was at ]' +complete --command duply --no-files --condition 'not __fish_is_first_token' --arguments 'fetch' -d 'Restore single file/folder from backup [as it was at ]' # Options -complete --command duply --no-files --long-option force -d 'Really execute the commands: purge, purge-full, cleanup' +complete --command duply --no-files --long-option force -d 'Really execute the commands: purge, purge-full, cleanup' complete --command duply --no-files --long-option preview -d 'Do nothing but print out generated duplicity command lines' complete --command duply --no-files --long-option dry-run -d 'Calculate what would be done, but don''t perform any actions' complete --command duply --no-files --long-option allow-source-mismatch -d 'Don''t abort when backup different dirs to the same backend' diff --git a/share/completions/ebuild.fish b/share/completions/ebuild.fish index 4ef230e8f..b95f6b2fe 100644 --- a/share/completions/ebuild.fish +++ b/share/completions/ebuild.fish @@ -1,35 +1,36 @@ function __fish_seen_ebuild_arg -d "Test if an ebuild-argument has been given in the current commandline" - commandline -opc | string match -q '*.ebuild' + commandline -opc | string match -q '*.ebuild' end ## Opts -complete -c ebuild -l debug -d "Run bash with the -x option" -complete -c ebuild -l color -d "Enable color" \ - -xa "y n" -complete -c ebuild -l force -d "Force regeneration of digests" +complete -c ebuild -l debug -d "Run bash with the -x option" +complete -c ebuild -l color -d "Enable color" \ + -xa "y n" +complete -c ebuild -l force -d "Force regeneration of digests" complete -c ebuild -l ignore-default-opts -d "Ignore EBUILD_DEFAULT_OPTS" -complete -c ebuild -l skip-manifest -d "Skip all manifest checks" +complete -c ebuild -l skip-manifest -d "Skip all manifest checks" ## Subcommands -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'help' -d "Show help" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'setup' -d "Run setup and system checks" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'clean' -d "Clean build dir" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'fetch' -d "Fetches all files from SRC_URI" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'help' -d "Show help" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'pretend' -d "Run pkg_pretend()" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'setup' -d "Run setup and system checks" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'clean' -d "Clean build dir" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'fetch' -d "Fetches all files from SRC_URI" #complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'digest' -d "Deprecared: see manifest" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'manifest' -d "Update pkg manifest" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'unpack' -d "Extracts sources" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'prepare' -d "Run src_prepare()" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'configure' -d "Run src_configure()" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'compile' -d "Run src_compile()" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'test' -d "Run tests" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'preinst' -d "Run pkg_preinst()" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'install' -d "Run src_install()" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'postinst' -d "Run pkg_postinst()" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'qmerge' -d "Install files to live filesystem" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'merge' -d "Run fetch, unpack, compile, install and qmerge" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'unmerge' -d "Uninstall files from live filesystem" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'prerm' -d "Run pkg_prerm()" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'postrm' -d "Run pkg_postrm()" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'config' -d "Run post-install configuration" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'package' -d "Create a binpkg in PKGDIR" -complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'rpm' -d "Builds a RedHat RPM pkg" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'manifest' -d "Update pkg manifest" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'unpack' -d "Extracts sources" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'prepare' -d "Run src_prepare()" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'configure' -d "Run src_configure()" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'compile' -d "Run src_compile()" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'test' -d "Run tests" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'preinst' -d "Run pkg_preinst()" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'install' -d "Run src_install()" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'postinst' -d "Run pkg_postinst()" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'qmerge' -d "Install files to live filesystem" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'merge' -d "Run fetch, unpack, compile, install and qmerge" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'unmerge' -d "Uninstall files from live filesystem" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'prerm' -d "Run pkg_prerm()" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'postrm' -d "Run pkg_postrm()" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'config' -d "Run post-install configuration" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'package' -d "Create a binpkg in PKGDIR" +complete -c ebuild -n '__fish_seen_ebuild_arg' -xa 'rpm' -d "Builds a RedHat RPM pkg" diff --git a/share/completions/egrep.fish b/share/completions/egrep.fish index 7f6714372..4ba90a782 100644 --- a/share/completions/egrep.fish +++ b/share/completions/egrep.fish @@ -1 +1 @@ -complete -c grep -w egrep +complete -c egrep -w grep diff --git a/share/completions/eix.fish b/share/completions/eix.fish index a18e53b65..3910902b2 100644 --- a/share/completions/eix.fish +++ b/share/completions/eix.fish @@ -43,7 +43,7 @@ complete -c eix -s 2 -l slots -d "Match packages with two different slots" complete -c eix -s u -l update -d "Match packages without best slotted version" complete -c eix -s o -l overlay -d "Match packages from overlays" complete -c eix -s T -l test-obsolete -d "Match packages with obsolete entries" -complete -c eix -s '!' -l not -d "Invert the expression (toggle)" +complete -c eix -s ! -l not -d "Invert the expression (toggle)" complete -c eix -s '|' -l pipe -d "Use input from pipe of emerge -pv" ### # Search Fields diff --git a/share/completions/elatex.fish b/share/completions/elatex.fish index 5d0b5a71c..57f46615b 100644 --- a/share/completions/elatex.fish +++ b/share/completions/elatex.fish @@ -1,2 +1,2 @@ -complete -c tex -w elatex +complete -c elatex -w tex diff --git a/share/completions/elixir.fish b/share/completions/elixir.fish index f59045860..eedec7175 100644 --- a/share/completions/elixir.fish +++ b/share/completions/elixir.fish @@ -1,15 +1,15 @@ -complete -f -c elixir -s v -d "Prints version and exit" -complete -f -c elixir -s e -d "Evaluates the given command" -complete -c elixir -s r -d "Requires the given files/patterns" -complete -c elixir -s S -d "Finds and executes the given script" -complete -c elixir -s pr -d "Requires the given files/patterns in parallel" -complete -c elixir -s pa -d "Prepends the given path to Erlang code path" -complete -c elixir -s pz -d "Appends the given path to Erlang code path" -complete -c elixir -l app -d "Start the given app and its dependencies" -complete -f -c elixir -l erl -d "Switches to be passed down to erlang" -complete -f -c elixir -l name -d "Makes and assigns a name to the distributed node" -complete -f -c elixir -l sname -d "Makes and assigns a short name to the distributed node" -complete -f -c elixir -l cookie -d "Sets a cookie for this distributed node" -complete -f -c elixir -l hidden -d "Makes a hidden node" +complete -f -c elixir -s v -d "Prints version and exit" +complete -f -c elixir -s e -d "Evaluates the given command" +complete -c elixir -s r -d "Requires the given files/patterns" +complete -c elixir -s S -d "Finds and executes the given script" +complete -c elixir -s pr -d "Requires the given files/patterns in parallel" +complete -c elixir -s pa -d "Prepends the given path to Erlang code path" +complete -c elixir -s pz -d "Appends the given path to Erlang code path" +complete -c elixir -l app -d "Start the given app and its dependencies" +complete -f -c elixir -l erl -d "Switches to be passed down to erlang" +complete -f -c elixir -l name -d "Makes and assigns a name to the distributed node" +complete -f -c elixir -l sname -d "Makes and assigns a short name to the distributed node" +complete -f -c elixir -l cookie -d "Sets a cookie for this distributed node" +complete -f -c elixir -l hidden -d "Makes a hidden node" complete -f -c elixir -l detached -d "Starts the Erlang VM detached from console" -complete -f -c elixir -l no-halt -d "Does not halt the Erlang VM after execution" +complete -f -c elixir -l no-halt -d "Does not halt the Erlang VM after execution" diff --git a/share/completions/emaint.fish b/share/completions/emaint.fish index 94130e50d..0b619e87a 100644 --- a/share/completions/emaint.fish +++ b/share/completions/emaint.fish @@ -1,32 +1,37 @@ +function __fish_portage_print_repository_names --description 'Print the names of all configured repositories' + # repos.conf may be a file or a directory + find /etc/portage/repos.conf -type f -exec cat '{}' + | string replace -r --filter '^\s*\[([[:alnum:]_][[:alnum:]_-]*)\]' '$1' | string match -v -e DEFAULT +end + ## Global Opts -complete -c emaint -s h -l help -d "Show this help message and exit" -complete -c emaint -s c -l check -d "Check for problems" -complete -c emaint -l version -d "Show program's version number and exit" -complete -c emaint -s f -l fix -d "Attempt to fix problems" -complete -c emaint -s P -l purge -d "Remove the list of failed merges" +complete -c emaint -s h -l help -d "Show this help message and exit" +complete -c emaint -s c -l check -d "Check for problems" +complete -c emaint -l version -d "Show program's version number and exit" +complete -c emaint -s f -l fix -d "Attempt to fix problems" +complete -c emaint -s P -l purge -d "Remove the list of failed merges" ## Subcommands -complete -c emaint -n '__fish_use_subcommand' -xa 'all' -d 'Perform all supported commands' -complete -c emaint -n '__fish_use_subcommand' -xa 'binhost' -d 'Scan and generate metadata indexes for binary pkgs' +complete -c emaint -n '__fish_use_subcommand' -xa 'all' -d 'Perform all supported commands' +complete -c emaint -n '__fish_use_subcommand' -xa 'binhost' -d 'Scan and generate metadata indexes for binary pkgs' complete -c emaint -n '__fish_use_subcommand' -xa 'cleanconfmem' -d 'Check and clean the config tracker list for uninstalled pkgs' complete -c emaint -n '__fish_use_subcommand' -xa 'cleanresume' -d 'Discard emerge --resume merge lists' -complete -c emaint -n '__fish_use_subcommand' -xa 'logs' -d 'Check and clean old logs in the PORT_LOGDIR' -complete -c emaint -n '__fish_use_subcommand' -xa 'merges' -d 'Scan for failed merges and fix them' -complete -c emaint -n '__fish_use_subcommand' -xa 'movebin' -d 'Perform pkg move updates for binary pkgs' -complete -c emaint -n '__fish_use_subcommand' -xa 'moveinst' -d 'Perform pkg move updates for installed and binary pkgs' -complete -c emaint -n '__fish_use_subcommand' -xa 'sync' -d 'Check repos.conf settings and sync repositories' -complete -c emaint -n '__fish_use_subcommand' -xa 'world' -d 'Check and fix problems in the world file' +complete -c emaint -n '__fish_use_subcommand' -xa 'logs' -d 'Check and clean old logs in the PORT_LOGDIR' +complete -c emaint -n '__fish_use_subcommand' -xa 'merges' -d 'Scan for failed merges and fix them' +complete -c emaint -n '__fish_use_subcommand' -xa 'movebin' -d 'Perform pkg move updates for binary pkgs' +complete -c emaint -n '__fish_use_subcommand' -xa 'moveinst' -d 'Perform pkg move updates for installed and binary pkgs' +complete -c emaint -n '__fish_use_subcommand' -xa 'sync' -d 'Check repos.conf settings and sync repositories' +complete -c emaint -n '__fish_use_subcommand' -xa 'world' -d 'Check and fix problems in the world file' ## Local opts -# cleanlogs -complete -c emaint -n '__fish_seen_subcommand_from cleanlogs' -s t -l time -d "Delete logs older than NUM of days" \ - -xa "(seq 0 365)" -complete -c emaint -n '__fish_seen_subcommand_from cleanlogs' -s p -l pretend -d "Output logs that would be deleted" -complete -c emaint -n '__fish_seen_subcommand_from cleanlogs' -s C -l clean -d "Cleans out logs more than 7 days old" +# logs +complete -c emaint -n '__fish_seen_subcommand_from logs' -s t -l time -d "Delete logs older than NUM days" \ + -xa "(seq 0 365)" +complete -c emaint -n '__fish_seen_subcommand_from logs' -s p -l pretend -d "Output logs that would be deleted" +complete -c emaint -n '__fish_seen_subcommand_from logs' -s C -l clean -d "Cleans out logs more than 7 days old" # sync -complete -c emaint -n '__fish_seen_subcommand_from sync' -s a -l auto -d "Sync auto-sync enabled repos only" -complete -c emaint -n '__fish_seen_subcommand_from sync' -s A -l allrepos -d "Sync all repos that have a sync-url defined" -complete -c emaint -n '__fish_seen_subcommand_from sync' -s r -l repo -d "Sync the specified repo" \ - -xa "(__fish_portage_print_repository_names)" -complete -c emaint -n '__fish_seen_subcommand_from sync' -l sync-submodule -d "Restrict sync to the specified submodule(s)" \ - -xa "glsa news profiles" +complete -c emaint -n '__fish_seen_subcommand_from sync' -s a -l auto -d "Sync auto-sync enabled repos only" +complete -c emaint -n '__fish_seen_subcommand_from sync' -s A -l allrepos -d "Sync all repos that have a sync-url defined" +complete -c emaint -n '__fish_seen_subcommand_from sync' -s r -l repo -d "Sync the specified repo" \ + -xa "(__fish_portage_print_repository_names)" +complete -c emaint -n '__fish_seen_subcommand_from sync' -l sync-submodule -d "Restrict sync to the specified submodule(s)" \ + -xa "glsa news profiles" diff --git a/share/completions/emerge.fish b/share/completions/emerge.fish index 851df35be..e02dca4f0 100644 --- a/share/completions/emerge.fish +++ b/share/completions/emerge.fish @@ -13,40 +13,40 @@ #end function __fish_emerge_print_sets - for s in '@'(emerge --list-sets) - switch $s - case @profile - printf '%s\t%s\n' $s 'set of packages deemed necessary for your system to run properly' - case @selected-packages - printf '%s\t%s\n' $s 'packages listed in /var/lib/portage/world' - case @selected-sets - printf '%s\t%s\n' $s 'sets listed in /var/lib/portage/world_sets' - case @selected - printf '%s\t%s\n' $s 'encompasses both the selected-packages and selected-sets sets' - case @system - printf '%s\t%s\n' $s 'set of packages deemed necessary for your system to run properly' - case @world - printf '%s\t%s\n' $s 'encompasses the selected, system and profile sets' - case '*' - echo $s - end - end + for s in '@'(emerge --list-sets) + switch $s + case @profile + printf '%s\t%s\n' $s 'set of packages deemed necessary for your system to run properly' + case @selected-packages + printf '%s\t%s\n' $s 'packages listed in /var/lib/portage/world' + case @selected-sets + printf '%s\t%s\n' $s 'sets listed in /var/lib/portage/world_sets' + case @selected + printf '%s\t%s\n' $s 'encompasses both the selected-packages and selected-sets sets' + case @system + printf '%s\t%s\n' $s 'set of packages deemed necessary for your system to run properly' + case @world + printf '%s\t%s\n' $s 'encompasses the selected, system and profile sets' + case '*' + echo $s + end + end end # TODO ... function __fish_emerge_possible_args - if __fish_contains_opt check-news -s h help list-sets metadata regen -s r resume \ - -s s search -s S searchdesc sync -s V version - return - # TODO deselect=y - else if __fish_contains_opt config -s c depclean info -s P prune -s C unmerge - __fish_emerge_print_sets - __fish_portage_print_installed_pkgs - # TODO deselect=n - else - __fish_emerge_print_sets - __fish_portage_print_available_pkgs - end + if __fish_contains_opt check-news -s h help list-sets metadata regen -s r resume \ + -s s search -s S searchdesc sync -s V version + return + # TODO deselect=y + else if __fish_contains_opt config -s c depclean info -s P prune -s C unmerge + __fish_emerge_print_sets + __fish_portage_print_installed_pkgs + # TODO deselect=n + else + __fish_emerge_print_sets + __fish_portage_print_available_pkgs + end end complete -c emerge -xa "(__fish_emerge_possible_args)" @@ -54,30 +54,30 @@ complete -c emerge -xa "(__fish_emerge_possible_args)" ######################### # Actions # ######################### -complete -c emerge -l check-news -complete -c emerge -l clean -complete -c emerge -l config +complete -c emerge -l check-news +complete -c emerge -l clean +complete -c emerge -l config complete -c emerge -s c -l depclean -complete -c emerge -l deselect +complete -c emerge -l deselect complete -c emerge -s h -l help -complete -c emerge -l info -complete -c emerge -l list-sets -complete -c emerge -l metadata +complete -c emerge -l info +complete -c emerge -l list-sets +complete -c emerge -l metadata complete -c emerge -s P -l prune -complete -c emerge -l regen +complete -c emerge -l regen complete -c emerge -s r -l resume complete -c emerge -s s -l search complete -c emerge -s S -l searchdesc -complete -c emerge -l sync +complete -c emerge -l sync complete -c emerge -s C -l unmerge complete -c emerge -s V -l version ######################### # Options # ######################### -complete -c emerge -s A -l alert -d "Add a terminal bell character ('\a') to all interactive prompts" +complete -c emerge -s A -l alert -d "Add a terminal bell character ('\a') to all interactive prompts" #complete -c emerge -l alphabetical -d "Sort flag lists alphabetically" -complete -c emerge -s a -l ask -d "Prompt the user before peforming the merge" +complete -c emerge -s a -l ask -d "Prompt the user before peforming the merge" # ask-enter-invalid # autounmask # autounmask-backtrack @@ -87,58 +87,58 @@ complete -c emerge -s a -l ask -d "Prompt the user before peforming the # autounmask-keep-keywords # autounmask-keep-masks # autounmask-write -complete -c emerge -l backtrack -complete -c emerge -s b -l buildpkg -d "Build a binary pkg additionally" +complete -c emerge -l backtrack +complete -c emerge -s b -l buildpkg -d "Build a binary pkg additionally" # buildpkg-exclude complete -c emerge -s B -l buildpkgonly -d "Only build a binary pkg" # changed-deps complete -c emerge -s U -l changed-use -complete -c emerge -s l -l changelog -d "Show changelog of pkg. Use with --pretend" -complete -c emerge -l color -d "Colorized output" \ - -xa "y n" -complete -c emerge -l columns -d "Align output. Use with --pretend" -complete -c emerge -l complete-graph +complete -c emerge -s l -l changelog -d "Show changelog of pkg. Use with --pretend" +complete -c emerge -l color -d "Colorized output" \ + -xa "y n" +complete -c emerge -l columns -d "Align output. Use with --pretend" +complete -c emerge -l complete-graph # complete-graph-if-new-use # complete-graph-if-new-ver # config-root DIR -complete -c emerge -s d -l debug -d "Run in debug mode" -complete -c emerge -s D -l deep -d "Consider the whole dependency tree" +complete -c emerge -s d -l debug -d "Run in debug mode" +complete -c emerge -s D -l deep -d "Consider the whole dependency tree" # depclean-lib-check # digest # dynamic-deps -complete -c emerge -s e -l emptytree -d "Reinstall all world pkgs" +complete -c emerge -s e -l emptytree -d "Reinstall all world pkgs" # exclude ATOMS -complete -c emerge -l exclude +complete -c emerge -l exclude # fail-clean -complete -c emerge -s f -l fetchonly -d "Only download the pkgs but don't install them" -complete -c emerge -s F -l fetch-all-uri -d "Same as --fetchonly and grab all potential files" +complete -c emerge -s f -l fetchonly -d "Only download the pkgs but don't install them" +complete -c emerge -s F -l fetch-all-uri -d "Same as --fetchonly and grab all potential files" # fuzzy-search -complete -c emerge -s g -l getbinpkg -d "Download infos from each binary pkg. Implies -k" -complete -c emerge -s G -l getbinpkgonly -d "As -g but don't use local infos" -complete -c emerge -l ignore-default-opts -d "Ignore EMERGE_DEFAULT_OPTS" +complete -c emerge -s g -l getbinpkg -d "Download infos from each binary pkg. Implies -k" +complete -c emerge -s G -l getbinpkgonly -d "As -g but don't use local infos" +complete -c emerge -l ignore-default-opts -d "Ignore EMERGE_DEFAULT_OPTS" # ignore-build-slot-operator-deps # ignore-soname-deps -complete -c emerge -l jobs -complete -c emerge -l keep-going +complete -c emerge -l jobs +complete -c emerge -l keep-going # load-average # misspell-suggestion # newrepo -complete -c emerge -s N -l newuse -d "Include installed pkgs with changed USE flags" -complete -c emerge -l noconfmem -d "Disregard merge records" -complete -c emerge -s O -l nodeps -d "Don't merge dependencies" -complete -c emerge -s n -l noreplace -d "Skip already installed pkgs" -complete -c emerge -l nospinner -d "Disable the spinner" +complete -c emerge -s N -l newuse -d "Include installed pkgs with changed USE flags" +complete -c emerge -l noconfmem -d "Disregard merge records" +complete -c emerge -s O -l nodeps -d "Don't merge dependencies" +complete -c emerge -s n -l noreplace -d "Skip already installed pkgs" +complete -c emerge -l nospinner -d "Disable the spinner" # usepkg-exclude ATOMS # rebuild-exclude ATOMS # rebuild-ignore ATOMS -complete -c emerge -s 1 -l oneshot -d "Don't add pkgs to world" -complete -c emerge -s o -l onlydeps -d "Only merge dependencies" +complete -c emerge -s 1 -l oneshot -d "Don't add pkgs to world" +complete -c emerge -s o -l onlydeps -d "Only merge dependencies" # onlydeps-with-rdeps # package-moves # pkg-format # prefix DIR -complete -c emerge -s p -l pretend -d "Display what would be done without doing it" -complete -c emerge -s q -l quiet -d "Use a condensed output" +complete -c emerge -s p -l pretend -d "Display what would be done without doing it" +complete -c emerge -s q -l quiet -d "Use a condensed output" # quiet-build # quiet-fail # quiet-repo-display @@ -158,19 +158,19 @@ complete -c emerge -s q -l quiet -d "Use a condensed output" # search-similarity PERCENTAGE complete -c emerge -s w -l select # selective -complete -c emerge -l skipfirst -d "Remove first pkg in resume list. Use with --resume" +complete -c emerge -l skipfirst -d "Remove first pkg in resume list. Use with --resume" # sync-module -complete -c emerge -s t -l tree -d "Show the dependency tree" +complete -c emerge -s t -l tree -d "Show the dependency tree" # unordered-display complete -c emerge -s u -l update # use-ebuild-visibility # useoldpkg-atoms ATOMS -complete -c emerge -s k -l usepkg -d "Use binary pkg if available" -complete -c emerge -s K -l usepkgonly -d "Only use binary pkgs" -complete -c emerge -s v -l verbose -d "Run in verbose mode" -# verbose-conflicts +complete -c emerge -s k -l usepkg -d "Use binary pkg if available" +complete -c emerge -s K -l usepkgonly -d "Only use binary pkgs" +complete -c emerge -s v -l verbose -d "Run in verbose mode" +complete -c emerge -l verbose-conflicts -d "Verbose slot conflicts" # verbose-slot-rebuilds -complete -c emerge -l with-bdeps -d "Pull in build time dependencies" \ - -xa "y n" +complete -c emerge -l with-bdeps -d "Pull in build time dependencies" \ + -xa "y n" # with-bdeps-auto # with-test-bdeps diff --git a/share/completions/entr.fish b/share/completions/entr.fish index 88a672351..4d70b65a0 100644 --- a/share/completions/entr.fish +++ b/share/completions/entr.fish @@ -1,5 +1,5 @@ -complete -c entr -s r -d 'Launches the utility at startup and reloads it if one of the source files change' -complete -c entr -s c -d 'Clears the screen before running the utility' -complete -c entr -s h -l help -d 'Display help and exit' -complete -c entr -s v -l version -d 'Output version information' -complete -c entr -x -a '(__fish_complete_subcommand)' +complete -c entr -s r -d 'Launches the utility at startup and reloads it if one of the source files change' +complete -c entr -s c -d 'Clears the screen before running the utility' +complete -c entr -s h -l help -d 'Display help and exit' +complete -c entr -s v -l version -d 'Output version information' +complete -c entr -x -a '(__fish_complete_subcommand)' diff --git a/share/completions/env.fish b/share/completions/env.fish index 7d6fa16ad..3e231cc66 100644 --- a/share/completions/env.fish +++ b/share/completions/env.fish @@ -1,17 +1,32 @@ function __fish_complete_env_subcommand - argparse -s s/ignore-environment u/unset h-help v-version -- (commandline -opc) (commandline -ct) 2>/dev/null - or return - if set -q argv[1] - complete -C"$argv" + argparse -s s/ignore-environment u/unset= h-help v-version -- (commandline -opc) (commandline -ct) 2>/dev/null + or return 1 + + # argv[1] is `env` or an alias. + set -e argv[1] + + # Remove all VAR=VAL arguments up to the first that isn't + while set -q argv[1] + if string match -q '*=*' -- $argv[1] + or string match -q -- '-*' $argv[1] + set -e argv[1] + else + break + end + end + + # Then complete the rest as if it was given as a command. + if test -n "$argv" + __fish_complete_subcommand --commandline $argv return 0 end return 1 end +complete -c env -a "(__fish_complete_env_subcommand)" -complete -c env -a "(__fish_complete_env_subcommand)" -d "Command" - -complete -c env -n 'not __fish_complete_env_subcommand' -a "(set -n)=" -x -d "Redefine variable" +# complete VAR= only if the cursor is left of the =, otherwise complete the file right of the = +complete -c env -n 'not __fish_complete_env_subcommand; and not string match -eq = -- (commandline -ct)' -a "(set -n)=" -f -d "Redefine variable" complete -c env -n 'not __fish_complete_env_subcommand' -s i -l ignore-environment -d "Start with an empty environment" complete -c env -n 'not __fish_complete_env_subcommand' -s u -l unset -d "Remove variable from the environment" -x -a "(set -n)" complete -c env -n 'not __fish_complete_env_subcommand' -l help -d "Display help and exit" diff --git a/share/completions/epkginfo.fish b/share/completions/epkginfo.fish new file mode 100644 index 000000000..d885243c9 --- /dev/null +++ b/share/completions/epkginfo.fish @@ -0,0 +1,12 @@ +complete -c epkginfo -xa "(__fish_portage_print_available_pkgs)" +## Opts +complete -c epkginfo -s h -l help -d "display help" +complete -c epkginfo -s d -l description -d "extended pkg description" +complete -c epkginfo -s H -l herd -d "herd(s) for the pkg" +complete -c epkginfo -s k -l keywords -d "keywords for all matching pkg versions" +complete -c epkginfo -s l -l license -d "licenses for the best matching version" +complete -c epkginfo -s m -l maintainer -d "maintainer(s) for the pkg" +complete -c epkginfo -s S -l stablreq -d "STABLEREQ arches (cc's) for all matching pkg versio" +complete -c epkginfo -s u -l useflags -d "per-pkg USE flag descriptions" +complete -c epkginfo -s U -l upstream -d "pkg's upstream information" +complete -c epkginfo -s x -l xml -d "plain metadata.xml file" diff --git a/share/completions/equery.fish b/share/completions/equery.fish index add3e4e49..8ae7eec76 100644 --- a/share/completions/equery.fish +++ b/share/completions/equery.fish @@ -1,134 +1,134 @@ # TODO unused function __fish_equery_print_format - printf "%s\t%s\n" \ - '$cp' "Category and package name (e.g 'app-portage/gentoolkit')" \ - '$cpv' "Category, package name and version (e.g. 'app-portage/gentoolkit-0.3.0_rc10-r1')" \ - '$category' "Category (e.g. 'app-portage')" \ - '$name' "Package name (e.g. 'gentoolkit')" \ - '$version' "Version (without the revision) (e.g. '0.3.0_rc10')" \ - '$revision' "Revision (e.g. 'r1')" \ - '$fullversion' "Version including revision (e.g. '0.3.0_rc10-r1')" \ - '$slot' "Slot" \ - '$repo' "Repository (e.g. 'gentoo')" \ - '$mask' "Mask-status field (~M-??)" \ - '$mask2' "Verbose description of the masking status" \ - '$location' "Location field (IPO-)" + printf "%s\t%s\n" \ + '$cp' "Category and package name (e.g 'app-portage/gentoolkit')" \ + '$cpv' "Category, package name and version (e.g. 'app-portage/gentoolkit-0.3.0_rc10-r1')" \ + '$category' "Category (e.g. 'app-portage')" \ + '$name' "Package name (e.g. 'gentoolkit')" \ + '$version' "Version (without the revision) (e.g. '0.3.0_rc10')" \ + '$revision' "Revision (e.g. 'r1')" \ + '$fullversion' "Version including revision (e.g. '0.3.0_rc10-r1')" \ + '$slot' "Slot" \ + '$repo' "Repository (e.g. 'gentoo')" \ + '$mask' "Mask-status field (~M-??)" \ + '$mask2' "Verbose description of the masking status" \ + '$location' "Location field (IPO-)" end ## Global Opts -complete -c equery -s h -l help -d "Displays a help message" -complete -c equery -s q -l quiet -d "Minimal output" -complete -c equery -s C -l no-color -d "Turns off colors" -complete -c equery -s N -l no-pipe -d "Turns off pipe detection" -complete -c equery -s V -l version -d "Display version information" +complete -c equery -s h -l help -d "Displays a help message" +complete -c equery -s q -l quiet -d "Minimal output" +complete -c equery -s C -l no-color -d "Turns off colors" +complete -c equery -s N -l no-pipe -d "Turns off pipe detection" +complete -c equery -s V -l version -d "Display version information" ## Subcommands -complete -c equery -n '__fish_use_subcommand' -xa 'belongs' -d "List all pkgs owning file(s)" -complete -c equery -n '__fish_use_subcommand' -xa 'changes' -d "List changelog entries for ATOM" -complete -c equery -n '__fish_use_subcommand' -xa 'check' -d "Check pkg's MD5sums and timestamps" -complete -c equery -n '__fish_use_subcommand' -xa 'depends' -d "List all pkgs depending on specified pkg" -complete -c equery -n '__fish_use_subcommand' -xa 'depgraph' -d "Display pkg's dependency tree" -complete -c equery -n '__fish_use_subcommand' -xa 'files' -d "List files owned by pkg" -complete -c equery -n '__fish_use_subcommand' -xa 'has' -d "List pkgs for matching ENVIRONMENT data" -complete -c equery -n '__fish_use_subcommand' -xa 'hasuse' -d "List pkgs with specified useflag" -complete -c equery -n '__fish_use_subcommand' -xa 'keywords' -d "Display pkg's keywords" -complete -c equery -n '__fish_use_subcommand' -xa 'list' -d "List all pkgs matching pattern" -complete -c equery -n '__fish_use_subcommand' -xa 'meta' -d "Display pkg's metadata" -complete -c equery -n '__fish_use_subcommand' -xa 'size' -d "Print size of files contained in pkg" -complete -c equery -n '__fish_use_subcommand' -xa 'uses' -d "Display pkg's USE flags" -complete -c equery -n '__fish_use_subcommand' -xa 'which' -d "Print full path to ebuild for pkg" +complete -c equery -n '__fish_use_subcommand' -xa 'belongs' -d "List all pkgs owning file(s)" +complete -c equery -n '__fish_use_subcommand' -xa 'changes' -d "List changelog entries for ATOM" +complete -c equery -n '__fish_use_subcommand' -xa 'check' -d "Check pkg's MD5sums and timestamps" +complete -c equery -n '__fish_use_subcommand' -xa 'depends' -d "List all pkgs depending on specified pkg" +complete -c equery -n '__fish_use_subcommand' -xa 'depgraph' -d "Display pkg's dependency tree" +complete -c equery -n '__fish_use_subcommand' -xa 'files' -d "List files owned by pkg" +complete -c equery -n '__fish_use_subcommand' -xa 'has' -d "List pkgs for matching ENVIRONMENT data" +complete -c equery -n '__fish_use_subcommand' -xa 'hasuse' -d "List pkgs with specified useflag" +complete -c equery -n '__fish_use_subcommand' -xa 'keywords' -d "Display pkg's keywords" +complete -c equery -n '__fish_use_subcommand' -xa 'list' -d "List all pkgs matching pattern" +complete -c equery -n '__fish_use_subcommand' -xa 'meta' -d "Display pkg's metadata" +complete -c equery -n '__fish_use_subcommand' -xa 'size' -d "Print size of files contained in pkg" +complete -c equery -n '__fish_use_subcommand' -xa 'uses' -d "Display pkg's USE flags" +complete -c equery -n '__fish_use_subcommand' -xa 'which' -d "Print full path to ebuild for pkg" ## Arguments complete -c equery -n '__fish_seen_subcommand_from c changes d depends g depgraph y keywords m meta u uses w which' \ - -xa '(__fish_portage_print_available_pkgs)' + -xa '(__fish_portage_print_available_pkgs)' complete -c equery -n '__fish_seen_subcommand_from k check f files s size' \ - -xa '(__fish_portage_print_installed_pkgs)' + -xa '(__fish_portage_print_installed_pkgs)' ## Local opts # belongs -complete -c equery -n '__fish_seen_subcommand_from b belongs' -s f -l full-regex -d "Supplied query is a regex" -complete -c equery -n '__fish_seen_subcommand_from b belongs' -s e -l early-out -d "Stop after first match" -complete -c equery -n '__fish_seen_subcommand_from b belongs' -s n -l name-only -d "Omit version" +complete -c equery -n '__fish_seen_subcommand_from b belongs' -s f -l full-regex -d "Query is a regex" +complete -c equery -n '__fish_seen_subcommand_from b belongs' -s e -l early-out -d "Stop after first match" +complete -c equery -n '__fish_seen_subcommand_from b belongs' -s n -l name-only -d "Omit version" # changes -complete -c equery -n '__fish_seen_subcommand_from c changes' -s l -l latest -d "Display only latest ChangeLog entry" -complete -c equery -n '__fish_seen_subcommand_from c changes' -s f -l full -d "Display full ChangeLog" -complete -c equery -n '__fish_seen_subcommand_from c changes' -l limit -d "Limit number of entries displayed (with --full)" \ - -xa "(seq 99)" +complete -c equery -n '__fish_seen_subcommand_from c changes' -s l -l latest -d "Display only latest ChangeLog entry" +complete -c equery -n '__fish_seen_subcommand_from c changes' -s f -l full -d "Display full ChangeLog" +complete -c equery -n '__fish_seen_subcommand_from c changes' -l limit -d "Limit number of entries displayed (with --full)" \ + -xa "(seq 99)" #complete -c equery -n '__fish_seen_subcommand_from c changes' -l from=VER -d "Set which version to display from" #complete -c equery -n '__fish_seen_subcommand_from c changes' -l to=VER -d "Set which version to display to" # check -complete -c equery -n '__fish_seen_subcommand_from k check' -s f -l full-regex -d "Query is a regular expression" -complete -c equery -n '__fish_seen_subcommand_from k check' -s o -l only-failures -d "Only display pkgs that do not pass" +complete -c equery -n '__fish_seen_subcommand_from k check' -s f -l full-regex -d "Query is a regex" +complete -c equery -n '__fish_seen_subcommand_from k check' -s o -l only-failures -d "Only display pkgs that do not pass" # depends -complete -c equery -n '__fish_seen_subcommand_from d depends' -s a -l all-packages -d "Include dependencies that are not installed (slow)" -complete -c equery -n '__fish_seen_subcommand_from d depends' -s D -l indirect -d "Search both direct and indirect dependencies" -complete -c equery -n '__fish_seen_subcommand_from d depends' -l depth -d "Limit indirect dependency tree to specified depth" \ - -xa "(seq 9)" +complete -c equery -n '__fish_seen_subcommand_from d depends' -s a -l all-packages -d "Include dependencies that are not installed (slow)" +complete -c equery -n '__fish_seen_subcommand_from d depends' -s D -l indirect -d "Search both direct and indirect dependencies" +complete -c equery -n '__fish_seen_subcommand_from d depends' -l depth -d "Limit indirect dependency tree to specified depth" \ + -xa "(seq 9)" # depgraph -complete -c equery -n '__fish_seen_subcommand_from g depgraph' -s A -l no-atom -d "Don't show dependency atom" -complete -c equery -n '__fish_seen_subcommand_from g depgraph' -s M -l no-mask -d "Don't show masking status" -complete -c equery -n '__fish_seen_subcommand_from g depgraph' -s U -l no-useflags -d "Don't show USE flags" -complete -c equery -n '__fish_seen_subcommand_from g depgraph' -s l -l linear -d "Don't indent dependencies" -complete -c equery -n '__fish_seen_subcommand_from g depgraph' -l depth -d "Limit dependency graph to specified depth" \ - -xa "(seq 9)" +complete -c equery -n '__fish_seen_subcommand_from g depgraph' -s A -l no-atom -d "Don't show dependency atom" +complete -c equery -n '__fish_seen_subcommand_from g depgraph' -s M -l no-mask -d "Don't show masking status" +complete -c equery -n '__fish_seen_subcommand_from g depgraph' -s U -l no-useflags -d "Don't show USE flags" +complete -c equery -n '__fish_seen_subcommand_from g depgraph' -s l -l linear -d "Don't indent dependencies" +complete -c equery -n '__fish_seen_subcommand_from g depgraph' -l depth -d "Limit dependency graph to specified depth" \ + -xa "(seq 9)" # files function __fish_equery_files_filter_args - printf "%s\n" dir obj sym dev fifo path conf cmd doc man info + printf "%s\n" dir obj sym dev fifo path conf cmd doc man info end -complete -c equery -n '__fish_seen_subcommand_from f files' -s m -l md5sum -d "Include MD5 sum in output" -complete -c equery -n '__fish_seen_subcommand_from f files' -s s -l timestamp -d "Include timestamp in output" -complete -c equery -n '__fish_seen_subcommand_from f files' -s t -l type -d "Include file type in output" -complete -c equery -n '__fish_seen_subcommand_from f files' -l tree -d "Display results in a tree" -complete -c equery -n '__fish_seen_subcommand_from f files' -s f -l filter -d "Filter output by file type" \ - -xa "(__fish_complete_list , __fish_equery_files_filter_args)" +complete -c equery -n '__fish_seen_subcommand_from f files' -s m -l md5sum -d "Include MD5 sum in output" +complete -c equery -n '__fish_seen_subcommand_from f files' -s s -l timestamp -d "Include timestamp in output" +complete -c equery -n '__fish_seen_subcommand_from f files' -s t -l type -d "Include file type in output" +complete -c equery -n '__fish_seen_subcommand_from f files' -l tree -d "Display results in a tree" +complete -c equery -n '__fish_seen_subcommand_from f files' -s f -l filter -d "Filter output by file type" \ + -xa "(__fish_complete_list , __fish_equery_files_filter_args)" # has + hasuse complete -c equery -n '__fish_seen_subcommand_from a has h hasuse' -s I -l exclude-installed -d "Exclude installed pkgs from search path" -complete -c equery -n '__fish_seen_subcommand_from a has h hasuse' -s o -l overlay-tree -d "Include overlays in search path" -complete -c equery -n '__fish_seen_subcommand_from a has h hasuse' -s p -l portage-tree -d "Include entire portage tree in search path" +complete -c equery -n '__fish_seen_subcommand_from a has h hasuse' -s o -l overlay-tree -d "Include overlays in search path" +complete -c equery -n '__fish_seen_subcommand_from a has h hasuse' -s p -l portage-tree -d "Include entire portage tree in search path" #complete -c equery -n '__fish_seen_subcommand_from a has h hasuse' -s F -l format=TMPL -d "Specify a custom output format" # keywords # TODO # list -complete -c equery -n '__fish_seen_subcommand_from l list' -s d -l duplicates -d "List only installed duplicate pkgs" -complete -c equery -n '__fish_seen_subcommand_from l list' -s b -l binpkgs-missing -d "List only installed pkgs without a corresponding binary pkg" -complete -c equery -n '__fish_seen_subcommand_from l list' -s f -l full-regex -d "Query is a regular expression" -complete -c equery -n '__fish_seen_subcommand_from l list' -s m -l mask-reason -d "Include reason for pkg mask" +complete -c equery -n '__fish_seen_subcommand_from l list' -s d -l duplicates -d "List only installed duplicate pkgs" +complete -c equery -n '__fish_seen_subcommand_from l list' -s b -l binpkgs-missing -d "List only installed pkgs without a corresponding binary pkg" +complete -c equery -n '__fish_seen_subcommand_from l list' -s f -l full-regex -d "Query is a regex" +complete -c equery -n '__fish_seen_subcommand_from l list' -s m -l mask-reason -d "Include reason for pkg mask" complete -c equery -n '__fish_seen_subcommand_from l list' -s I -l exclude-installed -d "Exclude installed pkgs from output" -complete -c equery -n '__fish_seen_subcommand_from l list' -s o -l overlay-tree -d "List pkgs in overlays" -complete -c equery -n '__fish_seen_subcommand_from l list' -s p -l portage-tree -d "List pkgs in the main portage tree" +complete -c equery -n '__fish_seen_subcommand_from l list' -s o -l overlay-tree -d "List pkgs in overlays" +complete -c equery -n '__fish_seen_subcommand_from l list' -s p -l portage-tree -d "List pkgs in the main portage tree" #complete -c equery -n '__fish_seen_subcommand_from l list' -s F -l format=TMPL -d "Specify a custom output format" complete -c equery -n '__fish_seen_subcommand_from l list; and not __fish_contains_opt -s p portage-tree' \ - -xa "(__fish_portage_print_installed_pkgs)" + -xa "(__fish_portage_print_installed_pkgs)" complete -c equery -n '__fish_seen_subcommand_from l list; and __fish_contains_opt -s p portage-tree' \ - -xa "(__fish_portage_print_available_pkgs)" + -xa "(__fish_portage_print_available_pkgs)" # meta -complete -c equery -n '__fish_seen_subcommand_from m meta' -s d -l description -d "Show an extended pkg description" -complete -c equery -n '__fish_seen_subcommand_from m meta' -s H -l herd -d "Show pkg's herd(s)" -complete -c equery -n '__fish_seen_subcommand_from m meta' -s k -l keywords -d "Show keywords for all matching pkg versions" -complete -c equery -n '__fish_seen_subcommand_from m meta' -s l -l license -d "Show licenses for the best maching version" -complete -c equery -n '__fish_seen_subcommand_from m meta' -s m -l maintainer -d "Show the maintainer(s) for the pkg" -complete -c equery -n '__fish_seen_subcommand_from m meta' -s S -l stablreq -d "Show STABLEREQ arches (cc's) for all matching pkg versions" -complete -c equery -n '__fish_seen_subcommand_from m meta' -s u -l useflags -d "Show per-pkg USE flag descriptions" -complete -c equery -n '__fish_seen_subcommand_from m meta' -s U -l upstream -d "Show pkg's upstream information" -complete -c equery -n '__fish_seen_subcommand_from m meta' -s x -l xml -d "Show the plain metadata.xml file" +complete -c equery -n '__fish_seen_subcommand_from m meta' -s d -l description -d "Show extended pkg description" +complete -c equery -n '__fish_seen_subcommand_from m meta' -s H -l herd -d "Show pkg's herd(s)" +complete -c equery -n '__fish_seen_subcommand_from m meta' -s k -l keywords -d "Show keywords for all matching pkg versions" +complete -c equery -n '__fish_seen_subcommand_from m meta' -s l -l license -d "Show licenses for the best matching version" +complete -c equery -n '__fish_seen_subcommand_from m meta' -s m -l maintainer -d "Show the maintainer(s) for the pkg" +complete -c equery -n '__fish_seen_subcommand_from m meta' -s S -l stablreq -d "Show STABLEREQ arches (cc's) for all matching pkg versions" +complete -c equery -n '__fish_seen_subcommand_from m meta' -s u -l useflags -d "Show per-pkg USE flag descriptions" +complete -c equery -n '__fish_seen_subcommand_from m meta' -s U -l upstream -d "Show pkg's upstream information" +complete -c equery -n '__fish_seen_subcommand_from m meta' -s x -l xml -d "Show the plain metadata.xml file" # size -complete -c equery -n '__fish_seen_subcommand_from s size' -s b -l bytes -d "Report size in bytes" -complete -c equery -n '__fish_seen_subcommand_from s size' -s f -l full-regex -d "Query is a regular expression" +complete -c equery -n '__fish_seen_subcommand_from s size' -s b -l bytes -d "Report size in bytes" +complete -c equery -n '__fish_seen_subcommand_from s size' -s f -l full-regex -d "Query is a regex" # uses -complete -c equery -n '__fish_seen_subcommand_from u uses' -s a -l all -d "Include all pkg versions" -complete -c equery -n '__fish_seen_subcommand_from u uses' -s i -l ignore-l10n -d "Don't show l10n USE flags" +complete -c equery -n '__fish_seen_subcommand_from u uses' -s a -l all -d "Include all pkg versions" +complete -c equery -n '__fish_seen_subcommand_from u uses' -s i -l ignore-l10n -d "Don't show l10n USE flags" # which -complete -c equery -n '__fish_seen_subcommand_from w which' -s m -l include-masked -d "Return highest version ebuild available" -complete -c equery -n '__fish_seen_subcommand_from w which' -s e -l ebuild -d "Print the ebuild" +complete -c equery -n '__fish_seen_subcommand_from w which' -s m -l include-masked -d "Return highest version ebuild available" +complete -c equery -n '__fish_seen_subcommand_from w which' -s e -l ebuild -d "Print the ebuild" diff --git a/share/completions/etex.fish b/share/completions/etex.fish index 6b05c91fb..575e05eaf 100644 --- a/share/completions/etex.fish +++ b/share/completions/etex.fish @@ -1 +1 @@ -complete -c tex -w etex +complete -c etex -w tex diff --git a/share/completions/evince.fish b/share/completions/evince.fish index f63e921f1..12e2c46e3 100644 --- a/share/completions/evince.fish +++ b/share/completions/evince.fish @@ -1,8 +1,27 @@ -complete -c evince -a '(__fish_complete_file_url)' +function __fish_evince_complete_file_url + set -l comp + + if set -q argv[1] + set comp $argv[1] + else + set comp (commandline -ct) + end + + set -l prefix (echo $comp|cut -c 1-7) + + if test file:// = $prefix + set -l stripped (echo $comp|cut -c 8-) + printf "%s\n" file://(complete -C"echo $stripped") + else + echo file:// + end + +end + +complete -c evince -a '(__fish_evince_complete_file_url)' complete -c evince -s p -l page-label -d "The page of the document to display" -x complete -c evince -s f -l fullscreen -d "Run evince in fullscreen mode" complete -c evince -s s -l presentation -d "Run evince in presentation mode" complete -c evince -s w -l preview -d "Run evince as a previewer" -complete -c evince -l display -d "X display to use" - +complete -c evince -l display -d "X display to use" diff --git a/share/completions/exec.fish b/share/completions/exec.fish index b1043bf76..73b535ee0 100644 --- a/share/completions/exec.fish +++ b/share/completions/exec.fish @@ -1,2 +1,2 @@ - -complete -c exec -s h -l help -d 'Display help and exit' +complete -c exec -n 'test (count (commandline -opc)) -eq 1' -s h -l help -d 'Display help and exit' +complete -c exec -xa "(__fish_complete_subcommand)" diff --git a/share/completions/exercism.fish b/share/completions/exercism.fish index b6b62d3a8..df88e0297 100644 --- a/share/completions/exercism.fish +++ b/share/completions/exercism.fish @@ -1,10 +1,10 @@ function __fish_exercism_no_subcommand -d 'Test if exercism has yet to be given the subcommand' - for i in (commandline -opc) - if contains -- $i demo debug configure fetch restore submit unsubmit tracks download help - return 1 - end + for i in (commandline -opc) + if contains -- $i demo debug configure fetch restore submit unsubmit tracks download help + return 1 end - return 0 + end + return 0 end complete -c exercism -s c -l config -d 'path to config file [$EXERCISM_CONFIG_FILE, $XDG_CONFIG_HOME]' diff --git a/share/completions/expand.fish b/share/completions/expand.fish index 93cd7eae9..28e2ea7c0 100644 --- a/share/completions/expand.fish +++ b/share/completions/expand.fish @@ -1,5 +1,5 @@ -complete -c expand -s i -l initial -d 'do not convert tabs after non blanks' -complete -c expand -s t -l tabs -x -d 'have tabs NUMBER characters apart, not 8' -complete -c expand -s t -l tabs -x -d 'use comma separated list of explicit tab positions' -complete -c expand -l help -d 'display this help and exit' -complete -c expand -l version -d 'output version information and exit' +complete -c expand -s i -l initial -d 'do not convert tabs after non blanks' +complete -c expand -s t -l tabs -x -d 'have tabs NUMBER characters apart, not 8' +complete -c expand -s t -l tabs -x -d 'use comma separated list of explicit tab positions' +complete -c expand -l help -d 'display this help and exit' +complete -c expand -l version -d 'output version information and exit' diff --git a/share/completions/ezjail-admin.fish b/share/completions/ezjail-admin.fish index 287bce118..5eb0fc74c 100644 --- a/share/completions/ezjail-admin.fish +++ b/share/completions/ezjail-admin.fish @@ -3,11 +3,11 @@ function __fish_complete_jails end function __fish_complete_running_jails - ezjail-admin list | tail +3 | grep '^.R' | awk '{ print $4 }' + ezjail-admin list | tail +3 | string match -r '^.R' | awk '{ print $4 }' end function __fish_complete_stopped_jails - ezjail-admin list | tail +3 | grep '^.S' | awk '{ print $4 }' + ezjail-admin list | tail +3 | string match -r '^.S' | awk '{ print $4 }' end # archive diff --git a/share/completions/feh.fish b/share/completions/feh.fish index 362f32275..70a95c399 100644 --- a/share/completions/feh.fish +++ b/share/completions/feh.fish @@ -1,7 +1,7 @@ complete -c feh -l action -s A -x -d "Specify a shell command as action to perform on the image" for i in (seq 1 9) - complete -c feh -l action$i -x -d "Extra action triggered with number key "$i + complete -c feh -l action$i -x -d "Extra action triggered with number key "$i end complete -c feh -l auto-zoom -s Z -d "Zoom pictures to screen size" @@ -45,7 +45,7 @@ complete -c feh -l output-dir -s j -r -d "Save files to given directory" complete -c feh -l preload -s p -d "Preload images" complete -c feh -l quiet -s q -d "Don't report non-fatal errors" complete -c feh -l randomize -s z -d "Randomize file list before displaying" -complete -c feh -l recursive -s r -d "Recursivly expand any directory" +complete -c feh -l recursive -s r -d "Recursively expand any directory" complete -c feh -l no-recursive -d "Don't recursively expand any directory (default)" complete -c feh -l reload -s R -x -d "Reload filelist after given time in second" complete -c feh -l reverse -s n -d "Reverse sort order" diff --git a/share/completions/ffmpeg.fish b/share/completions/ffmpeg.fish new file mode 100644 index 000000000..484444600 --- /dev/null +++ b/share/completions/ffmpeg.fish @@ -0,0 +1,130 @@ +function __fish_ffmpeg_help_type + printf '%s\t%s\n' long "Print more options" + printf '%s\t%s\n' full "Print all options" + + for help_type in decoder encoder demuxer muxer filter + set -l regex + + if test $help_type = "filter" + set regex '\S+\s+(\S+)\s+\S+\s+(\S+)' + else + set regex '\S+\s+(\S+)\s+(\S+)' + end + + printf '%s\n' $help_type=(ffmpeg -loglevel quiet -"$help_type"s | string trim | string match -rv '=|:$|^-' | string replace -rf "$regex" '$1\t$2') + end +end + +function __fish_ffmpeg_codec_list + printf '%s\t%s\n' copy "Stream copy" + + set -l identifier + + switch $argv[1] + case video + set identifier '^V.*' + case audio + set identifier '^A.*' + case subtitle + set identifier '^S.*' + case '*' + return 1 + end + + printf '%s\n' (ffmpeg -loglevel quiet -decoders | string trim | string match -rv '=|:$|^-' | string match -r "$identifier" | string replace -rf '\S+\s+(\S+)\s+(\S+)' '$1\t$2') +end + +complete -c ffmpeg -s i -d "Specify input file" + +# Print help / information / capabilities +complete -c ffmpeg -s L -d "Show license" +complete -x -c ffmpeg -s h -s "?" -o help -l help -a "(__fish_ffmpeg_help_type)" -d "Show help" +complete -c ffmpeg -o version -d "Show version" +complete -c ffmpeg -o buildconf -d "Show build configuration" +complete -c ffmpeg -o formats -d "Show available formats" +complete -c ffmpeg -o muxers -d "Show available muxers" +complete -c ffmpeg -o demuxers -d "Show available demuxers" +complete -c ffmpeg -o devices -d "Show available devices" +complete -c ffmpeg -o codecs -d "Show available codecs" +complete -c ffmpeg -o decoders -d "Show available decoders" +complete -c ffmpeg -o encoders -d "Show available encoders" +complete -c ffmpeg -o bsfs -d "Show available bit stream filters" +complete -c ffmpeg -o protocols -d "Show available protocols" +complete -c ffmpeg -o filters -d "Show available filters" +complete -c ffmpeg -o pix_fmts -d "Show available pixel formats" +complete -c ffmpeg -o layouts -d "Show standard channel layouts" +complete -c ffmpeg -o sample_fmts -d "Show available audio sample formats" +complete -c ffmpeg -o colors -d "Show available color names" +complete -c ffmpeg -o sources -d "List sources of the input device" +complete -c ffmpeg -o sinks -d "List sinks of the output device" +complete -c ffmpeg -o hwaccels -d "Show available HW acceleration methods" + +# Global options +complete -x -c ffmpeg -o loglevel -s v -a "quiet panic fatal error warning info verbose debug trace" -d "Set logging level" +complete -c ffmpeg -o report -d "Generate a report" +complete -c ffmpeg -o max_alloc -d "Set maximum size of a single allocated block" +complete -c ffmpeg -s y -d "Overwrite output files" +complete -c ffmpeg -s n -d "Never overwrite output files" +complete -c ffmpeg -o ignore_unknown -d "Ignore unknown stream types" +complete -c ffmpeg -o filter_threads -d "Number of non-complex filter threads" +complete -c ffmpeg -o filter_complex_threads -d "Number of threads for -filter_complex" +complete -c ffmpeg -o stats -d "Print progress report during encoding" +complete -c ffmpeg -o max_error_rate -d "Ratio of errors" +complete -c ffmpeg -o bits_per_raw_sample -d "Set the number of bits per raw sample" +complete -c ffmpeg -o vol -d "Change audio volume" + +# Per-file main options +complete -c ffmpeg -s f -d "Force format" +complete -c ffmpeg -s c -o codec -d "Codec name" +complete -c ffmpeg -o pre -d "Preset name" +complete -c ffmpeg -o map_metadata -d "Set metadata information of outfile from infile" +complete -c ffmpeg -s t -d "Record or transcode \"duration\" seconds of audio/video" +complete -c ffmpeg -o to -d "Record or transcode stop time" +complete -c ffmpeg -o fs -d "Set the limit file size in bytes" +complete -c ffmpeg -o ss -d "Set the start time offset" +complete -c ffmpeg -o seek_timestamp -d "Enable/disable seeking by timestamp with -ss" +complete -c ffmpeg -o timestamp -d "Set the recording timestamp" +complete -c ffmpeg -o metadata -d "Add metadata" +complete -c ffmpeg -o program -d "Add program with specified streams" +complete -x -c ffmpeg -o target -a '(for target in vcd svcd dvd dv dv50 ; echo "$target" ; echo pal-"$target" ; echo ntsc-"$target" ; echo film-"$target" ; end)' -d "Specify target file type" +complete -c ffmpeg -o apad -d "Audio pad" +complete -c ffmpeg -o frames -d "Set the number of frames to output" +complete -c ffmpeg -o filter -d "Set stream filtergraph" +complete -c ffmpeg -o filter_script -d "Read stream filtergraph description from a file" +complete -c ffmpeg -o reinit_filter -d "Reinit filtergraph on input parameter changes" +complete -c ffmpeg -o discard -d "Discard" +complete -c ffmpeg -o disposition -d "Disposition" + +# Video options +complete -c ffmpeg -o vframes -d "Set the number of video frames to output" +complete -c ffmpeg -s r -d "Set frame rate" +complete -c ffmpeg -s s -d "Set frame size" +complete -c ffmpeg -o aspect -d "Set aspect ratio" +complete -c ffmpeg -o bits_per_raw_sample -d "Set the number of bits per raw sample" +complete -c ffmpeg -o vn -d "Disable video" +complete -x -c ffmpeg -o vcodec -o "codec:v" -o "c:v" -a "(__fish_ffmpeg_codec_list video)" -d "Set video codec" +complete -c ffmpeg -o timecode -d "Set initial TimeCode value" +complete -x -c ffmpeg -o pass -a "1 2 3" -d "Select the pass number" +complete -c ffmpeg -o vf -d "Set video filters" +complete -c ffmpeg -o ab -o "b:a" -d "Audio bitrate" +complete -c ffmpeg -s b -o "b:v" -d "Video bitrate" +complete -c ffmpeg -o dn -d "Disable data" + +# Audio options +complete -c ffmpeg -o aframes -d "Set the number of audio frames to output" +complete -c ffmpeg -o aq -d "Set audio quality" +complete -c ffmpeg -o ar -d "Set audio sampling rate" +complete -c ffmpeg -o ac -d "Set number of audio channels" +complete -c ffmpeg -o an -d "Disable audio" +complete -x -c ffmpeg -o acodec -o "codec:a" -o "c:a" -a "(__fish_ffmpeg_codec_list audio)" -d "Set audio codec" +complete -c ffmpeg -o vol -d "Change audio volume" +complete -c ffmpeg -o af -d "Set audio filters" + +# Subtitle options +complete -c ffmpeg -s s -d "Set frame size" +complete -c ffmpeg -o sn -d "Disable subtitle" +complete -x -c ffmpeg -o scodec -o "codec:s" -o "c:s" -a "(__fish_ffmpeg_codec_list subtitle)" -d "Set subtitle codec" +complete -c ffmpeg -o stag -d "Force subtitle tag/fourcc" +complete -c ffmpeg -o fix_sub_duration -d "Fix subtitles duration" +complete -c ffmpeg -o canvas_size -d "Set canvas size" +complete -c ffmpeg -o spre -d "Set the subtitle options to the indicated preset" diff --git a/share/completions/ffplay.fish b/share/completions/ffplay.fish new file mode 100644 index 000000000..d8abe059b --- /dev/null +++ b/share/completions/ffplay.fish @@ -0,0 +1,66 @@ +function __fish_ffplay_help_type + printf '%s\t%s\n' long "Print more options" + printf '%s\t%s\n' full "Print all options" + + for help_type in decoder encoder demuxer muxer filter + set -l regex + + if test $help_type = "filter" + set regex '\S+\s+(\S+)\s+\S+\s+(\S+)' + else + set regex '\S+\s+(\S+)\s+(\S+)' + end + + printf '%s\n' $help_type=(ffplay -loglevel quiet -"$help_type"s | string trim | string match -rv '=|:$|^-' | string replace -rf "$regex" '$1\t$2') + end +end + +function __fish_ffplay_codec_list + printf '%s\t%s\n' copy "Stream copy" + printf '%s\n' (ffplay -loglevel quiet -decoders | string trim | string match -rv '=|:$|^-' | string replace -rf '\S+\s+(\S+)\s+(\S+)' '$1\t$2') +end + +# Main options +complete -c ffplay -s L -d "Show license" +complete -x -c ffplay -s h -s "?" -o help -l help -a "(__fish_ffplay_help_type)" -d "Show help" +complete -c ffplay -o version -d "Show version" +complete -c ffplay -o buildconf -d "Show build configuration" +complete -c ffplay -o formats -d "Show available formats" +complete -c ffplay -o muxers -d "Show available muxers" +complete -c ffplay -o demuxers -d "Show available demuxers" +complete -c ffplay -o devices -d "Show available devices" +complete -c ffplay -o codecs -d "Show available codecs" +complete -c ffplay -o decoders -d "Show available decoders" +complete -c ffplay -o encoders -d "Show available encoders" +complete -c ffplay -o bsfs -d "Show available bit stream filters" +complete -c ffplay -o protocols -d "Show available protocols" +complete -c ffplay -o filters -d "Show available filters" +complete -c ffplay -o pix_fmts -d "Show available pixel formats" +complete -c ffplay -o layouts -d "Show standard channel layouts" +complete -c ffplay -o sample_fmts -d "Show available audio sample formats" +complete -c ffplay -o colors -d "Show available color names" +complete -x -c ffplay -o loglevel -s v -a "quiet panic fatal error warning info verbose debug trace" -d "Set logging level" +complete -c ffplay -o report -d "Generate a report" +complete -c ffplay -o max_alloc -d "Set maximum size of a single allocated block" +complete -c ffplay -o sources -d "List sources of the input device" +complete -c ffplay -o sinks -d "List sinks of the output device" +complete -c ffplay -s x -d "Force displayed width" +complete -c ffplay -s y -d "Force displayed height" +complete -c ffplay -s s -d "Set frame size" +complete -c ffplay -o fs -d "Force full screen" +complete -c ffplay -o an -d "Disable audio" +complete -c ffplay -o vn -d "Disable video" +complete -c ffplay -o sn -d "Disable subtitle" +complete -c ffplay -o ss -d "Seek to a given position in seconds" +complete -c ffplay -s t -d "Play "duration" seconds of audio/video" +complete -x -c ffplay -o bytes -a "(printf '%s\t%s\n' 0 off ; printf '%s\t%s\n' 1 on ; printf '%s\t%s\n' -1 auto)" -d "Seek by bytes" +complete -c ffplay -o nodisp -d "Disable graphical display" +complete -c ffplay -o noborder -d "Borderless window" +complete -c ffplay -o volume -d "Set startup volume" +complete -c ffplay -s f -d "Force format" +complete -c ffplay -o window_title -d "Set window title" +complete -c ffplay -o af -d "Set audio filters" +complete -x -c ffplay -o showmode -a "(printf '%s\t%s\n' 0 video ; printf '%s\t%s\n' 1 waves ; printf '%s\t%s\n' 2 RDFT)" -d "Select show mode" +complete -c ffplay -s i -d "Read specified file" +complete -x -c ffplay -o codec -a "(__fish_ffplay_codec_list)" -d "Force decoder" +complete -c ffplay -o autorotate -d "Automatically rotate video" diff --git a/share/completions/ffprobe.fish b/share/completions/ffprobe.fish new file mode 100644 index 000000000..ff912423c --- /dev/null +++ b/share/completions/ffprobe.fish @@ -0,0 +1,78 @@ +function __fish_ffprobe_help_type + printf '%s\t%s\n' long "Print more options" + printf '%s\t%s\n' full "Print all options" + + for help_type in decoder encoder demuxer muxer filter + set -l regex + + if test $help_type = "filter" + set regex '\S+\s+(\S+)\s+\S+\s+(\S+)' + else + set regex '\S+\s+(\S+)\s+(\S+)' + end + + printf '%s\n' $help_type=(ffprobe -loglevel quiet -"$help_type"s | string trim | string match -rv '=|:$|^-' | string replace -rf "$regex" '$1\t$2') + end +end + +# Main options +complete -c ffprobe -s L -d "Show license" +complete -x -c ffprobe -s h -s "?" -o help -l help -a "(__fish_ffprobe_help_type)" -d "Show help" +complete -c ffprobe -o version -d "Show version" +complete -c ffprobe -o buildconf -d "Show build configuration" +complete -c ffprobe -o formats -d "Show available formats" +complete -c ffprobe -o muxers -d "Show available muxers" +complete -c ffprobe -o demuxers -d "Show available demuxers" +complete -c ffprobe -o devices -d "Show available devices" +complete -c ffprobe -o codecs -d "Show available codecs" +complete -c ffprobe -o decoders -d "Show available decoders" +complete -c ffprobe -o encoders -d "Show available encoders" +complete -c ffprobe -o bsfs -d "Show available bit stream filters" +complete -c ffprobe -o protocols -d "Show available protocols" +complete -c ffprobe -o filters -d "Show available filters" +complete -c ffprobe -o pix_fmts -d "Show available pixel formats" +complete -c ffprobe -o layouts -d "Show standard channel layouts" +complete -c ffprobe -o sample_fmts -d "Show available audio sample formats" +complete -c ffprobe -o colors -d "Show available color names" +complete -x -c ffprobe -o loglevel -s v -a "quiet panic fatal error warning info verbose debug trace" -d "Set logging level" +complete -c ffprobe -o report -d "Generate a report" +complete -c ffprobe -o max_alloc -d "Set maximum size of a single allocated block" +complete -c ffprobe -o cpuflags -d "Force specific cpu flags" +complete -c ffprobe -o hide_banner -d "Do not show program banner" +complete -c ffprobe -o sources -d "List sources of the input device" +complete -c ffprobe -o sinks -d "List sinks of the output device" +complete -c ffprobe -s f -d "Force format" +complete -c ffprobe -o unit -d "Show unit of the displayed values" +complete -c ffprobe -o prefix -d "Use SI prefixes for the displayed values" +complete -c ffprobe -o byte_binary_prefix -d "Use binary prefixes for byte units" +complete -c ffprobe -o sexagesimal -d "Use sexagesimal format HOURS:MM:SS.MICROSECONDS for time units" +complete -c ffprobe -o pretty -d "Prettify the format of displayed values, make it more human readable" +complete -x -c ffprobe -o print_format -a "default compact csv flat ini json xml" -d "Set the output printing format" +complete -x -c ffprobe -o of -a "default compact csv flat ini json xml" -d "Alias for -print_format" +complete -c ffprobe -o select_streams -d "Select the specified streams" +complete -c ffprobe -o sections -d "Print sections structure and section information, and exit" +complete -c ffprobe -o show_data -d "Show packets data" +complete -c ffprobe -o show_data_hash -d "Show packets data hash" +complete -c ffprobe -o show_error -d "Show probing error" +complete -c ffprobe -o show_format -d "Show format/container info" +complete -c ffprobe -o show_frames -d "Show frames info" +complete -c ffprobe -o show_format_entry -d "Show a particular entry from the format/container info" +complete -c ffprobe -o show_entries -d "Show a set of specified entries" +complete -c ffprobe -o show_log -d "Show log" +complete -c ffprobe -o show_packets -d "Show packets info" +complete -c ffprobe -o show_programs -d "Show programs info" +complete -c ffprobe -o show_stream -d "Show streams info" +complete -c ffprobe -o show_chapters -d "Show chapters info" +complete -c ffprobe -o count_frames -d "Count the number of frames per stream" +complete -c ffprobe -o count_packets -d "Count the number of packets per stream" +complete -c ffprobe -o show_program_version -d "Show ffprobe version" +complete -c ffprobe -o show_library_versions -d "Show library versions" +complete -c ffprobe -o show_versions -d "Show program and library versions" +complete -c ffprobe -o show_pixel_formats -d "Show pixel format descriptions" +complete -c ffprobe -o show_private_data -d "Show private data" +complete -c ffprobe -o private -d "Same as show_private_data" +complete -c ffprobe -o bitexact -d "Force bitexact output" +complete -c ffprobe -o read_intervals -d "Set read intervals" +complete -c ffprobe -o default -d "Generic catch all option" +complete -c ffprobe -s i -d "Read specified file" +complete -c ffprobe -o find_stream_info -d "Read and decode the streams to fill missing information with heuristics" diff --git a/share/completions/fgrep.fish b/share/completions/fgrep.fish index 0ce7c6a6c..211209a28 100644 --- a/share/completions/fgrep.fish +++ b/share/completions/fgrep.fish @@ -1 +1 @@ -complete -c grep -w fgrep +complete -c fgrep -w grep diff --git a/share/completions/find.fish b/share/completions/find.fish index fa120d57b..fab40bc62 100644 --- a/share/completions/find.fish +++ b/share/completions/find.fish @@ -20,7 +20,7 @@ complete -c find -o mindepth -d "Do not apply any tests or actions at levels les complete -c find -o mount -o xdev -d "Don't descend directories on other filesystems" complete -c find -o noignore_readdir_race -d "Print error messages for files that are deleted while running find" complete -c find -o noleaf -d "Do not optimize by assuming that directories contain 2 fewer subdirectories than their hard link count" -complete -c find -o regextype -d "Specify regular expression type" -a "emacs posix-awk posix-basic posiz-egrep posix-extended" +complete -c find -o regextype -d "Specify regular expression type" -a "emacs posix-awk posix-basic posix-egrep posix-extended" complete -c find -o version -l version -d "Display version and exit" complete -c find -o warn -d "Turn warnings on" complete -c find -o nowarn -d "Turn warnings off" @@ -47,7 +47,7 @@ complete -c find -o ilname -d "File is symlink matching specified case insensiti complete -c find -o iname -d "File name matches case insensitive pattern" -r complete -c find -o inum -d "File has specified inode number" -r complete -c find -o ipath -o iwholename -d "File path matches case insensitive pattern" -r -complete -c find -o iregex -d "File name matches case insensetive regex" -r +complete -c find -o iregex -d "File name matches case insensitive regex" -r complete -c find -o links -d "File has specified number of links" -r -a "1 2 3 4 5 6 7 8 9" complete -c find -o lname -d "File is symlink matching specified pattern" -r @@ -73,7 +73,7 @@ complete -c find -o true -d "Always true" set -l type_comp 'b\t"Block device" c\t"Character device" d\t"Directory" p\t"Named pipe" f\t"File" l\t"Symbolic link" s\t"Socket"' -complete -c find -o type -d "File is of specified type" -x -a $type_comp +complete -c find -o type -d "File is of specified type" -x -a $type_comp complete -c find -o uid -d "File's owner has specified numeric user ID" -r complete -c find -o used -d "File was last accessed specified number of days after its status was last changed" -r diff --git a/share/completions/fish.fish b/share/completions/fish.fish index ab3bfcdde..e70d2ad05 100644 --- a/share/completions/fish.fish +++ b/share/completions/fish.fish @@ -6,12 +6,13 @@ complete -c fish -s n -l no-execute -d "Only parse input, do not execute" complete -c fish -s i -l interactive -d "Run in interactive mode" complete -c fish -s l -l login -d "Run as a login shell" complete -c fish -s p -l profile -d "Output profiling information to specified file" -r -complete -c fish -s d -l debug-level -d "Specify verbosity level" -x -a "0\t'Warnings silenced' +complete -c fish -s d -l debug -d "Specify verbosity level" -x -a "0\t'Warnings silenced' 1\t'Default' 2\t'Basic debug output' 3\t'More debug output' 4\t'Much more debug output' -5\t'Too much debug output'" +5\t'Too much debug output' +(fish --print-debug-categories | string replace ' ' \t)" complete -c fish -s D -l debug-stack-frames -d "Show specified # of frames with debug output" -x -a "(seq 128)\t\n" complete -c fish -s P -l private -d "Do not persist history" @@ -21,4 +22,7 @@ function __fish_complete_features printf "%s\n" "$arg_comma"$features #TODO: remove existing args end complete -c fish -s f -l features -d "Run with comma-separated feature flags enabled" -a "(__fish_complete_features)" -x -complete -c fish -x -a "(__fish_complete_suffix .fish)" \ No newline at end of file +complete -c fish -l print-rusage-self -d "Print stats from getrusage at exit" -f +complete -c fish -l print-debug-categories -d "Print the debug categories fish knows" -f + +complete -c fish -x -a "(__fish_complete_suffix .fish)" diff --git a/share/completions/flac.fish b/share/completions/flac.fish index c7818bc7b..a7693b8f3 100644 --- a/share/completions/flac.fish +++ b/share/completions/flac.fish @@ -1,66 +1,66 @@ # # Completions for flac # -complete -c flac -s v -l version -d "Show the flac version number" -complete -c flac -s h -l help -d "Show this screen" -complete -c flac -s H -l explain -d "Show detailed explanation of usage and options" -complete -c flac -s d -l decode -d "Decode (the default behavior is to encode)" -complete -c flac -s t -l test -d "Same as -d except no decoded file is written" -complete -c flac -s a -l analyze -d "Same as -d except an analysis file is written" -complete -c flac -s c -l stdout -d "Write output to stdout" -complete -c flac -s s -l silent -d "Do not write runtime encode/decode statistics" -complete -c flac -l totally-silent -d "Do not print anything including errors" -complete -c flac -s f -l force -d "Force overwriting of output files" -complete -c flac -r -s o -l output-name -d "Force the output file name" -complete -c flac -l output-prefix -d "Prepend STRING to output names" -complete -c flac -l delete-input-file -d "Deletes after a successful encode/decode" -complete -c flac -l skip -d "Skip the given initial samples for each input {#|mm:ss.ss}" -complete -c flac -l until -d "Stop at the given sample for each input file {#|[+|-]mm:ss.ss}" -complete -c flac -l ogg -d "Use Ogg as transport layer" -complete -c flac -l serial-number -d "Serial number to use for the FLAC stream" -complete -c flac -l residual-text -d "Include residual signal in text output" -complete -c flac -l residual-gnuplot -d "Generate gnuplot files of residual distribution" -complete -c flac -s F -l decode-through-errors -d "Continue decoding through stream errors" -complete -c flac -l cue -d "Set the beginning and ending cuepoints to decode [#.#][-[#.#]]" -complete -c flac -s V -l verify -d "Verify a correct encoding" -complete -c flac -l lax -d "Allow encoder to generate non-Subset files" -complete -c flac -l sector-align -d "Align multiple files on sector boundaries" -complete -c flac -l replay-gain -d "Calculate ReplayGain & store in Vorbis comments" -complete -c flac -l cuesheet -d "Import cuesheet and store in CUESHEET block" -complete -c flac -x -s T -l tag -d "Add a Vorbis comment FIELD=VALUE; may appear multiple times" -complete -c flac -x -s T -l tag-from-file -d "Read tags from file" -complete -c flac -x -s S -l seekpoint -d "Add seek point(s) {#|X|#x|#s}" -complete -c flac -x -s P -l padding -d "Write a PADDING block of length #" -complete -c flac -s 0 -l compression-level-0 -d "Synonymous with -l 0 -b 1152 -r 22" -complete -c flac -l fast -d "Synonymous with -l 0 -b 1152 -r 22" -complete -c flac -s 1 -l compression-level-1 -d "Synonymous with -l 0 -b 1152 -M -r 2,2" -complete -c flac -s 2 -l compression-level-2 -d "Synonymous with -l 0 -b 1152 -m -r 3" -complete -c flac -s 3 -l compression-level-3 -d "Synonymous with -l 6 -b 4608 -r 3,3" -complete -c flac -s 4 -l compression-level-4 -d "Synonymous with -l 8 -b 4608 -M -r 3,3" -complete -c flac -s 5 -l compression-level-5 -d "Synonymous with -l 8 -b 4608 -m -r 3,3" -complete -c flac -s 6 -l compression-level-6 -d "Synonymous with -l 8 -b 4608 -m -r 4" -complete -c flac -s 7 -l compression-level-7 -d "Synonymous with -l 8 -b 4608 -m -e -r 6" -complete -c flac -s 8 -l compression-level-8 -d "Synonymous with -l 12 -b 4608 -m -e -r 6" -complete -c flac -l best -d "Synonymous with -l 12 -b 4608 -m -e -r 6" -complete -c flac -x -s b -l blocksize -d "Specify blocksize in samples" -complete -c flac -s m -l mid-side -d "Try mid-side coding for each frame" -complete -c flac -s M -l adaptive-mid-side -d "Adaptive mid-side coding for all frames" -complete -c flac -s e -l exhaustive-model-search -d "Do exhaustive model search (expensive!)" -complete -c flac -x -s l -l max-lpc-order -d "Max LPC order; 0 => only fixed predictors" -complete -c flac -s p -l qlp-coeff-precision-search -d "Exhaustively search LP coeff quantization" -complete -c flac -x -s q -l qlp-coeff-precision -d "Specify precision in bits" -complete -c flac -x -s r -l rice-partition-order -d "Set [min,]max residual partition order" +complete -c flac -s v -l version -d "Show the flac version number" +complete -c flac -s h -l help -d "Show this screen" +complete -c flac -s H -l explain -d "Show detailed explanation of usage and options" +complete -c flac -s d -l decode -d "Decode (the default behavior is to encode)" +complete -c flac -s t -l test -d "Same as -d except no decoded file is written" +complete -c flac -s a -l analyze -d "Same as -d except an analysis file is written" +complete -c flac -s c -l stdout -d "Write output to stdout" +complete -c flac -s s -l silent -d "Do not write runtime encode/decode statistics" +complete -c flac -l totally-silent -d "Do not print anything including errors" +complete -c flac -s f -l force -d "Force overwriting of output files" +complete -c flac -r -s o -l output-name -d "Force the output file name" +complete -c flac -l output-prefix -d "Prepend STRING to output names" +complete -c flac -l delete-input-file -d "Deletes after a successful encode/decode" +complete -c flac -l skip -d "Skip the given initial samples for each input {#|mm:ss.ss}" +complete -c flac -l until -d "Stop at the given sample for each input file {#|[+|-]mm:ss.ss}" +complete -c flac -l ogg -d "Use Ogg as transport layer" +complete -c flac -l serial-number -d "Serial number to use for the FLAC stream" +complete -c flac -l residual-text -d "Include residual signal in text output" +complete -c flac -l residual-gnuplot -d "Generate gnuplot files of residual distribution" +complete -c flac -s F -l decode-through-errors -d "Continue decoding through stream errors" +complete -c flac -l cue -d "Set the beginning and ending cuepoints to decode [#.#][-[#.#]]" +complete -c flac -s V -l verify -d "Verify a correct encoding" +complete -c flac -l lax -d "Allow encoder to generate non-Subset files" +complete -c flac -l sector-align -d "Align multiple files on sector boundaries" +complete -c flac -l replay-gain -d "Calculate ReplayGain & store in Vorbis comments" +complete -c flac -l cuesheet -d "Import cuesheet and store in CUESHEET block" +complete -c flac -x -s T -l tag -d "Add a Vorbis comment FIELD=VALUE; may appear multiple times" +complete -c flac -x -s T -l tag-from-file -d "Read tags from file" +complete -c flac -x -s S -l seekpoint -d "Add seek point(s) {#|X|#x|#s}" +complete -c flac -x -s P -l padding -d "Write a PADDING block of length #" +complete -c flac -s 0 -l compression-level-0 -d "Synonymous with -l 0 -b 1152 -r 22" +complete -c flac -l fast -d "Synonymous with -l 0 -b 1152 -r 22" +complete -c flac -s 1 -l compression-level-1 -d "Synonymous with -l 0 -b 1152 -M -r 2,2" +complete -c flac -s 2 -l compression-level-2 -d "Synonymous with -l 0 -b 1152 -m -r 3" +complete -c flac -s 3 -l compression-level-3 -d "Synonymous with -l 6 -b 4608 -r 3,3" +complete -c flac -s 4 -l compression-level-4 -d "Synonymous with -l 8 -b 4608 -M -r 3,3" +complete -c flac -s 5 -l compression-level-5 -d "Synonymous with -l 8 -b 4608 -m -r 3,3" +complete -c flac -s 6 -l compression-level-6 -d "Synonymous with -l 8 -b 4608 -m -r 4" +complete -c flac -s 7 -l compression-level-7 -d "Synonymous with -l 8 -b 4608 -m -e -r 6" +complete -c flac -s 8 -l compression-level-8 -d "Synonymous with -l 12 -b 4608 -m -e -r 6" +complete -c flac -l best -d "Synonymous with -l 12 -b 4608 -m -e -r 6" +complete -c flac -x -s b -l blocksize -d "Specify blocksize in samples" +complete -c flac -s m -l mid-side -d "Try mid-side coding for each frame" +complete -c flac -s M -l adaptive-mid-side -d "Adaptive mid-side coding for all frames" +complete -c flac -s e -l exhaustive-model-search -d "Do exhaustive model search (expensive!)" +complete -c flac -x -s l -l max-lpc-order -d "Max LPC order; 0 => only fixed predictors" +complete -c flac -s p -l qlp-coeff-precision-search -d "Exhaustively search LP coeff quantization" +complete -c flac -x -s q -l qlp-coeff-precision -d "Specify precision in bits" +complete -c flac -x -s r -l rice-partition-order -d "Set [min,]max residual partition order" complete -c flac -l endian=big -d "Set byte order for samples" complete -c flac -l endian=little -d "Set byte order for samples" -complete -c flac -l channels -d "Number of channels" -complete -c flac -l bps -d "Number of bits per sample" -complete -c flac -l sample-rate -d "Sample rate in Hz" +complete -c flac -l channels -d "Number of channels" +complete -c flac -l bps -d "Number of bits per sample" +complete -c flac -l sample-rate -d "Sample rate in Hz" complete -c flac -l sign=unsigned -d "Sign of samples" complete -c flac -l sign=signed -d "Sign of samples" -complete -c flac -l input-size -d "Size of the raw input in bytes" -complete -c flac -l force-aiff-format -d "Force decoding to AIFF format" -complete -c flac -l force-raw-format -d "Treat input or output as raw samples" +complete -c flac -l input-size -d "Size of the raw input in bytes" +complete -c flac -l force-aiff-format -d "Force decoding to AIFF format" +complete -c flac -l force-raw-format -d "Treat input or output as raw samples" complete -c flac -l no-adaptive-mid-side -d "No adaptive mid-side coding for all frames" complete -c flac -l no-decode-through-errors -d "Don't continue decoding through stream errors" diff --git a/share/completions/flatpak.fish b/share/completions/flatpak.fish index 9f25836b7..5964fee54 100644 --- a/share/completions/flatpak.fish +++ b/share/completions/flatpak.fish @@ -1,34 +1,34 @@ # Completions for flatpak, an "Application deployment framework for desktop apps" # (http://flatpak.org) set -l commands install update uninstall list info run override make-current enter document-{export,unexport,info,list} \ -remote-{add,modify,delete,list,ls} build build-{init,finish,export,bundle,import-bundle,sign,update-repo} + remote-{add,modify,delete,list,ls} build build-{init,finish,export,bundle,import-bundle,sign,update-repo} -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a install -d 'Install an application or runtime from a remote' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a update -d 'Update an installed application or runtime' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a uninstall -d 'Uninstall an installed application or runtime' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a list -d 'List installed apps and/or runtimes' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a info -d 'Show info for installed app or runtime' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a run -d 'Run an application' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a override -d 'Override permissions for an application' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a make-current -d 'Specify default version to run' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a enter -d 'Enter the namespace of a running application' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a document-export -d 'Grant an application access to a specific file' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a document-unexport -d 'Revoke access to a specific file' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a document-info -d 'Show information about a specific file' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a document-list -d 'List exported files' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a remote-add -d 'Add a new remote repository (by URL)' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a remote-modify -d 'Modify properties of a configured remote' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a remote-delete -d 'Delete a configured remote' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a remote-list -d 'List all configured remotes' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a remote-ls -d 'List contents of a configured remote' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-init -d 'Initialize a directory for building' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build -d 'Run a build command inside the build dir' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-finish -d 'Finish a build dir for export' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-export -d 'Export a build dir to a repository' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-bundle -d 'Create a bundle file from a build directory' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a install -d 'Install an application or runtime from a remote' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a update -d 'Update an installed application or runtime' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a uninstall -d 'Uninstall an installed application or runtime' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a list -d 'List installed apps and/or runtimes' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a info -d 'Show info for installed app or runtime' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a run -d 'Run an application' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a override -d 'Override permissions for an application' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a make-current -d 'Specify default version to run' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a enter -d 'Enter the namespace of a running application' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a document-export -d 'Grant an application access to a specific file' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a document-unexport -d 'Revoke access to a specific file' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a document-info -d 'Show information about a specific file' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a document-list -d 'List exported files' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a remote-add -d 'Add a new remote repository (by URL)' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a remote-modify -d 'Modify properties of a configured remote' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a remote-delete -d 'Delete a configured remote' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a remote-list -d 'List all configured remotes' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a remote-ls -d 'List contents of a configured remote' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-init -d 'Initialize a directory for building' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build -d 'Run a build command inside the build dir' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-finish -d 'Finish a build dir for export' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-export -d 'Export a build dir to a repository' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-bundle -d 'Create a bundle file from a build directory' complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-import-bundle -d 'Import a bundle file' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-sign -d 'Sign an application or runtime' -complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-update-repo -d 'Update the summary file in a repository' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-sign -d 'Sign an application or runtime' +complete -f -c flatpak -n "not __fish_seen_subcommand_from $commands" -a build-update-repo -d 'Update the summary file in a repository' complete -f -c flatpak -n "__fish_seen_subcommand_from run" -a "(flatpak list --app | string match -r '\S+')" complete -f -c flatpak -n "__fish_seen_subcommand_from info uninstall" -a "(flatpak list | string match -r '\S+')" diff --git a/share/completions/for.fish b/share/completions/for.fish new file mode 100644 index 000000000..e7d74a390 --- /dev/null +++ b/share/completions/for.fish @@ -0,0 +1,3 @@ +complete -c for -n 'test (count (commandline -opc)) -eq 1' -s h -l help -d 'Display help and exit' +complete -c for -n 'test (count (commandline -opc)) -eq 1' -f +complete -c for -n 'test (count (commandline -opc)) -eq 2' -xa in diff --git a/share/completions/fossil.fish b/share/completions/fossil.fish index 6b07c7a24..b5ce82140 100644 --- a/share/completions/fossil.fish +++ b/share/completions/fossil.fish @@ -222,7 +222,7 @@ complete -c fossil -n '__fish_fossil_command finfo' -s s -l status -d 'Select st complete -c fossil -n __fish_fossil_needs_command -f -a help -d 'Display help' complete -c fossil -n '__fish_fossil_command help' -s a -l all -d 'Show main and auxiliary commands' complete -c fossil -n '__fish_fossil_command help' -s t -l test -d 'Show test commands only' -complete -c fossil -n '__fish_fossil_command help' -s x -l aux -d 'Show auxilary commands only' +complete -c fossil -n '__fish_fossil_command help' -s x -l aux -d 'Show auxiliary commands only' complete -c fossil -n '__fish_fossil_command help' -s w -l www -d 'Show list of web UI pages' # import diff --git a/share/completions/fsharpc.fish b/share/completions/fsharpc.fish new file mode 100644 index 000000000..1b9094173 --- /dev/null +++ b/share/completions/fsharpc.fish @@ -0,0 +1,90 @@ +# Completions for the F# Compiler +# See: https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/compiler-options + +# Output files +complete -c fsharpc -o "o:" -l "out:" -d "Name of the output file" +complete -c fsharpc -o "a:exe" -l "target:exe" -d "Build a console executable" +complete -c fsharpc -o "a:winexe" -l "target:winexe" -d "Build a Windows executable" +complete -c fsharpc -o "a:library" -l "target:library" -d "Build a library" +complete -c fsharpc -o "a:module" -l "target:module" -d "Build a module that can be added to another assembly" +complete -c fsharpc -l delaysign -l "delaysign+" -d "Delay-sign the assembly using only the public portion of the strong name key" +complete -c fsharpc -l "delaysign-" -d "Disable --delaysign" +complete -c fsharpc -l "doc:" -d "Write the xmldoc of the assembly to the given file" +complete -c fsharpc -l "keyfile:" -d "Specify a strong name key file" +complete -c fsharpc -l "keycontainer:" -d "Specify a strong name key container" +complete -c fsharpc -l "platform:x86" -d "Limit the platform this code can run on to x86" +complete -c fsharpc -l "platform:Itanium" -d "Limit the platform this code can run on to Itanium" +complete -c fsharpc -l "platform:x64" -d "Limit the platform this code can run on to x64" +complete -c fsharpc -l "platform:anycpu32bitpreferred" -d "Limit the platform this code can run on to anycpu32bitpreferred" +complete -c fsharpc -l "platform:anycpu" -d "Limit the platform this code can run on to anycpu (default)" +complete -c fsharpc -l nooptimizationdata -d "Only include optimization information essential for implementing inlined constructs" +complete -c fsharpc -l nointerfacedata -d "Don't add a resource to the generated assembly containing F#-specific metadata" +complete -c fsharpc -l "sig:" -d "Print the inferred interface of the assembly to a file" + +# Input files +complete -c fsharpc -o "r:" -l "reference:" -d "Reference an assembly" + +# Resources +complete -c fsharpc -l "win32res:" -d "Specify a Win32 resource file (.res)" +complete -c fsharpc -l "win32manifest:" -d "Specify a Win32 manifest file" +complete -c fsharpc -l nowin32manifest -d "Do not include the default Win32 manifest" +complete -c fsharpc -l "resource:" -d "Embed the specified managed resource" +complete -c fsharpc -l "linkresource:" -d "Link the specified resource to this assembly where the resinfo format is [,[,public|private]]" + +# Code generation +complete -c fsharpc -s g -o "g+" -l debug -l "debug+" -d "Emit debug information" +complete -c fsharpc -o "g-" -l "debug-" -d "Disable --debug" +for arguments in full pdbonly portable embedded + complete -c fsharpc -o "g:$arguments" -l "debug:$arguments" -d "Specify debugging type" +end + +complete -c fsharpc -s O -o "O+" -l optimize -l "optimize+" -d "Enable optimizations" +complete -c fsharpc -o "O-" -l "optimize-" -d "Disable --optimize" +complete -c fsharpc -l tailcalls -l "tailcalls+" -d "Enable or disable tailcalls" +complete -c fsharpc -l "tailcalls-" -d "Disable --tailcalls" +complete -c fsharpc -l deterministic -l "deterministic+" -d "Produce a deterministic assembly (including module version GUID and timestamp)" +complete -c fsharpc -l "deterministic-" -d "Disable --deterministic" +complete -c fsharpc -l crossoptimize -l "crossoptimize+" -d "Enable or disable cross-module optimizations" +complete -c fsharpc -l "crossoptimize-" -d "Disable --crossoptimize" + +# Errors and warnings +complete -c fsharpc -l warnaserror -l "warnaserror+" -d "Report all warnings as errors" +complete -c fsharpc -l "warnaserror-" -d "Disable --warnaserror" +complete -c fsharpc -l "warnaserror:" -l "warnaserror+:" -d "Report specific warnings as errors" +complete -c fsharpc -l "warnaserror-:" -d "Disable --warnaserror:" + +for warning_level in (seq 0 5) + complete -c fsharpc -l "warn:$warning_level" -d "Set a warning level to $warning_level" +end + +complete -c fsharpc -l "nowarn:" -d "Disable specific warning messages" +complete -c fsharpc -l "warnon:" -d "Enable specific warnings that may be off by default" +complete -c fsharpc -l consolecolors -l "consolecolors+" -d "Output warning and error messages in color" +complete -c fsharpc -l "consolecolors-" -d "Disable --consolecolors" + +# Language +complete -c fsharpc -l checked -l "checked+" -d "Generate overflow checks" +complete -c fsharpc -l "checked-" -d "Disable --checked" +complete -c fsharpc -o "d:" -l "define:" -d "Define conditional compilation symbols" +complete -c fsharpc -l mlcompatibility -d "Ignore ML compatibility warnings" + +# Miscellaneous +complete -c fsharpc -l nologo -d "Suppress compiler copyright message" +complete -c fsharpc -s "?" -l help -d "Display this usage message" + +# Advanced +complete -c fsharpc -l "codepage:" -d "Specify the codepage used to read source files" +complete -c fsharpc -l utf8output -d "Output messages in UTF-8 encoding" +complete -c fsharpc -l fullpaths -d "Output messages with fully qualified paths" +complete -c fsharpc -o "I:" -l "lib:" -d "Specify a directory for the include path which is used to resolve source files and assemblies" +complete -c fsharpc -l simpleresolution -d "Resolve assembly references using directory-based rules rather than MSBuild resolution" +complete -c fsharpc -l "baseaddress:" -d "Base address for the library to be built" +complete -c fsharpc -l noframework -d "Do not reference the default CLI assemblies by default" +complete -c fsharpc -l standalone -d "Statically link the F# library and all referenced DLLs that depend on it into the assembly being generated" +complete -c fsharpc -l "staticlink:" -d "Statically link the given assembly and all referenced DLLs that depend on this assembly" +complete -c fsharpc -l "pdb:" -d "Name the output debug file" +complete -c fsharpc -l highentropyva -l "highentropyva+" -d "Enable high-entropy ASLR" +complete -c fsharpc -l "highentropyva-" -d "Disable --highentropyva" +complete -c fsharpc -l "subsystemversion:" -d "Specify subsystem version of this assembly" +complete -c fsharpc -l "quotations-debug" -l "quotations-debug+" -d "Emit debug information in quotations" +complete -c fsharpc -l "quotations-debug-" -d "Disable --quotations-debug" diff --git a/share/completions/fsharpi.fish b/share/completions/fsharpi.fish new file mode 100644 index 000000000..669229b58 --- /dev/null +++ b/share/completions/fsharpi.fish @@ -0,0 +1,67 @@ +# Completions for the F# Interactive +# See: https://docs.microsoft.com/en-us/dotnet/fsharp/language-reference/fsharp-interactive-options + +# Input files +complete -c fsharpi -l "use:" -d "Use the given file on startup as initial input" +complete -c fsharpi -l "load:" -d "#load the given file on startup" +complete -c fsharpi -o "r:" -l "reference:" -d "Reference an assembly" + +# Code generation +complete -c fsharpi -s g -o "g+" -l debug -l "debug+" -d "Emit debug information" +complete -c fsharpi -o "g-" -l "debug-" -d "Disable --debug" +for arguments in full pdbonly portable embedded + complete -c fsharpi -o "g:$arguments" -l "debug:$arguments" -d "Specify debugging type" +end + +complete -c fsharpi -s O -o "O+" -l optimize -l "optimize+" -d "Enable optimizations" +complete -c fsharpi -o "O-" -l "optimize-" -d "Disable --optimize" +complete -c fsharpi -l tailcalls -l "tailcalls+" -d "Enable or disable tailcalls" +complete -c fsharpi -l "tailcalls-" -d "Disable --tailcalls" +complete -c fsharpi -l deterministic -l "deterministic+" -d "Produce a deterministic assembly (including module version GUID and timestamp)" +complete -c fsharpi -l "deterministic-" -d "Disable --deterministic" +complete -c fsharpi -l crossoptimize -l "crossoptimize+" -d "Enable or disable cross-module optimizations" +complete -c fsharpi -l "crossoptimize-" -d "Disable --crossoptimize" + +# Errors and warnings +complete -c fsharpi -l warnaserror -l "warnaserror+" -d "Report all warnings as errors" +complete -c fsharpi -l "warnaserror-" -d "Disable --warnaserror" +complete -c fsharpi -l "warnaserror:" -l "warnaserror+:" -d "Report specific warnings as errors" +complete -c fsharpi -l "warnaserror-:" -d "Disable --warnaserror:" + +for warning_level in (seq 0 5) + complete -c fsharpi -l "warn:$warning_level" -d "Set a warning level to $warning_level" +end + +complete -c fsharpi -l "nowarn:" -d "Disable specific warning messages" +complete -c fsharpi -l "warnon:" -d "Enable specific warnings that may be off by default" +complete -c fsharpi -l consolecolors -l "consolecolors+" -d "Output warning and error messages in color" +complete -c fsharpi -l "consolecolors-" -d "Disable --consolecolors" + +# Language +complete -c fsharpi -l checked -l "checked+" -d "Generate overflow checks" +complete -c fsharpi -l "checked-" -d "Disable --checked" +complete -c fsharpi -o "d:" -l "define:" -d "Define conditional compilation symbols" +complete -c fsharpi -l mlcompatibility -d "Ignore ML compatibility warnings" + +# Miscellaneous +complete -c fsharpi -l nologo -d "Suppress compiler copyright message" +complete -c fsharpi -s "?" -l help -d "Display this usage message" + +# Advanced +complete -c fsharpi -l "codepage:" -d "Specify the codepage used to read source files" +complete -c fsharpi -l utf8output -d "Output messages in UTF-8 encoding" +complete -c fsharpi -l fullpaths -d "Output messages with fully qualified paths" +complete -c fsharpi -o "I:" -l "lib:" -d "Specify a directory for the include path which is used to resolve source files and assemblies" +complete -c fsharpi -l simpleresolution -d "Resolve assembly references using directory-based rules rather than MSBuild resolution" +complete -c fsharpi -l "targetprofile:" -d "Specify target framework profile of this assembly. Valid values are mscorlib, netcore or netstandard. Default - mscorlib" +complete -c fsharpi -l noframework -d "Do not reference the default CLI assemblies by default" +complete -c fsharpi -l exec -d "Exit fsi after loading the files or running the .fsx script given on the command line" +complete -c fsharpi -l gui -l "gui+" -d "Execute interactions on a Windows Forms event loop (on by default)" +complete -c fsharpi -l "gui-" -d "Disable --gui" +complete -c fsharpi -l quiet -d "Suppress fsi writing to stdout" +complete -c fsharpi -l readline -l "readline+" -d "Support TAB completion in console (on by default)" +complete -c fsharpi -l "readline-" -d "Disable --readline" +complete -c fsharpi -l "quotations-debug" -l "quotations-debug+" -d "Emit debug information in quotations" +complete -c fsharpi -l "quotations-debug-" -d "Disable --quotations-debug" +complete -c fsharpi -l shadowcopyreferences -l "shadowcopyreferences+" -d "Prevents references from being locked by the F# Interactive process" +complete -c fsharpi -l "shadowcopyreferences-" -d "Disable --shadowcopyreferences" diff --git a/share/completions/function.fish b/share/completions/function.fish index e85f43103..7399da787 100644 --- a/share/completions/function.fish +++ b/share/completions/function.fish @@ -6,6 +6,6 @@ complete -c function -s p -l on-process-exit -d "Make the function a process exi complete -c function -s s -l on-signal -d "Make the function a signal event handler" -x complete -c function -s v -l on-variable -d "Make the function a variable update event handler" -x complete -c function -s e -l on-event -d "Make the function a generic event handler" -xa 'fish_prompt fish_command_not_found' -complete -c function -s a -l argument-names -d "Specify named arguments" +complete -c function -s a -l argument-names -d "Specify named arguments" -x complete -c function -s S -l no-scope-shadowing -d "Do not shadow variable scope of calling function" -complete -c function -s w -l wraps -d "Inherit completions from the given command" +complete -c function -s w -l wraps -d "Inherit completions from the given command" -r diff --git a/share/completions/functions.fish b/share/completions/functions.fish index 6010f583a..51a265b4e 100644 --- a/share/completions/functions.fish +++ b/share/completions/functions.fish @@ -1,10 +1,10 @@ function __fish_maybe_list_all_functions - # if the current commandline token starts with an _, list all functions - if string match -qr -- '^_' (commandline -ct) - functions -an - else - functions -n - end + # if the current commandline token starts with an _, list all functions + if string match -qr -- '^_' (commandline -ct) + functions -an + else + functions -n + end end complete -c functions -s e -l erase -d "Erase function" -x -a "(__fish_maybe_list_all_functions)" diff --git a/share/completions/fuser.fish b/share/completions/fuser.fish index 2cbab2bdb..83463834a 100644 --- a/share/completions/fuser.fish +++ b/share/completions/fuser.fish @@ -1,9 +1,9 @@ __fish_make_completion_signals for i in $__kill_signals - set number (echo $i | cut -d " " -f 1) - set name (echo $i | cut -d " " -f 2) - complete -c fuser -o $number -d $name - complete -c fuser -o $name -d $name + set number (echo $i | cut -d " " -f 1) + set name (echo $i | cut -d " " -f 2) + complete -c fuser -o $number -d $name + complete -c fuser -o $name -d $name end complete -c fuser -s a -l all -d 'Show all files specified on the command line' diff --git a/share/completions/fzf.fish b/share/completions/fzf.fish new file mode 100644 index 000000000..cf1327c90 --- /dev/null +++ b/share/completions/fzf.fish @@ -0,0 +1,72 @@ +complete -c fzf -f + +# Search mode +complete -c fzf -l no-extended -d 'no-extended' +complete -c fzf -n 'string match "+*" -- (commandline -ct)' -a +x -d 'no-extended' +complete -c fzf -s e -l --exact -d 'Enable exact-match' +complete -c fzf -n 'string match "+*" -- (commandline -ct)' -a +i -d 'case-sensitive match' +complete -c fzf -s i -d 'Case-insensitive match' +complete -c fzf -l literal -d 'Do not normalize latin script letters for matching' +complete -c fzf -l algo -d 'Fuzzy matching algorithm' -x -a 'v1 v2' +complete -c fzf -s n -l nth -d 'Comma-separated list of field index expressions for limiting search scope' -x +complete -c fzf -l with-nth -d 'Transform the presentation of each line using field index expressions' -x +complete -c fzf -s d -l delimiter -d 'Field delimiter regex for --nth and --with-nth' -x + +# Search result +complete -c fzf -l no-sort -d 'Do not sort the result' +complete -c fzf -n 'string match "+*" -- (commandline -ct)' -a +s -d 'Do not sort the result' +complete -c fzf -l tac -d 'Reverse the order of the input' +complete -c fzf -l tiebreak -d 'Comma-separated list of sort criteria to apply when the scores are tied.' -x + +# Interface +complete -c fzf -s m -l multi -d 'Enable multi-select with tab/shift-tab' +complete -c fzf -l no-multi -d 'Disable multi-select' +complete -c fzf -n 'string match "+*" -- (commandline -ct)' -a +m -d 'Disable multi-select' +complete -c fzf -l no-mouse -d 'Disable mouse' +complete -c fzf -l bind -d 'Comma-separated list of custom key bindings' -x +complete -c fzf -l cycle -d 'Enable cyclic scroll' +complete -c fzf -l no-hscroll -d 'Disable horizontal scroll' +complete -c fzf -l hscroll-off -d 'Number of screen columns to keep to the right of the highlighted substring' -x +complete -c fzf -l filepath-word -d 'Make word-wise movements and actions respect path separators' +complete -c fzf -l jump-labels -d 'Make word-wise movements and actions respect path separators' -x + +# layout +complete -c fzf -l height -d 'Display fzf window below the cursor with the given height instead of using the full screen' -x +complete -c fzf -l min-height -d 'Minimum height when --height is given in percent (default: 10)' -x +complete -c fzf -l layout -d 'Choose the layout' -x -a 'default reverse reverse-list' +complete -c fzf -l reverse -d 'A synonym for --layout=reverse' +complete -c fzf -l border -d 'Draw border above and below the finder' +complete -c fzf -l no-unicode -d 'Use ASCII characters instead of Unicode box drawing characters to draw border' +complete -c fzf -l margin -d 'Comma-separated expression for margins around the finder' +complete -c fzf -l inline-info -d 'Display finder info inline with the query ' +complete -c fzf -l prompt -d 'Input prompt' -x +complete -c fzf -l header -d 'The given string will be printed as the sticky header' -x +complete -c fzf -l header-lines -d 'The first N lines of the input are treated as the sticky header' -x + +# Display +complete -c fzf -l ansi -d 'Enable processing of ANSI color codes' +complete -c fzf -l tabstop -d 'Number of spaces for a tab character (default: 8)' +complete -c fzf -l color -d 'Color configuration' -x +complete -c fzf -l no-bold -d 'Do not use bold text' +complete -c fzf -l black -d 'Use black background' + +# History +complete -c fzf -l history -d 'Load search history from the specified file and update the file on completion' -x +complete -c fzf -l history-size -d 'Maximum number of entries in the history file' -x + +# Preview +complete -c fzf -l preview -d 'Execute the given command for the current line and display the result on the preview window' -x +complete -c fzf -l preview-window -d 'Determine the layout of the preview window' -x + +# Scripting +complete -c fzf -s q -l query -d 'Start the finder with the given query' -x +complete -c fzf -s 1 -l select-1 -d 'Automatically select the only match' +complete -c fzf -s 0 -l exit-0 -d 'Exit immediately when there\'s no match' +complete -c fzf -s f -l filter -d 'Filter mode. Do not start interactive finder' -x +complete -c fzf -l print-query -d 'Print query as the first line' +complete -c fzf -l expect -d 'Comma-separated list of keys that can be used to complete fzf in addition to the default enter key' -x +complete -c fzf -l read0 -d 'Read input delimited by ASCII NUL characters instead of newline characters' +complete -c fzf -l print0 -d 'Print output delimited by ASCII NUL characters instead of newline characters' +complete -c fzf -l no-clear -d 'Do not clear finder interface on exit' +complete -c fzf -l sync -d 'Synchronous search for multi-staged filtering' +complete -c fzf -l version -d 'Display version information and exit' diff --git a/share/completions/g++.fish b/share/completions/g++.fish new file mode 100644 index 000000000..c7372f10d --- /dev/null +++ b/share/completions/g++.fish @@ -0,0 +1 @@ +complete -c g++ -w gcc diff --git a/share/completions/gcc.fish b/share/completions/gcc.fish index e46947b61..034e7e36f 100644 --- a/share/completions/gcc.fish +++ b/share/completions/gcc.fish @@ -21,9 +21,9 @@ complete -c gcc -o std -d "Standard mode" -x -a ' gnu++98\t"ISO C++98 plus GNU extentions" ' -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-$i -d "Set maximum template depth" -end; +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-$i -d "Set maximum template depth" +end complete -c gcc -s o -d 'Place output in file' -r complete -c gcc -o aux-info -d 'Output to the given filename prototyped declarations for all functions declared and/or defined in a translation unit, including those in header files' -r diff --git a/share/completions/git.fish b/share/completions/git.fish index 067143253..5c340a421 100644 --- a/share/completions/git.fish +++ b/share/completions/git.fish @@ -1,5 +1,30 @@ # fish completion for git -# Use 'command git' to avoid interactions for aliases from git to (e.g.) hub + +# Use this instead of calling git directly; it passes the commands that are +# already present on the commandline to git. This is relevant for --work-tree etc, see issue #6219. +function __fish_git + set -l saved_args $argv + set -l global_args + set -l cmd (commandline -opc) + # We assume that git is the first command until we have a better awareness of subcommands, see #2705. + set -e cmd[1] + if argparse -s (__fish_git_global_optspecs) -- $cmd 2>/dev/null + # All arguments that were parsed by argparse are global git options. + set -l num_global_args (math (count $cmd) - (count $argv)) + if test $num_global_args -ne 0 + set global_args $cmd[1..$num_global_args] + end + end + # Using 'command git' to avoid interactions for aliases from git to (e.g.) hub + command git $global_args $saved_args +end + +# Print an optspec for argparse to handle git's options that are independent of any subcommand. +function __fish_git_global_optspecs + string join \n v-version h/help C= c=+ 'e-exec-path=?' H-html-path M-man-path I-info-path p/paginate \ + P/no-pager o-no-replace-objects b-bare G-git-dir= W-work-tree= N-namespace= S-super-prefix= \ + l-literal-pathspecs g-glob-pathspecs O-noglob-pathspecs i-icase-pathspecs +end function __fish_git_commits # Complete commits with their subject line as the description @@ -13,7 +38,7 @@ function __fish_git_commits # that happens for 3 commits out of 600k. # For fish, at the time of writing, out of 12200 commits, 7 commits need 8 characters. # And since this takes about 1/3rd of the time that disambiguating takes... - command git log --pretty=tformat:"%H"\t"%<(64,trunc)%s" --all --max-count=1000 2>/dev/null \ + __fish_git log --pretty=tformat:"%H"\t"%<(64,trunc)%s" --all --max-count=1000 2>/dev/null \ | string replace -r '^([0-9a-f]{10})[0-9a-f]*\t(.*)' '$1\t$2' end @@ -21,19 +46,19 @@ function __fish_git_recent_commits # Like __fish_git_commits, but not on all branches and limited to # the last 50 commits. Used for fixup, where only the current branch # and the latest commits make sense. - command git log --pretty=tformat:"%h"\t"%<(64,trunc)%s" --max-count=50 2>/dev/null + __fish_git log --pretty=tformat:"%h"\t"%<(64,trunc)%s" --max-count=50 2>/dev/null end function __fish_git_branches # This is much faster than using `git branch`, # and avoids having to deal with localized "detached HEAD" messages. - command git for-each-ref --format='%(refname)' refs/heads/ refs/remotes/ 2>/dev/null \ + __fish_git for-each-ref --format='%(refname)' refs/heads/ refs/remotes/ 2>/dev/null \ | string replace -r '^refs/heads/(.*)$' '$1\tLocal Branch' \ | string replace -r '^refs/remotes/(.*)$' '$1\tRemote Branch' end function __fish_git_local_branches - command git for-each-ref --format='%(refname)' refs/heads/ refs/remotes/ 2>/dev/null \ + __fish_git for-each-ref --format='%(refname)' refs/heads/ refs/remotes/ 2>/dev/null \ | string replace -rf '^refs/heads/(.*)$' '$1\tLocal Branch' end @@ -42,18 +67,18 @@ function __fish_git_unique_remote_branches # if they are unambiguous. # E.g. if only alice has a "frobulate" branch # `git checkout frobulate` is equivalent to `git checkout -b frobulate --track alice/frobulate`. - command git for-each-ref --format="%(refname:strip=3)" \ + __fish_git for-each-ref --format="%(refname:strip=3)" \ --sort="refname:strip=3" \ "refs/remotes/*/$match*" "refs/remotes/*/*/**" 2>/dev/null | \ uniq -u end function __fish_git_tags - command git tag --sort=-creatordate 2>/dev/null + __fish_git tag --sort=-creatordate 2>/dev/null end function __fish_git_heads - set -l gitdir (command git rev-parse --git-dir 2>/dev/null) + set -l gitdir (__fish_git rev-parse --git-dir 2>/dev/null) or return # No git dir, no need to even test. for head in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD if test -f $gitdir/$head @@ -69,7 +94,7 @@ function __fish_git_refs end function __fish_git_remotes - command git remote 2>/dev/null + __fish_git remote 2>/dev/null end function __fish_git_files @@ -90,7 +115,7 @@ function __fish_git_files # to get _all_ kinds of staged files. # Save the repo root to remove it from the path later. - set -l root (command git rev-parse --show-toplevel --is-bare-repository 2>/dev/null) + set -l root (__fish_git rev-parse --show-toplevel --is-bare-repository 2>/dev/null) or return # Skip bare repositories. @@ -100,19 +125,20 @@ function __fish_git_files # Cache the translated descriptions so we don't have to get it # once per file. + contains -- all-staged $argv; and set -l all_staged contains -- unmerged $argv; and set -l unmerged and set -l unmerged_desc (_ "Unmerged File") - contains -- added $argv; or contains -- all-staged $argv; and set -l added + contains -- added $argv; or set -ql all_staged; and set -l added and set -l added_desc (_ "Added file") contains -- modified $argv; and set -l modified and set -l modified_desc (_ "Modified file") contains -- untracked $argv; and set -l untracked and set -l untracked_desc (_ "Untracked file") - contains -- modified-staged $argv; or contains -- all-staged $argv; and set -l modified_staged + contains -- modified-staged $argv; or set -ql all_staged; and set -l modified_staged and set -l staged_modified_desc (_ "Staged modified file") contains -- deleted $argv; and set -l deleted and set -l deleted_desc (_ "Deleted file") - contains -- deleted-staged $argv; or contains -- all-staged $argv; and set -l deleted_staged + contains -- deleted-staged $argv; or set -ql all_staged; and set -l deleted_staged and set -l staged_deleted_desc (_ "Staged deleted file") contains -- ignored $argv; and set -l ignored and set -l ignored_desc (_ "Ignored file") @@ -152,11 +178,11 @@ function __fish_git_files # We pick the v2 format if we can, because it shows relative filenames (if used without "-z"). # We fall back on the v1 format by reading git's _version_, because trying v2 first is too slow. - set -l ver (command git --version | string replace -rf 'git version (\d+)\.(\d+)\.?.*' '$1\n$2') + set -l ver (__fish_git --version | string replace -rf 'git version (\d+)\.(\d+)\.?.*' '$1\n$2') # Version >= 2.11.* has the v2 format. if test "$ver[1]" -gt 2 2>/dev/null; or test "$ver[1]" -eq 2 -a "$ver[2]" -ge 11 2>/dev/null - command git $git_opt status --porcelain=2 $status_opt \ - | while read -la -d ' ' line + __fish_git $git_opt status --porcelain=2 $status_opt \ + | while read -la -d ' ' line set -l file set -l desc # The basic status format is "XY", where X is "our" state (meaning the staging area), @@ -180,6 +206,24 @@ function __fish_git_files set -ql renamed and set file (string replace -r '\t[^\t]*' '' -- "$line[10..-1]") and set desc $renamed_desc + case '2 RM*' + # Staged as renamed, with unstaged modifications (issue #6031) + set -ql renamed + or set -ql modified + and set file (string replace -r '\t[^\t]*' '' -- "$line[10..-1]") + set -ql renamed + and set desc $renamed_desc + set -ql modified + and set --append desc $modified_desc + case '2 RD*' + # Staged as renamed, but deleted in the worktree + set -ql renamed + or set -ql deleted + and set file (string replace -r '\t[^\t]*' '' -- "$line[10..-1]") + set -ql renamed + and set desc $renamed_desc + set -ql deleted + and set --append desc $deleted_desc case '2 .C*' '2 C.*' set -ql copied and set file (string replace -r '\t[^\t].*' '' -- "$line[10..-1]") @@ -190,6 +234,24 @@ function __fish_git_files set -ql added and set file "$line[9..-1]" and set desc $added_desc + case '1 AD*' + # Added files that were since deleted + if set -ql added + set file "$line[9..-1]" + set desc $added_desc + else if set -ql deleted + set file "$line[9..-1]" + set desc $deleted_desc + end + case "1 AM*" + # Added files with additional modifications + if set -ql added + set file "$line[9..-1]" + set desc $added_desc + else if set -ql modified + set file "$line[9..-1]" + set desc $modified_desc + end case '1 .M*' # Modified # From the docs: "Ordinary changed entries have the following format:" @@ -225,7 +287,7 @@ function __fish_git_files # There is both X unmodified and Y either M or D ("not updated") # and Y is D and X is unmodified or [MARC] ("deleted in work tree"). # For our purposes, we assume this is a staged deletion. - set -ql deleted-staged; or set -ql all-staged + set -ql deleted_staged and set file "$line[9..-1]" and set desc $staged_deleted_desc case "$q"' *' @@ -243,23 +305,25 @@ function __fish_git_files end # Only try printing if the file was selected. if set -q file[1] - # Without "-z", git sometimes _quotes_ filenames. - # It adds quotes around it _and_ escapes the character. - # e.g. `"a\\b"`. - # We just remove the quotes and hope it works out. - # If this contains newlines or tabs, - # there is nothing we can do, but that's a general issue with scripted completions. - set file (string trim -c \" -- $file) - # First the relative filename. - printf '%s\t%s\n' "$file" $desc - # Now from repo root. - # Only do this if the filename isn't a simple child, - # or the current token starts with ":" - if string match -q '../*' -- $file - or string match -q ':*' -- (commandline -ct) - set -l fromroot (builtin realpath -- $file 2>/dev/null) - and set fromroot (string replace -- "$root/" ":/" "$fromroot") - and printf '%s\t%s\n' "$fromroot" $desc + for d in $desc + # Without "-z", git sometimes _quotes_ filenames. + # It adds quotes around it _and_ escapes the character. + # e.g. `"a\\b"`. + # We just remove the quotes and hope it works out. + # If this contains newlines or tabs, + # there is nothing we can do, but that's a general issue with scripted completions. + set file (string trim -c \" -- $file) + # First the relative filename. + printf '%s\t%s\n' "$file" $d + # Now from repo root. + # Only do this if the filename isn't a simple child, + # or the current token starts with ":" + if string match -q '../*' -- $file + or string match -q ':*' -- (commandline -ct) + set -l fromroot (builtin realpath -- $file 2>/dev/null) + and set fromroot (string replace -- "$root/" ":/" "$fromroot") + and printf '%s\t%s\n' "$fromroot" $d + end end end end @@ -272,11 +336,10 @@ function __fish_git_files # Cache the previous relative path because these are sorted, so we can reuse it # often for files in the same directory. set -l previous - set -l previousfile # Note that we can't use space as a delimiter between status and filename, because # the status can contain spaces - " M" is different from "M ". - command git $git_opt status --porcelain -z $status_opt \ - | while read -lz line + __fish_git $git_opt status --porcelain -z $status_opt \ + | while read -lz line set -l desc # The entire line is the "from" from a rename. if set -q use_next[1] @@ -313,7 +376,23 @@ function __fish_git_files case 'C ' CM CD set use_next copied continue - case 'A ' AM AD + case AM + if set -ql added + set file "$line[9..-1]" + set desc $added_desc + else if set -ql modified + set file "$line[9..-1]" + set desc $modified_desc + end + case AD + if set -ql added + set file "$line[9..-1]" + set desc $added_desc + else if set -ql deleted + set file "$line[9..-1]" + set desc $deleted_desc + end + case 'A ' # Additions are only shown here if they are staged. # Otherwise it's an untracked file. set -ql added @@ -356,8 +435,14 @@ function __fish_git_files # Computing relative path by hand. set -l abs (string split / -- $relfile) # If it's in the same directory, we just need to change the filename. - if test "$abs[1..-2]" = "$previousfile[1..-2]" - set previous[-1] $abs[-1] + if test "$abs[1..-2]" = "$previous[1..-2]" + # If we didn't have a previous file, and the current file is in the current directory, + # this would error out. + # + # See #5728. + set -q previous[1] + and set previous[-1] $abs[-1] + or set previous $abs else set -l pwd_list $_pwd_list # Remove common prefix @@ -386,6 +471,39 @@ function __fish_git_files end end +# Lists files included in the index of a commit, branch, or tag (not necessarily HEAD) +function __fish_git_rev_files + set -l rev $argv[1] + set -l path $argv[2] + + # Strip any partial files from the path before handing it to `git show` + set -l path (string replace -r -- '(.*/|).*' '$1' $path) + + # List files in $rev's index, skipping the "tree ..." header, but appending + # the parent path, which git does not include in the output (and fish requires) + printf "$path%s\n" (git show $rev:$path | sed '1,2d') +end + +# Provides __fish_git_rev_files completions for the current token +function __fish_git_complete_rev_files + set -l split (string split -m 1 ":" (commandline -ot)) + set -l rev $split[1] + set -l path $split[2] + + printf "$rev:%s\n" (__fish_git_rev_files $rev $path) +end + +# Determines whether we can/should complete with __fish_git_rev_files +function __fish_git_needs_rev_files + # git (as of 2.20) accepts the rev:path syntax for a number of subcommands, + # but then doesn't emit the expected (or any?) output, e.g. `git log master:foo` + # + # This definitely works with `git show` to retrieve a copy of a file as it exists + # in the index of revision $rev, it should be updated to include others as they + # are identified. + __fish_git_using_command show; and string match -r ".+:" -- (commandline -ot) +end + function __fish_git_ranges set -l both (commandline -ot | string split "..") set -l from $both[1] @@ -407,16 +525,9 @@ end function __fish_git_needs_command # Figure out if the current invocation already has a command. - - # Git has tons of options, but fortunately only a few can appear before the command. - # They are listed here. - set -l opts h-help p P-paginate N-no-pager b-bare o-no-replace-objects \ - l-literal-pathspecs g-glob-pathspecs O-noglob-pathspecs i-icase-pathspecs \ - e-exec-path= G-git-dir= c= C= v-version H-html-path \ - m-man-path I-info-path w-work-tree= a-namespace= s-super-prefix= - set cmd (commandline -opc) + set -l cmd (commandline -opc) set -e cmd[1] - argparse -s $opts -- $cmd 2>/dev/null + argparse -s (__fish_git_global_optspecs) -- $cmd 2>/dev/null or return 0 # These flags function as commands, effectively. set -q _flag_version; and return 1 @@ -498,12 +609,16 @@ function __fish_git_stash_not_using_subcommand return 0 end +function __fish_git_complete_worktrees + __fish_git worktree list --porcelain | string replace --regex --filter '^worktree\s*' '' +end + function __fish_git_complete_stashes - command git stash list --format=%gd:%gs 2>/dev/null | string replace ":" \t + __fish_git stash list --format=%gd:%gs 2>/dev/null | string replace ":" \t end function __fish_git_aliases - command git config -z --get-regexp '^alias\.' 2>/dev/null | while read -lz key value + __fish_git config -z --get-regexp '^alias\.' 2>/dev/null | while read -lz key value begin set -l name (string replace -r '^.*\.' '' -- $key) printf "%s\t%s\n" $name "Alias for $value" @@ -556,7 +671,7 @@ function __fish_git_possible_commithash end function __fish_git_reflog - command git reflog --no-decorate 2>/dev/null | string replace -r '[0-9a-f]* (.+@\{[0-9]+\}): (.*)$' '$1\t$2' + __fish_git reflog --no-decorate 2>/dev/null | string replace -r '[0-9a-f]* (.+@\{[0-9]+\}): (.*)$' '$1\t$2' end function __fish_git_help_all_concepts @@ -632,15 +747,15 @@ end complete -f -c git -l help -d 'Display the manual of a git command' complete -f -c git -n '__fish_git_needs_command' -l version -d 'Display version' complete -x -c git -n '__fish_git_needs_command' -s C -a '(__fish_complete_directories)' -d 'Run as if git was started in this directory' -complete -x -c git -n '__fish_git_needs_command' -s c -a '(command git config -l 2>/dev/null | string replace = \t)' -d 'Set a configuration option' -complete -x -c git -n '__fish_git_needs_command' -l exec-path -a '(__fish_git_complete_directories)' -d 'Get or set the path to the git programs' +complete -x -c git -n '__fish_git_needs_command' -s c -a '(__fish_git config -l 2>/dev/null | string replace = \t)' -d 'Set a configuration option' +complete -x -c git -n '__fish_git_needs_command' -l exec-path -a '(__fish_complete_directories)' -d 'Get or set the path to the git programs' complete -f -c git -n '__fish_git_needs_command' -l html-path -d 'Print the path to the html documentation' complete -f -c git -n '__fish_git_needs_command' -l man-path -d 'Print the path to the man documentation' complete -f -c git -n '__fish_git_needs_command' -l info-path -d 'Print the path to the info documentation' complete -f -c git -n '__fish_git_needs_command' -s p -l paginate -d 'Pipe output into a pager' complete -f -c git -n '__fish_git_needs_command' -l no-pager -d 'Do not pipe output into a pager' -complete -f -c git -n '__fish_git_needs_command' -l git-dir -d 'Set the path to the repository' -complete -f -c git -n '__fish_git_needs_command' -l work-tree -d 'Set the path to the working tree' +complete -r -c git -n '__fish_git_needs_command' -l git-dir -d 'Set the path to the repository' +complete -r -c git -n '__fish_git_needs_command' -l work-tree -d 'Set the path to the working tree' complete -f -c git -n '__fish_git_needs_command' -l namespace -d 'Set the namespace' complete -f -c git -n '__fish_git_needs_command' -l bare -d 'Treat the repository as bare' complete -f -c git -n '__fish_git_needs_command' -l no-replace-objects -d 'Do not use replacement refs to replace git objects' @@ -652,70 +767,70 @@ complete -f -c git -n '__fish_git_needs_command' -l icase-pathspecs -d 'Match pa # Options shared between multiple commands complete -f -c git -n '__fish_git_using_command log show diff-tree rev-list' -l pretty -a '(__fish_git_show_opt pretty)' -complete -c git -n '__fish_git_using_command diff show' -l abbrev -d 'Show only a partial prefix instead of the full 40-byte hexadecimal object name' -complete -c git -n '__fish_git_using_command diff show' -l binary -d 'Output a binary diff that can be applied with "git-apply"' -complete -c git -n '__fish_git_using_command diff show' -l check -d 'Warn if changes introduce conflict markers or whitespace errors' -complete -c git -n '__fish_git_using_command diff show' -l color -d 'Show colored diff' -complete -c git -n '__fish_git_using_command diff show' -l color-moved -d 'Moved lines of code are colored differently' -complete -c git -n '__fish_git_using_command diff show' -l color-words -d 'Equivalent to --word-diff=color plus --word-diff-regex=' -complete -c git -n '__fish_git_using_command diff show' -l compact-summary -d 'Output a condensed summary of extended header information' -complete -c git -n '__fish_git_using_command diff show' -l dst-prefix -d 'Show the given destination prefix instead of "b/"' -complete -c git -n '__fish_git_using_command diff show' -l ext-diff -d 'Allow an external diff helper to be executed' -complete -c git -n '__fish_git_using_command diff show' -l find-copies-harder -d 'Inspect unmodified files as candidates for the source of copy' -complete -c git -n '__fish_git_using_command diff show' -l find-object -d 'Look for differences that change the number of occurrences of the specified object' -complete -c git -n '__fish_git_using_command diff show' -l full-index -d 'Show the full pre- and post-image blob object names on the "index" line' -complete -c git -n '__fish_git_using_command diff show' -l histogram -d 'Generate a diff using the "histogram diff" algorithm' -complete -c git -n '__fish_git_using_command diff show' -l ignore-blank-lines -d 'Ignore changes whose lines are all blank' -complete -c git -n '__fish_git_using_command diff show' -l ignore-cr-at-eol -d 'Ignore carrige-return at the end of line when doing a comparison' -complete -c git -n '__fish_git_using_command diff show' -l ignore-space-at-eol -d 'Ignore changes in whitespace at EOL' -complete -c git -n '__fish_git_using_command diff show' -l indent-heuristic -d 'Enable the heuristic that shift diff hunk boundaries' -complete -c git -n '__fish_git_using_command diff show' -l inter-hunk-context -d 'Show the context between diff hunks, up to the specified number of lines' -complete -c git -n '__fish_git_using_command diff show' -l ita-invisible-in-index -d 'Make the entry appear as a new file in "git diff" and non-existent in "git diff -l cached"' -complete -c git -n '__fish_git_using_command diff show' -l line-prefix -d 'Prepend an additional prefix to every line of output' -complete -c git -n '__fish_git_using_command diff show' -l minimal -d 'Spend extra time to make sure the smallest possible diff is produced' -complete -c git -n '__fish_git_using_command diff show' -l name-only -d 'Show only names of changed files' -complete -c git -n '__fish_git_using_command diff show' -l name-status -d 'Show only names and status of changed files' -complete -c git -n '__fish_git_using_command diff show' -l no-color -d 'Turn off colored diff' -complete -c git -n '__fish_git_using_command diff show' -l no-ext-diff -d 'Disallow external diff drivers' -complete -c git -n '__fish_git_using_command diff show' -l no-indent-heuristic -d 'Disable the indent heuristic' -complete -c git -n '__fish_git_using_command diff show' -l no-prefix -d 'Do not show any source or destination prefix' -complete -c git -n '__fish_git_using_command diff show' -l no-renames -d 'Turn off rename detection' -complete -c git -n '__fish_git_using_command diff show' -l no-textconv -d 'Disallow external text conversion filters to be run when comparing binary files' -complete -c git -n '__fish_git_using_command diff show' -l numstat -d 'Shows number of added/deleted lines in decimal notation' -complete -c git -n '__fish_git_using_command diff show' -l patch-with-raw -d 'Synonym for -p --raw' -complete -c git -n '__fish_git_using_command diff show' -l patch-with-stat -d 'Synonym for -p --stat' -complete -c git -n '__fish_git_using_command diff show' -l patience -d 'Generate a diff using the "patience diff" algorithm' -complete -c git -n '__fish_git_using_command diff show' -l pickaxe-all -d 'When -S or -G finds a change, show all the changes in that changeset' -complete -c git -n '__fish_git_using_command diff show' -l pickaxe-regex -d 'Treat the given to -S as an extended POSIX regular expression to match' -complete -c git -n '__fish_git_using_command diff show' -l relative -d 'Exclude changes outside the directory and show relative pathnames' -complete -c git -n '__fish_git_using_command diff show' -l shortstat -d 'Output only the last line of the --stat format containing total number of modified files' -complete -c git -n '__fish_git_using_command diff show' -l src-prefix -d 'Show the given source prefix instead of "a/"' -complete -c git -n '__fish_git_using_command diff show' -l stat -d 'Generate a diffstat' -complete -c git -n '__fish_git_using_command diff show' -l summary -d 'Output a condensed summary of extended header information' -complete -c git -n '__fish_git_using_command diff show' -l textconv -d 'Allow external text conversion filters to be run when comparing binary files' -complete -c git -n '__fish_git_using_command diff show' -l word-diff -d 'Show a word diff' -complete -c git -n '__fish_git_using_command diff show' -l word-diff-regex -d 'Use to decide what a word is' -complete -c git -n '__fish_git_using_command diff show' -s a -l text -d 'Treat all files as text' -complete -c git -n '__fish_git_using_command diff show' -s B -l break-rewrites -d 'Break complete rewrite changes into pairs of delete and create' -complete -c git -n '__fish_git_using_command diff show' -s b -l ignore-space-change -d 'Ignore changes in amount of whitespace' -complete -c git -n '__fish_git_using_command diff show' -s C -l find-copies -d 'Detect copies as well as renames' -complete -c git -n '__fish_git_using_command diff show' -s D -l irreversible-delete -d 'Omit the preimage for deletes' -complete -c git -n '__fish_git_using_command diff show' -s G -d 'Look for differences whose patch text contains added/removed lines that match ' -complete -c git -n '__fish_git_using_command diff show' -s M -l find-renames -d 'Detect and report renames' -complete -c git -n '__fish_git_using_command diff show' -s R -d 'Show differences from index or on-disk file to tree contents' -complete -c git -n '__fish_git_using_command diff show' -s S -d 'Look for differences that change the number of occurrences of the specified string' -complete -c git -n '__fish_git_using_command diff show' -s W -l function-context -d 'Show whole surrounding functions of changes' -complete -c git -n '__fish_git_using_command diff show' -s w -l ignore-all-space -d 'Ignore whitespace when comparing lines' -complete -c git -n '__fish_git_using_command diff show' -s z -d 'Use NULs as output field/commit terminators' -complete -r -c git -n '__fish_git_using_command diff show' -s O -d 'Control the order in which files appear in the output' -complete -f -c git -n '__fish_git_using_command diff show' -l anchored -d 'Generate a diff using the "anchored diff" algorithm' -complete -x -c git -n '__fish_git_using_command diff show' -s l -d 'Prevents rename/copy detection if the number of rename/copy targets exceeds the specified number' -complete -x -c git -n '__fish_git_using_command diff show' -l diff-filter -a '(__fish_git_diff_opt diff-filter)' -d 'Choose diff filters' -complete -x -c git -n '__fish_git_using_command diff log show' -l diff-algorithm -a '(__fish_git_diff_opt diff-algorithm)' -d 'Choose a diff algorithm' -complete -x -c git -n '__fish_git_using_command diff log show' -l dirstat -a '(__fish_git_diff_opt dirstat)' -d 'Output the distribution of relative amount of changes for each sub-directory' -complete -x -c git -n '__fish_git_using_command diff log show' -l ignore-submodules -a '(__fish_git_diff_opt ignore-submodules)' -d 'Ignore changes to submodules in the diff generation' -complete -x -c git -n '__fish_git_using_command diff log show' -l submodule -a '(__fish_git_diff_opt submodule)' -d 'Specify how differences in submodules are shown' -complete -x -c git -n '__fish_git_using_command diff log show' -l ws-error-highlight -a '(__fish_git_diff_opt ws-error-highlight)' -d 'Highlight whitespace errors in lines of the diff' +complete -c git -n '__fish_git_using_command diff show range-diff' -l abbrev -d 'Show only a partial prefix instead of the full 40-byte hexadecimal object name' +complete -c git -n '__fish_git_using_command diff show range-diff' -l binary -d 'Output a binary diff that can be applied with "git-apply"' +complete -c git -n '__fish_git_using_command diff show range-diff' -l check -d 'Warn if changes introduce conflict markers or whitespace errors' +complete -c git -n '__fish_git_using_command diff show range-diff' -l color -d 'Show colored diff' +complete -c git -n '__fish_git_using_command diff show range-diff' -l color-moved -d 'Moved lines of code are colored differently' +complete -c git -n '__fish_git_using_command diff show range-diff' -l color-words -d 'Equivalent to --word-diff=color plus --word-diff-regex=' +complete -c git -n '__fish_git_using_command diff show range-diff' -l compact-summary -d 'Output a condensed summary of extended header information' +complete -c git -n '__fish_git_using_command diff show range-diff' -l dst-prefix -d 'Show the given destination prefix instead of "b/"' +complete -c git -n '__fish_git_using_command diff show range-diff' -l ext-diff -d 'Allow an external diff helper to be executed' +complete -c git -n '__fish_git_using_command diff show range-diff' -l find-copies-harder -d 'Inspect unmodified files as candidates for the source of copy' +complete -c git -n '__fish_git_using_command diff show range-diff' -l find-object -d 'Look for differences that change the number of occurrences of the specified object' +complete -c git -n '__fish_git_using_command diff show range-diff' -l full-index -d 'Show the full pre- and post-image blob object names on the "index" line' +complete -c git -n '__fish_git_using_command diff show range-diff' -l histogram -d 'Generate a diff using the "histogram diff" algorithm' +complete -c git -n '__fish_git_using_command diff show range-diff' -l ignore-blank-lines -d 'Ignore changes whose lines are all blank' +complete -c git -n '__fish_git_using_command diff show range-diff' -l ignore-cr-at-eol -d 'Ignore carrige-return at the end of line when doing a comparison' +complete -c git -n '__fish_git_using_command diff show range-diff' -l ignore-space-at-eol -d 'Ignore changes in whitespace at EOL' +complete -c git -n '__fish_git_using_command diff show range-diff' -l indent-heuristic -d 'Enable the heuristic that shift diff hunk boundaries' +complete -c git -n '__fish_git_using_command diff show range-diff' -l inter-hunk-context -d 'Show the context between diff hunks, up to the specified number of lines' +complete -c git -n '__fish_git_using_command diff show range-diff' -l ita-invisible-in-index -d 'Make the entry appear as a new file in "git diff" and non-existent in "git diff -l cached"' +complete -c git -n '__fish_git_using_command diff show range-diff' -l line-prefix -d 'Prepend an additional prefix to every line of output' +complete -c git -n '__fish_git_using_command diff show range-diff' -l minimal -d 'Spend extra time to make sure the smallest possible diff is produced' +complete -c git -n '__fish_git_using_command diff show range-diff' -l name-only -d 'Show only names of changed files' +complete -c git -n '__fish_git_using_command diff show range-diff' -l name-status -d 'Show only names and status of changed files' +complete -c git -n '__fish_git_using_command diff show range-diff' -l no-color -d 'Turn off colored diff' +complete -c git -n '__fish_git_using_command diff show range-diff' -l no-ext-diff -d 'Disallow external diff drivers' +complete -c git -n '__fish_git_using_command diff show range-diff' -l no-indent-heuristic -d 'Disable the indent heuristic' +complete -c git -n '__fish_git_using_command diff show range-diff' -l no-prefix -d 'Do not show any source or destination prefix' +complete -c git -n '__fish_git_using_command diff show range-diff' -l no-renames -d 'Turn off rename detection' +complete -c git -n '__fish_git_using_command diff show range-diff' -l no-textconv -d 'Disallow external text conversion filters to be run when comparing binary files' +complete -c git -n '__fish_git_using_command diff show range-diff' -l numstat -d 'Shows number of added/deleted lines in decimal notation' +complete -c git -n '__fish_git_using_command diff show range-diff' -l patch-with-raw -d 'Synonym for -p --raw' +complete -c git -n '__fish_git_using_command diff show range-diff' -l patch-with-stat -d 'Synonym for -p --stat' +complete -c git -n '__fish_git_using_command diff show range-diff' -l patience -d 'Generate a diff using the "patience diff" algorithm' +complete -c git -n '__fish_git_using_command diff show range-diff' -l pickaxe-all -d 'When -S or -G finds a change, show all the changes in that changeset' +complete -c git -n '__fish_git_using_command diff show range-diff' -l pickaxe-regex -d 'Treat the given to -S as an extended POSIX regular expression to match' +complete -c git -n '__fish_git_using_command diff show range-diff' -l relative -d 'Exclude changes outside the directory and show relative pathnames' +complete -c git -n '__fish_git_using_command diff show range-diff' -l shortstat -d 'Output only the last line of the --stat format containing total number of modified files' +complete -c git -n '__fish_git_using_command diff show range-diff' -l src-prefix -d 'Show the given source prefix instead of "a/"' +complete -c git -n '__fish_git_using_command diff show range-diff' -l stat -d 'Generate a diffstat' +complete -c git -n '__fish_git_using_command diff show range-diff' -l summary -d 'Output a condensed summary of extended header information' +complete -c git -n '__fish_git_using_command diff show range-diff' -l textconv -d 'Allow external text conversion filters to be run when comparing binary files' +complete -c git -n '__fish_git_using_command diff show range-diff' -l word-diff -d 'Show a word diff' +complete -c git -n '__fish_git_using_command diff show range-diff' -l word-diff-regex -d 'Use to decide what a word is' +complete -c git -n '__fish_git_using_command diff show range-diff' -s a -l text -d 'Treat all files as text' +complete -c git -n '__fish_git_using_command diff show range-diff' -s B -l break-rewrites -d 'Break complete rewrite changes into pairs of delete and create' +complete -c git -n '__fish_git_using_command diff show range-diff' -s b -l ignore-space-change -d 'Ignore changes in amount of whitespace' +complete -c git -n '__fish_git_using_command diff show range-diff' -s C -l find-copies -d 'Detect copies as well as renames' +complete -c git -n '__fish_git_using_command diff show range-diff' -s D -l irreversible-delete -d 'Omit the preimage for deletes' +complete -c git -n '__fish_git_using_command diff show range-diff' -s G -d 'Look for differences whose patch text contains added/removed lines that match ' +complete -c git -n '__fish_git_using_command diff show range-diff' -s M -l find-renames -d 'Detect and report renames' +complete -c git -n '__fish_git_using_command diff show range-diff' -s R -d 'Show differences from index or on-disk file to tree contents' +complete -c git -n '__fish_git_using_command diff show range-diff' -s S -d 'Look for differences that change the number of occurrences of the specified string' +complete -c git -n '__fish_git_using_command diff show range-diff' -s W -l function-context -d 'Show whole surrounding functions of changes' +complete -c git -n '__fish_git_using_command diff show range-diff' -s w -l ignore-all-space -d 'Ignore whitespace when comparing lines' +complete -c git -n '__fish_git_using_command diff show range-diff' -s z -d 'Use NULs as output field/commit terminators' +complete -r -c git -n '__fish_git_using_command diff show range-diff' -s O -d 'Control the order in which files appear in the output' +complete -f -c git -n '__fish_git_using_command diff show range-diff' -l anchored -d 'Generate a diff using the "anchored diff" algorithm' +complete -x -c git -n '__fish_git_using_command diff show range-diff' -s l -d 'Prevents rename/copy detection if the number of rename/copy targets exceeds the specified number' +complete -x -c git -n '__fish_git_using_command diff show range-diff' -l diff-filter -a '(__fish_git_diff_opt diff-filter)' -d 'Choose diff filters' +complete -x -c git -n '__fish_git_using_command diff log show range-diff' -l diff-algorithm -a '(__fish_git_diff_opt diff-algorithm)' -d 'Choose a diff algorithm' +complete -x -c git -n '__fish_git_using_command diff log show range-diff' -l dirstat -a '(__fish_git_diff_opt dirstat)' -d 'Output the distribution of relative amount of changes for each sub-directory' +complete -x -c git -n '__fish_git_using_command diff log show range-diff' -l ignore-submodules -a '(__fish_git_diff_opt ignore-submodules)' -d 'Ignore changes to submodules in the diff generation' +complete -x -c git -n '__fish_git_using_command diff log show range-diff' -l submodule -a '(__fish_git_diff_opt submodule)' -d 'Specify how differences in submodules are shown' +complete -x -c git -n '__fish_git_using_command diff log show range-diff' -l ws-error-highlight -a '(__fish_git_diff_opt ws-error-highlight)' -d 'Highlight whitespace errors in lines of the diff' #### fetch complete -f -c git -n '__fish_git_needs_command' -a fetch -d 'Download objects and refs from another repository' @@ -779,6 +894,7 @@ complete -f -c git -n '__fish_git_needs_command' -a show -d 'Shows the last comm complete -f -c git -n '__fish_git_using_command show' -a '(__fish_git_branches)' complete -f -c git -n '__fish_git_using_command show' -ka '(__fish_git_tags)' -d 'Tag' complete -f -c git -n '__fish_git_using_command show' -ka '(__fish_git_commits)' +complete -f -c git -n '__fish_git_needs_rev_files' -xa '(__fish_git_complete_rev_files)' complete -f -c git -n '__fish_git_using_command show' -l format -d 'Pretty-print the contents of the commit logs in a given format' -a '(__fish_git_show_opt format)' complete -f -c git -n '__fish_git_using_command show' -l abbrev-commit -d 'Show only a partial hexadecimal commit object name' complete -f -c git -n '__fish_git_using_command show' -l no-abbrev-commit -d 'Show the full 40-byte hexadecimal commit object name' @@ -817,10 +933,11 @@ complete -f -c git -n '__fish_git_using_command add' -a '(__fish_git_files modif ### checkout complete -f -c git -n '__fish_git_needs_command' -a checkout -d 'Checkout and switch to a branch' -complete -k -f -c git -n '__fish_git_using_command checkout; and not contains -- -- (commandline -op)' -a '(__fish_git_branches)' -complete -k -f -c git -n '__fish_git_using_command checkout; and not contains -- -- (commandline -op)' -a '(__fish_git_heads)' -d 'Head' -complete -k -f -c git -n '__fish_git_using_command checkout; and not contains -- -- (commandline -op)' -a '(__fish_git_tags)' -d 'Tag' -complete -k -f -c git -n '__fish_git_using_command checkout; and not contains -- -- (commandline -op)' -a '(__fish_git_unique_remote_branches)' -d 'Unique Remote Branch' +complete -k -f -c git -n '__fish_git_using_command checkout; and not contains -- -- (commandline -opc)' -a '(__fish_git_tags)' -d 'Tag' +complete -k -f -c git -n '__fish_git_using_command checkout; and not contains -- -- (commandline -opc)' -a '(__fish_git_heads)' -d 'Head' +complete -k -f -c git -n '__fish_git_using_command checkout; and not contains -- -- (commandline -opc)' -a '(__fish_git_branches)' +complete -k -f -c git -n '__fish_git_using_command checkout; and not contains -- -- (commandline -opc)' -a '(__fish_git_unique_remote_branches)' -d 'Unique Remote Branch' +complete -k -f -c git -n '__fish_git_using_command checkout; and not contains -- -- (commandline -opc)' -a '(__fish_git_recent_commits)' complete -k -f -c git -n '__fish_git_using_command checkout' -a '(__fish_git_files modified deleted)' complete -f -c git -n '__fish_git_using_command checkout' -s b -d 'Create a new branch' complete -f -c git -n '__fish_git_using_command checkout' -s t -l track -d 'Track a new branch' @@ -843,17 +960,25 @@ complete -f -c git -n '__fish_git_needs_command' -a bisect -d 'Find the change t ### branch complete -f -c git -n '__fish_git_needs_command' -a branch -d 'List, create, or delete branches' complete -f -c git -n '__fish_git_using_command branch' -a '(__fish_git_branches)' -complete -f -c git -n '__fish_git_using_command branch' -s d -d 'Delete branch' -xa '(__fish_git_local_branches)' +complete -f -c git -n '__fish_git_using_command branch' -s d -l delete -d 'Delete branch' -xa '(__fish_git_local_branches)' complete -f -c git -n '__fish_git_using_command branch' -s D -d 'Force deletion of branch' -xa '(__fish_git_local_branches)' -complete -f -c git -n '__fish_git_using_command branch' -s m -d 'Rename branch' -complete -f -c git -n '__fish_git_using_command branch' -s M -d 'Force renaming branch' -complete -f -c git -n '__fish_git_using_command branch' -s a -d 'Lists both local and remote branches' -complete -f -c git -n '__fish_git_using_command branch' -s t -l track -d 'Track remote branch' +complete -f -c git -n '__fish_git_using_command branch' -s f -l force -d 'Reset branch even if it already exists' +complete -f -c git -n '__fish_git_using_command branch' -s m -l move -d 'Rename branch' +complete -f -c git -n '__fish_git_using_command branch' -s M -d 'Force rename branch' +complete -f -c git -n '__fish_git_using_command branch' -s c -l copy -d 'Copy branch' +complete -f -c git -n '__fish_git_using_command branch' -s C -d 'Force copy branch' +complete -f -c git -n '__fish_git_using_command branch' -s a -l all -d 'Lists both local and remote branches' +complete -f -c git -n '__fish_git_using_command branch' -s t -l track -l track -d 'Track remote branch' complete -f -c git -n '__fish_git_using_command branch' -l no-track -d 'Do not track remote branch' complete -f -c git -n '__fish_git_using_command branch' -l set-upstream-to -d 'Set remote branch to track' complete -f -c git -n '__fish_git_using_command branch' -l merged -d 'List branches that have been merged' complete -f -c git -n '__fish_git_using_command branch' -l no-merged -d 'List branches that have not been merged' +### cherry +complete -f -c git -n '__fish_git_needs_command' -a cherry -d 'Find commits yet to be applied to upstream [upstream [head]]' +complete -f -c git -n '__fish_git_using_command cherry' -s v -d 'Show the commit subjects next to the SHA1s' +complete -f -c git -n '__fish_git_using_command cherry' -a '(__fish_git_refs)' -d 'Upstream' + ### cherry-pick complete -f -c git -n '__fish_git_needs_command' -a cherry-pick -d 'Apply the change introduced by an existing commit' complete -f -c git -n '__fish_git_using_command cherry-pick' -a '(__fish_git_branches --no-merged)' @@ -864,6 +989,9 @@ complete -f -c git -n '__fish_git_using_command cherry-pick' -s x -d 'Append inf complete -f -c git -n '__fish_git_using_command cherry-pick' -s n -l no-commit -d 'Apply changes without making any commit' complete -f -c git -n '__fish_git_using_command cherry-pick' -s s -l signoff -d 'Add Signed-off-by line to the commit message' complete -f -c git -n '__fish_git_using_command cherry-pick' -l ff -d 'Fast-forward if possible' +complete -f -c git -n '__fish_git_using_command cherry-pick' -l continue -d 'Continue the operation in progress' +complete -f -c git -n '__fish_git_using_command cherry-pick' -l abort -d 'Cancel the operation' +complete -f -c git -n '__fish_git_using_command cherry-pick' -l skip -d 'Skip the current commit and continue with the rest of the sequence' ### clone complete -f -c git -n '__fish_git_needs_command' -a clone -d 'Clone a repository into a new directory' @@ -882,14 +1010,53 @@ complete -f -c git -n '__fish_git_using_command clone' -l recursive -d 'Initiali complete -c git -n '__fish_git_needs_command' -a commit -d 'Record changes to the repository' complete -c git -n '__fish_git_using_command commit' -l amend -d 'Amend the log message of the last commit' complete -f -c git -n '__fish_git_using_command commit' -a '(__fish_git_files modified)' +complete -c git -n '__fish_git_using_command commit' -s a -l all -d 'Automatically stage modified and deleted files' +complete -c git -n '__fish_git_using_command commit' -s p -l patch -d 'Use interactive patch selection interface' complete -f -c git -n '__fish_git_using_command commit' -l fixup -d 'Fixup commit to be used with rebase --autosquash' -complete -f -c git -n '__fish_git_using_command commit; and __fish_contains_opt fixup' -k -a '(__fish_git_recent_commits)' +complete -f -c git -n '__fish_git_using_command commit' -l squash -d 'Squash commit to be used with rebase --autosquash' +complete -c git -n '__fish_git_using_command commit' -l reset-author -d 'When amending, reset author of commit to the committer' +complete -x -c git -n '__fish_git_using_command commit' -l author -d 'Override the commit author' +complete -x -c git -n '__fish_git_using_command commit' -l cleanup -a "strip\t'Leading/trailing whitespace/empty lines, #commentary' + whitespace\t'Like strip but keep #commentary' + verbatim\t'Do not change the message' + scissors\t'Like whitespace but also remove after scissor lines' + default\t'Like strip if the message is to be edited, whitespace otherwise'" -d 'How to clean up the commit message' +complete -x -c git -n '__fish_git_using_command commit' -l date -d 'Override the author date' +complete -x -c git -n '__fish_git_using_command commit' -s m -l message -d 'Use the given message as the commit message' +complete -f -c git -n '__fish_git_using_command commit' -l no-edit -d 'Use the selected commit message without launching an editor' +complete -f -c git -n '__fish_git_using_command commit; and __fish_contains_opt fixup squash' -k -a '(__fish_git_recent_commits)' # TODO options +### count-objects +complete -f -c git -n '__fish_git_needs_command' -a count-objects -d 'Count unpacked number of objects and their disk consumption' +complete -f -c git -n '__fish_git_using_command count-objects' -s v -l verbose -d 'Be verbose' +complete -f -c git -n '__fish_git_using_command count-objects' -s H -l human-readable -d 'Print in human readable format' + +### describe +complete -c git -n '__fish_git_needs_command' -a describe -d 'Give an object a human readable name based on an available ref' +complete -k -f -c git -n '__fish_git_using_command describe' -a '(__fish_git_tags)' -d 'Tag' +complete -k -f -c git -n '__fish_git_using_command describe' -a '(__fish_git_branches)' +complete -k -f -c git -n '__fish_git_using_command describe' -a '(__fish_git_unique_remote_branches)' -d 'Unique Remote Branch' +complete -k -f -c git -n '__fish_git_using_command describe' -a '(__fish_git_heads)' -d 'Head' +complete -f -c git -n '__fish_git_using_command describe' -l dirty -d 'Describe the state of the working tree, append dirty if there are local changes' +complete -f -c git -n '__fish_git_using_command describe' -l broken -d 'Describe the state of the working tree, append -broken instead of erroring' +complete -f -c git -n '__fish_git_using_command describe' -l all -d 'Use all tags, not just annotated' +complete -f -c git -n '__fish_git_using_command describe' -l tags -d 'Use all commits/tags, not just annotated tags' +complete -f -c git -n '__fish_git_using_command describe' -l contains -d 'Find the tag that comes after the commit' +complete -f -c git -n '__fish_git_using_command describe' -l abbrev -d 'Use digits, or as many digits as needed to form a unique object name' +complete -f -c git -n '__fish_git_using_command describe' -l candidates -d 'Consider up to candidates' +complete -f -c git -n '__fish_git_using_command describe' -l exact-match -d 'Only output exact matches' +complete -f -c git -n '__fish_git_using_command describe' -l debug -d 'Display debug info' +complete -f -c git -n '__fish_git_using_command describe' -l long -d 'Always output the long format' +complete -f -c git -n '__fish_git_using_command describe' -l match -d 'Only consider tags matching the given glob pattern' +complete -f -c git -n '__fish_git_using_command describe' -l exclude -d 'Do not consider tags matching the given glob pattern' +complete -f -c git -n '__fish_git_using_command describe' -l always -d 'Show uniquely abbreviated commit object as fallback' +complete -f -c git -n '__fish_git_using_command describe' -l first-parent -d 'Follow only the first parent of a merge commit' + ### diff complete -c git -n '__fish_git_needs_command' -a diff -d 'Show changes between commits, commit and working tree, etc' -complete -c git -n '__fish_git_using_command diff' -a '(__fish_git_ranges)' -complete -c git -n '__fish_git_using_command diff' -l cached -d 'Show diff of changes in the index' +complete -c git -n '__fish_git_using_command diff; and not contains -- -- (commandline -opc)' -a '(__fish_git_ranges)' +complete -c git -n '__fish_git_using_command diff' -l cached -d 'Show diff of changes in the index (same as --staged)' complete -c git -n '__fish_git_using_command diff' -l no-index -d 'Compare two paths on the filesystem' complete -c git -n '__fish_git_using_command diff' -l exit-code -d 'Exit with 1 if there were differences or 0 if no differences' complete -c git -n '__fish_git_using_command diff' -s q -l quiet -d 'Disable all output of the program, implies --exit-code' @@ -897,7 +1064,8 @@ complete -c git -n '__fish_git_using_command diff' -s 1 -l base -d 'Compare the complete -c git -n '__fish_git_using_command diff' -s 2 -l ours -d 'Compare the working tree with the "our branch"' complete -c git -n '__fish_git_using_command diff' -s 3 -l theirs -d 'Compare the working tree with the "their branch"' complete -c git -n '__fish_git_using_command diff' -s 0 -d 'Omit diff output for unmerged entries and just show "Unmerged"' -complete -f -c git -n '__fish_git_using_command diff' -a '(__fish_git_files modified deleted)' +complete -c git -n '__fish_git_using_command diff; and not __fish_contains_opt cached staged' -a '(__fish_git_files modified deleted)' +complete -c git -n '__fish_git_using_command diff; and __fish_contains_opt cached staged' -fa '(__fish_git_files all-staged)' ### Function to list available tools for git difftool and mergetool @@ -926,6 +1094,15 @@ complete -f -c git -n '__fish_git_using_command difftool' -l trust-exit-code -d complete -f -c git -n '__fish_git_using_command difftool' -s x -l extcmd -d 'Specify a custom command for viewing diffs' # TODO options +### gc +complete -f -c git -n '__fish_git_needs_command' -a gc -d 'Cleanup unnecessary files and optimize the local repository' +complete -f -c git -n '__fish_git_using_command gc' -l aggressive -d 'Aggressively optimize the repository' +complete -f -c git -n '__fish_git_using_command gc' -l auto -d 'Checks any housekeeping is required and then run' +complete -f -c git -n '__fish_git_using_command gc' -l prune -d 'Prune loose objects older than date' +complete -f -c git -n '__fish_git_using_command gc' -l no-prune -d 'Do not prune any loose objects' +complete -f -c git -n '__fish_git_using_command gc' -l quiet -d 'Be quiet' +complete -f -c git -n '__fish_git_using_command gc' -l force -d 'Force `git gc` to run' +complete -f -c git -n '__fish_git_using_command gc' -l keep-largest-pack -d 'Ignore `gc.bigPackThreshold`' ### grep complete -c git -n '__fish_git_needs_command' -a grep -d 'Print lines matching a pattern' @@ -938,7 +1115,7 @@ complete -f -c git -n '__fish_git_needs_command' -a init -d 'Create an empty git ### log complete -c git -n '__fish_git_needs_command' -a shortlog -d 'Show commit shortlog' complete -c git -n '__fish_git_needs_command' -a log -d 'Show commit logs' -complete -c git -n '__fish_git_using_command log; and not contains -- -- (commandline -op)' -a '(__fish_git_ranges)' +complete -c git -n '__fish_git_using_command log; and not contains -- -- (commandline -opc)' -a '(__fish_git_ranges)' complete -c git -n '__fish_git_using_command log' -l follow -d 'Continue listing file history beyond renames' complete -c git -n '__fish_git_using_command log' -l no-decorate -d 'Don\'t print ref names' @@ -970,7 +1147,7 @@ complete -c git -n '__fish_git_using_command log' -l merges -d 'Print only merge complete -c git -n '__fish_git_using_command log' -l no-merges -d 'Don\'t print commits with more than one parent' complete -x -c git -n '__fish_git_using_command log' -l min-parents -d 'Show only commit with at least the given number of parents' complete -x -c git -n '__fish_git_using_command log' -l max-parents -d 'Show only commit with at most the given number of parents' -complete -c git -n '__fish_git_using_command log' -l no-min-parents -d 'Show only commit without a mimimum number of parents' +complete -c git -n '__fish_git_using_command log' -l no-min-parents -d 'Show only commit without a minimum number of parents' complete -c git -n '__fish_git_using_command log' -l no-max-parents -d 'Show only commit without a maximum number of parents' complete -c git -n '__fish_git_using_command log' -l first-parent -d 'Follow only the first parent commit upon seeing a merge commit' complete -c git -n '__fish_git_using_command log' -l not -d 'Reverse meaning of ^ prefix' @@ -1034,6 +1211,7 @@ complete -x -c git -n '__fish_git_using_command log' -l date -a ' short short-local raw + human unix format: default @@ -1121,6 +1299,35 @@ complete -c git -n '__fish_git_using_command log' -l no-prefix complete -x -c git -n '__fish_git_using_command log' -l line-prefix complete -c git -n '__fish_git_using_command log' -l ita-invisible-in-index +### ls-files +complete -c git -n '__fish_git_needs_command' -a ls-files -d 'Show information about files in the index and the working tree' +complete -c git -n '__fish_git_using_command ls-files' +complete -c git -n '__fish_git_using_command ls-files' -s c -l cached -d 'Show cached files in the output' +complete -c git -n '__fish_git_using_command ls-files' -s d -l deleted -d 'Show deleted files in the output' +complete -c git -n '__fish_git_using_command ls-files' -s m -l modified -d 'Show modified files in the output' +complete -c git -n '__fish_git_using_command ls-files' -s o -l others -d 'Show other (i.e. untracked) files in the output' +complete -c git -n '__fish_git_using_command ls-files' -s i -l ignored -d 'Show only ignored files in the output' +complete -c git -n '__fish_git_using_command ls-files' -s s -l staged -d "Show staged contents' mode bits, object name and stage number in the output" +complete -c git -n '__fish_git_using_command ls-files' -l directory -d 'If a whole directory is classified as "other", show just its name' +complete -c git -n '__fish_git_using_command ls-files' -l no-empty-directory -d 'Do not list empty directories' +complete -c git -n '__fish_git_using_command ls-files' -s u -l unmerged -d 'Show unmerged files in the output' +complete -c git -n '__fish_git_using_command ls-files' -s k -l killed -d 'Show files on the filesystem that need to be removed for checkout-index to succeed' +complete -c git -n '__fish_git_using_command ls-files' -s z -d 'Use \0 delimiter' +complete -c git -n '__fish_git_using_command ls-files' -s x -l exclude -d 'Skip untracked files matching pattern' +complete -c git -n '__fish_git_using_command ls-files' -s X -l exclude-from -d 'Read exclude patterns from ; 1 per line' +complete -c git -n '__fish_git_using_command ls-files' -l exclude-per-directory -d 'Read additional exclude patterns that apply only to the directory and its subdirectories in ' +complete -c git -n '__fish_git_using_command ls-files' -l exclude-standard -d 'Add the standard Git exclusions' +complete -c git -n '__fish_git_using_command ls-files' -l error-unmatch -d 'If any does not appear in the index, treat this as an error' +complete -c git -n '__fish_git_using_command ls-files' -l with-tree +complete -c git -n '__fish_git_using_command ls-files' -s t -d 'Identifies the file status' +complete -c git -n '__fish_git_using_command ls-files' -s v -d 'Show file status, use lowercase letters for files assumed unchanged' +complete -c git -n '__fish_git_using_command ls-files' -s f -d 'Show file status, use lowercase letters for files marked as fsmonitor valid' +complete -c git -n '__fish_git_using_command ls-files' -l full-name -d 'Force paths to be output relative to the project top directory' +complete -c git -n '__fish_git_using_command ls-files' -l recurse-submodules -d 'Recursively calls ls-files on each submodule in the repository' +complete -c git -n '__fish_git_using_command ls-files' -l abbrev -d 'Show only a partial prefix' +complete -c git -n '__fish_git_using_command ls-files' -l debug -d 'After each line that describes a file, add more data about its cache entry' +complete -c git -n '__fish_git_using_command ls-files' -l eol -d 'Show and of files' + ### merge complete -f -c git -n '__fish_git_needs_command' -a merge -d 'Join two or more development histories together' complete -f -c git -n '__fish_git_using_command merge' -a '(__fish_git_branches)' @@ -1155,6 +1362,15 @@ complete -f -c git -n '__fish_git_using_command merge' -s no-rerere-autoupdate - complete -f -c git -n '__fish_git_using_command merge' -l abort -d 'Abort the current conflict resolution process' complete -f -c git -n '__fish_git_using_command merge' -l continue -d 'Conclude current conflict resolution process' +### merge-base +complete -f -c git -n '__fish_git_needs_command' -a merge-base -d 'Find as good common ancestors as possible for a merge' +complete -f -c git -n '__fish_git_using_command merge-base' -a '(__fish_git_branches)' +complete -f -c git -n '__fish_git_using_command merge-base' -s a -l all -d 'Output all merge bases for the commits, instead of just one' +complete -f -c git -n '__fish_git_using_command merge-base' -l octopus -d 'Compute the best common ancestors of all supplied commits' +complete -f -c git -n '__fish_git_using_command merge-base' -l independent -d 'Print a minimal subset of the supplied commits with the same ancestors.' +complete -f -c git -n '__fish_git_using_command merge-base' -l is-ancestor -d 'Check if the first commit is an ancestor of the second commit' +complete -f -c git -n '__fish_git_using_command merge-base' -l fork-point -d 'Find the point at which a branch forked from another branch ref' + ### mergetool complete -f -c git -n '__fish_git_needs_command' -a mergetool -d 'Run merge conflict resolution tools to resolve merge conflicts' @@ -1215,6 +1431,15 @@ complete -f -c git -n '__fish_git_using_command pull' -l autostash -d 'Before st complete -f -c git -n '__fish_git_using_command pull' -l no-autostash -d 'Do not stash local changes before starting rebase' # TODO other options +### range-diff +complete -f -c git -n '__fish_git_needs_command' -a range-diff -d 'Compare two commit ranges (e.g. two versions of a branch)' +complete -f -c git -n '__fish_git_using_command range-diff' -a '(__fish_git_branches)' +complete -f -c git -n '__fish_git_using_command range-diff' -a '(__fish_git_heads)' -d 'Head' +complete -f -c git -n '__fish_git_using_command range-diff' -a '(__fish_git_tags)' -d 'Tag' +complete -f -c git -n '__fish_git_using_command range-diff' -l creation-factor -d 'Percentage by which creation is weighted' +complete -f -c git -n '__fish_git_using_command range-diff' -l no-dual-color -d 'Use simple diff colors' + + ### push complete -f -c git -n '__fish_git_needs_command' -a push -d 'Update remote refs along with associated objects' complete -f -c git -n '__fish_git_using_command push; and not __fish_git_branch_for_remote' -a '(__fish_git_remotes)' -d 'Remote alias' @@ -1224,8 +1449,8 @@ complete -f -c git -n '__fish_git_using_command push; and __fish_git_branch_for_ # git push REMOTE :BRANCH deletes BRANCH on remote REMOTE complete -f -c git -n '__fish_git_using_command push; and __fish_git_branch_for_remote; and string match -q ":*" -- (commandline -ct)' -a ':(__fish_git_branch_for_remote | string replace -r \t".*" "")' -d 'Delete remote branch' # then src:dest (where both src and dest are git objects, so we want to complete branches) -complete -f -c git -n '__fish_git_using_command push; and __fish_git_branch_for_remote; and string match -q "+*:*" -- (commandline -ct)' -a '+(__fish_git_branches | string replace -r \t".*" ""):(__fish_git_branch_for_remote | string replace -r \t".*" "")' -d 'Force-push local branch to remote branch' -complete -f -c git -n '__fish_git_using_command push; and __fish_git_branch_for_remote; and string match -q "*:*" -- (commandline -ct)' -a '(__fish_git_branches | string replace -r \t".*" ""):(__fish_git_branch_for_remote | string replace -r \t".*" "")' -d 'Push local branch to remote branch' +complete -f -c git -n '__fish_git_using_command push; and __fish_git_branch_for_remote; and string match -q "+*:*" -- (commandline -ct)' -a '(commandline -ct | string replace -r ":.*" ""):(__fish_git_branch_for_remote | string replace -r \t".*" "")' -d 'Force-push local branch to remote branch' +complete -f -c git -n '__fish_git_using_command push; and __fish_git_branch_for_remote; and string match -q "*:*" -- (commandline -ct)' -a '(commandline -ct | string replace -r ":.*" ""):(__fish_git_branch_for_remote | string replace -r \t".*" "")' -d 'Push local branch to remote branch' complete -f -c git -n '__fish_git_using_command push' -l all -d 'Push all refs under refs/heads/' complete -f -c git -n '__fish_git_using_command push' -l prune -d "Remove remote branches that don't have a local counterpart" complete -f -c git -n '__fish_git_using_command push' -l mirror -d 'Push all refs under refs/' @@ -1260,27 +1485,87 @@ complete -f -c git -n '__fish_git_using_command rebase' -s n -l no-stat -d "Don' complete -f -c git -n '__fish_git_using_command rebase' -l verify -d "Allow the pre-rebase hook to run" complete -f -c git -n '__fish_git_using_command rebase' -l no-verify -d "Don't allow the pre-rebase hook to run" complete -f -c git -n '__fish_git_using_command rebase' -s f -l force-rebase -d 'Force the rebase' +complete -f -c git -n '__fish_git_using_command rebase' -l committer-date-is-author-date -d "Use the author date as the committer date" +complete -f -c git -n '__fish_git_using_command rebase' -l ignore-date -d "Use the committer date as the author date" complete -f -c git -n '__fish_git_using_command rebase' -s i -l interactive -d 'Interactive mode' complete -f -c git -n '__fish_git_using_command rebase' -s p -l preserve-merges -d 'Try to recreate merges' +complete -f -c git -n '__fish_git_using_command rebase' -s r -l rebase-merges -a 'rebase-cousins no-rebase-cousins' -d 'Preserve branch structure' complete -f -c git -n '__fish_git_using_command rebase' -l root -d 'Rebase all reachable commits' complete -f -c git -n '__fish_git_using_command rebase' -l autosquash -d 'Automatic squashing' complete -f -c git -n '__fish_git_using_command rebase' -l no-autosquash -d 'No automatic squashing' +complete -f -c git -n '__fish_git_using_command rebase' -l autostash -d 'Before starting rebase, stash local changes, and apply stash when done' +complete -f -c git -n '__fish_git_using_command rebase' -l no-autostash -d 'Do not stash local changes before starting rebase' complete -f -c git -n '__fish_git_using_command rebase' -l no-ff -d 'No fast-forward' # This actually takes script for $SHELL, but completing that is... complicated. complete -r -c git -n '__fish_git_using_command rebase' -l exec -d 'Execute shellscript' +### reflog +set -l reflogcommands show expire delete exists +complete -f -c git -n '__fish_git_needs_command' -a reflog -d 'Manage reflog information' +complete -f -c git -n '__fish_git_using_command reflog' -a '(__fish_git_branches)' +complete -f -c git -n '__fish_git_using_command reflog' -a '(__fish_git_heads)' -d 'Head' + +complete -f -c git -n "__fish_git_using_command reflog; and not __fish_seen_subcommand_from $reflogcommands" -a "$reflogcommands" + ### reset complete -c git -n '__fish_git_needs_command' -a reset -d 'Reset current HEAD to the specified state' complete -f -c git -n '__fish_git_using_command reset' -l hard -d 'Reset files in working directory' -complete -c git -n '__fish_git_using_command reset' -a '(__fish_git_branches)' +complete -c git -n '__fish_git_using_command reset; and not contains -- -- (commandline -opc)' -a '(__fish_git_branches)' # reset can either undo changes to versioned modified files, # or remove files from the staging area. # Deleted files seem to need a "--" separator. -complete -f -c git -n '__fish_git_using_command reset; and not contains -- -- (commandline -op)' -a '(__fish_git_files all-staged modified)' -complete -f -c git -n '__fish_git_using_command reset; and contains -- -- (commandline -op)' -a '(__fish_git_files all-staged deleted modified)' -complete -f -c git -n '__fish_git_using_command reset; and not contains -- -- (commandline -op)' -a '(__fish_git_reflog)' -d 'Reflog' +complete -f -c git -n '__fish_git_using_command reset; and not contains -- -- (commandline -opc)' -a '(__fish_git_files all-staged modified)' +complete -f -c git -n '__fish_git_using_command reset; and contains -- -- (commandline -opc)' -a '(__fish_git_files all-staged deleted modified)' +complete -f -c git -n '__fish_git_using_command reset; and not contains -- -- (commandline -opc)' -a '(__fish_git_reflog)' -d 'Reflog' # TODO options +### restore and switch +# restore options +complete -f -c git -n '__fish_git_needs_command' -a restore -d 'Restore working tree files' +complete -f -c git -n '__fish_git_using_command restore' -r -s s -l source -d 'Specify the source tree used to restore the working tree' -a '(__fish_git_refs)' +complete -f -c git -n '__fish_git_using_command restore' -s p -l patch -d 'Interactive mode' +complete -f -c git -n '__fish_git_using_command restore' -s W -l worktree -d 'Restore working tree (default)' +complete -f -c git -n '__fish_git_using_command restore' -s S -l staged -d 'Restore the index' +complete -f -c git -n '__fish_git_using_command restore' -l ours -d 'When restoring files, use stage #2 (ours)' +complete -f -c git -n '__fish_git_using_command restore' -l theirs -d 'When restoring files, use stage #3 (theirs)' +complete -f -c git -n '__fish_git_using_command restore' -s m -l merge -d 'Recreate the conflicted merge in the unmerged paths when restoring files' +complete -f -c git -n '__fish_git_using_command restore' -l ignore-unmerged -d 'When restoring files, do not abort the operation if there are unmerged entries' +complete -f -c git -n '__fish_git_using_command restore' -l ignore-skip-worktree-bits -d 'Ignore the sparse-checkout file and unconditionally restore any files in ' +complete -f -c git -n '__fish_git_using_command restore' -l overlay -d 'Never remove files when restoring' +complete -f -c git -n '__fish_git_using_command restore' -l no-overlay -d 'Remove files when restoring (default)' +complete -f -c git -n '__fish_git_using_command restore; and not contains -- --staged (commandline -opc)' -a '(__fish_git_files modified deleted unmerged)' +complete -f -c git -n '__fish_git_using_command restore; and contains -- --staged (commandline -opc)' -a '(__fish_git_files added modified-staged deleted-staged renamed copied)' +complete -f -c git -n '__fish_git_using_command restore; and __fish_contains_opt -s s source' -a '(git ls-files)' +# switch options +complete -f -c git -n '__fish_git_needs_command' -a switch -d 'Switch to a branch' +complete -k -f -c git -n '__fish_git_using_command switch' -a '(__fish_git_branches)' +complete -k -f -c git -n '__fish_git_using_command switch' -a '(__fish_git_unique_remote_branches)' -d 'Unique Remote Branch' +complete -f -c git -n '__fish_git_using_command switch' -r -s c -l create -d 'Create a new branch' +complete -f -c git -n '__fish_git_using_command switch' -r -s C -l force-create -d 'Force create a new branch' +complete -f -c git -n '__fish_git_using_command switch' -s d -l detach -d 'Switch to a commit for inspection and discardable experiment' +complete -f -c git -n '__fish_git_using_command switch' -l guess -d 'Guess branch name from remote branch (default)' +complete -f -c git -n '__fish_git_using_command switch' -l no-guess -d 'Do not guess branch name from remote branch' +complete -f -c git -n '__fish_git_using_command switch' -s f -l force -l discard-changes -d 'Proceed even if the index or the working tree differs from HEAD' +complete -f -c git -n '__fish_git_using_command switch' -s m -l merge -d 'Merge the current branch and contents of the working tree into a new branch' +complete -f -c git -n '__fish_git_using_command switch' -s t -l track -d 'Track remote branch when creating a new branch' +complete -f -c git -n '__fish_git_using_command switch' -l no-track -d 'Do not track remote branch when creating a new branch' +complete -f -c git -n '__fish_git_using_command switch' -r -l orphan -d 'Create a new orphan branch' +complete -f -c git -n '__fish_git_using_command switch' -l ignore-other-worktrees -d 'Force check out of the reference' +complete -f -c git -n '__fish_git_using_command switch' -l recurse-submodules -d 'Update the work trees of submodules' +complete -f -c git -n '__fish_git_using_command switch' -l no-recurse-submodules -d 'Do not update the work trees of submodules' +# common options +complete -f -c git -n '__fish_git_using_command restore switch' -s q -l quiet -d 'Suppress messages' +complete -f -c git -n '__fish_git_using_command restore switch' -l progress -d 'Report progress status to stderr (default)' +complete -f -c git -n '__fish_git_using_command restore switch' -l no-progress -d 'Do not report progress status to stderr' +complete -f -c git -n '__fish_git_using_command restore switch' -l 'conflict=merge' -d 'Same as --merge, but specify \'merge\' as the conflicting hunk style (default)' +complete -f -c git -n '__fish_git_using_command restore switch' -l 'conflict=diff3' -d 'Same as --merge, but specify \'diff3\' as the conflicting hunk style' + +### rev-parse +complete -f -c git -n '__fish_git_needs_command' -a rev-parse -d 'Pick out and massage parameters' +complete -f -c git -n '__fish_git_using_command rev-parse' -a '(__fish_git_branches)' +complete -f -c git -n '__fish_git_using_command rev-parse' -a '(__fish_git_heads)' -d 'Head' +complete -k -c git -n '__fish_git_using_command rev-parse' -a '(__fish_git_tags)' -d 'Tag' + ### revert complete -f -c git -n '__fish_git_needs_command' -a revert -d 'Revert an existing commit' complete -f -c git -n '__fish_git_using_command revert' -ka '(__fish_git_commits)' @@ -1314,12 +1599,52 @@ complete -f -c git -n '__fish_git_using_command tag' -s a -l annotate -d 'Make a complete -f -c git -n '__fish_git_using_command tag' -s s -l sign -d 'Make a GPG-signed tag' complete -f -c git -n '__fish_git_using_command tag' -s d -l delete -d 'Remove a tag' complete -f -c git -n '__fish_git_using_command tag' -s v -l verify -d 'Verify signature of a tag' -complete -f -c git -n '__fish_git_using_command tag' -s f -l force -d 'Force overwriting exising tag' +complete -f -c git -n '__fish_git_using_command tag' -s f -l force -d 'Force overwriting existing tag' complete -f -c git -n '__fish_git_using_command tag' -s l -l list -d 'List tags' complete -f -c git -n '__fish_git_using_command tag' -l contains -xka '(__fish_git_commits)' -d 'List tags that contain a commit' complete -f -c git -n '__fish_git_using_command tag; and __fish_contains_opt -s d delete -s v verify' -a '(__fish_git_tags)' -d 'Tag' # TODO options +### worktree +set -l git_worktree_commands add list lock move prune remove unlock +complete -c git -n '__fish_git_needs_command' -a worktree -d 'Manage multiple working trees' +complete -f -c git -n "__fish_git_using_command worktree; and not __fish_seen_subcommand_from $git_worktree_commands" -a add -d 'Create a working tree' +complete -f -c git -n "__fish_git_using_command worktree; and not __fish_seen_subcommand_from $git_worktree_commands" -a list -d 'List details of each worktree' +complete -f -c git -n "__fish_git_using_command worktree; and not __fish_seen_subcommand_from $git_worktree_commands" -a lock -d 'Unlock a working tree' +complete -f -c git -n "__fish_git_using_command worktree; and not __fish_seen_subcommand_from $git_worktree_commands" -a move -d 'Move a working tree to a new location' +complete -f -c git -n "__fish_git_using_command worktree; and not __fish_seen_subcommand_from $git_worktree_commands" -a prune -d 'Prune working tree information in $GIT_DIR/worktrees' +complete -f -c git -n "__fish_git_using_command worktree; and not __fish_seen_subcommand_from $git_worktree_commands" -a remove -d 'Remove a working tree' +complete -f -c git -n "__fish_git_using_command worktree; and not __fish_seen_subcommand_from $git_worktree_commands" -a unlock -d 'Unlock a working tree' + +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add move remove' -s f -l force -d 'Override safeguards' + +complete -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' +complete -k -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -a '(__fish_git_branches)' +complete -k -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -a '(__fish_git_heads)' -d 'Head' +complete -k -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -a '(__fish_git_tags)' -d 'Tag' +complete -k -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -a '(__fish_git_unique_remote_branches)' -d 'Unique Remote Branch' +complete -x -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -s b -d 'Create a new branch' +complete -x -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -s B -d 'Create a new branch even if it already exists' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -l detach -d 'Detach HEAD in the new working tree' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -l checkout -d 'Checkout after creating working tree' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -l no-checkout -d 'Suppress checkout' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -l guess-remote +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -l no-guess-remote +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -l track -d 'Mark as "upstream" from the new branch' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -l no-track -d 'Don\'t mark as "upstream" from the new branch' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -l lock -d 'Lock working tree after creation' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from add' -s q -l quiet -d 'Suppress feedback messages' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from list' -l porcelain -d 'Output in an easy-to-parse format for scripts' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from lock' -a '(__fish_git_complete_worktrees)' -d 'Worktree' +complete -x -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from lock' -l reason -d 'An explanation why the working tree is locked' +complete -x -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from move; and not __fish_any_arg_in (__fish_git_complete_worktrees)' -a '(__fish_git_complete_worktrees)' -d 'Worktree' +complete -x -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from move; and __fish_any_arg_in (__fish_git_complete_worktrees)' -a '(__fish_complete_directories)' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from prune' -s n -l dry-run -d 'Do not remove anything' +complete -f -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from prune' -s v -l verbose -d 'Report all removals' +complete -x -c git -n '__fish_git_using_command worktree; and __fish_seen_subcommand_from prune' -l expire -d 'Only expire unused working trees older than