Fix some spelling errors
This commit is contained in:
parent
ba38829c04
commit
3ef58da988
@ -1,6 +1,9 @@
|
||||
ChangeLog for davfs2
|
||||
--------------------
|
||||
|
||||
2016-05-16 Werner Baumann (werner.baumann@onlinehome.de)
|
||||
* Fix some spelling errors.
|
||||
|
||||
2016-04-08 Werner Baumann (werner.baumann@onlinehome.de)
|
||||
* README, mount.davfs.8:
|
||||
Add information about required local cache space.
|
||||
|
517
INSTALL
517
INSTALL
@ -1,370 +1,161 @@
|
||||
Installation Instructions
|
||||
*************************
|
||||
|
||||
Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation,
|
||||
Inc.
|
||||
|
||||
Copying and distribution of this file, with or without modification,
|
||||
are permitted in any medium without royalty provided the copyright
|
||||
notice and this notice are preserved. This file is offered as-is,
|
||||
without warranty of any kind.
|
||||
|
||||
Basic Installation
|
||||
==================
|
||||
|
||||
Briefly, the shell command `./configure && make && make install'
|
||||
should configure, build, and install this package. The following
|
||||
more-detailed instructions are generic; see the `README' file for
|
||||
instructions specific to this package. Some packages provide this
|
||||
`INSTALL' file but do not implement all of the features documented
|
||||
below. The lack of an optional feature in a given package is not
|
||||
necessarily a bug. More recommendations for GNU packages can be found
|
||||
in *note Makefile Conventions: (standards)Makefile Conventions.
|
||||
|
||||
The `configure' shell script attempts to guess correct values for
|
||||
various system-dependent variables used during compilation. It uses
|
||||
those values to create a `Makefile' in each directory of the package.
|
||||
It may also create one or more `.h' files containing system-dependent
|
||||
definitions. Finally, it creates a shell script `config.status' that
|
||||
you can run in the future to recreate the current configuration, and a
|
||||
file `config.log' containing compiler output (useful mainly for
|
||||
debugging `configure').
|
||||
|
||||
It can also use an optional file (typically called `config.cache'
|
||||
and enabled with `--cache-file=config.cache' or simply `-C') that saves
|
||||
the results of its tests to speed up reconfiguring. Caching is
|
||||
disabled by default to prevent problems with accidental use of stale
|
||||
cache files.
|
||||
|
||||
If you need to do unusual things to compile the package, please try
|
||||
to figure out how `configure' could check whether to do them, and mail
|
||||
diffs or instructions to the address given in the `README' so they can
|
||||
be considered for the next release. If you are using the cache, and at
|
||||
some point `config.cache' contains results you don't want to keep, you
|
||||
may remove or edit it.
|
||||
|
||||
The file `configure.ac' (or `configure.in') is used to create
|
||||
`configure' by a program called `autoconf'. You need `configure.ac' if
|
||||
you want to change it or regenerate `configure' using a newer version
|
||||
of `autoconf'.
|
||||
|
||||
The simplest way to compile this package is:
|
||||
|
||||
1. `cd' to the directory containing the package's source code and type
|
||||
`./configure' to configure the package for your system.
|
||||
|
||||
Running `configure' might take a while. While running, it prints
|
||||
some messages telling which features it is checking for.
|
||||
|
||||
2. Type `make' to compile the package.
|
||||
|
||||
3. Optionally, type `make check' to run any self-tests that come with
|
||||
the package, generally using the just-built uninstalled binaries.
|
||||
|
||||
4. Type `make install' to install the programs and any data files and
|
||||
documentation. When installing into a prefix owned by root, it is
|
||||
recommended that the package be configured and built as a regular
|
||||
user, and only the `make install' phase executed with root
|
||||
privileges.
|
||||
|
||||
5. Optionally, type `make installcheck' to repeat any self-tests, but
|
||||
this time using the binaries in their final installed location.
|
||||
This target does not install anything. Running this target as a
|
||||
regular user, particularly if the prior `make install' required
|
||||
root privileges, verifies that the installation completed
|
||||
correctly.
|
||||
|
||||
6. You can remove the program binaries and object files from the
|
||||
source code directory by typing `make clean'. To also remove the
|
||||
files that `configure' created (so you can compile the package for
|
||||
a different kind of computer), type `make distclean'. There is
|
||||
also a `make maintainer-clean' target, but that is intended mainly
|
||||
for the package's developers. If you use it, you may have to get
|
||||
all sorts of other programs in order to regenerate files that came
|
||||
with the distribution.
|
||||
|
||||
7. Often, you can also type `make uninstall' to remove the installed
|
||||
files again. In practice, not all packages have tested that
|
||||
uninstallation works correctly, even though it is required by the
|
||||
GNU Coding Standards.
|
||||
|
||||
8. Some packages, particularly those that use Automake, provide `make
|
||||
distcheck', which can by used by developers to test that all other
|
||||
targets like `make install' and `make uninstall' work correctly.
|
||||
This target is generally not run by end users.
|
||||
|
||||
Compilers and Options
|
||||
=====================
|
||||
|
||||
Some systems require unusual options for compilation or linking that
|
||||
the `configure' script does not know about. Run `./configure --help'
|
||||
for details on some of the pertinent environment variables.
|
||||
|
||||
You can give `configure' initial values for configuration parameters
|
||||
by setting variables in the command line or in the environment. Here
|
||||
is an example:
|
||||
|
||||
./configure CC=c99 CFLAGS=-g LIBS=-lposix
|
||||
|
||||
*Note Defining Variables::, for more details.
|
||||
|
||||
Compiling For Multiple Architectures
|
||||
====================================
|
||||
|
||||
You can compile the package for more than one kind of computer at the
|
||||
same time, by placing the object files for each architecture in their
|
||||
own directory. To do this, you can use GNU `make'. `cd' to the
|
||||
directory where you want the object files and executables to go and run
|
||||
the `configure' script. `configure' automatically checks for the
|
||||
source code in the directory that `configure' is in and in `..'. This
|
||||
is known as a "VPATH" build.
|
||||
|
||||
With a non-GNU `make', it is safer to compile the package for one
|
||||
architecture at a time in the source code directory. After you have
|
||||
installed the package for one architecture, use `make distclean' before
|
||||
reconfiguring for another architecture.
|
||||
|
||||
On MacOS X 10.5 and later systems, you can create libraries and
|
||||
executables that work on multiple system types--known as "fat" or
|
||||
"universal" binaries--by specifying multiple `-arch' options to the
|
||||
compiler but only a single `-arch' option to the preprocessor. Like
|
||||
this:
|
||||
|
||||
./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
||||
CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
||||
CPP="gcc -E" CXXCPP="g++ -E"
|
||||
|
||||
This is not guaranteed to produce working output in all cases, you
|
||||
may have to build one architecture at a time and combine the results
|
||||
using the `lipo' tool if you have problems.
|
||||
|
||||
Installation Names
|
||||
==================
|
||||
|
||||
By default, `make install' installs the package's commands under
|
||||
`/usr/local/bin', include files under `/usr/local/include', etc. You
|
||||
can specify an installation prefix other than `/usr/local' by giving
|
||||
`configure' the option `--prefix=PREFIX', where PREFIX must be an
|
||||
absolute file name.
|
||||
|
||||
You can specify separate installation prefixes for
|
||||
architecture-specific files and architecture-independent files. If you
|
||||
pass the option `--exec-prefix=PREFIX' to `configure', the package uses
|
||||
PREFIX as the prefix for installing programs and libraries.
|
||||
Documentation and other data files still use the regular prefix.
|
||||
|
||||
In addition, if you use an unusual directory layout you can give
|
||||
options like `--bindir=DIR' to specify different values for particular
|
||||
kinds of files. Run `configure --help' for a list of the directories
|
||||
you can set and what kinds of files go in them. In general, the
|
||||
default for these options is expressed in terms of `${prefix}', so that
|
||||
specifying just `--prefix' will affect all of the other directory
|
||||
specifications that were not explicitly provided.
|
||||
|
||||
The most portable way to affect installation locations is to pass the
|
||||
correct locations to `configure'; however, many packages provide one or
|
||||
both of the following shortcuts of passing variable assignments to the
|
||||
`make install' command line to change installation locations without
|
||||
having to reconfigure or recompile.
|
||||
|
||||
The first method involves providing an override variable for each
|
||||
affected directory. For example, `make install
|
||||
prefix=/alternate/directory' will choose an alternate location for all
|
||||
directory configuration variables that were expressed in terms of
|
||||
`${prefix}'. Any directories that were specified during `configure',
|
||||
but not in terms of `${prefix}', must each be overridden at install
|
||||
time for the entire installation to be relocated. The approach of
|
||||
makefile variable overrides for each directory variable is required by
|
||||
the GNU Coding Standards, and ideally causes no recompilation.
|
||||
However, some platforms have known limitations with the semantics of
|
||||
shared libraries that end up requiring recompilation when using this
|
||||
method, particularly noticeable in packages that use GNU Libtool.
|
||||
|
||||
The second method involves providing the `DESTDIR' variable. For
|
||||
example, `make install DESTDIR=/alternate/directory' will prepend
|
||||
`/alternate/directory' before all installation names. The approach of
|
||||
`DESTDIR' overrides is not required by the GNU Coding Standards, and
|
||||
does not work on platforms that have drive letters. On the other hand,
|
||||
it does better at avoiding recompilation issues, and works well even
|
||||
when some directory options were not specified in terms of `${prefix}'
|
||||
at `configure' time.
|
||||
|
||||
Optional Features
|
||||
=================
|
||||
|
||||
If the package supports it, you can cause programs to be installed
|
||||
with an extra prefix or suffix on their names by giving `configure' the
|
||||
option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
|
||||
|
||||
Some packages pay attention to `--enable-FEATURE' options to
|
||||
`configure', where FEATURE indicates an optional part of the package.
|
||||
They may also pay attention to `--with-PACKAGE' options, where PACKAGE
|
||||
is something like `gnu-as' or `x' (for the X Window System). The
|
||||
`README' should mention any `--enable-' and `--with-' options that the
|
||||
package recognizes.
|
||||
|
||||
For packages that use the X Window System, `configure' can usually
|
||||
find the X include and library files automatically, but if it doesn't,
|
||||
you can use the `configure' options `--x-includes=DIR' and
|
||||
`--x-libraries=DIR' to specify their locations.
|
||||
|
||||
Some packages offer the ability to configure how verbose the
|
||||
execution of `make' will be. For these packages, running `./configure
|
||||
--enable-silent-rules' sets the default to minimal output, which can be
|
||||
overridden with `make V=1'; while running `./configure
|
||||
--disable-silent-rules' sets the default to verbose, which can be
|
||||
overridden with `make V=0'.
|
||||
|
||||
Particular systems
|
||||
==================
|
||||
|
||||
On HP-UX, the default C compiler is not ANSI C compatible. If GNU
|
||||
CC is not installed, it is recommended to use the following options in
|
||||
order to use an ANSI C compiler:
|
||||
|
||||
./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
|
||||
|
||||
and if that doesn't work, install pre-built binaries of GCC for HP-UX.
|
||||
|
||||
HP-UX `make' updates targets which have the same time stamps as
|
||||
their prerequisites, which makes it generally unusable when shipped
|
||||
generated files such as `configure' are involved. Use GNU `make'
|
||||
instead.
|
||||
|
||||
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
|
||||
parse its `<wchar.h>' header file. The option `-nodtk' can be used as
|
||||
a workaround. If GNU CC is not installed, it is therefore recommended
|
||||
to try
|
||||
|
||||
./configure CC="cc"
|
||||
|
||||
and if that doesn't work, try
|
||||
|
||||
./configure CC="cc -nodtk"
|
||||
|
||||
On Solaris, don't put `/usr/ucb' early in your `PATH'. This
|
||||
directory contains several dysfunctional programs; working variants of
|
||||
these programs are available in `/usr/bin'. So, if you need `/usr/ucb'
|
||||
in your `PATH', put it _after_ `/usr/bin'.
|
||||
|
||||
On Haiku, software installed for all users goes in `/boot/common',
|
||||
not `/usr/local'. It is recommended to use the following options:
|
||||
|
||||
./configure --prefix=/boot/common
|
||||
|
||||
Specifying the System Type
|
||||
==========================
|
||||
|
||||
There may be some features `configure' cannot figure out
|
||||
automatically, but needs to determine by the type of machine the package
|
||||
will run on. Usually, assuming the package is built to be run on the
|
||||
_same_ architectures, `configure' can figure that out, but if it prints
|
||||
a message saying it cannot guess the machine type, give it the
|
||||
`--build=TYPE' option. TYPE can either be a short name for the system
|
||||
type, such as `sun4', or a canonical name which has the form:
|
||||
|
||||
CPU-COMPANY-SYSTEM
|
||||
|
||||
where SYSTEM can have one of these forms:
|
||||
|
||||
OS
|
||||
KERNEL-OS
|
||||
|
||||
See the file `config.sub' for the possible values of each field. If
|
||||
`config.sub' isn't included in this package, then this package doesn't
|
||||
need to know the machine type.
|
||||
|
||||
If you are _building_ compiler tools for cross-compiling, you should
|
||||
use the option `--target=TYPE' to select the type of system they will
|
||||
produce code for.
|
||||
|
||||
If you want to _use_ a cross compiler, that generates code for a
|
||||
platform different from the build platform, you should specify the
|
||||
"host" platform (i.e., that on which the generated programs will
|
||||
eventually be run) with `--host=TYPE'.
|
||||
|
||||
Sharing Defaults
|
||||
================
|
||||
2012-01-07
|
||||
----------
|
||||
|
||||
If you want to set default values for `configure' scripts to share,
|
||||
you can create a site shell script called `config.site' that gives
|
||||
default values for variables like `CC', `cache_file', and `prefix'.
|
||||
`configure' looks for `PREFIX/share/config.site' if it exists, then
|
||||
`PREFIX/etc/config.site' if it exists. Or, you can set the
|
||||
`CONFIG_SITE' environment variable to the location of the site script.
|
||||
A warning: not all `configure' scripts look for a site script.
|
||||
# Copyright (C) 2006, 2007, 2008, 2009, 2010 Werner Baumann
|
||||
|
||||
# Copying and distribution of this file, with or without modification, are
|
||||
# permitted in any medium without royalty.
|
||||
|
||||
Defining Variables
|
||||
==================
|
||||
|
||||
Variables not defined in a site shell script can be set in the
|
||||
environment passed to `configure'. However, some packages may run
|
||||
configure again during the build, and the customized values of these
|
||||
variables may be lost. In order to avoid this problem, you should set
|
||||
them in the `configure' command line, using `VAR=value'. For example:
|
||||
|
||||
./configure CC=/usr/local2/bin/gcc
|
||||
DAVFS2 1.???? INSTALLATION
|
||||
=========================
|
||||
|
||||
causes the specified `gcc' to be used as the C compiler (unless it is
|
||||
overridden in the site shell script).
|
||||
1 UPDATING FROM PREVIOUS VERSION
|
||||
2 INSTALLATION
|
||||
2.1 PREREQUISITE
|
||||
2.2 INSTALLATION FROM CVS SOURCES
|
||||
2.3 INSTALLATION FROM SOURCE PACKAGE
|
||||
3 UNINSTALL
|
||||
|
||||
|
||||
1 UPDATING FROM PREVIOUS VERSION
|
||||
================================
|
||||
|
||||
Unfortunately, this technique does not work for `CONFIG_SHELL' due to
|
||||
an Autoconf limitation. Until the limitation is lifted, you can use
|
||||
this workaround:
|
||||
'make install' copies new versions of davfs2.conf and secrets
|
||||
into /usr/local/etc/davfs2 or /etc/davfs2 and creates a backup of the
|
||||
existing files. You will have to merge your changes from the backup
|
||||
into the new files.
|
||||
|
||||
When a user invokes the new version of mount.davfs the first time, it
|
||||
will only copy new versions of davfs2.conf and secrets into ~/.davfs2,
|
||||
if this files do not exist. The user should rename this files before
|
||||
invoking mount.davfs. After the new configuration files have been
|
||||
installed the user may merge the changes form the old files into
|
||||
the new versions.
|
||||
|
||||
|
||||
2 INSTALLATION
|
||||
==============
|
||||
|
||||
2.1 PREREQUISITE
|
||||
----------------
|
||||
|
||||
davfs2 uses the neon libraries for communication with the server.
|
||||
libneon (0.25, 0.26, 0.27, 0.28 or 0.29) must be installed. Your distribution
|
||||
will most likely provide a package.
|
||||
You will also need the neon header files. Distributions usually provide
|
||||
development packages for this.
|
||||
If your distribution don't come with libneon or it does not support TLS and
|
||||
large files, you may build your own neon library. You can get it from
|
||||
http://www.webdav.org/neon/
|
||||
|
||||
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
|
||||
Your kernel must include either the coda file system or the fuse file system
|
||||
or both. They may be loadable modules. Almost all Linux 2.6 kernels or newer
|
||||
support at least one of them.
|
||||
|
||||
`configure' Invocation
|
||||
======================
|
||||
|
||||
`configure' recognizes the following options to control how it
|
||||
operates.
|
||||
|
||||
`--help'
|
||||
`-h'
|
||||
Print a summary of all of the options to `configure', and exit.
|
||||
|
||||
`--help=short'
|
||||
`--help=recursive'
|
||||
Print a summary of the options unique to this package's
|
||||
`configure', and exit. The `short' variant lists options used
|
||||
only in the top level, while the `recursive' variant lists options
|
||||
also present in any nested packages.
|
||||
|
||||
`--version'
|
||||
`-V'
|
||||
Print the version of Autoconf used to generate the `configure'
|
||||
script, and exit.
|
||||
|
||||
`--cache-file=FILE'
|
||||
Enable the cache: use and save the results of the tests in FILE,
|
||||
traditionally `config.cache'. FILE defaults to `/dev/null' to
|
||||
disable caching.
|
||||
|
||||
`--config-cache'
|
||||
`-C'
|
||||
Alias for `--cache-file=config.cache'.
|
||||
|
||||
`--quiet'
|
||||
`--silent'
|
||||
`-q'
|
||||
Do not print messages saying which checks are being made. To
|
||||
suppress all normal output, redirect it to `/dev/null' (any error
|
||||
messages will still be shown).
|
||||
|
||||
`--srcdir=DIR'
|
||||
Look for the package's source code in directory DIR. Usually
|
||||
`configure' can determine that directory automatically.
|
||||
|
||||
`--prefix=DIR'
|
||||
Use DIR as the installation prefix. *note Installation Names::
|
||||
for more details, including other options available for fine-tuning
|
||||
the installation locations.
|
||||
|
||||
`--no-create'
|
||||
`-n'
|
||||
Run the configure checks, but stop before creating any output
|
||||
files.
|
||||
|
||||
`configure' also accepts some other, not widely useful, options. Run
|
||||
`configure --help' for more details.
|
||||
|
||||
2.2 INSTALLATION FROM CVS SOURCES
|
||||
---------------------------------
|
||||
|
||||
To build davfs2 from the CVS sources you need recent versions of the some
|
||||
build tools. The build process is tested with the versions mentioned below.
|
||||
Other versions may work but you have to take care of possible incombatibilities
|
||||
between some versions of these tools and may need to tweak configure.ac.
|
||||
Gnulib will require to use a version of gettext that was recent at the time
|
||||
Gnulib was taken from the repository.
|
||||
|
||||
- GNU Autoconf 2.67
|
||||
- GNU Automake 1.11.1
|
||||
- GNU gettext-tools 0.18.1
|
||||
- po4a 0.40.2
|
||||
- gperf 3.0.3
|
||||
- Gnulib from 2010-07-04
|
||||
The bootstrap script must be able to find gnulib-tool. If you are not using
|
||||
gnulib from your distribution you might create a symbolic link to gnulib-tool
|
||||
in a directory that is in your PATH environment variable.
|
||||
|
||||
Change into the top level source directory and run
|
||||
$ ./bootstrap
|
||||
This will add some necessary files, create the configure script and the
|
||||
Makefile.in's, and build the translated man pages from the po-files.
|
||||
|
||||
Proceed with Installation from Source Package.
|
||||
|
||||
|
||||
2.3 INSTALLATION FROM SOURCE PACKAGE
|
||||
------------------------------------
|
||||
|
||||
From within the top level source directory:
|
||||
|
||||
- Run the configure script.
|
||||
$ ./configure [options]
|
||||
This will test your system and finally create the appropriate Makefiles.
|
||||
You may add some options or set some variables, but hopefully will not
|
||||
have to.
|
||||
|
||||
Options and variables:
|
||||
----------------------
|
||||
|
||||
--prefix=<prefix>
|
||||
Defines the directory where davfs2 will be installed. It defaults to
|
||||
'/usr/local'. If your sources came with your distribution it may
|
||||
be '/usr'.
|
||||
|
||||
--with-neon=<directory>
|
||||
Directory where to find the neon library and the neon headers.
|
||||
Default is to first try /usr/local and then /usr. If you just have
|
||||
neon libraries in /usr/lib and headers in /usr/include, you don't
|
||||
need this.
|
||||
|
||||
--disable-nls
|
||||
Disable the support for national languages.
|
||||
|
||||
LINGUAS="ll ll ll"
|
||||
A list of two-letter language codes. This will select which of the
|
||||
available translations of messages and documentation will be installed.
|
||||
ll must be in lower case.
|
||||
|
||||
dav_user=<davfs2>
|
||||
A system user without shell. mount.davfs will run with this id when
|
||||
invoked by root. Default dav_user is "davfs2".
|
||||
|
||||
dav_group=<davfs2>
|
||||
A system group. mount.davfs will be member of this group. Normal users
|
||||
must be member of this group in order to mount. Default dav_group is
|
||||
"davfs2".
|
||||
|
||||
./configure --help will show all available options.
|
||||
|
||||
- Run make.
|
||||
$ make
|
||||
This will compile the program.
|
||||
|
||||
- Gain root permissions and run make install.
|
||||
# make install
|
||||
This will copy all the files in the appropriate directory.
|
||||
Note: 'mount.davfs' will be setuid root!
|
||||
|
||||
- Create the system user 'davfs2' and group 'davfs2' if they not yet exist.
|
||||
The system user should not have a shell. Proposed home directory is
|
||||
'/var/cache/davfs2'.
|
||||
|
||||
- Get rid of the root permissions.
|
||||
|
||||
|
||||
3 UNINSTALL
|
||||
===========
|
||||
|
||||
To uninstall davfs2 the sources have to be configured just the same way
|
||||
they were configured for installation.
|
||||
|
||||
From within the top level source directory run with root permissions
|
||||
# make uninstall
|
||||
This will remove all the installed files.
|
||||
|
||||
Note: The directories will not be removed.
|
||||
Files and directories created by mount.davfs at run-time will *not* be
|
||||
removed too.
|
||||
This are: pid-files (in /var/run/mount.davfs), cache files and
|
||||
directories (in /var/cache/davfs2) and all the files in the users
|
||||
home directories in .davfs2.
|
||||
This files have to be removed manually.
|
||||
|
@ -17,7 +17,7 @@ precedence over the system wide configuration.
|
||||
|
||||
.PP
|
||||
The configuration file consists of lines where each line contains a keyword
|
||||
value pair. Keyword and value are seperated by spaces and/or tabs.
|
||||
value pair. Keyword and value are separated by spaces and/or tabs.
|
||||
|
||||
.PP
|
||||
The file may contain sections that are for one specific mount point only.
|
||||
@ -107,7 +107,7 @@ Default: @GROUP@
|
||||
.TP
|
||||
.B buf_size
|
||||
Size in KiByte of the buffer used to communicate with the kernel file system.
|
||||
Only usefull with \fIfuse\fP, where read and write operations may profit
|
||||
Only useful with \fIfuse\fP, where read and write operations may profit
|
||||
from a larger buffer.
|
||||
.br
|
||||
Default: 16
|
||||
@ -130,7 +130,7 @@ Default: 1
|
||||
.B proxy
|
||||
Name of the proxy. The name must be the fully qualified domain name
|
||||
(no scheme). If the proxy port differs from the default of 8080, it
|
||||
must be appended, seperated by a colon. Examples: \fIfoo.bar:1704\fP or
|
||||
must be appended, separated by a colon. Examples: \fIfoo.bar:1704\fP or
|
||||
\fIfoo.bar\fP
|
||||
.br
|
||||
\fBOnly allowed in the system wide configuration file.\fR
|
||||
@ -161,7 +161,7 @@ given as absolute path or as file name only. In the latter case the
|
||||
directories \fI~/.@PACKAGE@/@CERTS_DIR@\fP and
|
||||
\fI@SYS_CONF_DIR@/@CERTS_DIR@\fP will be searched.
|
||||
.br
|
||||
Usefull when the server's certificate can't be verified or is even invalid,
|
||||
Useful when the server's certificate can't be verified or is even invalid,
|
||||
but \fByou know\fR that you can trust this certificate.
|
||||
When the server presents a certificate that is exactly equal to this one
|
||||
and when the server is able to authenticate against the public key contained
|
||||
@ -189,7 +189,7 @@ path. The file must be read and writable by the owner only (mode 600).
|
||||
Default: ~/.@PACKAGE@/@SECRETSFILE@
|
||||
.br
|
||||
\fBOnly allowed in the user configuration file.\fR The system wide
|
||||
secrets file is allways \fI@SYS_CONF_DIR@/@SECRETSFILE@\fP.
|
||||
secrets file is always \fI@SYS_CONF_DIR@/@SECRETSFILE@\fP.
|
||||
|
||||
.TP
|
||||
.B ask_auth
|
||||
@ -209,7 +209,7 @@ Default: 1
|
||||
.B lock_owner
|
||||
A string send to the server to identify the owner of a lock. If a WebDAV
|
||||
resource is used at the same time by different clients using the same
|
||||
credentials, different values for lock_owner should be choosen.
|
||||
credentials, different values for lock_owner should be chosen.
|
||||
.br
|
||||
Default: the username from the credentials
|
||||
|
||||
@ -437,7 +437,7 @@ Default: 60
|
||||
.B file_refresh
|
||||
When a file or directory is opened by an application, \fB@PROGRAM_NAME@\fR
|
||||
will first check the server for a newer version. But some applications do
|
||||
open calls on the same file in short sequence. To avoid unecessary traffic
|
||||
open calls on the same file in short sequence. To avoid unnecessary traffic
|
||||
\fB@PROGRAM_NAME@\fR will wait that many seconds before it send a new request
|
||||
for the same information.
|
||||
.br
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2014-06-09 20:29+0300\n"
|
||||
"POT-Creation-Date: 2016-05-16 11:25+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -66,7 +66,7 @@ msgstr ""
|
||||
#: davfs2.conf.5:21
|
||||
msgid ""
|
||||
"The configuration file consists of lines where each line contains a keyword "
|
||||
"value pair. Keyword and value are seperated by spaces and/or tabs."
|
||||
"value pair. Keyword and value are separated by spaces and/or tabs."
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
@ -245,7 +245,7 @@ msgstr ""
|
||||
#: davfs2.conf.5:112
|
||||
msgid ""
|
||||
"Size in KiByte of the buffer used to communicate with the kernel file "
|
||||
"system. Only usefull with I<fuse>, where read and write operations may "
|
||||
"system. Only useful with I<fuse>, where read and write operations may "
|
||||
"profit from a larger buffer."
|
||||
msgstr ""
|
||||
|
||||
@ -291,7 +291,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"Name of the proxy. The name must be the fully qualified domain name (no "
|
||||
"scheme). If the proxy port differs from the default of 8080, it must be "
|
||||
"appended, seperated by a colon. Examples: I<foo.bar:1704> or I<foo.bar>"
|
||||
"appended, separated by a colon. Examples: I<foo.bar:1704> or I<foo.bar>"
|
||||
msgstr ""
|
||||
|
||||
#. type: TP
|
||||
@ -337,7 +337,7 @@ msgstr ""
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:169
|
||||
msgid ""
|
||||
"Usefull when the server's certificate can't be verified or is even invalid, "
|
||||
"Useful when the server's certificate can't be verified or is even invalid, "
|
||||
"but B<you know> that you can trust this certificate. When the server "
|
||||
"presents a certificate that is exactly equal to this one and when the server "
|
||||
"is able to authenticate against the public key contained in this certificate "
|
||||
@ -395,7 +395,7 @@ msgstr ""
|
||||
#: davfs2.conf.5:193
|
||||
msgid ""
|
||||
"B<Only allowed in the user configuration file.> The system wide secrets file "
|
||||
"is allways I<@SYS_CONF_DIR@/@SECRETSFILE@>."
|
||||
"is always I<@SYS_CONF_DIR@/@SECRETSFILE@>."
|
||||
msgstr ""
|
||||
|
||||
#. type: TP
|
||||
@ -436,7 +436,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"A string send to the server to identify the owner of a lock. If a WebDAV "
|
||||
"resource is used at the same time by different clients using the same "
|
||||
"credentials, different values for lock_owner should be choosen."
|
||||
"credentials, different values for lock_owner should be chosen."
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
@ -904,7 +904,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"When a file or directory is opened by an application, B<@PROGRAM_NAME@> will "
|
||||
"first check the server for a newer version. But some applications do open "
|
||||
"calls on the same file in short sequence. To avoid unecessary traffic "
|
||||
"calls on the same file in short sequence. To avoid unnecessary traffic "
|
||||
"B<@PROGRAM_NAME@> will wait that many seconds before it send a new request "
|
||||
"for the same information."
|
||||
msgstr ""
|
||||
@ -1133,7 +1133,7 @@ msgid "Includes config, kernel, cache and http."
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: davfs2.conf.5:541 mount.davfs.8:547 umount.davfs.8:79
|
||||
#: davfs2.conf.5:541 mount.davfs.8:551 umount.davfs.8:79
|
||||
#, no-wrap
|
||||
msgid "AUTHORS"
|
||||
msgstr ""
|
||||
@ -1146,18 +1146,18 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: davfs2.conf.5:547 mount.davfs.8:564 umount.davfs.8:84
|
||||
#: davfs2.conf.5:547 mount.davfs.8:568 umount.davfs.8:84
|
||||
#, no-wrap
|
||||
msgid "DAVFS2 HOME"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:550 mount.davfs.8:567 umount.davfs.8:87
|
||||
#: davfs2.conf.5:550 mount.davfs.8:571 umount.davfs.8:87
|
||||
msgid "@PACKAGE_BUGREPORT@"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: davfs2.conf.5:552 mount.davfs.8:569 umount.davfs.8:89
|
||||
#: davfs2.conf.5:552 mount.davfs.8:573 umount.davfs.8:89
|
||||
#, no-wrap
|
||||
msgid "SEE ALSO"
|
||||
msgstr ""
|
||||
|
@ -6,8 +6,8 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: davfs2 1.5.0\n"
|
||||
"POT-Creation-Date: 2014-06-09 20:27+0300\n"
|
||||
"PO-Revision-Date: 2014-06-09 20:28+0200\n"
|
||||
"POT-Creation-Date: 2016-05-16 11:25+0200\n"
|
||||
"PO-Revision-Date: 2016-05-16 11:38+0200\n"
|
||||
"Last-Translator: Werner Baumann <werner.baumann@onlinehome.de>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
@ -79,7 +79,7 @@ msgstr ""
|
||||
#: davfs2.conf.5:21
|
||||
msgid ""
|
||||
"The configuration file consists of lines where each line contains a keyword "
|
||||
"value pair. Keyword and value are seperated by spaces and/or tabs."
|
||||
"value pair. Keyword and value are separated by spaces and/or tabs."
|
||||
msgstr ""
|
||||
"Jede Zeile der Konfigurationsdatei enthält ein Schlüsselwort und einen Wert, "
|
||||
"die durch Leerzeichen und/oder Tabulatoren von einander getrennt sind."
|
||||
@ -322,7 +322,7 @@ msgstr "B<buf_size>"
|
||||
#: davfs2.conf.5:112
|
||||
msgid ""
|
||||
"Size in KiByte of the buffer used to communicate with the kernel file "
|
||||
"system. Only usefull with I<fuse>, where read and write operations may "
|
||||
"system. Only useful with I<fuse>, where read and write operations may "
|
||||
"profit from a larger buffer."
|
||||
msgstr ""
|
||||
"Größe des Puffers zur Kommunikation mit dem Kernel-Dateisystem in KiByte. "
|
||||
@ -382,7 +382,7 @@ msgstr "B<proxy>"
|
||||
msgid ""
|
||||
"Name of the proxy. The name must be the fully qualified domain name (no "
|
||||
"scheme). If the proxy port differs from the default of 8080, it must be "
|
||||
"appended, seperated by a colon. Examples: I<foo.bar:1704> or I<foo.bar>"
|
||||
"appended, separated by a colon. Examples: I<foo.bar:1704> or I<foo.bar>"
|
||||
msgstr ""
|
||||
"Der vollständige Domain-Name des Proxy (aber ohne Schema). Wenn der Proxy "
|
||||
"eine andere Port-Nummer als 8080 benutzt, muss diese, durch einen "
|
||||
@ -448,7 +448,7 @@ msgstr "B<trust_server_cert>"
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:169
|
||||
msgid ""
|
||||
"Usefull when the server's certificate can't be verified or is even invalid, "
|
||||
"Useful when the server's certificate can't be verified or is even invalid, "
|
||||
"but B<you know> that you can trust this certificate. When the server "
|
||||
"presents a certificate that is exactly equal to this one and when the server "
|
||||
"is able to authenticate against the public key contained in this certificate "
|
||||
@ -528,7 +528,7 @@ msgstr "Voreingestellt: ~/.@PACKAGE@/@SECRETSFILE@"
|
||||
#: davfs2.conf.5:193
|
||||
msgid ""
|
||||
"B<Only allowed in the user configuration file.> The system wide secrets file "
|
||||
"is allways I<@SYS_CONF_DIR@/@SECRETSFILE@>."
|
||||
"is always I<@SYS_CONF_DIR@/@SECRETSFILE@>."
|
||||
msgstr ""
|
||||
"B<Diese Option ist nur in den Benutzer-Konfigurationsdateien erlaubt.> Die "
|
||||
"systemweite Datei für diese Daten ist immer I<@SYS_CONF_DIR@/@SECRETSFILE@>."
|
||||
@ -582,7 +582,7 @@ msgstr "B<lock_owner>"
|
||||
msgid ""
|
||||
"A string send to the server to identify the owner of a lock. If a WebDAV "
|
||||
"resource is used at the same time by different clients using the same "
|
||||
"credentials, different values for lock_owner should be choosen."
|
||||
"credentials, different values for lock_owner should be chosen."
|
||||
msgstr ""
|
||||
"Dieser Text wird an den Server gesandt, um den Eigentümer einer Sperre zu "
|
||||
"kennzeichnen. Wenn eine WebDAV-Resource gleichzeitig von mehreren Benutzern "
|
||||
@ -1227,7 +1227,7 @@ msgstr "B<file_refresh>"
|
||||
msgid ""
|
||||
"When a file or directory is opened by an application, B<@PROGRAM_NAME@> will "
|
||||
"first check the server for a newer version. But some applications do open "
|
||||
"calls on the same file in short sequence. To avoid unecessary traffic "
|
||||
"calls on the same file in short sequence. To avoid unnecessary traffic "
|
||||
"B<@PROGRAM_NAME@> will wait that many seconds before it send a new request "
|
||||
"for the same information."
|
||||
msgstr ""
|
||||
@ -1531,7 +1531,7 @@ msgstr "Beinhaltet config, kernel, cache und http."
|
||||
|
||||
# type: SH
|
||||
#. type: SH
|
||||
#: davfs2.conf.5:541 mount.davfs.8:547 umount.davfs.8:79
|
||||
#: davfs2.conf.5:541 mount.davfs.8:551 umount.davfs.8:79
|
||||
#, no-wrap
|
||||
msgid "AUTHORS"
|
||||
msgstr "AUTOREN"
|
||||
@ -1548,20 +1548,20 @@ msgstr ""
|
||||
|
||||
# type: SH
|
||||
#. type: SH
|
||||
#: davfs2.conf.5:547 mount.davfs.8:564 umount.davfs.8:84
|
||||
#: davfs2.conf.5:547 mount.davfs.8:568 umount.davfs.8:84
|
||||
#, no-wrap
|
||||
msgid "DAVFS2 HOME"
|
||||
msgstr "DAVFS2 HOME"
|
||||
|
||||
# type: TH
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:550 mount.davfs.8:567 umount.davfs.8:87
|
||||
#: davfs2.conf.5:550 mount.davfs.8:571 umount.davfs.8:87
|
||||
msgid "@PACKAGE_BUGREPORT@"
|
||||
msgstr "@PACKAGE_BUGREPORT@"
|
||||
|
||||
# type: SH
|
||||
#. type: SH
|
||||
#: davfs2.conf.5:552 mount.davfs.8:569 umount.davfs.8:89
|
||||
#: davfs2.conf.5:552 mount.davfs.8:573 umount.davfs.8:89
|
||||
#, no-wrap
|
||||
msgid "SEE ALSO"
|
||||
msgstr "SIEHE AUCH"
|
||||
|
@ -6,8 +6,8 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: davfs2 1.4.0\n"
|
||||
"POT-Creation-Date: 2016-04-15 21:51+0200\n"
|
||||
"PO-Revision-Date: 2016-04-15 21:55+0200\n"
|
||||
"POT-Creation-Date: 2016-05-16 11:25+0200\n"
|
||||
"PO-Revision-Date: 2016-05-16 11:40+0200\n"
|
||||
"Last-Translator: Werner Baumann <werner.baumann@onlinehome.de>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
@ -341,7 +341,7 @@ msgstr "B<[no]dev>"
|
||||
msgid ""
|
||||
"(Do not) interpret character or block special devices on the file system. "
|
||||
"This option is only included for compatibility with the B<mount>(8) "
|
||||
"program. It will allways be set to B<nodev>"
|
||||
"program. It will always be set to B<nodev>"
|
||||
msgstr ""
|
||||
"In einem davfs2-Dateisystem sind grundsätzlich keine Gerätedateien (device "
|
||||
"special files) möglich. Diese Option ist nur wegen der Kompatibilität mit "
|
||||
@ -359,7 +359,7 @@ msgstr "B<dir_mode=>I<mode>"
|
||||
#: mount.davfs.8:112
|
||||
msgid ""
|
||||
"The default mode bits for directories in the mounted file system. Value "
|
||||
"given in octal. s-bits for user and group are allways silently ignored."
|
||||
"given in octal. s-bits for user and group are always silently ignored."
|
||||
msgstr ""
|
||||
"Standardwert für die Dateirechte von Verzeichnissen in oktaler Schreibweise. "
|
||||
"s-Bits für den Eigentümer und die Gruppen werden stillschweigend ignoriert."
|
||||
@ -409,7 +409,7 @@ msgstr "B<file_mode=>I<mode>"
|
||||
#: mount.davfs.8:127
|
||||
msgid ""
|
||||
"The default mode bits for files in the mounted file system. Value given in "
|
||||
"octal. s-bits for user and group are allways silently ignored."
|
||||
"octal. s-bits for user and group are always silently ignored."
|
||||
msgstr ""
|
||||
"Standardwert für die Dateirechte von normalen Dateien in oktaler "
|
||||
"Schreibweise. s-Bits für den Eigentümer und die Gruppen werden "
|
||||
@ -551,7 +551,7 @@ msgstr "B<[no]suid>"
|
||||
msgid ""
|
||||
"Do not allow set-user-identifier or set-group-identifier bits to take "
|
||||
"effect. This option is only included for compatibility with the mount "
|
||||
"program. It will allways be set to B<nosuid>."
|
||||
"program. It will always be set to B<nosuid>."
|
||||
msgstr ""
|
||||
"In @PACKAGE@-Dateisystemen sind grundsätzlich keine s-Bits für den Besitzer "
|
||||
"und die Gruppe erlaubt. Die Option ist nur zwecks Kompatibilität mit "
|
||||
@ -923,7 +923,7 @@ msgstr "SPERREN, VERLORENGEGANGENE ÄNDERUNGEN UND BACKUP-DATEIEN"
|
||||
msgid ""
|
||||
"WebDAV introduced locks and B<@PROGRAM_NAME@> uses them by default. This "
|
||||
"will in most cases prevent two people from changing the same file in "
|
||||
"parallel. But not allways:"
|
||||
"parallel. But not always:"
|
||||
msgstr ""
|
||||
"Mit WebDAV wurden Sperren eingefürht und B<@PROGRAM_NAME@> benutzt diese "
|
||||
"standardmäßig. Normalerweise verhindern diese, dass zwei Leute gleichzeitig "
|
||||
@ -991,9 +991,9 @@ msgid ""
|
||||
"Maybe the client crashes or the network connection fails. When "
|
||||
"B<@PROGRAM_NAME@> finds a file locked on the server, it will check whether "
|
||||
"the lock is held by B<@PROGRAM_NAME@> and the current user, and if so tries "
|
||||
"to reuse and release it. But this will not allways succeed. So servers "
|
||||
"should automatically release locks after some time, when they are not "
|
||||
"refreshed by the client."
|
||||
"to reuse and release it. But this will not always succeed. So servers should "
|
||||
"automatically release locks after some time, when they are not refreshed by "
|
||||
"the client."
|
||||
msgstr ""
|
||||
"Manchmal gibt ein Client eine Sperre nicht wieder frei. Möglicherweise ist "
|
||||
"er abgestürzt oder die Netzwerkverbindung ist zusammengebrochen. Wenn "
|
||||
@ -1008,7 +1008,7 @@ msgstr ""
|
||||
#. type: Plain text
|
||||
#: mount.davfs.8:353
|
||||
msgid ""
|
||||
"WebDAV allows to lock files that don't exist (to protect the name when a "
|
||||
"WebDAV allows one to lock files that don't exist (to protect the name when a "
|
||||
"client intends to create a new file). This locks will be displayed as files "
|
||||
"with size 0 and last modified date of 1970-01-01. If this locks are not "
|
||||
"released properly B<@PROGRAM_NAME@> may not be able to access this files. "
|
||||
@ -1036,7 +1036,7 @@ msgstr "EIGENTÜMER UND DATEIRECHTE"
|
||||
msgid ""
|
||||
"B<@PACKAGE@> implements Unix permissions for access control. But changing "
|
||||
"owner and permissions of a file is only B<local>. It is intended as a means "
|
||||
"for the owner of the file system, to controll whether other local users may "
|
||||
"for the owner of the file system, to control whether other local users may "
|
||||
"acces this file system."
|
||||
msgstr ""
|
||||
"B<@PACKAGE@> regelt die Zugriffskontrolle durch Unix-Dateirechte. Aber das "
|
||||
@ -1061,7 +1061,7 @@ msgstr ""
|
||||
#. type: Plain text
|
||||
#: mount.davfs.8:372
|
||||
msgid ""
|
||||
"There is one exeption: The B<execute bit> on files is stored as a property "
|
||||
"There is one exception: The B<execute bit> on files is stored as a property "
|
||||
"on the sever. You may think of this property as an information about the "
|
||||
"type of file rather than a permission. Whether the file is executable on the "
|
||||
"local system is still controlled by mount options and local permissions."
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: davfs2.conf.5\n"
|
||||
"POT-Creation-Date: 2014-06-09 20:29+0300\n"
|
||||
"POT-Creation-Date: 2016-05-16 11:25+0200\n"
|
||||
"PO-Revision-Date: 2007-04-26 01:24-0300\n"
|
||||
"Last-Translator: Luciano Bello <luciano@linux.org.ar>\n"
|
||||
"Language-Team: Español <es@li.org>\n"
|
||||
@ -81,9 +81,13 @@ msgstr ""
|
||||
# type: Plain text
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:21
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "The configuration file consists of lines where each line contains a "
|
||||
#| "keyword value pair. Keyword and value are seperated by spaces and/or tabs."
|
||||
msgid ""
|
||||
"The configuration file consists of lines where each line contains a keyword "
|
||||
"value pair. Keyword and value are seperated by spaces and/or tabs."
|
||||
"value pair. Keyword and value are separated by spaces and/or tabs."
|
||||
msgstr ""
|
||||
"El archivo de configuración consiste en líneas donde cada una contiene pares "
|
||||
"de palabrasclave/valor. Las palabras claves y los valores están separados "
|
||||
@ -323,9 +327,14 @@ msgstr "B<buf_size>"
|
||||
# type: Plain text
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:112
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Size in KiByte of the buffer used to communicate with the kernel file "
|
||||
#| "system. Only usefull with I<fuse>, where read and write operations may "
|
||||
#| "profit from a larger buffer."
|
||||
msgid ""
|
||||
"Size in KiByte of the buffer used to communicate with the kernel file "
|
||||
"system. Only usefull with I<fuse>, where read and write operations may "
|
||||
"system. Only useful with I<fuse>, where read and write operations may "
|
||||
"profit from a larger buffer."
|
||||
msgstr ""
|
||||
"Tamaño en KiByte del buffer usado para comunicarse con el sistema de "
|
||||
@ -382,10 +391,15 @@ msgstr "B<proxy>"
|
||||
# type: Plain text
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:135
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "Name of the proxy. The name must be the fully qualified domain name (no "
|
||||
#| "scheme). If the proxy port differs from the default of 8080, it must be "
|
||||
#| "appended, seperated by a colon. Examples: I<foo.bar:1704> or I<foo.bar>"
|
||||
msgid ""
|
||||
"Name of the proxy. The name must be the fully qualified domain name (no "
|
||||
"scheme). If the proxy port differs from the default of 8080, it must be "
|
||||
"appended, seperated by a colon. Examples: I<foo.bar:1704> or I<foo.bar>"
|
||||
"appended, separated by a colon. Examples: I<foo.bar:1704> or I<foo.bar>"
|
||||
msgstr ""
|
||||
"Nombre del proxy. El nombre debe ser un FQDN (el nombre de la computadora y "
|
||||
"el nombre de dominio). Si el puerto del proxy es distinto de 8080, "
|
||||
@ -443,7 +457,7 @@ msgstr "B<trust_server_cert>"
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:169
|
||||
msgid ""
|
||||
"Usefull when the server's certificate can't be verified or is even invalid, "
|
||||
"Useful when the server's certificate can't be verified or is even invalid, "
|
||||
"but B<you know> that you can trust this certificate. When the server "
|
||||
"presents a certificate that is exactly equal to this one and when the server "
|
||||
"is able to authenticate against the public key contained in this certificate "
|
||||
@ -514,9 +528,13 @@ msgstr "Predeterminado: ~/.@PACKAGE@/@SECRETSFILE@"
|
||||
# type: Plain text
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:193
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "B<Only allowed in the user configuration file.> The system wide secrets "
|
||||
#| "file is allways I<@SYS_CONF_DIR@/@SECRETSFILE@>."
|
||||
msgid ""
|
||||
"B<Only allowed in the user configuration file.> The system wide secrets file "
|
||||
"is allways I<@SYS_CONF_DIR@/@SECRETSFILE@>."
|
||||
"is always I<@SYS_CONF_DIR@/@SECRETSFILE@>."
|
||||
msgstr ""
|
||||
"B<Sólo permitido en el archivo general de configuración del sistema.> El "
|
||||
"archivo \"secrets\" general del sistema es siempre I<@SYS_CONF_DIR@/"
|
||||
@ -568,10 +586,15 @@ msgstr "B<lock_owner>"
|
||||
# type: Plain text
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:213
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "A string send to the server to identify the owner of a lock. If a WebDAV "
|
||||
#| "resource is used at the same time by different clients using the same "
|
||||
#| "credentials, different values for lock_owner should be choosen."
|
||||
msgid ""
|
||||
"A string send to the server to identify the owner of a lock. If a WebDAV "
|
||||
"resource is used at the same time by different clients using the same "
|
||||
"credentials, different values for lock_owner should be choosen."
|
||||
"credentials, different values for lock_owner should be chosen."
|
||||
msgstr ""
|
||||
"Una cadena enviada al servidor para identificar al dueño del bloqueo. Si el "
|
||||
"recurso WebDav es usado al mismo tiempo por diferentes clientes que utilizan "
|
||||
@ -1159,10 +1182,17 @@ msgstr "B<file_refresh>"
|
||||
# type: Plain text
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:443
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "When a file or directory is opened by an application, B<@PROGRAM_NAME@> "
|
||||
#| "will first check the server for a newer version. But some applications do "
|
||||
#| "open calls on the same file in short sequence. To avoid unecessary "
|
||||
#| "traffic B<@PROGRAM_NAME@> will wait that many seconds before it send a "
|
||||
#| "new request for the same information."
|
||||
msgid ""
|
||||
"When a file or directory is opened by an application, B<@PROGRAM_NAME@> will "
|
||||
"first check the server for a newer version. But some applications do open "
|
||||
"calls on the same file in short sequence. To avoid unecessary traffic "
|
||||
"calls on the same file in short sequence. To avoid unnecessary traffic "
|
||||
"B<@PROGRAM_NAME@> will wait that many seconds before it send a new request "
|
||||
"for the same information."
|
||||
msgstr ""
|
||||
@ -1439,7 +1469,7 @@ msgstr ""
|
||||
|
||||
# type: SH
|
||||
#. type: SH
|
||||
#: davfs2.conf.5:541 mount.davfs.8:547 umount.davfs.8:79
|
||||
#: davfs2.conf.5:541 mount.davfs.8:551 umount.davfs.8:79
|
||||
#, no-wrap
|
||||
msgid "AUTHORS"
|
||||
msgstr "AUTORES"
|
||||
@ -1456,20 +1486,20 @@ msgstr ""
|
||||
|
||||
# type: SH
|
||||
#. type: SH
|
||||
#: davfs2.conf.5:547 mount.davfs.8:564 umount.davfs.8:84
|
||||
#: davfs2.conf.5:547 mount.davfs.8:568 umount.davfs.8:84
|
||||
#, no-wrap
|
||||
msgid "DAVFS2 HOME"
|
||||
msgstr "DAVFS2 HOME"
|
||||
|
||||
# type: TH
|
||||
#. type: Plain text
|
||||
#: davfs2.conf.5:550 mount.davfs.8:567 umount.davfs.8:87
|
||||
#: davfs2.conf.5:550 mount.davfs.8:571 umount.davfs.8:87
|
||||
msgid "@PACKAGE_BUGREPORT@"
|
||||
msgstr "@PACKAGE_BUGREPORT@"
|
||||
|
||||
# type: SH
|
||||
#. type: SH
|
||||
#: davfs2.conf.5:552 mount.davfs.8:569 umount.davfs.8:89
|
||||
#: davfs2.conf.5:552 mount.davfs.8:573 umount.davfs.8:89
|
||||
#, no-wrap
|
||||
msgid "SEE ALSO"
|
||||
msgstr "VER TAMBIÉN"
|
||||
|
@ -103,12 +103,12 @@ Default: \fI~/.@PACKAGE@/@CONFIGFILE@\fP
|
||||
.B [no]dev
|
||||
(Do not) interpret character or block special devices on the file system.
|
||||
This option is only included for compatibility with the \fBmount\fR(8)
|
||||
program. It will allways be set to \fBnodev\fR
|
||||
program. It will always be set to \fBnodev\fR
|
||||
|
||||
.TP
|
||||
.B dir_mode=\fImode\fP
|
||||
The default mode bits for directories in the mounted file system. Value given
|
||||
in octal. s\-bits for user and group are allways silently ignored.
|
||||
in octal. s\-bits for user and group are always silently ignored.
|
||||
.br
|
||||
Default: calculated from the umask of the mounting user; an x\-bit is
|
||||
associated to every r\-bit in u\-g\-o.
|
||||
@ -123,7 +123,7 @@ program will set the default to \fBnoexec\fR.)
|
||||
.TP
|
||||
.B file_mode=\fImode\fP
|
||||
The default mode bits for files in the mounted file system. Value given
|
||||
in octal. s\-bits for user and group are allways silently ignored.
|
||||
in octal. s\-bits for user and group are always silently ignored.
|
||||
.br
|
||||
Default: calculated from the umask of the mounting user; no x\-bits
|
||||
are set for files.
|
||||
@ -170,7 +170,7 @@ Default: \fBrw\fR.
|
||||
.B [no]suid
|
||||
Do not allow set\-user\-identifier or set\-group\-identifier bits to take effect.
|
||||
This option is only included for compatibility with the mount program. It will
|
||||
allways be set to \fBnosuid\fR.
|
||||
always be set to \fBnosuid\fR.
|
||||
|
||||
.TP
|
||||
.B [no]user
|
||||
@ -310,7 +310,7 @@ this according your needs.
|
||||
|
||||
WebDAV introduced locks and \fB@PROGRAM_NAME@\fR uses them by default. This will in
|
||||
most cases prevent two people from changing the same file in parallel. But not
|
||||
allways:
|
||||
always:
|
||||
|
||||
.RS
|
||||
.PP
|
||||
@ -341,11 +341,11 @@ Sometimes locks held by some client on the server will not be released. Maybe
|
||||
the client crashes or the network connection fails. When \fB@PROGRAM_NAME@\fR
|
||||
finds a file locked on the server, it will check whether the lock is
|
||||
held by \fB@PROGRAM_NAME@\fR and the current user, and if so tries to reuse and
|
||||
release it. But this will not allways succeed. So servers should automatically
|
||||
release it. But this will not always succeed. So servers should automatically
|
||||
release locks after some time, when they are not refreshed by the client.
|
||||
|
||||
.PP
|
||||
WebDAV allows to lock files that don't exist (to protect the name when a client
|
||||
WebDAV allows one to lock files that don't exist (to protect the name when a client
|
||||
intends to create a new file). This locks will be displayed as files with
|
||||
size 0 and last modified date of 1970\-01\-01. If this locks are not released
|
||||
properly \fB@PROGRAM_NAME@\fR may not be able to access this files. You can use
|
||||
@ -356,7 +356,7 @@ properly \fB@PROGRAM_NAME@\fR may not be able to access this files. You can use
|
||||
|
||||
\fB@PACKAGE@\fR implements Unix permissions for access control. But
|
||||
changing owner and permissions of a file is only \fBlocal\fR. It is
|
||||
intended as a means for the owner of the file system, to controll whether
|
||||
intended as a means for the owner of the file system, to control whether
|
||||
other local users may acces this file system.
|
||||
|
||||
.PP
|
||||
@ -365,7 +365,7 @@ just one user (identified by the credentials) connected. Another WebDAV\-client,
|
||||
connected to the same server, is not affected by this local changes.
|
||||
|
||||
.PP
|
||||
There is one exeption: The \fBexecute bit\fR on files is stored as a
|
||||
There is one exception: The \fBexecute bit\fR on files is stored as a
|
||||
property on the sever. You may think of this property as an information about
|
||||
the type of file rather than a permission. Whether the file is executable
|
||||
on the local system is still controlled by mount options and local permissions.
|
||||
|
@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2016-04-15 21:51+0200\n"
|
||||
"POT-Creation-Date: 2016-05-16 11:25+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -267,7 +267,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"(Do not) interpret character or block special devices on the file system. "
|
||||
"This option is only included for compatibility with the B<mount>(8) "
|
||||
"program. It will allways be set to B<nodev>"
|
||||
"program. It will always be set to B<nodev>"
|
||||
msgstr ""
|
||||
|
||||
#. type: TP
|
||||
@ -280,7 +280,7 @@ msgstr ""
|
||||
#: mount.davfs.8:112
|
||||
msgid ""
|
||||
"The default mode bits for directories in the mounted file system. Value "
|
||||
"given in octal. s-bits for user and group are allways silently ignored."
|
||||
"given in octal. s-bits for user and group are always silently ignored."
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
@ -318,7 +318,7 @@ msgstr ""
|
||||
#: mount.davfs.8:127
|
||||
msgid ""
|
||||
"The default mode bits for files in the mounted file system. Value given in "
|
||||
"octal. s-bits for user and group are allways silently ignored."
|
||||
"octal. s-bits for user and group are always silently ignored."
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
@ -428,7 +428,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"Do not allow set-user-identifier or set-group-identifier bits to take "
|
||||
"effect. This option is only included for compatibility with the mount "
|
||||
"program. It will allways be set to B<nosuid>."
|
||||
"program. It will always be set to B<nosuid>."
|
||||
msgstr ""
|
||||
|
||||
#. type: TP
|
||||
@ -683,7 +683,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"WebDAV introduced locks and B<@PROGRAM_NAME@> uses them by default. This "
|
||||
"will in most cases prevent two people from changing the same file in "
|
||||
"parallel. But not allways:"
|
||||
"parallel. But not always:"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
@ -729,15 +729,15 @@ msgid ""
|
||||
"Maybe the client crashes or the network connection fails. When "
|
||||
"B<@PROGRAM_NAME@> finds a file locked on the server, it will check whether "
|
||||
"the lock is held by B<@PROGRAM_NAME@> and the current user, and if so tries "
|
||||
"to reuse and release it. But this will not allways succeed. So servers "
|
||||
"should automatically release locks after some time, when they are not "
|
||||
"refreshed by the client."
|
||||
"to reuse and release it. But this will not always succeed. So servers should "
|
||||
"automatically release locks after some time, when they are not refreshed by "
|
||||
"the client."
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: mount.davfs.8:353
|
||||
msgid ""
|
||||
"WebDAV allows to lock files that don't exist (to protect the name when a "
|
||||
"WebDAV allows one to lock files that don't exist (to protect the name when a "
|
||||
"client intends to create a new file). This locks will be displayed as files "
|
||||
"with size 0 and last modified date of 1970-01-01. If this locks are not "
|
||||
"released properly B<@PROGRAM_NAME@> may not be able to access this files. "
|
||||
@ -756,7 +756,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"B<@PACKAGE@> implements Unix permissions for access control. But changing "
|
||||
"owner and permissions of a file is only B<local>. It is intended as a means "
|
||||
"for the owner of the file system, to controll whether other local users may "
|
||||
"for the owner of the file system, to control whether other local users may "
|
||||
"acces this file system."
|
||||
msgstr ""
|
||||
|
||||
@ -771,7 +771,7 @@ msgstr ""
|
||||
#. type: Plain text
|
||||
#: mount.davfs.8:372
|
||||
msgid ""
|
||||
"There is one exeption: The B<execute bit> on files is stored as a property "
|
||||
"There is one exception: The B<execute bit> on files is stored as a property "
|
||||
"on the sever. You may think of this property as an information about the "
|
||||
"type of file rather than a permission. Whether the file is executable on the "
|
||||
"local system is still controlled by mount options and local permissions."
|
||||
|
@ -22,7 +22,7 @@
|
||||
de:de/davfs2.conf.5 add_de:de/davfs2.conf.5.translator \
|
||||
es:es/davfs2.conf.5 \
|
||||
opt_de:"-L UTF-8 -A UTF-8" \
|
||||
opt_es:"-k 70 -L UTF-8"
|
||||
opt_es:"-k 60 -L UTF-8"
|
||||
|
||||
[type:man] mount.davfs.8 \
|
||||
de:de/mount.davfs.8 add_de:de/mount.davfs.8.translator \
|
||||
|
207
po/cs.po
207
po/cs.po
@ -7,7 +7,7 @@ msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: http://savannah.nongnu.org/support/?"
|
||||
"func=additem&group=davfs2\n"
|
||||
"POT-Creation-Date: 2015-04-20 11:51+0200\n"
|
||||
"POT-Creation-Date: 2016-05-16 12:09+0200\n"
|
||||
"PO-Revision-Date: 2007-05-03 19:50+0200\n"
|
||||
"Last-Translator: Vítězslav Kotrla <vitko@post.cz>\n"
|
||||
"Language-Team: <cs@li.org>\n"
|
||||
@ -64,103 +64,109 @@ msgstr "chyba při zápisu nového indexového souboru %s"
|
||||
msgid "can't create new index file for %s"
|
||||
msgstr "nemohu vytvořit nový indexový soubor pro %s"
|
||||
|
||||
#: src/cache.c:931
|
||||
#: src/cache.c:932
|
||||
#, c-format
|
||||
msgid ""
|
||||
"File %s exists on the server but should not. Maybe it is an error in the "
|
||||
"server's LOCK impementation. You may try option 'use_locks 0' in davfs2.conf."
|
||||
"server's LOCK implementation. You may try option 'use_locks 0' in davfs2."
|
||||
"conf."
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2447 src/cache.c:2480
|
||||
#: src/cache.c:2448 src/cache.c:2481
|
||||
#, c-format
|
||||
msgid "can't create cache file %s"
|
||||
msgstr "nemohu vytvořit soubor vyrovnávací paměti %s"
|
||||
|
||||
#: src/cache.c:2495
|
||||
#: src/cache.c:2496
|
||||
#, c-format
|
||||
msgid "error writing directory %s"
|
||||
msgstr "chyba při zápisu adresáře %s"
|
||||
|
||||
#: src/cache.c:2659 src/mount_davfs.c:1038
|
||||
#: src/cache.c:2660 src/mount_davfs.c:1034
|
||||
#, c-format
|
||||
msgid "can't read user data base"
|
||||
msgstr "nemohu přečíst údaje o uživatelích"
|
||||
|
||||
#: src/cache.c:2671
|
||||
#: src/cache.c:2672
|
||||
#, c-format
|
||||
msgid "can't open cache directory %s"
|
||||
msgstr "nemohu otevřít kešovací adresář %s"
|
||||
|
||||
#: src/cache.c:2686
|
||||
#: src/cache.c:2687
|
||||
#, c-format
|
||||
msgid "can't create cache directory %s"
|
||||
msgstr "nemohu vytvořit kešovací adresář %s"
|
||||
|
||||
#: src/cache.c:2693
|
||||
#: src/cache.c:2694
|
||||
#, c-format
|
||||
msgid "can't access cache directory %s"
|
||||
msgstr "nemohu přistoupit ke kešovacímu adresáři %s"
|
||||
|
||||
#: src/cache.c:2696
|
||||
#: src/cache.c:2697
|
||||
#, c-format
|
||||
msgid "wrong owner of cache directory %s"
|
||||
msgstr "chybný vlastník kešovacího adresáře %s"
|
||||
|
||||
#: src/cache.c:2700
|
||||
#: src/cache.c:2701
|
||||
#, c-format
|
||||
msgid "wrong permissions set for cache directory %s"
|
||||
msgstr "pro kešovací adresář %s nastaveno chybné oprávnění"
|
||||
|
||||
#: src/cache.c:2730
|
||||
#: src/cache.c:2731
|
||||
msgid "found orphaned file in cache:"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2803
|
||||
#: src/cache.c:2804
|
||||
#, c-format
|
||||
msgid "error parsing %s"
|
||||
msgstr "chyba při zpracování %s"
|
||||
|
||||
#: src/cache.c:2804
|
||||
#: src/cache.c:2805
|
||||
#, c-format
|
||||
msgid " at line %i"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2849
|
||||
#: src/cache.c:2850
|
||||
#, c-format
|
||||
msgid "open files exceed max cache size by %llu MiBytes"
|
||||
msgstr ""
|
||||
"otevřené soubory přesahují limit velikosti vyrovnávací paměti o %llu MiB"
|
||||
|
||||
#: src/kernel_interface.c:220
|
||||
#: src/kernel_interface.c:225
|
||||
#, c-format
|
||||
msgid "can't allocate message buffer"
|
||||
msgstr "nemohu alokovat buffer pro zprávu"
|
||||
|
||||
#: src/kernel_interface.c:236
|
||||
#: src/kernel_interface.c:241
|
||||
#, c-format
|
||||
msgid "loading kernel module fuse"
|
||||
msgstr ""
|
||||
|
||||
#: src/kernel_interface.c:250
|
||||
#: src/kernel_interface.c:255
|
||||
#, c-format
|
||||
msgid "loading kernel module fuse failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/kernel_interface.c:256
|
||||
#: src/kernel_interface.c:261
|
||||
#, c-format
|
||||
msgid "waiting for %s to be created"
|
||||
msgstr ""
|
||||
|
||||
#: src/kernel_interface.c:264
|
||||
#: src/kernel_interface.c:269
|
||||
#, c-format
|
||||
msgid "can't open fuse device"
|
||||
msgstr "nemohu otevřít fuse zařízení"
|
||||
|
||||
#: src/kernel_interface.c:272
|
||||
#: src/kernel_interface.c:277
|
||||
#, fuzzy, c-format
|
||||
msgid "mounting failed"
|
||||
msgstr "odpojení selhalo"
|
||||
|
||||
#: src/kernel_interface.c:305
|
||||
#, c-format
|
||||
msgid "unmounting %s"
|
||||
msgstr "odpojuji %s"
|
||||
|
||||
#: src/mount_davfs.c:300
|
||||
#, c-format
|
||||
msgid "can't start daemon process"
|
||||
@ -179,69 +185,64 @@ msgstr ""
|
||||
msgid "can't write pid file %s"
|
||||
msgstr "nemohu zapsat pid souboru %s"
|
||||
|
||||
#: src/mount_davfs.c:368
|
||||
#, c-format
|
||||
msgid "unmounting %s"
|
||||
msgstr "odpojuji %s"
|
||||
|
||||
#: src/mount_davfs.c:370
|
||||
#: src/mount_davfs.c:367
|
||||
msgid "unmounting failed"
|
||||
msgstr "odpojení selhalo"
|
||||
|
||||
#: src/mount_davfs.c:441
|
||||
#: src/mount_davfs.c:437
|
||||
#, c-format
|
||||
msgid "can't change group id"
|
||||
msgstr "nemohu změnit id skupiny"
|
||||
|
||||
#: src/mount_davfs.c:468
|
||||
#: src/mount_davfs.c:464
|
||||
#, fuzzy, c-format
|
||||
msgid "can't access file %s"
|
||||
msgstr "nemohu přistupovat k adresáři %s"
|
||||
|
||||
#: src/mount_davfs.c:489 src/mount_davfs.c:501 src/mount_davfs.c:591
|
||||
#: src/mount_davfs.c:617
|
||||
#: src/mount_davfs.c:485 src/mount_davfs.c:497 src/mount_davfs.c:587
|
||||
#: src/mount_davfs.c:613
|
||||
#, c-format
|
||||
msgid "can't create directory %s"
|
||||
msgstr "nemohu vytvořit adresář %s"
|
||||
|
||||
#: src/mount_davfs.c:505 src/mount_davfs.c:595 src/mount_davfs.c:621
|
||||
#: src/mount_davfs.c:626 src/mount_davfs.c:634
|
||||
#: src/mount_davfs.c:501 src/mount_davfs.c:591 src/mount_davfs.c:617
|
||||
#: src/mount_davfs.c:622 src/mount_davfs.c:630
|
||||
#, c-format
|
||||
msgid "can't access directory %s"
|
||||
msgstr "nemohu přistupovat k adresáři %s"
|
||||
|
||||
#: src/mount_davfs.c:511 src/mount_davfs.c:601
|
||||
#: src/mount_davfs.c:507 src/mount_davfs.c:597
|
||||
#, c-format
|
||||
msgid "can't change mode of directory %s"
|
||||
msgstr "nemohu změnit oprávnění (mode) adresáře %s"
|
||||
|
||||
#: src/mount_davfs.c:516 src/mount_davfs.c:607
|
||||
#: src/mount_davfs.c:512 src/mount_davfs.c:603
|
||||
#, c-format
|
||||
msgid "can't change group of directory %s"
|
||||
msgstr "nemohu změnit skupinu adresáře %s"
|
||||
|
||||
#: src/mount_davfs.c:523 src/mount_davfs.c:575
|
||||
#: src/mount_davfs.c:519 src/mount_davfs.c:571
|
||||
#, c-format
|
||||
msgid "file %s has wrong owner"
|
||||
msgstr "soubor %s má chybného vlastníka"
|
||||
|
||||
#: src/mount_davfs.c:527 src/mount_davfs.c:580
|
||||
#: src/mount_davfs.c:523 src/mount_davfs.c:576
|
||||
#, c-format
|
||||
msgid "file %s has wrong permissions"
|
||||
msgstr "soubor %s má chybná oprávnění"
|
||||
|
||||
#: src/mount_davfs.c:652 src/mount_davfs.c:704 src/mount_davfs.c:1339
|
||||
#: src/mount_davfs.c:1343
|
||||
#: src/mount_davfs.c:648 src/mount_davfs.c:700 src/mount_davfs.c:1335
|
||||
#: src/mount_davfs.c:1339
|
||||
#, c-format
|
||||
msgid "can't open file %s"
|
||||
msgstr "nemohu otevřít soubor %s"
|
||||
|
||||
#: src/mount_davfs.c:657
|
||||
#: src/mount_davfs.c:653
|
||||
#, c-format
|
||||
msgid "%s is already mounted on %s"
|
||||
msgstr "%s už je připojeno jako %s"
|
||||
|
||||
#: src/mount_davfs.c:679
|
||||
#: src/mount_davfs.c:675
|
||||
#, c-format
|
||||
msgid ""
|
||||
"found PID file %s.\n"
|
||||
@ -252,82 +253,82 @@ msgstr ""
|
||||
"Buď %s používá jiný proces, nebo\n"
|
||||
"jiné připojení skončilo neobvykle"
|
||||
|
||||
#: src/mount_davfs.c:721
|
||||
#: src/mount_davfs.c:717
|
||||
#, c-format
|
||||
msgid "no entry for %s found in %s"
|
||||
msgstr "pro %s nebyla v %s nalezena žádná položka"
|
||||
|
||||
#: src/mount_davfs.c:725
|
||||
#: src/mount_davfs.c:721
|
||||
#, c-format
|
||||
msgid "different URL in %s"
|
||||
msgstr "v %s je jiné URL"
|
||||
|
||||
#: src/mount_davfs.c:728
|
||||
#: src/mount_davfs.c:724
|
||||
#, c-format
|
||||
msgid "different file system type in %s"
|
||||
msgstr "v %s je jiný souborový systém"
|
||||
|
||||
#: src/mount_davfs.c:739
|
||||
#: src/mount_davfs.c:735
|
||||
#, c-format
|
||||
msgid "different config file in %s"
|
||||
msgstr "v %s je jiný konfigurační soubor"
|
||||
|
||||
#: src/mount_davfs.c:745
|
||||
#: src/mount_davfs.c:741
|
||||
#, fuzzy, c-format
|
||||
msgid "different username in %s"
|
||||
msgstr "v %s je odlišný dir_mode"
|
||||
|
||||
#: src/mount_davfs.c:749
|
||||
#: src/mount_davfs.c:745
|
||||
#, fuzzy, c-format
|
||||
msgid "neither option `user' nor option `users' set in %s"
|
||||
msgstr "volba 'user' není v %s nastavena"
|
||||
|
||||
#: src/mount_davfs.c:752
|
||||
#: src/mount_davfs.c:748
|
||||
#, c-format
|
||||
msgid "different mount options in %s"
|
||||
msgstr "v %s jsou jiné parametry připojení"
|
||||
|
||||
#: src/mount_davfs.c:755
|
||||
#: src/mount_davfs.c:751
|
||||
#, c-format
|
||||
msgid "different uid in %s"
|
||||
msgstr "v %s je odlišné uid"
|
||||
|
||||
#: src/mount_davfs.c:757
|
||||
#: src/mount_davfs.c:753
|
||||
#, c-format
|
||||
msgid "different gid in %s"
|
||||
msgstr "v %s je odlišné gid"
|
||||
|
||||
#: src/mount_davfs.c:759
|
||||
#: src/mount_davfs.c:755
|
||||
#, c-format
|
||||
msgid "different dir_mode in %s"
|
||||
msgstr "v %s je odlišný dir_mode"
|
||||
|
||||
#: src/mount_davfs.c:761
|
||||
#: src/mount_davfs.c:757
|
||||
#, c-format
|
||||
msgid "different file_mode in %s"
|
||||
msgstr "v %s je odlišný file_mode"
|
||||
|
||||
#: src/mount_davfs.c:781
|
||||
#: src/mount_davfs.c:777
|
||||
#, c-format
|
||||
msgid "you can't set file owner different from your uid"
|
||||
msgstr "nemůžete nastavit jiného vlastníka souboru než je vaše uid"
|
||||
|
||||
#: src/mount_davfs.c:793
|
||||
#: src/mount_davfs.c:789
|
||||
#, c-format
|
||||
msgid "you must be member of the group of the file system"
|
||||
msgstr "musíte být členem skupiny souborového systému"
|
||||
|
||||
#: src/mount_davfs.c:804
|
||||
#: src/mount_davfs.c:800
|
||||
#, c-format
|
||||
msgid "user %s must be member of group %s"
|
||||
msgstr "uživatel %s musí být členem skupiny %s"
|
||||
|
||||
#: src/mount_davfs.c:824 src/mount_davfs.c:1164
|
||||
#: src/mount_davfs.c:820 src/mount_davfs.c:1160
|
||||
#, c-format
|
||||
msgid "can't change effective user id"
|
||||
msgstr "nemohu změnit identifikátor efektivního uživatele"
|
||||
|
||||
#: src/mount_davfs.c:868 src/umount_davfs.c:92
|
||||
#: src/mount_davfs.c:864 src/umount_davfs.c:92
|
||||
#, c-format
|
||||
msgid ""
|
||||
"This is free software; see the source for copying conditions. There is NO\n"
|
||||
@ -338,67 +339,67 @@ msgstr ""
|
||||
"Program je poskytován BEZ JAKÉKOLIV záruky, včetně záruky PRODEJNOSTI či "
|
||||
"VHODNOSTI K URČITÉMU ÚČELU.\n"
|
||||
|
||||
#: src/mount_davfs.c:884 src/umount_davfs.c:118
|
||||
#: src/mount_davfs.c:880 src/umount_davfs.c:118
|
||||
#, c-format
|
||||
msgid "unknown error parsing arguments"
|
||||
msgstr "neznámá chyba při zpracování argumentů"
|
||||
|
||||
#: src/mount_davfs.c:893 src/umount_davfs.c:124
|
||||
#: src/mount_davfs.c:889 src/umount_davfs.c:124
|
||||
#, c-format
|
||||
msgid "missing argument"
|
||||
msgstr "chybějící argument"
|
||||
|
||||
#: src/mount_davfs.c:906
|
||||
#: src/mount_davfs.c:902
|
||||
#, c-format
|
||||
msgid "can't evaluate path of mount point %s"
|
||||
msgstr "nemohu vyhodnotit cestu k přípojnému bodu %s"
|
||||
|
||||
#: src/mount_davfs.c:909 src/umount_davfs.c:126
|
||||
#: src/mount_davfs.c:905 src/umount_davfs.c:126
|
||||
#, c-format
|
||||
msgid "too many arguments"
|
||||
msgstr "příliš mnoho argumentů"
|
||||
|
||||
#: src/mount_davfs.c:916
|
||||
#: src/mount_davfs.c:912
|
||||
#, c-format
|
||||
msgid "A relative mount point must lie within your home directory"
|
||||
msgstr "Relativní přípojný bod musí ležet ve vašem domovském adresáři"
|
||||
|
||||
#: src/mount_davfs.c:921
|
||||
#: src/mount_davfs.c:917
|
||||
#, c-format
|
||||
msgid "no WebDAV-server specified"
|
||||
msgstr "nebyl zadán žádný WebDAV server"
|
||||
|
||||
#: src/mount_davfs.c:924
|
||||
#: src/mount_davfs.c:920
|
||||
#, c-format
|
||||
msgid "invalid URL"
|
||||
msgstr "neplatné URL"
|
||||
|
||||
#: src/mount_davfs.c:954
|
||||
#: src/mount_davfs.c:950
|
||||
#, c-format
|
||||
msgid "user %s does not exist"
|
||||
msgstr "uživatel %s neexistuje"
|
||||
|
||||
#: src/mount_davfs.c:962
|
||||
#: src/mount_davfs.c:958
|
||||
#, c-format
|
||||
msgid "group %s does not exist"
|
||||
msgstr "skupina %s neexistuje"
|
||||
|
||||
#: src/mount_davfs.c:1029
|
||||
#: src/mount_davfs.c:1025
|
||||
#, c-format
|
||||
msgid "program is not setuid root"
|
||||
msgstr "program není spuštěn jako setuid root"
|
||||
|
||||
#: src/mount_davfs.c:1047
|
||||
#: src/mount_davfs.c:1043
|
||||
#, c-format
|
||||
msgid "can't read group data base"
|
||||
msgstr "nemohu přečíst údaje o skupinách"
|
||||
|
||||
#: src/mount_davfs.c:1074 src/mount_davfs.c:1087 src/mount_davfs.c:1089
|
||||
#: src/mount_davfs.c:1107 src/mount_davfs.c:1109 src/mount_davfs.c:1124
|
||||
#: src/mount_davfs.c:1070 src/mount_davfs.c:1083 src/mount_davfs.c:1085
|
||||
#: src/mount_davfs.c:1103 src/mount_davfs.c:1105 src/mount_davfs.c:1120
|
||||
msgid "Password: "
|
||||
msgstr "Heslo: "
|
||||
|
||||
#: src/mount_davfs.c:1078
|
||||
#: src/mount_davfs.c:1074
|
||||
#, fuzzy, c-format
|
||||
msgid ""
|
||||
"Please enter the username to authenticate with proxy\n"
|
||||
@ -408,11 +409,11 @@ msgstr ""
|
||||
"%s (pokud žádné zadat nechcete, pouze stiskněte enter).\n"
|
||||
"Uživatelské jméno: "
|
||||
|
||||
#: src/mount_davfs.c:1080 src/mount_davfs.c:1100
|
||||
#: src/mount_davfs.c:1076 src/mount_davfs.c:1096
|
||||
msgid "Username:"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1084
|
||||
#: src/mount_davfs.c:1080
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the password to authenticate user %s with proxy\n"
|
||||
@ -421,7 +422,7 @@ msgstr ""
|
||||
"Zadejte prosím heslo pro autentizaci uživatele %s na proxy\n"
|
||||
"%s (pokud žádné zadat nechcete, pouze stiskněte enter).\n"
|
||||
|
||||
#: src/mount_davfs.c:1098
|
||||
#: src/mount_davfs.c:1094
|
||||
#, fuzzy, c-format
|
||||
msgid ""
|
||||
"Please enter the username to authenticate with server\n"
|
||||
@ -431,7 +432,7 @@ msgstr ""
|
||||
"%s (nebo pouze stiskně enter, pokud nic zadat nechcete).\n"
|
||||
"Uživatelské jméno: "
|
||||
|
||||
#: src/mount_davfs.c:1104
|
||||
#: src/mount_davfs.c:1100
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the password to authenticate user %s with server\n"
|
||||
@ -440,7 +441,7 @@ msgstr ""
|
||||
"Zadejte prosím heslo uživatele %s pro autentizaci na serveru\n"
|
||||
"%s (nebo pouze stiskně enter, pokud nic zadat nechcete).\n"
|
||||
|
||||
#: src/mount_davfs.c:1122
|
||||
#: src/mount_davfs.c:1118
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the password to decrypt client\n"
|
||||
@ -449,100 +450,100 @@ msgstr ""
|
||||
"Zadejte prosím heslo pro dešifrování klientského\n"
|
||||
"certifikátu %s.\n"
|
||||
|
||||
#: src/mount_davfs.c:1129
|
||||
#: src/mount_davfs.c:1125
|
||||
#, c-format
|
||||
msgid "can't decrypt client certificate %s"
|
||||
msgstr "nemohu dešifrovat klientský certifikát %s"
|
||||
|
||||
#: src/mount_davfs.c:1192
|
||||
#: src/mount_davfs.c:1188
|
||||
#, c-format
|
||||
msgid "pid %i, got signal %i"
|
||||
msgstr "pid %i dostal signál %i"
|
||||
|
||||
#: src/mount_davfs.c:1256
|
||||
#: src/mount_davfs.c:1252
|
||||
#, fuzzy, c-format
|
||||
msgid "can't create file %s"
|
||||
msgstr "nemohu vytvořit soubor vyrovnávací paměti %s"
|
||||
|
||||
#: src/mount_davfs.c:1260
|
||||
#: src/mount_davfs.c:1256
|
||||
#, fuzzy, c-format
|
||||
msgid "can't lock file %s"
|
||||
msgstr "nemohu otevřít soubor %s"
|
||||
|
||||
#: src/mount_davfs.c:1282
|
||||
#: src/mount_davfs.c:1278
|
||||
#, fuzzy, c-format
|
||||
msgid ""
|
||||
"Warning: can't write entry into %s, but will mount the file system anyway"
|
||||
msgstr ""
|
||||
"Varování: nelze zapsat položku do mtab, přesto souborový systém připojím"
|
||||
|
||||
#: src/mount_davfs.c:1318
|
||||
#: src/mount_davfs.c:1314
|
||||
#, c-format
|
||||
msgid "option %s has invalid argument;it must be a decimal number"
|
||||
msgstr "volba %s má neplatný argument; musí to být číslo v desítkové soustavě"
|
||||
|
||||
#: src/mount_davfs.c:1321
|
||||
#: src/mount_davfs.c:1317
|
||||
#, c-format
|
||||
msgid "option %s has invalid argument;it must be an octal number"
|
||||
msgstr "volba %s má neplatný argument; musí to být číslo v osmičkové soustavě"
|
||||
|
||||
#: src/mount_davfs.c:1324
|
||||
#: src/mount_davfs.c:1320
|
||||
#, c-format
|
||||
msgid "option %s has invalid argument;it must be a number"
|
||||
msgstr "volba %s má neplatný argument; musí to být číslo"
|
||||
|
||||
#: src/mount_davfs.c:1350
|
||||
#: src/mount_davfs.c:1346
|
||||
#, fuzzy, c-format
|
||||
msgid "error writing to file %s"
|
||||
msgstr "chyba při zápisu nového indexového souboru %s"
|
||||
|
||||
#: src/mount_davfs.c:1595
|
||||
#: src/mount_davfs.c:1591
|
||||
#, c-format
|
||||
msgid "option %s requires argument"
|
||||
msgstr "volba %s vyžaduje argument"
|
||||
|
||||
#: src/mount_davfs.c:1682
|
||||
#: src/mount_davfs.c:1678
|
||||
#, c-format
|
||||
msgid "Unknown option %s.\n"
|
||||
msgstr "Neznámá volba %s.\n"
|
||||
|
||||
#: src/mount_davfs.c:2057
|
||||
#: src/mount_davfs.c:2068
|
||||
#, fuzzy, c-format
|
||||
msgid "can't read certificate %s"
|
||||
msgstr "nelze přečíst klientský certifikát %s"
|
||||
|
||||
#: src/mount_davfs.c:2089 src/mount_davfs.c:2102
|
||||
#: src/mount_davfs.c:2100 src/mount_davfs.c:2113
|
||||
#, c-format
|
||||
msgid "can't read client certificate %s"
|
||||
msgstr "nelze přečíst klientský certifikát %s"
|
||||
|
||||
#: src/mount_davfs.c:2093
|
||||
#: src/mount_davfs.c:2104
|
||||
#, c-format
|
||||
msgid "client certificate file %s has wrong owner"
|
||||
msgstr "klientský certifikát %s má chybného vlastníka"
|
||||
|
||||
#: src/mount_davfs.c:2097
|
||||
#: src/mount_davfs.c:2108
|
||||
#, c-format
|
||||
msgid "client certificate file %s has wrong permissions"
|
||||
msgstr "soubor s klientským certifikátem %s má chybná oprávnění"
|
||||
|
||||
#: src/mount_davfs.c:2119 src/mount_davfs.c:2352
|
||||
#: src/mount_davfs.c:2130 src/mount_davfs.c:2363
|
||||
#, fuzzy, c-format
|
||||
msgid "opening %s failed"
|
||||
msgstr "odpojení selhalo"
|
||||
|
||||
#: src/mount_davfs.c:2140 src/mount_davfs.c:2184 src/mount_davfs.c:2282
|
||||
#: src/mount_davfs.c:2379 src/mount_davfs.c:2437 src/mount_davfs.c:2450
|
||||
#: src/mount_davfs.c:2151 src/mount_davfs.c:2195 src/mount_davfs.c:2293
|
||||
#: src/mount_davfs.c:2390 src/mount_davfs.c:2448 src/mount_davfs.c:2461
|
||||
#, c-format
|
||||
msgid "malformed line"
|
||||
msgstr "špatně zapsaný řádek"
|
||||
|
||||
#: src/mount_davfs.c:2260 src/mount_davfs.c:2276
|
||||
#: src/mount_davfs.c:2271 src/mount_davfs.c:2287
|
||||
#, c-format
|
||||
msgid "unknown option"
|
||||
msgstr "neznámá volba"
|
||||
|
||||
#: src/mount_davfs.c:2582
|
||||
#: src/mount_davfs.c:2593
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Usage:\n"
|
||||
@ -555,7 +556,7 @@ msgstr ""
|
||||
" %s -h,--help : vytiskne tuto zprávu\n"
|
||||
"\n"
|
||||
|
||||
#: src/mount_davfs.c:2586
|
||||
#: src/mount_davfs.c:2597
|
||||
#, c-format
|
||||
msgid ""
|
||||
"To mount a WebDAV-resource don't call %s directly, but use\n"
|
||||
@ -564,7 +565,7 @@ msgstr ""
|
||||
"Pro připojení zdroje WebDAV nevolejte přímo %s, ale\n"
|
||||
"použijte místo toho `mount'.\n"
|
||||
|
||||
#: src/mount_davfs.c:2588
|
||||
#: src/mount_davfs.c:2599
|
||||
#, c-format
|
||||
msgid ""
|
||||
" mount <mountpoint> : or\n"
|
||||
@ -575,7 +576,7 @@ msgstr ""
|
||||
" mount <url_serveru> : připojí zdroj WebDAV tak, jak je zadáno\n"
|
||||
" v /etc/fstab.\n"
|
||||
|
||||
#: src/mount_davfs.c:2591
|
||||
#: src/mount_davfs.c:2602
|
||||
#, c-format
|
||||
msgid ""
|
||||
" mount -t davfs <server-url> <mountpoint> [-o options]\n"
|
||||
@ -592,7 +593,7 @@ msgstr ""
|
||||
" označuje seznam voleb oddělených čárkou.\n"
|
||||
"\n"
|
||||
|
||||
#: src/mount_davfs.c:2596
|
||||
#: src/mount_davfs.c:2607
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Recognised options:\n"
|
||||
@ -611,7 +612,7 @@ msgstr ""
|
||||
" file_mode= : výchozí mode souboru (v osmičkové soustavě)\n"
|
||||
" dir_mode= : výchozí mode adresáře (v osmičkové soustavě)\n"
|
||||
|
||||
#: src/mount_davfs.c:2602
|
||||
#: src/mount_davfs.c:2613
|
||||
#, fuzzy, c-format
|
||||
msgid ""
|
||||
" ro : mount read-only\n"
|
||||
@ -717,8 +718,8 @@ msgid "%s: waiting while %s (pid %s) synchronizes the cache ."
|
||||
msgstr "%s: čekám, než si %s (pid %s) sesynchronizuje vyrovnávací paměť."
|
||||
|
||||
#: src/umount_davfs.c:211
|
||||
#, c-format
|
||||
msgid "an error occured while waiting; please wait for %s to terminate"
|
||||
#, fuzzy, c-format
|
||||
msgid "an error occurred while waiting; please wait for %s to terminate"
|
||||
msgstr "při čekání došlo k chybě; čekejte prosím až %s skončí"
|
||||
|
||||
#: src/webdav.c:356
|
||||
|
211
po/davfs2.pot
211
po/davfs2.pot
@ -9,7 +9,7 @@ msgstr ""
|
||||
"Project-Id-Version: davfs2 1.4.6\n"
|
||||
"Report-Msgid-Bugs-To: http://savannah.nongnu.org/support/?"
|
||||
"func=additem&group=davfs2\n"
|
||||
"POT-Creation-Date: 2015-04-20 11:51+0200\n"
|
||||
"POT-Creation-Date: 2016-05-16 12:09+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -59,102 +59,108 @@ msgstr ""
|
||||
msgid "can't create new index file for %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:931
|
||||
#: src/cache.c:932
|
||||
#, c-format
|
||||
msgid ""
|
||||
"File %s exists on the server but should not. Maybe it is an error in the "
|
||||
"server's LOCK impementation. You may try option 'use_locks 0' in davfs2.conf."
|
||||
"server's LOCK implementation. You may try option 'use_locks 0' in davfs2."
|
||||
"conf."
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2447 src/cache.c:2480
|
||||
#: src/cache.c:2448 src/cache.c:2481
|
||||
#, c-format
|
||||
msgid "can't create cache file %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2495
|
||||
#: src/cache.c:2496
|
||||
#, c-format
|
||||
msgid "error writing directory %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2659 src/mount_davfs.c:1038
|
||||
#: src/cache.c:2660 src/mount_davfs.c:1034
|
||||
#, c-format
|
||||
msgid "can't read user data base"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2671
|
||||
#: src/cache.c:2672
|
||||
#, c-format
|
||||
msgid "can't open cache directory %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2686
|
||||
#: src/cache.c:2687
|
||||
#, c-format
|
||||
msgid "can't create cache directory %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2693
|
||||
#: src/cache.c:2694
|
||||
#, c-format
|
||||
msgid "can't access cache directory %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2696
|
||||
#: src/cache.c:2697
|
||||
#, c-format
|
||||
msgid "wrong owner of cache directory %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2700
|
||||
#: src/cache.c:2701
|
||||
#, c-format
|
||||
msgid "wrong permissions set for cache directory %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2730
|
||||
#: src/cache.c:2731
|
||||
msgid "found orphaned file in cache:"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2803
|
||||
#, c-format
|
||||
msgid "error parsing %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2804
|
||||
#, c-format
|
||||
msgid "error parsing %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2805
|
||||
#, c-format
|
||||
msgid " at line %i"
|
||||
msgstr ""
|
||||
|
||||
#: src/cache.c:2849
|
||||
#: src/cache.c:2850
|
||||
#, c-format
|
||||
msgid "open files exceed max cache size by %llu MiBytes"
|
||||
msgstr ""
|
||||
|
||||
#: src/kernel_interface.c:220
|
||||
#: src/kernel_interface.c:225
|
||||
#, c-format
|
||||
msgid "can't allocate message buffer"
|
||||
msgstr ""
|
||||
|
||||
#: src/kernel_interface.c:236
|
||||
#: src/kernel_interface.c:241
|
||||
#, c-format
|
||||
msgid "loading kernel module fuse"
|
||||
msgstr ""
|
||||
|
||||
#: src/kernel_interface.c:250
|
||||
#: src/kernel_interface.c:255
|
||||
#, c-format
|
||||
msgid "loading kernel module fuse failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/kernel_interface.c:256
|
||||
#: src/kernel_interface.c:261
|
||||
#, c-format
|
||||
msgid "waiting for %s to be created"
|
||||
msgstr ""
|
||||
|
||||
#: src/kernel_interface.c:264
|
||||
#: src/kernel_interface.c:269
|
||||
#, c-format
|
||||
msgid "can't open fuse device"
|
||||
msgstr ""
|
||||
|
||||
#: src/kernel_interface.c:272
|
||||
#: src/kernel_interface.c:277
|
||||
#, c-format
|
||||
msgid "mounting failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/kernel_interface.c:305
|
||||
#, c-format
|
||||
msgid "unmounting %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:300
|
||||
#, c-format
|
||||
msgid "can't start daemon process"
|
||||
@ -173,69 +179,64 @@ msgstr ""
|
||||
msgid "can't write pid file %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:368
|
||||
#, c-format
|
||||
msgid "unmounting %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:370
|
||||
#: src/mount_davfs.c:367
|
||||
msgid "unmounting failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:441
|
||||
#: src/mount_davfs.c:437
|
||||
#, c-format
|
||||
msgid "can't change group id"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:468
|
||||
#: src/mount_davfs.c:464
|
||||
#, c-format
|
||||
msgid "can't access file %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:489 src/mount_davfs.c:501 src/mount_davfs.c:591
|
||||
#: src/mount_davfs.c:617
|
||||
#: src/mount_davfs.c:485 src/mount_davfs.c:497 src/mount_davfs.c:587
|
||||
#: src/mount_davfs.c:613
|
||||
#, c-format
|
||||
msgid "can't create directory %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:505 src/mount_davfs.c:595 src/mount_davfs.c:621
|
||||
#: src/mount_davfs.c:626 src/mount_davfs.c:634
|
||||
#: src/mount_davfs.c:501 src/mount_davfs.c:591 src/mount_davfs.c:617
|
||||
#: src/mount_davfs.c:622 src/mount_davfs.c:630
|
||||
#, c-format
|
||||
msgid "can't access directory %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:511 src/mount_davfs.c:601
|
||||
#: src/mount_davfs.c:507 src/mount_davfs.c:597
|
||||
#, c-format
|
||||
msgid "can't change mode of directory %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:516 src/mount_davfs.c:607
|
||||
#: src/mount_davfs.c:512 src/mount_davfs.c:603
|
||||
#, c-format
|
||||
msgid "can't change group of directory %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:523 src/mount_davfs.c:575
|
||||
#: src/mount_davfs.c:519 src/mount_davfs.c:571
|
||||
#, c-format
|
||||
msgid "file %s has wrong owner"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:527 src/mount_davfs.c:580
|
||||
#: src/mount_davfs.c:523 src/mount_davfs.c:576
|
||||
#, c-format
|
||||
msgid "file %s has wrong permissions"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:652 src/mount_davfs.c:704 src/mount_davfs.c:1339
|
||||
#: src/mount_davfs.c:1343
|
||||
#: src/mount_davfs.c:648 src/mount_davfs.c:700 src/mount_davfs.c:1335
|
||||
#: src/mount_davfs.c:1339
|
||||
#, c-format
|
||||
msgid "can't open file %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:657
|
||||
#: src/mount_davfs.c:653
|
||||
#, c-format
|
||||
msgid "%s is already mounted on %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:679
|
||||
#: src/mount_davfs.c:675
|
||||
#, c-format
|
||||
msgid ""
|
||||
"found PID file %s.\n"
|
||||
@ -243,280 +244,280 @@ msgid ""
|
||||
"or another mount process ended irregular"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:721
|
||||
#: src/mount_davfs.c:717
|
||||
#, c-format
|
||||
msgid "no entry for %s found in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:725
|
||||
#: src/mount_davfs.c:721
|
||||
#, c-format
|
||||
msgid "different URL in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:728
|
||||
#: src/mount_davfs.c:724
|
||||
#, c-format
|
||||
msgid "different file system type in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:739
|
||||
#: src/mount_davfs.c:735
|
||||
#, c-format
|
||||
msgid "different config file in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:745
|
||||
#: src/mount_davfs.c:741
|
||||
#, c-format
|
||||
msgid "different username in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:749
|
||||
#: src/mount_davfs.c:745
|
||||
#, c-format
|
||||
msgid "neither option `user' nor option `users' set in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:752
|
||||
#: src/mount_davfs.c:748
|
||||
#, c-format
|
||||
msgid "different mount options in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:755
|
||||
#: src/mount_davfs.c:751
|
||||
#, c-format
|
||||
msgid "different uid in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:757
|
||||
#: src/mount_davfs.c:753
|
||||
#, c-format
|
||||
msgid "different gid in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:759
|
||||
#: src/mount_davfs.c:755
|
||||
#, c-format
|
||||
msgid "different dir_mode in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:761
|
||||
#: src/mount_davfs.c:757
|
||||
#, c-format
|
||||
msgid "different file_mode in %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:781
|
||||
#: src/mount_davfs.c:777
|
||||
#, c-format
|
||||
msgid "you can't set file owner different from your uid"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:793
|
||||
#: src/mount_davfs.c:789
|
||||
#, c-format
|
||||
msgid "you must be member of the group of the file system"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:804
|
||||
#: src/mount_davfs.c:800
|
||||
#, c-format
|
||||
msgid "user %s must be member of group %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:824 src/mount_davfs.c:1164
|
||||
#: src/mount_davfs.c:820 src/mount_davfs.c:1160
|
||||
#, c-format
|
||||
msgid "can't change effective user id"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:868 src/umount_davfs.c:92
|
||||
#: src/mount_davfs.c:864 src/umount_davfs.c:92
|
||||
#, c-format
|
||||
msgid ""
|
||||
"This is free software; see the source for copying conditions. There is NO\n"
|
||||
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:884 src/umount_davfs.c:118
|
||||
#: src/mount_davfs.c:880 src/umount_davfs.c:118
|
||||
#, c-format
|
||||
msgid "unknown error parsing arguments"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:893 src/umount_davfs.c:124
|
||||
#: src/mount_davfs.c:889 src/umount_davfs.c:124
|
||||
#, c-format
|
||||
msgid "missing argument"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:906
|
||||
#: src/mount_davfs.c:902
|
||||
#, c-format
|
||||
msgid "can't evaluate path of mount point %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:909 src/umount_davfs.c:126
|
||||
#: src/mount_davfs.c:905 src/umount_davfs.c:126
|
||||
#, c-format
|
||||
msgid "too many arguments"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:916
|
||||
#: src/mount_davfs.c:912
|
||||
#, c-format
|
||||
msgid "A relative mount point must lie within your home directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:921
|
||||
#: src/mount_davfs.c:917
|
||||
#, c-format
|
||||
msgid "no WebDAV-server specified"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:924
|
||||
#: src/mount_davfs.c:920
|
||||
#, c-format
|
||||
msgid "invalid URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:954
|
||||
#: src/mount_davfs.c:950
|
||||
#, c-format
|
||||
msgid "user %s does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:962
|
||||
#: src/mount_davfs.c:958
|
||||
#, c-format
|
||||
msgid "group %s does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1029
|
||||
#: src/mount_davfs.c:1025
|
||||
#, c-format
|
||||
msgid "program is not setuid root"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1047
|
||||
#: src/mount_davfs.c:1043
|
||||
#, c-format
|
||||
msgid "can't read group data base"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1074 src/mount_davfs.c:1087 src/mount_davfs.c:1089
|
||||
#: src/mount_davfs.c:1107 src/mount_davfs.c:1109 src/mount_davfs.c:1124
|
||||
#: src/mount_davfs.c:1070 src/mount_davfs.c:1083 src/mount_davfs.c:1085
|
||||
#: src/mount_davfs.c:1103 src/mount_davfs.c:1105 src/mount_davfs.c:1120
|
||||
msgid "Password: "
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1078
|
||||
#: src/mount_davfs.c:1074
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the username to authenticate with proxy\n"
|
||||
"%s or hit enter for none.\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1080 src/mount_davfs.c:1100
|
||||
#: src/mount_davfs.c:1076 src/mount_davfs.c:1096
|
||||
msgid "Username:"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1084
|
||||
#: src/mount_davfs.c:1080
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the password to authenticate user %s with proxy\n"
|
||||
"%s or hit enter for none.\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1098
|
||||
#: src/mount_davfs.c:1094
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the username to authenticate with server\n"
|
||||
"%s or hit enter for none.\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1104
|
||||
#: src/mount_davfs.c:1100
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the password to authenticate user %s with server\n"
|
||||
"%s or hit enter for none.\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1122
|
||||
#: src/mount_davfs.c:1118
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the password to decrypt client\n"
|
||||
"certificate %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1129
|
||||
#: src/mount_davfs.c:1125
|
||||
#, c-format
|
||||
msgid "can't decrypt client certificate %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1192
|
||||
#: src/mount_davfs.c:1188
|
||||
#, c-format
|
||||
msgid "pid %i, got signal %i"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1256
|
||||
#: src/mount_davfs.c:1252
|
||||
#, c-format
|
||||
msgid "can't create file %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1260
|
||||
#: src/mount_davfs.c:1256
|
||||
#, c-format
|
||||
msgid "can't lock file %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1282
|
||||
#: src/mount_davfs.c:1278
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Warning: can't write entry into %s, but will mount the file system anyway"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1318
|
||||
#: src/mount_davfs.c:1314
|
||||
#, c-format
|
||||
msgid "option %s has invalid argument;it must be a decimal number"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1321
|
||||
#: src/mount_davfs.c:1317
|
||||
#, c-format
|
||||
msgid "option %s has invalid argument;it must be an octal number"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1324
|
||||
#: src/mount_davfs.c:1320
|
||||
#, c-format
|
||||
msgid "option %s has invalid argument;it must be a number"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1350
|
||||
#: src/mount_davfs.c:1346
|
||||
#, c-format
|
||||
msgid "error writing to file %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1595
|
||||
#: src/mount_davfs.c:1591
|
||||
#, c-format
|
||||
msgid "option %s requires argument"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:1682
|
||||
#: src/mount_davfs.c:1678
|
||||
#, c-format
|
||||
msgid "Unknown option %s.\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2057
|
||||
#: src/mount_davfs.c:2068
|
||||
#, c-format
|
||||
msgid "can't read certificate %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2089 src/mount_davfs.c:2102
|
||||
#: src/mount_davfs.c:2100 src/mount_davfs.c:2113
|
||||
#, c-format
|
||||
msgid "can't read client certificate %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2093
|
||||
#: src/mount_davfs.c:2104
|
||||
#, c-format
|
||||
msgid "client certificate file %s has wrong owner"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2097
|
||||
#: src/mount_davfs.c:2108
|
||||
#, c-format
|
||||
msgid "client certificate file %s has wrong permissions"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2119 src/mount_davfs.c:2352
|
||||
#: src/mount_davfs.c:2130 src/mount_davfs.c:2363
|
||||
#, c-format
|
||||
msgid "opening %s failed"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2140 src/mount_davfs.c:2184 src/mount_davfs.c:2282
|
||||
#: src/mount_davfs.c:2379 src/mount_davfs.c:2437 src/mount_davfs.c:2450
|
||||
#: src/mount_davfs.c:2151 src/mount_davfs.c:2195 src/mount_davfs.c:2293
|
||||
#: src/mount_davfs.c:2390 src/mount_davfs.c:2448 src/mount_davfs.c:2461
|
||||
#, c-format
|
||||
msgid "malformed line"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2260 src/mount_davfs.c:2276
|
||||
#: src/mount_davfs.c:2271 src/mount_davfs.c:2287
|
||||
#, c-format
|
||||
msgid "unknown option"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2582
|
||||
#: src/mount_davfs.c:2593
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Usage:\n"
|
||||
@ -525,14 +526,14 @@ msgid ""
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2586
|
||||
#: src/mount_davfs.c:2597
|
||||
#, c-format
|
||||
msgid ""
|
||||
"To mount a WebDAV-resource don't call %s directly, but use\n"
|
||||
"`mount' instead.\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2588
|
||||
#: src/mount_davfs.c:2599
|
||||
#, c-format
|
||||
msgid ""
|
||||
" mount <mountpoint> : or\n"
|
||||
@ -540,7 +541,7 @@ msgid ""
|
||||
" /etc/fstab.\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2591
|
||||
#: src/mount_davfs.c:2602
|
||||
#, c-format
|
||||
msgid ""
|
||||
" mount -t davfs <server-url> <mountpoint> [-o options]\n"
|
||||
@ -551,7 +552,7 @@ msgid ""
|
||||
"\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2596
|
||||
#: src/mount_davfs.c:2607
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Recognised options:\n"
|
||||
@ -562,7 +563,7 @@ msgid ""
|
||||
" dir_mode= : default directory mode (octal)\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/mount_davfs.c:2602
|
||||
#: src/mount_davfs.c:2613
|
||||
#, c-format
|
||||
msgid ""
|
||||
" ro : mount read-only\n"
|
||||
@ -640,7 +641,7 @@ msgstr ""
|
||||
|
||||
#: src/umount_davfs.c:211
|
||||
#, c-format
|
||||
msgid "an error occured while waiting; please wait for %s to terminate"
|
||||
msgid "an error occurred while waiting; please wait for %s to terminate"
|
||||
msgstr ""
|
||||
|
||||
#: src/webdav.c:356
|
||||
|
209
po/de.po
209
po/de.po
@ -8,8 +8,8 @@ msgstr ""
|
||||
"Project-Id-Version: davfs2 1.5.0\n"
|
||||
"Report-Msgid-Bugs-To: http://savannah.nongnu.org/support/?"
|
||||
"func=additem&group=davfs2\n"
|
||||
"POT-Creation-Date: 2015-04-20 11:51+0200\n"
|
||||
"PO-Revision-Date: 2014-04-20 10:49+0200\n"
|
||||
"POT-Creation-Date: 2016-05-16 12:09+0200\n"
|
||||
"PO-Revision-Date: 2016-05-16 12:11+0200\n"
|
||||
"Last-Translator: Werner Baumann <werner.baumann@onlinehome.de>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: de\n"
|
||||
@ -64,107 +64,113 @@ msgstr "Fehler beim Schreiben der neuen Indexdatei %s"
|
||||
msgid "can't create new index file for %s"
|
||||
msgstr "kann keine neue Indexdatei für %s erzeugen"
|
||||
|
||||
#: src/cache.c:931
|
||||
#: src/cache.c:932
|
||||
#, c-format
|
||||
msgid ""
|
||||
"File %s exists on the server but should not. Maybe it is an error in the "
|
||||
"server's LOCK impementation. You may try option 'use_locks 0' in davfs2.conf."
|
||||
"server's LOCK implementation. You may try option 'use_locks 0' in davfs2."
|
||||
"conf."
|
||||
msgstr ""
|
||||
"Die Datei %s existiert auf dem Server, sollte es aber nicht. Vielleicht "
|
||||
"behandelt der Server LOCK-Requests fehlerhaft. Du kannst es mit der Option "
|
||||
"'use_locks 0' in davfs2.conf versuchen."
|
||||
|
||||
#: src/cache.c:2447 src/cache.c:2480
|
||||
#: src/cache.c:2448 src/cache.c:2481
|
||||
#, c-format
|
||||
msgid "can't create cache file %s"
|
||||
msgstr "kann die Cachedatei %s nicht erzeugen"
|
||||
|
||||
#: src/cache.c:2495
|
||||
#: src/cache.c:2496
|
||||
#, c-format
|
||||
msgid "error writing directory %s"
|
||||
msgstr "Fehler beim Schreiben des Verzeichnisses %s"
|
||||
|
||||
#: src/cache.c:2659 src/mount_davfs.c:1038
|
||||
#: src/cache.c:2660 src/mount_davfs.c:1034
|
||||
#, c-format
|
||||
msgid "can't read user data base"
|
||||
msgstr "kann die Benutzerdatenbank nicht lesen"
|
||||
|
||||
#: src/cache.c:2671
|
||||
#: src/cache.c:2672
|
||||
#, c-format
|
||||
msgid "can't open cache directory %s"
|
||||
msgstr "kann das Cacheverzeichnis %s nicht öffnen"
|
||||
|
||||
#: src/cache.c:2686
|
||||
#: src/cache.c:2687
|
||||
#, c-format
|
||||
msgid "can't create cache directory %s"
|
||||
msgstr "kann das Cacheverzeichnis %s nicht erzeugen"
|
||||
|
||||
#: src/cache.c:2693
|
||||
#: src/cache.c:2694
|
||||
#, c-format
|
||||
msgid "can't access cache directory %s"
|
||||
msgstr "Zugriff auf das Cachverzeichnis %s verweigert"
|
||||
|
||||
#: src/cache.c:2696
|
||||
#: src/cache.c:2697
|
||||
#, c-format
|
||||
msgid "wrong owner of cache directory %s"
|
||||
msgstr "das Cacheverzeichnis %s hat den falschen Besitzer"
|
||||
|
||||
#: src/cache.c:2700
|
||||
#: src/cache.c:2701
|
||||
#, c-format
|
||||
msgid "wrong permissions set for cache directory %s"
|
||||
msgstr "das Cachverzeichnis %s hat die falschen Dateirechte"
|
||||
|
||||
#: src/cache.c:2730
|
||||
#: src/cache.c:2731
|
||||
msgid "found orphaned file in cache:"
|
||||
msgstr "fand verwaiste Datei im Cache:"
|
||||
|
||||
#: src/cache.c:2803
|
||||
#: src/cache.c:2804
|
||||
#, c-format
|
||||
msgid "error parsing %s"
|
||||
msgstr "Syntaxfehler in %s"
|
||||
|
||||
#: src/cache.c:2804
|
||||
#: src/cache.c:2805
|
||||
#, c-format
|
||||
msgid " at line %i"
|
||||
msgstr " in Zeile %i"
|
||||
|
||||
#: src/cache.c:2849
|
||||
#: src/cache.c:2850
|
||||
#, c-format
|
||||
msgid "open files exceed max cache size by %llu MiBytes"
|
||||
msgstr ""
|
||||
"Die Größe der offenen Dateien überschreitet die maximale Größe des Cache um "
|
||||
"%llu MiBytes"
|
||||
|
||||
#: src/kernel_interface.c:220
|
||||
#: src/kernel_interface.c:225
|
||||
#, c-format
|
||||
msgid "can't allocate message buffer"
|
||||
msgstr "kein Speicher für den Nachrichtenpuffer verfügbar"
|
||||
|
||||
#: src/kernel_interface.c:236
|
||||
#: src/kernel_interface.c:241
|
||||
#, c-format
|
||||
msgid "loading kernel module fuse"
|
||||
msgstr "lade das Kernel_Modul fuse"
|
||||
|
||||
#: src/kernel_interface.c:250
|
||||
#: src/kernel_interface.c:255
|
||||
#, c-format
|
||||
msgid "loading kernel module fuse failed"
|
||||
msgstr "das Laden des Kernel-Moduls fuse schlug fehl"
|
||||
|
||||
#: src/kernel_interface.c:256
|
||||
#: src/kernel_interface.c:261
|
||||
#, c-format
|
||||
msgid "waiting for %s to be created"
|
||||
msgstr "warte auf des Einrichten von %s"
|
||||
|
||||
#: src/kernel_interface.c:264
|
||||
#: src/kernel_interface.c:269
|
||||
#, c-format
|
||||
msgid "can't open fuse device"
|
||||
msgstr "kann die fuse-Gerätedatei nicht öffnen"
|
||||
|
||||
#: src/kernel_interface.c:272
|
||||
#: src/kernel_interface.c:277
|
||||
#, c-format
|
||||
msgid "mounting failed"
|
||||
msgstr "das Aushängen schlug fehl"
|
||||
|
||||
#: src/kernel_interface.c:305
|
||||
#, c-format
|
||||
msgid "unmounting %s"
|
||||
msgstr "hänge %s aus"
|
||||
|
||||
#: src/mount_davfs.c:300
|
||||
#, c-format
|
||||
msgid "can't start daemon process"
|
||||
@ -183,69 +189,64 @@ msgstr "kann das Terminal nicht freigeben"
|
||||
msgid "can't write pid file %s"
|
||||
msgstr "kann die PID-Datei %s nicht schreiben"
|
||||
|
||||
#: src/mount_davfs.c:368
|
||||
#, c-format
|
||||
msgid "unmounting %s"
|
||||
msgstr "hänge %s aus"
|
||||
|
||||
#: src/mount_davfs.c:370
|
||||
#: src/mount_davfs.c:367
|
||||
msgid "unmounting failed"
|
||||
msgstr "das Aushängen schlug fehl"
|
||||
|
||||
#: src/mount_davfs.c:441
|
||||
#: src/mount_davfs.c:437
|
||||
#, c-format
|
||||
msgid "can't change group id"
|
||||
msgstr "kann die Gruppenkennung nicht ändern"
|
||||
|
||||
#: src/mount_davfs.c:468
|
||||
#: src/mount_davfs.c:464
|
||||
#, c-format
|
||||
msgid "can't access file %s"
|
||||
msgstr "kann nicht auf Datei %s zugreifen"
|
||||
|
||||
#: src/mount_davfs.c:489 src/mount_davfs.c:501 src/mount_davfs.c:591
|
||||
#: src/mount_davfs.c:617
|
||||
#: src/mount_davfs.c:485 src/mount_davfs.c:497 src/mount_davfs.c:587
|
||||
#: src/mount_davfs.c:613
|
||||
#, c-format
|
||||
msgid "can't create directory %s"
|
||||
msgstr "kann das Verzeichnis %s nicht erzeugen"
|
||||
|
||||
#: src/mount_davfs.c:505 src/mount_davfs.c:595 src/mount_davfs.c:621
|
||||
#: src/mount_davfs.c:626 src/mount_davfs.c:634
|
||||
#: src/mount_davfs.c:501 src/mount_davfs.c:591 src/mount_davfs.c:617
|
||||
#: src/mount_davfs.c:622 src/mount_davfs.c:630
|
||||
#, c-format
|
||||
msgid "can't access directory %s"
|
||||
msgstr "Zugriff auf das Verzeichnis %s verweigert"
|
||||
|
||||
#: src/mount_davfs.c:511 src/mount_davfs.c:601
|
||||
#: src/mount_davfs.c:507 src/mount_davfs.c:597
|
||||
#, c-format
|
||||
msgid "can't change mode of directory %s"
|
||||
msgstr "kann die Rechte des Verzeichnisses %s nicht ändern"
|
||||
|
||||
#: src/mount_davfs.c:516 src/mount_davfs.c:607
|
||||
#: src/mount_davfs.c:512 src/mount_davfs.c:603
|
||||
#, c-format
|
||||
msgid "can't change group of directory %s"
|
||||
msgstr "kann die Gruppenkennung des Verneichnisses %s nicht ändern"
|
||||
|
||||
#: src/mount_davfs.c:523 src/mount_davfs.c:575
|
||||
#: src/mount_davfs.c:519 src/mount_davfs.c:571
|
||||
#, c-format
|
||||
msgid "file %s has wrong owner"
|
||||
msgstr "die Datei %s hat den falschen Besitzer"
|
||||
|
||||
#: src/mount_davfs.c:527 src/mount_davfs.c:580
|
||||
#: src/mount_davfs.c:523 src/mount_davfs.c:576
|
||||
#, c-format
|
||||
msgid "file %s has wrong permissions"
|
||||
msgstr "die Dateirechte für %s sind falsch"
|
||||
|
||||
#: src/mount_davfs.c:652 src/mount_davfs.c:704 src/mount_davfs.c:1339
|
||||
#: src/mount_davfs.c:1343
|
||||
#: src/mount_davfs.c:648 src/mount_davfs.c:700 src/mount_davfs.c:1335
|
||||
#: src/mount_davfs.c:1339
|
||||
#, c-format
|
||||
msgid "can't open file %s"
|
||||
msgstr "kann die Datei %s nicht öffnen"
|
||||
|
||||
#: src/mount_davfs.c:657
|
||||
#: src/mount_davfs.c:653
|
||||
#, c-format
|
||||
msgid "%s is already mounted on %s"
|
||||
msgstr "%s ist bereits auf %s eingehängt"
|
||||
|
||||
#: src/mount_davfs.c:679
|
||||
#: src/mount_davfs.c:675
|
||||
#, c-format
|
||||
msgid ""
|
||||
"found PID file %s.\n"
|
||||
@ -256,84 +257,84 @@ msgstr ""
|
||||
"Möglicherweise wird %s von einem anderen Prozess benutzt,\n"
|
||||
"oder ein anderer Mount-Prozess endete irregulär"
|
||||
|
||||
#: src/mount_davfs.c:721
|
||||
#: src/mount_davfs.c:717
|
||||
#, c-format
|
||||
msgid "no entry for %s found in %s"
|
||||
msgstr "für %s ist kein Eintrag in %s"
|
||||
|
||||
#: src/mount_davfs.c:725
|
||||
#: src/mount_davfs.c:721
|
||||
#, c-format
|
||||
msgid "different URL in %s"
|
||||
msgstr "in %s ist eine andere URL angegeben"
|
||||
|
||||
#: src/mount_davfs.c:728
|
||||
#: src/mount_davfs.c:724
|
||||
#, c-format
|
||||
msgid "different file system type in %s"
|
||||
msgstr "in %s ist ein anderer Dateisystemtyp angegeben"
|
||||
|
||||
#: src/mount_davfs.c:739
|
||||
#: src/mount_davfs.c:735
|
||||
#, c-format
|
||||
msgid "different config file in %s"
|
||||
msgstr "in %s ist eine andere Konfigurationsdatei angegeben"
|
||||
|
||||
#: src/mount_davfs.c:745
|
||||
#: src/mount_davfs.c:741
|
||||
#, c-format
|
||||
msgid "different username in %s"
|
||||
msgstr "in %s ist ein anderer Benutzername angegeben"
|
||||
|
||||
#: src/mount_davfs.c:749
|
||||
#: src/mount_davfs.c:745
|
||||
#, c-format
|
||||
msgid "neither option `user' nor option `users' set in %s"
|
||||
msgstr "in %s ist weder die Option „user” noch die Option „users” angegeben"
|
||||
|
||||
#: src/mount_davfs.c:752
|
||||
#: src/mount_davfs.c:748
|
||||
#, c-format
|
||||
msgid "different mount options in %s"
|
||||
msgstr "in %s sind andere Mount-Optionen angegeben"
|
||||
|
||||
#: src/mount_davfs.c:755
|
||||
#: src/mount_davfs.c:751
|
||||
#, c-format
|
||||
msgid "different uid in %s"
|
||||
msgstr "in %s ist eine andere uid angegeben"
|
||||
|
||||
#: src/mount_davfs.c:757
|
||||
#: src/mount_davfs.c:753
|
||||
#, c-format
|
||||
msgid "different gid in %s"
|
||||
msgstr "in %s ist eine andere gid angegeben"
|
||||
|
||||
#: src/mount_davfs.c:759
|
||||
#: src/mount_davfs.c:755
|
||||
#, c-format
|
||||
msgid "different dir_mode in %s"
|
||||
msgstr "in %s ist ein anderer dir_mode angegeben"
|
||||
|
||||
#: src/mount_davfs.c:761
|
||||
#: src/mount_davfs.c:757
|
||||
#, c-format
|
||||
msgid "different file_mode in %s"
|
||||
msgstr "in %s ist ein anderer file_mode angegeben"
|
||||
|
||||
#: src/mount_davfs.c:781
|
||||
#: src/mount_davfs.c:777
|
||||
#, c-format
|
||||
msgid "you can't set file owner different from your uid"
|
||||
msgstr ""
|
||||
"du kannst als Besitzer des Dateisystems keine fremde Benutzerkennung angeben"
|
||||
|
||||
#: src/mount_davfs.c:793
|
||||
#: src/mount_davfs.c:789
|
||||
#, c-format
|
||||
msgid "you must be member of the group of the file system"
|
||||
msgstr ""
|
||||
"du musst Mitglied in der Gruppe sein, zu der das Dateisystem gehören soll"
|
||||
|
||||
#: src/mount_davfs.c:804
|
||||
#: src/mount_davfs.c:800
|
||||
#, c-format
|
||||
msgid "user %s must be member of group %s"
|
||||
msgstr "der Benutzer %s muss Mitglied der Gruppe %s sein"
|
||||
|
||||
#: src/mount_davfs.c:824 src/mount_davfs.c:1164
|
||||
#: src/mount_davfs.c:820 src/mount_davfs.c:1160
|
||||
#, c-format
|
||||
msgid "can't change effective user id"
|
||||
msgstr "kann die effektive Benutzer-ID nicht ändern"
|
||||
|
||||
#: src/mount_davfs.c:868 src/umount_davfs.c:92
|
||||
#: src/mount_davfs.c:864 src/umount_davfs.c:92
|
||||
#, c-format
|
||||
msgid ""
|
||||
"This is free software; see the source for copying conditions. There is NO\n"
|
||||
@ -344,67 +345,67 @@ msgstr ""
|
||||
"gibt keine Garantie; auch nicht für VERKAUFBARKEIT oder FÜR SPEZIELLE "
|
||||
"ZWECKE.\n"
|
||||
|
||||
#: src/mount_davfs.c:884 src/umount_davfs.c:118
|
||||
#: src/mount_davfs.c:880 src/umount_davfs.c:118
|
||||
#, c-format
|
||||
msgid "unknown error parsing arguments"
|
||||
msgstr "Fehler beim Analysieren der Befehlsargumente"
|
||||
|
||||
#: src/mount_davfs.c:893 src/umount_davfs.c:124
|
||||
#: src/mount_davfs.c:889 src/umount_davfs.c:124
|
||||
#, c-format
|
||||
msgid "missing argument"
|
||||
msgstr "zu wenig Argumente"
|
||||
|
||||
#: src/mount_davfs.c:906
|
||||
#: src/mount_davfs.c:902
|
||||
#, c-format
|
||||
msgid "can't evaluate path of mount point %s"
|
||||
msgstr "kann den eindeutigen Pfad des Einhängepunktes %s nicht ermitteln"
|
||||
|
||||
#: src/mount_davfs.c:909 src/umount_davfs.c:126
|
||||
#: src/mount_davfs.c:905 src/umount_davfs.c:126
|
||||
#, c-format
|
||||
msgid "too many arguments"
|
||||
msgstr "zu viele Argumente"
|
||||
|
||||
#: src/mount_davfs.c:916
|
||||
#: src/mount_davfs.c:912
|
||||
#, c-format
|
||||
msgid "A relative mount point must lie within your home directory"
|
||||
msgstr "Ein relativer Einhängepunkt muss in deinem Home-Verzeichnis liegen"
|
||||
|
||||
#: src/mount_davfs.c:921
|
||||
#: src/mount_davfs.c:917
|
||||
#, c-format
|
||||
msgid "no WebDAV-server specified"
|
||||
msgstr "es wurde kein WebDAV-Server angegeben"
|
||||
|
||||
#: src/mount_davfs.c:924
|
||||
#: src/mount_davfs.c:920
|
||||
#, c-format
|
||||
msgid "invalid URL"
|
||||
msgstr "die URL ist ungültig"
|
||||
|
||||
#: src/mount_davfs.c:954
|
||||
#: src/mount_davfs.c:950
|
||||
#, c-format
|
||||
msgid "user %s does not exist"
|
||||
msgstr "der Benutzer %s existiert nicht"
|
||||
|
||||
#: src/mount_davfs.c:962
|
||||
#: src/mount_davfs.c:958
|
||||
#, c-format
|
||||
msgid "group %s does not exist"
|
||||
msgstr "die Gruppe %s existiert nicht"
|
||||
|
||||
#: src/mount_davfs.c:1029
|
||||
#: src/mount_davfs.c:1025
|
||||
#, c-format
|
||||
msgid "program is not setuid root"
|
||||
msgstr "die Programmdatei hat das setuid-Bit nicht gesetzt"
|
||||
|
||||
#: src/mount_davfs.c:1047
|
||||
#: src/mount_davfs.c:1043
|
||||
#, c-format
|
||||
msgid "can't read group data base"
|
||||
msgstr "kann die Gruppendatenbank nicht lesen"
|
||||
|
||||
#: src/mount_davfs.c:1074 src/mount_davfs.c:1087 src/mount_davfs.c:1089
|
||||
#: src/mount_davfs.c:1107 src/mount_davfs.c:1109 src/mount_davfs.c:1124
|
||||
#: src/mount_davfs.c:1070 src/mount_davfs.c:1083 src/mount_davfs.c:1085
|
||||
#: src/mount_davfs.c:1103 src/mount_davfs.c:1105 src/mount_davfs.c:1120
|
||||
msgid "Password: "
|
||||
msgstr "Passwort:"
|
||||
|
||||
#: src/mount_davfs.c:1078
|
||||
#: src/mount_davfs.c:1074
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the username to authenticate with proxy\n"
|
||||
@ -413,11 +414,11 @@ msgstr ""
|
||||
"Gib bitte den Benutzernamen für den Proxy %s an; wenn du keinen angeben "
|
||||
"willst, drücke Return.\n"
|
||||
|
||||
#: src/mount_davfs.c:1080 src/mount_davfs.c:1100
|
||||
#: src/mount_davfs.c:1076 src/mount_davfs.c:1096
|
||||
msgid "Username:"
|
||||
msgstr "Benutzername:"
|
||||
|
||||
#: src/mount_davfs.c:1084
|
||||
#: src/mount_davfs.c:1080
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the password to authenticate user %s with proxy\n"
|
||||
@ -426,7 +427,7 @@ msgstr ""
|
||||
"Gib bitte das Passwort von %s für den Proxy %s\n"
|
||||
"an; wenn du keines angeben willst, drücke Return.\n"
|
||||
|
||||
#: src/mount_davfs.c:1098
|
||||
#: src/mount_davfs.c:1094
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the username to authenticate with server\n"
|
||||
@ -435,7 +436,7 @@ msgstr ""
|
||||
"Gib bitte den Benutzernamen für den Server %s an; wenn du keinen angeben "
|
||||
"willst, drücke Return.\n"
|
||||
|
||||
#: src/mount_davfs.c:1104
|
||||
#: src/mount_davfs.c:1100
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the password to authenticate user %s with server\n"
|
||||
@ -444,7 +445,7 @@ msgstr ""
|
||||
"Gib bitte das Passwort von %s für den Server %s\n"
|
||||
"an; wenn du keines angeben willst, drücke Return.\n"
|
||||
|
||||
#: src/mount_davfs.c:1122
|
||||
#: src/mount_davfs.c:1118
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Please enter the password to decrypt client\n"
|
||||
@ -453,27 +454,27 @@ msgstr ""
|
||||
"Gib bitte das Passwort für die Entschlüsselung des\n"
|
||||
"Client-Zertifikats %s ein.\n"
|
||||
|
||||
#: src/mount_davfs.c:1129
|
||||
#: src/mount_davfs.c:1125
|
||||
#, c-format
|
||||
msgid "can't decrypt client certificate %s"
|
||||
msgstr "kann das Zertifikat %s nicht entschlüsseln"
|
||||
|
||||
#: src/mount_davfs.c:1192
|
||||
#: src/mount_davfs.c:1188
|
||||
#, c-format
|
||||
msgid "pid %i, got signal %i"
|
||||
msgstr "PID %i, erhielt Signal %i"
|
||||
|
||||
#: src/mount_davfs.c:1256
|
||||
#: src/mount_davfs.c:1252
|
||||
#, c-format
|
||||
msgid "can't create file %s"
|
||||
msgstr "kann die Datei %s nicht erzeugen"
|
||||
|
||||
#: src/mount_davfs.c:1260
|
||||
#: src/mount_davfs.c:1256
|
||||
#, c-format
|
||||
msgid "can't lock file %s"
|
||||
msgstr "kann die Datei %s nicht sperren"
|
||||
|
||||
#: src/mount_davfs.c:1282
|
||||
#: src/mount_davfs.c:1278
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Warning: can't write entry into %s, but will mount the file system anyway"
|
||||
@ -481,77 +482,77 @@ msgstr ""
|
||||
"Warnung: kann keinen Eintrag in die Datei %s schreiben, hänge das "
|
||||
"Dateisystem trotzdem ein."
|
||||
|
||||
#: src/mount_davfs.c:1318
|
||||
#: src/mount_davfs.c:1314
|
||||
#, c-format
|
||||
msgid "option %s has invalid argument;it must be a decimal number"
|
||||
msgstr "das Argument der Option %s ist ungültig; es muss eine Dezimalzahl sein"
|
||||
|
||||
#: src/mount_davfs.c:1321
|
||||
#: src/mount_davfs.c:1317
|
||||
#, c-format
|
||||
msgid "option %s has invalid argument;it must be an octal number"
|
||||
msgstr "das Argument der Option %s ist ungültig; es muss eine Oktalzahl sein"
|
||||
|
||||
#: src/mount_davfs.c:1324
|
||||
#: src/mount_davfs.c:1320
|
||||
#, c-format
|
||||
msgid "option %s has invalid argument;it must be a number"
|
||||
msgstr "das Argument der Option %s ist ungültig; es muss eine Zahl sein"
|
||||
|
||||
#: src/mount_davfs.c:1350
|
||||
#, fuzzy, c-format
|
||||
#: src/mount_davfs.c:1346
|
||||
#, c-format
|
||||
msgid "error writing to file %s"
|
||||
msgstr "Fehler beim Schreiben der neuen Indexdatei %s"
|
||||
|
||||
#: src/mount_davfs.c:1595
|
||||
#: src/mount_davfs.c:1591
|
||||
#, c-format
|
||||
msgid "option %s requires argument"
|
||||
msgstr "die Option %s verlangt ein Argument"
|
||||
|
||||
#: src/mount_davfs.c:1682
|
||||
#: src/mount_davfs.c:1678
|
||||
#, c-format
|
||||
msgid "Unknown option %s.\n"
|
||||
msgstr "unbekannte Option %s.\n"
|
||||
|
||||
#: src/mount_davfs.c:2057
|
||||
#: src/mount_davfs.c:2068
|
||||
#, c-format
|
||||
msgid "can't read certificate %s"
|
||||
msgstr "kann das Zertifikat %s nicht lesen"
|
||||
|
||||
#: src/mount_davfs.c:2089 src/mount_davfs.c:2102
|
||||
#: src/mount_davfs.c:2100 src/mount_davfs.c:2113
|
||||
#, c-format
|
||||
msgid "can't read client certificate %s"
|
||||
msgstr "kann das Client-Zertifikat %s nicht lesen"
|
||||
|
||||
#: src/mount_davfs.c:2093
|
||||
#: src/mount_davfs.c:2104
|
||||
#, c-format
|
||||
msgid "client certificate file %s has wrong owner"
|
||||
msgstr ""
|
||||
"die Datei %s\n"
|
||||
"des Client-Zertifikats hat den falschen Besitzer"
|
||||
|
||||
#: src/mount_davfs.c:2097
|
||||
#: src/mount_davfs.c:2108
|
||||
#, c-format
|
||||
msgid "client certificate file %s has wrong permissions"
|
||||
msgstr ""
|
||||
"die Dateirechte für das Cient-Zertifikat\n"
|
||||
"%s sind falsch"
|
||||
|
||||
#: src/mount_davfs.c:2119 src/mount_davfs.c:2352
|
||||
#: src/mount_davfs.c:2130 src/mount_davfs.c:2363
|
||||
#, c-format
|
||||
msgid "opening %s failed"
|
||||
msgstr "konnte %s nicht öffnen"
|
||||
|
||||
#: src/mount_davfs.c:2140 src/mount_davfs.c:2184 src/mount_davfs.c:2282
|
||||
#: src/mount_davfs.c:2379 src/mount_davfs.c:2437 src/mount_davfs.c:2450
|
||||
#: src/mount_davfs.c:2151 src/mount_davfs.c:2195 src/mount_davfs.c:2293
|
||||
#: src/mount_davfs.c:2390 src/mount_davfs.c:2448 src/mount_davfs.c:2461
|
||||
#, c-format
|
||||
msgid "malformed line"
|
||||
msgstr "Syntaxfehler in der Zeile"
|
||||
|
||||
#: src/mount_davfs.c:2260 src/mount_davfs.c:2276
|
||||
#: src/mount_davfs.c:2271 src/mount_davfs.c:2287
|
||||
#, c-format
|
||||
msgid "unknown option"
|
||||
msgstr "unbekannte Option"
|
||||
|
||||
#: src/mount_davfs.c:2582
|
||||
#: src/mount_davfs.c:2593
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Usage:\n"
|
||||
@ -564,7 +565,7 @@ msgstr ""
|
||||
" %s -h, --help : diese Hilfe anzeigen\n"
|
||||
"\n"
|
||||
|
||||
#: src/mount_davfs.c:2586
|
||||
#: src/mount_davfs.c:2597
|
||||
#, c-format
|
||||
msgid ""
|
||||
"To mount a WebDAV-resource don't call %s directly, but use\n"
|
||||
@ -573,7 +574,7 @@ msgstr ""
|
||||
"Um eine WebDAV-Resource zu einzuhängen, sollte %s nicht direkt\n"
|
||||
"aufgerufen werden; stattdessen sollte „mount” benutzt werden.\n"
|
||||
|
||||
#: src/mount_davfs.c:2588
|
||||
#: src/mount_davfs.c:2599
|
||||
#, c-format
|
||||
msgid ""
|
||||
" mount <mountpoint> : or\n"
|
||||
@ -584,7 +585,7 @@ msgstr ""
|
||||
" mount <server-url> : hänge die WebDAV-Resource entsprechend den\n"
|
||||
" Angaben in /etc/fstab ein.\n"
|
||||
|
||||
#: src/mount_davfs.c:2591
|
||||
#: src/mount_davfs.c:2602
|
||||
#, c-format
|
||||
msgid ""
|
||||
" mount -t davfs <server-url> <mountpoint> [-o options]\n"
|
||||
@ -601,7 +602,7 @@ msgstr ""
|
||||
" Kommas unterteilte Liste von Optionen.\n"
|
||||
"\n"
|
||||
|
||||
#: src/mount_davfs.c:2596
|
||||
#: src/mount_davfs.c:2607
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Recognised options:\n"
|
||||
@ -618,7 +619,7 @@ msgstr ""
|
||||
" file_mode= : Standard-Rechte für Dateien (oktal)\n"
|
||||
" dir_mode= : Standard-Rechte für Verzeichnisse (oktal)\n"
|
||||
|
||||
#: src/mount_davfs.c:2602
|
||||
#: src/mount_davfs.c:2613
|
||||
#, c-format
|
||||
msgid ""
|
||||
" ro : mount read-only\n"
|
||||
@ -729,7 +730,7 @@ msgstr ""
|
||||
|
||||
#: src/umount_davfs.c:211
|
||||
#, c-format
|
||||
msgid "an error occured while waiting; please wait for %s to terminate"
|
||||
msgid "an error occurred while waiting; please wait for %s to terminate"
|
||||
msgstr ""
|
||||
"während des Wartens trat ein Fehler auf; bitte warte bis der %s-Prozess endet"
|
||||
|
||||
|
@ -930,7 +930,7 @@ dav_create(dav_node **nodep, dav_node *parent, const char *name, uid_t uid,
|
||||
if (ret == EEXIST)
|
||||
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_ERR),
|
||||
_("File %s exists on the server but should not. "
|
||||
"Maybe it is an error in the server's LOCK impementation. "
|
||||
"Maybe it is an error in the server's LOCK implementation. "
|
||||
"You may try option 'use_locks 0' in davfs2.conf."),
|
||||
(*nodep)->path);
|
||||
|
||||
|
@ -208,7 +208,7 @@ main(int argc, char *argv[])
|
||||
ps_in = popen(ps_command, "r");
|
||||
if (!ps_in) {
|
||||
printf("\n");
|
||||
error(EXIT_FAILURE, 0, _("an error occured while waiting; "
|
||||
error(EXIT_FAILURE, 0, _("an error occurred while waiting; "
|
||||
"please wait for %s to terminate"), PROGRAM_NAME);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user