-CHANGES.txt - 2.0.1 - 2014-11-14
+CHANGES.txt - 2.0.2 - 2015-02-03
--------------------------------
+CHANGES IN CUPS V2.0.2
+
+ - Security: cupsRasterReadPixels buffer overflow with invalid page
+ header and compressed raster data (STR #4551)
+ - Command-line programs were not localized on Mac OS X
+ (<rdar://problem/14546232>)
+ - The scheduler incorrectly cleared the MakeModel string in the
+ printers.conf file after a restart (<rdar://problem/16827518>)
+ - CUPS did not compile with older versions of GNU TLS (STR #4527)
+ - CUPS did not compile without Avahi or mDNSResponder (STR #4523)
+ - ippLength() did not return the correct length for IPP_TAG_CONST
+ string values.
+ - The scheduler incorrectly aborted jobs after a job was restarted
+ (<rdar://problem/19129387>)
+ - The cups-files.conf file contained the old ServerCertificate/Key
+ directives instead of ServerKeychain.
+ - Fixed builds when no SSL/TLS library is available, or when explicitly
+ disabled (STR #4531)
+ - Fixed an OpenBSD charset transcoding issue.
+ - Fixed USB printing on OpenBSD (STR #4525)
+ - The --without-xinetd configure option did not work (STR #4542)
+ - Backends needing to load OS X kernel extensions did not work
+ (<rdar://problem/19015679>)
+ - Mapping of PPD keywords to IPP keywords did not work if the PPD
+ keyword was already an IPP keyword (<rdar://problem/19121005>)
+ - cupsGetPPD* sent bad requests (STR #4567)
+ - ippserver used the wrong temporary directory on Windows (STR #4547)
+ - ippserver did not handle Bonjour registrations properly (STR #4548)
+ - The scheduler could crash during shutdown if Avahi was shutdown
+ first (STR #4550)
+ - Added a USB quirk rule for Intermec printers (STR #4553)
+ - The scheduler did not always log which configuration file had the
+ error (STR #4559)
+ - The ippfind and ipptool programs now correctly match hostnames with
+ trailing dots (STR #4563)
+ - The ipptool timeout option did not work (STR #4515)
+ - Fixed several issues with client.conf, CUPS_SERVER, and the "-h"
+ option of most commands (STR #4528)
+ - Another change for OpenBSD (STR #4526)
+ - Added Japanese localization (STR #4524)
+ - Documentation changes (STR #4569)
+
+
CHANGES IN CUPS V2.0.1
- Security: SSLv3 is now disabled by default to protect against the
-INSTALL - CUPS v2.0.1 - 2014-11-14
+INSTALL - CUPS v2.0.2 - 2015-02-03
----------------------------------
This file describes how to compile and install CUPS from source code. For more
gmake install ENTER
+ Use the BUILDROOT variable to install to an alternate root directory:
+
+ make BUILDROOT=/some/other/root/directory install ENTER
+
You can also build binary packages that can be installed on other machines
using the RPM spec file ("packaging/cups.spec") or EPM list file
("packaging/cups.list"). The latter also supports building of binary RPMs,
#
-# "$Id: Makefile 12145 2014-09-02 15:00:50Z msweet $"
+# "$Id: Makefile 12415 2015-01-21 00:03:08Z msweet $"
#
# Top-level Makefile for CUPS.
#
$(RM) doc/index.html
$(RM) man/client.conf.man man/cups-files.conf.man man/cups-lpd.man man/cups-snmp.man man/cupsaddsmb.man man/cupsd.conf.man man/cupsd.man man/lpoptions.man
$(RM) packaging/cups.list
- $(RM) scheduler/cups-lpd.xinetd scheduler/cups.sh scheduler/cups.xml scheduler/org.cups.cups-lpd.plist scheduler/org.cups.cupsd.path scheduler/org.cups.cupsd.service scheduler/org.cups.cupsd.socket
+ $(RM) scheduler/cups-lpd.xinetd scheduler/cups.sh scheduler/cups.xml scheduler/org.cups.cups-lpd.plist scheduler/org.cups.cups-lpdAT.service scheduler/org.cups.cupsd.path scheduler/org.cups.cupsd.service scheduler/org.cups.cupsd.socket
$(RM) templates/header.tmpl
-$(RM) doc/*/index.html
-$(RM) templates/*/header.tmpl
#
-# End of "$Id: Makefile 12145 2014-09-02 15:00:50Z msweet $".
+# End of "$Id: Makefile 12415 2015-01-21 00:03:08Z msweet $".
#
-README - CUPS v2.0.1 - 2014-11-14
+README - CUPS v2.0.2 - 2015-02-03
---------------------------------
Looking for compile instructions? Read the file "INSTALL.txt" instead...
LEGAL STUFF
- CUPS is Copyright 2007-2014 by Apple Inc. CUPS and the CUPS logo are
+ CUPS is Copyright 2007-2015 by Apple Inc. CUPS and the CUPS logo are
trademarks of Apple Inc.
The MD5 Digest code is Copyright 1999 Aladdin Enterprises.
# Canon MX320 (STR #4482)
0x04A9 0x1736 unidir
+
+# All Intermec devices (STR #4553)
+0x067e no-reattach
/*
- * "$Id: usb-libusb.c 11594 2014-02-14 20:09:01Z msweet $"
+ * "$Id: usb-libusb.c 12349 2014-12-09 22:10:52Z msweet $"
*
* LIBUSB interface code for CUPS.
*
write_endp = endp;
}
- if (write_endp >= 0)
+ if (write_endp != 0xff)
{
/*
* Save the best match so far...
else
{
printer->usblp_attached = 0;
- fprintf(stderr, "DEBUG: Failed to check whether %04x:%04x has the \"usblp\" kernel module attached\n",
- devdesc.idVendor, devdesc.idProduct);
- goto error;
+
+ if (errcode != LIBUSB_ERROR_NOT_SUPPORTED)
+ {
+ fprintf(stderr,
+ "DEBUG: Failed to check whether %04x:%04x has the \"usblp\" "
+ "kernel module attached\n", devdesc.idVendor, devdesc.idProduct);
+ goto error;
+ }
}
/*
/*
- * End of "$Id: usb-libusb.c 11594 2014-02-14 20:09:01Z msweet $".
+ * End of "$Id: usb-libusb.c 12349 2014-12-09 22:10:52Z msweet $".
*/
/*
- * "$Id: help-index.c 11594 2014-02-14 20:09:01Z msweet $"
+ * "$Id: help-index.c 12344 2014-12-09 21:36:11Z msweet $"
*
* Online help index routines for CUPS.
*
DEBUG_printf(("2help_load_file(hi=%p, filename=\"%s\", relative=\"%s\", "
- "mtime=%ld)", hi, filename, relative, mtime));
+ "mtime=%ld)", hi, filename, relative, (long)mtime));
if ((fp = cupsFileOpen(filename, "r")) == NULL)
return (-1);
/*
- * End of "$Id: help-index.c 11594 2014-02-14 20:09:01Z msweet $".
+ * End of "$Id: help-index.c 12344 2014-12-09 21:36:11Z msweet $".
*/
# Location of helper programs...
#ServerBin @CUPS_SERVERBIN@
-# SSL/TLS certificate for the scheduler...
-#ServerCertificate @CUPS_SERVERCERT@
-
-# SSL/TLS private key for the scheduler...
-#ServerKey @CUPS_SERVERKEY@
+# SSL/TLS keychain for the scheduler...
+#ServerKeychain @CUPS_SERVERKEYCHAIN@
# Location of other configuration files...
#ServerRoot @CUPS_SERVERROOT@
dnl
-dnl "$Id: cups-common.m4 12195 2014-10-02 18:45:59Z msweet $"
+dnl "$Id: cups-common.m4 12336 2014-12-09 21:19:52Z msweet $"
dnl
dnl Common configuration stuff for CUPS.
dnl
AC_CONFIG_HEADER(config.h)
dnl Version number information...
-CUPS_VERSION=2.0.1
+CUPS_VERSION=2.0.2
CUPS_REVISION=
#if test -z "$CUPS_REVISION" -a -d .svn; then
# CUPS_REVISION="-r`svnversion . | awk -F: '{print $NF}' | sed -e '1,$s/[[a-zA-Z]]*//g'`"
AC_SEARCH_LIBS(iconv_open,iconv,
AC_DEFINE(HAVE_ICONV_H)
SAVELIBS="$SAVELIBS $LIBS")
+ AC_SEARCH_LIBS(libiconv_open,iconv,
+ AC_DEFINE(HAVE_ICONV_H)
+ SAVELIBS="$SAVELIBS $LIBS")
LIBS="$SAVELIBS")
dnl Checks for Mini-XML (www.minixml.org)...
AC_SUBST(BUILDDIRS)
dnl
-dnl End of "$Id: cups-common.m4 12195 2014-10-02 18:45:59Z msweet $".
+dnl End of "$Id: cups-common.m4 12336 2014-12-09 21:19:52Z msweet $".
dnl
dnl
-dnl "$Id: cups-network.m4 11719 2014-03-21 18:07:23Z msweet $"
+dnl "$Id: cups-network.m4 12325 2014-12-09 20:28:51Z msweet $"
dnl
dnl Networking stuff for CUPS.
dnl
dnl file is missing or damaged, see the license at "http://www.cups.org/".
dnl
-AC_CHECK_HEADER(resolv.h,AC_DEFINE(HAVE_RESOLV_H))
+AC_CHECK_HEADER(resolv.h,AC_DEFINE(HAVE_RESOLV_H),,[
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <netinet/in_systm.h>
+#include <netinet/ip.h>])
AC_SEARCH_LIBS(socket, socket)
AC_SEARCH_LIBS(gethostbyaddr, nsl)
AC_SEARCH_LIBS(getifaddrs, nsl, AC_DEFINE(HAVE_GETIFADDRS))
AC_SUBST(CUPS_LISTEN_DOMAINSOCKET)
dnl
-dnl End of "$Id: cups-network.m4 11719 2014-03-21 18:07:23Z msweet $".
+dnl End of "$Id: cups-network.m4 12325 2014-12-09 20:28:51Z msweet $".
dnl
dnl
-dnl "$Id: cups-ssl.m4 12122 2014-08-28 12:55:52Z msweet $"
+dnl "$Id: cups-ssl.m4 12290 2014-12-05 17:25:55Z msweet $"
dnl
dnl TLS stuff for CUPS.
dnl
SSLFLAGS=""
SSLLIBS=""
have_ssl=0
-CUPS_SERVERCERT=""
-CUPS_SERVERKEY=""
+CUPS_SERVERKEYCHAIN=""
if test x$enable_ssl != xno; then
dnl Look for CDSA...
have_ssl=1
AC_DEFINE(HAVE_SSL)
AC_DEFINE(HAVE_CDSASSL)
- CUPS_SERVERCERT="/Library/Keychains/System.keychain"
+ CUPS_SERVERKEYCHAIN="/Library/Keychains/System.keychain"
dnl Check for the various security headers...
AC_CHECK_HEADER(Security/SecureTransportPriv.h,
fi
if test $have_ssl = 1; then
- CUPS_SERVERCERT="ssl/server.crt"
- CUPS_SERVERKEY="ssl/server.key"
+ CUPS_SERVERKEYCHAIN="ssl"
SAVELIBS="$LIBS"
LIBS="$LIBS $SSLLIBS"
AC_CHECK_FUNC(gnutls_transport_set_pull_timeout_function, AC_DEFINE(HAVE_GNUTLS_TRANSPORT_SET_PULL_TIMEOUT_FUNCTION))
+ AC_CHECK_FUNC(gnutls_priority_set_direct, AC_DEFINE(HAVE_GNUTLS_PRIORITY_SET_DIRECT))
LIBS="$SAVELIBS"
fi
fi
AC_MSG_ERROR([Unable to enable SSL support.])
fi
-AC_SUBST(CUPS_SERVERCERT)
-AC_SUBST(CUPS_SERVERKEY)
+AC_SUBST(CUPS_SERVERKEYCHAIN)
AC_SUBST(IPPALIASES)
AC_SUBST(SSLFLAGS)
AC_SUBST(SSLLIBS)
AC_SUBST(EXPORT_SSLLIBS)
dnl
-dnl End of "$Id: cups-ssl.m4 12122 2014-08-28 12:55:52Z msweet $".
+dnl End of "$Id: cups-ssl.m4 12290 2014-12-05 17:25:55Z msweet $".
dnl
dnl
-dnl "$Id: cups-startup.m4 11747 2014-03-27 01:15:48Z msweet $"
+dnl "$Id: cups-startup.m4 12351 2014-12-09 22:18:45Z msweet $"
dnl
dnl Launch-on-demand/startup stuff for CUPS.
dnl
fi
done
fi
-elif test "x$xinet" != xno; then
+elif test "x$xinetd" != xno; then
XINETD="$xinetd"
fi
dnl
-dnl End of "$Id: cups-startup.m4 11747 2014-03-27 01:15:48Z msweet $".
+dnl End of "$Id: cups-startup.m4 12351 2014-12-09 22:18:45Z msweet $".
dnl
/*
- * "$Id: config.h.in 12140 2014-08-30 01:51:22Z msweet $"
+ * "$Id: config.h.in 12329 2014-12-09 20:50:51Z msweet $"
*
* Configuration file for CUPS.
*
#undef HAVE_GNUTLS_TRANSPORT_SET_PULL_TIMEOUT_FUNCTION
+/*
+ * Do we have the gnutls_priority_set_direct function?
+ */
+
+#undef HAVE_GNUTLS_PRIORITY_SET_DIRECT
+
+
/*
* What Security framework headers do we have?
*/
#ifdef HAVE_ARC4RANDOM
# define CUPS_RAND() arc4random()
-# define CUPS_SRAND(v) arc4random_stir()
+# define CUPS_SRAND(v)
#elif defined(HAVE_RANDOM)
# define CUPS_RAND() random()
# define CUPS_SRAND(v) srandom(v)
#endif /* !_CUPS_CONFIG_H_ */
/*
- * End of "$Id: config.h.in 12140 2014-08-30 01:51:22Z msweet $".
+ * End of "$Id: config.h.in 12329 2014-12-09 20:50:51Z msweet $".
*/
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68.
+# Generated by GNU Autoconf 2.69.
#
#
-# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
-# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
-# Foundation, Inc.
+# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
#
#
# This configure script is free software; the Free Software Foundation
# CDPATH.
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
+# Use a proper internal environment variable to ensure we don't fall
+ # into an infinite loop, continuously re-executing ourselves.
+ if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
+ _as_can_reexec=no; export _as_can_reexec;
+ # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+ *v*x* | *x*v* ) as_opts=-vx ;;
+ *v* ) as_opts=-v ;;
+ *x* ) as_opts=-x ;;
+ * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
+as_fn_exit 255
+ fi
+ # We don't want this to propagate to other subprocesses.
+ { _as_can_reexec=; unset _as_can_reexec;}
if test "x$CONFIG_SHELL" = x; then
as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
emulate sh
else
exitcode=1; echo positional parameters were not saved.
fi
-test x\$exitcode = x0 || exit 1"
+test x\$exitcode = x0 || exit 1
+test -x / || exit 1"
as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
if test "x$CONFIG_SHELL" != x; then :
- # We cannot yet assume a decent shell, so we have to provide a
- # neutralization value for shells without unset; and this also
- # works around shells that cannot unset nonexistent variables.
- # Preserve -v and -x to the replacement shell.
- BASH_ENV=/dev/null
- ENV=/dev/null
- (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
- export CONFIG_SHELL
- case $- in # ((((
- *v*x* | *x*v* ) as_opts=-vx ;;
- *v* ) as_opts=-v ;;
- *x* ) as_opts=-x ;;
- * ) as_opts= ;;
- esac
- exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
+ export CONFIG_SHELL
+ # We cannot yet assume a decent shell, so we have to provide a
+# neutralization value for shells without unset; and this also
+# works around shells that cannot unset nonexistent variables.
+# Preserve -v and -x to the replacement shell.
+BASH_ENV=/dev/null
+ENV=/dev/null
+(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
+case $- in # ((((
+ *v*x* | *x*v* ) as_opts=-vx ;;
+ *v* ) as_opts=-v ;;
+ *x* ) as_opts=-x ;;
+ * ) as_opts= ;;
+esac
+exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
+# Admittedly, this is quite paranoid, since all the known shells bail
+# out after a failed `exec'.
+$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
+exit 255
fi
if test x$as_have_required = xno; then :
} # as_fn_mkdir_p
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "$1" && test -x "$1"
+} # as_fn_executable_p
# as_fn_append VAR VALUE
# ----------------------
# Append the text in VALUE to the end of the definition contained in VAR. Take
chmod +x "$as_me.lineno" ||
{ $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
+ # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
+ # already done that, so ensure we don't try to do so again and fall
+ # in an infinite loop. This has already happened in practice.
+ _as_can_reexec=no; export _as_can_reexec
# Don't try to exec as it changes $[0], causing all sort of problems
# (the dirname of $[0] is not the place where we might find the
# original and so on. Autoconf is especially sensitive to this).
# ... but there are two gotchas:
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -p'.
+ # In both cases, we have to default to `cp -pR'.
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
elif ln conf$$.file conf$$ 2>/dev/null; then
as_ln_s=ln
else
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
fi
else
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
fi
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
rmdir conf$$.dir 2>/dev/null
as_mkdir_p=false
fi
-if test -x / >/dev/null 2>&1; then
- as_test_x='test -x'
-else
- if ls -dL / >/dev/null 2>&1; then
- as_ls_L_option=L
- else
- as_ls_L_option=
- fi
- as_test_x='
- eval sh -c '\''
- if test -d "$1"; then
- test -d "$1/.";
- else
- case $1 in #(
- -*)set "./$1";;
- esac;
- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
- ???[sx]*):;;*)false;;esac;fi
- '\'' sh
- '
-fi
-as_executable_p=$as_test_x
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
# Sed expression to map a string onto a valid CPP name.
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
SSLLIBS
SSLFLAGS
IPPALIASES
-CUPS_SERVERKEY
-CUPS_SERVERCERT
+CUPS_SERVERKEYCHAIN
LIBGCRYPTCONFIG
LIBGNUTLSCONFIG
PTHREAD_FLAGS
if test "x$host_alias" != x; then
if test "x$build_alias" = x; then
cross_compiling=maybe
- $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
- If a cross compiler is detected then cross compile mode will be used" >&2
elif test "x$build_alias" != "x$host_alias"; then
cross_compiling=yes
fi
if $ac_init_version; then
cat <<\_ACEOF
configure
-generated by GNU Autoconf 2.68
+generated by GNU Autoconf 2.69
-Copyright (C) 2010 Free Software Foundation, Inc.
+Copyright (C) 2012 Free Software Foundation, Inc.
This configure script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it.
_ACEOF
test ! -s conftest.err
} && test -s conftest$ac_exeext && {
test "$cross_compiling" = yes ||
- $as_test_x conftest$ac_exeext
+ test -x conftest$ac_exeext
}; then :
ac_retval=0
else
running configure, to aid debugging if configure makes a mistake.
It was created by $as_me, which was
-generated by GNU Autoconf 2.68. Invocation command line was
+generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
ac_config_headers="$ac_config_headers config.h"
-CUPS_VERSION=2.0.1
+CUPS_VERSION=2.0.2
CUPS_REVISION=
#if test -z "$CUPS_REVISION" -a -d .svn; then
# CUPS_REVISION="-r`svnversion . | awk -F: '{print $NF}' | sed -e '1,$s/[[a-zA-Z]]*//g'`"
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_AWK="$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_CC="$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
/* end confdefs.h. */
#include <stdarg.h>
#include <stdio.h>
-#include <sys/types.h>
-#include <sys/stat.h>
+struct stat;
/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
struct buf { int x; };
FILE * (*rcsopen) (struct buf *, struct stat *, int);
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_CXX="$ac_prog"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_prog_ac_ct_RANLIB="ranlib"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_AR="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_CHMOD="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_GZIP="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_LD="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_LN="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_MV="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_RM="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_RMDIR="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_SED="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_XDGOPEN="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_PKGCONFIG="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_PKGCONFIG="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
for ac_prog in grep ggrep; do
for ac_exec_ext in '' $ac_executable_extensions; do
ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
- { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
+ as_fn_executable_p "$ac_path_GREP" || continue
# Check for GNU ac_path_GREP and select it if it is found.
# Check for GNU $ac_path_GREP
case `"$ac_path_GREP" --version 2>&1` in
for ac_prog in egrep; do
for ac_exec_ext in '' $ac_executable_extensions; do
ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
- { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
+ as_fn_executable_p "$ac_path_EGREP" || continue
# Check for GNU ac_path_EGREP and select it if it is found.
# Check for GNU $ac_path_EGREP
case `"$ac_path_EGREP" --version 2>&1` in
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_iconv_open" >&5
$as_echo "$ac_cv_search_iconv_open" >&6; }
ac_res=$ac_cv_search_iconv_open
+if test "$ac_res" != no; then :
+ test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
+ $as_echo "#define HAVE_ICONV_H 1" >>confdefs.h
+
+ SAVELIBS="$SAVELIBS $LIBS"
+fi
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing libiconv_open" >&5
+$as_echo_n "checking for library containing libiconv_open... " >&6; }
+if ${ac_cv_search_libiconv_open+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ ac_func_search_save_LIBS=$LIBS
+cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+/* end confdefs.h. */
+
+/* Override any GCC internal prototype to avoid an error.
+ Use char because int might match the return type of a GCC
+ builtin and then its argument prototype would still apply. */
+#ifdef __cplusplus
+extern "C"
+#endif
+char libiconv_open ();
+int
+main ()
+{
+return libiconv_open ();
+ ;
+ return 0;
+}
+_ACEOF
+for ac_lib in '' iconv; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else
+ ac_res=-l$ac_lib
+ LIBS="-l$ac_lib $ac_func_search_save_LIBS"
+ fi
+ if ac_fn_c_try_link "$LINENO"; then :
+ ac_cv_search_libiconv_open=$ac_res
+fi
+rm -f core conftest.err conftest.$ac_objext \
+ conftest$ac_exeext
+ if ${ac_cv_search_libiconv_open+:} false; then :
+ break
+fi
+done
+if ${ac_cv_search_libiconv_open+:} false; then :
+
+else
+ ac_cv_search_libiconv_open=no
+fi
+rm conftest.$ac_ext
+LIBS=$ac_func_search_save_LIBS
+fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_libiconv_open" >&5
+$as_echo "$ac_cv_search_libiconv_open" >&6; }
+ac_res=$ac_cv_search_libiconv_open
if test "$ac_res" != no; then :
test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
$as_echo "#define HAVE_ICONV_H 1" >>confdefs.h
-ac_fn_c_check_header_mongrel "$LINENO" "resolv.h" "ac_cv_header_resolv_h" "$ac_includes_default"
+ac_fn_c_check_header_compile "$LINENO" "resolv.h" "ac_cv_header_resolv_h" "
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <netinet/in_systm.h>
+#include <netinet/ip.h>
+"
if test "x$ac_cv_header_resolv_h" = xyes; then :
$as_echo "#define HAVE_RESOLV_H 1" >>confdefs.h
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_KRB5CONFIG="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_KRB5CONFIG="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
SSLFLAGS=""
SSLLIBS=""
have_ssl=0
-CUPS_SERVERCERT=""
-CUPS_SERVERKEY=""
+CUPS_SERVERKEYCHAIN=""
if test x$enable_ssl != xno; then
if test $have_ssl = 0 -a "x$enable_cdsassl" != "xno"; then
$as_echo "#define HAVE_CDSASSL 1" >>confdefs.h
- CUPS_SERVERCERT="/Library/Keychains/System.keychain"
+ CUPS_SERVERKEYCHAIN="/Library/Keychains/System.keychain"
ac_fn_c_check_header_mongrel "$LINENO" "Security/SecureTransportPriv.h" "ac_cv_header_Security_SecureTransportPriv_h" "$ac_includes_default"
if test "x$ac_cv_header_Security_SecureTransportPriv_h" = xyes; then :
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_LIBGNUTLSCONFIG="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_LIBGNUTLSCONFIG="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_LIBGCRYPTCONFIG="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_ac_pt_LIBGCRYPTCONFIG="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
fi
if test $have_ssl = 1; then
- CUPS_SERVERCERT="ssl/server.crt"
- CUPS_SERVERKEY="ssl/server.key"
+ CUPS_SERVERKEYCHAIN="ssl"
SAVELIBS="$LIBS"
LIBS="$LIBS $SSLLIBS"
if test "x$ac_cv_func_gnutls_transport_set_pull_timeout_function" = xyes; then :
$as_echo "#define HAVE_GNUTLS_TRANSPORT_SET_PULL_TIMEOUT_FUNCTION 1" >>confdefs.h
+fi
+
+ ac_fn_c_check_func "$LINENO" "gnutls_priority_set_direct" "ac_cv_func_gnutls_priority_set_direct"
+if test "x$ac_cv_func_gnutls_priority_set_direct" = xyes; then :
+ $as_echo "#define HAVE_GNUTLS_PRIORITY_SET_DIRECT 1" >>confdefs.h
+
fi
LIBS="$SAVELIBS"
-
EXPORT_SSLLIBS="$SSLLIBS"
esac
rm -rf conftest*
fi
+
+
fi
fi
done
fi
-elif test "x$xinet" != xno; then
+elif test "x$xinetd" != xno; then
XINETD="$xinetd"
fi
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_JAVA="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_PHPCGI="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_PHP="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
IFS=$as_save_IFS
test -z "$as_dir" && as_dir=.
for ac_exec_ext in '' $ac_executable_extensions; do
- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext"
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
break 2
# ... but there are two gotchas:
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -p'.
+ # In both cases, we have to default to `cp -pR'.
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
elif ln conf$$.file conf$$ 2>/dev/null; then
as_ln_s=ln
else
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
fi
else
- as_ln_s='cp -p'
+ as_ln_s='cp -pR'
fi
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
rmdir conf$$.dir 2>/dev/null
as_mkdir_p=false
fi
-if test -x / >/dev/null 2>&1; then
- as_test_x='test -x'
-else
- if ls -dL / >/dev/null 2>&1; then
- as_ls_L_option=L
- else
- as_ls_L_option=
- fi
- as_test_x='
- eval sh -c '\''
- if test -d "$1"; then
- test -d "$1/.";
- else
- case $1 in #(
- -*)set "./$1";;
- esac;
- case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
- ???[sx]*):;;*)false;;esac;fi
- '\'' sh
- '
-fi
-as_executable_p=$as_test_x
+
+# as_fn_executable_p FILE
+# -----------------------
+# Test if FILE is an executable regular file.
+as_fn_executable_p ()
+{
+ test -f "$1" && test -x "$1"
+} # as_fn_executable_p
+as_test_x='test -x'
+as_executable_p=as_fn_executable_p
# Sed expression to map a string onto a valid CPP name.
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
# values after options handling.
ac_log="
This file was extended by $as_me, which was
-generated by GNU Autoconf 2.68. Invocation command line was
+generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
CONFIG_HEADERS = $CONFIG_HEADERS
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
config.status
-configured by $0, generated by GNU Autoconf 2.68,
+configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
-Copyright (C) 2010 Free Software Foundation, Inc.
+Copyright (C) 2012 Free Software Foundation, Inc.
This config.status script is free software; the Free Software Foundation
gives unlimited permission to copy, distribute and modify it."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
if \$ac_cs_recheck; then
- set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
+ set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
shift
\$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
CONFIG_SHELL='$SHELL'
/*
- * "$Id: cups.h 12195 2014-10-02 18:45:59Z msweet $"
+ * "$Id: cups.h 12266 2014-11-19 16:05:28Z msweet $"
*
* API definitions for CUPS.
*
* Constants...
*/
-# define CUPS_VERSION 2.0001
+# define CUPS_VERSION 2.0002
# define CUPS_VERSION_MAJOR 2
# define CUPS_VERSION_MINOR 0
-# define CUPS_VERSION_PATCH 1
+# define CUPS_VERSION_PATCH 2
# define CUPS_BC_FD 3
/* Back-channel file descriptor for
#endif /* !_CUPS_CUPS_H_ */
/*
- * End of "$Id: cups.h 12195 2014-10-02 18:45:59Z msweet $".
+ * End of "$Id: cups.h 12266 2014-11-19 16:05:28Z msweet $".
*/
/*
- * "$Id: debug.c 11558 2014-02-06 18:33:34Z msweet $"
+ * "$Id: debug.c 12328 2014-12-09 20:38:47Z msweet $"
*
* Debugging functions for CUPS.
*
type; /* Format type character */
int width, /* Width of field */
prec; /* Number of characters of precision */
- char tformat[100], /* Temporary format string for sprintf() */
+ char tformat[100], /* Temporary format string for snprintf() */
*tptr, /* Pointer into temporary format */
temp[1024]; /* Buffer for formatted numbers */
char *s; /* Pointer to string */
if ((size_t)(width + 2) > sizeof(temp))
break;
- sprintf(temp, tformat, va_arg(ap, double));
+ snprintf(temp, sizeof(temp), tformat, va_arg(ap, double));
bytes += (int)strlen(temp);
# ifdef HAVE_LONG_LONG
if (size == 'L')
- sprintf(temp, tformat, va_arg(ap, long long));
+ snprintf(temp, sizeof(temp), tformat, va_arg(ap, long long));
else
# endif /* HAVE_LONG_LONG */
if (size == 'l')
- sprintf(temp, tformat, va_arg(ap, long));
+ snprintf(temp, sizeof(temp), tformat, va_arg(ap, long));
else
- sprintf(temp, tformat, va_arg(ap, int));
+ snprintf(temp, sizeof(temp), tformat, va_arg(ap, int));
bytes += (int)strlen(temp);
if ((size_t)(width + 2) > sizeof(temp))
break;
- sprintf(temp, tformat, va_arg(ap, void *));
+ snprintf(temp, sizeof(temp), tformat, va_arg(ap, void *));
bytes += (int)strlen(temp);
/*
- * End of "$Id: debug.c 11558 2014-02-06 18:33:34Z msweet $".
+ * End of "$Id: debug.c 12328 2014-12-09 20:38:47Z msweet $".
*/
/*
- * "$Id: file.c 11627 2014-02-20 16:15:09Z msweet $"
+ * "$Id: file.c 12297 2014-12-08 19:26:32Z msweet $"
*
* File functions for CUPS.
*
switch (result)
{
+ default :
case _CUPS_FILE_CHECK_OK :
prefix = "DEBUG2";
break;
/*
- * End of "$Id: file.c 11627 2014-02-20 16:15:09Z msweet $".
+ * End of "$Id: file.c 12297 2014-12-08 19:26:32Z msweet $".
*/
/*
- * "$Id: globals.c 12124 2014-08-28 15:37:22Z msweet $"
+ * "$Id: globals.c 12481 2015-02-03 12:45:14Z msweet $"
*
* Global variable access routines for CUPS.
*
memset(cg, 0, sizeof(_cups_globals_t));
cg->encryption = (http_encryption_t)-1;
cg->password_cb = (cups_password_cb2_t)_cupsGetPassword;
- cg->any_root = 1;
- cg->expired_certs = 1;
- cg->validate_certs = 0;
+ cg->any_root = -1;
+ cg->expired_certs = -1;
+ cg->validate_certs = -1;
#ifdef DEBUG
/*
/*
- * End of "$Id: globals.c 12124 2014-08-28 15:37:22Z msweet $".
+ * End of "$Id: globals.c 12481 2015-02-03 12:45:14Z msweet $".
*/
/*
- * "$Id: http-private.h 12243 2014-11-12 12:12:59Z msweet $"
+ * "$Id: http-private.h 12419 2015-01-22 15:51:20Z msweet $"
*
* Private HTTP definitions for CUPS.
*
- * Copyright 2007-2014 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
*
* These coded instructions, statements, and computer programs are the
# if !defined(HAVE_SECBASEPRIV_H) && defined(HAVE_CSSMERRORSTRING) /* Declare prototype for function in that header... */
extern const char *cssmErrorString(int error);
# endif /* !HAVE_SECBASEPRIV_H && HAVE_CSSMERRORSTRING */
-# ifndef HAVE_SECITEMPRIV_H /* Declare constants from that header... */
-extern const CFTypeRef kSecClassCertificate;
-extern const CFTypeRef kSecClassIdentity;
-# endif /* !HAVE_SECITEMPRIV_H */
# if !defined(HAVE_SECIDENTITYSEARCHPRIV_H) && defined(HAVE_SECIDENTITYSEARCHCREATEWITHPOLICY) /* Declare prototype for function in that header... */
extern OSStatus SecIdentitySearchCreateWithPolicy(SecPolicyRef policy,
CFStringRef idString, CSSM_KEYUSE keyUsage,
#endif /* !_CUPS_HTTP_PRIVATE_H_ */
/*
- * End of "$Id: http-private.h 12243 2014-11-12 12:12:59Z msweet $".
+ * End of "$Id: http-private.h 12419 2015-01-22 15:51:20Z msweet $".
*/
/*
- * "$Id: http.c 12230 2014-10-21 13:55:24Z msweet $"
+ * "$Id: http.c 12334 2014-12-09 21:01:55Z msweet $"
*
* HTTP routines for CUPS.
*
for (i = 0; i < bytes; i += 16)
{
for (j = 0, ptr = start; j < 16 && (i + j) < bytes; j ++, ptr += 2)
- sprintf(ptr, "%02X", buffer[i + j] & 255);
+ snprintf(ptr, 3, "%02X", buffer[i + j] & 255);
while (j < 16)
{
/*
- * End of "$Id: http.c 12230 2014-10-21 13:55:24Z msweet $".
+ * End of "$Id: http.c 12334 2014-12-09 21:01:55Z msweet $".
*/
/*
- * "$Id: ipp.c 12093 2014-08-19 12:10:17Z msweet $"
+ * "$Id: ipp.c 12469 2015-02-01 04:51:08Z msweet $"
*
* Internet Printing Protocol functions for CUPS.
*
- * Copyright 2007-2014 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
*
* These coded instructions, statements, and computer programs are the
*childattr; /* Child attribute */
ipp_tag_t value_tag; /* Value tag */
char parent[1024], /* Parent attribute name */
- *child; /* Child attribute name */
+ *child = NULL; /* Child attribute name */
DEBUG_printf(("2ippFindNextAttribute(ipp=%p, name=\"%s\", type=%02x(%s))",
DEBUG_printf(("5ipp_length: attr->name=\"%s\", attr->num_values=%d, "
"bytes=" CUPS_LLFMT, attr->name, attr->num_values, CUPS_LLCAST bytes));
- if (attr->value_tag < IPP_TAG_EXTENSION)
+ if ((attr->value_tag & ~IPP_TAG_CUPS_CONST) < IPP_TAG_EXTENSION)
bytes += (size_t)attr->num_values;/* Value tag for each value */
else
bytes += (size_t)(5 * attr->num_values);
break;
}
}
+ else if (http->used == 0 && http->timeout_value > 0)
+ {
+ /*
+ * Wait up to timeout seconds for more data on blocking sockets...
+ */
+
+ if (!httpWait(http, (int)(1000 * http->timeout_value)))
+ {
+ /*
+ * Signal no data...
+ */
+
+ bytes = -1;
+ break;
+ }
+ }
if ((bytes = httpRead2(http, (char *)buffer, length - (size_t)tbytes)) < 0)
{
/*
- * End of "$Id: ipp.c 12093 2014-08-19 12:10:17Z msweet $".
+ * End of "$Id: ipp.c 12469 2015-02-01 04:51:08Z msweet $".
*/
/*
- * "$Id: language.c 11558 2014-02-06 18:33:34Z msweet $"
+ * "$Id: language.c 12266 2014-11-19 16:05:28Z msweet $"
*
* I18N/language support for CUPS.
*
int i; /* Looping var */
CFBundleRef bundle; /* Main bundle (if any) */
CFArrayRef bundleList; /* List of localizations in bundle */
- CFPropertyListRef localizationList;
+ CFPropertyListRef localizationList = NULL;
/* List of localization data */
CFStringRef languageName; /* Current name */
CFStringRef localeName; /* Canonical from of name */
else if ((bundle = CFBundleGetMainBundle()) != NULL &&
(bundleList = CFBundleCopyBundleLocalizations(bundle)) != NULL)
{
+ CFURLRef resources = CFBundleCopyResourcesDirectoryURL(bundle);
+
DEBUG_puts("3appleLangDefault: Getting localizationList from bundle.");
- localizationList =
- CFBundleCopyPreferredLocalizationsFromArray(bundleList);
+ if (resources)
+ {
+ CFStringRef cfpath = CFURLCopyPath(resources);
+ char path[1024];
+
+ if (cfpath)
+ {
+ /*
+ * See if we have an Info.plist file in the bundle...
+ */
+
+ CFStringGetCString(cfpath, path,sizeof(path), kCFStringEncodingUTF8);
+ DEBUG_printf(("3appleLangDefault: Got a resource URL (\"%s\")", path));
+ strlcat(path, "Contents/Info.plist", sizeof(path));
+
+ if (!access(path, R_OK))
+ localizationList = CFBundleCopyPreferredLocalizationsFromArray(bundleList);
+ else
+ DEBUG_puts("3appleLangDefault: No Info.plist, ignoring resource URL...");
+
+ CFRelease(cfpath);
+ }
+
+ CFRelease(resources);
+ }
+ else
+ DEBUG_puts("3appleLangDefault: No resource URL.");
CFRelease(bundleList);
}
- else
+
+ if (!localizationList)
{
DEBUG_puts("3appleLangDefault: Getting localizationList from preferences.");
/*
- * End of "$Id: language.c 11558 2014-02-06 18:33:34Z msweet $".
+ * End of "$Id: language.c 12266 2014-11-19 16:05:28Z msweet $".
*/
/*
- * "$Id: ppd-cache.c 12124 2014-08-28 15:37:22Z msweet $"
+ * "$Id: ppd-cache.c 12434 2015-01-28 16:29:06Z msweet $"
*
* PPD cache implementation for CUPS.
*
- * Copyright 2010-2014 by Apple Inc.
+ * Copyright 2010-2015 by Apple Inc.
*
* These coded instructions, statements, and computer programs are the
* property of Apple Inc. and are protected by Federal copyright
*end; /* End of name buffer */
+ if (_cups_islower(*ppd))
+ {
+ /*
+ * Already lowercase name, use as-is?
+ */
+
+ const char *ppdptr; /* Pointer into PPD keyword */
+
+ for (ppdptr = ppd + 1; *ppdptr; ppdptr ++)
+ if (_cups_isupper(*ppdptr) || strchr(dashchars, *ppdptr))
+ break;
+
+ if (!*ppdptr)
+ {
+ strlcpy(name, ppd, namesize);
+ return;
+ }
+ }
+
for (ptr = name, end = name + namesize - 1; *ppd && ptr < end; ppd ++)
{
if (_cups_isalnum(*ppd) || *ppd == '-')
/*
- * End of "$Id: ppd-cache.c 12124 2014-08-28 15:37:22Z msweet $".
+ * End of "$Id: ppd-cache.c 12434 2015-01-28 16:29:06Z msweet $".
*/
/*
- * "$Id: tls-darwin.c 12215 2014-10-20 18:24:56Z msweet $"
+ * "$Id: tls-darwin.c 12481 2015-02-03 12:45:14Z msweet $"
*
* TLS support code for CUPS on OS X.
*
- * Copyright 2007-2014 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
*
* These coded instructions, statements, and computer programs are the
if ((secCert = http_cdsa_create_credential((http_credential_t *)cupsArrayFirst(credentials))) == NULL)
return (HTTP_TRUST_UNKNOWN);
+ if (cg->any_root < 0)
+ _cupsSetDefaults();
+
/*
* Look this common name up in the default keychains...
*/
/*
- * End of "$Id: tls-darwin.c 12215 2014-10-20 18:24:56Z msweet $".
+ * End of "$Id: tls-darwin.c 12481 2015-02-03 12:45:14Z msweet $".
*/
/*
- * "$Id: tls-gnutls.c 12215 2014-10-20 18:24:56Z msweet $"
+ * "$Id: tls-gnutls.c 12481 2015-02-03 12:45:14Z msweet $"
*
* TLS support code for CUPS using GNU TLS.
*
- * Copyright 2007-2014 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
*
* These coded instructions, statements, and computer programs are the
if ((cert = http_gnutls_create_credential((http_credential_t *)cupsArrayFirst(credentials))) == NULL)
return (HTTP_TRUST_UNKNOWN);
+ if (cg->any_root < 0)
+ _cupsSetDefaults();
+
/*
* Look this common name up in the default keychains...
*/
keyfile[1024]; /* Private key file */
int have_creds = 0; /* Have credentials? */
-
if (http->fields[HTTP_FIELD_HOST][0])
{
/*
return (-1);
}
+#ifdef HAVE_GNUTLS_PRIORITY_SET_DIRECT
if (!tls_options)
- gnutls_priority_set_direct(http->tls, "NORMAL:-ARCFOUR-128:VERS-TLS-ALL:-VERS-SSL3.0", NULL);
+ gnutls_priority_set_direct(http->tls, "NORMAL:-ARCFOUR-128:+VERS-TLS-ALL:-VERS-SSL3.0", NULL);
else if ((tls_options & _HTTP_TLS_ALLOW_SSL3) && (tls_options & _HTTP_TLS_ALLOW_RC4))
gnutls_priority_set_direct(http->tls, "NORMAL", NULL);
else if (tls_options & _HTTP_TLS_ALLOW_SSL3)
- gnutls_priority_set_direct(http->tls, "NORMAL:-ARCFOUR-128:VERS-TLS-ALL", NULL);
+ gnutls_priority_set_direct(http->tls, "NORMAL:-ARCFOUR-128:+VERS-TLS-ALL", NULL);
else
- gnutls_priority_set_direct(http->tls, "NORMAL:VERS-TLS-ALL:-VERS-SSL3.0", NULL);
+ gnutls_priority_set_direct(http->tls, "NORMAL:+VERS-TLS-ALL:-VERS-SSL3.0", NULL);
+
+#else
+ gnutls_priority_t priority; /* Priority */
+
+ if (!tls_options)
+ gnutls_priority_init(&priority, "NORMAL:-ARCFOUR-128:+VERS-TLS-ALL:-VERS-SSL3.0", NULL);
+ else if ((tls_options & _HTTP_TLS_ALLOW_SSL3) && (tls_options & _HTTP_TLS_ALLOW_RC4))
+ gnutls_priority_init(&priority, "NORMAL", NULL);
+ else if (tls_options & _HTTP_TLS_ALLOW_SSL3)
+ gnutls_priority_init(&priority, "NORMAL:-ARCFOUR-128:+VERS-TLS-ALL", NULL);
+ else
+ gnutls_priority_init(&priority, "NORMAL:+VERS-TLS-ALL:-VERS-SSL3.0", NULL);
+
+ gnutls_priority_set(http->tls, priority);
+ gnutls_priority_deinit(priority);
+#endif /* HAVE_GNUTLS_PRIORITY_SET_DIRECT */
gnutls_transport_set_ptr(http->tls, (gnutls_transport_ptr_t)http);
gnutls_transport_set_pull_function(http->tls, http_gnutls_read);
/*
- * End of "$Id: tls-gnutls.c 12215 2014-10-20 18:24:56Z msweet $".
+ * End of "$Id: tls-gnutls.c 12481 2015-02-03 12:45:14Z msweet $".
*/
/*
- * "$Id: tls-sspi.c 12215 2014-10-20 18:24:56Z msweet $"
+ * "$Id: tls-sspi.c 12481 2015-02-03 12:45:14Z msweet $"
*
* TLS support for CUPS on Windows using the Security Support Provider
* Interface (SSPI).
*
- * Copyright 2010-2014 by Apple Inc.
+ * Copyright 2010-2015 by Apple Inc.
*
* These coded instructions, statements, and computer programs are the
* property of Apple Inc. and are protected by Federal copyright
if (!cert)
return (HTTP_TRUST_UNKNOWN);
+ if (cg->any_root < 0)
+ _cupsSetDefaults();
+
if (cg->any_root)
certFlags |= SECURITY_FLAG_IGNORE_UNKNOWN_CA;
/*
- * End of "$Id: tls-sspi.c 12215 2014-10-20 18:24:56Z msweet $".
+ * End of "$Id: tls-sspi.c 12481 2015-02-03 12:45:14Z msweet $".
*/
/*
- * "$Id: transcode.c 11594 2014-02-14 20:09:01Z msweet $"
+ * "$Id: transcode.c 12332 2014-12-09 20:58:45Z msweet $"
*
* Transcoding support for CUPS.
*
if (map_encoding != encoding)
{
+ char toset[1024]; /* Destination character set */
+
_cupsCharmapFlush();
+ snprintf(toset, sizeof(toset), "%s//IGNORE", _cupsEncodingName(encoding));
+
+ map_encoding = encoding;
map_from_utf8 = iconv_open(_cupsEncodingName(encoding), "UTF-8");
- map_to_utf8 = iconv_open("UTF-8", _cupsEncodingName(encoding));
- map_encoding = encoding;
+ map_to_utf8 = iconv_open("UTF-8", toset);
}
if (map_to_utf8 != (iconv_t)-1)
if (map_encoding != encoding)
{
+ char toset[1024]; /* Destination character set */
+
_cupsCharmapFlush();
- map_from_utf8 = iconv_open(_cupsEncodingName(encoding), "UTF-8");
- map_to_utf8 = iconv_open("UTF-8", _cupsEncodingName(encoding));
+ snprintf(toset, sizeof(toset), "%s//IGNORE", _cupsEncodingName(encoding));
+
map_encoding = encoding;
+ map_from_utf8 = iconv_open(_cupsEncodingName(encoding), "UTF-8");
+ map_to_utf8 = iconv_open("UTF-8", toset);
}
if (map_from_utf8 != (iconv_t)-1)
/*
- * End of "$Id: transcode.c 11594 2014-02-14 20:09:01Z msweet $"
+ * End of "$Id: transcode.c 12332 2014-12-09 20:58:45Z msweet $"
*/
/*
- * "$Id: usersys.c 12215 2014-10-20 18:24:56Z msweet $"
+ * "$Id: usersys.c 12481 2015-02-03 12:45:14Z msweet $"
*
* User, system, and password routines for CUPS.
*
- * Copyright 2007-2014 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2006 by Easy Software Products.
*
* These coded instructions, statements, and computer programs are the
#define _CUPS_PASSCHAR '*' /* Character that is echoed for password */
+/*
+ * Local types...
+ */
+
+typedef struct _cups_client_conf_s /**** client.conf config data ****/
+{
+#ifdef HAVE_SSL
+ int ssl_options; /* SSLOptions values */
+#endif /* HAVE_SSL */
+ int any_root, /* Allow any (e.g., self-signed) root */
+ expired_certs, /* Allow expired certs */
+ validate_certs; /* Validate certificates */
+ http_encryption_t encryption; /* Encryption setting */
+ char user[65], /* User name */
+ server_name[256];
+ /* Server hostname */
+#ifdef HAVE_GSSAPI
+ char gss_service_name[32];
+ /* Kerberos service name */
+#endif /* HAVE_GSSAPI */
+} _cups_client_conf_t;
+
+
/*
* Local functions...
*/
-static void cups_read_client_conf(cups_file_t *fp,
- _cups_globals_t *cg,
- const char *cups_encryption,
- const char *cups_server,
- const char *cups_user,
+static void cups_finalize_client_conf(_cups_client_conf_t *cc);
+static void cups_init_client_conf(_cups_client_conf_t *cc);
+static void cups_read_client_conf(cups_file_t *fp, _cups_client_conf_t *cc);
+static void cups_set_encryption(_cups_client_conf_t *cc, const char *value);
#ifdef HAVE_GSSAPI
- const char *cups_gssservicename,
+static void cups_set_gss_service_name(_cups_client_conf_t *cc, const char *value);
#endif /* HAVE_GSSAPI */
- const char *cups_anyroot,
- const char *cups_expiredcerts,
- const char *cups_validatecerts,
- int ssl_options);
+static void cups_set_server_name(_cups_client_conf_t *cc, const char *value);
+#ifdef HAVE_SSL
+static void cups_set_ssl_options(_cups_client_conf_t *cc, const char *value);
+#endif /* HAVE_SSL */
+static void cups_set_user(_cups_client_conf_t *cc, const char *value);
/*
_cupsSetDefaults(void)
{
cups_file_t *fp; /* File */
- const char *home, /* Home directory of user */
- *cups_encryption, /* CUPS_ENCRYPTION env var */
- *cups_server, /* CUPS_SERVER env var */
- *cups_user, /* CUPS_USER/USER env var */
-#ifdef HAVE_GSSAPI
- *cups_gssservicename, /* CUPS_GSSSERVICENAME env var */
-#endif /* HAVE_GSSAPI */
- *cups_anyroot, /* CUPS_ANYROOT env var */
- *cups_expiredcerts, /* CUPS_EXPIREDCERTS env var */
- *cups_validatecerts; /* CUPS_VALIDATECERTS env var */
+ const char *home; /* Home directory of user */
char filename[1024]; /* Filename */
+ _cups_client_conf_t cc; /* client.conf values */
_cups_globals_t *cg = _cupsGlobals(); /* Pointer to library globals */
DEBUG_puts("_cupsSetDefaults()");
/*
- * First collect environment variables...
+ * Load initial client.conf values...
+ */
+
+ cups_init_client_conf(&cc);
+
+ /*
+ * Read the /etc/cups/client.conf and ~/.cups/client.conf files, if
+ * present.
+ */
+
+ snprintf(filename, sizeof(filename), "%s/client.conf", cg->cups_serverroot);
+ if ((fp = cupsFileOpen(filename, "r")) != NULL)
+ {
+ cups_read_client_conf(fp, &cc);
+ cupsFileClose(fp);
+ }
+
+# ifdef HAVE_GETEUID
+ if ((geteuid() == getuid() || !getuid()) && getegid() == getgid() && (home = getenv("HOME")) != NULL)
+# elif !defined(WIN32)
+ if (getuid() && (home = getenv("HOME")) != NULL)
+# else
+ if ((home = getenv("HOME")) != NULL)
+# endif /* HAVE_GETEUID */
+ {
+ /*
+ * Look for ~/.cups/client.conf...
+ */
+
+ snprintf(filename, sizeof(filename), "%s/.cups/client.conf", home);
+ if ((fp = cupsFileOpen(filename, "r")) != NULL)
+ {
+ cups_read_client_conf(fp, &cc);
+ cupsFileClose(fp);
+ }
+ }
+
+ /*
+ * Finalize things so every client.conf value is set...
*/
- cups_encryption = getenv("CUPS_ENCRYPTION");
- cups_server = getenv("CUPS_SERVER");
+ cups_finalize_client_conf(&cc);
+
+ if (cg->encryption == (http_encryption_t)-1)
+ cg->encryption = cc.encryption;
+
+ if (!cg->server[0] || !cg->ipp_port)
+ cupsSetServer(cc.server_name);
+
+ if (!cg->ipp_port)
+ {
+ const char *ipp_port; /* IPP_PORT environment variable */
+
+ if ((ipp_port = getenv("IPP_PORT")) != NULL)
+ {
+ if ((cg->ipp_port = atoi(ipp_port)) <= 0)
+ cg->ipp_port = CUPS_DEFAULT_IPP_PORT;
+ }
+ else
+ cg->ipp_port = CUPS_DEFAULT_IPP_PORT;
+ }
+
+ if (!cg->user[0])
+ strlcpy(cg->user, cc.user, sizeof(cg->user));
+
+#ifdef HAVE_GSSAPI
+ if (!cg->gss_service_name[0])
+ strlcpy(cg->gss_service_name, cc.gss_service_name, sizeof(cg->gss_service_name));
+#endif /* HAVE_GSSAPI */
+
+ if (cg->any_root < 0)
+ cg->any_root = cc.any_root;
+
+ if (cg->expired_certs < 0)
+ cg->expired_certs = cc.expired_certs;
+
+ if (cg->validate_certs < 0)
+ cg->validate_certs = cc.validate_certs;
+
+#ifdef HAVE_SSL
+ _httpTLSSetOptions(cc.ssl_options);
+#endif /* HAVE_SSL */
+}
+
+
+/*
+ * 'cups_boolean_value()' - Convert a string to a boolean value.
+ */
+
+static int /* O - Boolean value */
+cups_boolean_value(const char *value) /* I - String value */
+{
+ return (!_cups_strcasecmp(value, "yes") || !_cups_strcasecmp(value, "on") || !_cups_strcasecmp(value, "true"));
+}
+
+
+/*
+ * 'cups_finalize_client_conf()' - Finalize client.conf values.
+ */
+
+static void
+cups_finalize_client_conf(
+ _cups_client_conf_t *cc) /* I - client.conf values */
+{
+ const char *value; /* Environment variable */
+
+
+ if ((value = getenv("CUPS_ANYROOT")) != NULL)
+ cc->any_root = cups_boolean_value(value);
+
+ if ((value = getenv("CUPS_ENCRYPTION")) != NULL)
+ cups_set_encryption(cc, value);
+
+ if ((value = getenv("CUPS_EXPIREDCERTS")) != NULL)
+ cc->expired_certs = cups_boolean_value(value);
+
#ifdef HAVE_GSSAPI
- cups_gssservicename = getenv("CUPS_GSSSERVICENAME");
+ if ((value = getenv("CUPS_GSSSERVICENAME")) != NULL)
+ cups_set_gss_service_name(cc, value);
#endif /* HAVE_GSSAPI */
- cups_anyroot = getenv("CUPS_ANYROOT");
- cups_expiredcerts = getenv("CUPS_EXPIREDCERTS");
- cups_user = getenv("CUPS_USER");
- cups_validatecerts = getenv("CUPS_VALIDATECERTS");
+
+ if ((value = getenv("CUPS_SERVER")) != NULL)
+ cups_set_server_name(cc, value);
+
+ if ((value = getenv("CUPS_USER")) != NULL)
+ cups_set_user(cc, value);
+
+ if ((value = getenv("CUPS_VALIDATECERTS")) != NULL)
+ cc->validate_certs = cups_boolean_value(value);
/*
- * Then, if needed, read the ~/.cups/client.conf or /etc/cups/client.conf
- * files to get the default values...
+ * Then apply defaults for those values that haven't been set...
*/
- if (cg->encryption == (http_encryption_t)-1 || !cg->server[0] ||
- !cg->user[0] || !cg->ipp_port)
+ if (cc->any_root < 0)
+ cc->any_root = 1;
+
+ if (cc->encryption == (http_encryption_t)-1)
+ cc->encryption = HTTP_ENCRYPTION_IF_REQUESTED;
+
+ if (cc->expired_certs < 0)
+ cc->expired_certs = 1;
+
+#ifdef HAVE_GSSAPI
+ if (!cc->gss_service_name[0])
+ cups_set_gss_service_name(cc, CUPS_DEFAULT_GSSSERVICENAME);
+#endif /* HAVE_GSSAPI */
+
+ if (!cc->server_name[0])
{
+#ifdef CUPS_DEFAULT_DOMAINSOCKET
/*
- * Look for CUPS_SERVERROOT/client.conf...
+ * If we are compiled with domain socket support, only use the
+ * domain socket if it exists and has the right permissions...
*/
- snprintf(filename, sizeof(filename), "%s/client.conf",
- cg->cups_serverroot);
- fp = cupsFileOpen(filename, "r");
+ struct stat sockinfo; /* Domain socket information */
+
+ if (!stat(CUPS_DEFAULT_DOMAINSOCKET, &sockinfo) &&
+ (sockinfo.st_mode & S_IRWXO) == S_IRWXO)
+ cups_set_server_name(cc, CUPS_DEFAULT_DOMAINSOCKET);
+ else
+#endif /* CUPS_DEFAULT_DOMAINSOCKET */
+ cups_set_server_name(cc, "localhost");
+ }
+ if (!cc->user[0])
+ {
+#ifdef WIN32
/*
- * Read the configuration file and apply any environment variables; both
- * functions handle NULL cups_file_t pointers...
+ * Get the current user name from the OS...
*/
- cups_read_client_conf(fp, cg, cups_encryption, cups_server, cups_user,
-#ifdef HAVE_GSSAPI
- cups_gssservicename,
-#endif /* HAVE_GSSAPI */
- cups_anyroot, cups_expiredcerts, cups_validatecerts, 1);
- cupsFileClose(fp);
+ DWORD size; /* Size of string */
+ size = sizeof(cc->user);
+ if (!GetUserName(cc->user, &size))
+#else
/*
- * Then user defaults, if it is safe to do so...
+ * Try the USER environment variable as the default username...
*/
-# ifdef HAVE_GETEUID
- if ((geteuid() == getuid() || !getuid()) && getegid() == getgid() && (home = getenv("HOME")) != NULL)
-# elif !defined(WIN32)
- if (getuid() && (home = getenv("HOME")) != NULL)
-# else
- if ((home = getenv("HOME")) != NULL)
-# endif /* HAVE_GETEUID */
+ const char *envuser = getenv("USER");
+ /* Default username */
+ struct passwd *pw = NULL; /* Account information */
+
+ if (envuser)
{
/*
- * Look for ~/.cups/client.conf...
+ * Validate USER matches the current UID, otherwise don't allow it to
+ * override things... This makes sure that printing after doing su
+ * or sudo records the correct username.
*/
- snprintf(filename, sizeof(filename), "%s/.cups/client.conf", home);
- fp = cupsFileOpen(filename, "r");
+ if ((pw = getpwnam(envuser)) != NULL && pw->pw_uid != getuid())
+ pw = NULL;
+ }
+
+ if (!pw)
+ pw = getpwuid(getuid());
+ if (pw)
+ strlcpy(cc->user, pw->pw_name, sizeof(cc->user));
+ else
+#endif /* WIN32 */
+ {
/*
- * Read the configuration file and apply any environment variables; both
- * functions handle NULL cups_file_t pointers...
+ * Use the default "unknown" user name...
*/
- cups_read_client_conf(fp, cg, cups_encryption, cups_server, cups_user,
-#ifdef HAVE_GSSAPI
- cups_gssservicename,
-#endif /* HAVE_GSSAPI */
- cups_anyroot, cups_expiredcerts, cups_validatecerts, 0);
- cupsFileClose(fp);
+ strlcpy(cc->user, "unknown", sizeof(cc->user));
}
}
+
+ if (cc->validate_certs < 0)
+ cc->validate_certs = 0;
+}
+
+
+/*
+ * 'cups_init_client_conf()' - Initialize client.conf values.
+ */
+
+static void
+cups_init_client_conf(
+ _cups_client_conf_t *cc) /* I - client.conf values */
+{
+ /*
+ * Clear all values to "not set"...
+ */
+
+ memset(cc, 0, sizeof(_cups_client_conf_t));
+
+ cc->encryption = (http_encryption_t)-1;
+ cc->any_root = -1;
+ cc->expired_certs = -1;
+ cc->validate_certs = -1;
}
static void
cups_read_client_conf(
- cups_file_t *fp, /* I - File to read */
- _cups_globals_t *cg, /* I - Global data */
- const char *cups_encryption, /* I - CUPS_ENCRYPTION env var */
- const char *cups_server, /* I - CUPS_SERVER env var */
- const char *cups_user, /* I - CUPS_USER env var */
-#ifdef HAVE_GSSAPI
- const char *cups_gssservicename,
- /* I - CUPS_GSSSERVICENAME env var */
-#endif /* HAVE_GSSAPI */
- const char *cups_anyroot, /* I - CUPS_ANYROOT env var */
- const char *cups_expiredcerts, /* I - CUPS_EXPIREDCERTS env var */
- const char *cups_validatecerts,/* I - CUPS_VALIDATECERTS env var */
- int ssl_options) /* I - Allow setting of SSLOptions? */
+ cups_file_t *fp, /* I - File to read */
+ _cups_client_conf_t *cc) /* I - client.conf values */
{
int linenum; /* Current line number */
char line[1024], /* Line from file */
- *value, /* Pointer into line */
- encryption[1024], /* Encryption value */
-#ifndef __APPLE__
- server_name[1024], /* ServerName value */
-#endif /* !__APPLE__ */
- user[256], /* User value */
- any_root[1024], /* AllowAnyRoot value */
- expired_certs[1024], /* AllowExpiredCerts value */
- validate_certs[1024]; /* ValidateCerts value */
-#ifdef HAVE_GSSAPI
- char gss_service_name[32]; /* GSSServiceName value */
-#endif /* HAVE_GSSAPI */
+ *value; /* Pointer into line */
/*
linenum = 0;
while (cupsFileGetConf(fp, line, sizeof(line), &value, &linenum))
{
- if (!cups_encryption && cg->encryption == (http_encryption_t)-1 &&
- !_cups_strcasecmp(line, "Encryption") && value)
- {
- strlcpy(encryption, value, sizeof(encryption));
- cups_encryption = encryption;
- }
+ if (!_cups_strcasecmp(line, "Encryption") && value)
+ cups_set_encryption(cc, value);
#ifndef __APPLE__
/*
- * The Server directive is not supported on OS X due to app sandboxing
- * restrictions, i.e. not all apps request network access.
+ * The ServerName directive is not supported on OS X due to app
+ * sandboxing restrictions, i.e. not all apps request network access.
*/
- else if (!cups_server && (!cg->server[0] || !cg->ipp_port) &&
- !_cups_strcasecmp(line, "ServerName") && value)
- {
- strlcpy(server_name, value, sizeof(server_name));
- cups_server = server_name;
- }
+ else if (!_cups_strcasecmp(line, "ServerName") && value)
+ cups_set_server_name(cc, value);
#endif /* !__APPLE__ */
- else if (!cups_user && !_cups_strcasecmp(line, "User") && value)
- {
- strlcpy(user, value, sizeof(user));
- cups_user = user;
- }
- else if (!cups_anyroot && !_cups_strcasecmp(line, "AllowAnyRoot") && value)
- {
- strlcpy(any_root, value, sizeof(any_root));
- cups_anyroot = any_root;
- }
- else if (!cups_expiredcerts && !_cups_strcasecmp(line, "AllowExpiredCerts") &&
+ else if (!_cups_strcasecmp(line, "User") && value)
+ cups_set_user(cc, value);
+ else if (!_cups_strcasecmp(line, "AllowAnyRoot") && value)
+ cc->any_root = cups_boolean_value(value);
+ else if (!_cups_strcasecmp(line, "AllowExpiredCerts") &&
value)
- {
- strlcpy(expired_certs, value, sizeof(expired_certs));
- cups_expiredcerts = expired_certs;
- }
- else if (!cups_validatecerts && !_cups_strcasecmp(line, "ValidateCerts") && value)
- {
- strlcpy(validate_certs, value, sizeof(validate_certs));
- cups_validatecerts = validate_certs;
- }
+ cc->expired_certs = cups_boolean_value(value);
+ else if (!_cups_strcasecmp(line, "ValidateCerts") && value)
+ cc->validate_certs = cups_boolean_value(value);
#ifdef HAVE_GSSAPI
- else if (!cups_gssservicename && !_cups_strcasecmp(line, "GSSServiceName") &&
- value)
- {
- strlcpy(gss_service_name, value, sizeof(gss_service_name));
- cups_gssservicename = gss_service_name;
- }
+ else if (!_cups_strcasecmp(line, "GSSServiceName") && value)
+ cups_set_gss_service_name(cc, value);
#endif /* HAVE_GSSAPI */
- else if (ssl_options && !_cups_strcasecmp(line, "SSLOptions") && value)
- {
- /*
- * SSLOptions [AllowRC4] [AllowSSL3] [None]
- */
+#ifdef HAVE_SSL
+ else if (!_cups_strcasecmp(line, "SSLOptions") && value)
+ cups_set_ssl_options(cc, value);
+#endif /* HAVE_SSL */
+ }
+}
- int options = 0; /* SSL/TLS options */
- char *start, /* Start of option */
- *end; /* End of option */
- for (start = value; *start; start = end)
- {
- /*
- * Find end of keyword...
- */
-
- end = start;
- while (*end && !_cups_isspace(*end))
- end ++;
-
- if (*end)
- *end++ = '\0';
-
- /*
- * Compare...
- */
-
- if (!_cups_strcasecmp(start, "AllowRC4"))
- options |= _HTTP_TLS_ALLOW_RC4;
- else if (!_cups_strcasecmp(start, "AllowSSL3"))
- options |= _HTTP_TLS_ALLOW_SSL3;
- else if (!_cups_strcasecmp(start, "None"))
- options = 0;
- }
+/*
+ * 'cups_set_encryption()' - Set the Encryption value.
+ */
- _httpTLSSetOptions(options);
- }
- }
+static void
+cups_set_encryption(
+ _cups_client_conf_t *cc, /* I - client.conf values */
+ const char *value) /* I - Value */
+{
+ if (!_cups_strcasecmp(value, "never"))
+ cc->encryption = HTTP_ENCRYPTION_NEVER;
+ else if (!_cups_strcasecmp(value, "always"))
+ cc->encryption = HTTP_ENCRYPTION_ALWAYS;
+ else if (!_cups_strcasecmp(value, "required"))
+ cc->encryption = HTTP_ENCRYPTION_REQUIRED;
+ else
+ cc->encryption = HTTP_ENCRYPTION_IF_REQUESTED;
+}
- /*
- * Set values...
- */
- if (cg->encryption == (http_encryption_t)-1 && cups_encryption)
- {
- if (!_cups_strcasecmp(cups_encryption, "never"))
- cg->encryption = HTTP_ENCRYPTION_NEVER;
- else if (!_cups_strcasecmp(cups_encryption, "always"))
- cg->encryption = HTTP_ENCRYPTION_ALWAYS;
- else if (!_cups_strcasecmp(cups_encryption, "required"))
- cg->encryption = HTTP_ENCRYPTION_REQUIRED;
- else
- cg->encryption = HTTP_ENCRYPTION_IF_REQUESTED;
- }
+/*
+ * 'cups_set_gss_service_name()' - Set the GSSServiceName value.
+ */
- if ((!cg->server[0] || !cg->ipp_port) && cups_server)
- cupsSetServer(cups_server);
+#ifdef HAVE_GSSAPI
+static void
+cups_set_gss_service_name(
+ _cups_client_conf_t *cc, /* I - client.conf values */
+ const char *value) /* I - Value */
+{
+ strlcpy(cc->gss_service_name, value, sizeof(cc->gss_service_name));
+}
+#endif /* HAVE_GSSAPI */
- if (!cg->server[0])
- {
-#ifdef CUPS_DEFAULT_DOMAINSOCKET
- /*
- * If we are compiled with domain socket support, only use the
- * domain socket if it exists and has the right permissions...
- */
- struct stat sockinfo; /* Domain socket information */
+/*
+ * 'cups_set_server_name()' - Set the ServerName value.
+ */
- if (!stat(CUPS_DEFAULT_DOMAINSOCKET, &sockinfo) &&
- (sockinfo.st_mode & S_IRWXO) == S_IRWXO)
- cups_server = CUPS_DEFAULT_DOMAINSOCKET;
- else
-#endif /* CUPS_DEFAULT_DOMAINSOCKET */
- cups_server = "localhost";
+static void
+cups_set_server_name(
+ _cups_client_conf_t *cc, /* I - client.conf values */
+ const char *value) /* I - Value */
+{
+ strlcpy(cc->server_name, value, sizeof(cc->server_name));
+}
- cupsSetServer(cups_server);
- }
- if (!cg->ipp_port)
- {
- const char *ipp_port; /* IPP_PORT environment variable */
+/*
+ * 'cups_set_ssl_options()' - Set the SSLOptions value.
+ */
- if ((ipp_port = getenv("IPP_PORT")) != NULL)
- {
- if ((cg->ipp_port = atoi(ipp_port)) <= 0)
- cg->ipp_port = CUPS_DEFAULT_IPP_PORT;
- }
- else
- cg->ipp_port = CUPS_DEFAULT_IPP_PORT;
- }
+#ifdef HAVE_SSL
+static void
+cups_set_ssl_options(
+ _cups_client_conf_t *cc, /* I - client.conf values */
+ const char *value) /* I - Value */
+{
+ /*
+ * SSLOptions [AllowRC4] [AllowSSL3] [None]
+ */
- if (!cg->user[0])
- {
- if (cups_user)
- strlcpy(cg->user, cups_user, sizeof(cg->user));
- else
- {
-#ifdef WIN32
- /*
- * Get the current user name from the OS...
- */
+ int options = 0; /* SSL/TLS options */
+ char temp[256], /* Copy of value */
+ *start, /* Start of option */
+ *end; /* End of option */
- DWORD size; /* Size of string */
- size = sizeof(cg->user);
- if (!GetUserName(cg->user, &size))
-#else
- /*
- * Try the USER environment variable as the default username...
- */
+ strlcpy(temp, value, sizeof(temp));
- const char *envuser = getenv("USER");
- /* Default username */
- struct passwd *pw = NULL; /* Account information */
+ for (start = temp; *start; start = end)
+ {
+ /*
+ * Find end of keyword...
+ */
- if (envuser)
- {
- /*
- * Validate USER matches the current UID, otherwise don't allow it to
- * override things... This makes sure that printing after doing su or
- * sudo records the correct username.
- */
-
- if ((pw = getpwnam(envuser)) != NULL && pw->pw_uid != getuid())
- pw = NULL;
- }
+ end = start;
+ while (*end && !_cups_isspace(*end))
+ end ++;
- if (!pw)
- pw = getpwuid(getuid());
+ if (*end)
+ *end++ = '\0';
- if (pw)
- strlcpy(cg->user, pw->pw_name, sizeof(cg->user));
- else
-#endif /* WIN32 */
- {
- /*
- * Use the default "unknown" user name...
- */
+ /*
+ * Compare...
+ */
- strlcpy(cg->user, "unknown", sizeof(cg->user));
- }
- }
+ if (!_cups_strcasecmp(start, "AllowRC4"))
+ options |= _HTTP_TLS_ALLOW_RC4;
+ else if (!_cups_strcasecmp(start, "AllowSSL3"))
+ options |= _HTTP_TLS_ALLOW_SSL3;
+ else if (!_cups_strcasecmp(start, "None"))
+ options = 0;
}
-#ifdef HAVE_GSSAPI
- if (!cups_gssservicename)
- cups_gssservicename = CUPS_DEFAULT_GSSSERVICENAME;
-
- strlcpy(cg->gss_service_name, cups_gssservicename,
- sizeof(cg->gss_service_name));
-#endif /* HAVE_GSSAPI */
+ cc->ssl_options = options;
+}
+#endif /* HAVE_SSL */
- if (cups_anyroot)
- cg->any_root = !_cups_strcasecmp(cups_anyroot, "yes") ||
- !_cups_strcasecmp(cups_anyroot, "on") ||
- !_cups_strcasecmp(cups_anyroot, "true");
- if (cups_expiredcerts)
- cg->expired_certs = !_cups_strcasecmp(cups_expiredcerts, "yes") ||
- !_cups_strcasecmp(cups_expiredcerts, "on") ||
- !_cups_strcasecmp(cups_expiredcerts, "true");
+/*
+ * 'cups_set_user()' - Set the User value.
+ */
- if (cups_validatecerts)
- cg->validate_certs = !_cups_strcasecmp(cups_validatecerts, "yes") ||
- !_cups_strcasecmp(cups_validatecerts, "on") ||
- !_cups_strcasecmp(cups_validatecerts, "true");
+static void
+cups_set_user(
+ _cups_client_conf_t *cc, /* I - client.conf values */
+ const char *value) /* I - Value */
+{
+ strlcpy(cc->user, value, sizeof(cc->user));
}
/*
- * End of "$Id: usersys.c 12215 2014-10-20 18:24:56Z msweet $".
+ * End of "$Id: usersys.c 12481 2015-02-03 12:45:14Z msweet $".
*/
/*
- * "$Id: util.c 12220 2014-10-20 22:03:01Z msweet $"
+ * "$Id: util.c 12449 2015-01-29 20:32:16Z msweet $"
*
* Printing utilities for CUPS.
*
- * Copyright 2007-2014 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2006 by Easy Software Products.
*
* These coded instructions, statements, and computer programs are the
ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_URI, "printer-uri", NULL, uri);
- ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_NAME, "requested-attributes", sizeof(requested_attrs) / sizeof(requested_attrs[0]), NULL, requested_attrs);
+ ippAddStrings(request, IPP_TAG_OPERATION, IPP_TAG_KEYWORD, "requested-attributes", sizeof(requested_attrs) / sizeof(requested_attrs[0]), NULL, requested_attrs);
/*
* Do the request and get back a response...
/*
- * End of "$Id: util.c 12220 2014-10-20 22:03:01Z msweet $".
+ * End of "$Id: util.c 12449 2015-01-29 20:32:16Z msweet $".
*/
/*
- * "$Id: versioning.h 11232 2013-08-12 19:33:47Z msweet $"
+ * "$Id: versioning.h 12419 2015-01-22 15:51:20Z msweet $"
*
* API versioning definitions for CUPS.
*
# ifndef AVAILABLE_MAC_OS_X_VERSION_10_9_AND_LATER
# define AVAILABLE_MAC_OS_X_VERSION_10_9_AND_LATER __attribute__((unavailable))
# endif /* !AVAILABLE_MAC_OS_X_VERSION_10_9_AND_LATER */
+# ifndef AVAILABLE_MAC_OS_X_VERSION_10_10_AND_LATER
+# define AVAILABLE_MAC_OS_X_VERSION_10_10_AND_LATER __attribute__((unavailable))
+# endif /* !AVAILABLE_MAC_OS_X_VERSION_10_10_AND_LATER */
# define _CUPS_API_1_1_19 AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER
# define _CUPS_API_1_1_20 AVAILABLE_MAC_OS_X_VERSION_10_4_AND_LATER
# define _CUPS_API_1_1_21 AVAILABLE_MAC_OS_X_VERSION_10_4_AND_LATER
# define _CUPS_API_1_5 AVAILABLE_MAC_OS_X_VERSION_10_7_AND_LATER
# define _CUPS_API_1_6 AVAILABLE_MAC_OS_X_VERSION_10_8_AND_LATER
# define _CUPS_API_1_7 AVAILABLE_MAC_OS_X_VERSION_10_9_AND_LATER
-# define _CUPS_API_2_0
+# define _CUPS_API_2_0 AVAILABLE_MAC_OS_X_VERSION_10_10_AND_LATER
# else
# define _CUPS_API_1_1_19
# define _CUPS_API_1_1_20
#endif /* !_CUPS_VERSIONING_H_ */
/*
- * End of "$Id: versioning.h 11232 2013-08-12 19:33:47Z msweet $".
+ * End of "$Id: versioning.h 12419 2015-01-22 15:51:20Z msweet $".
*/
</div>
</div>
</div>
- <div class="footer">CUPS y el logo de CUPS son marcas registradas de <a href="http://www.apple.com">Apple Inc.</a> Derechos de autor © 2007-2014 Apple Inc. Todos los derechos reservados.</div>
+ <div class="footer">CUPS y el logo de CUPS son marcas registradas de <a href="http://www.apple.com">Apple Inc.</a> Derechos de autor © 2007-2015 Apple Inc. Todos los derechos reservados.</div>
</body>
</html>
The following directives are understood by
<a href="man-cupsd.html?TOPIC=Man+Pages"><b>cupsd</b>(8):</a>
<dl class="man">
-<dt><b>AccessLog</b>
+<dt><a name="AccessLog"></a><b>AccessLog</b>
<dd style="margin-left: 5.0em"><dt><b>AccessLog </b><i>filename</i>
<dd style="margin-left: 5.0em"><dt><b>AccessLog syslog</b>
<dd style="margin-left: 5.0em">Defines the access log filename.
</pre>
The default is "/var/log/cups/access_log".
-<dt><b>ConfigFilePerm </b><i>mode</i>
+<dt><a name="ConfigFilePerm"></a><b>ConfigFilePerm </b><i>mode</i>
<dd style="margin-left: 5.0em">Specifies the permissions for all configuration files that the scheduler writes.
The default is "0644" on OS X and "0640" on all other operating systems.
</dl>
This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system.
There is no way to disable this security feature.
<dl class="man">
-<dt><b>DataDir </b><i>path</i>
+<dt><a name="DataDir"></a><b>DataDir </b><i>path</i>
<dd style="margin-left: 5.0em">Specifies the directory where data files can be found.
The default is usually "/usr/share/cups".
-<dt><b>DocumentRoot </b><i>directory</i>
+<dt><a name="DocumentRoot"></a><b>DocumentRoot </b><i>directory</i>
<dd style="margin-left: 5.0em">Specifies the root directory for the CUPS web interface content.
The default is usually "/usr/share/doc/cups".
-<dt><b>ErrorLog</b>
+<dt><a name="ErrorLog"></a><b>ErrorLog</b>
<dd style="margin-left: 5.0em"><dt><b>ErrorLog </b><i>filename</i>
<dd style="margin-left: 5.0em"><dt><b>ErrorLog syslog</b>
<dd style="margin-left: 5.0em">Defines the error log filename.
</pre>
The default is "/var/log/cups/error_log".
-<dt><b>FatalErrors none</b>
+<dt><a name="FatalErrors"></a><b>FatalErrors none</b>
<dd style="margin-left: 5.0em"><dt><b>FatalErrors all </b><i>-kind </i>[ ... <i>-kind </i>]
<dd style="margin-left: 5.0em"><dt><b>FatalErrors </b><i>kind </i>[ ... <i>kind </i>]
<dd style="margin-left: 5.0em">Specifies which errors are fatal, causing the scheduler to exit.
<dt><b>permissions</b>
<dd style="margin-left: 5.0em">Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions.
</div>
-<dt><b>FileDevice Yes</b>
+<dt><a name="FileDevice"></a><b>FileDevice Yes</b>
<dd style="margin-left: 5.0em"><dt><b>FileDevice No</b>
<dd style="margin-left: 5.0em">Specifies whether the file pseudo-device can be used for new printer queues.
The URI "file:///dev/null" is always allowed.
-<dt><b>Group </b><i>group-name-or-number</i>
+<dt><a name="Group"></a><b>Group </b><i>group-name-or-number</i>
<dd style="margin-left: 5.0em">Specifies the group name or ID that will be used when executing external programs.
The default group is operating system specific but is usually "lp" or "nobody".
-<dt><b>LogFilePerm </b><i>mode</i>
+<dt><a name="LogFilePerm"></a><b>LogFilePerm </b><i>mode</i>
<dd style="margin-left: 5.0em">Specifies the permissions of all log files that the scheduler writes.
The default is "0644".
-<dt><b>PageLog </b>[ <i>filename</i> ]
+<dt><a name="PageLog"></a><b>PageLog </b>[ <i>filename</i> ]
<dd style="margin-left: 5.0em"><dt><b>PageLog syslog</b>
<dd style="margin-left: 5.0em">Defines the page log filename.
The value "syslog" causes log entries to be sent to the system log daemon.
</pre>
The default is "/var/log/cups/page_log".
-<dt><b>RemoteRoot </b><i>username</i>
+<dt><a name="RemoteRoot"></a><b>RemoteRoot </b><i>username</i>
<dd style="margin-left: 5.0em">Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user.
The default is "remroot".
-<dt><b>RequestRoot </b><i>directory</i>
+<dt><a name="RequestRoot"></a><b>RequestRoot </b><i>directory</i>
<dd style="margin-left: 5.0em">Specifies the directory that contains print jobs and other HTTP request data.
The default is "/var/spool/cups".
-<dt><b>Sandboxing off</b>
+<dt><a name="Sandboxing"></a><b>Sandboxing off</b>
<dd style="margin-left: 5.0em"><dt><b>Sandboxing relaxed</b>
<dd style="margin-left: 5.0em"><dt><b>Sandboxing strict</b>
<dd style="margin-left: 5.0em">Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler.
The default is "strict".
This directive is currently only used/supported on OS X.
-<dt><b>ServerBin </b><i>directory</i>
+<dt><a name="ServerBin"></a><b>ServerBin </b><i>directory</i>
<dd style="margin-left: 5.0em">Specifies the directory containing the backends, CGI programs, filters, helper programs, notifiers, and port monitors.
The default is "/usr/lib/cups" or "/usr/libexec/cups" depending on the platform.
-<dt><b>ServerKeychain </b><i>path</i>
+<dt><a name="ServerKeychain"></a><b>ServerKeychain </b><i>path</i>
<dd style="margin-left: 5.0em">Specifies the location of TLS certificates and private keys.
The default is "/Library/Keychains/System.keychain" on OS X and "/etc/cups/ssl" on all other operating systems.
-<dt><b>ServerRoot </b><i>directory</i>
+OS X uses its keychain database to store certificates and keys while other platforms use separate files in the specified directory, *.crt for PEM-encoded certificates and *.key for PEM-encoded private keys.
+<dt><a name="ServerRoot"></a><b>ServerRoot </b><i>directory</i>
<dd style="margin-left: 5.0em">Specifies the directory containing the server configuration files.
The default is "/etc/cups".
-<dt><b>SyncOnClose Yes</b>
+<dt><a name="SyncOnClose"></a><b>SyncOnClose Yes</b>
<dd style="margin-left: 5.0em"><dt><b>SyncOnClose No</b>
<dd style="margin-left: 5.0em">Specifies whether the scheduler calls
<b>fsync</b>(2)
after writing configuration or state files.
The default is "No".
-<dt><b>SystemGroup </b><i>group-name </i>[ ... <i>group-name</i> ]
+<dt><a name="SystemGroup"></a><b>SystemGroup </b><i>group-name </i>[ ... <i>group-name</i> ]
<dd style="margin-left: 5.0em">Specifies the group(s) to use for <i>@SYSTEM</i> group authentication.
The default contains "admin", "lpadmin", "root", "sys", and/or "system".
-<dt><b>TempDir </b><i>directory</i>
+<dt><a name="TempDir"></a><b>TempDir </b><i>directory</i>
<dd style="margin-left: 5.0em">Specifies the directory where temporary files are stored.
The default is "/var/spool/cups/tmp".
-<dt><b>User </b><i>username</i>
+<dt><a name="User"></a><b>User </b><i>username</i>
<dd style="margin-left: 5.0em">Specifies the user name or ID that is used when running external programs.
The default is "lp".
</dl>
<a href="man-subscriptions.conf.html?TOPIC=Man+Pages"><b>subscriptions.conf</b>(5),</a>
CUPS Online Help (<a href="http://localhost:631/help">http://localhost:631/help</a>)
<h2 class="title"><a name="COPYRIGHT">Copyright</a></h2>
-Copyright © 2007-2014 by Apple Inc.
+Copyright © 2007-2015 by Apple Inc.
</body>
</html>
The following top-level directives are understood by
<a href="man-cupsd.html?TOPIC=Man+Pages"><b>cupsd</b>(8):</a>
<dl class="man">
-<dt><b>AccessLogLevel config</b>
+<dt><a name="AccessLogLevel"></a><b>AccessLogLevel config</b>
<dd style="margin-left: 5.0em"><dt><b>AccessLogLevel actions</b>
<dd style="margin-left: 5.0em"><dt><b>AccessLogLevel all</b>
<dd style="margin-left: 5.0em">Specifies the logging level for the AccessLog file.
The "actions" level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for "config".
The "all" level logs all requests.
The default access log level is "actions".
-<dt><b>AutoPurgeJobs Yes</b>
+<dt><a name="AutoPurgeJobs"></a><b>AutoPurgeJobs Yes</b>
<dd style="margin-left: 5.0em"><dt><b>AutoPurgeJobs No</b>
<dd style="margin-left: 5.0em"><br>
Specifies whether to purge job history data automatically when it is no longer required for quotas.
The default is "No".
-<dt><b>BrowseLocalProtocols all</b>
+<dt><a name="BrowseLocalProtocols"></a><b>BrowseLocalProtocols all</b>
<dd style="margin-left: 5.0em"><dt><b>BrowseLocalProtocols dnssd</b>
<dd style="margin-left: 5.0em"><dt><b>BrowseLocalProtocols none</b>
<dd style="margin-left: 5.0em">Specifies which protocols to use for local printer sharing.
The default is "dnssd" on systems that support Bonjour and "none" otherwise.
-<dt><b>BrowseWebIF Yes</b>
+<dt><a name="BrowseWebIF"></a><b>BrowseWebIF Yes</b>
<dd style="margin-left: 5.0em"><dt><b>BrowseWebIF No</b>
<dd style="margin-left: 5.0em"><br>
Specifies whether the CUPS web interface is advertised.
The default is "No".
-<dt><b>Browsing Yes</b>
+<dt><a name="Browsing"></a><b>Browsing Yes</b>
<dd style="margin-left: 5.0em"><dt><b>Browsing No</b>
<dd style="margin-left: 5.0em"><br>
Specifies whether shared printers are advertised.
The default is "No".
-<dt><b>Classification </b><i>banner</i>
+<dt><a name="Classification"></a><b>Classification </b><i>banner</i>
<dd style="margin-left: 5.0em"><br>
Specifies the security classification of the server.
Any valid banner name can be used, including "classified", "confidential", "secret", "topsecret", and "unclassified", or the banner can be omitted to disable secure printing functions.
The default is no classification banner.
-<dt><b>ClassifyOverride Yes</b>
+<dt><a name="ClassifyOverride"></a><b>ClassifyOverride Yes</b>
<dd style="margin-left: 5.0em"><dt><b>ClassifyOverride No</b>
<dd style="margin-left: 5.0em"><br>
Specifies whether users may override the classification (cover page) of individual print jobs using the "job-sheets" option.
The default is "No".
-<dt><b>DefaultAuthType Basic</b>
+<dt><a name="DefaultAuthType"></a><b>DefaultAuthType Basic</b>
<dd style="margin-left: 5.0em"><dt><b>DefaultAuthType Negotiate</b>
<dd style="margin-left: 5.0em"><br>
Specifies the default type of authentication to use.
The default is "Basic".
-<dt><b>DefaultEncryption Never</b>
+<dt><a name="DefaultEncryption"></a><b>DefaultEncryption Never</b>
<dd style="margin-left: 5.0em"><dt><b>DefaultEncryption IfRequested</b>
<dd style="margin-left: 5.0em"><dt><b>DefaultEncryption Required</b>
<dd style="margin-left: 5.0em">Specifies whether encryption will be used for authenticated requests.
The default is "Required".
-<dt><b>DefaultLanguage </b><i>locale</i>
+<dt><a name="DefaultLanguage"></a><b>DefaultLanguage </b><i>locale</i>
<dd style="margin-left: 5.0em">Specifies the default language to use for text and web content.
The default is "en".
-<dt><b>DefaultPaperSize Auto</b>
+<dt><a name="DefaultPaperSize"></a><b>DefaultPaperSize Auto</b>
<dd style="margin-left: 5.0em"><dt><b>DefaultPaperSize None</b>
<dd style="margin-left: 5.0em"><dt><b>DefaultPaperSize </b><i>sizename</i>
<dd style="margin-left: 5.0em">Specifies the default paper size for new print queues. "Auto" uses a locale-specific default, while "None" specifies there is no default paper size.
Specific size names are typically "Letter" or "A4".
The default is "Auto".
-<dt><b>DefaultPolicy </b><i>policy-name</i>
+<dt><a name="DefaultPolicy"></a><b>DefaultPolicy </b><i>policy-name</i>
<dd style="margin-left: 5.0em">Specifies the default access policy to use.
The default access policy is "default".
-<dt><b>DefaultShared Yes</b>
+<dt><a name="DefaultShared"></a><b>DefaultShared Yes</b>
<dd style="margin-left: 5.0em"><dt><b>DefaultShared No</b>
<dd style="margin-left: 5.0em">Specifies whether local printers are shared by default.
The default is "Yes".
-<dt><b>DirtyCleanInterval </b><i>seconds</i>
+<dt><a name="DirtyCleanInterval"></a><b>DirtyCleanInterval </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies the delay for updating of configuration and state files.
A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds.
The default value is "30".
-<dt><b>ErrorPolicy abort-job</b>
+<dt><a name="ErrorPolicy"></a><b>ErrorPolicy abort-job</b>
<dd style="margin-left: 5.0em">Specifies that a failed print job should be aborted (discarded) unless otherwise specified for the printer.
<dt><b>ErrorPolicy retry-job</b>
<dd style="margin-left: 5.0em">Specifies that a failed print job should be retried at a later time unless otherwise specified for the printer.
<dd style="margin-left: 5.0em">Specifies that a failed print job should be retried immediately unless otherwise specified for the printer.
<dt><b>ErrorPolicy stop-printer</b>
<dd style="margin-left: 5.0em">Specifies that a failed print job should stop the printer unless otherwise specified for the printer. The 'stop-printer' error policy is the default.
-<dt><b>FilterLimit </b><i>limit</i>
+<dt><a name="FilterLimit"></a><b>FilterLimit </b><i>limit</i>
<dd style="margin-left: 5.0em">Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems.
A limit of 0 disables filter limiting.
An average print to a non-PostScript printer needs a filter limit of about 200.
A PostScript printer needs about half that (100).
Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time.
The default limit is "0".
-<dt><b>FilterNice </b><i>nice-value</i>
+<dt><a name="FilterNice"></a><b>FilterNice </b><i>nice-value</i>
<dd style="margin-left: 5.0em">Specifies the scheduling priority (
<b>nice</b>(8)
value) of filters that are run to print a job.
The nice value ranges from 0, the highest priority, to 19, the lowest priority.
The default is 0.
-<dt><b>GSSServiceName </b><i>name</i>
+<dt><a name="GSSServiceName"></a><b>GSSServiceName </b><i>name</i>
<dd style="margin-left: 5.0em">Specifies the service name when using Kerberos authentication.
The default service name is "http."
<dt><b>HostNameLookups On</b>
-<dd style="margin-left: 5.0em"><dt><b>HostNameLookups Off</b>
+<dd style="margin-left: 5.0em"><dt><a name="HostNameLookups"></a><b>HostNameLookups Off</b>
<dd style="margin-left: 5.0em"><dt><b>HostNameLookups Double</b>
<dd style="margin-left: 5.0em">Specifies whether to do reverse lookups on connecting clients.
The "Double" setting causes
Double lookups also prevent clients with unregistered addresses from connecting to your server.
The default is "Off" to avoid the potential server performance problems with hostname lookups.
Only set this option to "On" or "Double" if absolutely required.
-<dt><b>JobKillDelay </b><i>seconds</i>
+<dt><a name="JobKillDelay"></a><b>JobKillDelay </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job.
The default is "30".
-<dt><b>JobRetryInterval </b><i>seconds</i>
+<dt><a name="JobRetryInterval"></a><b>JobRetryInterval </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies the interval between retries of jobs in seconds.
This is typically used for fax queues but can also be used with normal print queues whose error policy is "retry-job" or "retry-current-job".
The default is "30".
-<dt><b>JobRetryLimit </b><i>count</i>
+<dt><a name="JobRetryLimit"></a><b>JobRetryLimit </b><i>count</i>
<dd style="margin-left: 5.0em">Specifies the number of retries that are done for jobs.
This is typically used for fax queues but can also be used with normal print queues whose error policy is "retry-job" or "retry-current-job".
The default is "5".
-<dt><b>KeepAlive Yes</b>
+<dt><a name="KeepAlive"></a><b>KeepAlive Yes</b>
<dd style="margin-left: 5.0em"><dt><b>KeepAlive No</b>
<dd style="margin-left: 5.0em">Specifies whether to support HTTP keep-alive connections.
The default is "Yes".
-<dt><b>KeepAliveTimeout </b><i>seconds</i>
+<dt><a name="KeepAliveTimeout"></a><b>KeepAliveTimeout </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies how long an idle client connection remains open.
The default is "30".
-<dt><b><Limit </b><i>operation </i>...<b>> </b>... <b></Limit></b>
+<dt><a name="LimitIPP"></a><b><Limit </b><i>operation </i>...<b>> </b>... <b></Limit></b>
<dd style="margin-left: 5.0em">Specifies the IPP operations that are being limited inside a Policy section. IPP operation names are listed below in the section "IPP OPERATIONS".
-<dt><b><Limit </b><i>method </i>...<b>> </b>... <b></Limit></b>
-<dd style="margin-left: 5.0em"><dt><b><LimitExcept </b><i>method </i>...<b>> </b>... <b></LimitExcept></b>
+<dt><a name="Limit"></a><b><Limit </b><i>method </i>...<b>> </b>... <b></Limit></b>
+<dd style="margin-left: 5.0em"><dt><a name="LimitExcept"></a><b><LimitExcept </b><i>method </i>...<b>> </b>... <b></LimitExcept></b>
<dd style="margin-left: 5.0em">Specifies the HTTP methods that are being limited inside a Location section. HTTP method names are listed below in the section "HTTP METHODS".
-<dt><b>LimitRequestBody </b><i>size</i>
+<dt><a name="LimitRequestBody"></a><b>LimitRequestBody </b><i>size</i>
<dd style="margin-left: 5.0em">Specifies the maximum size of print files, IPP requests, and HTML form data.
The default is "0" which disables the limit check.
-<dt><b>Listen </b><i>ipv4-address</i><b>:</b><i>port</i>
+<dt><a name="Listen"></a><b>Listen </b><i>ipv4-address</i><b>:</b><i>port</i>
<dd style="margin-left: 5.0em"><dt><b>Listen [</b><i>ipv6-address</i><b>]:</b><i>port</i>
<dd style="margin-left: 5.0em"><dt><b>Listen *:</b><i>port</i>
<dd style="margin-left: 5.0em"><dt><b>Listen </b><i>/path/to/domain/socket</i>
<dd style="margin-left: 5.0em">Listens to the specified address and port or domain socket path for connections.
Multiple Listen directives can be provided to listen on multiple addresses.
The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks.
-<dt><b>ListenBackLog </b><i>number</i>
+<dt><a name="ListenBackLog"></a><b>ListenBackLog </b><i>number</i>
<dd style="margin-left: 5.0em">Specifies the number of pending connections that will be allowed.
This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections.
When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones.
The default is the OS-defined default limit, typically either "5" for older operating systems or "128" for newer operating systems.
-<dt><b><Location </b><i>/path</i><b>> </b>... <b></Location></b>
+<dt><a name="Location"></a><b><Location </b><i>/path</i><b>> </b>... <b></Location></b>
<dd style="margin-left: 5.0em">Specifies access control for the named location.
Paths are documented below in the section "LOCATION PATHS".
-<dt><b>LogDebugHistory </b><i>number</i>
+<dt><a name="LogDebugHistory"></a><b>LogDebugHistory </b><i>number</i>
<dd style="margin-left: 5.0em">Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting.
-<dt><b>LogLevel </b>none
+<dt><a name="LogLevel"></a><b>LogLevel </b>none
<dd style="margin-left: 5.0em"><dt><b>LogLevel </b>emerg
<dd style="margin-left: 5.0em"><dt><b>LogLevel </b>alert
<dd style="margin-left: 5.0em"><dt><b>LogLevel </b>crit
<dd style="margin-left: 5.0em">Specifies the level of logging for the ErrorLog file.
The value "none" stops all logging while "debug2" logs everything.
The default is "warn".
-<dt><b>LogTimeFormat </b>standard
+<dt><a name="LogTimeFormat"></a><b>LogTimeFormat </b>standard
<dd style="margin-left: 5.0em"><dt><b>LogTimeFormat </b>usecs
<dd style="margin-left: 5.0em">Specifies the format of the date and time in the log files.
The value "standard" is the default and logs whole seconds while "usecs" logs microseconds.
-<dt><b>MaxClients </b><i>number</i>
+<dt><a name="MaxClients"></a><b>MaxClients </b><i>number</i>
<dd style="margin-left: 5.0em">Specifies the maximum number of simultaneous clients that are allowed by the scheduler.
The default is "100".
-<dt><b>MaxClientsPerHost </b><i>number</i>
+<dt><a name="MaxClientPerHost"></a><b>MaxClientsPerHost </b><i>number</i>
<dd style="margin-left: 5.0em">Specifies the maximum number of simultaneous clients that are allowed from a
single address.
The default is the MaxClients value.
-<dt><b>MaxCopies </b><i>number</i>
+<dt><a name="MaxCopies"></a><b>MaxCopies </b><i>number</i>
<dd style="margin-left: 5.0em">Specifies the maximum number of copies that a user can print of each job.
The default is "9999".
-<dt><b>MaxHoldTime </b><i>seconds</i>
+<dt><a name="MaxHoldTime"></a><b>MaxHoldTime </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies the maximum time a job may remain in the "indefinite" hold state before it is canceled.
The default is "0" which disables cancellation of held jobs.
-<dt><b>MaxJobs </b><i>number</i>
+<dt><a name="MaxJobs"></a><b>MaxJobs </b><i>number</i>
<dd style="margin-left: 5.0em">Specifies the maximum number of simultaneous jobs that are allowed.
Set to "0" to allow an unlimited number of jobs.
The default is "500".
-<dt><b>MaxJobsPerPrinter </b><i>number</i>
+<dt><a name="MaxJobsPerPrinter"></a><b>MaxJobsPerPrinter </b><i>number</i>
<dd style="margin-left: 5.0em">Specifies the maximum number of simultaneous jobs that are allowed per printer.
The default is "0" which allows up to MaxJobs jobs per printer.
-<dt><b>MaxJobsPerUser </b><i>number</i>
+<dt><a name="MaxJobsPerUser"></a><b>MaxJobsPerUser </b><i>number</i>
<dd style="margin-left: 5.0em">Specifies the maximum number of simultaneous jobs that are allowed per user.
The default is "0" which allows up to MaxJobs jobs per user.
-<dt><b>MaxJobTime </b><i>seconds</i>
+<dt><a name="MaxJobTime"></a><b>MaxJobTime </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies the maximum time a job may take to print before it is canceled.
Set to "0" to disable cancellation of "stuck" jobs.
The default is "10800" (3 hours).
-<dt><b>MaxLogSize </b><i>size</i>
+<dt><a name="MaxLogSize"></a><b>MaxLogSize </b><i>size</i>
<dd style="margin-left: 5.0em">Specifies the maximum size of the log files before they are rotated.
The value "0" disables log rotation.
The default is "1048576" (1MB).
-<dt><b>MultipleOperationTimeout </b><i>seconds</i>
+<dt><a name="MultipleOperationTimeout"></a><b>MultipleOperationTimeout </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies the maximum amount of time to allow between files in a multiple file print job.
The default is "300" (5 minutes).
-<dt><b>PageLogFormat </b><i>format-string</i>
+<dt><a name="PageLogFormat"></a><b>PageLogFormat </b><i>format-string</i>
<dd style="margin-left: 5.0em">Specifies the format of PageLog lines.
Sequences beginning with percent (%) characters are replaced with the corresponding information, while all other characters are copied literally.
The following percent sequences are recognized:
</pre>
The default is "%p %u %j %T %P %C %{job-billing} %{job-originating-host-name} %{job-name} %{media} %{sides}".
-<dt><b>PassEnv </b><i>variable </i>[ ... <i>variable </i>]
+<dt><a name="PassEnv"></a><b>PassEnv </b><i>variable </i>[ ... <i>variable </i>]
<dd style="margin-left: 5.0em">Passes the specified environment variable(s) to child processes.
-<dt><b><Policy </b><i>name</i><b>> </b>... <b></Policy></b>
+<dt><a name="Policy"></a><b><Policy </b><i>name</i><b>> </b>... <b></Policy></b>
<dd style="margin-left: 5.0em">Specifies access control for the named policy.
-<dt><b>Port </b><i>number</i>
+<dt><a name="Port"></a><b>Port </b><i>number</i>
<dd style="margin-left: 5.0em">Listens to the specified port number for connections.
-<dt><b>PreserveJobFiles Yes</b>
+<dt><a name="PreserveJobFiles"></a><b>PreserveJobFiles Yes</b>
<dd style="margin-left: 5.0em"><dt><b>PreserveJobFiles No</b>
<dd style="margin-left: 5.0em"><dt><b>PreserveJobFiles </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies whether job files (documents) are preserved after a job is printed.
If a numeric value is specified, job files are preserved for the indicated number of seconds after printing.
The default is "86400" (preserve 1 day).
-<dt><b>PreserveJobHistory Yes</b>
+<dt><a name="PreserveJobHistory"></a><b>PreserveJobHistory Yes</b>
<dd style="margin-left: 5.0em"><dt><b>PreserveJobHistory No</b>
<dd style="margin-left: 5.0em"><dt><b>PreserveJobHistory </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies whether the job history is preserved after a job is printed.
If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing.
If "Yes", the job history is preserved until the MaxJobs limit is reached.
The default is "Yes".
-<dt><b>ReloadTimeout </b><i>seconds</i>
+<dt><a name="ReloadTimeout"></a><b>ReloadTimeout </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies the amount of time to wait for job completion before restarting the scheduler.
The default is "30".
-<dt><b>RIPCache </b><i>size</i>
+<dt><a name="RIPCache"></a><b>RIPCache </b><i>size</i>
<dd style="margin-left: 5.0em">Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer.
The default is "128m".
-<dt><b>ServerAdmin </b><i>email-address</i>
+<dt><a name="ServerAdmin"></a><b>ServerAdmin </b><i>email-address</i>
<dd style="margin-left: 5.0em">Specifies the email address of the server administrator.
The default value is "root@ServerName".
-<dt><b>ServerAlias </b><i>hostname </i>[ ... <i>hostname </i>]
+<dt><a name="ServerAlias"></a><b>ServerAlias </b><i>hostname </i>[ ... <i>hostname </i>]
<dd style="margin-left: 5.0em"><dt><b>ServerAlias *</b>
<dd style="margin-left: 5.0em">The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces.
Using the special name "*" can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall.
If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using "*".
-<dt><b>ServerName </b><i>hostname</i>
+<dt><a name="ServerName"></a><b>ServerName </b><i>hostname</i>
<dd style="margin-left: 5.0em">Specifies the fully-qualified hostname of the server.
The default is the value reported by the
<b>hostname</b>(1)
command.
-<dt><b>ServerTokens None</b>
+<dt><a name="ServerTokens"></a><b>ServerTokens None</b>
<dd style="margin-left: 5.0em"><dt><b>ServerTokens ProductOnly</b>
<dd style="margin-left: 5.0em"><dt><b>ServerTokens Major</b>
<dd style="margin-left: 5.0em"><dt><b>ServerTokens Minor</b>
command.
"Full" reports "CUPS 2.0.0 (UNAME) IPP/2.0".
The default is "Minimal".
-<dt><b>SetEnv </b><i>variable value</i>
+<dt><a name="SetEnv"></a><b>SetEnv </b><i>variable value</i>
<dd style="margin-left: 5.0em">Set the specified environment variable to be passed to child processes.
-<dt><dt><b>SSLListen </b><i>ipv4-address</i><b>:</b><i>port</i>
+<dt><a name="SSLListen"></a><b>SSLListen </b><i>ipv4-address</i><b>:</b><i>port</i>
<dd style="margin-left: 5.0em"><dt><b>SSLListen [</b><i>ipv6-address</i><b>]:</b><i>port</i>
<dd style="margin-left: 5.0em"><dt><b>SSLListen *:</b><i>port</i>
<dd style="margin-left: 5.0em">Listens on the specified address and port for encrypted connections.
-<dt><b>SSLOptions </b>[<i>AllowRC4</i>] [<i>AllowSSL3</i>]
+<dt><a name="SSLOptions"></a><b>SSLOptions </b>[<i>AllowRC4</i>] [<i>AllowSSL3</i>]
<dd style="margin-left: 5.0em"><dt><b>SSLOptions None</b>
<dd style="margin-left: 5.0em">Sets encryption options.
By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites.
The <i>AllowRC4</i> option enables the 128-bit RC4 cipher suites, which are required for some older clients that do not implement newer ones.
The <i>AllowSSL3</i> option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0.
-<dt><b>SSLPort </b><i>port</i>
+<dt><a name="SSLPort"></a><b>SSLPort </b><i>port</i>
<dd style="margin-left: 5.0em">Listens on the specified port for encrypted connections.
-<dt><b>StrictConformance Yes</b>
+<dt><a name="StrictConformance"></a><b>StrictConformance Yes</b>
<dd style="margin-left: 5.0em"><dt><b>StrictConformance No</b>
<dd style="margin-left: 5.0em">Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications.
The default is "No".
-<dt><b>Timeout </b><i>seconds</i>
+<dt><a name="Timeout"></a><b>Timeout </b><i>seconds</i>
<dd style="margin-left: 5.0em">Specifies the HTTP request timeout.
The default is "300" (5 minutes).
-<dt><b>WebInterface yes</b>
+<dt><a name="WebInterface"></a><b>WebInterface yes</b>
<dd style="margin-left: 5.0em"><dt><b>WebInterface no</b>
<dd style="margin-left: 5.0em">Specifies whether the web interface is enabled.
The default is "No".
</TR>
<TR>
<TD><TT>sanitize_title=no</TT></TD>
- <TD>Specifies that the job title string should not be restricted to ASCII characters.</TD>
+ <TD>Specifies that the job title string should not be restricted to ASCII alphanumeric and space characters.</TD>
</TR>
<TR>
<TD><TT>sanitize_title=yes</TT></TD>
- <TD>Specifies that the job title string should be restricted to ASCII characters.</TD>
+ <TD>Specifies that the job title string should be restricted to ASCII alphanumeric and space characters.</TD>
</TR>
<TR>
<TD><TT>snmp=false</TT></TD>
<H2 CLASS="title"><A NAME="BASICS">The Basics</A></H2>
-<P>Operation policies are used for all IPP requests sent to the scheduler and are evaluated <em>after</em> the <A HREF="ref-cupsd-conf.html#Location"><TT>Location</TT></A> based access control rules. This means that operation policies can only add additional security restrictions to a request, never relax them. Use <TT>Location</TT> based access control rules for server-wide limits and operation policies for limits on individual printers, tasks, or services.</P>
+<P>Operation policies are used for all IPP requests sent to the scheduler and are evaluated <em>after</em> the <A HREF="man-cupsd.conf.html#Location"><TT>Location</TT></A> based access control rules. This means that operation policies can only add additional security restrictions to a request, never relax them. Use <TT>Location</TT> based access control rules for server-wide limits and operation policies for limits on individual printers, tasks, or services.</P>
-<P>Policies are stored in the <VAR>cupsd.conf</VAR> file in <A HREF="ref-cupsd-conf.html#Policy"><TT>Policy</TT></A> sections. Each policy has an alphanumeric name that is used to select it. Inside the policy section are one or more <A
-HREF="ref-cupsd-conf.html#LimitIPP"><TT>Limit</TT></A> subsections which list the operations that are affected by the rules inside it. <A HREF="#LISTING01">Listing 1</A> shows the default operation policy, appropriately called "default", that is shipped with CUPS.</P>
+<P>Policies are stored in the <VAR>cupsd.conf</VAR> file in <A HREF="man-cupsd.conf.html#Policy"><TT>Policy</TT></A> sections. Each policy has an alphanumeric name that is used to select it. Inside the policy section are one or more <A
+HREF="man-cupsd.conf.html#LimitIPP"><TT>Limit</TT></A> subsections which list the operations that are affected by the rules inside it. <A HREF="#LISTING01">Listing 1</A> shows the default operation policy, appropriately called "default", that is shipped with CUPS.</P>
-<P>The easiest way to add a policy to the <VAR>cupsd.conf</VAR> file is to use the web interface. Click on the <VAR>Administration</VAR> tab and then the <VAR>Edit Configuration File</VAR> button to edit the current <VAR>cupsd.conf</VAR> file. Click on the <VAR>Save Changes</VAR> button to save the changes and restart the scheduler. If you edit the <VAR>cupsd.conf</VAR> file from the console, make sure to <A HREF="ref-cupsd-conf.html">restart the cupsd process</A> before trying to use the new policy.</P>
+<P>The easiest way to add a policy to the <VAR>cupsd.conf</VAR> file is to use the web interface. Click on the <VAR>Administration</VAR> tab and then the <VAR>Edit Configuration File</VAR> button to edit the current <VAR>cupsd.conf</VAR> file. Click on the <VAR>Save Changes</VAR> button to save the changes and restart the scheduler. If you edit the <VAR>cupsd.conf</VAR> file from the console, make sure to <A HREF="man-cupsd.conf.html">restart the cupsd process</A> before trying to use the new policy.</P>
<PRE CLASS="example">
<EM>Listing 1: <A NAME="LISTING01">Default Operation Policy</A></EM>
<P>The operation names are listed on a single line with spaces separating them. Each name corresponds to the IPP operation described in any of the IETF or PWG standards documents for the Internet Printing Protocol. <A HREF="#TABLE01">Table 1</A> lists all of the operations that have been defined along with their usage in CUPS.</P>
-<P>The access control rules are listed after the <TT>Limit</TT> line and are the same as those used for <A HREF="ref-cupsd-conf.html#Location"><TT>Location</TT></A> sections. In this case, we require the owner of the job ("@OWNER") or a member of the <A HREF="ref-cupsd-conf.html#SystemGroup"><TT>SystemGroup</TT></A> ("@SYSTEM") to do the operation. Because we do not include an <A HREF="ref-cupsd-conf.html#AuthType"><TT>AuthType</TT></A> directive here, the user information can come from the IPP request itself or the authenticated username from the HTTP request. The administrative operations starting on line 9, however, <em>do</em> use the <TT>AuthType</TT> directive, and so administrative operations need to be authenticated:</P>
+<P>The access control rules are listed after the <TT>Limit</TT> line and are the same as those used for <A HREF="man-cupsd.conf.html#Location"><TT>Location</TT></A> sections. In this case, we require the owner of the job ("@OWNER") or a member of the <A HREF="man-cups-files.conf.html#SystemGroup"><TT>SystemGroup</TT></A> ("@SYSTEM") to do the operation. Because we do not include an <A HREF="man-cupsd.conf.html#AuthType"><TT>AuthType</TT></A> directive here, the user information can come from the IPP request itself or the authenticated username from the HTTP request. The administrative operations starting on line 9, however, <em>do</em> use the <TT>AuthType</TT> directive, and so administrative operations need to be authenticated:</P>
<PRE CLASS="example">
9 <Limit CUPS-Add-Modify-Printer CUPS-Delete-Printer CUPS-Add-Modify-Class
</Limit>
</PRE>
-<P>The directives inside the <TT>Limit</TT> subsection can use any of the normal limiting directives: <A HREF="ref-cupsd-conf.html#Allow"><TT>Allow</TT></A>, <A HREF="ref-cupsd-conf.html#AuthType"><TT>AuthType</TT></A>, <A HREF="ref-cupsd-conf.html#Deny"><TT>Deny</TT></A>, <A HREF="ref-cupsd-conf.html#Encryption"><TT>Encryption</TT></A>, <A HREF="ref-cupsd-conf.html#Require"><TT>Require</TT></A>, and <A HREF="ref-cupsd-conf.html#Satisfy"><TT>Satisfy</TT></A>. <A HREF="#TABLE02">Table 2</A> lists some basic "recipes" for different access control rules.</P>
+<P>The directives inside the <TT>Limit</TT> subsection can use any of the normal limiting directives: <A HREF="man-cupsd.conf.html#Allow"><TT>Allow</TT></A>, <A HREF="man-cupsd.conf.html#AuthType"><TT>AuthType</TT></A>, <A HREF="man-cupsd.conf.html#Deny"><TT>Deny</TT></A>, <A HREF="man-cupsd.conf.html#Encryption"><TT>Encryption</TT></A>, <A HREF="man-cupsd.conf.html#Require"><TT>Require</TT></A>, and <A HREF="man-cupsd.conf.html#Satisfy"><TT>Satisfy</TT></A>. <A HREF="#TABLE02">Table 2</A> lists some basic "recipes" for different access control rules.</P>
<DIV CLASS="table"><TABLE WIDTH="80%" SUMMARY="Access Control Recipes">
<CAPTION>Table 2: <A NAME="TABLE02">Access Control Recipes</A></CAPTION>
<H2 CLASS="title"><A NAME="SELECT">Using Policies</A></H2>
-<P>Once you have created a policy, you can use it in two ways. The first way is to assign it as the default policy for the system using the <A HREF="ref-cupsd-conf.html#DefaultPolicy"><TT>DefaultPolicy</TT></A> directive in the <VAR>cupsd.conf</VAR> file. For example, add the following line to the <VAR>cupsd.conf</VAR> file to use the "lab999" policy from the previous section:</P>
+<P>Once you have created a policy, you can use it in two ways. The first way is to assign it as the default policy for the system using the <A HREF="man-cupsd.conf.html#DefaultPolicy"><TT>DefaultPolicy</TT></A> directive in the <VAR>cupsd.conf</VAR> file. For example, add the following line to the <VAR>cupsd.conf</VAR> file to use the "lab999" policy from the previous section:</P>
<PRE CLASS="example">
DefaultPolicy lab999
</div>
</div>
</div>
- <div class="footer">CUPS and the CUPS logo are trademarks of <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2007-2014 Apple Inc. All rights reserved.</div>
+ <div class="footer">CUPS and the CUPS logo are trademarks of <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2007-2015 Apple Inc. All rights reserved.</div>
</body>
</html>
--- /dev/null
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <link rel="stylesheet" href="/cups.css" type="text/css">
+ <link rel="shortcut icon" href="/apple-touch-icon.png" type="image/png">
+ <meta charset="utf-8">
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=9">
+ <meta name="viewport" content="width=device-width">
+ <title>ホーム - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ </head>
+ <body>
+ <div class="header">
+ <ul>
+ <li><a href="http://www.cups.org/" target="_blank">CUPS.org</a></li>
+ <li><a class="active" href="/">ホーム</a></li>
+ <li><a href="/admin">管理</a></li>
+ <li><a href="/classes/">クラス</a></li>
+ <li><a href="/help/">ヘルプ</a></li>
+ <li><a href="/jobs/">ジョブ</a></li>
+ <li><a href="/printers/">プリンター</a></li>
+ </ul>
+ </div>
+ <div class="body">
+ <div class="row">
+ <h1>CUPS @CUPS_VERSION@</h1>
+ <p>CUPS は、OS X<sup>®</sup> およびその他の UNIX <SUP>®</sup> 系 OS のために、<a href="http://www.apple.com/">Apple Inc.</a> によって開発された標準ベースのオープンソース印刷システムです。</p>
+ </div>
+ <div class="row">
+ <div class="thirds">
+ <h2>CUPS ユーザー向け</h2>
+ <p><a href="help/overview.html">CUPS の概要</a></p>
+ <p><a href="help/options.html">コマンドラインからの印刷とオプション</a></p>
+ <p><a href="http://www.cups.org/lists.php?LIST=cups">ユーザーフォーラム</a></p>
+ </div>
+ <div class="thirds">
+ <h2>CUPS 管理者向け</h2>
+ <p><a href="admin">プリンターとクラスの追加</a></p>
+ <p><a href="help/policies.html">操作ポリシーの管理</a></p>
+ <p><a href="help/network.html">ネットワークプリンターの使い方</a></p>
+ <p><a href="help/man-cupsd.conf.html">ネットワークプリンターの使い方</a></p>
+ </div>
+ <div class="thirds">
+ <h2>CUPS 開発者向け</h2>
+ <p><a href="help/api-overview.html">CUPS プログラミングの導入</a></p>
+ <p><a href="help/api-cups.html">CUPS API</a></p>
+ <p><a href="help/api-filter.html">フィルタとバックエンドのプログラミング</a></p>
+ <p><a href="help/api-httpipp.html">HTTP と IPP の API</a></p>
+ <p><a href="http://www.cups.org/lists.php?LIST=cups-devel">開発者フォーラム</a></p>
+ </div>
+ </div>
+ </div>
+ <div class="footer">CUPS and the CUPS logo are trademarks of <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2007-2015 Apple Inc. All rights reserved.</div>
+ </body>
+</html>
/*
- * "$Id: pstops.c 11558 2014-02-06 18:33:34Z msweet $"
+ * "$Id: pstops.c 12358 2014-12-11 17:42:22Z msweet $"
*
* PostScript filter for CUPS.
*
if ((fp = cupsFileOpen(argv[6], "r")) == NULL)
{
- _cupsLangPrintError("ERROR", _("Unable to open print file"));
+ if (!JobCanceled)
+ _cupsLangPrintError("ERROR", _("Unable to open print file"));
return (1);
}
}
/*
- * End of "$Id: pstops.c 11558 2014-02-06 18:33:34Z msweet $".
+ * End of "$Id: pstops.c 12358 2014-12-11 17:42:22Z msweet $".
*/
/*
- * "$Id: raster.c 12124 2014-08-28 15:37:22Z msweet $"
+ * "$Id: raster.c 12453 2015-01-30 15:42:19Z msweet $"
*
* Raster file routines for CUPS.
*
- * Copyright 2007-2014 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2006 by Easy Software Products.
*
* This file is part of the CUPS Imaging library.
*/
if (!cups_raster_read_header(r))
+ {
+ memset(h, 0, sizeof(cups_page_header_t));
return (0);
+ }
/*
* Copy the header to the user-supplied buffer...
*/
if (!cups_raster_read_header(r))
+ {
+ memset(h, 0, sizeof(cups_page_header2_t));
return (0);
+ }
/*
* Copy the header to the user-supplied buffer...
fh.cupsInteger[15] = htonl(r->header.cupsInteger[15]);
/* VendorLength */
- memcpy(fh.cupsReal, r->header.cupsReal,
- sizeof(fh.cupsReal) + sizeof(fh.cupsString));
+ void *dst = fh.cupsReal; /* Bypass bogus compiler warning */
+ void *src = r->header.cupsReal;
+ memcpy(dst, src, sizeof(fh.cupsReal) + sizeof(fh.cupsString));
/* VendorData */
strlcpy(fh.cupsRenderingIntent, r->header.cupsRenderingIntent,
cups_raster_update(r);
- return (r->header.cupsBytesPerLine != 0 && r->header.cupsHeight != 0);
+ return (r->header.cupsBytesPerLine != 0 && r->header.cupsHeight != 0 && (r->header.cupsBytesPerLine % r->bpp) == 0);
}
/*
- * End of "$Id: raster.c 12124 2014-08-28 15:37:22Z msweet $".
+ * End of "$Id: raster.c 12453 2015-01-30 15:42:19Z msweet $".
*/
#
-# "$Id: Makefile 11558 2014-02-06 18:33:34Z msweet $"
+# "$Id: Makefile 12347 2014-12-09 21:47:23Z msweet $"
#
# Locale file makefile for CUPS.
#
#
checkpo: checkpo.o ../cups/$(LIBCUPSSTATIC)
- echo Linking $<...
+ echo Linking $@...
$(CC) $(ARCHFLAGS) $(LDFLAGS) -o checkpo checkpo.o \
../cups/$(LIBCUPSSTATIC) $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) \
$(COMMONLIBS) $(LIBZ)
#
po2strings: po2strings.o ../cups/$(LIBCUPSSTATIC)
- echo Linking $<...
+ echo Linking $@...
$(CC) $(ARCHFLAGS) $(LDFLAGS) -o po2strings po2strings.o \
../cups/$(LIBCUPSSTATIC) $(LIBGSSAPI) $(SSLLIBS) $(DNSSDLIBS) \
$(COMMONLIBS) $(LIBZ)
#
strings2po: strings2po.o
- echo Linking $<...
+ echo Linking $@...
$(CC) $(ARCHFLAGS) $(LDFLAGS) -o strings2po strings2po.o
#
-# End of "$Id: Makefile 11558 2014-02-06 18:33:34Z msweet $".
+# End of "$Id: Makefile 12347 2014-12-09 21:47:23Z msweet $".
#
#
msgid ""
msgstr ""
-"Project-Id-Version: CUPS 1.7\n"
+"Project-Id-Version: CUPS 2.0\n"
"Report-Msgid-Bugs-To: http://www.cups.org/str.php\n"
"POT-Creation-Date: 2014-08-29 22:25-0400\n"
-"PO-Revision-Date: 2013-08-19 11:51+0900\n"
+"PO-Revision-Date: 2014-11-15 19:27+0900\n"
"Last-Translator: OPFC TRANSCUPS <opfc-transcups@sourceforge.jp>\n"
"Language-Team: OPFC TRANSCUPS <opfc-transcups@sourceforge.jp>\n"
"Language: ja\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+#: systemv/lpstat.c:1867 systemv/lpstat.c:1990
msgid "\t\t(all)"
msgstr "\t\t(すべて)"
+#: systemv/lpstat.c:1870 systemv/lpstat.c:1873 systemv/lpstat.c:1993
+#: systemv/lpstat.c:1996
msgid "\t\t(none)"
msgstr "\t\t(なし)"
+#: berkeley/lpc.c:426
#, c-format
msgid "\t%d entries"
msgstr "\t%d エントリー"
+#: systemv/lpstat.c:783 systemv/lpstat.c:799
#, c-format
msgid "\t%s"
msgstr "\t%s"
+#: systemv/lpstat.c:1848 systemv/lpstat.c:1971
msgid "\tAfter fault: continue"
msgstr "\t失敗後: 継続"
+#: systemv/lpstat.c:1471 systemv/lpstat.c:1817 systemv/lpstat.c:1941
#, c-format
msgid "\tAlerts: %s"
msgstr "\t警告: %s"
+#: systemv/lpstat.c:1871 systemv/lpstat.c:1994
msgid "\tBanner required"
msgstr "\tバナーが必要"
+#: systemv/lpstat.c:1872 systemv/lpstat.c:1995
msgid "\tCharset sets:"
msgstr "\t文字セット:"
+#: systemv/lpstat.c:1836 systemv/lpstat.c:1959
msgid "\tConnection: direct"
msgstr "\t接続: 直結"
+#: systemv/lpstat.c:1827 systemv/lpstat.c:1951
msgid "\tConnection: remote"
msgstr "\t接続: リモート"
+#: systemv/lpstat.c:1793 systemv/lpstat.c:1917
msgid "\tContent types: any"
msgstr "\tコンテンツの種類: すべて"
+#: systemv/lpstat.c:1875 systemv/lpstat.c:1998
msgid "\tDefault page size:"
msgstr "\tデフォルト用紙サイズ:"
+#: systemv/lpstat.c:1874 systemv/lpstat.c:1997
msgid "\tDefault pitch:"
msgstr "\tデフォルトピッチ:"
+#: systemv/lpstat.c:1876 systemv/lpstat.c:1999
msgid "\tDefault port settings:"
msgstr "\tデフォルトポート設定:"
+#: systemv/lpstat.c:1799 systemv/lpstat.c:1923
#, c-format
msgid "\tDescription: %s"
msgstr "\t説明: %s"
+#: systemv/lpstat.c:1792 systemv/lpstat.c:1916
msgid "\tForm mounted:"
msgstr "\t設定されたフォーム:"
+#: systemv/lpstat.c:1869 systemv/lpstat.c:1992
msgid "\tForms allowed:"
msgstr "\t許可されているフォーム:"
+#: systemv/lpstat.c:1831 systemv/lpstat.c:1955
#, c-format
msgid "\tInterface: %s.ppd"
msgstr "\tインターフェイス: %s.ppd"
+#: systemv/lpstat.c:1840 systemv/lpstat.c:1963
#, c-format
msgid "\tInterface: %s/interfaces/%s"
msgstr "\tインターフェイス: %s/interfaces/%s"
+#: systemv/lpstat.c:1844 systemv/lpstat.c:1967
#, c-format
msgid "\tInterface: %s/ppd/%s.ppd"
msgstr "\tインターフェイス: %s/ppd/%s.ppd"
+#: systemv/lpstat.c:1822 systemv/lpstat.c:1946
#, c-format
msgid "\tLocation: %s"
msgstr "\t場所: %s"
+#: systemv/lpstat.c:1847 systemv/lpstat.c:1970
msgid "\tOn fault: no alert"
msgstr "\t失敗時: 警告なし"
+#: systemv/lpstat.c:1794 systemv/lpstat.c:1918
msgid "\tPrinter types: unknown"
msgstr "\tプリンターの種類: 不明"
+#: systemv/lpstat.c:1454
#, c-format
msgid "\tStatus: %s"
msgstr "\tステータス: %s"
+#: systemv/lpstat.c:1852 systemv/lpstat.c:1866 systemv/lpstat.c:1975
+#: systemv/lpstat.c:1989
msgid "\tUsers allowed:"
msgstr "\t許可されているユーザー:"
+#: systemv/lpstat.c:1859 systemv/lpstat.c:1982
msgid "\tUsers denied:"
msgstr "\t禁止されているユーザー:"
+#: berkeley/lpc.c:428
msgid "\tdaemon present"
msgstr "\tデーモンは提供されています"
+#: berkeley/lpc.c:424
msgid "\tno entries"
msgstr "\tエントリーがありません"
+#: berkeley/lpc.c:396 berkeley/lpc.c:408
#, c-format
msgid "\tprinter is on device '%s' speed -1"
msgstr "\tデバイス '%s' 上のプリンター 速度 -1"
+#: berkeley/lpc.c:421
msgid "\tprinting is disabled"
msgstr "\t印刷は無効です"
+#: berkeley/lpc.c:419
msgid "\tprinting is enabled"
msgstr "\t印刷は有効です"
+#: systemv/lpstat.c:1474
#, c-format
msgid "\tqueued for %s"
msgstr "\t%s にキューしました"
+#: berkeley/lpc.c:416
msgid "\tqueuing is disabled"
msgstr "\tキューは無効です"
+#: berkeley/lpc.c:414
msgid "\tqueuing is enabled"
msgstr "\tキューは有効です"
+#: systemv/lpstat.c:1785 systemv/lpstat.c:1909
msgid "\treason unknown"
msgstr "\t未知の理由"
+#: systemv/cupstestppd.c:454
msgid ""
"\n"
" DETAILED CONFORMANCE TEST RESULTS"
"\n"
" 適合テスト結果詳細"
+#: systemv/cupstestppd.c:3820
msgid " Ignore specific warnings."
msgstr " 指定された警告を無視する。"
+#: systemv/cupstestppd.c:3824
msgid " Issue warnings instead of errors."
msgstr " エラーを警告として扱う。"
+#: systemv/cupstestppd.c:410 systemv/cupstestppd.c:415
msgid " REF: Page 15, section 3.1."
msgstr " 参照: 15 ページ、セクション 3.1。"
+#: systemv/cupstestppd.c:405
msgid " REF: Page 15, section 3.2."
msgstr " 参照: 15 ページ、セクション 3.2。"
+#: systemv/cupstestppd.c:425
msgid " REF: Page 19, section 3.3."
msgstr " 参照: 19 ページ、セクション 3.3。"
+#: systemv/cupstestppd.c:378
msgid " REF: Page 20, section 3.4."
msgstr " 参照: 20 ページ、セクション 3.4。"
+#: systemv/cupstestppd.c:430
msgid " REF: Page 27, section 3.5."
msgstr " 参照: 27 ページ、セクション 3.5。"
+#: systemv/cupstestppd.c:373
msgid " REF: Page 42, section 5.2."
msgstr " 参照: 42 ページ、セクション 5.2。"
+#: systemv/cupstestppd.c:420
msgid " REF: Pages 16-17, section 3.2."
msgstr " 参照: 16-17 ページ、セクション 3.2。"
+#: systemv/cupstestppd.c:390
msgid " REF: Pages 42-45, section 5.2."
msgstr " 参照: 42-45 ページ、セクション 5.2。"
+#: systemv/cupstestppd.c:384
msgid " REF: Pages 45-46, section 5.2."
msgstr " 参照: 45-46 ページ、セクション 5.2。"
+#: systemv/cupstestppd.c:395
msgid " REF: Pages 48-49, section 5.2."
msgstr " 参照: 48-49 ページ、セクション 5.2。"
+#: systemv/cupstestppd.c:400
msgid " REF: Pages 52-54, section 5.2."
msgstr " 参照: 52-54 ページ、セクション 5.2。"
+#: berkeley/lpq.c:528
#, c-format
msgid " %-39.39s %.0f bytes"
msgstr " %-39.39s %.0f バイト"
+#: systemv/cupstestppd.c:589
#, c-format
msgid " PASS Default%s"
msgstr " 合格 Default%s"
+#: systemv/cupstestppd.c:524
msgid " PASS DefaultImageableArea"
msgstr " 合格 DefaultImageableArea"
+#: systemv/cupstestppd.c:558
msgid " PASS DefaultPaperDimension"
msgstr " 合格 DefaultPaperDimension"
+#: systemv/cupstestppd.c:631
msgid " PASS FileVersion"
msgstr " 合格 FileVersion"
+#: systemv/cupstestppd.c:675
msgid " PASS FormatVersion"
msgstr " 合格 FormatVersion"
+#: systemv/cupstestppd.c:695
msgid " PASS LanguageEncoding"
msgstr " 合格 LanguageEncoding"
+#: systemv/cupstestppd.c:715
msgid " PASS LanguageVersion"
msgstr " 合格 LanguageVersion"
+#: systemv/cupstestppd.c:769
msgid " PASS Manufacturer"
msgstr " 合格 Manufacturer"
+#: systemv/cupstestppd.c:809
msgid " PASS ModelName"
msgstr " 合格 ModelName"
+#: systemv/cupstestppd.c:829
msgid " PASS NickName"
msgstr " 合格 NickName"
+#: systemv/cupstestppd.c:889
msgid " PASS PCFileName"
msgstr " 合格 PCFileName"
+#: systemv/cupstestppd.c:964
msgid " PASS PSVersion"
msgstr " 合格 PSVersion"
+#: systemv/cupstestppd.c:869
msgid " PASS PageRegion"
msgstr " 合格 PageRegion"
+#: systemv/cupstestppd.c:849
msgid " PASS PageSize"
msgstr " 合格 PageSize"
+#: systemv/cupstestppd.c:924
msgid " PASS Product"
msgstr " 合格 Product"
+#: systemv/cupstestppd.c:999
msgid " PASS ShortNickName"
msgstr " 合格 ShortNickName"
+#: systemv/cupstestppd.c:1374
#, c-format
msgid " WARN %s has no corresponding options."
msgstr " 警告 %s は相当するオプションがありません。"
+#: systemv/cupstestppd.c:1486
#, c-format
msgid ""
" WARN %s shares a common prefix with %s\n"
" 警告 %s は %s と一般プレフィックスを共有します。\n"
" 参照: 15 ページ、セクション 3.2。"
+#: systemv/cupstestppd.c:1345
#, c-format
msgid ""
" WARN Duplex option keyword %s may not work as expected and should "
"ません。また、Duplex という名前であるべきです。 参照: 122 ペー"
"ジ、セクション 5.17"
+#: systemv/cupstestppd.c:1744
msgid " WARN File contains a mix of CR, LF, and CR LF line endings."
msgstr ""
" 警告 ファイルが CR、LF、CR LF の行末を混在して含んでいます。"
+#: systemv/cupstestppd.c:1390
msgid ""
" WARN LanguageEncoding required by PPD 4.3 spec.\n"
" REF: Pages 56-57, section 5.3."
" 警告 LanguageEncoding は PPD 4.3 仕様で必須です。\n"
" 参照: 56-57 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:1726
#, c-format
msgid " WARN Line %d only contains whitespace."
msgstr " 警告 %d 行が空白だけです。"
+#: systemv/cupstestppd.c:1398
msgid ""
" WARN Manufacturer required by PPD 4.3 spec.\n"
" REF: Pages 58-59, section 5.3."
" 警告 Manufacturer は PPD 4.3 仕様で必須です。\n"
" 参照: 58-59 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:1749
msgid ""
" WARN Non-Windows PPD files should use lines ending with only LF, "
"not CR LF."
" 警告 非 Windows PPD ファイルは、CR LF でなく LF のみを行末に使うべ"
"きです。"
+#: systemv/cupstestppd.c:1382
#, c-format
msgid ""
" WARN Obsolete PPD version %.1f.\n"
" 警告 PPD バージョン %.1f は現在使われていません。\n"
" 参照: 42 ページ、セクション 5.2。"
+#: systemv/cupstestppd.c:1413
msgid ""
" WARN PCFileName longer than 8.3 in violation of PPD spec.\n"
" REF: Pages 61-62, section 5.3."
" 警告 8.3 文字より長い PCFileName は PPD 仕様違反です。\n"
" 参照: 61-62 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:1421
msgid ""
" WARN PCFileName should contain a unique filename.\n"
" REF: Pages 61-62, section 5.3."
" 警告 PCFileName はユニークなファイル名でなければなりません。\n"
" 参照: 61-62 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:1456
msgid ""
" WARN Protocols contains PJL but JCL attributes are not set.\n"
" REF: Pages 78-79, section 5.7."
"ん。\n"
" 参照: 78-79 ページ、セクション 5.7。"
+#: systemv/cupstestppd.c:1447
msgid ""
" WARN Protocols contains both PJL and BCP; expected TBCP.\n"
" REF: Pages 78-79, section 5.7."
"す。\n"
" 参照: 78-79 ページ、セクション 5.7。"
+#: systemv/cupstestppd.c:1430
msgid ""
" WARN ShortNickName required by PPD 4.3 spec.\n"
" REF: Pages 64-65, section 5.3."
" 警告 ShortNickName は PPD 4.3 仕様で必須です。\n"
" 参照: 64-65 ページ、セクション 5.3。"
+#: systemv/cupsaddsmb.c:282
msgid " cupsaddsmb [options] -a"
msgstr " cupsaddsmb [オプション] -a"
+#: systemv/cupstestdsc.c:427
msgid " cupstestdsc [options] -"
msgstr " cupstestdsc [オプション] -"
+#: systemv/cupstestppd.c:3815
msgid " program | cupstestppd [options] -"
msgstr " program | cupstestppd [オプション] -"
+#: systemv/cupstestppd.c:3747
#, c-format
msgid ""
" %s \"%s %s\" conflicts with \"%s %s\"\n"
" %s \"%s %s\" は \"%s %s\" と競合します\n"
" (禁則=\"%s %s %s %s\")。"
+#: systemv/cupstestppd.c:2248
#, c-format
msgid " %s %s %s does not exist."
msgstr " %s %s %s が存在しません。"
+#: systemv/cupstestppd.c:3904
#, c-format
msgid " %s %s file \"%s\" has the wrong capitalization."
msgstr ""
" %s %s ファイル \"%s\" は不正な大文字で始まるワードを含んでいます。"
+#: systemv/cupstestppd.c:2318
#, c-format
msgid ""
" %s Bad %s choice %s.\n"
" %s 不正な %s が %s を選んでいます。\n"
" 参照: 122 ページ、セクション 5.17"
+#: systemv/cupstestppd.c:3507 systemv/cupstestppd.c:3556
+#: systemv/cupstestppd.c:3595
#, c-format
msgid " %s Bad UTF-8 \"%s\" translation string for option %s, choice %s."
msgstr ""
" %s 不正な UTF-8 \"%s\" 翻訳文字列 (オプション %s 、選択 %s) です。"
+#: systemv/cupstestppd.c:3461
#, c-format
msgid " %s Bad UTF-8 \"%s\" translation string for option %s."
msgstr " %s 不正な UTF-8 \"%s\" 翻訳文字列 (オプション %s 用) です。"
+#: systemv/cupstestppd.c:2389
#, c-format
msgid " %s Bad cupsFilter value \"%s\"."
msgstr " %s 不正な値が cupsFilter に設定されています。 \"%s\""
+#: systemv/cupstestppd.c:2475
#, c-format
msgid " %s Bad cupsFilter2 value \"%s\"."
msgstr " %s 不正な値が cupsFilter2 に設定されています。 \"%s\""
+#: systemv/cupstestppd.c:2964
#, c-format
msgid " %s Bad cupsICCProfile %s."
-msgstr " %s 不正な cupsICCProfile %sです。"
+msgstr " %s 不正な cupsICCProfile %s です。"
+#: systemv/cupstestppd.c:2571
#, c-format
msgid " %s Bad cupsPreFilter value \"%s\"."
msgstr " %s 不正な値が cupsPreFilter に設定されています。 \"%s\""
+#: systemv/cupstestppd.c:1822
#, c-format
msgid " %s Bad cupsUIConstraints %s: \"%s\""
-msgstr " %s 不正な cupsUIConstraints %s: \"%s\"です。"
+msgstr " %s 不正な cupsUIConstraints %s: \"%s\" です。"
+#: systemv/cupstestppd.c:3411
#, c-format
msgid " %s Bad language \"%s\"."
-msgstr " %s 無効な言語 \"%s\"です。"
+msgstr " %s 無効な言語 \"%s\" です。"
+#: systemv/cupstestppd.c:2433 systemv/cupstestppd.c:2529
+#: systemv/cupstestppd.c:2615 systemv/cupstestppd.c:2673
+#: systemv/cupstestppd.c:2728 systemv/cupstestppd.c:2783
+#: systemv/cupstestppd.c:2838 systemv/cupstestppd.c:2891
+#: systemv/cupstestppd.c:3013
#, c-format
msgid " %s Bad permissions on %s file \"%s\"."
msgstr " %s 不正なパーミッション %s です (ファイル \"%s\")。"
+#: systemv/cupstestppd.c:2373 systemv/cupstestppd.c:2459
+#: systemv/cupstestppd.c:2555 systemv/cupstestppd.c:2642
+#: systemv/cupstestppd.c:2697 systemv/cupstestppd.c:2752
+#: systemv/cupstestppd.c:2807 systemv/cupstestppd.c:2862
#, c-format
msgid " %s Bad spelling of %s - should be %s."
msgstr " %s %s の不正な綴りです - %s であるべきです。"
+#: systemv/cupstestppd.c:2907
#, c-format
msgid " %s Cannot provide both APScanAppPath and APScanAppBundleID."
msgstr " %s APScanAppPath と APScanAppBundleID は同時に指定できません。"
+#: systemv/cupstestppd.c:2205
#, c-format
msgid " %s Default choices conflicting."
msgstr " %s デフォルトの選択肢が競合しています。"
+#: systemv/cupstestppd.c:1803
#, c-format
msgid " %s Empty cupsUIConstraints %s"
-msgstr " %s 空の cupsUIConstraints %sです。"
+msgstr " %s 空の cupsUIConstraints %s です。"
+#: systemv/cupstestppd.c:3539 systemv/cupstestppd.c:3579
#, c-format
msgid " %s Missing \"%s\" translation string for option %s, choice %s."
msgstr ""
" %s \"%s\" 翻訳文字列 (オプション %s 、選択 %s) が見つかりません。"
+#: systemv/cupstestppd.c:3447
#, c-format
msgid " %s Missing \"%s\" translation string for option %s."
msgstr " %s \"%s\" 翻訳文字列 (オプション %s 用) が見つかりません。"
+#: systemv/cupstestppd.c:2418 systemv/cupstestppd.c:2514
+#: systemv/cupstestppd.c:2600 systemv/cupstestppd.c:2658
+#: systemv/cupstestppd.c:2713 systemv/cupstestppd.c:2768
+#: systemv/cupstestppd.c:2823 systemv/cupstestppd.c:2875
+#: systemv/cupstestppd.c:2998
#, c-format
msgid " %s Missing %s file \"%s\"."
msgstr " %s %s が見つかりません (ファイル \"%s\")。"
+#: systemv/cupstestppd.c:3121
#, c-format
msgid ""
" %s Missing REQUIRED PageRegion option.\n"
" %s 必須の PageRegion オプションが見つかりません。\n"
" 参照: 100 ページ、セクション 5.14。"
+#: systemv/cupstestppd.c:3106
#, c-format
msgid ""
" %s Missing REQUIRED PageSize option.\n"
" %s 必須の PageSize オプションが見つかりません。\n"
" 参照: 99 ページ、セクション 5.14。"
+#: systemv/cupstestppd.c:2013 systemv/cupstestppd.c:2054
#, c-format
msgid " %s Missing choice *%s %s in UIConstraints \"*%s %s *%s %s\"."
msgstr ""
" %s 選択 *%s %s が UIConstraints \"*%s %s *%s %s\" 内に見つかりませ"
"ん。"
+#: systemv/cupstestppd.c:1908
#, c-format
msgid " %s Missing choice *%s %s in cupsUIConstraints %s: \"%s\""
msgstr ""
" %s 選択 *%s %s が cupsUIConstraints %s: \"%s\" 内に見つかりません。"
+#: systemv/cupstestppd.c:1840
#, c-format
msgid " %s Missing cupsUIResolver %s"
msgstr " %s cupsUIResolver ファイル %s が見つかりません。"
+#: systemv/cupstestppd.c:1999 systemv/cupstestppd.c:2040
#, c-format
msgid " %s Missing option %s in UIConstraints \"*%s %s *%s %s\"."
msgstr ""
" %s オプション %s がUIConstraints \"*%s %s *%s %s\" に見つかりません。"
+#: systemv/cupstestppd.c:1892
#, c-format
msgid " %s Missing option %s in cupsUIConstraints %s: \"%s\""
msgstr ""
" %s オプション %s がcupsUIConstraints %s に見つかりません: \"%s\""
+#: systemv/cupstestppd.c:3633
#, c-format
msgid " %s No base translation \"%s\" is included in file."
msgstr " %s ファイルにベース翻訳文字列 \"%s\" がありません。"
+#: systemv/cupstestppd.c:2294
#, c-format
msgid ""
" %s REQUIRED %s does not define choice None.\n"
" %s 必須の %s が選択肢 None を定義していません。\n"
" 参照: 122 ページ、セクション 5.17。"
+#: systemv/cupstestppd.c:3180 systemv/cupstestppd.c:3194
#, c-format
msgid " %s Size \"%s\" defined for %s but not for %s."
msgstr ""
" %s サイズ \"%s\" は %s 向けに定義されていますが、%s にはありません。"
+#: systemv/cupstestppd.c:3160
#, c-format
msgid " %s Size \"%s\" has unexpected dimensions (%gx%g)."
msgstr " %s サイズ \"%s\" は規定外の寸法 (%gx%g) を持っています。"
+#: systemv/cupstestppd.c:3351
#, c-format
msgid " %s Size \"%s\" should be \"%s\"."
msgstr " %s サイズ \"%s\" は \"%s\" であるべきです。"
+#: systemv/cupstestppd.c:3300
#, c-format
msgid " %s Size \"%s\" should be the Adobe standard name \"%s\"."
msgstr " %s サイズ \"%s\" は Adobe 標準名称 \"%s\" であるべきです。"
+#: systemv/cupstestppd.c:3041
#, c-format
msgid " %s cupsICCProfile %s hash value collides with %s."
msgstr " %s cupsICCProfileのハッシュ値 %s が %s と一致しません。"
+#: systemv/cupstestppd.c:1963
#, c-format
msgid " %s cupsUIResolver %s causes a loop."
msgstr " %s cupsUIResolverの %s がループしています。"
+#: systemv/cupstestppd.c:1945
#, c-format
msgid ""
" %s cupsUIResolver %s does not list at least two different options."
" %s cupsUIResolver %s は最低でも 2 つの異なったオプションを持っていなけ"
"ればなりません。"
+#: systemv/cupstestppd.c:1168
#, c-format
msgid ""
" **FAIL** %s must be 1284DeviceID\n"
" **失敗** %s は 1284DeviceID でなければなりません。\n"
" 参照: 72 ページ、セクション 5.5"
+#: systemv/cupstestppd.c:580
#, c-format
msgid ""
" **FAIL** Bad Default%s %s\n"
" **失敗** 不正な Default%s %s\n"
" 参照: 40 ページ、セクション 4.5。"
+#: systemv/cupstestppd.c:514
#, c-format
msgid ""
" **FAIL** Bad DefaultImageableArea %s\n"
" **失敗** %s は不正な DefaultImageableArea です。\n"
" 参照: 102 ページ、セクション 5.15。"
+#: systemv/cupstestppd.c:550
#, c-format
msgid ""
" **FAIL** Bad DefaultPaperDimension %s\n"
" **失敗** %s は不正な DefaultPaperDimension です。\n"
" 参照: 103 ページ、セクション 5.15。"
+#: systemv/cupstestppd.c:623
#, c-format
msgid ""
" **FAIL** Bad FileVersion \"%s\"\n"
" **失敗** 不正なFileVersion \"%s\"\n"
" 参照: 56 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:667
#, c-format
msgid ""
" **FAIL** Bad FormatVersion \"%s\"\n"
" **失敗** FormatVersion が違います \"%s\"\n"
" 参照: 56 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:1025
msgid ""
" **FAIL** Bad JobPatchFile attribute in file\n"
" REF: Page 24, section 3.4."
" **失敗** ファイルに不正な JobPatchFile 属性があります\n"
" 参照: 24 ページ、セクション 3.4。"
+#: systemv/cupstestppd.c:1213
#, c-format
msgid " **FAIL** Bad LanguageEncoding %s - must be ISOLatin1."
msgstr ""
" **失敗** 無効な LanguageEncoding %s - ISOLatin1 でなければなりません。"
+#: systemv/cupstestppd.c:1227
#, c-format
msgid " **FAIL** Bad LanguageVersion %s - must be English."
msgstr ""
" **失敗** 無効な LanguageVersion %s - English でなければなりません。"
+#: systemv/cupstestppd.c:743 systemv/cupstestppd.c:760
#, c-format
msgid ""
" **FAIL** Bad Manufacturer (should be \"%s\")\n"
" **失敗** 不正な Manufacturer (\"%s\" でなければなりません)\n"
" 参照: 211 ページ、表 D.1。"
+#: systemv/cupstestppd.c:800
#, c-format
msgid ""
" **FAIL** Bad ModelName - \"%c\" not allowed in string.\n"
" **失敗** 不正な ModelName - 文字列に \"%c\" は許可されていません。\n"
" 参照: 59-60 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:956
msgid ""
" **FAIL** Bad PSVersion - not \"(string) int\".\n"
" REF: Pages 62-64, section 5.3."
" **失敗** 不正な PSVersion - \"(文字列) 整数\" ではありません。\n"
" 参照: 62-64 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:917
msgid ""
" **FAIL** Bad Product - not \"(string)\".\n"
" REF: Page 62, section 5.3."
" **失敗** 不正な Product - \"(文字列)\" ではありません。\n"
" 参照: 62 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:991
msgid ""
" **FAIL** Bad ShortNickName - longer than 31 chars.\n"
" REF: Pages 64-65, section 5.3."
" **失敗** 不正な ShortNickName - 31 文字を超えています。\n"
" 参照: 64-65 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:1149
#, c-format
msgid ""
" **FAIL** Bad option %s choice %s\n"
" **失敗** 不正な %s が %s を選んでいます。\n"
" 参照: 84 ページ、セクション 5.9"
+#: systemv/cupstestppd.c:3774 systemv/cupstestppd.c:3796
#, c-format
msgid " **FAIL** Default option code cannot be interpreted: %s"
msgstr " **失敗** デフォルトのオプションコードが解釈できません: %s"
+#: systemv/cupstestppd.c:1286
#, c-format
msgid ""
" **FAIL** Default translation string for option %s choice %s contains "
" **失敗** オプション %s、選択肢 %s のデフォルトの翻訳文字列が 8 ビット"
"文字を含んでいます。"
+#: systemv/cupstestppd.c:1259
#, c-format
msgid ""
" **FAIL** Default translation string for option %s contains 8-bit "
" **失敗** オプション %s のデフォルトの翻訳文字列が 8 ビット文字を含んで"
"います。"
+#: systemv/cupstestppd.c:2101
#, c-format
msgid " **FAIL** Group names %s and %s differ only by case."
msgstr " **失敗** グループ名 %s と %s は大文字/小文字が違うだけです。"
+#: systemv/cupstestppd.c:2146
#, c-format
msgid " **FAIL** Multiple occurrences of option %s choice name %s."
msgstr " **失敗** %s で複数のオプション %s が選択されています。"
+#: systemv/cupstestppd.c:2163
#, c-format
msgid " **FAIL** Option %s choice names %s and %s differ only by case."
msgstr ""
" **失敗** %s が選択した %s と %s は大文字/小文字のみが違うだけです。"
+#: systemv/cupstestppd.c:2123
#, c-format
msgid " **FAIL** Option names %s and %s differ only by case."
msgstr " **失敗** オプション名 %s と %s は大文字/小文字が違うだけです。"
+#: systemv/cupstestppd.c:600
#, c-format
msgid ""
" **FAIL** REQUIRED Default%s\n"
" **失敗** Default%s は必須\n"
" 参照: 40 ページ、セクション 4.5。"
+#: systemv/cupstestppd.c:499
msgid ""
" **FAIL** REQUIRED DefaultImageableArea\n"
" REF: Page 102, section 5.15."
" **失敗** DefaultImageableArea は必須\n"
" 参照: 102 ページ、セクション 5.15。"
+#: systemv/cupstestppd.c:535
msgid ""
" **FAIL** REQUIRED DefaultPaperDimension\n"
" REF: Page 103, section 5.15."
" **失敗** DefaultPaperDimension は必須\n"
" 参照: 103 ページ、セクション 5.15。"
+#: systemv/cupstestppd.c:641
msgid ""
" **FAIL** REQUIRED FileVersion\n"
" REF: Page 56, section 5.3."
" **失敗** FileVersion は必須\n"
" 参照: 56 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:685
msgid ""
" **FAIL** REQUIRED FormatVersion\n"
" REF: Page 56, section 5.3."
" **失敗** FormatVersion は必須\n"
" 参照: 56 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:1076
#, c-format
msgid ""
" **FAIL** REQUIRED ImageableArea for PageSize %s\n"
" 参照: 41 ページ、セクション 5。\n"
" 参照: 102 ページ、セクション 5.15。"
+#: systemv/cupstestppd.c:705
msgid ""
" **FAIL** REQUIRED LanguageEncoding\n"
" REF: Pages 56-57, section 5.3."
" **失敗** LanguageEncoding は必須\n"
" 参照: 56-57 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:725
msgid ""
" **FAIL** REQUIRED LanguageVersion\n"
" REF: Pages 57-58, section 5.3."
" **失敗** LanguageVersion は必須\n"
" 参照: 57-58 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:779
msgid ""
" **FAIL** REQUIRED Manufacturer\n"
" REF: Pages 58-59, section 5.3."
" **失敗** Manufacturer は必須\n"
" 参照: 58-59 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:819
msgid ""
" **FAIL** REQUIRED ModelName\n"
" REF: Pages 59-60, section 5.3."
" **失敗** ModelName は必須\n"
" 参照: 59-60 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:839
msgid ""
" **FAIL** REQUIRED NickName\n"
" REF: Page 60, section 5.3."
" **失敗** NickName は必須\n"
" 参照: 60 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:899
msgid ""
" **FAIL** REQUIRED PCFileName\n"
" REF: Pages 61-62, section 5.3."
" **失敗** PCFileName は必須\n"
" 参照: 61-62 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:974
msgid ""
" **FAIL** REQUIRED PSVersion\n"
" REF: Pages 62-64, section 5.3."
" **失敗** PSVersion は必須\n"
" 参照: 62-64 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:879
msgid ""
" **FAIL** REQUIRED PageRegion\n"
" REF: Page 100, section 5.14."
" **失敗** PageRegion は必須\n"
" 参照: 100 ページ、セクション 5.14。"
+#: systemv/cupstestppd.c:1045
msgid ""
" **FAIL** REQUIRED PageSize\n"
" REF: Page 41, section 5.\n"
" 参照: 41 ページ、セクション 5。\n"
" 参照: 99 ページ、セクション 5.14。"
+#: systemv/cupstestppd.c:859
msgid ""
" **FAIL** REQUIRED PageSize\n"
" REF: Pages 99-100, section 5.14."
" **失敗** PageSize は必須\n"
" 参照: 99-100 ページ、セクション 5.14。"
+#: systemv/cupstestppd.c:1098
#, c-format
msgid ""
" **FAIL** REQUIRED PaperDimension for PageSize %s\n"
" 参照: 41 ページ、セクション 5。\n"
" 参照: 103 ページ、セクション 5.15。"
+#: systemv/cupstestppd.c:934
msgid ""
" **FAIL** REQUIRED Product\n"
" REF: Page 62, section 5.3."
" **失敗** Product は必須\n"
" 参照: 62 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:1009
msgid ""
" **FAIL** REQUIRED ShortNickName\n"
" REF: Page 64-65, section 5.3."
" **失敗** ShortNickName は必須\n"
" 参照: 64-65 ページ、セクション 5.3。"
+#: systemv/cupstestppd.c:334 systemv/cupstestppd.c:353
+#: systemv/cupstestppd.c:365
#, c-format
msgid " **FAIL** Unable to open PPD file - %s on line %d."
msgstr ""
" 失敗\n"
" **失敗** PPD ファイルを開けません - %s (%d 行)。"
+#: systemv/cupstestppd.c:1498
#, c-format
msgid " %d ERRORS FOUND"
msgstr " %d 個のエラーが見つかりました"
+#: systemv/cupstestdsc.c:431
msgid " -h Show program usage"
msgstr " -h このプログラムの利用法を表示する"
+#: systemv/cupstestdsc.c:234 systemv/cupstestdsc.c:276
#, c-format
msgid ""
" Bad %%%%BoundingBox: on line %d.\n"
" 不正な %%%%BoundingBox: (%d 行)。\n"
" 参照: 39 ページ、%%%%BoundingBox:"
+#: systemv/cupstestdsc.c:305
#, c-format
msgid ""
" Bad %%%%Page: on line %d.\n"
" 不正な %%%%Page: (%d 行)。\n"
" 参照: 53 ページ、%%%%Page:"
+#: systemv/cupstestdsc.c:218 systemv/cupstestdsc.c:258
#, c-format
msgid ""
" Bad %%%%Pages: on line %d.\n"
" 不正な %%%%Pages: (%d 行)。\n"
" REF: Page 43, %%%%Pages:"
+#: systemv/cupstestdsc.c:176
#, c-format
msgid ""
" Line %d is longer than 255 characters (%d).\n"
" %d 行が 255文字より長くなっています (%d)。\n"
" 参照: 25 ページ、Line Length"
+#: systemv/cupstestdsc.c:192
msgid ""
" Missing %!PS-Adobe-3.0 on first line.\n"
" REF: Page 17, 3.1 Conforming Documents"
" 先頭行に %!PS-Adobe-3.0 がありません。\n"
" 参照: 17 ページ、3.1 Conforming Documents"
+#: systemv/cupstestdsc.c:362
#, c-format
msgid " Missing %%EndComments comment. REF: Page 41, %%EndComments"
msgstr ""
" %%EndComments コメントが見つかりません。\n"
" 参照: 41 ページ、%%EndComments"
+#: systemv/cupstestdsc.c:342
#, c-format
msgid ""
" Missing or bad %%BoundingBox: comment.\n"
" %%BoundingBox: コメントが見つからないか不正です。\n"
" 参照: 39 ページ、%%BoundingBox:"
+#: systemv/cupstestdsc.c:372
#, c-format
msgid ""
" Missing or bad %%Page: comments.\n"
" %%Page: コメントが見つからないか不正です。\n"
" 参照: 53 ページ、%%Page:"
+#: systemv/cupstestdsc.c:352
#, c-format
msgid ""
" Missing or bad %%Pages: comment.\n"
" %%Pages: コメントが見つからないか不正です。\n"
" 参照: 43 ページ、%%Pages:"
+#: systemv/cupstestppd.c:1500
msgid " NO ERRORS FOUND"
msgstr " エラーは見つかりませんでした"
+#: systemv/cupstestdsc.c:395
#, c-format
msgid " Saw %d lines that exceeded 255 characters."
msgstr " 255文字を超える %d 行が見つかりました。"
+#: systemv/cupstestdsc.c:390
#, c-format
msgid " Too many %%BeginDocument comments."
msgstr " %%BeginDocument コメントが多すぎます。"
+#: systemv/cupstestdsc.c:382
#, c-format
msgid " Too many %%EndDocument comments."
msgstr " %%EndDocument コメントが多すぎます。"
+#: systemv/cupstestdsc.c:402
msgid " Warning: file contains binary data."
msgstr " 警告: ファイルにバイナリデータが含まれています。"
+#: systemv/cupstestdsc.c:410
#, c-format
msgid " Warning: no %%EndComments comment in file."
msgstr " 警告: ファイルに %%EndComments コメントがありません。"
+#: systemv/cupstestdsc.c:406
#, c-format
msgid " Warning: obsolete DSC version %.1f in file."
msgstr " 警告: ファイルは時代遅れの DSC バージョン %.1f です。"
+#: test/ippfind.c:2788
msgid " ! expression Unary NOT of expression."
msgstr "! <式> 式を否定する単項演算子。"
+#: test/ippfind.c:2787
msgid " ( expressions ) Group expressions."
msgstr " ( <複数の式> ) グループ化された複数の式。"
+#: systemv/cupsctl.c:210
msgid " --[no-]debug-logging Turn debug logging on/off."
msgstr " --[no-]debug-logging デバッグログの有効/無効を切り替える。"
+#: systemv/cupsctl.c:212
msgid " --[no-]remote-admin Turn remote administration on/off."
msgstr " --[no-]remote-admin リモート管理の有効/無効を切り替える。"
+#: systemv/cupsctl.c:214
msgid " --[no-]remote-any Allow/prevent access from the Internet."
msgstr ""
" --[no-]remote-any インターネットからのアクセスを許可/禁止する。"
+#: systemv/cupsctl.c:216
msgid " --[no-]share-printers Turn printer sharing on/off."
msgstr " --[no-]share-printers プリンター共有の有効/無効を切り替える。"
+#: systemv/cupsctl.c:218
msgid " --[no-]user-cancel-any Allow/prevent users to cancel any job."
msgstr ""
" --[no-]user-cancel-any あらゆるジョブのキャンセルをユーザーに許可/禁止する"
+#: ppdc/ppdc.cxx:450
msgid " --cr End lines with CR (Mac OS 9)."
msgstr " --cr 行末を CR とする (Mac OS 9)。"
+#: ppdc/ppdc.cxx:452
msgid " --crlf End lines with CR + LF (Windows)."
msgstr " --crlf 行末を CR + LF とする (Windows)。"
+#: test/ippfind.c:2769
msgid " --domain regex Match domain to regular expression."
msgstr " --domain <正規表現> ドメインが正規表現にマッチするか。"
+#: test/ippfind.c:2770
msgid ""
" --exec utility [argument ...] ;\n"
" Execute program if true."
" --exec <実行ファイル名> [引数 ...] ;\n"
" 成功した場合、<実行ファイル名>を実行する。"
+#: test/ippfind.c:2790
msgid " --false Always false."
msgstr " --false 常に失敗。"
+#: test/ipptool.c:4806
msgid " --help Show help."
-msgstr ""
+msgstr " --help ヘルプを表示する。"
+#: test/ippfind.c:2752
msgid " --help Show this help."
msgstr " --help このヘルプを表示する。"
+#: test/ippfind.c:2772
msgid " --host regex Match hostname to regular expression."
msgstr " --host <正規表現> ホスト名が正規表現にマッチするか。"
+#: ppdc/ppdc.cxx:454
msgid " --lf End lines with LF (UNIX/Linux/OS X)."
msgstr " --lf 行末を LF とする (UNIX/Linux/OS X)。"
+#: scheduler/cupsfilter.c:1483
msgid " --list-filters List filters that will be used."
-msgstr ""
+msgstr " --list-filters 使用されるフィルターのリストを表示する。"
+#: test/ippfind.c:2774
msgid " --local True if service is local."
msgstr " --local サービスがローカルなら真。"
+#: test/ippfind.c:2773
msgid " --ls List attributes."
msgstr " --ls 属性の一覧を表示する。"
+#: test/ippfind.c:2775
msgid " --name regex Match service name to regular expression."
msgstr " --name <正規表現> サービス名が正規表現とマッチするか。"
+#: test/ippfind.c:2789
msgid " --not expression Unary NOT of expression."
msgstr " --not <式> 式を否定する単項演算子。"
+#: test/ippfind.c:2776
msgid " --path regex Match resource path to regular expression."
msgstr " --path <正規表現> リソースのパスが正規表現とマッチするか。"
+#: test/ippfind.c:2777
msgid " --port number[-number] Match port to number or range."
msgstr ""
" --port 番号[-番号] ポートが指定された番号または範囲とマッチするか。"
+#: test/ippfind.c:2778
msgid " --print Print URI if true."
msgstr " --print 結果が真なら URI を表示する。"
+#: test/ippfind.c:2779
msgid " --print-name Print service name if true."
msgstr " --print-name 結果が真ならサービス名を表示する。"
+#: test/ippfind.c:2780
msgid " --quiet Quietly report match via exit code."
msgstr ""
" --quiet マッチ結果を終了コードで報告し、出力をしない。"
+#: test/ippfind.c:2781
msgid " --remote True if service is remote."
msgstr " --remote サービスがリモートなら真。"
+#: test/ipptool.c:4807
msgid ""
" --stop-after-include-error\n"
" Stop tests after a failed INCLUDE."
msgstr ""
+" --stop-after-include-error\n"
+" INCLUDE が失敗したときテストを停止する。"
+#: test/ippfind.c:2791
msgid " --true Always true."
msgstr " --true 常に真。"
+#: test/ippfind.c:2782
msgid " --txt key True if the TXT record contains the key."
msgstr " --txt <キー名> TXT レコードがキー名を含んでいたら真。"
+#: test/ippfind.c:2783
msgid " --txt-* regex Match TXT record key to regular expression."
msgstr ""
" --txt-* <正規表現> TXT レコードのキーが正規表現とマッチしたら真。"
+#: test/ippfind.c:2784
msgid " --uri regex Match URI to regular expression."
msgstr " --uri <正規表現> URI が正規表現とマッチするか。"
+#: test/ippfind.c:2753
msgid " --version Show program version."
msgstr " --version プログラムのバージョンを表示。"
+#: test/ipptool.c:4809
msgid " --version Show version."
-msgstr ""
+msgstr " --version バージョンを表示する。"
+#: test/ippfind.c:2746 test/ipptool.c:4810
msgid " -4 Connect using IPv4."
msgstr " -4 IPv4 で接続する。"
+#: test/ippfind.c:2747 test/ipptool.c:4811
msgid " -6 Connect using IPv6."
msgstr " -6 IPv6 で接続する。"
+#: test/ipptool.c:4812
msgid " -C Send requests using chunking (default)."
msgstr ""
" -C chunking を用いてリクエストを送る (デフォルト)。"
+#: scheduler/cupsfilter.c:1484
msgid " -D Remove the input file when finished."
msgstr " -D 終了したときに入力ファイルを削除する。"
+#: ppdc/ppdc.cxx:433 ppdc/ppdhtml.cxx:175 ppdc/ppdpo.cxx:255
msgid " -D name=value Set named variable to value."
msgstr ""
" -D name=value name で指定された変数に値 value をセットする。"
+#: systemv/cupsaddsmb.c:285 systemv/cupsctl.c:205
msgid " -E Encrypt the connection."
msgstr " -E 接続を暗号化する。"
+#: test/ipptool.c:4814
msgid " -E Test with HTTP Upgrade to TLS."
msgstr ""
" -E HTTP から TLS へのアップグレードでテストする。"
+#: scheduler/main.c:2149
msgid ""
" -F Run in the foreground but detach from console."
msgstr ""
" -F フォアグラウンドで実行するがコンソールからはデタッ"
"チする。"
+#: systemv/cupsaddsmb.c:286
msgid " -H samba-server Use the named SAMBA server."
msgstr " -H sambaサーバー 指定の SAMBA サーバーを使う。"
+#: test/ipptool.c:4816
msgid " -I Ignore errors."
msgstr " -I エラーを無視する。"
+#: ppdc/ppdc.cxx:435 ppdc/ppdhtml.cxx:177 ppdc/ppdi.cxx:131 ppdc/ppdpo.cxx:257
msgid " -I include-dir Add include directory to search path."
msgstr ""
" -I include-dir インクルードディレクトリーを検索パスに含める。"
+#: systemv/cupstestppd.c:3819
msgid " -I {filename,filters,none,profiles}"
msgstr " -I {filename,filters,none,profiles}"
+#: test/ipptool.c:4817
msgid " -L Send requests using content-length."
msgstr " -L content-length を用いてリクエストを送る。"
+#: test/ipptool.c:4819
msgid ""
" -P filename.plist Produce XML plist to a file and test report to "
"standard output."
-msgstr ""
+msgstr " -P filename.plist XML の plist 形式で書き出しテストリポートを標準出力にする。"
+#: scheduler/cupsfilter.c:1485
msgid " -P filename.ppd Set PPD file."
msgstr " -P filename.ppd PPD ファイルを指定する。"
+#: test/ippfind.c:2756
msgid " -P number[-number] Match port to number or range."
msgstr ""
" -P 番号[-番号] ポートが指定された番号または範囲とマッチするか。"
+#: systemv/cupstestppd.c:3821
msgid " -R root-directory Set alternate root."
msgstr " -R root-directory 別のルートディレクトリーを指定する。"
+#: test/ipptool.c:4820
msgid " -S Test with SSL encryption."
msgstr " -S SSL 暗号化でテストする。"
+#: test/ippfind.c:2748
msgid " -T seconds Set the browse timeout in seconds."
msgstr " -T <秒> ブラウズのタイムアウトを秒で指定する。"
+#: test/ipptool.c:4822
msgid " -T seconds Set the receive/send timeout in seconds."
msgstr " -T seconds 受信/送信タイムアウトを秒で指定する。"
+#: scheduler/cupsfilter.c:1486 systemv/cupsaddsmb.c:288 systemv/cupsctl.c:206
msgid " -U username Specify username."
msgstr " -U username ユーザー名を指定する。"
+#: test/ippfind.c:2750 test/ipptool.c:4824
msgid " -V version Set default IPP version."
msgstr " -V version デフォルトの IPP バージョンを指定する。"
+#: systemv/cupstestppd.c:3822
msgid ""
" -W {all,none,constraints,defaults,duplex,filters,profiles,sizes,"
"translations}"
" -W {all,none,constraints,defaults,duplex,filters,profiles,sizes,"
"translations}"
+#: test/ipptool.c:4826
msgid " -X Produce XML plist instead of plain text."
msgstr " -X プレーンテキストの代わりに XML を用いる。"
+#: test/ippdiscover.c:818
msgid " -a Browse for all services."
msgstr " -a すべてのサービスをブラウズする。"
+#: systemv/cupsaddsmb.c:289
msgid " -a Export all printers."
msgstr " -a すべてのプリンターをエクスポートする。"
+#: test/ipptool.c:4828
msgid " -c Produce CSV output."
-msgstr ""
+msgstr " -c CSV 出力を行う。"
+#: ppdc/ppdc.cxx:437
msgid " -c catalog.po Load the specified message catalog."
msgstr " -c catalog.po 指定したメッセージカタログをロードする。"
+#: scheduler/cupsfilter.c:1487
msgid " -c cups-files.conf Set cups-files.conf file to use."
-msgstr ""
+msgstr " -c cups-files.conf cups-files.conf を利用するよう設定する。"
+#: scheduler/main.c:2147
msgid " -c cupsd.conf Set cupsd.conf file to use."
msgstr " -c cupsd.conf 使用する cupsd.conf ファイルを指定する。"
+#: test/ippdiscover.c:819
msgid " -d domain Browse/resolve in specified domain."
msgstr " -d <ドメイン名> 指定されたドメインでブラウズ/名前解決する。"
+#: test/ipptool.c:4829
msgid " -d name=value Set named variable to value."
msgstr ""
" -d name=value name で指定された変数に値 value をセットする。"
+#: ppdc/ppdc.cxx:439
msgid " -d output-dir Specify the output directory."
msgstr " -d output-dir 出力先ディレクトリーを指定する。"
+#: scheduler/cupsfilter.c:1488
msgid " -d printer Use the named printer."
msgstr " -d printer 指定されたプリンターを利用する。"
+#: test/ippfind.c:2757
msgid " -d regex Match domain to regular expression."
msgstr " -d <正規表現> ドメインが正規表現にマッチするか。"
+#: scheduler/cupsfilter.c:1489
msgid " -e Use every filter from the PPD file."
msgstr ""
" -e PPD ファイルからすべてのフィルターを使用する。"
+#: scheduler/main.c:2148
msgid " -f Run in the foreground."
msgstr " -f フォアグラウンドで実行する。"
+#: test/ipptool.c:4831
msgid " -f filename Set default request filename."
msgstr " -f filename デフォルトのリクエストファイル名を指定する。"
+#: scheduler/main.c:2151
msgid " -h Show this usage message."
msgstr " -h このヘルプメッセージを表示する。"
+#: test/ippfind.c:2758
msgid " -h regex Match hostname to regular expression."
msgstr " -h <正規表現> ホスト名が正規表現にマッチするか。"
+#: systemv/cupsaddsmb.c:290 systemv/cupsctl.c:207
msgid " -h server[:port] Specify server address."
msgstr " -h server[:port] サーバーアドレスを指定する。"
+#: scheduler/cupsfilter.c:1490
msgid " -i mime/type Set input MIME type (otherwise auto-typed)."
msgstr ""
" -i mime/type 入力の MIME タイプを指定する (指定がなければ自動タ"
"イプ)。"
+#: test/ipptool.c:4833
msgid ""
" -i seconds Repeat the last file with the given time interval."
msgstr ""
" -i seconds 最後のファイルを与えられた時間間隔で繰り返す。"
+#: scheduler/cupsfilter.c:1491
msgid ""
" -j job-id[,N] Filter file N from the specified job (default is "
"file 1)."
" -j job-id[,N] フィルターファイル N を指定されたジョブから使用す"
"る (デフォルトは ファイル 1)。"
+#: test/ippfind.c:2759
msgid " -l List attributes."
msgstr " -l 属性の一覧を表示する。"
+#: test/ipptool.c:4835
msgid " -l Produce plain text output."
-msgstr ""
+msgstr " -l プレーンテキスト出力を行う。"
+#: scheduler/main.c:2152
msgid " -l Run cupsd on demand."
-msgstr ""
+msgstr " -l cupsd をオンデマンドで実行する。"
+#: ppdc/ppdc.cxx:441
msgid " -l lang[,lang,...] Specify the output language(s) (locale)."
msgstr " -l lang[,lang,...] 出力言語を指定する。(複数可能)"
+#: ppdc/ppdc.cxx:443
msgid " -m Use the ModelName value as the filename."
msgstr " -m ModelName の値をファイル名として使用する。"
+#: scheduler/cupsfilter.c:1492
msgid ""
" -m mime/type Set output MIME type (otherwise application/pdf)."
msgstr ""
" -m mime/type 出力の MIME タイプを指定する (指定がなければ "
"application/pdf)。"
+#: scheduler/cupsfilter.c:1493
msgid " -n copies Set number of copies."
msgstr " -n copies 部数を指定する。"
+#: test/ipptool.c:4836
msgid ""
" -n count Repeat the last file the given number of times."
msgstr " -n count 最後のファイルを与えられた回数だけ繰り返す。"
+#: test/ippfind.c:2760
msgid " -n regex Match service name to regular expression."
msgstr " -n <正規表現> サービス名が正規表現とマッチするか。"
+#: ppdc/ppdi.cxx:133
msgid ""
" -o filename.drv Set driver information file (otherwise ppdi.drv)."
msgstr ""
" -o filename.drv ドライバー情報ファイルを指定する (指定がなければ "
"ppdi.drv)。"
+#: ppdc/ppdmerge.cxx:364
msgid " -o filename.ppd[.gz] Set output file (otherwise stdout)."
msgstr ""
" -o filename.ppd[.gz] 出力ファイルを指定する (指定がなければ標準出力)。"
+#: scheduler/cupsfilter.c:1494
msgid " -o name=value Set option(s)."
msgstr " -o name=value オプションを指定する。"
+#: test/ippfind.c:2761
msgid " -p Print URI if true."
msgstr " -p 結果が真なら URI を表示する。"
+#: scheduler/cupsfilter.c:1495
msgid " -p filename.ppd Set PPD file."
msgstr " -p filename.ppd PPD ファイルを指定する。"
+#: test/ippdiscover.c:820
msgid " -p program Run specified program for each service."
msgstr ""
" -p <プログラム名> 指定されたプログラムをそれぞれのサービスに対し実行"
"する。"
+#: test/ippfind.c:2762
msgid " -q Quietly report match via exit code."
msgstr ""
" -q マッチ結果を終了コードで報告し、出力をしない。"
+#: systemv/cupstestppd.c:3826 test/ipptool.c:4838
msgid " -q Run silently."
msgstr " -q 詳細は表示しない。"
+#: test/ippfind.c:2763
msgid " -r True if service is remote."
msgstr " -r サービスがリモートなら真。"
+#: systemv/cupstestppd.c:3827
msgid " -r Use 'relaxed' open mode."
msgstr " -r 寛容モードを用いる。"
+#: test/ippfind.c:2764
msgid " -s Print service name if true."
msgstr " -s 結果が真ならサービス名を表示する。"
+#: test/ipptool.c:4839
msgid " -t Produce a test report."
msgstr " -t テストリポートを出力する。"
+#: ppdc/ppdc.cxx:445
msgid " -t Test PPDs instead of generating them."
msgstr " -t PPD を出力しないでテストする。"
+#: scheduler/main.c:2153
msgid " -t Test the configuration file."
msgstr " -t 設定ファイルをテストする。"
+#: test/ippfind.c:2765
msgid " -t key True if the TXT record contains the key."
msgstr " -t <キー名> TXT レコードがキー名を含んでいたら真。"
+#: scheduler/cupsfilter.c:1496
msgid " -t title Set title."
msgstr " -t title タイトルを指定する。"
+#: test/ippdiscover.c:821
msgid " -t type Browse/resolve with specified type."
msgstr " -t タイプ 指定されたタイプでブラウズ/名前解決する。"
+#: scheduler/cupsfilter.c:1497
msgid " -u Remove the PPD file when finished."
msgstr " -u 終了したときに PPD ファイルを削除する。"
+#: test/ippfind.c:2766
msgid " -u regex Match URI to regular expression."
msgstr " -u <正規表現> URI が正規表現とマッチするか。"
+#: systemv/cupsaddsmb.c:291 systemv/cupstestppd.c:3828 test/ipptool.c:4840
+#: ppdc/ppdc.cxx:447 ppdc/ppdpo.cxx:259
msgid " -v Be verbose."
msgstr " -v 冗長出力を行う。"
+#: systemv/cupstestppd.c:3829
msgid " -vv Be very verbose."
msgstr " -vv より冗長な出力を行う。"
+#: test/ippfind.c:2767
msgid ""
" -x utility [argument ...] ;\n"
" Execute program if true."
msgstr ""
" -x <実行ファイル名> [引数 ...] ;\n"
-" 成功した場合、<実行ファイル名>を実行する。"
+" 成功した場合、<実行ファイル名> を実行する。"
+#: ppdc/ppdc.cxx:448
msgid " -z Compress PPD files using GNU zip."
msgstr " -z PPD ファイルを GNU zip を使って圧縮する。"
+#: test/ippfind.c:2810
msgid " IPPFIND_SERVICE_DOMAIN Domain name"
msgstr " IPPFIND_SERVICE_DOMAIN ドメイン名"
+#: test/ippfind.c:2811
msgid ""
" IPPFIND_SERVICE_HOSTNAME\n"
" Fully-qualified domain name"
msgstr ""
" IPPFIND_SERVICE_HOSTNAME\n"
-" 完全修飾ドメイン名(FQDN)"
+" 完全修飾ドメイン名 (FQDN)"
+#: test/ippfind.c:2813
msgid " IPPFIND_SERVICE_NAME Service instance name"
msgstr " IPPFIND_SERVICE_NAME サービスインスタンス名"
+#: test/ippfind.c:2814
msgid " IPPFIND_SERVICE_PORT Port number"
msgstr " IPPFIND_SERVICE_PORT ポート番号"
+#: test/ippfind.c:2815
msgid " IPPFIND_SERVICE_REGTYPE DNS-SD registration type"
msgstr " IPPFIND_SERVICE_REGTYPE DNS-SD 登録タイプ"
+#: test/ippfind.c:2816
msgid " IPPFIND_SERVICE_SCHEME URI scheme"
msgstr " IPPFIND_SERVICE_SCHEME URI スキーム"
+#: test/ippfind.c:2817
msgid " IPPFIND_SERVICE_URI URI"
msgstr " IPPFIND_SERVICE_URI URI"
+#: test/ippfind.c:2818
msgid " IPPFIND_TXT_* Value of TXT record key"
msgstr " IPPFIND_TXT_* TXT レコードキーの値"
+#: test/ippfind.c:2793
msgid ""
" expression --and expression\n"
" Logical AND."
msgstr " <式> --and <式> 論理 AND。"
+#: test/ippfind.c:2795
msgid ""
" expression --or expression\n"
" Logical OR."
msgstr " <式> --or <式> 論理 OR。"
+#: test/ippfind.c:2792
msgid " expression expression Logical AND."
msgstr " <式> <式> 論理 AND。"
+#: test/ippfind.c:2800
msgid " {service_domain} Domain name"
msgstr " {service_domain} ドメイン名"
+#: test/ippfind.c:2801
msgid " {service_hostname} Fully-qualified domain name"
msgstr " {service_hostname} 完全修飾ドメイン名 (FQDN)"
+#: test/ippfind.c:2802
msgid " {service_name} Service instance name"
msgstr " {service_name} サービスインスタンス名"
+#: test/ippfind.c:2803
msgid " {service_port} Port number"
msgstr " {service_port} ポート番号"
+#: test/ippfind.c:2804
msgid " {service_regtype} DNS-SD registration type"
msgstr " {service_regtype} DNS-SD 登録タイプ"
+#: test/ippfind.c:2805
msgid " {service_scheme} URI scheme"
msgstr " {service_scheme} URI スキーム"
+#: test/ippfind.c:2806
msgid " {service_uri} URI"
msgstr " {service_uri} URI"
+#: test/ippfind.c:2807
msgid " {txt_*} Value of TXT record key"
msgstr " {txt_*} TXT レコードキーの値"
+#: test/ippfind.c:2799
msgid " {} URI"
msgstr " {} URI"
+#: systemv/cupstestppd.c:332 systemv/cupstestppd.c:351
+#: systemv/cupstestppd.c:363 systemv/cupstestppd.c:496
+#: systemv/cupstestppd.c:511 systemv/cupstestppd.c:532
+#: systemv/cupstestppd.c:547 systemv/cupstestppd.c:577
+#: systemv/cupstestppd.c:597 systemv/cupstestppd.c:620
+#: systemv/cupstestppd.c:638 systemv/cupstestppd.c:664
+#: systemv/cupstestppd.c:682 systemv/cupstestppd.c:702
+#: systemv/cupstestppd.c:722 systemv/cupstestppd.c:740
+#: systemv/cupstestppd.c:757 systemv/cupstestppd.c:776
+#: systemv/cupstestppd.c:797 systemv/cupstestppd.c:816
+#: systemv/cupstestppd.c:836 systemv/cupstestppd.c:856
+#: systemv/cupstestppd.c:876 systemv/cupstestppd.c:896
+#: systemv/cupstestppd.c:914 systemv/cupstestppd.c:931
+#: systemv/cupstestppd.c:953 systemv/cupstestppd.c:971
+#: systemv/cupstestppd.c:988 systemv/cupstestppd.c:1006
+#: systemv/cupstestppd.c:1022 systemv/cupstestppd.c:1042
+#: systemv/cupstestppd.c:1073 systemv/cupstestppd.c:1095
+#: systemv/cupstestppd.c:1146 systemv/cupstestppd.c:1165
+#: systemv/cupstestppd.c:1209 systemv/cupstestppd.c:1223
+#: systemv/cupstestppd.c:1255 systemv/cupstestppd.c:1282
+#: systemv/cupstestppd.c:1800 systemv/cupstestppd.c:1819
+#: systemv/cupstestppd.c:1837 systemv/cupstestppd.c:1889
+#: systemv/cupstestppd.c:1905 systemv/cupstestppd.c:1942
+#: systemv/cupstestppd.c:1960 systemv/cupstestppd.c:1996
+#: systemv/cupstestppd.c:2010 systemv/cupstestppd.c:2037
+#: systemv/cupstestppd.c:2051 systemv/cupstestppd.c:2097
+#: systemv/cupstestppd.c:2119 systemv/cupstestppd.c:2142
+#: systemv/cupstestppd.c:2159 systemv/cupstestppd.c:2201
+#: systemv/cupstestppd.c:2244 systemv/cupstestppd.c:2291
+#: systemv/cupstestppd.c:2315 systemv/cupstestppd.c:2369
+#: systemv/cupstestppd.c:2385 systemv/cupstestppd.c:2415
+#: systemv/cupstestppd.c:2429 systemv/cupstestppd.c:2455
+#: systemv/cupstestppd.c:2471 systemv/cupstestppd.c:2511
+#: systemv/cupstestppd.c:2525 systemv/cupstestppd.c:2551
+#: systemv/cupstestppd.c:2567 systemv/cupstestppd.c:2597
+#: systemv/cupstestppd.c:2611 systemv/cupstestppd.c:2638
+#: systemv/cupstestppd.c:2655 systemv/cupstestppd.c:2669
+#: systemv/cupstestppd.c:2693 systemv/cupstestppd.c:2710
+#: systemv/cupstestppd.c:2724 systemv/cupstestppd.c:2748
+#: systemv/cupstestppd.c:2765 systemv/cupstestppd.c:2779
+#: systemv/cupstestppd.c:2803 systemv/cupstestppd.c:2820
+#: systemv/cupstestppd.c:2834 systemv/cupstestppd.c:2858
+#: systemv/cupstestppd.c:2872 systemv/cupstestppd.c:2887
+#: systemv/cupstestppd.c:2904 systemv/cupstestppd.c:2960
+#: systemv/cupstestppd.c:2995 systemv/cupstestppd.c:3009
+#: systemv/cupstestppd.c:3037 systemv/cupstestppd.c:3102
+#: systemv/cupstestppd.c:3117 systemv/cupstestppd.c:3156
+#: systemv/cupstestppd.c:3176 systemv/cupstestppd.c:3190
+#: systemv/cupstestppd.c:3407 systemv/cupstestppd.c:3443
+#: systemv/cupstestppd.c:3457 systemv/cupstestppd.c:3503
+#: systemv/cupstestppd.c:3535 systemv/cupstestppd.c:3552
+#: systemv/cupstestppd.c:3575 systemv/cupstestppd.c:3591
+#: systemv/cupstestppd.c:3629 systemv/cupstestppd.c:3770
+#: systemv/cupstestppd.c:3792 systemv/cupstestppd.c:3900
msgid " FAIL"
msgstr " 失敗"
+#: systemv/cupstestppd.c:1306
msgid " PASS"
msgstr " 合格"
+#: cups/ipp.c:5227
#, c-format
msgid "\"%s\": Bad URI value \"%s\" - %s (RFC 2911 section 4.1.5)."
msgstr "\"%s\": URI の値 \"%s\" が誤っています - %s (RFC 2911 4.1.5 節)。"
+#: cups/ipp.c:5238
#, c-format
msgid "\"%s\": Bad URI value \"%s\" - bad length %d (RFC 2911 section 4.1.5)."
msgstr ""
"\"%s\": URI の値 \"%s\" が誤っています - 長さの誤り %d (RFC 2911 4.1.5 節)。"
+#: cups/ipp.c:4858
#, c-format
msgid "\"%s\": Bad attribute name - bad length %d (RFC 2911 section 4.1.3)."
msgstr "\"%s\": 属性名が誤っています - 長さの誤り %d (RFC 2911 4.1.3 節)。"
+#: cups/ipp.c:4850
#, c-format
msgid ""
"\"%s\": Bad attribute name - invalid character (RFC 2911 section 4.1.3)."
msgstr "\"%s\": 属性名が誤っています - 不正な文字 (RFC 2911 4.1.3 節)。"
+#: cups/ipp.c:4876
#, c-format
msgid "\"%s\": Bad boolen value %d (RFC 2911 section 4.1.11)."
msgstr "\"%s\": 真偽値 %d が誤っています (RFC 2911 4.1.11 節)。"
+#: cups/ipp.c:5290
#, c-format
msgid ""
"\"%s\": Bad charset value \"%s\" - bad characters (RFC 2911 section 4.1.7)."
msgstr ""
"\"%s\": charset の値 \"%s\" が誤っています - 不正な文字 (RFC 2911 4.1.7 節)。"
+#: cups/ipp.c:5299
#, c-format
msgid ""
"\"%s\": Bad charset value \"%s\" - bad length %d (RFC 2911 section 4.1.7)."
"\"%s\": charset の値 \"%s\" が誤っています - 不正な長さ %d (RFC 2911 section "
"4.1.7)."
+#: cups/ipp.c:4976
#, c-format
msgid "\"%s\": Bad dateTime UTC hours %u (RFC 2911 section 4.1.14)."
msgstr ""
"\"%s\": dateTime UTC の時間指定 %u が誤っています (RFC 2911 4.1.14 節)."
+#: cups/ipp.c:4984
#, c-format
msgid "\"%s\": Bad dateTime UTC minutes %u (RFC 2911 section 4.1.14)."
msgstr "\"%s\": dateTime UTC の分指定 %u が誤っています (RFC 2911 4.1.14 節)。"
+#: cups/ipp.c:4968
#, c-format
msgid "\"%s\": Bad dateTime UTC sign '%c' (RFC 2911 section 4.1.14)."
msgstr ""
"\"%s\": dateTime UTC の符号指定 '%c' が誤っています (RFC 2911 4.1.14 節)。"
+#: cups/ipp.c:4928
#, c-format
msgid "\"%s\": Bad dateTime day %u (RFC 2911 section 4.1.14)."
msgstr "\"%s\": dateTime の日付指定 %u が誤っています (RFC 2911 4.1.14 節)."
+#: cups/ipp.c:4960
#, c-format
msgid "\"%s\": Bad dateTime deciseconds %u (RFC 2911 section 4.1.14)."
msgstr ""
"\"%s\": dateTime の 0.1 秒の指定 %u が誤っています (RFC 2911 4.1.14 節)。"
+#: cups/ipp.c:4936
#, c-format
msgid "\"%s\": Bad dateTime hours %u (RFC 2911 section 4.1.14)."
msgstr "\"%s\": dateTime の時間指定 %u が誤っています (RFC 2911 4.1.14 節)。"
+#: cups/ipp.c:4944
#, c-format
msgid "\"%s\": Bad dateTime minutes %u (RFC 2911 section 4.1.14)."
msgstr "\"%s\": dateTime の分指定が誤っています %u (RFC 2911 4.1.14 節)。"
+#: cups/ipp.c:4920
#, c-format
msgid "\"%s\": Bad dateTime month %u (RFC 2911 section 4.1.14)."
msgstr "\"%s\": dateTime の月指定 %u が誤っています (RFC 2911 4.1.14 節)。"
+#: cups/ipp.c:4952
#, c-format
msgid "\"%s\": Bad dateTime seconds %u (RFC 2911 section 4.1.14)."
msgstr "\"%s\": 日時の秒指定 %u が誤っています (RFC 2911 4.1.14 節)。"
+#: cups/ipp.c:4890
#, c-format
msgid "\"%s\": Bad enum value %d - out of range (RFC 2911 section 4.1.4)."
msgstr "\"%s\": enum の値 %d が誤っています - 範囲外の値 (RFC 2911 4.1.4 節)。"
+#: cups/ipp.c:5205
#, c-format
msgid ""
"\"%s\": Bad keyword value \"%s\" - bad length %d (RFC 2911 section 4.1.3)."
msgstr ""
"\"%s\": keyword の値 \"%s\" が誤っています - %d (RFC 2911 section 4.1.3)."
+#: cups/ipp.c:5196
#, c-format
msgid ""
"\"%s\": Bad keyword value \"%s\" - invalid character (RFC 2911 section "
msgstr ""
"\"%s\": keyword の値 \"%s\" が誤っています - 不正な文字 (RFC 2911 4.1.3 節)。"
+#: cups/ipp.c:5399
#, c-format
msgid ""
"\"%s\": Bad mimeMediaType value \"%s\" - bad characters (RFC 2911 section "
"\"%s\": mimeMediaType の値 \"%s\" が誤っています - 誤った文字 (RFC 2911 "
"4.1.9 節)。"
+#: cups/ipp.c:5409
#, c-format
msgid ""
"\"%s\": Bad mimeMediaType value \"%s\" - bad length %d (RFC 2911 section "
"\"%s\": mimeMediaType の値 \"%s\" が誤っています - 長さの誤り %d (RFC 2911 "
"4.1.9 節)。"
+#: cups/ipp.c:5167
#, c-format
msgid ""
"\"%s\": Bad name value \"%s\" - bad UTF-8 sequence (RFC 2911 section 4.1.2)."
"\"%s\": name の値 \"%s\" が誤っています - UTF-8 として誤った並び (RFC 2911 "
"4.1.2 節)。"
+#: cups/ipp.c:5176
#, c-format
msgid "\"%s\": Bad name value \"%s\" - bad length %d (RFC 2911 section 4.1.2)."
msgstr ""
"\"%s\": name の値 \"%s\" が誤っています - 誤った長さ %d (RFC 2911 section "
"4.1.2)。"
+#: cups/ipp.c:5345
#, c-format
msgid ""
"\"%s\": Bad naturalLanguage value \"%s\" - bad characters (RFC 2911 section "
"\"%s\": naturalLanguage の値 \"%s\" が誤っています - 誤った文字 (RFC 2911 "
"4.1.8 節)。"
+#: cups/ipp.c:5355
#, c-format
msgid ""
"\"%s\": Bad naturalLanguage value \"%s\" - bad length %d (RFC 2911 section "
"\"%s\": naturalLanguage の値 \"%s\" が誤っています - 誤った長さ %d (RFC 2911 "
"4.1.8 節)。"
+#: cups/ipp.c:4904
#, c-format
msgid ""
"\"%s\": Bad octetString value - bad length %d (RFC 2911 section 4.1.10)."
msgstr ""
"\"%s\": octetString 値が誤っています - 誤った長さ %d (RFC 2911 4.1.10 節)。"
+#: cups/ipp.c:5047
#, c-format
msgid ""
"\"%s\": Bad rangeOfInteger value %d-%d - lower greater than upper (RFC 2911 "
"\"%s\": rangeOfInteger の値 %d-%d が誤っています - 下限が上限よりも大きい "
"(RFC 2911 4.1.13 節)。"
+#: cups/ipp.c:5028
#, c-format
msgid ""
"\"%s\": Bad resolution value %dx%d%s - bad units value (RFC 2911 section "
"\"%s\": resolution の値 %dx%d%s が誤っています - 単位値の誤り (RFC 2911 "
"4.1.15 節)。"
+#: cups/ipp.c:4997
#, c-format
msgid ""
"\"%s\": Bad resolution value %dx%d%s - cross feed resolution must be "
"positive (RFC 2911 section 4.1.15)."
-msgstr ""
-"\"%s\": resolution の値 %dx%d%s が誤っています - 主走査解像道が負 (RFC 2911 "
-"4.1.15 節)。"
+msgstr "\"%s\": resolution の値 %dx%d%s が誤っています - 主走査解像度が負 (RFC 2911 4.1.15 節)。"
+#: cups/ipp.c:5012
#, c-format
msgid ""
"\"%s\": Bad resolution value %dx%d%s - feed resolution must be positive (RFC "
"\"%s\": resolution の値 %dx%d%s が誤っています - 副走査解像度が負 (RFC 2911 "
"4.1.15 節)。"
+#: cups/ipp.c:5109
#, c-format
msgid ""
"\"%s\": Bad text value \"%s\" - bad UTF-8 sequence (RFC 2911 section 4.1.1)."
"\"%s\": text の値 \"%s\" が誤っています - UTF-8 として誤った並び (RFC 2911 "
"4.1.1 節)。"
+#: cups/ipp.c:5118
#, c-format
msgid "\"%s\": Bad text value \"%s\" - bad length %d (RFC 2911 section 4.1.1)."
msgstr ""
"\"%s\": text の値 \"%s\" が誤っています - 不正な長さ %d (RFC 2911 4.1.1 節)。"
+#: cups/ipp.c:5261
#, c-format
msgid ""
"\"%s\": Bad uriScheme value \"%s\" - bad characters (RFC 2911 section 4.1.6)."
"\"%s\": uriScheme の値 \"%s\" が誤っています - 誤った文字 (RFC 2911 4.1.6 "
"節)."
+#: cups/ipp.c:5270
#, c-format
msgid ""
"\"%s\": Bad uriScheme value \"%s\" - bad length %d (RFC 2911 section 4.1.6)."
-msgstr ""
+msgstr "\"%s\": uriScheme の値 \"%s\" が誤っています - 不正な長さ %d (RFC 2911 4.1.6 節)."
+#: berkeley/lpq.c:533
#, c-format
msgid "%-7s %-7.7s %-7d %-31.31s %.0f bytes"
msgstr "%-7s %-7.7s %-7d %-31.31s %.0f バイト"
+#: cups/dest-localization.c:114
#, c-format
msgid "%d x %d mm"
-msgstr ""
+msgstr "%d x %d mm"
+#: cups/dest-localization.c:106
#, c-format
msgid "%g x %g"
-msgstr ""
+msgstr "%g x %g"
+#: cups/dest-localization.c:169 cups/dest-localization.c:176
#, c-format
msgid "%s (%s)"
-msgstr ""
+msgstr "%s (%s)"
+#: cups/dest-localization.c:183
#, c-format
msgid "%s (%s, %s)"
-msgstr ""
+msgstr "%s (%s, %s)"
+#: cups/dest-localization.c:160
#, c-format
msgid "%s (Borderless)"
-msgstr ""
+msgstr "%s (ふちなし)"
+#: cups/dest-localization.c:167 cups/dest-localization.c:174
#, c-format
msgid "%s (Borderless, %s)"
-msgstr ""
+msgstr "%s (ふちなし, %s)"
+#: cups/dest-localization.c:181
#, c-format
msgid "%s (Borderless, %s, %s)"
-msgstr ""
+msgstr "%s (ふちなし, %s, %s)"
+#: systemv/lpstat.c:777
#, c-format
msgid "%s accepting requests since %s"
msgstr "%s は %s からリクエストを受け付けています"
+#: scheduler/ipp.c:9952
#, c-format
msgid "%s cannot be changed."
msgstr "%s は変更できません。"
+#: berkeley/lpc.c:181
#, c-format
msgid "%s is not implemented by the CUPS version of lpc."
msgstr "%s は lpc の CUPS バージョンでは実装されていません。"
+#: berkeley/lpq.c:618
#, c-format
msgid "%s is not ready"
msgstr "%s は準備ができていません"
+#: berkeley/lpq.c:611
#, c-format
msgid "%s is ready"
msgstr "%s は準備ができています"
+#: berkeley/lpq.c:614
#, c-format
msgid "%s is ready and printing"
msgstr "%s は準備ができており印刷しています"
+#: filter/rastertoepson.c:970 filter/rastertohp.c:700
+#: filter/rastertolabel.c:1120
#, c-format
msgid "%s job-id user title copies options [file]"
msgstr "%s ジョブID ユーザー タイトル コピー数 オプション [ファイル]"
+#: systemv/lpstat.c:781
#, c-format
msgid "%s not accepting requests since %s -"
msgstr "%s は %s からリクエストを受け付けていません -"
+#: scheduler/ipp.c:618
#, c-format
msgid "%s not supported."
msgstr "%s はサポートされていません。"
+#: systemv/lpstat.c:792
#, c-format
msgid "%s/%s accepting requests since %s"
msgstr "%s/%s は %s からリクエストを受け付けています"
+#: systemv/lpstat.c:797
#, c-format
msgid "%s/%s not accepting requests since %s -"
msgstr "%s/%s は %s からリクエストを受け付けていません - "
+#: berkeley/lpq.c:526
#, c-format
msgid "%s: %-33.33s [job %d localhost]"
msgstr "%s:%-33.33s [ジョブ %d localhost]"
#. TRANSLATORS: Message is "subject: error"
+#: cups/langprintf.c:77 scheduler/cupsfilter.c:726 systemv/lpadmin.c:791
+#: systemv/lpadmin.c:842 systemv/lpadmin.c:892 systemv/lpadmin.c:948
+#: systemv/lpadmin.c:1046 systemv/lpadmin.c:1098 systemv/lpadmin.c:1154
+#: systemv/lpadmin.c:1463
#, c-format
msgid "%s: %s"
msgstr "%s: %s"
+#: systemv/cancel.c:305 systemv/cancel.c:368
#, c-format
msgid "%s: %s failed: %s"
msgstr "%s: %s に失敗しました: %s"
+#: test/ippfind.c:777 test/ipptool.c:378
#, c-format
msgid "%s: Bad version %s for \"-V\"."
msgstr "%s: -V オプションにおいて %s は不正なバージョンです。"
+#: systemv/cupsaccept.c:68
#, c-format
msgid "%s: Don't know what to do."
msgstr "%s: 何が起きているか不明です。"
+#: berkeley/lpq.c:225 berkeley/lpr.c:358 systemv/lp.c:602
#, c-format
msgid ""
"%s: Error - %s environment variable names non-existent destination \"%s\"."
msgstr "%s: エラー - 環境変数 %s が存在しない宛先 \"%s\" を指しています。"
+#: berkeley/lpq.c:133 berkeley/lpq.c:203 berkeley/lpr.c:230 berkeley/lpr.c:333
+#: systemv/lp.c:157 systemv/lp.c:577 systemv/lp.c:697 systemv/lp.c:746
+#: systemv/lpstat.c:195 systemv/lpstat.c:241 systemv/lpstat.c:332
+#: systemv/lpstat.c:361 systemv/lpstat.c:385 systemv/lpstat.c:444
+#: systemv/lpstat.c:510 systemv/lpstat.c:571 systemv/lpstat.c:696
+#: systemv/lpstat.c:880 systemv/lpstat.c:1141 systemv/lpstat.c:1339
+#: systemv/lpstat.c:1579
#, c-format
msgid "%s: Error - add '/version=1.1' to server name."
msgstr "%s: エラー - '/version=1.1' をサーバー名に付与してください。"
+#: systemv/lp.c:234
#, c-format
msgid "%s: Error - bad job ID."
msgstr "%s: エラー - 不正なジョブ ID です。"
+#: systemv/lp.c:222
#, c-format
msgid "%s: Error - cannot print files and alter jobs simultaneously."
msgstr ""
"%s: エラー - ファイルを印刷できず、ジョブを同時に変えることができません。"
+#: systemv/lp.c:515
#, c-format
msgid "%s: Error - cannot print from stdin if files or a job ID are provided."
msgstr ""
"%s: エラー - ファイルまたはジョブ ID が提供されている場合、標準入力から印刷で"
"きません。 "
+#: systemv/lp.c:464
#, c-format
msgid "%s: Error - expected character set after \"-S\" option."
msgstr "%s: エラー - \"-S\" オプションのあとには文字セットが必要です。"
+#: systemv/lp.c:483
#, c-format
msgid "%s: Error - expected content type after \"-T\" option."
msgstr "%s: エラー - \"-T\" オプションのあとにはコンテンツタイプが必要です。"
+#: berkeley/lpr.c:245
#, c-format
msgid "%s: Error - expected copies after \"-#\" option."
msgstr "%s: エラー - \"-#\" オプションのあとにはコピー数が必要です。"
+#: systemv/lp.c:267
#, c-format
msgid "%s: Error - expected copies after \"-n\" option."
msgstr "%s: エラー - \"-n\" オプションのあとにはコピー数が必要です。"
+#: berkeley/lpr.c:206
#, c-format
msgid "%s: Error - expected destination after \"-P\" option."
msgstr "%s: エラー - \"-P\" オプションのあとには宛先が必要です。"
+#: systemv/lp.c:132
#, c-format
msgid "%s: Error - expected destination after \"-d\" option."
msgstr "%s: エラー - \"-d\" オプションのあとにはプリンター名が必要です。"
+#: systemv/lp.c:171
#, c-format
msgid "%s: Error - expected form after \"-f\" option."
msgstr "%s: エラー - \"-f\" オプションのあとには用紙名が必要です。"
+#: systemv/lp.c:394
#, c-format
msgid "%s: Error - expected hold name after \"-H\" option."
msgstr "%s: エラー - \"-H\" オプションのあとにはホールド名が必要です。"
+#: berkeley/lpr.c:100
#, c-format
msgid "%s: Error - expected hostname after \"-H\" option."
msgstr "%s: エラー - \"-H\" オプションのあとにはホスト名が必要です。"
+#: berkeley/lpq.c:169 berkeley/lprm.c:123 systemv/cancel.c:124
+#: systemv/cupsaccept.c:123 systemv/lp.c:192 systemv/lpstat.c:266
#, c-format
msgid "%s: Error - expected hostname after \"-h\" option."
msgstr "%s: エラー - \"-h\" オプションのあとにはホスト名が必要です。"
+#: systemv/lp.c:374
#, c-format
msgid "%s: Error - expected mode list after \"-y\" option."
msgstr "%s: エラー - \"-y\" オプションのあとにはモードリストが必要です。"
+#: berkeley/lpr.c:268
#, c-format
msgid "%s: Error - expected name after \"-%c\" option."
msgstr "%s: エラー - \"-%c\" オプションのあとには名前が必要です。"
+#: berkeley/lpr.c:150 systemv/lp.c:291
#, c-format
msgid "%s: Error - expected option=value after \"-o\" option."
msgstr "%s: エラー - \"-o\" オプションのあとには オプション=値 が必要です。"
+#: systemv/lp.c:444
#, c-format
msgid "%s: Error - expected page list after \"-P\" option."
msgstr "%s: エラー - \"-P\" オプションのあとにはページリストが必要です。"
+#: systemv/lp.c:311
#, c-format
msgid "%s: Error - expected priority after \"-%c\" option."
msgstr "%s: エラー - \"-%c\" オプションのあとには優先度が必要です。"
+#: systemv/cupsaccept.c:141
#, c-format
msgid "%s: Error - expected reason text after \"-r\" option."
msgstr "%s: エラー - \"-r\" のあとには理由のテキストが必要です。"
+#: systemv/lp.c:357
#, c-format
msgid "%s: Error - expected title after \"-t\" option."
msgstr "%s: エラー - \"-t\" オプションのあとにはタイトルが必要です。"
+#: berkeley/lpq.c:97 berkeley/lpr.c:81 berkeley/lprm.c:104 systemv/cancel.c:95
+#: systemv/cupsaccept.c:101 systemv/lp.c:110 systemv/lpadmin.c:424
+#: systemv/lpstat.c:124
#, c-format
msgid "%s: Error - expected username after \"-U\" option."
msgstr "%s: エラー - \"-U\" オプションのあとにはユーザー名が必要です。"
+#: systemv/cancel.c:145
#, c-format
msgid "%s: Error - expected username after \"-u\" option."
msgstr "%s: エラー - \"-u\" オプションのあとにはユーザー名が必要です。"
+#: berkeley/lpr.c:122
#, c-format
msgid "%s: Error - expected value after \"-%c\" option."
msgstr "%s: エラー - \"-%c\" オプションのあとには値が必要です。"
+#: systemv/lpstat.c:144 systemv/lpstat.c:158
#, c-format
msgid ""
"%s: Error - need \"completed\", \"not-completed\", or \"all\" after \"-W\" "
"%s: エラー - \"-W\" オプションのあとには、\"completed\"、\"not-completed"
"\"、\"all\" のいずれかが必要です。"
+#: berkeley/lpq.c:230 berkeley/lpr.c:363 systemv/lp.c:607
#, c-format
msgid "%s: Error - no default destination available."
msgstr "%s: エラー - 利用可能なデフォルトの宛先がありません。"
+#: systemv/lp.c:333
#, c-format
msgid "%s: Error - priority must be between 1 and 100."
msgstr "%s: エラー - 優先度は 1 から 100 の間である必要があります。"
+#: berkeley/lpr.c:366 systemv/lp.c:610
#, c-format
msgid "%s: Error - scheduler not responding."
msgstr "%s: エラー - スケジューラーが応答していません。"
+#: berkeley/lpr.c:311 systemv/lp.c:547
#, c-format
msgid "%s: Error - too many files - \"%s\"."
msgstr "%s: エラー - ファイルが多すぎます - \"%s\""
+#: berkeley/lpr.c:293 systemv/lp.c:530
#, c-format
msgid "%s: Error - unable to access \"%s\" - %s"
msgstr "%s: エラー - \"%s\" にアクセスできません - %s"
+#: berkeley/lpr.c:409 systemv/lp.c:641
#, c-format
msgid "%s: Error - unable to queue from stdin - %s."
msgstr "%s: エラー - 標準入力からキューにデータを入力できません。 - %s"
+#: berkeley/lprm.c:87 berkeley/lprm.c:172 systemv/cancel.c:222
#, c-format
msgid "%s: Error - unknown destination \"%s\"."
msgstr "%s: エラー - \"%s\" は未知の宛先です。"
+#: berkeley/lpq.c:137
#, c-format
msgid "%s: Error - unknown destination \"%s/%s\"."
msgstr "%s: エラー - \"%s/%s\" は未知の宛先です。"
+#: berkeley/lpr.c:279 berkeley/lprm.c:139 systemv/cancel.c:163
+#: systemv/cupsaccept.c:164 systemv/lp.c:506 systemv/lpstat.c:456
#, c-format
msgid "%s: Error - unknown option \"%c\"."
msgstr "%s: エラー - '%c' は未知のオプションです。"
+#: systemv/cupsaccept.c:157 systemv/lp.c:497
#, c-format
msgid "%s: Error - unknown option \"%s\"."
msgstr "%s: エラー - '%s' は未知のオプションです。"
+#: systemv/lp.c:211
#, c-format
msgid "%s: Expected job ID after \"-i\" option."
msgstr "%s: '-i' オプションのあとにはジョブ ID が必要です。"
+#: systemv/lpstat.c:514 systemv/lpstat.c:554
#, c-format
msgid "%s: Invalid destination name in list \"%s\"."
msgstr "%s: リスト \"%s\" に無効な宛先名があります。"
+#: scheduler/cupsfilter.c:579
#, c-format
msgid "%s: Invalid filter string \"%s\"."
msgstr "%s: 無効なフィルター文字列です \"%s\""
+#: test/ipptool.c:309
#, c-format
msgid "%s: Missing filename for \"-P\"."
-msgstr ""
+msgstr "%s: \"-P\" にファイル名がありません。"
+#: test/ippfind.c:749 test/ipptool.c:346
#, c-format
msgid "%s: Missing timeout for \"-T\"."
msgstr "%s: \"-T\" オプションにタイムアウトが設定されていません。"
+#: test/ippfind.c:762 test/ipptool.c:360
#, c-format
msgid "%s: Missing version for \"-V\"."
msgstr "%s: \"-V\" オプションにバージョンの指定がありません。"
+#: systemv/lp.c:421
#, c-format
msgid "%s: Need job ID (\"-i jobid\") before \"-H restart\"."
msgstr "%s: '-H restart' の前にはジョブ ID ('-i ジョブID') が必要です。"
+#: scheduler/cupsfilter.c:451
#, c-format
msgid "%s: No filter to convert from %s/%s to %s/%s."
msgstr "%s: %s/%s から %s/%s に変換するフィルターがありません。"
+#: systemv/cupsaccept.c:198
#, c-format
msgid "%s: Operation failed: %s"
msgstr "%s: 操作に失敗しました: %s"
+#: berkeley/lpq.c:83 berkeley/lpr.c:67 berkeley/lprm.c:67 systemv/cancel.c:82
+#: systemv/cupsaccept.c:88 systemv/cupsaddsmb.c:86 systemv/lp.c:96
+#: systemv/lpadmin.c:225 systemv/lpinfo.c:88 systemv/lpmove.c:73
+#: systemv/lpstat.c:88 test/ipptool.c:291 test/ipptool.c:335
#, c-format
msgid "%s: Sorry, no encryption support."
msgstr "%s: 残念ながら、暗号化サポートはコンパイル時に組み込まれていません。"
+#: berkeley/lpq.c:284 scheduler/cupsfilter.c:1275 systemv/cancel.c:245
+#: systemv/cupsaddsmb.c:144 systemv/cupsaddsmb.c:171
#, c-format
msgid "%s: Unable to connect to server."
msgstr "%s: サーバーに接続できません"
+#: systemv/cancel.c:328
#, c-format
msgid "%s: Unable to contact server."
msgstr "%s: サーバーに連絡できません。"
+#: scheduler/cupsfilter.c:416
#, c-format
msgid "%s: Unable to determine MIME type of \"%s\"."
msgstr "%s: \"%s\" の MIME タイプを判別できません。"
+#: test/ipptool.c:318
#, c-format
msgid "%s: Unable to open \"%s\": %s"
-msgstr ""
+msgstr "%s: \"%s\" を開けません: %s"
+#: ppdc/ppdmerge.cxx:90
#, c-format
msgid "%s: Unable to open %s: %s"
msgstr "%s: %s を開けません: %s"
+#: scheduler/cupsfilter.c:674 ppdc/ppdmerge.cxx:106
#, c-format
msgid "%s: Unable to open PPD file: %s on line %d."
msgstr "%s: PPD ファイルを開けません: %s の %d 行目"
+#: scheduler/cupsfilter.c:383
#, c-format
msgid "%s: Unable to read MIME database from \"%s\" or \"%s\"."
msgstr ""
"%s: \"%s\" または \"%s\" から MIME データベースを読み取ることができません。"
+#: berkeley/lpq.c:140 systemv/lpstat.c:575
#, c-format
msgid "%s: Unknown destination \"%s\"."
msgstr "%s: \"%s\" は未知の宛先です。"
+#: scheduler/cupsfilter.c:428
#, c-format
msgid "%s: Unknown destination MIME type %s/%s."
msgstr "%s: %s/%s は未知の宛先 MIME タイプです。"
+#: scheduler/cupsfilter.c:1479
#, c-format
msgid "%s: Unknown option \"%c\"."
msgstr "%s: '%c' は未知のオプションです。"
+#: test/ippfind.c:648
#, c-format
msgid "%s: Unknown option \"%s\"."
msgstr "%s: \"%s\" は未知のオプションです。"
+#: test/ippfind.c:928
#, c-format
msgid "%s: Unknown option \"-%c\"."
msgstr "%s: \"-%c\" は未知のオプションです。"
+#: scheduler/cupsfilter.c:408
#, c-format
msgid "%s: Unknown source MIME type %s/%s."
msgstr "%s: %s/%s は未知のソース MIME タイプです。"
+#: berkeley/lpr.c:136
#, c-format
msgid ""
"%s: Warning - \"%c\" format modifier not supported - output may not be "
"%s: 警告 - '%c' 形式修飾子はサポートされていません - 出力は正しくないものにな"
"るかもしれません。"
+#: systemv/lp.c:471
#, c-format
msgid "%s: Warning - character set option ignored."
msgstr "%s: 警告 - 文字セットオプションは無視されます。"
+#: systemv/lp.c:490
#, c-format
msgid "%s: Warning - content type option ignored."
msgstr "%s: 警告 - コンテンツタイプオプションは無視されます。"
+#: systemv/lp.c:178
#, c-format
msgid "%s: Warning - form option ignored."
msgstr "%s: 警告 - 用紙オプションは無視されます。"
+#: systemv/lp.c:381
#, c-format
msgid "%s: Warning - mode option ignored."
msgstr "%s: 警告 - モードオプションは無視されます。"
+#: ppdc/sample.c:305
msgid "-1"
msgstr "-1"
+#: ppdc/sample.c:296
msgid "-10"
msgstr "-10"
+#: ppdc/sample.c:388
msgid "-100"
msgstr "-100"
+#: ppdc/sample.c:387
msgid "-105"
msgstr "-105"
+#: ppdc/sample.c:295
msgid "-11"
msgstr "-11"
+#: ppdc/sample.c:386
msgid "-110"
msgstr "-110"
+#: ppdc/sample.c:385
msgid "-115"
msgstr "-115"
+#: ppdc/sample.c:294
msgid "-12"
msgstr "-12"
+#: ppdc/sample.c:384
msgid "-120"
msgstr "-120"
+#: ppdc/sample.c:293
msgid "-13"
msgstr "-13"
+#: ppdc/sample.c:292
msgid "-14"
msgstr "-14"
+#: ppdc/sample.c:291
msgid "-15"
msgstr "-15"
+#: ppdc/sample.c:304
msgid "-2"
msgstr "-2"
+#: ppdc/sample.c:404
msgid "-20"
msgstr "-20"
+#: ppdc/sample.c:403
msgid "-25"
msgstr "-25"
+#: ppdc/sample.c:303
msgid "-3"
msgstr "-3"
+#: ppdc/sample.c:402
msgid "-30"
msgstr "-30"
+#: ppdc/sample.c:401
msgid "-35"
msgstr "-35"
+#: ppdc/sample.c:302
msgid "-4"
msgstr "-4"
+#: ppdc/sample.c:400
msgid "-40"
msgstr "-40"
+#: ppdc/sample.c:399
msgid "-45"
msgstr "-45"
+#: ppdc/sample.c:301
msgid "-5"
msgstr "-5"
+#: ppdc/sample.c:398
msgid "-50"
msgstr "-50"
+#: ppdc/sample.c:397
msgid "-55"
msgstr "-55"
+#: ppdc/sample.c:300
msgid "-6"
msgstr "-6"
+#: ppdc/sample.c:396
msgid "-60"
msgstr "-60"
+#: ppdc/sample.c:395
msgid "-65"
msgstr "-65"
+#: ppdc/sample.c:299
msgid "-7"
msgstr "-7"
+#: ppdc/sample.c:394
msgid "-70"
msgstr "-70"
+#: ppdc/sample.c:393
msgid "-75"
msgstr "-75"
+#: ppdc/sample.c:298
msgid "-8"
msgstr "-8"
+#: ppdc/sample.c:392
msgid "-80"
msgstr "-80"
+#: ppdc/sample.c:391
msgid "-85"
msgstr "-85"
+#: ppdc/sample.c:297
msgid "-9"
msgstr "-9"
+#: ppdc/sample.c:390
msgid "-90"
msgstr "-90"
+#: ppdc/sample.c:389
msgid "-95"
msgstr "-95"
+#: ppdc/sample.c:306
msgid "0"
msgstr "0"
+#: ppdc/sample.c:307
msgid "1"
msgstr "1"
+#: ppdc/sample.c:379
msgid "1 inch/sec."
msgstr "1 インチ/秒"
+#: ppdc/sample.c:172
msgid "1.25x0.25\""
msgstr "1.25x0.25 インチ"
+#: ppdc/sample.c:173
msgid "1.25x2.25\""
msgstr "1.25x2.25 インチ"
+#: ppdc/sample.c:427
msgid "1.5 inch/sec."
msgstr "1.5 インチ/秒"
+#: ppdc/sample.c:174
msgid "1.50x0.25\""
msgstr "1.50x0.25 インチ"
+#: ppdc/sample.c:175
msgid "1.50x0.50\""
msgstr "1.50x0.50 インチ"
+#: ppdc/sample.c:176
msgid "1.50x1.00\""
msgstr "1.50x1.00 インチ"
+#: ppdc/sample.c:177
msgid "1.50x2.00\""
msgstr "1.50x2.00 インチ"
+#: ppdc/sample.c:316
msgid "10"
msgstr "10"
+#: ppdc/sample.c:438
msgid "10 inches/sec."
msgstr "10 インチ/秒"
+#: ppdc/sample.c:6
msgid "10 x 11"
msgstr "10 x 11 インチ"
+#: ppdc/sample.c:7
msgid "10 x 13"
msgstr "10 x 13 インチ"
+#: ppdc/sample.c:8
msgid "10 x 14"
msgstr "10 x 14 インチ"
+#: ppdc/sample.c:418
msgid "100"
msgstr "100"
+#: ppdc/sample.c:329
msgid "100 mm/sec."
msgstr "100 ミリメートル/秒"
+#: ppdc/sample.c:419
msgid "105"
msgstr "105"
+#: ppdc/sample.c:317
msgid "11"
msgstr "11"
+#: ppdc/sample.c:439
msgid "11 inches/sec."
msgstr "11 インチ/秒"
+#: ppdc/sample.c:420
msgid "110"
msgstr "110"
+#: ppdc/sample.c:421
msgid "115"
msgstr "115"
+#: ppdc/sample.c:318
msgid "12"
msgstr "12"
+#: ppdc/sample.c:440
msgid "12 inches/sec."
msgstr "12 インチ/秒"
+#: ppdc/sample.c:9
msgid "12 x 11"
msgstr "12 x 11 インチ"
+#: ppdc/sample.c:422
msgid "120"
msgstr "120"
+#: ppdc/sample.c:330
msgid "120 mm/sec."
msgstr "120 ミリメートル/秒"
+#: ppdc/sample.c:243
msgid "120x60dpi"
msgstr "120x60dpi"
+#: ppdc/sample.c:249
msgid "120x72dpi"
msgstr "120x72dpi"
+#: ppdc/sample.c:319
msgid "13"
msgstr "13"
+#: ppdc/sample.c:232
msgid "136dpi"
msgstr "136dpi"
+#: ppdc/sample.c:320
msgid "14"
msgstr "14"
+#: ppdc/sample.c:321
msgid "15"
msgstr "15"
+#: ppdc/sample.c:323
msgid "15 mm/sec."
msgstr "15 ミリメートル/秒"
+#: ppdc/sample.c:10
msgid "15 x 11"
msgstr "15 x 11 インチ"
+#: ppdc/sample.c:331
msgid "150 mm/sec."
msgstr "150 ミリメートル/秒"
+#: ppdc/sample.c:278
msgid "150dpi"
msgstr "150dpi"
+#: ppdc/sample.c:363
msgid "16"
msgstr "16"
+#: ppdc/sample.c:364
msgid "17"
msgstr "17"
+#: ppdc/sample.c:365
msgid "18"
msgstr "18"
+#: ppdc/sample.c:244
msgid "180dpi"
msgstr "180dpi"
+#: ppdc/sample.c:366
msgid "19"
msgstr "19"
+#: ppdc/sample.c:308
msgid "2"
msgstr "2"
+#: ppdc/sample.c:380
msgid "2 inches/sec."
msgstr "2 インチ/秒"
+#: ppdc/sample.c:262
msgid "2-Sided Printing"
msgstr "両面印刷"
+#: ppdc/sample.c:178
msgid "2.00x0.37\""
msgstr "2.00x0.37 インチ"
+#: ppdc/sample.c:179
msgid "2.00x0.50\""
msgstr "2.00x0.50 インチ"
+#: ppdc/sample.c:180
msgid "2.00x1.00\""
msgstr "2.00x1.00 インチ"
+#: ppdc/sample.c:181
msgid "2.00x1.25\""
msgstr "2.00x1.25 インチ"
+#: ppdc/sample.c:182
msgid "2.00x2.00\""
msgstr "2.00x2.00 インチ"
+#: ppdc/sample.c:183
msgid "2.00x3.00\""
msgstr "2.00x3.00 インチ"
+#: ppdc/sample.c:184
msgid "2.00x4.00\""
msgstr "2.00x4.00 インチ"
+#: ppdc/sample.c:185
msgid "2.00x5.50\""
msgstr "2.00x5.50 インチ"
+#: ppdc/sample.c:186
msgid "2.25x0.50\""
msgstr "2.25x0.50 インチ"
+#: ppdc/sample.c:187
msgid "2.25x1.25\""
msgstr "2.25x1.25 インチ"
+#: ppdc/sample.c:188
msgid "2.25x4.00\""
msgstr "2.25x4.00 インチ"
+#: ppdc/sample.c:189
msgid "2.25x5.50\""
msgstr "2.25x5.50 インチ"
+#: ppdc/sample.c:190
msgid "2.38x5.50\""
msgstr "2.38x5.50 インチ"
+#: ppdc/sample.c:428
msgid "2.5 inches/sec."
msgstr "2.5 インチ/秒"
+#: ppdc/sample.c:191
msgid "2.50x1.00\""
msgstr "2.50x1.00 インチ"
+#: ppdc/sample.c:192
msgid "2.50x2.00\""
msgstr "2.50x2.00 インチ"
+#: ppdc/sample.c:193
msgid "2.75x1.25\""
msgstr "2.75x1.25 インチ"
+#: ppdc/sample.c:194
msgid "2.9 x 1\""
msgstr "2.9 x 1 インチ"
+#: ppdc/sample.c:367
msgid "20"
msgstr "20"
+#: ppdc/sample.c:324
msgid "20 mm/sec."
msgstr "20 ミリメートル/秒"
+#: ppdc/sample.c:332
msgid "200 mm/sec."
msgstr "200 ミリメートル/秒"
+#: ppdc/sample.c:233
msgid "203dpi"
msgstr "203dpi"
+#: ppdc/sample.c:368
msgid "21"
msgstr "21"
+#: ppdc/sample.c:369
msgid "22"
msgstr "22"
+#: ppdc/sample.c:370
msgid "23"
msgstr "23"
+#: ppdc/sample.c:371
msgid "24"
msgstr "24"
+#: ppdc/sample.c:241
msgid "24-Pin Series"
msgstr "24 ピンシリーズ"
+#: ppdc/sample.c:250
msgid "240x72dpi"
msgstr "240x72dpi"
+#: ppdc/sample.c:372
msgid "25"
msgstr "25"
+#: ppdc/sample.c:333
msgid "250 mm/sec."
msgstr "250 ミリメートル/秒"
+#: ppdc/sample.c:373
msgid "26"
msgstr "26"
+#: ppdc/sample.c:374
msgid "27"
msgstr "27"
+#: ppdc/sample.c:375
msgid "28"
msgstr "28"
+#: ppdc/sample.c:376
msgid "29"
msgstr "29"
+#: ppdc/sample.c:309
msgid "3"
msgstr "3"
+#: ppdc/sample.c:381
msgid "3 inches/sec."
msgstr "3 インチ/秒"
+#: ppdc/sample.c:3
msgid "3 x 5"
msgstr "3 x 5"
+#: ppdc/sample.c:195
msgid "3.00x1.00\""
msgstr "3.00x1.00 インチ"
+#: ppdc/sample.c:196
msgid "3.00x1.25\""
msgstr "3.00x1.25 インチ"
+#: ppdc/sample.c:197
msgid "3.00x2.00\""
msgstr "3.00x2.00 インチ"
+#: ppdc/sample.c:198
msgid "3.00x3.00\""
msgstr "3.00x3.00インチ"
+#: ppdc/sample.c:199
msgid "3.00x5.00\""
msgstr "3.00x5.00 インチ"
+#: ppdc/sample.c:200
msgid "3.25x2.00\""
msgstr "3.25x2.00 インチ"
+#: ppdc/sample.c:201
msgid "3.25x5.00\""
msgstr "3.25x5.00 インチ"
+#: ppdc/sample.c:202
msgid "3.25x5.50\""
msgstr "3.25x5.50 インチ"
+#: ppdc/sample.c:203
msgid "3.25x5.83\""
msgstr "3.25x5.83 インチ"
+#: ppdc/sample.c:204
msgid "3.25x7.83\""
msgstr "3.25x7.83 インチ"
+#: ppdc/sample.c:4
msgid "3.5 x 5"
msgstr "3.5 x 5"
+#: ppdc/sample.c:171
msgid "3.5\" Disk"
msgstr "3.5 インチディスク"
+#: ppdc/sample.c:205
msgid "3.50x1.00\""
msgstr "3.50x1.00 インチ"
+#: ppdc/sample.c:377
msgid "30"
msgstr "30"
+#: ppdc/sample.c:325
msgid "30 mm/sec."
msgstr "30 ミリメートル/秒"
+#: ppdc/sample.c:334
msgid "300 mm/sec."
msgstr "300 ミリメートル/秒"
+#: ppdc/sample.c:234
msgid "300dpi"
msgstr "300dpi"
+#: ppdc/sample.c:405
msgid "35"
msgstr "35"
+#: ppdc/sample.c:246
msgid "360dpi"
msgstr "360dpi"
+#: ppdc/sample.c:245
msgid "360x180dpi"
msgstr "360x180dpi"
+#: ppdc/sample.c:310
msgid "4"
msgstr "4"
+#: ppdc/sample.c:382
msgid "4 inches/sec."
msgstr "4 インチ/秒"
+#: ppdc/sample.c:206
msgid "4.00x1.00\""
msgstr "4.00x1.00 インチ"
+#: ppdc/sample.c:214
msgid "4.00x13.00\""
msgstr "4.00x13.00 インチ"
+#: ppdc/sample.c:207
msgid "4.00x2.00\""
msgstr "4.00x2.00 インチ"
+#: ppdc/sample.c:208
msgid "4.00x2.50\""
msgstr "4.00x2.50 インチ"
+#: ppdc/sample.c:209
msgid "4.00x3.00\""
msgstr "4.00x3.00 インチ"
+#: ppdc/sample.c:210
msgid "4.00x4.00\""
msgstr "4.00x4.00 インチ"
+#: ppdc/sample.c:211
msgid "4.00x5.00\""
msgstr "4.00x5.00 インチ"
+#: ppdc/sample.c:212
msgid "4.00x6.00\""
msgstr "4.00x6.00 インチ"
+#: ppdc/sample.c:213
msgid "4.00x6.50\""
msgstr "4.00x6.50 インチ"
+#: ppdc/sample.c:406
msgid "40"
msgstr "40"
+#: ppdc/sample.c:326
msgid "40 mm/sec."
msgstr "40 ミリメートル/秒"
+#: ppdc/sample.c:407
msgid "45"
msgstr "45"
+#: ppdc/sample.c:311
msgid "5"
msgstr "5"
+#: ppdc/sample.c:432
msgid "5 inches/sec."
msgstr "5 インチ/秒"
+#: ppdc/sample.c:5
msgid "5 x 7"
msgstr "5 x 7 インチ"
+#: ppdc/sample.c:408
msgid "50"
msgstr "50"
+#: ppdc/sample.c:409
msgid "55"
msgstr "55"
+#: ppdc/sample.c:312
msgid "6"
msgstr "6"
+#: ppdc/sample.c:433
msgid "6 inches/sec."
msgstr "6 インチ/秒"
+#: ppdc/sample.c:215
msgid "6.00x1.00\""
msgstr "6.00x1.00 インチ"
+#: ppdc/sample.c:216
msgid "6.00x2.00\""
msgstr "6.00x2.00 インチ"
+#: ppdc/sample.c:217
msgid "6.00x3.00\""
msgstr "6.00x3.00 インチ"
+#: ppdc/sample.c:218
msgid "6.00x4.00\""
msgstr "6.00x4.00 インチ"
+#: ppdc/sample.c:219
msgid "6.00x5.00\""
msgstr "6.00x5.00 インチ"
+#: ppdc/sample.c:220
msgid "6.00x6.00\""
msgstr "6.00x6.00 インチ"
+#: ppdc/sample.c:221
msgid "6.00x6.50\""
msgstr "6.00x6.50 インチ"
+#: ppdc/sample.c:410
msgid "60"
msgstr "60"
+#: ppdc/sample.c:327
msgid "60 mm/sec."
msgstr "60 ミリメートル/秒"
+#: ppdc/sample.c:253
msgid "600dpi"
msgstr "600dpi"
+#: ppdc/sample.c:242
msgid "60dpi"
msgstr "60dpi"
+#: ppdc/sample.c:248
msgid "60x72dpi"
msgstr "60x72dpi"
+#: ppdc/sample.c:411
msgid "65"
msgstr "65"
+#: ppdc/sample.c:313
msgid "7"
msgstr "7"
+#: ppdc/sample.c:435
msgid "7 inches/sec."
msgstr "7 インチ/秒"
+#: ppdc/sample.c:11
msgid "7 x 9"
msgstr "7 x 9 インチ"
+#: ppdc/sample.c:412
msgid "70"
msgstr "70"
+#: ppdc/sample.c:413
msgid "75"
msgstr "75"
+#: ppdc/sample.c:314
msgid "8"
msgstr "8"
+#: ppdc/sample.c:436
msgid "8 inches/sec."
msgstr "8 インチ/秒"
+#: ppdc/sample.c:12
msgid "8 x 10"
msgstr "8 x 10 インチ"
+#: ppdc/sample.c:222
msgid "8.00x1.00\""
msgstr "8.00x1.00 インチ"
+#: ppdc/sample.c:223
msgid "8.00x2.00\""
msgstr "8.00x2.00 インチ"
+#: ppdc/sample.c:224
msgid "8.00x3.00\""
msgstr "8.00x3.00 インチ"
+#: ppdc/sample.c:225
msgid "8.00x4.00\""
msgstr "8.00x4.00 インチ"
+#: ppdc/sample.c:226
msgid "8.00x5.00\""
msgstr "8.00x5.00 インチ"
+#: ppdc/sample.c:227
msgid "8.00x6.00\""
msgstr "8.00x6.00 インチ"
+#: ppdc/sample.c:228
msgid "8.00x6.50\""
msgstr "8.00x6.50 インチ"
+#: ppdc/sample.c:414
msgid "80"
msgstr "80"
+#: ppdc/sample.c:328
msgid "80 mm/sec."
msgstr "80 ミリメートル/秒"
+#: ppdc/sample.c:415
msgid "85"
msgstr "85"
+#: ppdc/sample.c:315
msgid "9"
msgstr "9"
+#: ppdc/sample.c:437
msgid "9 inches/sec."
msgstr "9 インチ/秒"
+#: ppdc/sample.c:13
msgid "9 x 11"
msgstr "9 x 11 インチ"
+#: ppdc/sample.c:14
msgid "9 x 12"
msgstr "9 x 12 インチ"
+#: ppdc/sample.c:247
msgid "9-Pin Series"
msgstr "9 ピンシリーズ"
+#: ppdc/sample.c:416
msgid "90"
msgstr "90"
+#: ppdc/sample.c:417
msgid "95"
msgstr "95"
+#: berkeley/lpc.c:205
msgid "?Invalid help command unknown."
msgstr "?無効なヘルプコマンドです"
+#: cgi-bin/admin.c:2348
msgid "A Samba password is required to export printer drivers"
msgstr ""
"プリンタードライバーをエクスポートするには Samba のパスワードが必要です。"
+#: cgi-bin/admin.c:2344
msgid "A Samba username is required to export printer drivers"
msgstr ""
"プリンタードライバーをエクスポートするには、Samba のユーザー名が必要です。"
+#: scheduler/ipp.c:2274
#, c-format
msgid "A class named \"%s\" already exists."
msgstr "\"%s\" という名前のクラスはすでに存在します。"
+#: scheduler/ipp.c:916
#, c-format
msgid "A printer named \"%s\" already exists."
msgstr "\"%s\" という名前のプリンターはすでに存在します。"
+#: ppdc/sample.c:15
msgid "A0"
msgstr "A0"
+#: ppdc/sample.c:16
msgid "A0 Long Edge"
msgstr "A0 長辺送り"
+#: ppdc/sample.c:17
msgid "A1"
msgstr "A1"
+#: ppdc/sample.c:18
msgid "A1 Long Edge"
msgstr "A1 長辺送り"
+#: ppdc/sample.c:37
msgid "A10"
msgstr "A10"
+#: ppdc/sample.c:19
msgid "A2"
msgstr "A2"
+#: ppdc/sample.c:20
msgid "A2 Long Edge"
msgstr "A2 長辺送り"
+#: ppdc/sample.c:21
msgid "A3"
msgstr "A3"
+#: ppdc/sample.c:22
msgid "A3 Long Edge"
msgstr "A3 長辺送り"
+#: ppdc/sample.c:23
msgid "A3 Oversize"
msgstr "A3 (特大)"
+#: ppdc/sample.c:24
msgid "A3 Oversize Long Edge"
msgstr "A3 (特大) 長辺送り"
+#: ppdc/sample.c:25
msgid "A4"
msgstr "A4"
+#: ppdc/sample.c:27
msgid "A4 Long Edge"
msgstr "A4 長辺送り"
+#: ppdc/sample.c:26
msgid "A4 Oversize"
msgstr "A4 (特大)"
+#: ppdc/sample.c:28
msgid "A4 Small"
msgstr "A4 (小)"
+#: ppdc/sample.c:29
msgid "A5"
msgstr "A5"
+#: ppdc/sample.c:31
msgid "A5 Long Edge"
msgstr "A5 長辺送り"
+#: ppdc/sample.c:30
msgid "A5 Oversize"
msgstr "A5 (特大)"
+#: ppdc/sample.c:32
msgid "A6"
msgstr "A6"
+#: ppdc/sample.c:33
msgid "A6 Long Edge"
msgstr "A6 長辺送り"
+#: ppdc/sample.c:34
msgid "A7"
msgstr "A7"
+#: ppdc/sample.c:35
msgid "A8"
msgstr "A8"
+#: ppdc/sample.c:36
msgid "A9"
msgstr "A9"
+#: ppdc/sample.c:38
msgid "ANSI A"
msgstr "ANSI A"
+#: ppdc/sample.c:39
msgid "ANSI B"
msgstr "ANSI B"
+#: ppdc/sample.c:40
msgid "ANSI C"
msgstr "ANSI C"
+#: ppdc/sample.c:41
msgid "ANSI D"
msgstr "ANSI D"
+#: ppdc/sample.c:42
msgid "ANSI E"
msgstr "ANSI E"
+#: ppdc/sample.c:47
msgid "ARCH C"
msgstr "ARCH C"
+#: ppdc/sample.c:48
msgid "ARCH C Long Edge"
msgstr "ARCH C 長辺送り"
+#: ppdc/sample.c:49
msgid "ARCH D"
msgstr "ARCH D"
+#: ppdc/sample.c:50
msgid "ARCH D Long Edge"
msgstr "ARCH D 長辺送り"
+#: ppdc/sample.c:51
msgid "ARCH E"
msgstr "ARCH E"
+#: ppdc/sample.c:52
msgid "ARCH E Long Edge"
msgstr "ARCH E 長辺送り"
+#: cgi-bin/classes.c:161 cgi-bin/printers.c:164
msgid "Accept Jobs"
msgstr "ジョブの受け付け"
+#: cups/http-support.c:1347
msgid "Accepted"
msgstr "受け付けました"
+#: cgi-bin/admin.c:548
msgid "Add Class"
msgstr "クラスの追加"
+#: cgi-bin/admin.c:860
msgid "Add Printer"
msgstr "プリンターの追加"
+#: cgi-bin/admin.c:422 cgi-bin/admin.c:455 cgi-bin/admin.c:503
+#: cgi-bin/admin.c:513
msgid "Add RSS Subscription"
msgstr "RSS 購読を追加"
+#: ppdc/sample.c:163
msgid "Address"
msgstr "アドレス"
+#: cgi-bin/admin.c:188 cgi-bin/admin.c:262 cgi-bin/admin.c:2725
msgid "Administration"
msgstr "管理"
+#: ppdc/sample.c:424
msgid "Always"
msgstr "常に有効"
+#: backend/socket.c:121
msgid "AppSocket/HP JetDirect"
msgstr "AppSocket/HP JetDirect"
+#: ppdc/sample.c:445
msgid "Applicator"
msgstr "アプリケーター"
+#: scheduler/ipp.c:991
#, c-format
msgid "Attempt to set %s printer-state to bad value %d."
msgstr "%s printer-state に 不正な値 %d を設定しようとしています。"
+#: scheduler/ipp.c:239
#, c-format
msgid "Attribute groups are out of order (%x < %x)."
msgstr "属性グループは範囲外です (%x < %x)。"
+#: ppdc/sample.c:126
msgid "B0"
msgstr "B0"
+#: ppdc/sample.c:127
msgid "B1"
msgstr "B1"
+#: ppdc/sample.c:137
msgid "B10"
msgstr "B10"
+#: ppdc/sample.c:128
msgid "B2"
msgstr "B2"
+#: ppdc/sample.c:129
msgid "B3"
msgstr "B3"
+#: ppdc/sample.c:130
msgid "B4"
msgstr "B4"
+#: ppdc/sample.c:131
msgid "B5"
msgstr "B5"
+#: ppdc/sample.c:132
msgid "B5 Oversize"
msgstr "B5 (特大)"
+#: ppdc/sample.c:133
msgid "B6"
msgstr "B6"
+#: ppdc/sample.c:134
msgid "B7"
msgstr "B7"
+#: ppdc/sample.c:135
msgid "B8"
msgstr "B8"
+#: ppdc/sample.c:136
msgid "B9"
msgstr "B9"
+#: scheduler/ipp.c:10877
#, c-format
msgid "Bad 'document-format' value \"%s\"."
msgstr "誤った 'document-format' の値です \"%s\"。"
+#: cups/dest.c:1736
msgid "Bad NULL dests pointer"
msgstr "不正な NULL 送信先ポインター"
+#: cups/ppd.c:303
msgid "Bad OpenGroup"
msgstr "不正な OpenGroup"
+#: cups/ppd.c:305
msgid "Bad OpenUI/JCLOpenUI"
msgstr "不正な OpenUI/JCLOpenUI"
+#: cups/ppd.c:307
msgid "Bad OrderDependency"
msgstr "不正な OrderDependency"
+#: cups/ppd-cache.c:117 cups/ppd-cache.c:164 cups/ppd-cache.c:202
+#: cups/ppd-cache.c:208 cups/ppd-cache.c:224 cups/ppd-cache.c:240
+#: cups/ppd-cache.c:249 cups/ppd-cache.c:257 cups/ppd-cache.c:274
+#: cups/ppd-cache.c:282 cups/ppd-cache.c:297 cups/ppd-cache.c:305
+#: cups/ppd-cache.c:326 cups/ppd-cache.c:338 cups/ppd-cache.c:353
+#: cups/ppd-cache.c:365 cups/ppd-cache.c:387 cups/ppd-cache.c:395
+#: cups/ppd-cache.c:413 cups/ppd-cache.c:421 cups/ppd-cache.c:436
+#: cups/ppd-cache.c:444 cups/ppd-cache.c:462 cups/ppd-cache.c:470
+#: cups/ppd-cache.c:497 cups/ppd-cache.c:567 cups/ppd-cache.c:575
+#: cups/ppd-cache.c:583
msgid "Bad PPD cache file."
msgstr "不正な PPD キャッシュファイルです。"
+#: cups/http-support.c:1362
msgid "Bad Request"
msgstr "不正なリクエスト"
+#: cups/snmp.c:954
msgid "Bad SNMP version number"
msgstr "不正な SNMP バージョン番号"
+#: cups/ppd.c:308
msgid "Bad UIConstraints"
msgstr "不正な UIConstraints"
+#: cups/http-support.c:1456
msgid "Bad arguments to function"
-msgstr ""
+msgstr "関数の引数が不正"
+#: scheduler/ipp.c:1352
#, c-format
msgid "Bad copies value %d."
msgstr "%d は不正なコピー値です。"
+#: cups/ppd.c:316
msgid "Bad custom parameter"
msgstr "不正なカスタムパラメーター"
+#: cups/http-support.c:1598 scheduler/ipp.c:2360
#, c-format
msgid "Bad device-uri \"%s\"."
msgstr "\"%s\" は無効な device-uri です。"
+#: scheduler/ipp.c:2399
#, c-format
msgid "Bad device-uri scheme \"%s\"."
msgstr "\"%s\" は無効な device-uri スキーマです。"
+#: scheduler/ipp.c:8125 scheduler/ipp.c:8141 scheduler/ipp.c:9360
#, c-format
msgid "Bad document-format \"%s\"."
msgstr "\"%s\" は不正な document-format です。"
+#: scheduler/ipp.c:9376
#, c-format
msgid "Bad document-format-default \"%s\"."
msgstr "\"%s\" は不正な document-format-default です。"
+#: cups/util.c:823
msgid "Bad filename buffer"
msgstr "不正なファイル名バッファーです。"
+#: cups/http-support.c:1465
msgid "Bad hostname/address in URI"
-msgstr ""
+msgstr "URI のホスト名/アドレスが不正"
+#: scheduler/ipp.c:1527
#, c-format
msgid "Bad job-name value: %s"
msgstr "誤った job-name 値: %s"
+#: scheduler/ipp.c:1520
msgid "Bad job-name value: Wrong type or count."
msgstr "誤った job-name 値: 型かカウントが誤っています。"
+#: scheduler/ipp.c:9967
msgid "Bad job-priority value."
msgstr "不正な job-priority 値です。"
+#: scheduler/ipp.c:1382
#, c-format
msgid "Bad job-sheets value \"%s\"."
msgstr "\"%s\" は不正な job-sheets 値です。"
+#: scheduler/ipp.c:1366
msgid "Bad job-sheets value type."
msgstr "不正な job-sheets 値タイプ です。"
+#: scheduler/ipp.c:9997
msgid "Bad job-state value."
msgstr "不正な job-state 値です。"
+#: scheduler/ipp.c:2981 scheduler/ipp.c:3441 scheduler/ipp.c:5930
+#: scheduler/ipp.c:6077 scheduler/ipp.c:7559 scheduler/ipp.c:7828
+#: scheduler/ipp.c:8678 scheduler/ipp.c:8904 scheduler/ipp.c:9256
+#: scheduler/ipp.c:9860
#, c-format
msgid "Bad job-uri \"%s\"."
msgstr "\"%s\" は無効な job-uri 属性です。"
+#: scheduler/ipp.c:2040 scheduler/ipp.c:5468
#, c-format
msgid "Bad notify-pull-method \"%s\"."
msgstr "\"%s\" は無効な notify-pull-method です。"
+#: scheduler/ipp.c:2004 scheduler/ipp.c:5432
#, c-format
msgid "Bad notify-recipient-uri \"%s\"."
msgstr "URI \"%s\" は不正な notify-recipient-uri です。"
+#: scheduler/ipp.c:1398
#, c-format
msgid "Bad number-up value %d."
msgstr "%d は不正な number-up 値です。"
+#: cups/adminutil.c:281
#, c-format
msgid "Bad option + choice on line %d."
msgstr "%d 行に不正なオプションと選択があります。"
+#: scheduler/ipp.c:1415
#, c-format
msgid "Bad page-ranges values %d-%d."
msgstr "%d-%d は不正な page-ranges 値です。"
+#: cups/http-support.c:1462
msgid "Bad port number in URI"
-msgstr ""
+msgstr "URI のポート番号が不正"
+#: scheduler/ipp.c:2442
#, c-format
msgid "Bad port-monitor \"%s\"."
msgstr "\"%s\" は無効な port-monitor です。"
+#: scheduler/ipp.c:2503
#, c-format
msgid "Bad printer-state value %d."
msgstr "%d は無効な printer-state 値です。"
+#: cups/dest.c:610 cups/dest.c:1296 cups/dest.c:1343
msgid "Bad printer-uri."
-msgstr ""
+msgstr "printer-uri が不正です。"
+#: scheduler/ipp.c:207
#, c-format
msgid "Bad request ID %d."
msgstr "%d は無効なリクエストIDです。"
+#: scheduler/ipp.c:192
#, c-format
msgid "Bad request version number %d.%d."
msgstr "バージョン番号 %d.%d は無効なリクエストです。"
+#: cups/http-support.c:1459
msgid "Bad resource in URI"
-msgstr ""
+msgstr "URI のリソースが不正"
+#: cups/http-support.c:1471
msgid "Bad scheme in URI"
-msgstr ""
+msgstr "URI のスキームが不正"
+#: cgi-bin/admin.c:1464
msgid "Bad subscription ID"
-msgstr "不正なサブスクリプション ID です。"
+msgstr "不正なサブスクリプション ID"
+#: cups/http-support.c:1468
msgid "Bad username in URI"
-msgstr ""
+msgstr "URI のユーザー名が不正"
+#: cups/ppd.c:318
msgid "Bad value string"
msgstr "値文字列がありません"
+#: cups/http-support.c:1474
msgid "Bad/empty URI"
-msgstr ""
+msgstr "URI が不正か空"
+#: cgi-bin/admin.c:3270 cgi-bin/admin.c:3516
msgid "Banners"
msgstr "バナー"
+#: ppdc/sample.c:282
msgid "Bond Paper"
msgstr "ボンド紙"
+#: backend/usb-darwin.c:1874
#, c-format
msgid "Boolean expected for waiteof option \"%s\"."
msgstr "論理値は、waiteof オプション \"%s\" であるべきです"
+#: filter/pstops.c:2029
msgid "Buffer overflow detected, aborting."
msgstr "オーバーフローが検出され、中断しました。"
+#: ppdc/sample.c:277
msgid "CMYK"
msgstr "CMYK"
+#: ppdc/sample.c:358
msgid "CPCL Label Printer"
msgstr "CPCL ラベルプリンター"
+#: cgi-bin/classes.c:165 cgi-bin/printers.c:168
msgid "Cancel Jobs"
-msgstr ""
+msgstr "ジョブをキャンセル"
+#: cgi-bin/admin.c:1465 cgi-bin/admin.c:1504 cgi-bin/admin.c:1514
msgid "Cancel RSS Subscription"
msgstr "RSS 購読をキャンセル"
+#: backend/ipp.c:2198
msgid "Canceling print job."
msgstr "プリントジョブをキャンセルしています。"
+#: scheduler/ipp.c:2483
msgid "Cannot share a remote Kerberized printer."
msgstr "リモートの Kerberos 認証のプリンターを共有できません。"
+#: ppdc/sample.c:271
msgid "Cassette"
msgstr "カセット"
+#: cgi-bin/admin.c:1635 cgi-bin/admin.c:1777 cgi-bin/admin.c:1790
+#: cgi-bin/admin.c:1801
msgid "Change Settings"
msgstr "設定の変更"
+#: scheduler/ipp.c:2052 scheduler/ipp.c:5480
#, c-format
msgid "Character set \"%s\" not supported."
msgstr "文字セット \"%s\" はサポートされていません。"
+#: cgi-bin/classes.c:187 cgi-bin/classes.c:314
msgid "Classes"
msgstr "クラス"
+#: cgi-bin/printers.c:174
msgid "Clean Print Heads"
msgstr "プリントヘッドクリーニング"
+#: scheduler/ipp.c:3893
msgid "Close-Job doesn't support the job-uri attribute."
msgstr "Close-Job は job-uri 属性をサポートしていません。"
+#: ppdc/sample.c:276
msgid "Color"
msgstr "カラー"
+#: ppdc/sample.c:274
msgid "Color Mode"
msgstr "カラーモード"
+#: berkeley/lpc.c:196
msgid ""
"Commands may be abbreviated. Commands are:\n"
"\n"
"\n"
"exit help quit status ?"
+#: cups/snmp.c:958
msgid "Community name uses indefinite length"
msgstr "コミュニティ名の長さが不定"
+#: backend/ipp.c:854 backend/lpd.c:879 backend/socket.c:400
msgid "Connected to printer."
msgstr "プリンターに接続しました。"
+#: backend/ipp.c:759 backend/lpd.c:702 backend/socket.c:319
msgid "Connecting to printer."
msgstr "プリンターに接続中。"
+#: cups/http-support.c:1335
msgid "Continue"
msgstr "継続"
+#: ppdc/sample.c:360
msgid "Continuous"
msgstr "連続"
+#: backend/lpd.c:1028 backend/lpd.c:1160
msgid "Control file sent successfully."
msgstr "コントロールファイルが正常に送信されました。"
+#: backend/ipp.c:1349 backend/lpd.c:472
msgid "Copying print data."
msgstr "印刷データをコピーしています。"
+#: cups/http-support.c:1344
msgid "Created"
msgstr "ジョブ作成"
+#: cups/ppd.c:1069 cups/ppd.c:1109 cups/ppd.c:1354 cups/ppd.c:1457
msgid "Custom"
msgstr "カスタム"
+#: ppdc/sample.c:354
msgid "CustominCutInterval"
msgstr "CustominCutInterval"
+#: ppdc/sample.c:352
msgid "CustominTearInterval"
msgstr "CustominTearInterval"
+#: ppdc/sample.c:338
msgid "Cut"
msgstr "カット"
+#: ppdc/sample.c:446
msgid "Cutter"
msgstr "カッター"
+#: ppdc/sample.c:239
msgid "Dark"
msgstr "濃い"
+#: ppdc/sample.c:235
msgid "Darkness"
msgstr "濃さ"
+#: backend/lpd.c:1113
msgid "Data file sent successfully."
-msgstr "データファイルが正常に送信されました"
+msgstr "データファイルが正常に送信されました。"
+#: cgi-bin/admin.c:2074 cgi-bin/admin.c:2085 cgi-bin/admin.c:2130
msgid "Delete Class"
msgstr "クラスの削除"
+#: cgi-bin/admin.c:2159 cgi-bin/admin.c:2170 cgi-bin/admin.c:2215
msgid "Delete Printer"
msgstr "プリンターの削除"
+#: ppdc/sample.c:273
msgid "DeskJet Series"
msgstr "DeskJet シリーズ"
+#: scheduler/ipp.c:1276
#, c-format
msgid "Destination \"%s\" is not accepting jobs."
msgstr "宛先 \"%s\" はジョブを受け付けていません。"
+#: systemv/lpinfo.c:300
#, c-format
msgid ""
"Device: uri = %s\n"
" device-id = %s\n"
" location = %s"
+#: ppdc/sample.c:431
msgid "Direct Thermal Media"
msgstr "感熱紙"
+#: cups/file.c:258
#, c-format
msgid "Directory \"%s\" contains a relative path."
msgstr "ディレクトリー \"%s\" は相対パスを含んでいます。"
+#: cups/file.c:230
#, c-format
msgid "Directory \"%s\" has insecure permissions (0%o/uid=%d/gid=%d)."
msgstr ""
"ディレクトリー \"%s\" は安全でないパーミッションが与えられています (0%o/uid="
"%d/gid=%d)。"
+#: cups/file.c:247
#, c-format
msgid "Directory \"%s\" is a file."
msgstr "ディレクトリー \"%s\" はファイルです。"
+#: cups/file.c:218
#, c-format
msgid "Directory \"%s\" not available: %s"
msgstr "ディレクトリー \"%s\" は利用できません: %s"
+#: cups/file.c:203
#, c-format
msgid "Directory \"%s\" permissions OK (0%o/uid=%d/gid=%d)."
msgstr ""
"ディレクトリー \"%s\" のパーミッションは問題ありません (0%o/uid=%d/gid=%d)。"
+#: ppdc/sample.c:340
msgid "Disabled"
msgstr "無効"
+#: scheduler/ipp.c:5979
#, c-format
msgid "Document #%d does not exist in job #%d."
msgstr "ドキュメント #%d がジョブ #%d に見つかりません。"
+#: ppdc/sample.c:267
msgid "Duplexer"
msgstr "両面オプション"
+#: ppdc/sample.c:229
msgid "Dymo"
msgstr "Dymo"
+#: ppdc/sample.c:426
msgid "EPL1 Label Printer"
msgstr "EPL1 ラベルプリンター"
+#: ppdc/sample.c:429
msgid "EPL2 Label Printer"
msgstr "EPL2 ラベルプリンター"
+#: cgi-bin/admin.c:1829 cgi-bin/admin.c:1841 cgi-bin/admin.c:1895
+#: cgi-bin/admin.c:1902 cgi-bin/admin.c:1937 cgi-bin/admin.c:1950
+#: cgi-bin/admin.c:1974 cgi-bin/admin.c:2047
msgid "Edit Configuration File"
msgstr "設定ファイルの編集"
+#: cups/adminutil.c:326
msgid "Empty PPD file."
msgstr "PPD ファイルが空です。"
+#: cups/http.c:4624
msgid "Encryption is not supported."
-msgstr ""
+msgstr "暗号化はサポートされていません。"
#. TRANSLATORS: Banner/cover sheet after the print job.
+#: cgi-bin/admin.c:3541
msgid "Ending Banner"
msgstr "終了バナー"
+#: ppdc/sample.c:2
msgid "English"
msgstr "English"
+#: scheduler/client.c:2209
msgid ""
"Enter your username and password or the root username and password to access "
"this page. If you are using Kerberos authentication, make sure you have a "
"root のユーザー名とパスワードを入力してください。Kerberos 認証を使用している"
"場合、有効な Kerberos チケットがあることを確認してください。"
+#: ppdc/sample.c:73
msgid "Envelope #10 "
msgstr "封筒 #10"
+#: ppdc/sample.c:74
msgid "Envelope #11"
msgstr "封筒 #11"
+#: ppdc/sample.c:75
msgid "Envelope #12"
msgstr "封筒 #12"
+#: ppdc/sample.c:76
msgid "Envelope #14"
msgstr "封筒 #14"
+#: ppdc/sample.c:77
msgid "Envelope #9"
msgstr "封筒 #9"
+#: ppdc/sample.c:89
msgid "Envelope B4"
msgstr "封筒 B4"
+#: ppdc/sample.c:90
msgid "Envelope B5"
msgstr "封筒 B5"
+#: ppdc/sample.c:91
msgid "Envelope B6"
msgstr "封筒 B6"
+#: ppdc/sample.c:78
msgid "Envelope C0"
msgstr "封筒 C0"
+#: ppdc/sample.c:79
msgid "Envelope C1"
msgstr "封筒 C1"
+#: ppdc/sample.c:80
msgid "Envelope C2"
msgstr "封筒 C2"
+#: ppdc/sample.c:81
msgid "Envelope C3"
msgstr "封筒 C3"
+#: ppdc/sample.c:67
msgid "Envelope C4"
msgstr "封筒 C4"
+#: ppdc/sample.c:68
msgid "Envelope C5"
msgstr "封筒 C5"
+#: ppdc/sample.c:69
msgid "Envelope C6"
msgstr "封筒 C6"
+#: ppdc/sample.c:82
msgid "Envelope C65"
msgstr "封筒 C65"
+#: ppdc/sample.c:83
msgid "Envelope C7"
msgstr "封筒 C7"
+#: ppdc/sample.c:84
msgid "Envelope Choukei 3"
msgstr "封筒 長形3号"
+#: ppdc/sample.c:85
msgid "Envelope Choukei 3 Long Edge"
msgstr "封筒 長形3号 長辺送り"
+#: ppdc/sample.c:86
msgid "Envelope Choukei 4"
msgstr "封筒 長形4号"
+#: ppdc/sample.c:87
msgid "Envelope Choukei 4 Long Edge"
msgstr "封筒 長形4号 長辺送り"
+#: ppdc/sample.c:70
msgid "Envelope DL"
msgstr "封筒 DL"
+#: ppdc/sample.c:261
msgid "Envelope Feed"
msgstr "封筒フィード"
+#: ppdc/sample.c:88
msgid "Envelope Invite"
msgstr "招待状封筒"
+#: ppdc/sample.c:92
msgid "Envelope Italian"
msgstr "イタリア封筒"
+#: ppdc/sample.c:93
msgid "Envelope Kaku2"
msgstr "封筒 角2"
+#: ppdc/sample.c:94
msgid "Envelope Kaku2 Long Edge"
msgstr "封筒 角2 長辺送り"
+#: ppdc/sample.c:95
msgid "Envelope Kaku3"
msgstr "封筒 角3"
+#: ppdc/sample.c:96
msgid "Envelope Kaku3 Long Edge"
msgstr "封筒 角3 長辺送り"
+#: ppdc/sample.c:97
msgid "Envelope Monarch"
msgstr "封筒 Monarch"
+#: ppdc/sample.c:99
msgid "Envelope PRC1 "
msgstr "封筒 PRC1"
+#: ppdc/sample.c:100
msgid "Envelope PRC1 Long Edge"
msgstr "封筒 PRC1 長辺送り"
+#: ppdc/sample.c:117
msgid "Envelope PRC10"
msgstr "封筒 PRC10"
+#: ppdc/sample.c:118
msgid "Envelope PRC10 Long Edge"
msgstr "封筒 PRC10 長辺送り"
+#: ppdc/sample.c:101
msgid "Envelope PRC2"
msgstr "封筒 PRC2"
+#: ppdc/sample.c:102
msgid "Envelope PRC2 Long Edge"
msgstr "封筒 PRC2 長辺送り"
+#: ppdc/sample.c:103
msgid "Envelope PRC3"
msgstr "封筒 PRC3"
+#: ppdc/sample.c:104
msgid "Envelope PRC3 Long Edge"
msgstr "封筒 PRC3 長辺送り"
+#: ppdc/sample.c:105
msgid "Envelope PRC4"
msgstr "封筒 PRC4"
+#: ppdc/sample.c:106
msgid "Envelope PRC4 Long Edge"
msgstr "封筒 PRC4 長辺送り"
+#: ppdc/sample.c:108
msgid "Envelope PRC5 Long Edge"
msgstr "封筒 PRC5 長辺送り"
+#: ppdc/sample.c:107
msgid "Envelope PRC5PRC5"
msgstr "封筒 PRC5"
+#: ppdc/sample.c:109
msgid "Envelope PRC6"
msgstr "封筒 PRC6"
+#: ppdc/sample.c:110
msgid "Envelope PRC6 Long Edge"
msgstr "封筒 PRC6 長辺送り"
+#: ppdc/sample.c:111
msgid "Envelope PRC7"
msgstr "封筒 PRC7"
+#: ppdc/sample.c:112
msgid "Envelope PRC7 Long Edge"
msgstr "封筒 PRC7 長辺送り"
+#: ppdc/sample.c:113
msgid "Envelope PRC8"
msgstr "封筒 PRC8"
+#: ppdc/sample.c:114
msgid "Envelope PRC8 Long Edge"
msgstr "封筒 PRC8 長辺送り"
+#: ppdc/sample.c:115
msgid "Envelope PRC9"
msgstr "封筒 PRC9"
+#: ppdc/sample.c:116
msgid "Envelope PRC9 Long Edge"
msgstr "封筒 PRC9 長辺送り"
+#: ppdc/sample.c:98
msgid "Envelope Personal"
msgstr "パーソナル封筒"
+#: ppdc/sample.c:119
msgid "Envelope You4"
msgstr "封筒 洋形4号"
+#: ppdc/sample.c:120
msgid "Envelope You4 Long Edge"
msgstr "封筒 洋形4号 長辺送り"
+#: test/ippfind.c:2809
msgid "Environment Variables:"
msgstr "環境変数:"
+#: ppdc/sample.c:240
msgid "Epson"
msgstr "Epson"
+#: cgi-bin/admin.c:3584
msgid "Error Policy"
msgstr "エラーポリシー"
+#: filter/rastertopwg.c:395 filter/rastertopwg.c:410 filter/rastertopwg.c:421
+#: filter/rastertopwg.c:432
msgid "Error sending raster data."
msgstr "ラスターデータの送信でエラーが起きました。"
+#: systemv/lpinfo.c:103 systemv/lpmove.c:88
msgid "Error: need hostname after \"-h\" option."
msgstr "Error: '-h' オプションのあとにはホスト名が必要です。"
+#: ppdc/sample.c:350
msgid "Every 10 Labels"
msgstr "10 ラベルごと"
+#: ppdc/sample.c:342
msgid "Every 2 Labels"
msgstr "2 ラベルごと"
+#: ppdc/sample.c:343
msgid "Every 3 Labels"
msgstr "3 ラベルごと"
+#: ppdc/sample.c:344
msgid "Every 4 Labels"
msgstr "4 ラベルごと"
+#: ppdc/sample.c:345
msgid "Every 5 Labels"
msgstr "5 ラベルごと"
+#: ppdc/sample.c:346
msgid "Every 6 Labels"
msgstr "6 ラベルごと"
+#: ppdc/sample.c:347
msgid "Every 7 Labels"
msgstr "7 ラベルごと"
+#: ppdc/sample.c:348
msgid "Every 8 Labels"
msgstr "8 ラベルごと"
+#: ppdc/sample.c:349
msgid "Every 9 Labels"
msgstr "9 ラベルごと"
+#: ppdc/sample.c:341
msgid "Every Label"
msgstr "すべてのラベル"
+#: ppdc/sample.c:121
msgid "Executive"
msgstr "エグゼクティブ"
+#: cups/http-support.c:1390
msgid "Expectation Failed"
msgstr "予測に失敗しました"
+#: cgi-bin/admin.c:2336 cgi-bin/admin.c:2355
msgid "Export Printers to Samba"
msgstr "Samba へプリンターをエクスポート"
+#: test/ippfind.c:2755
msgid "Expressions:"
msgstr "式:"
+#: systemv/cupstestdsc.c:172 systemv/cupstestdsc.c:189
+#: systemv/cupstestdsc.c:214 systemv/cupstestdsc.c:231
+#: systemv/cupstestdsc.c:255 systemv/cupstestdsc.c:273
+#: systemv/cupstestdsc.c:302 systemv/cupstestdsc.c:339
+#: systemv/cupstestdsc.c:349 systemv/cupstestdsc.c:359
+#: systemv/cupstestdsc.c:369 systemv/cupstestdsc.c:379
+#: systemv/cupstestdsc.c:387
msgid "FAIL"
msgstr "失敗"
+#: ppdc/sample.c:122
msgid "FanFold German"
msgstr "FanFold German"
+#: ppdc/sample.c:123
msgid "FanFold Legal German"
msgstr "FanFold Legal German"
+#: ppdc/sample.c:124
msgid "Fanfold US"
msgstr "Fanfold US"
+#: cups/file.c:262
#, c-format
msgid "File \"%s\" contains a relative path."
msgstr "ファイル \"%s\" は相対パスを含んでいます。"
+#: cups/file.c:237
#, c-format
msgid "File \"%s\" has insecure permissions (0%o/uid=%d/gid=%d)."
msgstr ""
"ファイル \"%s\" は安全でないパーミッションが与えられています (0%o/uid=%d/gid="
"%d)。"
+#: cups/file.c:251
#, c-format
msgid "File \"%s\" is a directory."
msgstr "ファイル \"%s\" はディレクトリーです。"
+#: cups/file.c:223
#, c-format
msgid "File \"%s\" not available: %s"
msgstr "ファイル \"%s\" は利用できません: %s"
+#: cups/file.c:209
#, c-format
msgid "File \"%s\" permissions OK (0%o/uid=%d/gid=%d)."
msgstr "ファイル \"%s\" のパーミッションは問題ありません (0%o/uid=%d/gid=%d)。"
+#: ppdc/sample.c:169
msgid "File Folder "
msgstr "ファイルフォルダー"
+#: scheduler/ipp.c:2378
#, c-format
msgid ""
"File device URIs have been disabled. To enable, see the FileDevice directive "
"ファイルデバイス URI は無効になっています。有効にするには、\"%s/cups-files."
"conf\" の FileDevice ディレクティブを参照してください。"
+#: filter/rastertoepson.c:1102 filter/rastertohp.c:834
+#: filter/rastertolabel.c:1259
#, c-format
msgid "Finished page %d."
msgstr "ページ %d を終了。"
+#: ppdc/sample.c:125
msgid "Folio"
msgstr "フォリオ"
+#: cups/http-support.c:1369
msgid "Forbidden"
msgstr "Forbidden"
+#: cups/ppd.c:700 cups/ppd.c:1258
msgid "General"
msgstr "一般"
+#: ppdc/sample.c:251
msgid "Generic"
msgstr "汎用"
+#: cups/snmp.c:968
msgid "Get-Response-PDU uses indefinite length"
msgstr "Get-Response-PDU は不確定の長さを使用しています"
+#: ppdc/sample.c:285
msgid "Glossy Paper"
msgstr "光沢紙"
+#: scheduler/ipp.c:2959 scheduler/ipp.c:3367 scheduler/ipp.c:3905
+#: scheduler/ipp.c:5908 scheduler/ipp.c:6055 scheduler/ipp.c:7536
+#: scheduler/ipp.c:8656 scheduler/ipp.c:8882 scheduler/ipp.c:9234
+#: scheduler/ipp.c:9838
msgid "Got a printer-uri attribute but no job-id."
msgstr "printer-uri 属性を取得しましたが、job-id を取得できませんでした。"
+#: ppdc/sample.c:275
msgid "Grayscale"
msgstr "グレースケール"
+#: ppdc/sample.c:272
msgid "HP"
msgstr "HP"
+#: ppdc/sample.c:170
msgid "Hanging Folder"
msgstr "Hanging Folder"
+#: cgi-bin/help.c:143
msgid "Help file not in index."
msgstr "ヘルプファイルが索引に含まれていません。"
+#: cups/ipp.c:3183 cups/ipp.c:3210 cups/ipp.c:3233
msgid "IPP 1setOf attribute with incompatible value tags."
msgstr "IPP の 1setOf 属性が value タグと互換性がありません。"
+#: cups/ipp.c:3146
msgid "IPP attribute has no name."
msgstr "IPP の属性に名前がありません。"
+#: cups/ipp.c:7000
msgid "IPP attribute is not a member of the message."
msgstr "IPP の属性がメッセージのメンバーではありません。"
+#: cups/ipp.c:3594
msgid "IPP begCollection value not 0 bytes."
msgstr "IPP の begCollection は想定された 0 バイトになっていません。"
+#: cups/ipp.c:3376
msgid "IPP boolean value not 1 byte."
msgstr "IPP の真偽値が想定された 1 バイトになっていません。"
+#: cups/ipp.c:3437
msgid "IPP date value not 11 bytes."
msgstr "IPP の date 値は想定された 11 バイトになっていません。"
+#: cups/ipp.c:3615
msgid "IPP endCollection value not 0 bytes."
msgstr "IPP の endCollection は想定された 0 バイトになっていません。"
+#: cups/ipp.c:3351
msgid "IPP enum value not 4 bytes."
msgstr "IPP の enum 値は想定された 4 バイトになっていません。"
+#: cups/ipp.c:3075
msgid "IPP extension tag larger than 0x7FFFFFFF."
msgstr "IPP の拡張タグが 0x7FFFFFFF より大きいです。"
+#: cups/ipp.c:3348
msgid "IPP integer value not 4 bytes."
msgstr "IPP の整数値は想定された 4 バイトになっていません。"
+#: cups/ipp.c:3547
msgid "IPP language length overflows value."
msgstr "IPP の language length の値がオーバーフローしています。"
+#: cups/ipp.c:3556
msgid "IPP language length too large."
msgstr "IPP の language の長さが長すぎます。"
+#: cups/ipp.c:3260
msgid "IPP member name is not empty."
msgstr "IPP のメンバー名が空ではありません。"
+#: cups/ipp.c:3641
msgid "IPP memberName value is empty."
msgstr "IPP の memberName の値が空です。"
+#: cups/ipp.c:3633
msgid "IPP memberName with no attribute."
msgstr "IPP の memberName に属性がありません。"
+#: cups/ipp.c:3129
msgid "IPP name larger than 32767 bytes."
msgstr "IPP 名が 32767 バイトより大きいです。"
+#: cups/ipp.c:3514
msgid "IPP nameWithLanguage value less than minimum 4 bytes."
msgstr "IPP の nameWithLanguage が最小値 4 バイト未満です。"
+#: cups/ipp.c:3671
msgid "IPP octetString length too large."
msgstr "IPP の octetString の長さが大きすぎます。"
+#: cups/ipp.c:3482
msgid "IPP rangeOfInteger value not 8 bytes."
msgstr "IPP の rangeOfInteger は想定された 8 バイトになっていません。"
+#: cups/ipp.c:3455
msgid "IPP resolution value not 9 bytes."
msgstr "IPP の resolution は想定された 9 バイトになっていません。"
+#: cups/ipp.c:3574
msgid "IPP string length overflows value."
msgstr "IPP の文字列長の値がオーバーフローしています。"
+#: cups/ipp.c:3510
msgid "IPP textWithLanguage value less than minimum 4 bytes."
msgstr "IPP の textWithLanguage の値が最小値 4 バイト未満です。"
+#: cups/ipp.c:3334
msgid "IPP value larger than 32767 bytes."
msgstr "IPP の値が 32767 バイト以上です。"
+#: ppdc/sample.c:1
msgid "ISOLatin1"
msgstr "ISOLatin1"
+#: cups/ppd.c:311
msgid "Illegal control character"
msgstr "不正な制御文字"
+#: cups/ppd.c:312
msgid "Illegal main keyword string"
msgstr "不正なメインキーワード文字列"
+#: cups/ppd.c:313
msgid "Illegal option keyword string"
msgstr "不正なオプションキーワード文字列"
+#: cups/ppd.c:314
msgid "Illegal translation string"
msgstr "不正な翻訳文字列"
+#: cups/ppd.c:315
msgid "Illegal whitespace character"
msgstr "不正な空白文字"
+#: ppdc/sample.c:266
msgid "Installable Options"
msgstr "インストール可能オプション"
+#: ppdc/sample.c:269
msgid "Installed"
msgstr "インストールされています"
+#: ppdc/sample.c:288
msgid "IntelliBar Label Printer"
msgstr "IntelliBar ラベルプリンター"
+#: ppdc/sample.c:287
msgid "Intellitech"
msgstr "Intellitech"
+#: cups/http-support.c:1396
msgid "Internal Server Error"
msgstr "サーバー内部エラー"
+#: cups/ppd.c:302
msgid "Internal error"
msgstr "内部エラー"
+#: ppdc/sample.c:167
msgid "Internet Postage 2-Part"
msgstr "Internet Postage 2-Part"
+#: ppdc/sample.c:168
msgid "Internet Postage 3-Part"
msgstr "Internet Postage 3-Part"
+#: backend/ipp.c:319
msgid "Internet Printing Protocol"
msgstr "インターネット印刷プロトコル"
+#: cups/pwg-media.c:293 cups/pwg-media.c:312
msgid "Invalid media name arguments."
msgstr "無効なメディア名引数です。"
+#: cups/dest-options.c:1032
msgid "Invalid media size."
msgstr "無効なメディアサイズです。"
+#: filter/commandtops.c:114
#, c-format
msgid "Invalid printer command \"%s\"."
msgstr "無効なプリンターコマンドです。 \"%s\""
+#: cups/ppd.c:1376
msgid "JCL"
msgstr "JCL"
+#: ppdc/sample.c:53
msgid "JIS B0"
msgstr "JIS B0"
+#: ppdc/sample.c:55
msgid "JIS B1"
msgstr "JIS B1"
+#: ppdc/sample.c:54
msgid "JIS B10"
msgstr "JIS B10"
+#: ppdc/sample.c:56
msgid "JIS B2"
msgstr "JIS B2"
+#: ppdc/sample.c:57
msgid "JIS B3"
msgstr "JIS B3"
+#: ppdc/sample.c:58
msgid "JIS B4"
msgstr "JIS B4"
+#: ppdc/sample.c:59
msgid "JIS B4 Long Edge"
msgstr "JIS B4 長辺送り"
+#: ppdc/sample.c:60
msgid "JIS B5"
msgstr "JIS B5"
+#: ppdc/sample.c:61
msgid "JIS B5 Long Edge"
msgstr "JIS B5 長辺送り"
+#: ppdc/sample.c:62
msgid "JIS B6"
msgstr "JIS B6"
+#: ppdc/sample.c:63
msgid "JIS B6 Long Edge"
msgstr "JIS B6 長辺送り"
+#: ppdc/sample.c:64
msgid "JIS B7"
msgstr "JIS B7"
+#: ppdc/sample.c:65
msgid "JIS B8"
msgstr "JIS B8"
+#: ppdc/sample.c:66
msgid "JIS B9"
msgstr "JIS B9"
+#: scheduler/ipp.c:8954
#, c-format
msgid "Job #%d cannot be restarted - no files."
msgstr "ジョブ番号 %d を再開できません - ファイルが見つかりません。"
+#: scheduler/ipp.c:2999 scheduler/ipp.c:3233 scheduler/ipp.c:3292
+#: scheduler/ipp.c:3469 scheduler/ipp.c:3915 scheduler/ipp.c:5566
+#: scheduler/ipp.c:5948 scheduler/ipp.c:6095 scheduler/ipp.c:6433
+#: scheduler/ipp.c:7383 scheduler/ipp.c:7405 scheduler/ipp.c:7577
+#: scheduler/ipp.c:7802 scheduler/ipp.c:7845 scheduler/ipp.c:8696
+#: scheduler/ipp.c:8922 scheduler/ipp.c:9274 scheduler/ipp.c:9878
#, c-format
msgid "Job #%d does not exist."
msgstr "ジョブ番号 %d は存在しません。"
+#: scheduler/ipp.c:3501
#, c-format
msgid "Job #%d is already aborted - can't cancel."
msgstr "ジョブ番号 %d はすでに中断されています - キャンセルできません。"
+#: scheduler/ipp.c:3495
#, c-format
msgid "Job #%d is already canceled - can't cancel."
msgstr "ジョブ番号 %d はすでにキャンセルされています - キャンセルできません。"
+#: scheduler/ipp.c:3507
#, c-format
msgid "Job #%d is already completed - can't cancel."
msgstr "ジョブ番号 %d はすでに完了しています - キャンセルできません。"
+#: scheduler/ipp.c:7603 scheduler/ipp.c:7887 scheduler/ipp.c:9893
#, c-format
msgid "Job #%d is finished and cannot be altered."
msgstr "ジョブ番号 %d はすでに終了し、変更できません。"
+#: scheduler/ipp.c:8936
#, c-format
msgid "Job #%d is not complete."
msgstr "ジョブ番号 %d は完了していません。"
+#: scheduler/ipp.c:3014
#, c-format
msgid "Job #%d is not held for authentication."
msgstr "ジョブ番号 %d は認証のために保留されていません。"
+#: scheduler/ipp.c:8710
#, c-format
msgid "Job #%d is not held."
msgstr "ジョブ番号 %d は保留されていません。"
+#: cgi-bin/ipp-var.c:1035
msgid "Job Completed"
msgstr "ジョブ完了"
+#: cgi-bin/ipp-var.c:1033
msgid "Job Created"
msgstr "ジョブ作成"
+#: cgi-bin/ipp-var.c:1039
msgid "Job Options Changed"
msgstr "ジョブオプション変更"
+#: cgi-bin/ipp-var.c:1037
msgid "Job Stopped"
msgstr "ジョブ中止"
+#: scheduler/ipp.c:9975
msgid "Job is completed and cannot be changed."
msgstr "ジョブは完了し変更できません。"
+#: cgi-bin/jobs.c:192
msgid "Job operation failed"
msgstr "ジョブ操作失敗"
+#: scheduler/ipp.c:10011 scheduler/ipp.c:10028 scheduler/ipp.c:10039
msgid "Job state cannot be changed."
msgstr "ジョブの状態を変更できません。"
+#: scheduler/ipp.c:8802
msgid "Job subscriptions cannot be renewed."
msgstr "ジョブサブスクリプションを更新できません。"
+#: cgi-bin/jobs.c:97 cgi-bin/jobs.c:108 cgi-bin/jobs.c:189
msgid "Jobs"
msgstr "ジョブ"
+#: backend/lpd.c:177
msgid "LPD/LPR Host or Printer"
msgstr "LPD/LPR ホストまたはプリンター"
+#: ppdc/sample.c:230
msgid "Label Printer"
msgstr "ラベルプリンター"
+#: ppdc/sample.c:441
msgid "Label Top"
msgstr "ラベルトップ"
+#: scheduler/ipp.c:2061 scheduler/ipp.c:5489
#, c-format
msgid "Language \"%s\" not supported."
msgstr "言語 \"%s\" はサポートされていません。"
+#: ppdc/sample.c:164
msgid "Large Address"
msgstr "ラージアドレス"
+#: ppdc/sample.c:286
msgid "LaserJet Series PCL 4/5"
msgstr "LaserJet Series PCL 4/5"
+#: ppdc/sample.c:43
msgid "Letter Oversize"
msgstr "US レター (特大)"
+#: ppdc/sample.c:44
msgid "Letter Oversize Long Edge"
msgstr "US レター (特大) 長辺送り"
+#: ppdc/sample.c:236
msgid "Light"
msgstr "薄い"
+#: cups/ppd.c:310
msgid "Line longer than the maximum allowed (255 characters)"
msgstr "1 行が最大値 (255 文字) を超えています"
+#: cgi-bin/admin.c:2373
msgid "List Available Printers"
-msgstr "使用可能なプリンターをリスト化"
+msgstr "使用可能なプリンター一覧"
+#: cups/localize.c:291
msgid "Load paper."
-msgstr ""
+msgstr "用紙を補給してください。"
+#: ppdc/sample.c:264
msgid "Long-Edge (Portrait)"
msgstr "長辺給紙 (縦向き)"
+#: cups/http-support.c:1725
msgid "Looking for printer."
msgstr "プリンターを探しています。"
+#: ppdc/sample.c:260
msgid "Manual Feed"
msgstr "手差し"
+#: cups/ppd.c:747 cups/ppd.c:1313
msgid "Media Size"
msgstr "用紙サイズ"
+#: cups/ppd.c:751 cups/ppd.c:1317 ppdc/sample.c:254
msgid "Media Source"
msgstr "給紙"
+#: ppdc/sample.c:359
msgid "Media Tracking"
msgstr "用紙の経路"
+#: cups/ppd.c:749 cups/ppd.c:1315 ppdc/sample.c:280
msgid "Media Type"
msgstr "用紙種類"
+#: ppdc/sample.c:237
msgid "Medium"
msgstr "紙質"
+#: cups/ppd.c:299
msgid "Memory allocation error"
msgstr "メモリー割り当てエラー"
+#: cups/ppd.c:319
msgid "Missing CloseGroup"
msgstr "CloseGroup がありません"
+#: cups/ppd.c:300
msgid "Missing PPD-Adobe-4.x header"
msgstr "PPD-Adobe-4.x ヘッダーがありません"
+#: cups/ppd.c:309
msgid "Missing asterisk in column 1"
msgstr "1 列目にアスタリスクがありません"
+#: scheduler/ipp.c:5971
msgid "Missing document-number attribute."
msgstr "document-number 属性がありません。"
+#: cups/adminutil.c:262
#, c-format
msgid "Missing double quote on line %d."
msgstr "%d 行に二重引用符がありません。"
+#: cgi-bin/admin.c:714 cgi-bin/admin.c:2086 cgi-bin/admin.c:2171
+#: cgi-bin/admin.c:2765 cgi-bin/admin.c:3019 cgi-bin/admin.c:3130
+#: cgi-bin/admin.c:3840
msgid "Missing form variable"
msgstr "form 変数がありません。"
+#: scheduler/ipp.c:9328
msgid "Missing last-document attribute in request."
msgstr "リクエストに last-document 属性がありません。"
+#: cups/pwg-media.c:555
msgid "Missing media or media-col."
msgstr "media または media-col がありません。"
+#: cups/pwg-media.c:474
msgid "Missing media-size in media-col."
msgstr "media-col に media-size がありません。"
+#: scheduler/ipp.c:6574
msgid "Missing notify-subscription-ids attribute."
msgstr "notify-subscription-ids 属性がありません。"
+#: cups/ppd.c:317
msgid "Missing option keyword"
msgstr "オプションキーワードがありません"
+#: scheduler/ipp.c:3140 scheduler/ipp.c:3165
msgid "Missing requesting-user-name attribute."
msgstr "requesting-user-name 属性が設定されていません。"
+#: scheduler/ipp.c:388
msgid "Missing required attributes."
msgstr "必須の属性が設定されていません。"
+#: cups/http-support.c:1486
msgid "Missing resource in URI"
-msgstr ""
+msgstr "URI のリソースがない"
+#: cups/http-support.c:1480
msgid "Missing scheme in URI"
-msgstr ""
+msgstr "URI のスキームがない"
+#: cups/adminutil.c:243
#, c-format
msgid "Missing value on line %d."
msgstr "%d 行に値がありません。"
+#: cups/ppd.c:301
msgid "Missing value string"
msgstr "値文字列がありません"
+#: cups/pwg-media.c:462
msgid "Missing x-dimension in media-size."
msgstr "media-size に x-dimension がありません。"
+#: cups/pwg-media.c:468
msgid "Missing y-dimension in media-size."
msgstr "media-size に y-dimension がありません。"
+#: systemv/lpinfo.c:470
#, c-format
msgid ""
"Model: name = %s\n"
" プリンタードライバー = %s\n"
" デバイス ID = %s"
+#: test/ippfind.c:2786
msgid "Modifiers:"
msgstr "修飾子:"
+#: cgi-bin/admin.c:548
msgid "Modify Class"
msgstr "クラスの変更"
+#: cgi-bin/admin.c:860
msgid "Modify Printer"
msgstr "プリンターの変更"
+#: cgi-bin/ipp-var.c:410 cgi-bin/ipp-var.c:501
msgid "Move All Jobs"
msgstr "すべてのジョブの移動"
+#: cgi-bin/ipp-var.c:349 cgi-bin/ipp-var.c:408 cgi-bin/ipp-var.c:499
msgid "Move Job"
msgstr "ジョブの移動"
+#: cups/http-support.c:1353
msgid "Moved Permanently"
msgstr "別の場所へ移動しました"
+#: cups/ppd.c:298
msgid "NULL PPD file pointer"
msgstr "PPD ファイルポインターが NULL です"
+#: cups/snmp.c:1005
msgid "Name OID uses indefinite length"
msgstr "OID 名は限定的な長さを使用します"
+#: scheduler/ipp.c:1054
msgid "Nested classes are not allowed."
msgstr "入れ子になったクラスは許可されていません。"
+#: ppdc/sample.c:425
msgid "Never"
msgstr "Never"
+#: cups/ppd.c:1904
msgid "No"
msgstr "いいえ"
+#: cups/http-support.c:1350
msgid "No Content"
msgstr "中身がありません"
+#: cups/util.c:1123
msgid "No PPD name"
msgstr "PPD の名前がありません"
+#: cups/snmp.c:999
msgid "No VarBind SEQUENCE"
msgstr "VarBind SEQUENCE がありません"
+#: cups/adminutil.c:777
msgid "No Windows printer drivers are installed."
msgstr "Windows プリンタードライバーがインストールされていません。"
+#: cups/request.c:570 cups/request.c:933
msgid "No active connection"
msgstr "アクティブな接続はありません"
+#: cups/request.c:350
msgid "No active connection."
-msgstr ""
+msgstr "アクティブな接続はありません。"
+#: scheduler/ipp.c:3418
#, c-format
msgid "No active jobs on %s."
msgstr "%s にはアクティブなジョブはありません。"
+#: scheduler/ipp.c:216
msgid "No attributes in request."
msgstr "リクエストに属性がありません。"
+#: scheduler/ipp.c:3041
msgid "No authentication information provided."
msgstr "認証情報が提供されていません。"
+#: cups/snmp.c:956
msgid "No community name"
msgstr "コミュニティ名がありません"
+#: scheduler/ipp.c:5771
msgid "No default printer."
-msgstr "デフォルトのプリンターはありません"
+msgstr "デフォルトのプリンターはありません。"
+#: cgi-bin/ipp-var.c:421 scheduler/ipp.c:7149
msgid "No destinations added."
-msgstr "追加された宛先はありません"
+msgstr "追加された宛先はありません。"
+#: backend/usb.c:200
msgid "No device URI found in argv[0] or in DEVICE_URI environment variable."
msgstr "argv[0] または 環境変数 DEVICE_URI にデバイス URI が見つかりません。"
+#: cups/snmp.c:986
msgid "No error-index"
msgstr "エラーインデックスがありません"
+#: cups/snmp.c:978
msgid "No error-status"
msgstr "エラーステータスがありません"
+#: scheduler/ipp.c:8091 scheduler/ipp.c:9342
msgid "No file in print request."
msgstr "印刷リクエストにファイルがありません。"
+#: cups/util.c:817
msgid "No modification time"
-msgstr "変更時刻がありません。"
+msgstr "変更時刻がありません"
+#: cups/snmp.c:1003
msgid "No name OID"
msgstr "OID 名がありません"
+#: filter/rastertoepson.c:1132 filter/rastertohp.c:865
+#: filter/rastertolabel.c:1288
msgid "No pages were found."
msgstr " ページが見つかりません。"
+#: cups/util.c:811
msgid "No printer name"
-msgstr "プリンター名がありません。"
+msgstr "プリンター名がありません"
+#: cups/util.c:1647
msgid "No printer-uri found"
-msgstr "プリンター URI が見つかりません。"
+msgstr "プリンター URI が見つかりません"
+#: cups/util.c:1631
msgid "No printer-uri found for class"
-msgstr "クラスのプリンター URI が見つかりません。"
+msgstr "クラスのプリンター URI が見つかりません"
+#: scheduler/ipp.c:6179
msgid "No printer-uri in request."
msgstr "プリンター URI のリクエストがありません。"
+#: cups/http.c:2260
msgid "No request URI."
-msgstr ""
+msgstr "リクエスト URI がありません。"
+#: cups/http.c:2277
msgid "No request protocol version."
-msgstr ""
+msgstr "リクエストプロトコルバージョンがありません。"
+#: cups/request.c:358
msgid "No request sent."
-msgstr ""
+msgstr "リクエストが送られませんでした。"
+#: cups/snmp.c:970
msgid "No request-id"
msgstr "リクエストID がありません"
+#: scheduler/ipp.c:5374
msgid "No subscription attributes in request."
msgstr "リクエストにサブスクリプション属性がありません。"
+#: scheduler/ipp.c:7476
msgid "No subscriptions found."
msgstr "サブスクリプションが見つかりません。"
+#: cups/snmp.c:994
msgid "No variable-bindings SEQUENCE"
msgstr "variable-bindings SEQUENCE がありません"
+#: cups/snmp.c:949
msgid "No version number"
msgstr "バージョン名がありません"
+#: ppdc/sample.c:362
msgid "Non-continuous (Mark sensing)"
msgstr "非連続です (Mark sensing)"
+#: ppdc/sample.c:361
msgid "Non-continuous (Web sensing)"
msgstr "非連続です (Web sensing)"
+#: ppdc/sample.c:238
msgid "Normal"
msgstr "標準"
+#: cups/http-support.c:1372
msgid "Not Found"
msgstr "見つかりません"
+#: cups/http-support.c:1384
msgid "Not Implemented"
msgstr "実装されていません"
+#: ppdc/sample.c:268
msgid "Not Installed"
msgstr "インストールされていません"
+#: cups/http-support.c:1359
msgid "Not Modified"
msgstr "変更されていません"
+#: cups/http-support.c:1387
msgid "Not Supported"
msgstr "サポートされていません"
+#: scheduler/ipp.c:1490 scheduler/ipp.c:10572
msgid "Not allowed to print."
msgstr "印刷が許可されていません。"
+#: ppdc/sample.c:146
msgid "Note"
msgstr "注意"
+#: systemv/cupstestdsc.c:433
msgid ""
"Note: this program only validates the DSC comments, not the PostScript "
"itself."
"注意: このプログラムは DSC コメントを検証するだけで、PostScript 自身を検証す"
"るものではありません。"
+#: cups/http-support.c:1341 cups/http-support.c:1477 cups/ppd.c:296
msgid "OK"
msgstr "OK"
+#: ppdc/sample.c:263
msgid "Off (1-Sided)"
msgstr "Off (片面)"
+#: ppdc/sample.c:356
msgid "Oki"
msgstr "Oki"
+#: cgi-bin/help.c:91 cgi-bin/help.c:132 cgi-bin/help.c:142 cgi-bin/help.c:172
msgid "Online Help"
msgstr "オンラインヘルプ"
+#: cups/adminutil.c:944
#, c-format
msgid "Open of %s failed: %s"
msgstr "%s のオープンに失敗しました: %s"
+#: cups/ppd.c:304
msgid "OpenGroup without a CloseGroup first"
msgstr "OpenGroup の前にまず CloseGroup が必要です"
+#: cups/ppd.c:306
msgid "OpenUI/JCLOpenUI without a CloseUI/JCLCloseUI first"
msgstr "OpenUI/JCLOpenUI の前にまず CloseUI/JCLCloseUI が必要です"
+#: cgi-bin/admin.c:3611
msgid "Operation Policy"
msgstr "操作ポリシー"
+#: filter/pstops.c:2177
#, c-format
msgid "Option \"%s\" cannot be included via %%%%IncludeFeature."
msgstr "オプション \"%s\" は %%%%IncludeFeature 経由で含めることはできません。"
+#: cgi-bin/admin.c:3261 cgi-bin/admin.c:3345
msgid "Options Installed"
msgstr "インストールされたオプション"
+#: scheduler/cupsfilter.c:1482 scheduler/main.c:2146 systemv/cupsaddsmb.c:284
+#: systemv/cupsctl.c:203 systemv/cupstestdsc.c:429 systemv/cupstestppd.c:3817
+#: test/ippfind.c:2745 test/ipptool.c:4805 ppdc/ppdc.cxx:432
+#: ppdc/ppdhtml.cxx:174 ppdc/ppdi.cxx:130 ppdc/ppdmerge.cxx:363
+#: ppdc/ppdpo.cxx:254
msgid "Options:"
msgstr "オプション:"
+#: cups/ppd-cache.c:125
msgid "Out of date PPD cache file."
msgstr "PPD キャッシュファイルが古すぎます。"
+#: cups/ppd-cache.c:1410
msgid "Out of memory."
msgstr "メモリーが足りません。"
+#: cups/ppd.c:753 cups/ppd.c:1319
msgid "Output Mode"
msgstr "出力モード"
+#: cups/localize.c:316
msgid "Output bin is almost full."
-msgstr ""
+msgstr "排紙ビンがほとんど満杯です。"
+#: cups/localize.c:318
msgid "Output bin is full."
-msgstr ""
+msgstr "排紙ビンが満杯です。"
+#: cups/localize.c:314
msgid "Output bin is missing."
-msgstr ""
+msgstr "排紙ビンがありません。"
+#: systemv/cupstestdsc.c:399
msgid "PASS"
msgstr "合格"
+#: ppdc/sample.c:252
msgid "PCL Laser Printer"
msgstr "PCL レーザープリンター"
+#: ppdc/sample.c:149
msgid "PRC16K"
msgstr "PRC16K"
+#: ppdc/sample.c:150
msgid "PRC16K Long Edge"
msgstr "PRC16K 長辺送り"
+#: ppdc/sample.c:151
msgid "PRC32K"
msgstr "PRC32K"
+#: ppdc/sample.c:154
msgid "PRC32K Long Edge"
msgstr "PRC32K 長辺送り"
+#: ppdc/sample.c:152
msgid "PRC32K Oversize"
msgstr "PRC32K (特大)"
+#: ppdc/sample.c:153
msgid "PRC32K Oversize Long Edge"
msgstr "PRC32K (特大) 長辺送り"
+#: cups/snmp.c:966
msgid "Packet does not contain a Get-Response-PDU"
msgstr "パケットが Get-Response-PDU を含んでいません"
+#: cups/snmp.c:945
msgid "Packet does not start with SEQUENCE"
msgstr "パケットが SEQUENCE から始まりません"
+#: cups/localize.c:293
msgid "Paper jam."
-msgstr ""
+msgstr "用紙詰まりです。"
+#: cups/localize.c:310
msgid "Paper tray is almost empty."
-msgstr ""
+msgstr "給紙トレイがほとんど空です。"
+#: cups/localize.c:312
msgid "Paper tray is empty."
-msgstr ""
+msgstr "給紙トレイが空です。"
+#: cups/localize.c:308
msgid "Paper tray is missing."
-msgstr ""
+msgstr "給紙トレイがありません。"
+#: ppdc/sample.c:355
msgid "ParamCustominCutInterval"
msgstr "ParamCustominCutInterval"
+#: ppdc/sample.c:353
msgid "ParamCustominTearInterval"
msgstr "ParamCustominTearInterval"
+#: cups/auth.c:195 cups/auth.c:362
#, c-format
msgid "Password for %s on %s? "
msgstr "%s のパスワード (%s 上)? "
+#: systemv/cupsaddsmb.c:252
#, c-format
msgid "Password for %s required to access %s via SAMBA: "
msgstr "%s のパスワード (SAMBA 経由で %s にアクセスするのに必要):"
+#: cgi-bin/classes.c:159
msgid "Pause Class"
msgstr "クラスの休止"
+#: cgi-bin/printers.c:162
msgid "Pause Printer"
msgstr "プリンターの休止"
+#: ppdc/sample.c:443
msgid "Peel-Off"
msgstr "Peel-Off"
+#: ppdc/sample.c:160
msgid "Photo"
msgstr "写真"
+#: ppdc/sample.c:161
msgid "Photo Labels"
msgstr "写真ラベル"
+#: ppdc/sample.c:281
msgid "Plain Paper"
msgstr "普通紙"
+#: cgi-bin/admin.c:3279 cgi-bin/admin.c:3560
msgid "Policies"
msgstr "ポリシー"
+#: cgi-bin/admin.c:3286 cgi-bin/admin.c:3629 cgi-bin/admin.c:3642
msgid "Port Monitor"
msgstr "ポートモニター"
+#: ppdc/sample.c:270
msgid "PostScript Printer"
msgstr "PostScript プリンター"
+#: ppdc/sample.c:147
msgid "Postcard"
msgstr "ハガキ"
+#: ppdc/sample.c:71
msgid "Postcard Double "
msgstr "往復ハガキ"
+#: ppdc/sample.c:72
msgid "Postcard Double Long Edge"
msgstr "往復ハガキ 長辺送り"
+#: ppdc/sample.c:148
msgid "Postcard Long Edge"
msgstr "ハガキ 長辺送り"
+#: backend/ipp.c:961 backend/ipp.c:969
msgid "Preparing to print."
msgstr "印刷準備中です。"
+#: ppdc/sample.c:290
msgid "Print Density"
msgstr "印刷密度"
+#: cups/notify.c:82
msgid "Print Job:"
msgstr "ジョブの印刷:"
+#: ppdc/sample.c:335
msgid "Print Mode"
msgstr "印刷モード"
+#: ppdc/sample.c:378
msgid "Print Rate"
msgstr "印刷レート"
+#: cgi-bin/printers.c:171
msgid "Print Self-Test Page"
msgstr "自己テストページの印刷"
+#: ppdc/sample.c:322
msgid "Print Speed"
msgstr "印刷速度"
+#: cgi-bin/ipp-var.c:777
msgid "Print Test Page"
msgstr "テストページの印刷"
+#: ppdc/sample.c:351
msgid "Print and Cut"
msgstr "プリントしてカット"
+#: ppdc/sample.c:339
msgid "Print and Tear"
msgstr "プリントして切り取る"
+#: backend/socket.c:429 backend/usb-unix.c:184
msgid "Print file sent."
msgstr "プリントファイルが送られました。"
+#: backend/ipp.c:2172
msgid "Print job canceled at printer."
msgstr "印刷ジョブはプリンターでキャンセルされました。"
+#: backend/ipp.c:2164
msgid "Print job too large."
msgstr "印刷ジョブが大きすぎます。"
+#: backend/ipp.c:1642
msgid "Print job was not accepted."
-msgstr "印刷ジョブが受付されませんでした。"
+msgstr "印刷ジョブが受け付けられませんでした。"
+#: cgi-bin/ipp-var.c:1027
msgid "Printer Added"
msgstr "追加されたプリンター"
+#: ppdc/sample.c:255
msgid "Printer Default"
msgstr "デフォルトのプリンター"
+#: cgi-bin/ipp-var.c:1031
msgid "Printer Deleted"
msgstr "削除されたプリンター"
+#: cgi-bin/ipp-var.c:1029
msgid "Printer Modified"
msgstr "変更されたプリンター"
+#: cgi-bin/ipp-var.c:1025
msgid "Printer Paused"
msgstr "プリンターの休止"
+#: ppdc/sample.c:289
msgid "Printer Settings"
msgstr "プリンター設定"
+#: backend/ipp.c:2167
msgid "Printer cannot print supplied content."
msgstr "プリンターは受信した内容を印刷できませんでした。"
+#: backend/ipp.c:2170
msgid "Printer cannot print with supplied options."
msgstr "指定されたオプションではプリンターは印刷できません。"
+#: cups/notify.c:126
msgid "Printer:"
msgstr "プリンター:"
+#: cgi-bin/printers.c:196 cgi-bin/printers.c:324
msgid "Printers"
msgstr "プリンター"
+#: filter/rastertoepson.c:1078 filter/rastertohp.c:806
+#: filter/rastertolabel.c:1235
#, c-format
msgid "Printing page %d, %u%% complete."
-msgstr ""
+msgstr "ページ %d, %u%% の印刷が完了しました。"
+#: ppdc/sample.c:155
msgid "Quarto"
msgstr "Quarto"
+#: scheduler/ipp.c:1485 scheduler/ipp.c:10567
msgid "Quota limit reached."
msgstr "クォータの制限に達しました。"
+#: berkeley/lpq.c:490
msgid "Rank Owner Job File(s) Total Size"
msgstr "ランク 所有者 ジョブ ファイル 合計サイズ"
+#: cgi-bin/classes.c:163 cgi-bin/printers.c:166
msgid "Reject Jobs"
msgstr "ジョブの拒否"
+#: backend/lpd.c:1024 backend/lpd.c:1156
#, c-format
msgid "Remote host did not accept control file (%d)."
msgstr "リモートホストがコントロールファイルを受け付けませんでした (%d)。"
+#: backend/lpd.c:1109
#, c-format
msgid "Remote host did not accept data file (%d)."
msgstr "リモートホストがデータファイルを受け付けませんでした (%d)。"
+#: ppdc/sample.c:423
msgid "Reprint After Error"
msgstr "エラー後の再印刷"
+#: cups/http-support.c:1375
msgid "Request Entity Too Large"
msgstr "要求するエンティティが大きすぎます"
+#: cups/ppd.c:755 cups/ppd.c:1321 ppdc/sample.c:231
msgid "Resolution"
msgstr "解像度"
+#: cgi-bin/classes.c:157
msgid "Resume Class"
msgstr "クラスを再開する"
+#: cgi-bin/printers.c:159
msgid "Resume Printer"
msgstr "プリンターを再開する"
+#: ppdc/sample.c:165
msgid "Return Address"
msgstr "返信用ラベル"
+#: ppdc/sample.c:444
msgid "Rewind"
msgstr "巻き取り"
+#: cups/adminutil.c:2041
#, c-format
msgid "Running command: %s %s -N -A %s -c '%s'"
msgstr "コマンドを実行中: %s %s -N -A %s -c '%s'"
+#: cups/snmp.c:947
msgid "SEQUENCE uses indefinite length"
msgstr "SEQUENCE は不定長を使用しています"
+#: cups/http-support.c:1399
msgid "SSL/TLS Negotiation Error"
msgstr "SSL/TLS のネゴシエーションエラー"
+#: cups/http-support.c:1356
msgid "See Other"
msgstr "残りを見てください"
+#: backend/usb-darwin.c:552 backend/usb-libusb.c:346
msgid "Sending data to printer."
msgstr "データをプリンターに送信しています。"
+#: cgi-bin/ipp-var.c:1041
msgid "Server Restarted"
msgstr "再起動されたサーバー"
+#: cgi-bin/ipp-var.c:1047
msgid "Server Security Auditing"
msgstr "サーバーのセキュリティー監査"
+#: cgi-bin/ipp-var.c:1043
msgid "Server Started"
msgstr "開始されたサーバー"
+#: cgi-bin/ipp-var.c:1045
msgid "Server Stopped"
msgstr "停止されたサーバー"
+#: cups/tls-darwin.c:1008 cups/tls-gnutls.c:1024
msgid "Server credentials not set."
-msgstr ""
+msgstr "サーバー証明書が設定されていません。"
+#: cups/http-support.c:1393
msgid "Service Unavailable"
msgstr "利用できないサービス"
+#: cgi-bin/admin.c:2766 cgi-bin/admin.c:2812 cgi-bin/admin.c:2969
+#: cgi-bin/admin.c:2988
msgid "Set Allowed Users"
msgstr "許可するユーザーの設定"
+#: cgi-bin/admin.c:3015
msgid "Set As Server Default"
msgstr "サーバーのデフォルトに設定"
+#: cgi-bin/admin.c:3115
msgid "Set Class Options"
msgstr "クラスオプションの設定"
+#: cgi-bin/admin.c:3115 cgi-bin/admin.c:3289 cgi-bin/admin.c:3671
msgid "Set Printer Options"
msgstr "プリンターオプションの設定"
+#: cgi-bin/admin.c:3841 cgi-bin/admin.c:3885 cgi-bin/admin.c:3903
msgid "Set Publishing"
msgstr "公開の設定"
+#: ppdc/sample.c:166
msgid "Shipping Address"
msgstr "発送先ラベル"
+#: ppdc/sample.c:265
msgid "Short-Edge (Landscape)"
msgstr "短辺 (横原稿)"
+#: ppdc/sample.c:283
msgid "Special Paper"
msgstr "特殊紙"
+#: backend/lpd.c:1065
#, c-format
msgid "Spooling job, %.0f%% complete."
msgstr "ジョブをスプール中、%.0f%% 完了しました。"
+#: ppdc/sample.c:336
msgid "Standard"
msgstr "標準"
#. TRANSLATORS: Banner/cover sheet before the print job.
+#: cgi-bin/admin.c:3532
msgid "Starting Banner"
msgstr "開始バナー"
+#: filter/rastertoepson.c:1054 filter/rastertohp.c:782
+#: filter/rastertolabel.c:1211
#, c-format
msgid "Starting page %d."
msgstr "ページ %d を開始しています。"
+#: ppdc/sample.c:156
msgid "Statement"
msgstr "記述"
+#: scheduler/ipp.c:3564 scheduler/ipp.c:6590 scheduler/ipp.c:7289
+#: scheduler/ipp.c:8790
#, c-format
msgid "Subscription #%d does not exist."
msgstr "サブスクリプション番号 %d は存在しません。"
+#: test/ippfind.c:2798
msgid "Substitutions:"
msgstr "置換:"
+#: ppdc/sample.c:157
msgid "Super A"
msgstr "スーパー A"
+#: ppdc/sample.c:158
msgid "Super B"
msgstr "スーパー B"
+#: ppdc/sample.c:162
msgid "Super B/A3"
msgstr "スーパー B/A3"
+#: cups/http-support.c:1338
msgid "Switching Protocols"
msgstr "プロトコルの変更"
+#: ppdc/sample.c:159
msgid "Tabloid"
msgstr "タブロイド"
+#: ppdc/sample.c:45
msgid "Tabloid Oversize"
msgstr "タブロイド (特大)"
+#: ppdc/sample.c:46
msgid "Tabloid Oversize Long Edge"
msgstr "タブロイド (特大) 長辺送り"
+#: ppdc/sample.c:337
msgid "Tear"
msgstr "Tear"
+#: ppdc/sample.c:442
msgid "Tear-Off"
msgstr "Tear-Off"
+#: ppdc/sample.c:383
msgid "Tear-Off Adjust Position"
msgstr "Tear-Off 位置調節"
+#: scheduler/ipp.c:1321
#, c-format
msgid "The \"%s\" attribute is required for print jobs."
msgstr "印刷ジョブに \"%s\" 属性が必要です。"
+#: scheduler/ipp.c:6250 scheduler/ipp.c:6330 scheduler/ipp.c:6343
+#: scheduler/ipp.c:6355 scheduler/ipp.c:6370
#, c-format
msgid "The %s attribute cannot be provided with job-ids."
msgstr "%s 属性は、ジョブ ID と一緒に使うことはできません。"
+#: scheduler/ipp.c:1297
#, c-format
msgid ""
"The '%s' Job Description attribute cannot be supplied in a job creation "
"request."
msgstr "'%s' Job Description 属性はジョブ作成要求の中で指定できません。"
+#: scheduler/ipp.c:5183
#, c-format
msgid ""
"The '%s' operation attribute cannot be supplied in a Create-Job request."
msgstr "%s 操作属性は、Create-Job リクエストの中で使うことはできません。"
+#: scheduler/ipp.c:6820
#, c-format
msgid "The PPD file \"%s\" could not be found."
msgstr "PPD ファイル \"%s\" が見つかりません。"
+#: scheduler/ipp.c:6807
#, c-format
msgid "The PPD file \"%s\" could not be opened: %s"
msgstr "PPD ファイル \"%s\" を開けませんでした: %s"
+#: filter/rastertoepson.c:1023 filter/rastertohp.c:753
+#: filter/rastertolabel.c:1175
msgid "The PPD file could not be opened."
msgstr "PPD ファイルを開けませんでした。"
+#: cgi-bin/admin.c:727
msgid ""
"The class name may only contain up to 127 printable characters and may not "
"contain spaces, slashes (/), or the pound sign (#)."
-msgstr ""
-"クラス名は 127 文字以内の表示可能文字からなり、空白、スラッシュ (/)、シャー"
-"プ (#) を含んではなりません。"
+msgstr "クラス名は 127 文字以内の表示可能文字からなり、空白、スラッシュ (/)、ハッシュ (#) を含んではなりません。"
+#: cups/localize.c:338
msgid "The developer unit needs to be replaced."
msgstr "現像ユニットの交換が必要です。"
+#: cups/localize.c:336
msgid "The developer unit will need to be replaced soon."
msgstr "もうすぐ現像ユニットの交換時期です。"
+#: cups/localize.c:328
msgid "The fuser's temperature is high."
msgstr "定着器の温度が高すぎます。"
+#: cups/localize.c:330
msgid "The fuser's temperature is low."
msgstr "定着器の温度が低すぎます。"
+#: scheduler/ipp.c:2088
msgid ""
"The notify-lease-duration attribute cannot be used with job subscriptions."
msgstr ""
"notify-lease-duration 属性は、ジョブサブスクリプションと一緒に使うことはでき"
"ません。"
+#: scheduler/ipp.c:2071 scheduler/ipp.c:5499
#, c-format
msgid "The notify-user-data value is too large (%d > 63 octets)."
msgstr "notify-user-data 値が大きすぎます (%d > 63 オクテット)。"
+#: cups/localize.c:334
msgid "The optical photoconductor needs to be replaced."
msgstr "感光体の交換が必要です。"
+#: cups/localize.c:332
msgid "The optical photoconductor will need to be replaced soon."
msgstr "もうすぐ感光体の交換時期です。"
+#: backend/ipp.c:981
msgid "The printer configuration is incorrect or the printer no longer exists."
msgstr "プリンターの設定が正しくないかプリンターはすでに存在しません。"
+#: backend/lpd.c:627 backend/lpd.c:1017 backend/lpd.c:1099 backend/lpd.c:1149
msgid "The printer did not respond."
msgstr "プリンターが応答しません。"
+#: backend/ipp.c:825 backend/ipp.c:944 backend/ipp.c:1058 backend/ipp.c:1449
+#: backend/ipp.c:1614 backend/lpd.c:836 backend/socket.c:379
+#: backend/usb-unix.c:124 backend/usb-unix.c:414 backend/usb-unix.c:497
msgid "The printer is in use."
msgstr "プリンターは使用中です。"
+#: cups/localize.c:320
msgid "The printer is low on ink."
-msgstr ""
+msgstr "インク残量が残り少なくなっています。"
+#: cups/localize.c:298
msgid "The printer is low on toner."
-msgstr ""
+msgstr "トナー残量が残り少なくなっています。"
+#: backend/runloop.c:243 backend/runloop.c:363 cups/localize.c:296
msgid "The printer is not connected."
msgstr "プリンターは接続されていません。"
+#: backend/ipp.c:803 backend/ipp.c:836 backend/ipp.c:940 backend/lpd.c:815
+#: backend/lpd.c:856 backend/socket.c:358 backend/socket.c:391
msgid "The printer is not responding."
msgstr "プリンターが応答していません。"
+#: backend/runloop.c:385
msgid "The printer is now connected."
msgstr "プリンターが接続されました。"
+#: backend/usb-darwin.c:1300
msgid "The printer is now online."
msgstr "プリンターは現在オンラインです。"
+#: backend/usb-darwin.c:1321
msgid "The printer is offline."
msgstr "プリンターはオフラインです。"
+#: backend/ipp.c:818 backend/lpd.c:829 backend/socket.c:372
msgid "The printer is unreachable at this time."
msgstr "プリンターには現在到達できません。"
+#: cups/localize.c:322
msgid "The printer may be out of ink."
msgstr "プリンターのインクがなくなっているようです。"
+#: cups/localize.c:300
msgid "The printer may be out of toner."
msgstr "プリンターのトナーがなくなっているようです。"
+#: backend/ipp.c:812 backend/lpd.c:823 backend/socket.c:366
msgid "The printer may not exist or is unavailable at this time."
msgstr "プリンターは現在存在しないか、使用できないようです。"
+#: cgi-bin/admin.c:909
msgid ""
"The printer name may only contain up to 127 printable characters and may not "
"contain spaces, slashes (/), or the pound sign (#)."
-msgstr ""
-"プリンター名は 127 文字以内の表示可能文字から成り、空白、スラッシュ (/)、ポン"
-"ド記号 (#) を含んではなりません。"
-
+msgstr "プリンター名は 127 文字以内の表示可能文字から成り、空白、スラッシュ (/)、ハッシュ (#) を含んではなりません。"
+
+#: scheduler/ipp.c:788 scheduler/ipp.c:1048 scheduler/ipp.c:3205
+#: scheduler/ipp.c:3384 scheduler/ipp.c:5166 scheduler/ipp.c:5333
+#: scheduler/ipp.c:5647 scheduler/ipp.c:6216 scheduler/ipp.c:7025
+#: scheduler/ipp.c:7081 scheduler/ipp.c:7395 scheduler/ipp.c:7661
+#: scheduler/ipp.c:7750 scheduler/ipp.c:7783 scheduler/ipp.c:8106
+#: scheduler/ipp.c:8500 scheduler/ipp.c:8582 scheduler/ipp.c:9747
+#: scheduler/ipp.c:10199 scheduler/ipp.c:10530 scheduler/ipp.c:10612
+#: scheduler/ipp.c:10987
msgid "The printer or class does not exist."
msgstr "プリンターまたはクラスは存在しません。"
+#: scheduler/ipp.c:1234
msgid "The printer or class is not shared."
msgstr "プリンターまたはクラスは共有できません。"
+#: cups/localize.c:302
msgid "The printer's cover is open."
msgstr "プリンターのカバーが開いています。"
+#: cups/localize.c:306
msgid "The printer's door is open."
msgstr "プリンターのドアが開いています。"
+#: cups/localize.c:304
msgid "The printer's interlock is open."
msgstr "プリンターのインターロックが開いています。"
+#: cups/localize.c:324
msgid "The printer's waste bin is almost full."
msgstr "プリンターの廃インクまたは廃トナー容器がほとんど一杯です。"
+#: cups/localize.c:326
msgid "The printer's waste bin is full."
msgstr "プリンターの廃インクまたは廃トナー容器が一杯です。"
+#: scheduler/ipp.c:894 scheduler/ipp.c:2252
#, c-format
msgid "The printer-uri \"%s\" contains invalid characters."
msgstr "printer-uri \"%s\" には、無効な文字が含まれています。"
+#: scheduler/ipp.c:3182
msgid "The printer-uri attribute is required."
msgstr "printer-uri 属性は必須です。"
+#: scheduler/ipp.c:878
msgid ""
"The printer-uri must be of the form \"ipp://HOSTNAME/classes/CLASSNAME\"."
msgstr ""
"printer-uri は、\"ipp://ホスト名/classes/クラス名\" 形式でなければなりませ"
"ん。"
+#: scheduler/ipp.c:2236
msgid ""
"The printer-uri must be of the form \"ipp://HOSTNAME/printers/PRINTERNAME\"."
msgstr ""
"printer-uri は \"ipp://ホスト名/printers/プリンター名\" 形式でなければなりま"
"せん。"
+#: cgi-bin/admin.c:452
msgid ""
"The subscription name may not contain spaces, slashes (/), question marks "
"(?), or the pound sign (#)."
-msgstr ""
-"サブスクリプション名には、スペース、スラッシュ (/)、疑問府 (?)、ポンド記号 "
-"(#) を使用しないでください。"
+msgstr "サブスクリプション名には、スペース、スラッシュ (/)、疑問府 (?)、ハッシュ (#) を使用しないでください。"
+#: scheduler/client.c:2232
msgid ""
"The web interface is currently disabled. Run \"cupsctl WebInterface=yes\" to "
"enable it."
"Web インターフェイスが現在無効になっています。有効にするには \"cupsctl "
"WebInterface=yes\" を実行してください。"
+#: scheduler/ipp.c:6314
#, c-format
msgid "The which-jobs value \"%s\" is not supported."
msgstr "which-jobs の値 \"%s\" はサポートされていません。"
+#: scheduler/ipp.c:5577
msgid "There are too many subscriptions."
msgstr "サブスクリプションが多すぎます。"
+#: backend/usb-darwin.c:386 backend/usb-darwin.c:445 backend/usb-darwin.c:514
+#: backend/usb-darwin.c:535 backend/usb-libusb.c:271 backend/usb-libusb.c:325
msgid "There was an unrecoverable USB error."
msgstr "回復不可能な USB のエラーが発生しています。"
+#: ppdc/sample.c:430
msgid "Thermal Transfer Media"
msgstr "熱転写メディア"
+#: scheduler/ipp.c:1479
msgid "Too many active jobs."
msgstr "アクティブなジョブが多すぎます。"
+#: scheduler/ipp.c:1373
#, c-format
msgid "Too many job-sheets values (%d > 2)."
msgstr "job-sheets 値が多すぎます (%d > 2)。"
+#: scheduler/ipp.c:2537
#, c-format
msgid "Too many printer-state-reasons values (%d > %d)."
msgstr "printer-state-reasons 値が多すぎます (%d > %d)。"
+#: ppdc/sample.c:284
msgid "Transparency"
msgstr "OHP シート"
+#: ppdc/sample.c:279
msgid "Tray"
msgstr "トレイ"
+#: ppdc/sample.c:256
msgid "Tray 1"
msgstr "トレイ 1"
+#: ppdc/sample.c:257
msgid "Tray 2"
msgstr "トレイ 2"
+#: ppdc/sample.c:258
msgid "Tray 3"
msgstr "トレイ 3"
+#: ppdc/sample.c:259
msgid "Tray 4"
msgstr "トレイ 4"
+#: cups/http-support.c:1378
msgid "URI Too Long"
msgstr "URI が長すぎます"
+#: cups/http-support.c:1453
msgid "URI too large"
-msgstr ""
+msgstr "URI が長すぎる"
+#: ppdc/sample.c:138
msgid "US Ledger"
msgstr "US レジャー"
+#: ppdc/sample.c:139
msgid "US Legal"
msgstr "US リーガル"
+#: ppdc/sample.c:140
msgid "US Legal Oversize"
msgstr "US リーガル (特大)"
+#: ppdc/sample.c:141
msgid "US Letter"
msgstr "US レター"
+#: ppdc/sample.c:142
msgid "US Letter Long Edge"
msgstr "US レター 長辺送り"
+#: ppdc/sample.c:143
msgid "US Letter Oversize"
msgstr "US レター (特大)"
+#: ppdc/sample.c:144
msgid "US Letter Oversize Long Edge"
msgstr "US レター (特大) 長辺送り"
+#: ppdc/sample.c:145
msgid "US Letter Small"
msgstr "US レター (小)"
+#: cgi-bin/admin.c:1939 cgi-bin/admin.c:1952 cgi-bin/admin.c:1976
msgid "Unable to access cupsd.conf file"
msgstr "cupsd.conf ファイルにアクセスできません"
+#: cgi-bin/help.c:133
msgid "Unable to access help file."
msgstr "ヘルプファイルにアクセスできません。"
+#: cgi-bin/admin.c:504
msgid "Unable to add RSS subscription"
-msgstr " RSS 購読を追加できません"
+msgstr "RSS 購読を追加できません"
+#: cgi-bin/admin.c:792
msgid "Unable to add class"
msgstr "クラスを追加できません"
+#: backend/ipp.c:1796
msgid "Unable to add document to print job."
msgstr "ドキュメントを印刷ジョブに追加できません。"
+#: scheduler/ipp.c:1537
#, c-format
msgid "Unable to add job for destination \"%s\"."
msgstr "宛先 \"%s\"にジョブを追加できません。"
+#: cgi-bin/admin.c:1037 cgi-bin/admin.c:1399
msgid "Unable to add printer"
msgstr "プリンターを追加できません"
+#: scheduler/ipp.c:1164
msgid "Unable to allocate memory for file types."
msgstr "ファイルタイプ用にメモリーを割り当てられません。"
+#: filter/pstops.c:418
msgid "Unable to allocate memory for page info"
msgstr "ページ情報のメモリー割り当てができません"
+#: filter/pstops.c:412
msgid "Unable to allocate memory for pages array"
msgstr "ページアレイのメモリー割り当てができません"
+#: cgi-bin/admin.c:1505
msgid "Unable to cancel RSS subscription"
msgstr "RSS 購読をキャンセルできません"
+#: backend/ipp.c:2077 backend/ipp.c:2512
msgid "Unable to cancel print job."
msgstr "プリンターを変更できません。"
+#: cgi-bin/admin.c:2970
msgid "Unable to change printer"
msgstr "プリンターを変更できません"
+#: cgi-bin/admin.c:3886
msgid "Unable to change printer-is-shared attribute"
msgstr "printer-is-shared 属性を変更することができません"
+#: cgi-bin/admin.c:1637 cgi-bin/admin.c:1779
msgid "Unable to change server settings"
msgstr "サーバーの設定を変更できません"
+#: cups/ipp.c:5389
#, c-format
msgid "Unable to compile mimeMediaType regular expression: %s."
msgstr "mimeMediaType の正規表現を解釈できませんでした: %s。"
+#: cups/ipp.c:5335
#, c-format
msgid "Unable to compile naturalLanguage regular expression: %s."
msgstr "naturalLanguage の正規表現を解釈できませんでした: %s。"
+#: filter/commandtops.c:407
msgid "Unable to configure printer options."
msgstr "プリンターオプションを設定できません。"
+#: cups/adminutil.c:900 cups/request.c:1066
msgid "Unable to connect to host."
msgstr "ホストに接続できません。"
+#: backend/ipp.c:781 backend/ipp.c:1254 backend/lpd.c:795 backend/socket.c:338
+#: backend/usb-unix.c:110
msgid "Unable to contact printer, queuing on next printer in class."
msgstr "プリンターと交信できません。クラス内の次のプリンターにキューします。"
+#: cups/adminutil.c:715
#, c-format
msgid "Unable to copy 64-bit CUPS printer driver files (%d)."
msgstr "64-bit 版の CUPS プリンタードライバーファイルをコピーできません (%d)。"
+#: cups/adminutil.c:680
#, c-format
msgid "Unable to copy 64-bit Windows printer driver files (%d)."
msgstr "64-bit 版の Windows プリンタードライバーをコピーできません (%d)。"
+#: cups/adminutil.c:511
#, c-format
msgid "Unable to copy CUPS printer driver files (%d)."
msgstr "複数の CUPS プリンタードライバーファイルをコピーできません (%d)。"
+#: scheduler/ipp.c:2657
#, c-format
msgid "Unable to copy PPD file - %s"
msgstr "PPD ファイルをコピーできません - %s"
+#: scheduler/ipp.c:2712
msgid "Unable to copy PPD file."
msgstr "PPD ファイルをコピーできません。"
+#: cups/adminutil.c:476
#, c-format
msgid "Unable to copy Windows 2000 printer driver files (%d)."
msgstr ""
"複数の Windows 2000 プリンタードライバーファイルをコピーできません (%d)。"
+#: cups/adminutil.c:599
#, c-format
msgid "Unable to copy Windows 9x printer driver files (%d)."
msgstr ""
"複数の Windows 9x プリンタードライバーファイルをコピーできません (%d)。"
+#: scheduler/ipp.c:2634
#, c-format
msgid "Unable to copy interface script - %s"
msgstr "インターフェイススクリプトをコピーできません - %s"
+#: cups/util.c:496 cups/util.c:1479
msgid "Unable to create printer-uri"
-msgstr "printer-uri を作成できません。"
+msgstr "printer-uri を作成できません"
+#: cups/tls-darwin.c:1116 cups/tls-gnutls.c:1157
msgid "Unable to create server credentials."
-msgstr ""
+msgstr "サーバー証明書を作成できません。"
+#: cgi-bin/admin.c:1830 cgi-bin/admin.c:1842 scheduler/cupsfilter.c:1290
msgid "Unable to create temporary file"
msgstr "テンポラリーファイルを作成できません"
+#: cgi-bin/admin.c:2133
msgid "Unable to delete class"
msgstr "クラスを削除できません"
+#: cgi-bin/admin.c:2218
msgid "Unable to delete printer"
msgstr "プリンターを削除できません"
+#: cgi-bin/classes.c:252 cgi-bin/printers.c:261
msgid "Unable to do maintenance command"
msgstr "メンテナンスコマンドを実行できません"
+#: cgi-bin/admin.c:1954
msgid "Unable to edit cupsd.conf files larger than 1MB"
-msgstr "1MB 以上の cupsd.conf ファイルは編集できません。"
+msgstr "1MB 以上の cupsd.conf ファイルは編集できません"
+#: cups/tls-darwin.c:1284
msgid ""
"Unable to establish a secure connection to host (certificate chain invalid)."
msgstr "ホストへの安全な接続が確立できません (認証パスが無効です)。"
+#: cups/tls-darwin.c:1274
msgid ""
"Unable to establish a secure connection to host (certificate not yet valid)."
msgstr "ホストへの安全な接続が確立できません (認証がまだ有効ではありません)。"
+#: cups/tls-darwin.c:1269
msgid "Unable to establish a secure connection to host (expired certificate)."
msgstr "ホストへの安全な接続が確立できません (認証が期限切れです)。"
+#: cups/tls-darwin.c:1279
msgid "Unable to establish a secure connection to host (host name mismatch)."
msgstr "ホストへの安全な接続が確立できません (ホスト名が一致しません)。"
+#: cups/tls-darwin.c:1289
msgid ""
"Unable to establish a secure connection to host (peer dropped connection "
"before responding)."
msgstr ""
"ホストへの安全な接続が確立できません (応答がある前に接続が切断されました)。"
+#: cups/tls-darwin.c:1264
msgid ""
"Unable to establish a secure connection to host (self-signed certificate)."
msgstr "ホストへの安全な接続が確立できません (自己署名証明書です)。"
+#: cups/tls-darwin.c:1259
msgid ""
"Unable to establish a secure connection to host (untrusted certificate)."
msgstr "ホストへの安全な接続が確立できません (信用できない証明書です)。"
+#: cups/tls-darwin.c:1316 cups/tls-sspi.c:1247 cups/tls-sspi.c:1264
msgid "Unable to establish a secure connection to host."
msgstr "ホストへの安全な接続を確立できません。"
+#: cgi-bin/ipp-var.c:350
msgid "Unable to find destination for job"
msgstr "ジョブの宛先が見つかりません"
+#: cups/http-support.c:1949
msgid "Unable to find printer."
msgstr "プリンターが見つかりません。"
+#: cups/tls-darwin.c:1130
msgid "Unable to find server credentials."
-msgstr ""
+msgstr "サーバー証明書を見つけられません。"
+#: backend/ipp.c:3493
msgid "Unable to get backend exit status."
msgstr "バックエンドの終了ステータスを取得できません。"
+#: cgi-bin/classes.c:442
msgid "Unable to get class list"
msgstr "クラスリストを取得できません"
+#: cgi-bin/classes.c:541
msgid "Unable to get class status"
msgstr "クラスの状態を取得できません。"
+#: cgi-bin/admin.c:1300
msgid "Unable to get list of printer drivers"
msgstr "プリンタードライバーのリストを取得できません"
+#: cgi-bin/admin.c:2820
msgid "Unable to get printer attributes"
msgstr "プリンター属性を取得できません"
+#: cgi-bin/printers.c:459
msgid "Unable to get printer list"
msgstr "プリンターリストを取得できません"
+#: cgi-bin/printers.c:561
msgid "Unable to get printer status"
msgstr "プリンターの状態を取得できません"
+#: backend/ipp.c:1005
msgid "Unable to get printer status."
msgstr "プリンターの状態を取得できません。"
+#: cups/adminutil.c:554 cups/adminutil.c:758
#, c-format
msgid "Unable to install Windows 2000 printer driver files (%d)."
msgstr ""
"複数の Windows 2000 プリンタードライバーファイルをインストールできません "
"(%d)。"
+#: cups/adminutil.c:628
#, c-format
msgid "Unable to install Windows 9x printer driver files (%d)."
msgstr ""
"複数の Windows 9x プリンタードライバーファイルをインストールできません (%d)。"
+#: cgi-bin/help.c:92
msgid "Unable to load help index."
msgstr "ヘルプの索引を読み込めません。"
+#: backend/ipp.c:668 backend/lpd.c:426 backend/socket.c:277
#, c-format
msgid "Unable to locate printer \"%s\"."
msgstr "プリンター \"%s\" が見つかりません。"
+#: backend/dnssd.c:787 backend/ipp.c:336 backend/lpd.c:196
+#: backend/socket.c:163
msgid "Unable to locate printer."
msgstr "プリンターが見つかりません。"
+#: cgi-bin/admin.c:791
msgid "Unable to modify class"
msgstr "クラスを変更できません"
+#: cgi-bin/admin.c:1036 cgi-bin/admin.c:1398
msgid "Unable to modify printer"
msgstr "プリンターを変更できません"
+#: cgi-bin/ipp-var.c:417 cgi-bin/ipp-var.c:506
msgid "Unable to move job"
msgstr "ジョブを移動できません"
+#: cgi-bin/ipp-var.c:419 cgi-bin/ipp-var.c:508
msgid "Unable to move jobs"
msgstr "複数のジョブを移動できません"
+#: cgi-bin/admin.c:3166 cups/ppd.c:297
msgid "Unable to open PPD file"
msgstr "PPD ファイルを読み込むことができません"
+#: cgi-bin/admin.c:2588
msgid "Unable to open cupsd.conf file:"
msgstr "cupsd.conf ファイルを開けません:"
+#: backend/usb-unix.c:134
msgid "Unable to open device file"
msgstr "デバイスファイルを開けません"
+#: scheduler/ipp.c:5992
#, c-format
msgid "Unable to open document #%d in job #%d."
msgstr "ドキュメント %d (ジョブ %d) を開けません。"
+#: cgi-bin/help.c:364
msgid "Unable to open help file."
msgstr "ヘルプファイルを読み込むことができません。"
+#: backend/ipp.c:378 backend/ipp.c:1543 backend/ipp.c:1751 backend/lpd.c:496
+#: backend/socket.c:150 backend/usb.c:237 filter/gziptoany.c:67
+#: filter/pstops.c:267
msgid "Unable to open print file"
msgstr "印刷ファイルを開けません"
+#: filter/rastertoepson.c:983 filter/rastertohp.c:713
+#: filter/rastertolabel.c:1133
msgid "Unable to open raster file"
msgstr "ラスターファイルを開けません"
+#: cgi-bin/ipp-var.c:780
msgid "Unable to print test page"
msgstr "テストページを印刷できません"
+#: backend/runloop.c:85 backend/runloop.c:314 backend/usb-darwin.c:622
+#: backend/usb-darwin.c:666 backend/usb-libusb.c:416 backend/usb-libusb.c:451
msgid "Unable to read print data."
msgstr "プリントデータを読み込めません。"
+#: cups/dest.c:3445
msgid "Unable to resolve printer-uri."
-msgstr ""
+msgstr "printer-uri を解決できません。"
+#: cups/adminutil.c:2077
#, c-format
msgid "Unable to run \"%s\": %s"
msgstr "\"%s\" を実行できません: %s"
+#: filter/pstops.c:530
msgid "Unable to see in file"
msgstr "ファイルを読み込むことができません"
+#: cgi-bin/ipp-var.c:583 cgi-bin/ipp-var.c:603
msgid "Unable to send command to printer driver"
msgstr "プリンタードライバーにコマンドを送信できません"
+#: backend/usb-darwin.c:744 backend/usb-libusb.c:527
msgid "Unable to send data to printer."
msgstr "プリンターにデータを送信することができません。"
+#: cups/adminutil.c:810
#, c-format
msgid "Unable to set Windows printer driver (%d)."
msgstr "Windows プリンタードライバーを設定できません (%d)。"
+#: cgi-bin/admin.c:3787
msgid "Unable to set options"
msgstr "オプションを設定できません"
+#: cgi-bin/admin.c:3057
msgid "Unable to set server default"
msgstr "サーバーをデフォルトに設定できません"
+#: backend/ipp.c:3352 backend/ipp.c:3429 backend/ipp.c:3437
msgid "Unable to start backend process."
msgstr "バックエンドのプロセスを起動できません。"
+#: cgi-bin/admin.c:1892
msgid "Unable to upload cupsd.conf file"
msgstr "cupsd.conf ファイルをアップロードできません"
+#: backend/usb-darwin.c:2016 backend/usb-darwin.c:2040
msgid "Unable to use legacy USB class driver."
msgstr "古いタイプの USB クラスドライバーは使用できません。"
+#: backend/runloop.c:114 backend/runloop.c:369
msgid "Unable to write print data"
msgstr "プリントデータを書き込めません"
+#: filter/gziptoany.c:86
#, c-format
msgid "Unable to write uncompressed print data: %s"
msgstr "非圧縮のプリントデータを書き込めません: %s"
+#: cups/http-support.c:1366
msgid "Unauthorized"
msgstr "未許可"
+#: cgi-bin/admin.c:3483
msgid "Units"
msgstr "ユニット"
+#: cups/http-support.c:1406 cups/http-support.c:1490 cups/ppd.c:324
msgid "Unknown"
msgstr "未知"
+#: filter/pstops.c:2185
#, c-format
msgid "Unknown choice \"%s\" for option \"%s\"."
msgstr "\"%s\" (オプション \"%s\" 用) は未知の設定です。"
+#: backend/ipp.c:520
#, c-format
msgid "Unknown encryption option value: \"%s\"."
msgstr "\"%s\" は未知の暗号オプション値です。"
+#: backend/lpd.c:342
#, c-format
msgid "Unknown file order: \"%s\"."
msgstr "\"%s\" は未知のファイルオーダーです。"
+#: backend/lpd.c:313
#, c-format
msgid "Unknown format character: \"%c\"."
msgstr "\"%c\" は未知の書式文字です。"
+#: cups/dest-options.c:964
msgid "Unknown media size name."
msgstr "未知のメディアサイズ名称です。"
+#: backend/ipp.c:584
#, c-format
msgid "Unknown option \"%s\" with value \"%s\"."
msgstr "\"%s\" (値 \"%s\") は未知のオプションです。"
+#: filter/pstops.c:2168
#, c-format
msgid "Unknown option \"%s\"."
msgstr "\"%s\" は未知のオプションです。"
+#: backend/lpd.c:328
#, c-format
msgid "Unknown print mode: \"%s\"."
msgstr "\"%s\" は未知のプリントモードです。"
+#: scheduler/ipp.c:10401
#, c-format
msgid "Unknown printer-error-policy \"%s\"."
msgstr "\"%s\" は未知の printer-error-policy です。"
+#: scheduler/ipp.c:10384
#, c-format
msgid "Unknown printer-op-policy \"%s\"."
msgstr "\"%s\" は未知の printer-op-policy です。"
+#: cups/http.c:2309
msgid "Unknown request method."
-msgstr ""
+msgstr "未知のリクエスト方法です。"
+#: cups/http.c:2329
msgid "Unknown request version."
-msgstr ""
+msgstr "未知のリクエストバージョンです。"
+#: cups/http-support.c:1483
msgid "Unknown scheme in URI"
-msgstr ""
+msgstr "URI に未知のスキーマがあります"
+#: cups/http-addrlist.c:737
msgid "Unknown service name."
msgstr "未知のサービス名です。"
+#: backend/ipp.c:549
#, c-format
msgid "Unknown version option value: \"%s\"."
msgstr "\"%s\" は未知のバージョンオプション値です。"
+#: scheduler/ipp.c:10858
#, c-format
msgid "Unsupported 'compression' value \"%s\"."
msgstr "\"%s\" はサポートされていない 'compression' の値です。"
+#: scheduler/ipp.c:10888
#, c-format
msgid "Unsupported 'document-format' value \"%s\"."
msgstr "\"%s\" はサポートされていない 'document-format' の値です。"
+#: scheduler/ipp.c:10963
msgid "Unsupported 'job-name' value."
msgstr "サポートされていない 'job-name' の値です。"
+#: scheduler/ipp.c:329
#, c-format
msgid "Unsupported character set \"%s\"."
msgstr "\"%s\" はサポートされていない文字セットです。"
+#: scheduler/ipp.c:8072 scheduler/ipp.c:9307
#, c-format
msgid "Unsupported compression \"%s\"."
msgstr "\"%s\" はサポートされていない圧縮形式です。"
+#: scheduler/ipp.c:8206 scheduler/ipp.c:9457
#, c-format
msgid "Unsupported document-format \"%s\"."
msgstr "\"%s\" はサポートされていない文書形式です。"
+#: scheduler/ipp.c:9440
#, c-format
msgid "Unsupported document-format \"%s/%s\"."
msgstr "\"%s/%s\" はサポートされていない文書形式です。"
+#: scheduler/ipp.c:1339
#, c-format
msgid "Unsupported format \"%s\"."
msgstr "\"%s\" はサポートされていない形式です。"
+#: scheduler/ipp.c:1437
msgid "Unsupported margins."
msgstr "サポートされていないマージンです。"
+#: cups/pwg-media.c:549
msgid "Unsupported media value."
msgstr "サポートされていないメディアの値です。"
+#: filter/pstops.c:2450
#, c-format
msgid "Unsupported number-up value %d, using number-up=1."
msgstr "%d はサポートされていない number-up 値です。number-up=1 を使用します。"
+#: filter/pstops.c:2484
#, c-format
msgid "Unsupported number-up-layout value %s, using number-up-layout=lrtb."
msgstr ""
"%s はサポートされていない number-up-layout 値です。number-up-layout=lrtb を使"
"用します。"
+#: filter/pstops.c:2535
#, c-format
msgid "Unsupported page-border value %s, using page-border=none."
msgstr ""
"%s はサポートされていない page-border 値です。page-border=none を使用します。"
+#: filter/rastertopwg.c:139 filter/rastertopwg.c:147 filter/rastertopwg.c:156
msgid "Unsupported raster data."
msgstr "サポートされていないラスターデータです。"
+#: cups/snmp.c:1064
msgid "Unsupported value type"
msgstr "サポートされていない型の値です"
+#: cups/http-support.c:1381
msgid "Upgrade Required"
msgstr "アップグレードが必要です"
+#: systemv/lpadmin.c:654
msgid ""
"Usage:\n"
"\n"
" [-u allow:ユーザー,ユーザー] [-u deny:ユーザー,ユー"
"ザー]"
+#: backend/dnssd.c:227 backend/ipp.c:325 backend/lpd.c:183
+#: backend/socket.c:127 backend/usb.c:183 filter/commandtops.c:63
+#: filter/gziptoany.c:46 filter/pstops.c:231 monitor/bcp.c:56
+#: monitor/tbcp.c:55
#, c-format
msgid "Usage: %s job-id user title copies options [file]"
msgstr "使い方: %s ジョブID ユーザー タイトル コピー数 オプション [ファイル]"
+#: systemv/cupsaddsmb.c:281
msgid "Usage: cupsaddsmb [options] printer1 ... printerN"
msgstr "Usage: cupsaddsmb [オプション] プリンター1 ... プリンターN"
+#: systemv/cupsctl.c:200
msgid "Usage: cupsctl [options] [param=value ... paramN=valueN]"
msgstr "Usage: cupsctl [オプション] [パラメータ=値 ... パラメータN=値N]"
+#: scheduler/main.c:2145
msgid "Usage: cupsd [options]"
msgstr "使い方: cupsd [オプション]"
+#: scheduler/cupsfilter.c:1481
msgid "Usage: cupsfilter [ options ] [ -- ] filename"
-msgstr ""
+msgstr "使い方: cupsfilter [ オプション ] [ -- ] ファイル名"
+#: systemv/cupstestdsc.c:425
msgid "Usage: cupstestdsc [options] filename.ps [... filename.ps]"
-msgstr "使い方: cupstestdsc [オプション] filename.ps [... filename.ps]"
+msgstr "使い方: cupstestdsc [オプション] ファイル名.ps [... ファイル名.ps]"
+#: systemv/cupstestppd.c:3813
msgid ""
"Usage: cupstestppd [options] filename1.ppd[.gz] [... filenameN.ppd[.gz]]"
msgstr ""
"使い方: cupstestppd [オプション] ファイル名1.ppd[.gz] [... ファイル名N.ppd[."
"gz]]"
+#: test/ippdiscover.c:814
msgid ""
"Usage: ippdiscover [options] -a\n"
" ippdiscover [options] \"service name\"\n"
"\n"
"オプション:"
+#: test/ippfind.c:2738
msgid ""
"Usage: ippfind [options] regtype[,subtype][.domain.] ... [expression]\n"
" ippfind [options] name[.regtype[.domain.]] ... [expression]\n"
" ippfind --help\n"
" ippfind --version"
+#: test/ipptool.c:4803
msgid "Usage: ipptool [options] URI filename [ ... filenameN ]"
msgstr "使い方: ipptool [オプション] URI ファイル名 [ ... ファイル名N ]"
+#: systemv/lpmove.c:125
msgid "Usage: lpmove job/src dest"
msgstr "使い方: lpmove ジョブ/ソース 宛先"
+#: systemv/lpoptions.c:539
msgid ""
"Usage: lpoptions [-h server] [-E] -d printer\n"
" lpoptions [-h server] [-E] [-p printer] -l\n"
" lpoptions [-h サーバー] [-E] -p プリンター -o オプション[=値] ...\n"
" lpoptions [-h サーバー] [-E] -x プリンター"
+#: berkeley/lpq.c:637
msgid ""
"Usage: lpq [-P dest] [-U username] [-h hostname[:port]] [-l] [+interval]"
msgstr ""
"使い方: lpq [-P 宛先] [-U ユーザー名] [-h ホスト名[:ポート]] [-l] [+間隔]"
+#: ppdc/ppdc.cxx:430
msgid "Usage: ppdc [options] filename.drv [ ... filenameN.drv ]"
msgstr "使い方: ppdc [オプション] ファイル名.drv [ ... ファイル名N.drv ]"
+#: ppdc/ppdhtml.cxx:172
msgid "Usage: ppdhtml [options] filename.drv >filename.html"
msgstr "使い方: ppdhtml [オプション] ファイル名.drv >ファイル名.html"
+#: ppdc/ppdi.cxx:128
msgid "Usage: ppdi [options] filename.ppd [ ... filenameN.ppd ]"
msgstr "使い方: ppdi [オプション] ファイル名.ppd [ ... ファイル名N.ppd ]"
+#: ppdc/ppdmerge.cxx:361
msgid "Usage: ppdmerge [options] filename.ppd [ ... filenameN.ppd ]"
msgstr "使い方: ppdmerge [オプション] ファイル名.ppd [ ... ファイル名N.ppd ]"
+#: ppdc/ppdpo.cxx:252
msgid ""
"Usage: ppdpo [options] -o filename.po filename.drv [ ... filenameN.drv ]"
msgstr ""
"使い方: ppdpo [オプション] -o ファイル名.po ファイル名.drv [ ... ファイル名N."
"drv ]"
+#: backend/snmp.c:192
msgid "Usage: snmp [host-or-ip-address]"
-msgstr "使い方: snmp [ホストまたはIPアドレス]"
+msgstr "使い方: snmp [ホスト名またはIPアドレス]"
+#: cups/snmp.c:1016
msgid "Value uses indefinite length"
msgstr "値は不定長です"
+#: cups/snmp.c:1001
msgid "VarBind uses indefinite length"
msgstr "VarBind は不定長です"
+#: cups/snmp.c:951
msgid "Version uses indefinite length"
msgstr "Version は不定長です"
+#: backend/ipp.c:1913
msgid "Waiting for job to complete."
msgstr "ジョブが完了するのを待っています。"
+#: backend/usb-darwin.c:469 backend/usb-libusb.c:223
msgid "Waiting for printer to become available."
msgstr "プリンターが使用可能になるのを待っています。"
+#: backend/socket.c:440
msgid "Waiting for printer to finish."
msgstr "プリンターが終了するのを待っています。"
+#: cups/adminutil.c:782
msgid "Warning, no Windows 2000 printer drivers are installed."
msgstr "警告、Windows 2000 プリンタードライバーがインストールされていません。"
+#: cups/http-support.c:1402
msgid "Web Interface is Disabled"
msgstr "Web インターフェイスが無効になっています"
+#: cups/ppd.c:1902
msgid "Yes"
msgstr "はい"
+#: scheduler/client.c:2219
#, c-format
msgid ""
"You must access this page using the URL <A HREF=\"https://%s:%d%s\">https://"
"このページには URL <A HREF=\"https://%s:%d%s\">https://%s:%d%s</A> を使ってア"
"クセスする必要があります。"
+#: ppdc/sample.c:434
msgid "ZPL Label Printer"
msgstr "ZPL ラベルプリンター"
+#: ppdc/sample.c:357
msgid "Zebra"
msgstr "ゼブラ"
+#: cups/notify.c:102
msgid "aborted"
msgstr "停止"
+#: cups/notify.c:99
msgid "canceled"
msgstr "キャンセル"
+#: cups/notify.c:105
msgid "completed"
msgstr "完了"
+#: scheduler/ipp.c:5864
msgid "cups-deviced failed to execute."
msgstr "cups-deviced の実行に失敗しました。"
+#: scheduler/ipp.c:6743 scheduler/ipp.c:6992
msgid "cups-driverd failed to execute."
msgstr "cups-driverd の実行に失敗しました。"
+#: systemv/cupsaddsmb.c:233
#, c-format
msgid "cupsaddsmb: No PPD file for printer \"%s\" - %s"
msgstr "cupsaddsmb: プリンター \"%s\" の PPD ファイルがありません - %s"
+#: systemv/cupsctl.c:141
msgid "cupsctl: Cannot set Listen or Port directly."
msgstr "cupsctl: Listen あるいは Port を直接設定できません。"
+#: systemv/cupsctl.c:152
#, c-format
msgid "cupsctl: Unable to connect to server: %s"
msgstr "cupsctl: サーバーに接続できません: %s"
+#: systemv/cupsctl.c:195
#, c-format
msgid "cupsctl: Unknown option \"%s\""
msgstr "cupsctl: \"%s\" は未知のオプションです。"
+#: systemv/cupsctl.c:197
#, c-format
msgid "cupsctl: Unknown option \"-%c\""
msgstr "cupsctl: \"-%c\"は未知のオプションです。"
+#: scheduler/main.c:171
msgid "cupsd: Expected config filename after \"-c\" option."
msgstr "cupsd: \"-c\" オプションのあとには設定ファイル名が必要です。"
+#: scheduler/main.c:258
msgid "cupsd: Expected cups-files.conf filename after \"-s\" option."
msgstr ""
"cupsd: cups-files.conf ファイル名は \"-s\" オプションの後ろにあるべきです。"
+#: scheduler/main.c:236
msgid "cupsd: On-demand support not compiled in, running in normal mode."
-msgstr ""
+msgstr "cupsd: オンデマンドサポート有効でコンパイルされていません、標準モードで動作します。"
+#: scheduler/main.c:269
msgid "cupsd: Relative cups-files.conf filename not allowed."
msgstr "cupsd: 相対パスでの cups-files.conf の指定はできません。"
+#: scheduler/main.c:202 scheduler/main.c:209
msgid "cupsd: Unable to get current directory."
msgstr "cupsd: カレントディレクトリーを取得できません。"
+#: scheduler/main.c:316 scheduler/main.c:325
msgid "cupsd: Unable to get path to cups-files.conf file."
msgstr "cupsd: cups-files.conf ファイルへのパスが取得できません。"
+#: scheduler/main.c:298
#, c-format
msgid "cupsd: Unknown argument \"%s\" - aborting."
msgstr "cupsd: \"%s\" は未知の引数です - 停止します。"
+#: scheduler/main.c:291
#, c-format
msgid "cupsd: Unknown option \"%c\" - aborting."
msgstr "cupsd: \"%c\" は未知のオプションです - 停止します。"
+#: scheduler/cupsfilter.c:1263
#, c-format
msgid "cupsfilter: Invalid document number %d."
msgstr "cupsfilter: 不正な文書番号 %d です。"
+#: scheduler/cupsfilter.c:1257
#, c-format
msgid "cupsfilter: Invalid job ID %d."
msgstr "cupsfilter: 不正なジョブID %d です。"
+#: scheduler/cupsfilter.c:348
msgid "cupsfilter: Only one filename can be specified."
msgstr "cupsfilter: 1 つのファイル名のみを指定できます。"
+#: scheduler/cupsfilter.c:1305
#, c-format
msgid "cupsfilter: Unable to get job file - %s"
msgstr "cupsfilter: ジョブ・ファイルを取得できません - %s"
+#: systemv/cupstestppd.c:261
msgid "cupstestppd: The -q option is incompatible with the -v option."
msgstr "cupstestppd: -q オプションは -v オプションと両立できません。"
+#: systemv/cupstestppd.c:277
msgid "cupstestppd: The -v option is incompatible with the -q option."
msgstr "cupstestppd: -v オプションは -q オプションと両立できません。"
+#: systemv/lpstat.c:1232 systemv/lpstat.c:1235 systemv/lpstat.c:1238
#, c-format
msgid "device for %s/%s: %s"
msgstr "%s/%s のデバイス: %s"
+#: systemv/lpstat.c:1218 systemv/lpstat.c:1221 systemv/lpstat.c:1224
#, c-format
msgid "device for %s: %s"
msgstr "%s のデバイス: %s"
+#: cups/snmp.c:988
msgid "error-index uses indefinite length"
msgstr "error-index は不定長です"
+#: cups/snmp.c:980
msgid "error-status uses indefinite length"
msgstr "error-status は不定長です"
+#: cups/notify.c:90
msgid "held"
msgstr "保留"
+#: berkeley/lpc.c:201
msgid "help\t\tGet help on commands."
msgstr "help\t\tコマンドのヘルプを取得。"
+#: cups/notify.c:131
msgid "idle"
msgstr "待機中"
+#: test/ippfind.c:2465
#, c-format
msgid "ippfind: Bad regular expression: %s"
msgstr "ippfind: 不正な正規表現です: %s"
+#: test/ippfind.c:328
msgid "ippfind: Cannot use --and after --or."
-msgstr "ippfind: --and は --or の後に指定することはできません。"
+msgstr "ippfind: --and は --or のあとに指定することはできません。"
+#: test/ippfind.c:601
#, c-format
msgid "ippfind: Expected key name after %s."
-msgstr "ippfind: %s の後にはキー名が必要です。"
+msgstr "ippfind: %s のあとにはキー名が必要です。"
+#: test/ippfind.c:551 test/ippfind.c:734
#, c-format
msgid "ippfind: Expected port range after %s."
-msgstr "ippfind: %s の後にはポート範囲が必要です。"
+msgstr "ippfind: %s のあとにはポート範囲が必要です。"
+#: test/ippfind.c:361
#, c-format
msgid "ippfind: Expected program after %s."
-msgstr "ippfind: %s の後にはプログラム名が必要です。"
+msgstr "ippfind: %s のあとにはプログラム名が必要です。"
+#: test/ippfind.c:378
#, c-format
msgid "ippfind: Expected semi-colon after %s."
-msgstr "ippfind: %s の後にはセミコロンが必要です。"
+msgstr "ippfind: %s のあとにはセミコロンが必要です。"
+#: test/ippfind.c:1965
msgid "ippfind: Missing close brace in substitution."
msgstr "ippfind: 置換文字列の閉じカッコがありません。"
+#: test/ippfind.c:1053
msgid "ippfind: Missing close parenthesis."
msgstr "ippfind: 閉じカッコが不足しています。"
+#: test/ippfind.c:335
msgid "ippfind: Missing expression before \"--and\"."
msgstr "ippfind: \"--and\" の前には式が必要です。"
+#: test/ippfind.c:448
msgid "ippfind: Missing expression before \"--or\"."
msgstr "ippfind: \"--or\" の前には式が必要です。"
+#: test/ippfind.c:871
#, c-format
msgid "ippfind: Missing key name after %s."
-msgstr "ippfind: %s の後にはキー名が必要です。"
+msgstr "ippfind: %s のあとにはキー名が必要です。"
+#: test/ippfind.c:1024
msgid "ippfind: Missing open parenthesis."
msgstr "ippfind: 開きカッコが足りません。"
+#: test/ippfind.c:901
#, c-format
msgid "ippfind: Missing program after %s."
-msgstr "ippfind: %s の後にはプログラム名が必要です。"
+msgstr "ippfind: %s のあとにはプログラム名が必要です。"
+#: test/ippfind.c:347 test/ippfind.c:401 test/ippfind.c:430 test/ippfind.c:536
+#: test/ippfind.c:618 test/ippfind.c:633 test/ippfind.c:788 test/ippfind.c:803
+#: test/ippfind.c:826 test/ippfind.c:886
#, c-format
msgid "ippfind: Missing regular expression after %s."
-msgstr "ippfind: %s の後には正規表現が必要です。"
+msgstr "ippfind: %s のあとには正規表現が必要です。"
+#: test/ippfind.c:919
#, c-format
msgid "ippfind: Missing semi-colon after %s."
-msgstr "ippfind: %s の後にはセミコロンが必要です。"
+msgstr "ippfind: %s のあとにはセミコロンが必要です。"
+#: test/ippfind.c:1912 test/ippfind.c:1937
msgid "ippfind: Out of memory."
msgstr "ippfind: メモリ不足です。"
+#: test/ippfind.c:997
msgid "ippfind: Too many parenthesis."
-msgstr "ippfind: カッコが多過ぎます。"
+msgstr "ippfind: カッコが多すぎます。"
+#: test/ippfind.c:1266 test/ippfind.c:1402 test/ippfind.c:2557
#, c-format
msgid "ippfind: Unable to browse or resolve: %s"
msgstr "ippfind: %s をブラウズできないか名前解決できません。"
+#: test/ippfind.c:2035 test/ippfind.c:2062
#, c-format
msgid "ippfind: Unable to execute \"%s\": %s"
-msgstr "ippfind: \"%s\" を実行できません : %s"
+msgstr "ippfind: \"%s\" を実行できません: %s"
+#: test/ippfind.c:1143 test/ippfind.c:1151 test/ippfind.c:1162
#, c-format
msgid "ippfind: Unable to use Bonjour: %s"
-msgstr "ippfind: Bonjour を利用できません。: %s"
+msgstr "ippfind: Bonjour を利用できません: %s"
+#: test/ippfind.c:1994
#, c-format
msgid "ippfind: Unknown variable \"{%s}\"."
msgstr "ippfind: \"{%s}\" は不明な変数です。"
+#: test/ipptool.c:326 test/ipptool.c:389 test/ipptool.c:544 test/ipptool.c:567
msgid "ipptool: \"-i\" and \"-n\" are incompatible with \"-P\" and \"-X\"."
-msgstr ""
+msgstr "ipptool: \"-i\" および \"-n\" は \"-P\"、\"-X\" と一緒に指定できません。"
+#: test/ipptool.c:623
#, c-format
msgid "ipptool: Bad URI - %s."
msgstr "ipptool: 不正な URI です - %s。"
+#: test/ipptool.c:537
msgid "ipptool: Invalid seconds for \"-i\"."
msgstr "ipptool: \"-i\" に不正な秒数が指定されました。"
+#: test/ipptool.c:604
msgid "ipptool: May only specify a single URI."
msgstr "ipptool: URI は 1 つだけ指定できます。"
+#: test/ipptool.c:559
msgid "ipptool: Missing count for \"-n\"."
msgstr "ipptool: \"-n\" に回数の指定がありません。"
+#: test/ipptool.c:423
msgid "ipptool: Missing filename for \"-f\"."
msgstr "ipptool: \"-f\" にファイル名の指定がありません。"
+#: test/ipptool.c:404
msgid "ipptool: Missing name=value for \"-d\"."
msgstr "ipptool: \"-d\" に 名前=値 の指定がありません。"
+#: test/ipptool.c:527
msgid "ipptool: Missing seconds for \"-i\"."
msgstr "ipptool: \"-i\" に秒数の指定がありません。"
+#: test/ipptool.c:649
msgid "ipptool: URI required before test file."
msgstr "ipptool: テストファイルの前に URI の指定が必要です。"
+#: test/ipptool.c:585
#, c-format
msgid "ipptool: Unknown option \"-%c\"."
msgstr "ipptool: \"-%c\"は未知のオプションです。"
+#: scheduler/ipp.c:7739
msgid "job-printer-uri attribute missing."
msgstr "job-printer-uri 属性がありません。"
+#: systemv/lpadmin.c:117 systemv/lpadmin.c:361
msgid "lpadmin: Class name can only contain printable characters."
msgstr "lpadmin: クラス名は表示可能文字のみで構成されなければなりません。"
+#: systemv/lpadmin.c:600
msgid "lpadmin: Expected PPD after \"-P\" option."
msgstr "lpadmin: \"-P\" オプションのあとには PPD が必要です。"
+#: systemv/lpadmin.c:443
msgid "lpadmin: Expected allow/deny:userlist after \"-u\" option."
msgstr ""
"lpadmin: \"-u\" オプションのあとには allow/deny:ユーザーリスト が必要です。"
+#: systemv/lpadmin.c:350
msgid "lpadmin: Expected class after \"-r\" option."
msgstr "lpadmin: \"-r\" オプションのあとにはクラス名が必要です。"
+#: systemv/lpadmin.c:106
msgid "lpadmin: Expected class name after \"-c\" option."
msgstr "lpadmin: \"-c\" オプションのあとにはクラス名が必要です。"
+#: systemv/lpadmin.c:544
msgid "lpadmin: Expected description after \"-D\" option."
msgstr "lpadmin: \"-D\" オプションのあとには説明が必要です。"
+#: systemv/lpadmin.c:477
msgid "lpadmin: Expected device URI after \"-v\" option."
msgstr "lpadmin: \"-v\" オプションのあとにはデバイス URI が必要です。"
+#: systemv/lpadmin.c:560
msgid "lpadmin: Expected file type(s) after \"-I\" option."
msgstr "lpadmin: \"-I\" オプションのあとにはファイル形式が必要です。"
+#: systemv/lpadmin.c:188
msgid "lpadmin: Expected hostname after \"-h\" option."
msgstr "lpadmin: \"-h\" オプションのあとにはホスト名が必要です。"
+#: systemv/lpadmin.c:207
msgid "lpadmin: Expected interface after \"-i\" option."
msgstr "lpadmin: \"-i\" オプションのあとにはインターフェイス名が必要です。"
+#: systemv/lpadmin.c:580
msgid "lpadmin: Expected location after \"-L\" option."
msgstr "lpadmin: \"-L\" オプションのあとには場所が必要です。"
+#: systemv/lpadmin.c:260
msgid "lpadmin: Expected model after \"-m\" option."
msgstr "lpadmin: \"-m\" オプションのあとにはモデル名が必要です。"
+#: systemv/lpadmin.c:403
msgid "lpadmin: Expected name after \"-R\" option."
msgstr "lpadmin: \"-R\" オプションのあとには名前が必要です。"
+#: systemv/lpadmin.c:280
msgid "lpadmin: Expected name=value after \"-o\" option."
msgstr "lpadmin: \"-o\" オプションのあとには 変数名=値 が必要です。"
+#: systemv/lpadmin.c:299
msgid "lpadmin: Expected printer after \"-p\" option."
msgstr "lpadmin: \"-p\" オプションのあとにはプリンター名が必要です。"
+#: systemv/lpadmin.c:150
msgid "lpadmin: Expected printer name after \"-d\" option."
msgstr "lpadmin: \"-d\" オプションのあとにはプリンター名が必要です。"
+#: systemv/lpadmin.c:511
msgid "lpadmin: Expected printer or class after \"-x\" option."
msgstr ""
"lpadmin: \"-x\" オプションのあとにはプリンター名またはクラス名が必要です。"
+#: systemv/lpadmin.c:961
msgid "lpadmin: No member names were seen."
msgstr "lpadmin: メンバー名が見当たりません。"
+#: systemv/lpadmin.c:748
#, c-format
msgid "lpadmin: Printer %s is already a member of class %s."
msgstr "lpadmin: プリンター %s はすでにクラス %s のメンバーです。"
+#: systemv/lpadmin.c:975
#, c-format
msgid "lpadmin: Printer %s is not a member of class %s."
msgstr "lpadmin: プリンター %s はクラス %s のメンバーではありません。"
+#: systemv/lpadmin.c:161 systemv/lpadmin.c:310 systemv/lpadmin.c:522
msgid "lpadmin: Printer name can only contain printable characters."
msgstr "lpadmin: プリンター名には表示可能文字だけが使用できます。"
+#: systemv/lpadmin.c:91
msgid ""
"lpadmin: Unable to add a printer to the class:\n"
" You must specify a printer name first."
"lpadmin: クラスにプリンターを追加できません:\n"
" 先にプリンター名を指定する必要があります。"
+#: systemv/lpadmin.c:82 systemv/lpadmin.c:135 systemv/lpadmin.c:239
+#: systemv/lpadmin.c:325 systemv/lpadmin.c:379 systemv/lpadmin.c:496
+#: systemv/lpadmin.c:633
#, c-format
msgid "lpadmin: Unable to connect to server: %s"
msgstr "lpadmin: サーバーに接続できません: %s"
+#: systemv/lpadmin.c:1314
msgid "lpadmin: Unable to create temporary file"
msgstr "lpadmin: テンポラリーファイルを作成できません"
+#: systemv/lpadmin.c:388
msgid ""
"lpadmin: Unable to delete option:\n"
" You must specify a printer name first."
"lpadmin: プリンター・オプションを削除できません:\n"
" 先にプリンター名を指定する必要があります。"
+#: systemv/lpadmin.c:1324
#, c-format
msgid "lpadmin: Unable to open PPD file \"%s\" - %s"
msgstr "lpadmin: PPD ファイル \"%s\" を開けません - %s"
+#: systemv/lpadmin.c:334
msgid ""
"lpadmin: Unable to remove a printer from the class:\n"
" You must specify a printer name first."
"lpadmin: クラスからプリンターを削除できません:\n"
" 先にプリンター名を指定する必要があります。"
+#: systemv/lpadmin.c:642
msgid ""
"lpadmin: Unable to set the printer options:\n"
" You must specify a printer name first."
"lpadmin: プリンター・オプションを設定できません:\n"
" 先にプリンター名を指定する必要があります。"
+#: systemv/lpadmin.c:460
#, c-format
msgid "lpadmin: Unknown allow/deny option \"%s\"."
msgstr "lpadmin:\"%s\" は未知の allow/deny オプションです。"
+#: systemv/lpadmin.c:615
#, c-format
msgid "lpadmin: Unknown argument \"%s\"."
msgstr "lpadmin: \"%s\" は未知の引数です。"
+#: systemv/lpadmin.c:610
#, c-format
msgid "lpadmin: Unknown option \"%c\"."
msgstr "lpadmin: \"%c\" は未知のオプションです。"
+#: systemv/lpadmin.c:566
msgid "lpadmin: Warning - content type list ignored."
msgstr "lpadmin: 警告 - コンテンツタイプリストは無視されます。"
+#: berkeley/lpc.c:68 berkeley/lpc.c:96 berkeley/lpc.c:132
msgid "lpc> "
msgstr "lpc> "
+#: systemv/lpinfo.c:137
msgid "lpinfo: Expected 1284 device ID string after \"--device-id\"."
msgstr ""
"lpinfo: \"--device-id\" のあとには、1284 デバイス ID を指定する必要がありま"
"す。"
+#: systemv/lpinfo.c:190
msgid "lpinfo: Expected language after \"--language\"."
msgstr "lpinfo: \"--language\" のあとには、言語を指定する必要があります。"
+#: systemv/lpinfo.c:207
msgid "lpinfo: Expected make and model after \"--make-and-model\"."
-msgstr ""
-"lpinfo: \"--make-and-model\" の後には、メーカーとモデルを指定する必要がありま"
-"す。"
+msgstr "lpinfo: \"--make-and-model\" のあとには、メーカーとモデルを指定する必要があります。"
+#: systemv/lpinfo.c:224
msgid "lpinfo: Expected product string after \"--product\"."
msgstr "lpinfo: \"--product\" のあとには、製品名を指定する必要があります。"
+#: systemv/lpinfo.c:155
msgid "lpinfo: Expected scheme list after \"--exclude-schemes\"."
msgstr ""
"lpinfo: \"--exclude-schemes\" のあとには、スキーマ・リストを指定する必要があ"
"ります。"
+#: systemv/lpinfo.c:173
msgid "lpinfo: Expected scheme list after \"--include-schemes\"."
msgstr ""
"lpinfo: \"--include-schemes\" のあとには、スキーマ・リストを指定する必要があ"
"ります。"
+#: systemv/lpinfo.c:241
msgid "lpinfo: Expected timeout after \"--timeout\"."
msgstr ""
"lpinfo: \"--timeout\" のあとには、タイムアウト値を指定する必要があります。"
+#: systemv/lpinfo.c:265
#, c-format
msgid "lpinfo: Unknown argument \"%s\"."
msgstr "lpinfo: 未知の引数 \"%s\"。"
+#: systemv/lpinfo.c:259
#, c-format
msgid "lpinfo: Unknown option \"%c\"."
msgstr "lpinfo: 未知のオプション \"%c\"。"
+#: systemv/lpinfo.c:252
#, c-format
msgid "lpinfo: Unknown option \"%s\"."
msgstr "lpinfo: 未知のオプション \"%s\"。"
+#: systemv/lpmove.c:133
#, c-format
msgid "lpmove: Unable to connect to server: %s"
msgstr "lpmove: サーバーに接続できません: %s"
+#: systemv/lpmove.c:119
#, c-format
msgid "lpmove: Unknown argument \"%s\"."
msgstr "lpmove: 未知の引数 \"%s\"。"
+#: systemv/lpmove.c:97
#, c-format
msgid "lpmove: Unknown option \"%c\"."
msgstr "lpmove: 未知のオプション \"%c\"。"
+#: systemv/lpoptions.c:143 systemv/lpoptions.c:161 systemv/lpoptions.c:237
msgid "lpoptions: No printers."
msgstr "lpoptions: プリンターがありません。"
+#: systemv/lpoptions.c:212
#, c-format
msgid "lpoptions: Unable to add printer or instance: %s"
-msgstr "lpoptions: プリンターまたはインスタンスを追加できません: %s。"
+msgstr "lpoptions: プリンターまたはインスタンスを追加できません: %s"
+#: systemv/lpoptions.c:507
#, c-format
msgid "lpoptions: Unable to get PPD file for %s: %s"
msgstr "lpoptions: %s の PPD ファイルを取得できません: %s"
+#: systemv/lpoptions.c:515
#, c-format
msgid "lpoptions: Unable to open PPD file for %s."
msgstr "lpoptions: %s の PPD ファイルを開けません。"
+#: systemv/lpoptions.c:92
msgid "lpoptions: Unknown printer or class."
msgstr "lpoptions: 未知のプリンターまたはクラスです。"
+#: systemv/lpstat.c:1074
#, c-format
msgid ""
"lpstat: error - %s environment variable names non-existent destination \"%s"
msgstr ""
"lpstat: エラー - 環境変数 %s が、存在しない宛先 \"%s\" を指しています。"
+#: systemv/lpstat.c:1010
#, c-format
msgid "members of class %s:"
msgstr "クラス %s のメンバー:"
+#: berkeley/lpq.c:549
msgid "no entries"
msgstr "エントリーがありません"
+#: systemv/lpstat.c:1078
msgid "no system default destination"
msgstr "システムのデフォルトの宛先がありません"
+#: scheduler/ipp.c:5548
msgid "notify-events not specified."
msgstr "notify-events が指定されていません。"
+#: scheduler/ipp.c:2025 scheduler/ipp.c:5453
#, c-format
msgid "notify-recipient-uri URI \"%s\" is already used."
msgstr "notify-recipient-uri URI \"%s\" はすでに使われています。"
+#: scheduler/ipp.c:2015 scheduler/ipp.c:5443
#, c-format
msgid "notify-recipient-uri URI \"%s\" uses unknown scheme."
msgstr "notify-recipient-uri URI \"%s\" には未知のスキームが使われています。"
+#: cups/notify.c:87
msgid "pending"
-msgstr "保留"
+msgstr "プリンター待ち"
+#: ppdc/ppdc.cxx:108 ppdc/ppdpo.cxx:93
#, c-format
msgid "ppdc: Adding include directory \"%s\"."
msgstr "ppdc: ディレクトリー \"%s\" を追加しています。"
+#: ppdc/ppdpo.cxx:134
#, c-format
msgid "ppdc: Adding/updating UI text from %s."
msgstr "ppdc: %s から UI テキストを追加または更新しています。"
+#: ppdc/ppdc-source.cxx:367
#, c-format
msgid "ppdc: Bad boolean value (%s) on line %d of %s."
msgstr "ppdc: 不正な boolean 値 (%s) があります。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-import.cxx:264
#, c-format
msgid "ppdc: Bad font attribute: %s"
msgstr "不正なフォント属性: %s"
+#: ppdc/ppdc-source.cxx:1753
#, c-format
msgid "ppdc: Bad resolution name \"%s\" on line %d of %s."
-msgstr ""
-"ppdc: 不正な resolution 名 \"%s\" があります。%d 行目、ファイル名 %s 。"
+msgstr "ppdc: 不正な resolution 名 \"%s\" があります。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:1070
#, c-format
msgid "ppdc: Bad status keyword %s on line %d of %s."
-msgstr ""
-"ppdc: 不正な status キーワード %s があります。%d 行目、ファイル名 %s 。"
+msgstr "ppdc: 不正な status キーワード %s があります。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:1990
#, c-format
msgid "ppdc: Bad variable substitution ($%c) on line %d of %s."
msgstr "ppdc: 不正な数値置換 ($%c) があります。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:2675
#, c-format
msgid "ppdc: Choice found on line %d of %s with no Option."
msgstr ""
"ppdc: %d 行目、ファイル名 %s で、Option がないのに Choice が見つかりました。"
+#: ppdc/ppdc-source.cxx:1655
#, c-format
msgid "ppdc: Duplicate #po for locale %s on line %d of %s."
-msgstr ""
-"ppdc: locale %s に対して #po が二重に定義されています。%d 行目、ファイル名 "
-"%s 。"
+msgstr "ppdc: locale %s に対して #po が二重に定義されています。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:889
#, c-format
msgid "ppdc: Expected a filter definition on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s においてフィルター定義が必要です。"
+#: ppdc/ppdc-source.cxx:912
#, c-format
msgid "ppdc: Expected a program name on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s においてプログラム名が必要です。"
+#: ppdc/ppdc-source.cxx:351
#, c-format
msgid "ppdc: Expected boolean value on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において boolean 値が必要です。"
+#: ppdc/ppdc-source.cxx:1050
#, c-format
msgid "ppdc: Expected charset after Font on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Font のあとに charset が必要です。"
+#: ppdc/ppdc-source.cxx:404
#, c-format
msgid "ppdc: Expected choice code on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において choice code が必要です。"
+#: ppdc/ppdc-source.cxx:392
#, c-format
msgid "ppdc: Expected choice name/text on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において choice name/text が必要です。"
+#: ppdc/ppdc-source.cxx:460
#, c-format
msgid "ppdc: Expected color order for ColorModel on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において ColorModel に対する color order が必要"
"です。"
+#: ppdc/ppdc-source.cxx:449
#, c-format
msgid "ppdc: Expected colorspace for ColorModel on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において ColorModel に対する colorspace が必要で"
"す。"
+#: ppdc/ppdc-source.cxx:471
#, c-format
msgid "ppdc: Expected compression for ColorModel on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において ColorModel に対する compression が必要"
"です。"
+#: ppdc/ppdc-source.cxx:652
#, c-format
msgid "ppdc: Expected constraints string for UIConstraints on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において UIConstraints に対する constraint が必"
"要です。"
+#: ppdc/ppdc-source.cxx:2861
#, c-format
msgid ""
"ppdc: Expected driver type keyword following DriverType on line %d of %s."
"ppdc: %d 行目、ファイル名 %s において DriverType のあとに driver type "
"keyword が必要です。"
+#: ppdc/ppdc-source.cxx:783
#, c-format
msgid "ppdc: Expected duplex type after Duplex on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Duplex のあとに type が必要です。"
+#: ppdc/ppdc-source.cxx:1034
#, c-format
msgid "ppdc: Expected encoding after Font on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Font のあとに encoding が必要です。"
+#: ppdc/ppdc-source.cxx:1646
#, c-format
msgid "ppdc: Expected filename after #po %s on line %d of %s."
msgstr "ppdc: #po %s のあとにファイル名が必要です (%d 行目, ファイル %s)。"
+#: ppdc/ppdc-source.cxx:1162
#, c-format
msgid "ppdc: Expected group name/text on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において group name/text が必要です。"
+#: ppdc/ppdc-source.cxx:2575
#, c-format
msgid "ppdc: Expected include filename on line %d of %s."
-msgstr "ppdc: %d 行目、ファイル名 %s において include ファイル名が必要です。"
+msgstr "ppdc: %d 行目、ファイル名 %s において include ファイル名 が必要です。"
+#: ppdc/ppdc-source.cxx:1459
#, c-format
msgid "ppdc: Expected integer on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において整数指定が必要です。"
+#: ppdc/ppdc-source.cxx:1638
#, c-format
msgid "ppdc: Expected locale after #po on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において #po のあとに locale が必要です。"
+#: ppdc/ppdc-source.cxx:310
#, c-format
msgid "ppdc: Expected name after %s on line %d of %s."
msgstr "ppdc: %s のあとに name が必要です。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:3233
#, c-format
msgid "ppdc: Expected name after FileName on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において FileName のあとに name が必要です。"
+#: ppdc/ppdc-source.cxx:1015
#, c-format
msgid "ppdc: Expected name after Font on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において Font のあとに name が必要です。"
+#: ppdc/ppdc-source.cxx:3064
#, c-format
msgid "ppdc: Expected name after Manufacturer on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Manufacturer のあとに name が必要です。"
+#: ppdc/ppdc-source.cxx:3097
#, c-format
msgid "ppdc: Expected name after MediaSize on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において MediaSize のあとに name が必要です。"
+#: ppdc/ppdc-source.cxx:3187
#, c-format
msgid "ppdc: Expected name after ModelName on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において ModelName のあとに name が必要です。"
+#: ppdc/ppdc-source.cxx:3250
#, c-format
msgid "ppdc: Expected name after PCFileName on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において PCFileName のあとに name が必要です。"
+#: ppdc/ppdc-source.cxx:1113
#, c-format
msgid "ppdc: Expected name/text after %s on line %d of %s."
msgstr "ppdc: %s のあとに name/text が必要です。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:1202
#, c-format
msgid "ppdc: Expected name/text after Installable on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Installable のあとに name/text が必要で"
"す。"
+#: ppdc/ppdc-source.cxx:1739
#, c-format
msgid "ppdc: Expected name/text after Resolution on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Resolution のあとに name/text が必要で"
"す。"
+#: ppdc/ppdc-source.cxx:436
#, c-format
msgid "ppdc: Expected name/text combination for ColorModel on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において ColorModel に対する name/text が必要で"
"す。"
+#: ppdc/ppdc-source.cxx:1531
#, c-format
msgid "ppdc: Expected option name/text on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において option name/text が必要です。"
+#: ppdc/ppdc-source.cxx:1565
#, c-format
msgid "ppdc: Expected option section on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において option section が必要です。"
+#: ppdc/ppdc-source.cxx:1543
#, c-format
msgid "ppdc: Expected option type on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において option type が必要です。"
+#: ppdc/ppdc-source.cxx:1722
#, c-format
msgid "ppdc: Expected override field after Resolution on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Resolution のあとに override field が必"
"要です。"
+#: ppdc/ppdc-catalog.cxx:389 ppdc/ppdc-catalog.cxx:401
#, c-format
msgid "ppdc: Expected quoted string on line %d of %s."
msgstr "%d 行: %s には引用符で囲まれた文字列が必要です。"
+#: ppdc/ppdc-source.cxx:961
#, c-format
msgid "ppdc: Expected real number on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において実数が必要です。"
+#: ppdc/ppdc-source.cxx:529
#, c-format
msgid ""
"ppdc: Expected resolution/mediatype following ColorProfile on line %d of %s."
"ppdc: %d 行目、ファイル名 %s において ColorProfile に続いて resolution/"
"mediatype が必要です。"
+#: ppdc/ppdc-source.cxx:1820
#, c-format
msgid ""
"ppdc: Expected resolution/mediatype following SimpleColorProfile on line %d "
"ppdc: %d 行目、ファイル名 %s において SimpleColorProfile に続いて resolution/"
"mediatype が必要です。"
+#: ppdc/ppdc-source.cxx:318
#, c-format
msgid "ppdc: Expected selector after %s on line %d of %s."
msgstr "ppdc: %s のあとに selector が必要です。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:1058
#, c-format
msgid "ppdc: Expected status after Font on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Font のあとに status が必要です。"
+#: ppdc/ppdc-source.cxx:2750
#, c-format
msgid "ppdc: Expected string after Copyright on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Copyright のあとに文字列が必要です。"
+#: ppdc/ppdc-source.cxx:3353
#, c-format
msgid "ppdc: Expected string after Version on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Version のあとに文字列が必要です。"
+#: ppdc/ppdc-source.cxx:685
#, c-format
msgid "ppdc: Expected two option names on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において 2 つのオプション名が必要です。"
+#: ppdc/ppdc-source.cxx:329
#, c-format
msgid "ppdc: Expected value after %s on line %d of %s."
msgstr "ppdc: %s のあとに value が必要です。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:1042
#, c-format
msgid "ppdc: Expected version after Font on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Font のあとに version が必要です。"
+#: ppdc/ppdc-source.cxx:184
#, c-format
msgid "ppdc: Invalid #include/#po filename \"%s\"."
msgstr "ppdc: 無効な #include/#po ファイル名です \"%s\"。"
+#: ppdc/ppdc-source.cxx:929
#, c-format
msgid "ppdc: Invalid cost for filter on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s においてフィルターに対する無効な cost がありま"
"す。"
+#: ppdc/ppdc-source.cxx:921
#, c-format
msgid "ppdc: Invalid empty MIME type for filter on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s においてフィルターに対する無効な空の MIME タイプ"
"があります。"
+#: ppdc/ppdc-source.cxx:937
#, c-format
msgid "ppdc: Invalid empty program name for filter on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s においてフィルターに対するプログラム名が空であり"
"無効です。"
+#: ppdc/ppdc-source.cxx:1585
#, c-format
msgid "ppdc: Invalid option section \"%s\" on line %d of %s."
-msgstr ""
-"ppdc: 無効な option section があります \"%s\"。%d 行目、ファイル名 %s。"
+msgstr "ppdc: 無効な option section があります \"%s\"。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:1557
#, c-format
msgid "ppdc: Invalid option type \"%s\" on line %d of %s."
msgstr "ppdc: 無効な option type があります \"%s\"。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc.cxx:246 ppdc/ppdpo.cxx:123
#, c-format
msgid "ppdc: Loading driver information file \"%s\"."
msgstr "ppdc: ドライバー情報ファイル \"%s\" を読み込んでいます。"
+#: ppdc/ppdc.cxx:182
#, c-format
msgid "ppdc: Loading messages for locale \"%s\"."
msgstr "ppdc: ロケール \"%s\" のメッセージを読み込んでいます。"
+#: ppdc/ppdc.cxx:121
#, c-format
msgid "ppdc: Loading messages from \"%s\"."
msgstr "ppdc: \"%s\" からメッセージを読み込んでいます。"
+#: ppdc/ppdc-source.cxx:2368 ppdc/ppdc-source.cxx:2600
#, c-format
msgid "ppdc: Missing #endif at end of \"%s\"."
msgstr "ppdc: \"%s\" の最後に #endif が見つかりません。"
+#: ppdc/ppdc-source.cxx:2469 ppdc/ppdc-source.cxx:2504
+#: ppdc/ppdc-source.cxx:2534
#, c-format
msgid "ppdc: Missing #if on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において #if が見つかりません。"
+#: ppdc/ppdc-catalog.cxx:466
#, c-format
msgid ""
"ppdc: Need a msgid line before any translation strings on line %d of %s."
msgstr "%d 行: %s の翻訳文字列の前に msgid 行が必要です。"
+#: ppdc/ppdc-driver.cxx:712
#, c-format
msgid "ppdc: No message catalog provided for locale %s."
msgstr "ppdc: ロケール %s に対するメッセージカタログが見つかりません。"
+#: ppdc/ppdc-source.cxx:1608 ppdc/ppdc-source.cxx:2838
+#: ppdc/ppdc-source.cxx:2924 ppdc/ppdc-source.cxx:3017
+#: ppdc/ppdc-source.cxx:3150 ppdc/ppdc-source.cxx:3283
#, c-format
msgid "ppdc: Option %s defined in two different groups on line %d of %s."
msgstr ""
"ppdc: オプション %s が行 %d、ファイル %s の 2 つの異なるグループで定義されて"
"います。"
+#: ppdc/ppdc-source.cxx:1601
#, c-format
msgid "ppdc: Option %s redefined with a different type on line %d of %s."
-msgstr ""
-"ppdc: オプション %s は異なる型で再定義されています。%d 行目、ファイル名 %s。"
+msgstr "ppdc: オプション %s は異なる型で再定義されています。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:662
#, c-format
msgid "ppdc: Option constraint must *name on line %d of %s."
msgstr ""
"ppdc: %d 行目、ファイル名 %s において Option constraint は *name で指定しなけ"
"ればなりません。"
+#: ppdc/ppdc-source.cxx:2451
#, c-format
msgid "ppdc: Too many nested #if's on line %d of %s."
msgstr "ppdc: %d 行目、ファイル名 %s において #if のネストが多すぎます。"
+#: ppdc/ppdc.cxx:369
#, c-format
msgid "ppdc: Unable to create PPD file \"%s\" - %s."
msgstr "ppdc: PPD ファイル \"%s\" を作成できません - %s。"
+#: ppdc/ppdc.cxx:261
#, c-format
msgid "ppdc: Unable to create output directory %s: %s"
msgstr "ppdc: 出力ディレクトリー \"%s\" を作成できません - %s"
+#: ppdc/ppdc.cxx:282
#, c-format
msgid "ppdc: Unable to create output pipes: %s"
msgstr "ppdc: 出力パイプを作成できません: %s"
+#: ppdc/ppdc.cxx:298 ppdc/ppdc.cxx:304
#, c-format
msgid "ppdc: Unable to execute cupstestppd: %s"
msgstr "ppdc: cupstestppd を実行できません: %s"
+#: ppdc/ppdc-source.cxx:1687
#, c-format
msgid "ppdc: Unable to find #po file %s on line %d of %s."
msgstr "ppdc: #po ファイル %s が見つかりません。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:2607
#, c-format
msgid "ppdc: Unable to find include file \"%s\" on line %d of %s."
-msgstr ""
-"ppdc: インクルードファイル %s が見つかりません。%d 行目、ファイル名 %s。"
+msgstr "ppdc: インクルードファイル %s が見つかりません。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc.cxx:193
#, c-format
msgid "ppdc: Unable to find localization for \"%s\" - %s"
msgstr "ppdc: \"%s\" に対する地域化情報が見つかりません - %s"
+#: ppdc/ppdc.cxx:130
#, c-format
msgid "ppdc: Unable to load localization file \"%s\" - %s"
msgstr "ppdc: \"%s\" に対するローカライズファイルを読み込めません - %s"
+#: ppdc/ppdc-file.cxx:50
#, c-format
msgid "ppdc: Unable to open %s: %s"
msgstr "ppdc: %s を開けません: %s"
+#: ppdc/ppdc-source.cxx:2011
#, c-format
msgid "ppdc: Undefined variable (%s) on line %d of %s."
msgstr "ppdc: 変数 (%s) は未定義です。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-catalog.cxx:483
#, c-format
msgid "ppdc: Unexpected text on line %d of %s."
msgstr "%d 行: %s は予期せぬテキストです。"
+#: ppdc/ppdc-source.cxx:2880
#, c-format
msgid "ppdc: Unknown driver type %s on line %d of %s."
msgstr "ppdc: %s は未知のドライバータイプです。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:863
#, c-format
msgid "ppdc: Unknown duplex type \"%s\" on line %d of %s."
msgstr "ppdc: \"%s\" は未知の両面タイプです。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:3110
#, c-format
msgid "ppdc: Unknown media size \"%s\" on line %d of %s."
msgstr "ppdc: \"%s\" は未知の用紙サイズです。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-catalog.cxx:511
#, c-format
msgid "ppdc: Unknown message catalog format for \"%s\"."
msgstr "\"%s\" は未知のメッセージカタログの書式です。"
+#: ppdc/ppdc-source.cxx:3364
#, c-format
msgid "ppdc: Unknown token \"%s\" seen on line %d of %s."
msgstr "ppdc: 未知のトークン \"%s\" があります。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:971
#, c-format
msgid ""
"ppdc: Unknown trailing characters in real number \"%s\" on line %d of %s."
msgstr "ppdc: 実数 \"%s\" に未知の終了文字があります。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc-source.cxx:2121
#, c-format
msgid "ppdc: Unterminated string starting with %c on line %d of %s."
msgstr ""
"ppdc: %c で始まる文字に対して終端文字がありません。%d 行目、ファイル名 %s。"
+#: ppdc/ppdc.cxx:360
#, c-format
msgid "ppdc: Warning - overlapping filename \"%s\"."
msgstr "ppdc: 警告 - ファイル名 \"%s\" が重複しています。"
+#: ppdc/ppdc.cxx:375
#, c-format
msgid "ppdc: Writing %s."
msgstr "ppdc: %s を書き込んでいます。"
+#: ppdc/ppdc.cxx:143
#, c-format
msgid "ppdc: Writing PPD files to directory \"%s\"."
msgstr "ppdc: ディレクトリー \"%s\" に PPD ファイルを書き込んでいます。"
+#: ppdc/ppdmerge.cxx:130
#, c-format
msgid "ppdmerge: Bad LanguageVersion \"%s\" in %s."
msgstr "ppdmerge: 不正な LanguageVersion \"%s\" が %s にあります。"
+#: ppdc/ppdmerge.cxx:170
#, c-format
msgid "ppdmerge: Ignoring PPD file %s."
msgstr "ppdmerge: PPD ファイル %s を無視します。"
+#: ppdc/ppdmerge.cxx:154
#, c-format
msgid "ppdmerge: Unable to backup %s to %s - %s"
msgstr "ppdmerge: %s を %s にバックアップできません - %s"
+#: systemv/lpstat.c:1777
#, c-format
msgid "printer %s disabled since %s -"
msgstr "プリンター %s は %s から無効です -"
+#: systemv/lpstat.c:1766
#, c-format
msgid "printer %s is idle. enabled since %s"
msgstr "プリンター %s は待機中です。%s 以来有効です"
+#: systemv/lpstat.c:1771
#, c-format
msgid "printer %s now printing %s-%d. enabled since %s"
msgstr "プリンター %s は %s-%d を印刷しています。%s 以来有効です"
+#: systemv/lpstat.c:1900
#, c-format
msgid "printer %s/%s disabled since %s -"
msgstr "プリンター %s/%s は %s から無効です -"
+#: systemv/lpstat.c:1886
#, c-format
msgid "printer %s/%s is idle. enabled since %s"
msgstr "プリンター %s/%s は待機中です。%s 以来有効です"
+#: systemv/lpstat.c:1893
#, c-format
msgid "printer %s/%s now printing %s-%d. enabled since %s"
msgstr "プリンター %s/%s は現在 %s-%d を印刷中です。%s 以来有効です"
+#: cups/notify.c:93 cups/notify.c:134
msgid "processing"
msgstr "処理中"
+#: systemv/lp.c:662
#, c-format
msgid "request id is %s-%d (%d file(s))"
msgstr "リクエスト ID は %s-%d です (%d 個のファイル)"
+#: cups/snmp.c:972
msgid "request-id uses indefinite length"
msgstr "リクエスト ID の長さが不定"
+#: systemv/lpstat.c:2032
msgid "scheduler is not running"
msgstr "スケジューラーは動作していません"
+#: systemv/lpstat.c:2028
msgid "scheduler is running"
msgstr "スケジューラーは動作中です"
+#: cups/adminutil.c:2148
#, c-format
msgid "stat of %s failed: %s"
msgstr "%s の状態取得に失敗しました: %s"
+#: berkeley/lpc.c:203
msgid "status\t\tShow status of daemon and queue."
-msgstr "status\t\tデーモンとキューの状態を表示"
+msgstr "status\t\tデーモンとキューの状態を表示。"
+#: cups/notify.c:96 cups/notify.c:137
msgid "stopped"
msgstr "停止"
+#: systemv/lpstat.c:1052
#, c-format
msgid "system default destination: %s"
msgstr "システムのデフォルトの宛先: %s"
+#: systemv/lpstat.c:1049
#, c-format
msgid "system default destination: %s/%s"
msgstr "システムのデフォルトの宛先: %s/%s"
+#: cups/notify.c:108 cups/notify.c:140
msgid "unknown"
msgstr "未知"
+#: cups/notify.c:117
msgid "untitled"
msgstr "タイトルなし"
+#: cups/snmp.c:997
msgid "variable-bindings uses indefinite length"
msgstr "variable-bindings の長さが不定"
.\"
-.\" "$Id: cups-files.conf.man.in 11927 2014-06-13 00:01:23Z msweet $"
+.\" "$Id: cups-files.conf.man.in 12477 2015-02-02 18:38:25Z msweet $"
.\"
.\" cups-files.conf man page for CUPS.
.\"
-.\" Copyright 2007-2014 by Apple Inc.
+.\" Copyright 2007-2015 by Apple Inc.
.\" Copyright 1997-2006 by Easy Software Products.
.\"
.\" These coded instructions, statements, and computer programs are the
.\" which should have been included with this file. If this file is
.\" file is missing or damaged, see the license at "http://www.cups.org/".
.\"
-.TH cups-files.conf 5 "CUPS" "11 June 2014" "Apple Inc."
+.TH cups-files.conf 5 "CUPS" "2 February 2015" "Apple Inc."
.SH NAME
cups\-files.conf \- file and directory configuration file for cups
.SH DESCRIPTION
.SS DIRECTIVES
The following directives are understood by
.BR cupsd (8):
+.\"#AccessLog
.TP 5
\fBAccessLog\fR
.TP 5
.fi
The default is "/var/log/cups/access_log".
+.\"#ConfigFilePerm
.TP 5
\fBConfigFilePerm \fImode\fR
Specifies the permissions for all configuration files that the scheduler writes.
\fBNote:\fR The permissions for the \fIprinters.conf\fR file are currently masked to only allow access from the scheduler user (typically root).
This is done because printer device URIs sometimes contain sensitive authentication information that should not be generally known on the system.
There is no way to disable this security feature.
+.\"#DataDir
.TP 5
\fBDataDir \fIpath\fR
Specifies the directory where data files can be found.
The default is usually "/usr/share/cups".
+.\"#DocumentRoot
.TP 5
\fBDocumentRoot \fIdirectory\fR
Specifies the root directory for the CUPS web interface content.
The default is usually "/usr/share/doc/cups".
+.\"#ErrorLog
.TP 5
\fBErrorLog\fR
.TP 5
.fi
The default is "/var/log/cups/error_log".
+.\"#FatalErrors
.TP 5
\fBFatalErrors none\fR
.TP 5
.B permissions
Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions.
.RE
+.\"#FileDevice
.TP 5
\fBFileDevice Yes\fR
.TP 5
\fBFileDevice No\fR
Specifies whether the file pseudo-device can be used for new printer queues.
The URI "file:///dev/null" is always allowed.
+.\"#Group
.TP 5
\fBGroup \fIgroup-name-or-number\fR
Specifies the group name or ID that will be used when executing external programs.
The default group is operating system specific but is usually "lp" or "nobody".
+.\"#LogFilePerm
.TP 5
\fBLogFilePerm \fImode\fR
Specifies the permissions of all log files that the scheduler writes.
The default is "0644".
+.\"#PageLog
.TP 5
\fBPageLog \fR[ \fIfilename\fR ]
.TP 5
.fi
The default is "/var/log/cups/page_log".
+.\"#RemoteRoot
.TP 5
\fBRemoteRoot \fIusername\fR
Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user.
The default is "remroot".
+.\"#RequestRoot
.TP 5
\fBRequestRoot \fIdirectory\fR
Specifies the directory that contains print jobs and other HTTP request data.
The default is "/var/spool/cups".
+.\"#Sandboxing
.TP 5
\fBSandboxing off\fR
.TP 5
Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler.
The default is "strict".
This directive is currently only used/supported on OS X.
+.\"#ServerBin
.TP 5
\fBServerBin \fIdirectory\fR
Specifies the directory containing the backends, CGI programs, filters, helper programs, notifiers, and port monitors.
The default is "/usr/lib/cups" or "/usr/libexec/cups" depending on the platform.
+.\"#ServerKeychain
.TP 5
\fBServerKeychain \fIpath\fR
Specifies the location of TLS certificates and private keys.
The default is "/Library/Keychains/System.keychain" on OS X and "/etc/cups/ssl" on all other operating systems.
+OS X uses its keychain database to store certificates and keys while other platforms use separate files in the specified directory, *.crt for PEM-encoded certificates and *.key for PEM-encoded private keys.
+.\"#ServerRoot
.TP 5
\fBServerRoot \fIdirectory\fR
Specifies the directory containing the server configuration files.
The default is "/etc/cups".
+.\"#SyncOnClose
.TP 5
\fBSyncOnClose Yes\fR
.TP 5
.BR fsync (2)
after writing configuration or state files.
The default is "No".
+.\"#SystemGroup
.TP 5
\fBSystemGroup \fIgroup-name \fR[ ... \fIgroup-name\fR ]
Specifies the group(s) to use for \fI@SYSTEM\fR group authentication.
The default contains "admin", "lpadmin", "root", "sys", and/or "system".
+.\"#TempDir
.TP 5
\fBTempDir \fIdirectory\fR
Specifies the directory where temporary files are stored.
The default is "/var/spool/cups/tmp".
+.\"#User
.TP 5
\fBUser \fIusername\fR
Specifies the user name or ID that is used when running external programs.
.BR subscriptions.conf (5),
CUPS Online Help (http://localhost:631/help)
.SH COPYRIGHT
-Copyright \[co] 2007-2014 by Apple Inc.
+Copyright \[co] 2007-2015 by Apple Inc.
.\"
-.\" End of "$Id: cups-files.conf.man.in 11927 2014-06-13 00:01:23Z msweet $".
+.\" End of "$Id: cups-files.conf.man.in 12477 2015-02-02 18:38:25Z msweet $".
.\"
.\"
-.\" "$Id: cupsd.conf.man.in 12215 2014-10-20 18:24:56Z msweet $"
+.\" "$Id: cupsd.conf.man.in 12363 2014-12-12 19:51:33Z msweet $"
.\"
.\" cupsd.conf man page for CUPS.
.\"
.SS TOP-LEVEL DIRECTIVES
The following top-level directives are understood by
.BR cupsd (8):
+.\"#AccessLogLevel
.TP 5
\fBAccessLogLevel config\fR
.TP 5
The "actions" level logs when print jobs are submitted, held, released, modified, or canceled, and any of the conditions for "config".
The "all" level logs all requests.
The default access log level is "actions".
+.\"#AutoPurgeJobs
.TP 5
\fBAutoPurgeJobs Yes\fR
.TP 5
.br
Specifies whether to purge job history data automatically when it is no longer required for quotas.
The default is "No".
+.\"#BrowseLocalProtocols
.TP 5
\fBBrowseLocalProtocols all\fR
.TP 5
\fBBrowseLocalProtocols none\fR
Specifies which protocols to use for local printer sharing.
The default is "dnssd" on systems that support Bonjour and "none" otherwise.
+.\"#BrowseWebIF
.TP 5
\fBBrowseWebIF Yes\fR
.TP 5
.br
Specifies whether the CUPS web interface is advertised.
The default is "No".
+.\"#Browsing
.TP 5
\fBBrowsing Yes\fR
.TP 5
.br
Specifies whether shared printers are advertised.
The default is "No".
+.\"#Classification
.TP 5
\fBClassification \fIbanner\fR
.br
Specifies the security classification of the server.
Any valid banner name can be used, including "classified", "confidential", "secret", "topsecret", and "unclassified", or the banner can be omitted to disable secure printing functions.
The default is no classification banner.
+.\"#ClassifyOverride
.TP 5
\fBClassifyOverride Yes\fR
.TP 5
.br
Specifies whether users may override the classification (cover page) of individual print jobs using the "job-sheets" option.
The default is "No".
+.\"#DefaultAuthType
.TP 5
\fBDefaultAuthType Basic\fR
.TP 5
.br
Specifies the default type of authentication to use.
The default is "Basic".
+.\"#DefaultEncryption
.TP 5
\fBDefaultEncryption Never\fR
.TP 5
\fBDefaultEncryption Required\fR
Specifies whether encryption will be used for authenticated requests.
The default is "Required".
+.\"#DefaultLanguage
.TP 5
\fBDefaultLanguage \fIlocale\fR
Specifies the default language to use for text and web content.
The default is "en".
+.\"#DefaultPaperSize
.TP 5
\fBDefaultPaperSize Auto\fR
.TP 5
Specifies the default paper size for new print queues. "Auto" uses a locale-specific default, while "None" specifies there is no default paper size.
Specific size names are typically "Letter" or "A4".
The default is "Auto".
+.\"#DefaultPolicy
.TP 5
\fBDefaultPolicy \fIpolicy-name\fR
Specifies the default access policy to use.
The default access policy is "default".
+.\"#DefaultShared
.TP 5
\fBDefaultShared Yes\fR
.TP 5
\fBDefaultShared No\fR
Specifies whether local printers are shared by default.
The default is "Yes".
+.\"#DirtyCleanInterval
.TP 5
\fBDirtyCleanInterval \fIseconds\fR
Specifies the delay for updating of configuration and state files.
A value of 0 causes the update to happen as soon as possible, typically within a few milliseconds.
The default value is "30".
+.\"#ErrorPolicy
.TP 5
\fBErrorPolicy abort-job\fR
Specifies that a failed print job should be aborted (discarded) unless otherwise specified for the printer.
.TP 5
\fBErrorPolicy stop-printer\fR
Specifies that a failed print job should stop the printer unless otherwise specified for the printer. The 'stop-printer' error policy is the default.
+.\"#FilterLimit
.TP 5
\fBFilterLimit \fIlimit\fR
Specifies the maximum cost of filters that are run concurrently, which can be used to minimize disk, memory, and CPU resource problems.
A PostScript printer needs about half that (100).
Setting the limit below these thresholds will effectively limit the scheduler to printing a single job at any time.
The default limit is "0".
+.\"#FilterNice
.TP 5
\fBFilterNice \fInice-value\fR
Specifies the scheduling priority (
value) of filters that are run to print a job.
The nice value ranges from 0, the highest priority, to 19, the lowest priority.
The default is 0.
+.\"#GSSServiceName
.TP 5
\fBGSSServiceName \fIname\fR
Specifies the service name when using Kerberos authentication.
The default service name is "http."
.TP 5
+.\"#HostNameLookups
\fBHostNameLookups On\fR
.TP 5
\fBHostNameLookups Off\fR
Double lookups also prevent clients with unregistered addresses from connecting to your server.
The default is "Off" to avoid the potential server performance problems with hostname lookups.
Only set this option to "On" or "Double" if absolutely required.
+.\"#JobKillDelay
.TP 5
\fBJobKillDelay \fIseconds\fR
Specifies the number of seconds to wait before killing the filters and backend associated with a canceled or held job.
The default is "30".
+.\"#JobRetryInterval
.TP 5
\fBJobRetryInterval \fIseconds\fR
Specifies the interval between retries of jobs in seconds.
This is typically used for fax queues but can also be used with normal print queues whose error policy is "retry-job" or "retry-current-job".
The default is "30".
+.\"#JobRetryLimit
.TP 5
\fBJobRetryLimit \fIcount\fR
Specifies the number of retries that are done for jobs.
This is typically used for fax queues but can also be used with normal print queues whose error policy is "retry-job" or "retry-current-job".
The default is "5".
+.\"#KeepAlive
.TP 5
\fBKeepAlive Yes\fR
.TP 5
\fBKeepAlive No\fR
Specifies whether to support HTTP keep-alive connections.
The default is "Yes".
+.\"#KeepAliveTimeout
.TP 5
\fBKeepAliveTimeout \fIseconds\fR
Specifies how long an idle client connection remains open.
The default is "30".
+.\"#LimitIPP
.TP 5
\fB<Limit \fIoperation \fR...\fB> \fR... \fB</Limit>\fR
Specifies the IPP operations that are being limited inside a Policy section. IPP operation names are listed below in the section "IPP OPERATIONS".
+.\"#Limit
.TP 5
\fB<Limit \fImethod \fR...\fB> \fR... \fB</Limit>\fR
+.\"#LimitExcept
.TP 5
\fB<LimitExcept \fImethod \fR...\fB> \fR... \fB</LimitExcept>\fR
Specifies the HTTP methods that are being limited inside a Location section. HTTP method names are listed below in the section "HTTP METHODS".
+.\"#LimitRequestBody
.TP 5
\fBLimitRequestBody \fIsize\fR
Specifies the maximum size of print files, IPP requests, and HTML form data.
The default is "0" which disables the limit check.
+.\"#Listen
.TP 5
\fBListen \fIipv4-address\fB:\fIport\fR
.TP 5
Listens to the specified address and port or domain socket path for connections.
Multiple Listen directives can be provided to listen on multiple addresses.
The Listen directive is similar to the Port directive but allows you to restrict access to specific interfaces or networks.
+.\"#ListenBackLog
.TP 5
\fBListenBackLog \fInumber\fR
Specifies the number of pending connections that will be allowed.
This normally only affects very busy servers that have reached the MaxClients limit, but can also be triggered by large numbers of simultaneous connections.
When the limit is reached, the operating system will refuse additional connections until the scheduler can accept the pending ones.
The default is the OS-defined default limit, typically either "5" for older operating systems or "128" for newer operating systems.
+.\"#Location
.TP 5
\fB<Location \fI/path\fB> \fR... \fB</Location>\fR
Specifies access control for the named location.
Paths are documented below in the section "LOCATION PATHS".
+.\"#LogDebugHistory
.TP 5
\fBLogDebugHistory \fInumber\fR
Specifies the number of debugging messages that are retained for logging if an error occurs in a print job. Debug messages are logged regardless of the LogLevel setting.
+.\"#LogLevel
.TP 5
\fBLogLevel \fRnone
.TP 5
Specifies the level of logging for the ErrorLog file.
The value "none" stops all logging while "debug2" logs everything.
The default is "warn".
+.\"#LogTimeFormat
.TP 5
\fBLogTimeFormat \fRstandard
.TP 5
\fBLogTimeFormat \fRusecs
Specifies the format of the date and time in the log files.
The value "standard" is the default and logs whole seconds while "usecs" logs microseconds.
+.\"#MaxClients
.TP 5
\fBMaxClients \fInumber\fR
Specifies the maximum number of simultaneous clients that are allowed by the scheduler.
The default is "100".
+.\"#MaxClientPerHost
.TP 5
\fBMaxClientsPerHost \fInumber\fR
Specifies the maximum number of simultaneous clients that are allowed from a
single address.
The default is the MaxClients value.
+.\"#MaxCopies
.TP 5
\fBMaxCopies \fInumber\fR
Specifies the maximum number of copies that a user can print of each job.
The default is "9999".
+.\"#MaxHoldTime
.TP 5
\fBMaxHoldTime \fIseconds\fR
Specifies the maximum time a job may remain in the "indefinite" hold state before it is canceled.
The default is "0" which disables cancellation of held jobs.
+.\"#MaxJobs
.TP 5
\fBMaxJobs \fInumber\fR
Specifies the maximum number of simultaneous jobs that are allowed.
Set to "0" to allow an unlimited number of jobs.
The default is "500".
+.\"#MaxJobsPerPrinter
.TP 5
\fBMaxJobsPerPrinter \fInumber\fR
Specifies the maximum number of simultaneous jobs that are allowed per printer.
The default is "0" which allows up to MaxJobs jobs per printer.
+.\"#MaxJobsPerUser
.TP 5
\fBMaxJobsPerUser \fInumber\fR
Specifies the maximum number of simultaneous jobs that are allowed per user.
The default is "0" which allows up to MaxJobs jobs per user.
+.\"#MaxJobTime
.TP 5
\fBMaxJobTime \fIseconds\fR
Specifies the maximum time a job may take to print before it is canceled.
Set to "0" to disable cancellation of "stuck" jobs.
The default is "10800" (3 hours).
+.\"#MaxLogSize
.TP 5
\fBMaxLogSize \fIsize\fR
Specifies the maximum size of the log files before they are rotated.
The value "0" disables log rotation.
The default is "1048576" (1MB).
+.\"#MultipleOperationTimeout
.TP 5
\fBMultipleOperationTimeout \fIseconds\fR
Specifies the maximum amount of time to allow between files in a multiple file print job.
The default is "300" (5 minutes).
+.\"#PageLogFormat
.TP 5
\fBPageLogFormat \fIformat-string\fR
Specifies the format of PageLog lines.
.fi
The default is "%p %u %j %T %P %C %{job-billing} %{job-originating-host-name} %{job-name} %{media} %{sides}".
+.\"#PassEnv
.TP 5
\fBPassEnv \fIvariable \fR[ ... \fIvariable \fR]
Passes the specified environment variable(s) to child processes.
+.\"#Policy
.TP 5
\fB<Policy \fIname\fB> \fR... \fB</Policy>\fR
Specifies access control for the named policy.
+.\"#Port
.TP 5
\fBPort \fInumber\fR
Listens to the specified port number for connections.
+.\"#PreserveJobFiles
.TP 5
\fBPreserveJobFiles Yes\fR
.TP 5
Specifies whether job files (documents) are preserved after a job is printed.
If a numeric value is specified, job files are preserved for the indicated number of seconds after printing.
The default is "86400" (preserve 1 day).
+.\"#PreserveJobHistory
.TP 5
\fBPreserveJobHistory Yes\fR
.TP 5
If a numeric value is specified, the job history is preserved for the indicated number of seconds after printing.
If "Yes", the job history is preserved until the MaxJobs limit is reached.
The default is "Yes".
+.\"#ReloadTimeout
.TP 5
\fBReloadTimeout \fIseconds\fR
Specifies the amount of time to wait for job completion before restarting the scheduler.
The default is "30".
+.\"#RIPCache
.TP 5
\fBRIPCache \fIsize\fR
Specifies the maximum amount of memory to use when converting documents into bitmaps for a printer.
The default is "128m".
+.\"#ServerAdmin
.TP 5
\fBServerAdmin \fIemail-address\fR
Specifies the email address of the server administrator.
The default value is "root@ServerName".
+.\"#ServerAlias
.TP 5
\fBServerAlias \fIhostname \fR[ ... \fIhostname \fR]
.TP 5
The ServerAlias directive is used for HTTP Host header validation when clients connect to the scheduler from external interfaces.
Using the special name "*" can expose your system to known browser-based DNS rebinding attacks, even when accessing sites through a firewall.
If the auto-discovery of alternate names does not work, we recommend listing each alternate name with a ServerAlias directive instead of using "*".
+.\"#ServerName
.TP 5
\fBServerName \fIhostname\fR
Specifies the fully-qualified hostname of the server.
The default is the value reported by the
.BR hostname (1)
command.
+.\"#ServerTokens
.TP 5
\fBServerTokens None\fR
.TP 5
command.
"Full" reports "CUPS 2.0.0 (UNAME) IPP/2.0".
The default is "Minimal".
+.\"#SetEnv
.TP 5
\fBSetEnv \fIvariable value\fR
Set the specified environment variable to be passed to child processes.
-.TP 5
+.\"#SSLListen
.TP 5
\fBSSLListen \fIipv4-address\fB:\fIport\fR
.TP 5
.TP 5
\fBSSLListen *:\fIport\fR
Listens on the specified address and port for encrypted connections.
+.\"#SSLOptions
.TP 5
\fBSSLOptions \fR[\fIAllowRC4\fR] [\fIAllowSSL3\fR]
.TP 5
By default, CUPS only supports encryption using TLS v1.0 or higher using known secure cipher suites.
The \fIAllowRC4\fR option enables the 128-bit RC4 cipher suites, which are required for some older clients that do not implement newer ones.
The \fIAllowSSL3\fR option enables SSL v3.0, which is required for some older clients that do not support TLS v1.0.
+.\"#SSLPort
.TP 5
\fBSSLPort \fIport\fR
Listens on the specified port for encrypted connections.
+.\"#StrictConformance
.TP 5
\fBStrictConformance Yes\fR
.TP 5
\fBStrictConformance No\fR
Specifies whether the scheduler requires clients to strictly adhere to the IPP specifications.
The default is "No".
+.\"#Timeout
.TP 5
\fBTimeout \fIseconds\fR
Specifies the HTTP request timeout.
The default is "300" (5 minutes).
+.\"#WebInterface
.TP 5
\fBWebInterface yes\fR
.TP 5
.SH COPYRIGHT
Copyright \[co] 2007-2014 by Apple Inc.
.\"
-.\" End of "$Id: cupsd.conf.man.in 12215 2014-10-20 18:24:56Z msweet $".
+.\" End of "$Id: cupsd.conf.man.in 12363 2014-12-12 19:51:33Z msweet $".
.\"
/*
- * "$Id: mantohtml.c 11818 2014-04-15 20:56:19Z msweet $"
+ * "$Id: mantohtml.c 12363 2014-12-12 19:51:33Z msweet $"
*
* Man page to HTML conversion program.
*
*outfile; /* Output file */
char line[1024], /* Line from file */
*lineptr, /* Pointer into line */
+ anchor[1024], /* Anchor */
name[1024], /* Man page name */
ddpost[256]; /* Tagged list post markup */
int section = -1, /* Man page section */
"\t<link rel=\"stylesheet\" type=\"text/css\" "
"href=\"../cups-printable.css\">\n", outfile);
+ anchor[0] = '\0';
+
while (fgets(line, sizeof(line), infile))
{
size_t linelen = strlen(line); /* Length of line */
else
fputs("<h3><a name=\"", outfile);
- for (lineptr = line + 4; *lineptr; lineptr ++)
- if (*lineptr == '\"')
- continue;
- else if (isalnum(*lineptr & 255))
- html_putc(*lineptr, outfile);
- else
- html_putc('_', outfile);
+ if (anchor[0])
+ {
+ fputs(anchor, outfile);
+ anchor[0] = '\0';
+ }
+ else
+ {
+ for (lineptr = line + 4; *lineptr; lineptr ++)
+ if (*lineptr == '\"')
+ continue;
+ else if (isalnum(*lineptr & 255))
+ html_putc(*lineptr, outfile);
+ else
+ html_putc('_', outfile);
+ }
fputs("\">", outfile);
fputs(end_fonts[font], outfile);
font = 0;
+ if (anchor[0])
+ fprintf(outfile, "<a name=\"%s\">", anchor);
+
html_alternate(line + 3, "b", "b", outfile);
+ if (anchor[0])
+ {
+ fputs("</a>", outfile);
+ anchor[0] = '\0';
+ }
+
if (post)
{
fputs(post, outfile);
fputs(end_fonts[font], outfile);
font = 0;
+ if (anchor[0])
+ fprintf(outfile, "<a name=\"%s\">", anchor);
+
html_alternate(line + 3, "i", "i", outfile);
+ if (anchor[0])
+ {
+ fputs("</a>", outfile);
+ anchor[0] = '\0';
+ }
+
if (post)
{
fputs(post, outfile);
fputs(end_fonts[font], outfile);
font = 0;
+ if (anchor[0])
+ fprintf(outfile, "<a name=\"%s\">", anchor);
+
html_alternate(line + 4, "b", "i", outfile);
+ if (anchor[0])
+ {
+ fputs("</a>", outfile);
+ anchor[0] = '\0';
+ }
+
if (post)
{
fputs(post, outfile);
fputs(end_fonts[font], outfile);
font = 0;
+ if (anchor[0])
+ fprintf(outfile, "<a name=\"%s\">", anchor);
+
html_alternate(line + 4, "b", NULL, outfile);
+ if (anchor[0])
+ {
+ fputs("</a>", outfile);
+ anchor[0] = '\0';
+ }
+
if (post)
{
fputs(post, outfile);
fputs(end_fonts[font], outfile);
font = 0;
+ if (anchor[0])
+ fprintf(outfile, "<a name=\"%s\">", anchor);
+
html_alternate(line + 4, "i", "b", outfile);
+ if (anchor[0])
+ {
+ fputs("</a>", outfile);
+ anchor[0] = '\0';
+ }
+
if (post)
{
fputs(post, outfile);
fputs(end_fonts[font], outfile);
font = 0;
+ if (anchor[0])
+ fprintf(outfile, "<a name=\"%s\">", anchor);
+
html_alternate(line + 4, "i", NULL, outfile);
+ if (anchor[0])
+ {
+ fputs("</a>", outfile);
+ anchor[0] = '\0';
+ }
+
if (post)
{
fputs(post, outfile);
fputs(end_fonts[font], outfile);
font = 0;
+ if (anchor[0])
+ fprintf(outfile, "<a name=\"%s\">", anchor);
+
html_alternate(line + 4, NULL, "b", outfile);
+ if (anchor[0])
+ {
+ fputs("</a>", outfile);
+ anchor[0] = '\0';
+ }
+
if (post)
{
fputs(post, outfile);
fputs(end_fonts[font], outfile);
font = 0;
+ if (anchor[0])
+ fprintf(outfile, "<a name=\"%s\">", anchor);
+
html_alternate(line + 4, NULL, "i", outfile);
+ if (anchor[0])
+ {
+ fputs("</a>", outfile);
+ anchor[0] = '\0';
+ }
+
if (post)
{
fputs(post, outfile);
fputs(end_fonts[font], outfile);
font = 0;
+ if (anchor[0])
+ fprintf(outfile, "<a name=\"%s\">", anchor);
+
html_alternate(line + 4, "small", "b", outfile);
+ if (anchor[0])
+ {
+ fputs("</a>", outfile);
+ anchor[0] = '\0';
+ }
+
if (post)
{
fputs(post, outfile);
fputs(end_fonts[font], outfile);
font = 0;
+ if (anchor[0])
+ fprintf(outfile, "<a name=\"%s\">", anchor);
+
html_alternate(line + 4, "small", "small", outfile);
+ if (anchor[0])
+ {
+ fputs("</a>", outfile);
+ anchor[0] = '\0';
+ }
+
if (post)
{
fputs(post, outfile);
}
fputs("<p>", outfile);
+
+ if (anchor[0])
+ {
+ fprintf(outfile, "<a name=\"%s\"></a>", anchor);
+ anchor[0] = '\0';
+ }
}
else if (!strcmp(line, ".RS") || !strncmp(line, ".RS ", 4))
{
fprintf(outfile, "<p style=\"margin-left: %.1fem; text-indent: %.1fem\">", amount, -amount);
+ if (anchor[0])
+ {
+ fprintf(outfile, "<a name=\"%s\"></a>", anchor);
+ anchor[0] = '\0';
+ }
+
if (line[1] == 'T')
post = "<br>\n";
}
fputs("<dt>", outfile);
snprintf(ddpost, sizeof(ddpost), "<dd style=\"margin-left: %.1fem\">", amount);
post = ddpost;
+
+ if (anchor[0])
+ {
+ fprintf(outfile, "<a name=\"%s\"></a>", anchor);
+ anchor[0] = '\0';
+ }
}
else if (!strncmp(line, ".IP ", 4))
{
fprintf(outfile, "<li style=\"margin-left: %.1fem;\">", amount);
else
fprintf(outfile, "<p style=\"margin-left: %.1fem;\">", amount);
+
+ if (anchor[0])
+ {
+ fprintf(outfile, "<a name=\"%s\"></a>", anchor);
+ anchor[0] = '\0';
+ }
}
else if (!strncmp(line, ".br", 3))
{
*/
}
#endif /* 0 */
+ else if (!strncmp(line, ".\\\"#", 4))
+ {
+ /*
+ * Anchor for HTML output...
+ */
+
+ strlcpy(anchor, line + 4, sizeof(anchor));
+ }
else if (strncmp(line, ".\\\"", 3))
{
/*
/*
- * End of "$Id: mantohtml.c 11818 2014-04-15 20:56:19Z msweet $".
+ * End of "$Id: mantohtml.c 12363 2014-12-12 19:51:33Z msweet $".
*/
#
-# "$Id: cups.spec.in 12222 2014-10-21 11:55:01Z msweet $"
+# "$Id: cups.spec.in 12501 2015-02-09 15:23:13Z msweet $"
#
# RPM "spec" file for CUPS.
#
Summary: CUPS
Name: cups
-Version: 2.0.1
+Version: 2.0.2
Release: 1
Epoch: 1
License: GPL
Group: System Environment/Daemons
-Source: http://www.cups.org/software/2.0.1/cups-2.0.1-source.tar.bz2
+Source: http://www.cups.org/software/2.0.2/cups-2.0.2-source.tar.bz2
Url: http://www.cups.org
Packager: Anonymous <anonymous@foo.com>
Vendor: Apple Inc.
/usr/share/doc/cups/es/*
#%dir /usr/share/doc/cups/fr
#/usr/share/doc/cups/fr/*
-#%dir /usr/share/doc/cups/ja
-#/usr/share/doc/cups/ja/*
+%dir /usr/share/doc/cups/ja
+/usr/share/doc/cups/ja/*
#%dir /usr/share/doc/cups/ru
#/usr/share/doc/cups/ru/*
#
-# End of "$Id: cups.spec.in 12222 2014-10-21 11:55:01Z msweet $".
+# End of "$Id: cups.spec.in 12501 2015-02-09 15:23:13Z msweet $".
#
#
-# "$Id: cups.spec.in 12222 2014-10-21 11:55:01Z msweet $"
+# "$Id: cups.spec.in 12501 2015-02-09 15:23:13Z msweet $"
#
# RPM "spec" file for CUPS.
#
/usr/share/doc/cups/es/*
#%dir /usr/share/doc/cups/fr
#/usr/share/doc/cups/fr/*
-#%dir /usr/share/doc/cups/ja
-#/usr/share/doc/cups/ja/*
+%dir /usr/share/doc/cups/ja
+/usr/share/doc/cups/ja/*
#%dir /usr/share/doc/cups/ru
#/usr/share/doc/cups/ru/*
#
-# End of "$Id: cups.spec.in 12222 2014-10-21 11:55:01Z msweet $".
+# End of "$Id: cups.spec.in 12501 2015-02-09 15:23:13Z msweet $".
#
/*
- * "$Id: colorman.c 12226 2014-10-21 13:36:05Z msweet $"
+ * "$Id: colorman.c 12369 2014-12-15 14:51:28Z msweet $"
*
* Color management routines for the CUPS scheduler.
*
}
#elif defined(HAVE_DBUS)
- colord_unregister_printer(p);
- colord_register_printer(p);
+ if (!RunUser)
+ {
+ colord_unregister_printer(p);
+ colord_register_printer(p);
+ }
#endif /* __APPLE__ */
}
apple_unregister_profiles(p);
#elif defined(HAVE_DBUS)
- colord_unregister_printer(p);
+ if (!RunUser)
+ colord_unregister_printer(p);
#endif /* __APPLE__ */
}
/*
- * End of "$Id: colorman.c 12226 2014-10-21 13:36:05Z msweet $".
+ * End of "$Id: colorman.c 12369 2014-12-15 14:51:28Z msweet $".
*/
/*
- * "$Id: conf.c 12224 2014-10-21 13:16:30Z msweet $"
+ * "$Id: conf.c 12463 2015-01-30 16:34:31Z msweet $"
*
* Configuration routines for the CUPS scheduler.
*
else if (!_cups_strcasecmp(value, "always"))
{
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Encryption value \"%s\" on line %d is invalid in this "
- "context. Using \"required\" instead.", value, linenum);
+ "Encryption value \"%s\" on line %d of %s is invalid in this "
+ "context. Using \"required\" instead.", value, linenum, ConfigurationFile);
loc->encryption = HTTP_ENCRYPT_REQUIRED;
}
else
{
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Unknown Encryption value %s on line %d.", value, linenum);
+ "Unknown Encryption value %s on line %d of %s.", value, linenum, ConfigurationFile);
return (0);
}
}
loc->order_type = CUPSD_AUTH_DENY;
else
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Unknown Order value %s on line %d.",
- value, linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Unknown Order value %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
return (0);
}
}
if (!get_addr_and_mask(value, ip, mask))
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Bad netmask value %s on line %d.",
- value, linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Bad netmask value %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
return (0);
}
else
{
cupsdLogMessage(CUPSD_LOG_WARN,
- "Unknown authorization type %s on line %d.",
- value, linenum);
+ "Unknown authorization type %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
return (0);
}
}
cupsdLogMessage(CUPSD_LOG_WARN,
"\"AuthClass %s\" is deprecated; consider using "
- "\"Require valid-user\" on line %d.",
- value, linenum);
+ "\"Require valid-user\" on line %d of %s.",
+ value, linenum, ConfigurationFile);
}
else if (!_cups_strcasecmp(value, "group"))
{
cupsdLogMessage(CUPSD_LOG_WARN,
"\"AuthClass %s\" is deprecated; consider using "
- "\"Require user @groupname\" on line %d.",
- value, linenum);
+ "\"Require user @groupname\" on line %d of %s.",
+ value, linenum, ConfigurationFile);
}
else if (!_cups_strcasecmp(value, "system"))
{
cupsdLogMessage(CUPSD_LOG_WARN,
"\"AuthClass %s\" is deprecated; consider using "
- "\"Require user @SYSTEM\" on line %d.",
- value, linenum);
+ "\"Require user @SYSTEM\" on line %d of %s.",
+ value, linenum, ConfigurationFile);
}
else
{
cupsdLogMessage(CUPSD_LOG_WARN,
- "Unknown authorization class %s on line %d.",
- value, linenum);
+ "Unknown authorization class %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
return (0);
}
}
cupsdLogMessage(CUPSD_LOG_WARN,
"\"AuthGroupName %s\" directive is deprecated; consider "
- "using \"Require user @%s\" on line %d.",
- value, value, linenum);
+ "using \"Require user @%s\" on line %d of %s.",
+ value, value, linenum, ConfigurationFile);
}
else if (!_cups_strcasecmp(line, "Require"))
{
loc->level = CUPSD_AUTH_GROUP;
else
{
- cupsdLogMessage(CUPSD_LOG_WARN, "Unknown Require type %s on line %d.",
- value, linenum);
+ cupsdLogMessage(CUPSD_LOG_WARN, "Unknown Require type %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
return (0);
}
loc->satisfy = CUPSD_AUTH_SATISFY_ANY;
else
{
- cupsdLogMessage(CUPSD_LOG_WARN, "Unknown Satisfy value %s on line %d.",
- value, linenum);
+ cupsdLogMessage(CUPSD_LOG_WARN, "Unknown Satisfy value %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
return (0);
}
}
JobRetryInterval = atoi(value);
cupsdLogMessage(CUPSD_LOG_WARN,
"FaxRetryInterval is deprecated; use "
- "JobRetryInterval on line %d.", linenum);
+ "JobRetryInterval on line %d of %s.", linenum, ConfigurationFile);
}
else if (!_cups_strcasecmp(line, "FaxRetryLimit") && value)
{
JobRetryLimit = atoi(value);
cupsdLogMessage(CUPSD_LOG_WARN,
"FaxRetryLimit is deprecated; use "
- "JobRetryLimit on line %d.", linenum);
+ "JobRetryLimit on line %d of %s.", linenum, ConfigurationFile);
}
+#ifdef HAVE_SSL
else if (!_cups_strcasecmp(line, "SSLOptions"))
{
/*
_httpTLSSetOptions(options);
}
+#endif /* HAVE_SSL */
else if ((!_cups_strcasecmp(line, "Port") || !_cups_strcasecmp(line, "Listen")
#ifdef HAVE_SSL
|| !_cups_strcasecmp(line, "SSLPort") || !_cups_strcasecmp(line, "SSLListen")
if (protocols < 0)
{
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Unknown browse protocol \"%s\" on line %d.",
- value, linenum);
+ "Unknown browse protocol \"%s\" on line %d of %s.",
+ value, linenum, ConfigurationFile);
break;
}
else
{
cupsdLogMessage(CUPSD_LOG_WARN,
- "Unknown default authorization type %s on line %d.",
- value, linenum);
+ "Unknown default authorization type %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
if (FatalErrors & CUPSD_FATAL_CONFIG)
return (0);
}
else
{
cupsdLogMessage(CUPSD_LOG_WARN,
- "Unknown default encryption %s on line %d.",
- value, linenum);
+ "Unknown default encryption %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
if (FatalErrors & CUPSD_FATAL_CONFIG)
return (0);
}
else if (!_cups_strcasecmp(value, "double"))
HostNameLookups = 2;
else
- cupsdLogMessage(CUPSD_LOG_WARN, "Unknown HostNameLookups %s on line %d.",
- value, linenum);
+ cupsdLogMessage(CUPSD_LOG_WARN, "Unknown HostNameLookups %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
}
else if (!_cups_strcasecmp(line, "AccessLogLevel") && value)
{
else if (!_cups_strcasecmp(value, "none"))
AccessLogLevel = CUPSD_ACCESSLOG_NONE;
else
- cupsdLogMessage(CUPSD_LOG_WARN, "Unknown AccessLogLevel %s on line %d.",
- value, linenum);
+ cupsdLogMessage(CUPSD_LOG_WARN, "Unknown AccessLogLevel %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
}
else if (!_cups_strcasecmp(line, "LogLevel") && value)
{
else if (!_cups_strcasecmp(value, "none"))
LogLevel = CUPSD_LOG_NONE;
else
- cupsdLogMessage(CUPSD_LOG_WARN, "Unknown LogLevel %s on line %d.",
- value, linenum);
+ cupsdLogMessage(CUPSD_LOG_WARN, "Unknown LogLevel %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
}
else if (!_cups_strcasecmp(line, "LogTimeFormat") && value)
{
else if (!_cups_strcasecmp(value, "usecs"))
LogTimeFormat = CUPSD_TIME_USECS;
else
- cupsdLogMessage(CUPSD_LOG_WARN, "Unknown LogTimeFormat %s on line %d.",
- value, linenum);
+ cupsdLogMessage(CUPSD_LOG_WARN, "Unknown LogTimeFormat %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
}
else if (!_cups_strcasecmp(line, "ServerTokens") && value)
{
else if (!_cups_strcasecmp(value, "None"))
cupsdClearString(&ServerHeader);
else
- cupsdLogMessage(CUPSD_LOG_WARN, "Unknown ServerTokens %s on line %d.",
- value, linenum);
+ cupsdLogMessage(CUPSD_LOG_WARN, "Unknown ServerTokens %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
}
else if (!_cups_strcasecmp(line, "PassEnv") && value)
{
}
else
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Missing value for SetEnv directive on line %d.",
- linenum);
+ "Missing value for SetEnv directive on line %d of %s.",
+ linenum, ConfigurationFile);
}
else if (!_cups_strcasecmp(line, "AccessLog") ||
!_cups_strcasecmp(line, "CacheDir") ||
if ((parent = cupsdFindLocation(location)) != NULL)
- cupsdLogMessage(CUPSD_LOG_WARN, "Duplicate <Location %s> on line %d.",
- location, linenum);
+ cupsdLogMessage(CUPSD_LOG_WARN, "Duplicate <Location %s> on line %d of %s.",
+ location, linenum, ConfigurationFile);
else if ((parent = cupsdNewLocation(location)) == NULL)
return (0);
else
{
if (!value)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Syntax error on line %d.", linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Syntax error on line %d of %s.", linenum, ConfigurationFile);
if (FatalErrors & CUPSD_FATAL_CONFIG)
return (0);
else
else if (!strcmp(value, "TRACE"))
loc->limit |= CUPSD_AUTH_LIMIT_TRACE;
else
- cupsdLogMessage(CUPSD_LOG_WARN, "Unknown request type %s on line %d.",
- value, linenum);
+ cupsdLogMessage(CUPSD_LOG_WARN, "Unknown request type %s on line %d of %s.",
+ value, linenum, ConfigurationFile);
for (value = valptr; isspace(*value & 255); value ++);
}
loc = parent;
else if (!value)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Missing value on line %d.", linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Missing value on line %d of %s.", linenum, ConfigurationFile);
if (FatalErrors & CUPSD_FATAL_CONFIG)
return (0);
}
else if (!parse_aaa(loc, line, value, linenum))
{
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Unknown Location directive %s on line %d.",
- line, linenum);
+ "Unknown Location directive %s on line %d of %s.",
+ line, linenum, ConfigurationFile);
if (FatalErrors & CUPSD_FATAL_CONFIG)
return (0);
}
*/
if ((pol = cupsdFindPolicy(policy)) != NULL)
- cupsdLogMessage(CUPSD_LOG_WARN, "Duplicate <Policy %s> on line %d.",
- policy, linenum);
+ cupsdLogMessage(CUPSD_LOG_WARN, "Duplicate <Policy %s> on line %d of %s.",
+ policy, linenum, ConfigurationFile);
else if ((pol = cupsdAddPolicy(policy)) == NULL)
return (0);
{
if (op)
cupsdLogMessage(CUPSD_LOG_WARN,
- "Missing </Limit> before </Policy> on line %d.",
- linenum);
+ "Missing </Limit> before </Policy> on line %d of %s.",
+ linenum, ConfigurationFile);
set_policy_defaults(pol);
{
if (!value)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Syntax error on line %d.", linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Syntax error on line %d of %s.", linenum, ConfigurationFile);
if (FatalErrors & CUPSD_FATAL_CONFIG)
return (0);
else
ops[num_ops] = IPP_ANY_OPERATION;
else if ((ops[num_ops] = ippOpValue(value)) == IPP_BAD_OPERATION)
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Bad IPP operation name \"%s\" on line %d.",
- value, linenum);
+ "Bad IPP operation name \"%s\" on line %d of %s.",
+ value, linenum, ConfigurationFile);
else
num_ops ++;
}
else
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Too many operations listed on line %d.",
- linenum);
+ "Too many operations listed on line %d of %s.",
+ linenum, ConfigurationFile);
for (value = valptr; isspace(*value & 255); value ++);
}
}
else if (!value)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Missing value on line %d.", linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Missing value on line %d of %s.", linenum, ConfigurationFile);
if (FatalErrors & CUPSD_FATAL_CONFIG)
return (0);
}
{
cupsdLogMessage(CUPSD_LOG_ERROR,
"%s directive must appear outside <Limit>...</Limit> "
- "on line %d.", line, linenum);
+ "on line %d of %s.", line, linenum, ConfigurationFile);
if (FatalErrors & CUPSD_FATAL_CONFIG)
return (0);
}
else if (!op)
{
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Missing <Limit ops> directive before %s on line %d.",
- line, linenum);
+ "Missing <Limit ops> directive before %s on line %d of %s.",
+ line, linenum, ConfigurationFile);
if (FatalErrors & CUPSD_FATAL_CONFIG)
return (0);
}
else if (!parse_aaa(op, line, value, linenum))
{
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Unknown Policy Limit directive %s on line %d.",
- line, linenum);
+ "Unknown Policy Limit directive %s on line %d of %s.",
+ line, linenum, ConfigurationFile);
if (FatalErrors & CUPSD_FATAL_CONFIG)
return (0);
/*
- * End of "$Id: conf.c 12224 2014-10-21 13:16:30Z msweet $".
+ * End of "$Id: conf.c 12463 2015-01-30 16:34:31Z msweet $".
*/
/*
- * "$Id: cupsfilter.c 11770 2014-03-28 14:49:58Z msweet $"
+ * "$Id: cupsfilter.c 12303 2014-12-09 16:16:07Z msweet $"
*
* Filtering program for CUPS.
*
if (i < argc && !infile)
infile = argv[i];
else
- usage(opt);
+ usage(NULL);
}
else
{
/*
- * End of "$Id: cupsfilter.c 11770 2014-03-28 14:49:58Z msweet $".
+ * End of "$Id: cupsfilter.c 12303 2014-12-09 16:16:07Z msweet $".
*/
/*
- * "$Id: dirsvc.c 11871 2014-05-09 20:57:11Z msweet $"
+ * "$Id: dirsvc.c 12459 2015-01-30 16:16:12Z msweet $"
*
* Directory services routines for the CUPS scheduler.
*
- * Copyright 2007-2014 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
*
* These coded instructions, statements, and computer programs are the
DNSSDMaster = NULL;
# else /* HAVE_AVAHI */
- avahi_threaded_poll_stop(DNSSDMaster);
+ if (DNSSDMaster)
+ avahi_threaded_poll_stop(DNSSDMaster);
- avahi_client_free(DNSSDClient);
- DNSSDClient = NULL;
+ if (DNSSDClient)
+ {
+ avahi_client_free(DNSSDClient);
+ DNSSDClient = NULL;
+ }
- avahi_threaded_poll_free(DNSSDMaster);
- DNSSDMaster = NULL;
+ if (DNSSDMaster)
+ {
+ avahi_threaded_poll_free(DNSSDMaster);
+ DNSSDMaster = NULL;
+ }
# endif /* HAVE_DNSSD */
cupsArrayDelete(DNSSDPrinters);
/*
- * End of "$Id: dirsvc.c 11871 2014-05-09 20:57:11Z msweet $".
+ * End of "$Id: dirsvc.c 12459 2015-01-30 16:16:12Z msweet $".
*/
/*
- * "$Id: job.c 12140 2014-08-30 01:51:22Z msweet $"
+ * "$Id: job.c 12463 2015-01-30 16:34:31Z msweet $"
*
* Job management routines for the CUPS scheduler.
*
/* Pipes used between filters */
int envc; /* Number of environment variables */
struct stat fileinfo; /* Job file information */
- int argc; /* Number of arguments */
+ int argc = 0; /* Number of arguments */
char **argv = NULL, /* Filter command-line arguments */
filename[1024], /* Job filename */
command[1024], /* Full path to command */
{
if (job)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Missing </Job> directive on line %d.",
- linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Missing </Job> directive on line %d of %s.", linenum, filename);
continue;
}
if (!value)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Missing job ID on line %d.", linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Missing job ID on line %d of %s.", linenum, filename);
continue;
}
if (jobid < 1)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Bad job ID %d on line %d.", jobid,
- linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Bad job ID %d on line %d of %s.", jobid, linenum, filename);
continue;
}
else if (!job)
{
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Missing <Job #> directive on line %d.", linenum);
+ "Missing <Job #> directive on line %d of %s.", linenum, filename);
continue;
}
else if (!_cups_strcasecmp(line, "</Job>"))
}
else if (!value)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Missing value on line %d.", linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Missing value on line %d of %s.", linenum, filename);
continue;
}
else if (!_cups_strcasecmp(line, "State"))
if (job->num_files < 0)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Bad NumFiles value %d on line %d.",
- job->num_files, linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Bad NumFiles value %d on line %d of %s.", job->num_files, linenum, filename);
job->num_files = 0;
continue;
}
if (sscanf(value, "%d%*[ \t]%15[^/]/%255s%d", &number, super, type,
&compression) != 4)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Bad File on line %d.", linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Bad File on line %d of %s.", linenum, filename);
continue;
}
if (number < 1 || number > job->num_files)
{
- cupsdLogMessage(CUPSD_LOG_ERROR, "Bad File number %d on line %d.",
- number, linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Bad File number %d on line %d of %s.", number, linenum, filename);
continue;
}
}
}
else
- cupsdLogMessage(CUPSD_LOG_ERROR, "Unknown %s directive on line %d.",
- line, linenum);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "Unknown %s directive on line %d of %s.", line, linenum, filename);
}
if (job)
{
cupsdLogMessage(CUPSD_LOG_ERROR,
- "Missing </Job> directive on line %d.", linenum);
+ "Missing </Job> directive on line %d of %s.", linenum, filename);
cupsdDeleteJob(job, CUPSD_JOB_PURGE);
}
FilterLevel -= job->cost;
job->cost = 0;
- if (action == CUPSD_JOB_DEFAULT && !job->kill_time)
+ if (action == CUPSD_JOB_DEFAULT && !job->kill_time && job->backend > 0)
job->kill_time = time(NULL) + JobKillDelay;
else if (action >= CUPSD_JOB_FORCE)
job->kill_time = 0;
/*
- * End of "$Id: job.c 12140 2014-08-30 01:51:22Z msweet $".
+ * End of "$Id: job.c 12463 2015-01-30 16:34:31Z msweet $".
*/
/*
- * "$Id: printers.c 12170 2014-09-30 16:12:03Z msweet $"
+ * "$Id: printers.c 12463 2015-01-30 16:34:31Z msweet $"
*
* Printer routines for the CUPS scheduler.
*
_ppdCacheDestroy(p->pc);
p->pc = NULL;
- cupsdClearString(&(p->make_model));
-
if (cache_info.st_mtime >= ppd_info.st_mtime)
{
cupsdLogMessage(CUPSD_LOG_DEBUG, "load_ppd: Loading %s...", cache_name);
cupsdLogMessage(CUPSD_LOG_DEBUG, "load_ppd: Loading %s...", ppd_name);
+ cupsdClearString(&(p->make_model));
+
p->type &= (cups_ptype_t)~CUPS_PRINTER_OPTIONS;
p->type |= CUPS_PRINTER_BW;
pstatus = ppdLastError(&pline);
- cupsdLogMessage(CUPSD_LOG_ERROR, "PPD file for %s cannot be loaded!",
- p->name);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "PPD file for %s cannot be loaded.", p->name);
if (pstatus <= PPD_ALLOC_ERROR)
- cupsdLogMessage(CUPSD_LOG_ERROR, "%s", strerror(errno));
+ cupsdLogMessage(CUPSD_LOG_ERROR, "%s: %s", ppd_name, strerror(errno));
else
- cupsdLogMessage(CUPSD_LOG_ERROR, "%s on line %d.",
- ppdErrorString(pstatus), pline);
+ cupsdLogMessage(CUPSD_LOG_ERROR, "%s on line %d of %s.", ppdErrorString(pstatus), pline, ppd_name);
cupsdLogMessage(CUPSD_LOG_INFO,
"Hint: Run \"cupstestppd %s\" and fix any errors.",
/*
- * End of "$Id: printers.c 12170 2014-09-30 16:12:03Z msweet $".
+ * End of "$Id: printers.c 12463 2015-01-30 16:34:31Z msweet $".
*/
/*
- * "$Id: process.c 12252 2014-11-14 17:14:45Z msweet $"
+ * "$Id: process.c 12471 2015-02-01 05:07:10Z msweet $"
*
* Process management routines for the CUPS scheduler.
*
- * Copyright 2007-2014 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
*
* These coded instructions, statements, and computer programs are the
# include <spawn.h>
extern char **environ;
#endif /* HAVE_POSIX_SPAWN */
+#ifdef HAVE_POSIX_SPAWN
+# if !defined(__OpenBSD__) || OpenBSD >= 201505
+# define USE_POSIX_SPAWN 1
+# else
+# define USE_POSIX_SPAWN 0
+# endif /* !__OpenBSD__ || */
+#else
+# define USE_POSIX_SPAWN 0
+#endif /* HAVE_POSIX_SPAWN */
/*
/* Also allow access to device files... */
cupsFilePuts(fp, "(allow file-write* file-read-data file-read-metadata file-ioctl\n"
" (regex #\"^/dev/\"))\n");
+
+ /* And allow kernel extensions to be loaded, e.g., SMB */
+ cupsFilePuts(fp, "(allow system-kext-load)\n");
}
else
{
nice_str[16]; /* FilterNice string */
uid_t user; /* Command UID */
cupsd_proc_t *proc; /* New process record */
-#if defined(HAVE_POSIX_SPAWN) && !defined(__OpenBSD__)
+#if USE_POSIX_SPAWN
posix_spawn_file_actions_t actions; /* Spawn file actions */
posix_spawnattr_t attrs; /* Spawn attributes */
sigset_t defsignals; /* Default signals */
#elif defined(HAVE_SIGACTION) && !defined(HAVE_SIGSET)
struct sigaction action; /* POSIX signal handler */
-#endif /* HAVE_POSIX_SPAWN && !__OpenBSD__ */
+#endif /* USE_POSIX_SPAWN */
#if defined(__APPLE__)
char processPath[1024], /* CFProcessPath environment variable */
linkpath[1024]; /* Link path for symlinks... */
* Use helper program when we have a sandbox profile...
*/
-#if !defined(HAVE_POSIX_SPAWN) || defined(__OpenBSD__)
+#if !USE_POSIX_SPAWN
if (profile)
-#endif /* !HAVE_POSIX_SPAWN || __OpenBSD__ */
+#endif /* !USE_POSIX_SPAWN */
{
snprintf(cups_exec, sizeof(cups_exec), "%s/daemon/cups-exec", ServerBin);
snprintf(user_str, sizeof(user_str), "%d", user);
cupsdLogMessage(CUPSD_LOG_DEBUG2, "cupsdStartProcess: argv[%d] = \"%s\"", i, argv[i]);
}
-#if defined(HAVE_POSIX_SPAWN) && !defined(__OpenBSD__) /* OpenBSD posix_spawn is busted with SETSIGDEF */
+#if USE_POSIX_SPAWN
/*
* Setup attributes and file actions for the spawn...
*/
}
cupsdReleaseSignals();
-#endif /* HAVE_POSIX_SPAWN && !__OpenBSD__ */
+#endif /* USE_POSIX_SPAWN */
if (*pid)
{
/*
- * End of "$Id: process.c 12252 2014-11-14 17:14:45Z msweet $".
+ * End of "$Id: process.c 12471 2015-02-01 05:07:10Z msweet $".
*/
/*
- * "$Id: cupstestppd.c 11558 2014-02-06 18:33:34Z msweet $"
+ * "$Id: cupstestppd.c 12412 2015-01-19 15:18:02Z msweet $"
*
* PPD test program for CUPS.
*
- * Copyright 2007-2013 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products, all rights reserved.
*
* These coded instructions, statements, and computer programs are the
* PostScript is a trademark of Adobe Systems, Inc.
*
* This file is subject to the Apple OS-Developed Software exception.
- *
- * Contents:
- *
- * main() - Main entry for test program.
- * check_basics() - Check for CR LF, mixed line endings, and blank
- * lines.
- * check_constraints() - Check UIConstraints in the PPD file.
- * check_case() - Check that there are no duplicate groups, options,
- * or choices that differ only by case.
- * check_defaults() - Check default option keywords in the PPD file.
- * check_duplex() - Check duplex keywords in the PPD file.
- * check_filters() - Check filters in the PPD file.
- * check_profiles() - Check ICC color profiles in the PPD file.
- * check_sizes() - Check media sizes in the PPD file.
- * check_translations() - Check translations in the PPD file.
- * show_conflicts() - Show option conflicts in a PPD file.
- * test_raster() - Test PostScript commands for raster printers.
- * usage() - Show program usage.
- * valid_path() - Check whether a path has the correct capitalization.
- * valid_utf8() - Check whether a string contains valid UTF-8 text.
*/
/*
pwg_media = pwgMediaForSize(width_2540ths, length_2540ths);
if (pwg_media &&
- (fabs(pwg_media->width - width_2540ths) > 34 ||
- fabs(pwg_media->length - length_2540ths) > 34))
+ (abs(pwg_media->width - width_2540ths) > 34 ||
+ abs(pwg_media->length - length_2540ths) > 34))
pwg_media = NULL; /* Only flag matches within a point */
if (pwg_media && pwg_media->ppd &&
/*
- * End of "$Id: cupstestppd.c 11558 2014-02-06 18:33:34Z msweet $".
+ * End of "$Id: cupstestppd.c 12412 2015-01-19 15:18:02Z msweet $".
*/
</div>
</div>
- <div class="footer">CUPS y el logo de CUPS son marcas registradas de <a href="http://www.apple.com">Apple Inc.</a> Derechos de autor © 2007-2014 Apple Inc. Todos los derechos reservados.</div>
+ <div class="footer">CUPS y el logo de CUPS son marcas registradas de <a href="http://www.apple.com">Apple Inc.</a> Derechos de autor © 2007-2015 Apple Inc. Todos los derechos reservados.</div>
</body>
</html>
--- /dev/null
+<H2 CLASS="title">クラスの追加</H2>
+
+<FORM METHOD="POST" ACTION="/admin">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+
+<TABLE>
+<TR>
+<TH CLASS="label">名前:</TH>
+<TD><INPUT TYPE="TEXT" NAME="PRINTER_NAME" SIZE="40" MAXLENGTH="127"><BR>
+<SMALL("/"、"#"、スペースを除く表示可能文字を含めることができます)</SMALL></TD>
+</TR>
+<TR>
+<TH CLASS="label">説明:</TH>
+<TD><INPUT TYPE="TEXT" NAME="PRINTER_INFO" SIZE="40" MAXLENGTH="127"><BR>
+<SMALL>("両面ありHP LaserJet" のように人が読みやすい説明)</SMALL></TD>
+</TR>
+<TR>
+<TH CLASS="label">場所:</TH>
+<TD><INPUT TYPE="TEXT" NAME="PRINTER_LOCATION" SIZE="40" MAXLENGTH="127"><BR>
+<SMALL>("研究室1" のように人が読みやすい場所)</SMALL></TD>
+</TR>
+<TR>
+<TH CLASS="label">メンバー:</TH>
+<TD>
+<SELECT NAME="MEMBER_URIS" SIZE="10" MULTIPLE>
+{[member_uris]<OPTION VALUE="{member_uris}" {?member_selected}>{member_names}}
+</SELECT>
+</TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="クラスの追加"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<H2 CLASS="title">新しいプリンターの追加</H2>
+
+<FORM METHOD="POST" ACTION="/admin">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+<INPUT TYPE="HIDDEN" NAME="BAUDRATE" VALUE="{?baudrate}">
+<INPUT TYPE="HIDDEN" NAME="BITS" VALUE="{?bits}">
+<INPUT TYPE="HIDDEN" NAME="PARITY" VALUE="{?parity}">
+<INPUT TYPE="HIDDEN" NAME="FLOW" VALUE="{?flow}">
+{?current_make!?<INPUT TYPE="HIDDEN" NAME="CURRENT_MAKE" VALUE="{current_make}">:}
+{?current_make_and_model!?<INPUT TYPE="HIDDEN" NAME="CURRENT_MAKE_AND_MODEL" VALUE="{current_make_and_model}">:}
+
+<TABLE>
+<TR>
+<TH CLASS="label">名前:</TH>
+<TD><INPUT TYPE="TEXT" NAME="PRINTER_NAME" SIZE="40" MAXLENGTH="127" VALUE="{?template_name}"><BR>
+<SMALL>("/"、"#"、スペースを除く表示可能文字を含めることができます)</SMALL></TD>
+</TR>
+<TR>
+<TH CLASS="label">説明:</TH>
+<TD><INPUT TYPE="TEXT" NAME="PRINTER_INFO" SIZE="40" MAXLENGTH="127" VALUE="{?PRINTER_INFO}"><BR>
+<SMALL>("両面ありHP LaserJet" のように人が読みやすい説明)</SMALL></TD>
+</TR>
+<TR>
+<TH CLASS="label">場所:</TH>
+<TD><INPUT TYPE="TEXT" NAME="PRINTER_LOCATION" SIZE="40" MAXLENGTH="127" VALUE="{?PRINTER_LOCATION}"><BR>
+<SMALL>("研究室1" のように人が読みやすい場所)</SMALL></TD>
+</TR>
+<TR>
+<TH CLASS="label">接続:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="DEVICE_URI" VALUE="{device_uri}">{device_uri}</TD>
+</TR>
+<TR>
+<TH CLASS="label">共有:</TH>
+<TD><INPUT TYPE="CHECKBOX" NAME="PRINTER_IS_SHARED" {PRINTER_IS_SHARED=1?CHECKED:}>
+このプリンターを共有する</TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="続ける"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<FORM METHOD="POST" ACTION="/admin">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="add-rss-subscription">
+
+<H2 CLASS="title">RSS 購読を追加</H2>
+
+<TABLE SUMMARY="RSS 購読フォームを追加">
+<TR>
+<TH CLASS="label">名前:</TH>
+<TD COLSPAN="5"><INPUT TYPE="TEXT" NAME="SUBSCRIPTION_NAME" SIZE="40" MAXLENGTH="127" VALUE="{?SUBSCRIPTION_NAME}"><BR>
+<SMALL>("/"、"?"、"#"、スペースを除く文字を含めることができます)</SMALL></TD>
+</TR>
+<TR>
+<TH CLASS="label">キュー:</TH>
+<TD COLSPAN="5"><SELECT NAME="PRINTER_URI" SIZE="10"><OPTION VALUE="#ALL#"{?PRINTER_URI=#ALL#? SELECTED:}>すべてのキュー</OPTION>{[printer_name]<OPTION VALUE="{printer_uri_supported}"{?PRINTER_URI={printer_uri_supported}? SELECTED:}>{printer_name}</OPTION>}</SELECT></TD>
+</TR>
+<TR VALIGN="TOP">
+<TH CLASS="label">イベント:</TH>
+<TD><INPUT TYPE="CHECKBOX" NAME="EVENT_JOB_CREATED" {?EVENT_JOB_CREATED}>ジョブが作成された<BR>
+<INPUT TYPE="CHECKBOX" NAME="EVENT_JOB_COMPLETED" {?EVENT_JOB_COMPLETED}>ジョブが完了した<BR>
+<INPUT TYPE="CHECKBOX" NAME="EVENT_JOB_STOPPED" {?EVENT_JOB_STOPPED}>ジョブが停止した<BR>
+<INPUT TYPE="CHECKBOX" NAME="EVENT_JOB_CONFIG_CHANGED" {?EVENT_JOB_CONFIG_CHANGED}>ジョブオプションが変更された</TD>
+<TD> </TD>
+<TD><INPUT TYPE="CHECKBOX" NAME="EVENT_PRINTER_STOPPED" {?EVENT_PRINTER_STOPPED}>キューが停止した<BR>
+<INPUT TYPE="CHECKBOX" NAME="EVENT_PRINTER_ADDED" {?EVENT_PRINTER_ADDED}>キューが追加された<BR>
+<INPUT TYPE="CHECKBOX" NAME="EVENT_PRINTER_MODIFIED" {?EVENT_PRINTER_MODIFIED}>キューが変更された<BR>
+<INPUT TYPE="CHECKBOX" NAME="EVENT_PRINTER_DELETED" {?EVENT_PRINTER_DELETED}>キューが削除された</TD>
+<TD> </TD>
+<TD><INPUT TYPE="CHECKBOX" NAME="EVENT_SERVER_STARTED" {?EVENT_SERVER_STARTED}>サーバーが開始した<BR>
+<INPUT TYPE="CHECKBOX" NAME="EVENT_SERVER_STOPPED" {?EVENT_SERVER_STOPPED}>サーバーが停止した<BR>
+<INPUT TYPE="CHECKBOX" NAME="EVENT_SERVER_RESTARTED" {?EVENT_SERVER_RESTARTED}>サーバーが再起動した<BR>
+<INPUT TYPE="CHECKBOX" NAME="EVENT_SERVER_AUDIT" {?EVENT_SERVER_AUDIT}>サーバーのセキュリティを監査中</TD>
+</TR>
+<TR>
+<TH CLASS="label">フィード内の最大イベント数:</TH>
+<TD COLSPAN="5"><INPUT TYPE="NUMBER" NAME="MAX_EVENTS" SIZE="4" MAXLENGTH="4" VALUE="{MAX_EVENTS?{MAX_EVENTS}:20}"></TD>
+</TR>
+<TR>
+<TD></TD>
+<TD COLSPAN="5"><INPUT TYPE="SUBMIT" VALUE="RSS 購読を追加"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<div class="row">
+ <div class="halves">
+ <H2 CLASS="title">プリンター</H2>
+
+ <P>
+ <FORM ACTION="/admin/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="add-printer"><INPUT TYPE="SUBMIT" VALUE="プリンターの追加"></FORM>
+ <FORM ACTION="/admin/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="find-new-printers"><INPUT TYPE="SUBMIT" VALUE="新しいプリンターの検索"></FORM>
+ <FORM ACTION="/printers/" METHOD="GET"><INPUT TYPE="SUBMIT" VALUE="プリンターの管理"></FORM>
+ {have_samba?<FORM ACTION="/admin/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="export-samba"><INPUT TYPE="SUBMIT" VALUE="プリンターを Samba にエクスポート"></FORM>:}
+ </P>
+
+ <H2 CLASS="title">クラス</H2>
+
+ <P>
+ <FORM ACTION="/admin/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="add-class"><INPUT TYPE="SUBMIT" VALUE="クラスの追加"></FORM>
+ <FORM ACTION="/classes/" METHOD="GET"><INPUT TYPE="SUBMIT" VALUE="クラスの管理"></FORM>
+ </P>
+
+ <H2 CLASS="title">ジョブ</H2>
+
+ <P>
+ <FORM ACTION="/jobs/" METHOD="GET"><INPUT TYPE="SUBMIT" VALUE="ジョブの管理"></FORM>
+ </P>
+ </div>
+ <div class="halves">
+ <H2 CLASS="title">サーバー</H2>
+
+ <P>
+ <FORM ACTION="/admin/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="config-server"><INPUT TYPE="SUBMIT" VALUE="設定ファイルの編集"></FORM>
+ <FORM ACTION="/admin/log/access_log" METHOD="GET"><INPUT TYPE="SUBMIT" VALUE="アクセスログの表示"></FORM>
+ <FORM ACTION="/admin/log/error_log" METHOD="GET"><INPUT TYPE="SUBMIT" VALUE="エラーログの表示"></FORM>
+ <FORM ACTION="/admin/log/page_log" METHOD="GET"><INPUT TYPE="SUBMIT" VALUE="ページログの表示"></FORM>
+ </P>
+
+ {SETTINGS_ERROR?<P>{SETTINGS_MESSAGE}</P>
+ <BLOCKQUOTE>{SETTINGS_ERROR}</BLOCKQUOTE>:
+
+ <FORM METHOD="POST" ACTION="/admin">
+ <INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+
+ {ADVANCEDSETTINGS?<P><B>サーバー設定\:</B></P>
+
+ <P><A HREF="/admin/">詳細 <SMALL>▼</SMALL></A><BR>
+ <INPUT TYPE="HIDDEN" NAME="OP" VALUE="config-server">
+ <INPUT TYPE="HIDDEN" NAME="ADVANCEDSETTINGS" VALUE="YES">
+ <INPUT TYPE="CHECKBOX" NAME="SHARE_PRINTERS" {?share_printers}> このシステムに接続されているプリンターを共有<BR>
+ 最大クライアント数\:
+ <INPUT TYPE="TEXT" NAME="MAX_CLIENTS" VALUE="{?max_clients}" SIZE="6"><BR>
+ <INPUT TYPE="CHECKBOX" NAME="REMOTE_ANY" {?remote_any}> インターネットからの印刷を許可<BR>
+ <INPUT TYPE="CHECKBOX" NAME="BROWSE_WEB_IF" {?browse_web_if}> ウェブインターフェイスを公開<BR>
+ <INPUT TYPE="CHECKBOX" NAME="REMOTE_ADMIN" {?remote_admin}> リモート管理を許可<BR>
+ {have_gssapi?<INPUT TYPE="CHECKBOX" NAME="KERBEROS" {?kerberos}> Kerberos 認証を使用 (<A HREF="/help/kerberos.html?TOPIC=Getting+Started">FAQ</A>)<BR>:}
+ <INPUT TYPE="CHECKBOX" NAME="USER_CANCEL_ANY" {?user_cancel_any}> 所有者以外のユーザーにもジョブのキャンセルを許可<BR>
+ <INPUT TYPE="CHECKBOX" NAME="PRESERVE_JOBS" {?preserve_jobs}> ジョブの履歴を保存<BR>
+ 最大ジョブ数 (0 は無制限)\:
+ <INPUT TYPE="TEXT" NAME="MAX_JOBS" VALUE="{?max_jobs}" SIZE="6"><BR>
+ メタデータを保持\:
+ <INPUT TYPE="TEXT" NAME="PRESERVE_JOB_HISTORY" VALUE="{?preserve_job_history}" SIZE="6"><BR>
+ ドキュメントを保持\:
+ <INPUT TYPE="TEXT" NAME="PRESERVE_JOB_FILES" VALUE="{?preserve_job_files}" SIZE="6"><BR>
+ <INPUT TYPE="CHECKBOX" NAME="DEBUG_LOGGING" {?debug_logging}> トラブルシューティングのためにデバッグ情報を保存<BR>
+ 最大ログファイルサイズ\:
+ <INPUT TYPE="TEXT" NAME="MAX_LOG_SIZE" VALUE="{?max_log_size}" SIZE="6"></P>
+
+ :<P><B>サーバー設定:</B></P>
+
+ <P><A HREF="/admin/?ADVANCEDSETTINGS=YES">詳細 <SMALL>▶</SMALL></A><BR>
+ <INPUT TYPE="HIDDEN" NAME="OP" VALUE="config-server">
+ <INPUT TYPE="CHECKBOX" NAME="SHARE_PRINTERS" {?share_printers}> このシステムに接続されているプリンターを共有<BR>
+ <INPUT TYPE="CHECKBOX" NAME="REMOTE_ANY" {?remote_any}> インターネットからの印刷を許可<BR>
+ <INPUT TYPE="CHECKBOX" NAME="REMOTE_ADMIN" {?remote_admin}> リモート管理を許可<BR>
+ {have_gssapi?<INPUT TYPE="CHECKBOX" NAME="KERBEROS" {?kerberos}> Kerberos 認証を使用 (<A HREF="/help/kerberos.html?TOPIC=Getting+Started">FAQ</A>)<BR>:}
+ <INPUT TYPE="CHECKBOX" NAME="USER_CANCEL_ANY" {?user_cancel_any}> 所有者以外のユーザーにもジョブのキャンセルを許可<BR>
+ <INPUT TYPE="CHECKBOX" NAME="DEBUG_LOGGING" {?debug_logging}> トラブルシューティングのためにデバッグ情報を保存</P>
+
+ }
+ <P><INPUT TYPE="SUBMIT" NAME="CHANGESETTINGS" VALUE="設定の変更"></P>
+
+ </FORM>}
+ </div>
+</div>
+
+<div class="row">
+ <H2 CLASS="title">RSS 購読</H2>
+
+ <P>
+ <FORM ACTION="/admin/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="add-rss-subscription"><INPUT TYPE="SUBMIT" VALUE="RSS 購読の追加"></FORM>
+ </P>
+
+ {notify_subscription_id?<TABLE CLASS="list" SUMMARY="RSS 購読">
+ <THEAD><TR><TH>名前</TH><TH>イベント</TH><TH>キュー名</TH></TR></THEAD>
+ <TBODY>{[notify_subscription_id]
+ <TR><TD><A HREF="{notify_recipient_uri}">{notify_recipient_name}</A><BR>
+ <FORM ACTION="/admin/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="cancel-subscription"><INPUT TYPE="HIDDEN" NAME="notify_subscription_id" VALUE="{notify_subscription_id}"><INPUT TYPE="SUBMIT" VALUE="RSS 購読のキャンセル"></FORM> </TD><TD>{notify_events}</TD><TD NOWRAP> {notify_printer_name?{notify_printer_name}:すべてのキュー}</TD></TR>}
+ </TBODY>
+ </TABLE>:}
+</div>
\ No newline at end of file
--- /dev/null
+<H2 CLASS="title">{op=modify-printer?{printer_name} の変更:プリンターの追加}</H2>
+
+{CUPS_GET_DEVICES_DONE?<FORM METHOD="POST" ACTION="/admin">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+{printer_name?<INPUT TYPE="HIDDEN" NAME="printer_name" VALUE="{printer_name}">:}
+
+<TABLE>
+{op=add-printer?:<TR>
+<TH CLASS="label">現在の接続\:</TH>
+<TD><INPUT TYPE="RADIO" NAME="DEVICE_URI" VALUE="{current_device_uri}" CHECKED>
+{current_device_uri}</TD>
+</TR>}
+<TR>
+<TH CLASS="label">ローカルプリンター\:</TH>
+<TD>
+{[device_uri]{device_class!network?<INPUT TYPE="RADIO" NAME="DEVICE_URI"
+VALUE="{device_uri}{?device_make_and_model!Unknown?|{device_make_and_model}:}">
+{device_info} {?device_make_and_model!Unknown?({device_make_and_model}):}<BR>
+:}}
+</TD>
+</TR>
+<TR>
+<TH CLASS="label">発見されたネットワークプリンター\:</TH>
+<TD>
+{[device_uri]{device_class=network?{device_uri~[a-z]+://?<INPUT TYPE="RADIO" NAME="DEVICE_URI"
+VALUE="{device_uri}{?device_make_and_model!Unknown?|{device_make_and_model}:}">
+{device_info} {?device_make_and_model!Unknown?({device_make_and_model}):}<BR>
+:}:}}
+</TD>
+</TR>
+<TR>
+<TR>
+<TH CLASS="label">その他のネットワークプリンター\:</TH>
+<TD>
+{[device_uri]{device_class=network?{device_uri~[a-z]+://?:<INPUT TYPE="RADIO" NAME="DEVICE_URI"
+VALUE="{device_uri}{?device_make_and_model!Unknown?|{device_make_and_model}:}">
+{device_info} {?device_make_and_model!Unknown?({device_make_and_model}):}<BR>
+}:}}
+</TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="続ける"></TD>
+</TR>
+</TABLE>
+
+</FORM>:<P><IMG SRC="/images/wait.gif" WIDTH="16" HEIGHT="16" ALIGN="ABSMIDDLE"
+ALT="Busy Indicator"> プリンターを探しています...</P>}
--- /dev/null
+<H2 CLASS="title">{op=modify-printer?{printer_name}の変更:プリンターの追加}</H2>
+
+<FORM METHOD="POST" ACTION="/admin" ENCTYPE="multipart/form-data">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+{printer_name?<INPUT TYPE="HIDDEN" NAME="printer_name" VALUE="{printer_name}">:}
+<INPUT TYPE="HIDDEN" NAME="BAUDRATE" VALUE="{?baudrate}">
+<INPUT TYPE="HIDDEN" NAME="BITS" VALUE="{?bits}">
+<INPUT TYPE="HIDDEN" NAME="PARITY" VALUE="{?parity}">
+<INPUT TYPE="HIDDEN" NAME="FLOW" VALUE="{?flow}">
+
+<TABLE>
+{op=modify-printer?:<TR>
+<TH CLASS="label">名前:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="PRINTER_NAME" VALUE="{printer_name}">{printer_name}</TD>
+</TR>}
+<TR>
+<TH CLASS="label">説明:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="PRINTER_INFO" VALUE="{printer_info}">{printer_info}</TD>
+</TR>
+<TR>
+<TH CLASS="label">場所:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="PRINTER_LOCATION" VALUE="{printer_location}">{printer_location}</TD>
+</TR>
+<TR>
+<TH CLASS="label">接続:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="DEVICE_URI" VALUE="{device_uri}">{device_uri}</TD>
+</TR>
+<TR>
+<TH CLASS="label">共有:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="PRINTER_IS_SHARED" VALUE="{?printer_is_shared}">
+このプリンターを共有{?printer_is_shared=?しない:{?printer_is_shared=0?しない:する}}</TD>
+</TR>
+<TR>
+<TH CLASS="label">メーカー:</TH>
+<TD>
+<SELECT NAME="PPD_MAKE" SIZE="10">
+{[ppd_make]<OPTION VALUE="{ppd_make}" {?current_make={ppd_make}?SELECTED:}>{ppd_make}}
+</SELECT>
+</TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="続ける"></TD>
+</TR>
+<TR>
+<TD></TD>
+<TD> </TD>
+</TR>
+<TR>
+<TH CLASS="label">または PPD ファイルを提供:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="MAX_FILE_SIZE" VALUE="262144"><INPUT
+TYPE="FILE" NAME="PPD_FILE"></TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="{op=add-printer?プリンターの追加:プリンターの変更}"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<H2 CLASS="title">{op=modify-printer?{printer_name}の変更:プリンターの追加}</H2>
+
+<FORM METHOD="POST" ACTION="/admin" ENCTYPE="multipart/form-data">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+{printer_name?<INPUT TYPE="HIDDEN" NAME="printer_name" VALUE="{printer_name}">:}
+<INPUT TYPE="HIDDEN" NAME="BAUDRATE" VALUE="{?baudrate}">
+<INPUT TYPE="HIDDEN" NAME="BITS" VALUE="{?bits}">
+<INPUT TYPE="HIDDEN" NAME="PARITY" VALUE="{?parity}">
+<INPUT TYPE="HIDDEN" NAME="FLOW" VALUE="{?flow}">
+<TABLE>
+{op=modify-printer?:<TR>
+<TH CLASS="label">名前:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="PRINTER_NAME" VALUE="{printer_name}">{printer_name}</TD>
+</TR>}
+<TR>
+<TH CLASS="label">説明:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="PRINTER_INFO" VALUE="{printer_info}">{printer_info}</TD>
+</TR>
+<TR>
+<TH CLASS="label">場所:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="PRINTER_LOCATION" VALUE="{printer_location}">{printer_location}</TD>
+</TR>
+<TR>
+<TH CLASS="label">接続:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="DEVICE_URI" VALUE="{device_uri}">{device_uri}</TD>
+</TR>
+<TR>
+<TH CLASS="label">共有:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="PRINTER_IS_SHARED" VALUE="{?printer_is_shared}">
+このプリンターを共有{?printer_is_shared=?しない:{?printer_is_shared=0?しない:する}}</TD>
+</TR>
+<TR>
+<TH CLASS="label">メーカー:</TH>
+<TD>{PPD_MAKE} <INPUT TYPE="SUBMIT" NAME="SELECT_MAKE" VALUE="他のメーカー/製造元を選択"></TD>
+</TR>
+<TR>
+<TH CLASS="label">モデル:</TH>
+<TD>
+<SELECT NAME="PPD_NAME" SIZE="10">
+{op=add-printer?:<OPTION VALUE="__no_change__" SELECTED>現在のドライバー - {current_make_and_model}</OPTION>:}
+{[ppd_name]<OPTION VALUE="{ppd_name}" {op=modify-printer?:{?current_make_and_model={ppd_make_and_model}?SELECTED:}}>{ppd_make_and_model} ({ppd_natural_language})
+}</SELECT>
+</TD>
+</TR>
+<TR>
+<TH CLASS="label">または PPD ファイルを提供:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="MAX_FILE_SIZE" VALUE="262144"><INPUT
+TYPE="FILE" NAME="PPD_FILE"></TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="{op=add-printer?プリンターの追加:プリンターの変更}"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<H2 CLASS="title">{op=modify-printer?{printer_name}の変更:プリンターの追加}</H2>
+
+<FORM METHOD="POST" ACTION="/admin">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+{printer_name?<INPUT TYPE="HIDDEN" NAME="printer_name" VALUE="{printer_name}">:}
+
+<TABLE>
+<TR>
+<TH CLASS="label">接続:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="DEVICE_URI" VALUE="{device_uri}">{device_uri}</TD>
+</TR>
+<TR>
+<TH CLASS="label">ボーレート:</TH>
+<TD><SELECT NAME="BAUDRATE">
+{[baudrates]<OPTION {?baudrate={baudrates}?SELECTED:}>{baudrates}}
+</SELECT></TD>
+</TR>
+<TR>
+<TH CLASS="label">パリティ:</TH>
+<TD><SELECT NAME="PARITY">
+<OPTION VALUE="none" {?parity=none?SELECTED:}>なし
+<OPTION VALUE="even" {?parity=even?SELECTED:}>偶数
+<OPTION VALUE="odd" {?parity=odd?SELECTED:}>奇数
+</SELECT></TD>
+</TR>
+<TR>
+<TH CLASS="label">データビット:</TH>
+<TD><SELECT NAME="BITS">
+<OPTION {?bits=8?SELECTED:}>8
+<OPTION {?bits=7?SELECTED:}>7
+</SELECT></TD>
+</TR>
+<TR>
+<TH CLASS="label">フロー制御:</TH>
+<TD><SELECT NAME="FLOW">
+<OPTION VALUE="none" {?flow=none?SELECTED:}>なし
+<OPTION VALUE="soft" {?flow=soft?SELECTED:}>XON/XOFF (ソフトウェア)
+<OPTION VALUE="hard" {?flow=hard?SELECTED:}>RTS/CTS (ハードウェア)
+<OPTION VALUE="dtrdsr" {?flow=dtrdsr?SELECTED:}>DTR/DSR (ハードウェア)
+</SELECT></TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="続ける"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<H2 CLASS="title">{op=modify-printer?{printer_name}の変更:プリンターの追加}</H2>
+
+<FORM METHOD="POST" ACTION="/admin">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+{printer_name?<INPUT TYPE="HIDDEN" NAME="printer_name" VALUE="{printer_name}">:}
+<INPUT TYPE="HIDDEN" NAME="CURRENT_MAKE_AND_MODEL" VALUE="{?current_make_and_model}">
+
+<TABLE>
+<TR>
+<TH CLASS="label">接続:</TH>
+<TD><INPUT TYPE="URL" SIZE="60" MAXLENGTH="1023" NAME="DEVICE_URI" VALUE="{current_device_uri?{current_device_uri}:{device_uri}}"></TD>
+</TR>
+<TR>
+<TD></TD>
+<TD>例:
+<PRE>
+ http://hostname:631/ipp/
+ http://hostname:631/ipp/port1
+
+ ipp://hostname/ipp/
+ ipp://hostname/ipp/port1
+
+ lpd://hostname/queue
+
+ socket://hostname
+ socket://hostname:9100
+</PRE>
+
+<P>あなたのプリンターにふさわしい URI については、<A HREF="/help/network.html" TARGET="_blank">"ネットワークプリンター"</A>を参照してください。</P>
+
+</TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="続ける"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<H2 CLASS="title">クラスの追加</H2>
+
+<P>クラス <A HREF="/classes/{printer_name}">{printer_name}</A> は正しく追加されました。
--- /dev/null
+<H2 CLASS="title">クラス {printer_name} の削除</H2>
+
+<P><B>警告:</B> 本当にクラス
+{printer_name} を削除してもよいですか?</P>
+
+<P ALIGN="CENTER"><FORM ACTION="/admin/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="op" VALUE="delete-class"><INPUT TYPE="HIDDEN" NAME="printer_name" VALUE="{printer_name}"><INPUT TYPE="SUBMIT" NAME="confirm" VALUE="クラスの削除"></FORM></P>
--- /dev/null
+<H2 CLASS="title">クラス {printer_name} の削除</H2>
+
+<P>クラス {printer_name} は正しく削除されました。
--- /dev/null
+<H3 CLASS="title">ジョブ</H3>
--- /dev/null
+<H2 CLASS="title">クラス {printer_name} の変更</H2>
+
+<P>クラス <A HREF="/classes/{printer_name}">{printer_name}</A> は正しく変更されました。
--- /dev/null
+<H2 CLASS="title"><A HREF="{printer_uri_supported}">{printer_name}</A>
+({printer_state=3?待機中:{printer_state=4?処理中:停止}},
+{printer_is_accepting_jobs=0?ジョブを拒否中:ジョブを受け付け中},
+{server_is_sharing_printers=0?非:{printer_is_shared=0?非:}} 共有{default_name={printer_name}?, サーバーのデフォルト:})</H2>
+
+<FORM METHOD="POST" ACTION="{printer_uri_supported}" NAME="maintenance">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<SELECT NAME="OP" ONCHANGE="document.maintenance.submit();">
+<OPTION VALUE="">メンテナンス</OPTION>
+<OPTION VALUE="print-test-page">テストページの印刷</OPTION>
+{printer_state=5?<OPTION VALUE="start-class">クラスの再開</OPTION>:<OPTION VALUE="stop-class">クラスの停止</OPTION>}
+{printer_is_accepting_jobs=0?<OPTION VALUE="accept-jobs">ジョブを受け付け</OPTION>:<OPTION VALUE="reject-jobs">ジョブを拒否</OPTION>}
+<OPTION VALUE="move-jobs">すべてのジョブの移動</OPTION>
+<OPTION VALUE="purge-jobs">すべてのジョブをキャンセル</OPTION>
+</SELECT>
+<INPUT TYPE="SUBMIT" VALUE="Go" STYLE="display: none;">
+</FORM>
+
+<FORM METHOD="POST" ACTION="{admin_uri}" NAME="administration">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="printer_name" VALUE="{printer_name}">
+<INPUT TYPE="HIDDEN" NAME="IS_CLASS" VALUE="1">
+<SELECT NAME="OP" ONCHANGE="document.administration.submit();">
+<OPTION VALUE="">管理</OPTION>
+<OPTION VALUE="modify-class">クラスの変更</OPTION>
+<OPTION VALUE="delete-class">クラスの削除</OPTION>
+<OPTION VALUE="set-class-options">デフォルトオプションの設定</OPTION>
+<OPTION VALUE="set-as-default">サーバーのデフォルトの設定</OPTION>
+<OPTION VALUE="set-allowed-users">許可するユーザーの設定</OPTION>
+</SELECT>
+<INPUT TYPE="SUBMIT" VALUE="進む" STYLE="display: none;">
+</FORM>
+
+<TABLE SUMMARY="{printer_name}">
+<TR><TH ALIGN="RIGHT" VALIGN="TOP">説明:</TH><TD>{printer_info}</TD></TR>
+<TR><TH ALIGN="RIGHT" VALIGN="TOP">場所:</TH><TD>{printer_location}</TD></TR>
+<TR><TH ALIGN="RIGHT" VALIGN="TOP">メンバー:</TH><TD>{?member_uris=?なし:{member_uris}}</TD></TR>
+<TR><TH ALIGN="RIGHT" VALIGN="TOP">デフォルト:</TH><TD>job-sheets={job_sheets_default}
+media={media_default?{media_default}:不明}
+{sides_default?sides={sides_default}:}</TD></TR>
+</TABLE>
--- /dev/null
+<P ALIGN="CENTER">{total=0?クラスはありません:{total} 個のクラスのうち {#printer_name} 個を表示中}。</P>
--- /dev/null
+{#printer_name=0?:
+<TABLE CLASS="list" SUMMARY="クラスの一覧">
+<THEAD>
+<TR><TH><A HREF="{THISURL}?QUERY={?QUERY}&WHICH_JOBS={?WHICH_JOBS}&FIRST={FIRST}&ORDER={ORDER=dec?asc:dec}">{ORDER=dec?<SMALL>▲</SMALL> キュー名 <SMALL>▲</SMALL>:<SMALL>▼</SMALL> キュー名 <SMALL>▼</SMALL>}</A></TH><TH>説明</TH><TH>場所</TH><TH>メンバー</TH><TH>状態</TH></TR>
+</THEAD>
+<TBODY>
+{[printer_name]
+<TR><TD><A HREF="{printer_uri_supported}">{printer_name}</A></TD><TD>{printer_info}</TD><TD>{printer_location}</TD><TD>{?member_uris=?なし:{member_uris}}</TD><TD>{printer_state=3?待機中:{printer_state=4?処理中:停止}}{printer_state_message? - "{printer_state_message}":}</TD></TR>
+}
+</TBODY>
+</TABLE></DIV>}
--- /dev/null
+<H2 CLASS="title">{printer_name} の {title}</H2>
+
+<P>{job_state>5?:<IMG SRC="/images/wait.gif" WIDTH="16" HEIGHT="16"
+ALIGN="ABSMIDDLE" ALT="Busy Indicator"> }プリンターコマンドジョブ
+{job_state=3?ペンディング中:{job_state=4?ホールド中:
+{job_state=5?処理中:{job_state=6?停止中:
+{job_state=7?キャンセル:{job_state=8?破棄:完了}}}}}}{job_state=9?:{job_printer_state_message?,
+<EM>"{job_printer_state_message}"</EM>:}}</P>
--- /dev/null
+<SCRIPT TYPE="text/javascript">
+function reset_config()
+{
+ document.cups.CUPSDCONF.value = "{?cupsdconf_default}";
+}
+</SCRIPT>
+
+<H2 CLASS="title">設定ファイルの編集</H2>
+
+<FORM NAME="cups" METHOD="POST" ACTION="/admin/">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="config-server">
+
+<TEXTAREA NAME="CUPSDCONF" COLS="80" ROWS="25">{CUPSDCONF}</TEXTAREA>
+
+<P><INPUT TYPE="SUBMIT" NAME="SAVECHANGES" VALUE="変更の保存">
+<INPUT TYPE="BUTTON" VALUE="デフォルトの設定ファイルを使用"
+onClick="reset_config();"></P>
+
+</FORM>
--- /dev/null
+<H2 CLASS="title">{?title} {?printer_name} のエラー</H2>
+
+<P>エラー:</P>
+
+<BLOCKQUOTE>"{op}" は未知の操作です!</BLOCKQUOTE>
+
--- /dev/null
+<H2 CLASS="title">{?title} {?printer_name} のエラー</H2>
+
+<P>{?message?{message}:エラー}:</P>
+
+<BLOCKQUOTE>{error}</BLOCKQUOTE>
--- /dev/null
+<!DOCTYPE HTML>
+<html>
+ <head>
+ <link rel="stylesheet" href="/cups.css" type="text/css">
+ <link rel="shortcut icon" href="/apple-touch-icon.png" type="image/png">
+ <meta charset="utf-8">
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+ {refresh_page?<meta http-equiv="refresh" content="{refresh_page}">:}
+ <meta http-equiv="X-UA-Compatible" content="IE=9">
+ <meta name="viewport" content="width=device-width">
+ <script type="text/javascript"><!--
+ /* Show an error if cookies are disabled */
+ function check_cookies() {
+ if (!navigator.cookieEnabled) {
+ document.getElementById('body').innerHTML = 'This page uses cookies to prevent common cross-site attacks. Please enable cookies in your browser.';
+ }
+ }
+ --></SCRIPT>
+ <title>{title} - CUPS @CUPS_VERSION@@CUPS_REVISION@</title>
+ </head>
+ <body onload="check_cookies();">
+ <div class="header">
+ <ul>
+ <li><a href="http://www.cups.org/" target="_blank">CUPS.org</a></li>
+ <li><a href="/">ホーム</a></li>
+ <li><a {SECTION=admin?class="active" :}href="/admin">管理</a></li>
+ <li><a {SECTION=classes?class="active" :}href="/classes/">クラス</a></li>
+ <li><a {SECTION=help?class="active" :}href="/help/">ヘルプ</a></li>
+ <li><a {SECTION=jobs?class="active" :}href="/jobs/">ジョブ</a></li>
+ <li><a {SECTION=printers?class="active" :}href="/printers/">プリンター</a></li>
+ </ul>
+ </div>
+ <div class="body">
+ <div class="row">
+ <h1>{title}</h1>
--- /dev/null
+<FORM ACTION="/help/{?HELPFILE}" METHOD="GET">
+{TOPIC?<INPUT TYPE="HIDDEN" NAME="TOPIC" VALUE="{TOPIC}">:}
+
+<P ALIGN="CENTER"><B>
+{HELPTITLE?{HELPTITLE}:{TOPIC?{TOPIC}:すべてのドキュメント}}内を検索:</B> <INPUT
+TYPE="SEARCH" NAME="QUERY" VALUE="{?QUERY}" SIZE="40" PLACEHOLDER=""
+AUTOSAVE="org.cups.help" RESULTS="20">
+<INPUT TYPE="SUBMIT" NAME="SEARCH" VALUE="検索">
+<INPUT TYPE="SUBMIT" NAME="CLEAR" VALUE="クリア"></P>
+
+</FORM>
+
+<!-- Bookmarks -->
+<DIV CLASS="sidebar"><TABLE CLASS="inset" SUMMARY="目次">
+<TR><TD>
+
+<H3 CLASS="title">オンラインヘルプドキュメント</H3>
+
+<P CLASS="l0"><A HREF="/help/{QUERY??QUERY={QUERY}:}">すべてのドキュメント</A></P>
+<HR>
+
+{[BMTEXT]<P CLASS="l{BMINDENT}"><A HREF="{BMLINK}">{BMTEXT}</A></P>
+}
+</TD></TR>
+</TABLE></DIV>
+
+{QUERY?<P>{HELPFILE?{HELPTITLE}:{TOPIC?{TOPIC}:すべてのドキュメント}}の検索結果\:</P>
+{QTEXT?<UL>
+{[QTEXT]<LI><A HREF="{QLINK}">{QTEXT}</A>{QPTEXT? (in <I><A HREF="{QPLINK}">{QPTEXT}</A></I>):}</LI>}
+{QTEXT?</UL>:}
+:<P>マッチするものは見つかりませんでした。</P>}
+<HR NOSHADE>:}
+{HELPTITLE?<FORM ACTION="/help/{?HELPFILE}" METHOD="GET"><INPUT TYPE="HIDDEN" NAME="PRINTABLE" VALUE="YES"><INPUT TYPE="SUBMIT" VALUE="印刷可能なバージョンの表示"></FORM>:
+
+<H1>オンラインヘルプ</H1>
+
+<P>これは、CUPS のオンラインヘルプインターフェイスです。
+オンラインヘルプ情報を表示するには、検索語句を上に入力するか、
+ドキュメントリンクのいずれかをクリックしてください。</P>
+
+<P>あなたが CUPS について初心者なら、 "<a
+href="/help/overview.html">CUPS の概要</a>" ページを読んでください。</P>
+
+<P><A HREF="http://www.cups.org/">CUPS ホームページ</A> でも、
+ユーザーディスカッションフォーラム、FAQ、
+バグ報告や機能リクエストを申請するフォームといった、
+多くのリソースを提供しています。</P>}
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<HTML>
+<HEAD>
+ <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
+ <TITLE>{HELPTITLE}</TITLE>
+ <LINK REL="STYLESHEET" TYPE="text/css" HREF="/cups-printable.css">
+ <LINK REL="SHORTCUT ICON" HREF="/images/cups-icon.png" TYPE="image/png">
+</HEAD>
+<BODY>
--- /dev/null
+<H2 CLASS="title">ジョブ {job_id} のキャンセル</H2>
+
+<P><A HREF="{job_printer_uri}">ジョブ {job_id}</A> はキャンセルされました。
--- /dev/null
+<H2 CLASS="title">ジョブ {job_id} の保留</H2>
+
+<P><A HREF="{job_printer_uri}">ジョブ {job_id}</A> は印刷を保留されました。
--- /dev/null
+<FORM METHOD="POST" ACTION="/{SECTION}/{job_id?:{printer_name}}">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+{job_id?<INPUT TYPE="HIDDEN" NAME="JOB_ID" VALUE="{job_id}">:}
+
+<H2 CLASS="title">{job_id?ジョブ {job_id} の移動:すべてのジョブの移動}</H2>
+
+<TABLE>
+<TR>
+<TH CLASS="label">新しい宛先:</TH>
+<TD>
+<SELECT NAME="JOB_PRINTER_URI" SIZE="10">
+{[job_printer_uri]<OPTION VALUE="{job_printer_uri}">{job_printer_name}}
+</SELECT>
+</TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="{job_id?ジョブの移動:ジョブの移動}"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<H2 CLASS="title">{job_id?ジョブ {job_id} の移動:すべてのジョブの移動}</H2>
+
+<P>{job_id?<A HREF="/jobs/{job_id}">ジョブ {job_id}</A>:すべてのジョブ} は
+<A HREF="/{is_class?classes:printers}/{job_printer_name}">{job_printer_name}</A> に移動しました。</P>
+
--- /dev/null
+<H2 CLASS="title">ジョブ {job_id} の解放</H2>
+
+<P><A HREF="{job_printer_uri}">ジョブ {job_id}</A> は印刷から解放されました。
--- /dev/null
+<H2 CLASS="title">ジョブ {job_id} の再印刷</H2>
+
+<P><A HREF="{job_printer_uri}">ジョブ {job_id}</A> は再印刷されました。
--- /dev/null
+{?which_jobs=?:<FORM ACTION="{?printer_name=?/jobs:{printer_uri_supported}}" METHOD="GET"><INPUT TYPE="SUBMIT" VALUE="アクティブなジョブを表示"></FORM>}
+{?which_jobs=completed?:<FORM ACTION="{?printer_name=?/jobs:{printer_uri_supported}}" METHOD="GET"><INPUT TYPE="HIDDEN" NAME="which_jobs" VALUE="completed"><INPUT TYPE="SUBMIT" VALUE="完了したジョブを表示"></FORM>}
+{?which_jobs=all?:<FORM ACTION="{?printer_name=?/jobs:{printer_uri_supported}}" METHOD="GET"><INPUT TYPE="HIDDEN" NAME="which_jobs" VALUE="all"><INPUT TYPE="SUBMIT" VALUE="すべてのジョブを表示"></FORM>}
+
+<P ALIGN="CENTER">{total=0?ジョブはありません:{total} 個の{?which_jobs=?アクティブな:{which_jobs=all?:完了した}}ジョブのうち {#job_id} 個を表示中}}。</P>
--- /dev/null
+{#job_id=0?:
+<TABLE CLASS="list" SUMMARY="ジョブの一覧">
+<THEAD>
+<TR><TH><A HREF="{THISURL}?QUERY={?QUERY}&WHICH_JOBS={?WHICH_JOBS}&FIRST={FIRST}&ORDER={ORDER=dec?asc:dec}">{ORDER=dec?<SMALL>▲</SMALL> ID <SMALL>▲</SMALL>:<SMALL>▼</SMALL> ID <SMALL>▼</SMALL>}</A></TH><TH>名前</TH><TH>ユーザー</TH><TH>サイズ</TH><TH>ページ</TH><TH>状態</TH><TH>制御</TH></TR>
+</THEAD>
+<TBODY>
+{[job_id]
+<TR VALIGN="TOP">
+<TD><A HREF="{job_printer_uri}">{job_printer_name}</A>-{job_id}{?phone? ({phone}):} </TD>
+<TD>{?job_name=?未知:{job_name}} </TD>
+<TD>{?job_originating_user_name=?隠匿:{job_originating_user_name}} </TD>
+<TD>{job_k_octets}k </TD>
+<TD>{job_media_sheets_completed=0?不明:{?job_media_sheets_completed}} </TD>
+<TD>{job_state=3?{time_at_creation}<BR>から保留中:{job_state=4?{time_at_creation}<BR>から保留中:
+{job_state=5?{time_at_processing}<BR>から処理中:{job_state=6?に停止:
+{job_state=7?{time_at_completed}<BR>にキャンセル:{job_state=8?に中断:{time_at_completed}<BR>に完了}}}}}} {job_printer_state_message?<BR>
+<EM>"{job_printer_state_message}"</EM>:}</TD>
+<TD>
+{job_preserved>0?{job_state>5?
+<FORM ACTION="/jobs/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="restart-job"><INPUT TYPE="HIDDEN" NAME="job_id" VALUE="{job_id}"><INPUT TYPE="HIDDEN" NAME="job_printer_uri" VALUE="{job_printer_uri}"><INPUT TYPE="SUBMIT" VALUE="ジョブの再印刷"></FORM>:}:}
+{job_state=4?
+<FORM ACTION="/jobs/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="release-job"><INPUT TYPE="HIDDEN" NAME="job_id" VALUE="{job_id}"><INPUT TYPE="HIDDEN" NAME="job_printer_uri" VALUE="{job_printer_uri}">
+<INPUT TYPE="SUBMIT" VALUE="ジョブを解放"></FORM>:}
+{job_state=3?
+<FORM ACTION="/jobs/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="hold-job"><INPUT TYPE="HIDDEN" NAME="job_id" VALUE="{job_id}"><INPUT TYPE="HIDDEN" NAME="job_printer_uri" VALUE="{job_printer_uri}">
+<INPUT TYPE="SUBMIT" VALUE="ジョブを保留"></FORM>:}
+{job_state<7?
+<FORM ACTION="/jobs/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="cancel-job"><INPUT TYPE="HIDDEN" NAME="job_id" VALUE="{job_id}"><INPUT TYPE="HIDDEN" NAME="job_printer_uri" VALUE="{job_printer_uri}">
+<INPUT TYPE="SUBMIT" VALUE="ジョブをキャンセル"></FORM>
+<FORM ACTION="/jobs/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="move-job"><INPUT TYPE="HIDDEN" NAME="job_id" VALUE="{job_id}"><INPUT TYPE="SUBMIT" VALUE="ジョブを移動"></FORM>:}
+ </TD>
+</TR>
+}
+</TBODY>
+</TABLE>
+}
--- /dev/null
+<H2 CLASS="title">利用可能なプリンター</H2>
+
+{#device_uri=0?<P>プリンターが見つかりません。</P>
+:<UL>{[device_uri]
+<LI><FORM ACTION="/admin/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="add-printer"><INPUT TYPE="HIDDEN" NAME="TEMPLATE_NAME" VALUE="{template_name}"><INPUT TYPE="HIDDEN" NAME="PRINTER_LOCATION" VALUE="Local Printer"><INPUT TYPE="HIDDEN" NAME="PRINTER_INFO" VALUE="{device_make_and_model}"><INPUT TYPE="HIDDEN" NAME="DEVICE_URI" VALUE="{device_uri}"><INPUT TYPE="SUBMIT" VALUE="このプリンターを追加"></FORM>
+{device_make_and_model} ({device_info})</LI>
+}</UL>}
--- /dev/null
+<H2 CLASS="title">クラス {printer_name} の変更</H2>
+
+<FORM METHOD="POST" ACTION="/admin">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+<INPUT TYPE="HIDDEN" NAME="PRINTER_NAME" VALUE="{printer_name}">
+
+<TABLE>
+<TR>
+<TH CLASS="label">説明:</TH>
+<TD><INPUT TYPE="TEXT" NAME="PRINTER_INFO" VALUE="{?printer_info}" SIZE="40" MAXLENGTH="127"></TD>
+</TR>
+<TR>
+<TH CLASS="label">場所:</TH>
+<TD><INPUT TYPE="TEXT" NAME="PRINTER_LOCATION" VALUE="{?printer_location}" SIZE="40" MAXLENGTH="127"></TD>
+</TR>
+<TR>
+<TH CLASS="label">メンバー:</TH>
+<TD>
+<SELECT NAME="MEMBER_URIS" SIZE="10" MULTIPLE>
+{[member_uris]<OPTION VALUE="{member_uris}" {?member_selected}>{member_names}}
+</SELECT>
+</TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="クラスの変更"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<H2 CLASS="title">{printer_name} の変更</H2>
+
+<FORM METHOD="POST" ACTION="/admin">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+<INPUT TYPE="HIDDEN" NAME="BAUDRATE" VALUE="{?baudrate}">
+<INPUT TYPE="HIDDEN" NAME="BITS" VALUE="{?bits}">
+<INPUT TYPE="HIDDEN" NAME="PARITY" VALUE="{?parity}">
+<INPUT TYPE="HIDDEN" NAME="FLOW" VALUE="{?flow}">
+<INPUT TYPE="HIDDEN" NAME="PRINTER_NAME" VALUE="{printer_name}">
+
+<TABLE>
+<TR>
+<TH CLASS="label">説明:</TH>
+<TD><INPUT TYPE="TEXT" NAME="PRINTER_INFO" VALUE="{?printer_info}" SIZE="40" MAXLENGTH="127"><BR>
+<SMALL>("両面ありHP LaserJet" のように人が読みやすい説明)</SMALL></TD>
+</TR>
+<TR>
+<TH CLASS="label">場所:</TH>
+<TD><INPUT TYPE="TEXT" NAME="PRINTER_LOCATION" VALUE="{?printer_location}" SIZE="40" MAXLENGTH="127"><BR>
+<SMALL>("研究室1" のように人が読みやすい場所)</SMALL></TD>
+</TR>
+<TR>
+<TH CLASS="label">接続:</TH>
+<TD><INPUT TYPE="HIDDEN" NAME="DEVICE_URI" VALUE="{device_uri}">{device_uri}</TD>
+</TR>
+<TR>
+<TH CLASS="label">共有:</TH>
+<TD><INPUT TYPE="CHECKBOX" NAME="PRINTER_IS_SHARED" {PRINTER_IS_SHARED=1?CHECKED:}>
+このプリンターを共有する</TD>
+</TR>
+<TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="続ける"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<H2 CLASS="title">設定変更</H2>
+
+<P>設定に何も変更が行われなかったため、サーバーは再起動されませんでした...</P>
+
--- /dev/null
+<TR>
+<TH {conflicted=1?CLASS="conflict":CLASS="label"} WIDTH="50%"><A NAME="{keyword}">{keytext}</A>:</TH>
+<TD>
+{[choices]<INPUT TYPE="RADIO" NAME="{keyword-1}" {choices={defchoice-1}?CHECKED:} VALUE="{choices}">{text}}
+</TD>
+</TR>
--- /dev/null
+<P><B>エラー:</B> 以下のオプションは競合します:</P>
+
+<UL>
+{[ckeyword]<LI><A HREF="#{ckeyword}">{ckeytext}</A>: {cchoice}</LI>
+}</UL>
+
+<P>競合を解決するために、1 つ以上のオプションを変更してください。</P>
--- /dev/null
+<DIV CLASS="tab" ID="{group_id}">
+
+<H3 ALIGN="CENTER">{group}</H3>
+
+<TABLE WIDTH="100%">
--- /dev/null
+<TR>
+<TH {conflicted=1?CLASS="conflict":CLASS="label"} WIDTH="50%"><A NAME="{keyword}">{keytext}</A>:</TH>
+<TD><SELECT NAME="{keyword}" MULTIPLE SIZE="10">
+{[choices]<OPTION {choices={defchoice-1}?SELECTED:} VALUE="{choices}">{text}}
+</SELECT></TD>
+</TR>
--- /dev/null
+<TR>
+<TH {conflicted=1?CLASS="conflict":CLASS="label"} WIDTH="50%"><A NAME="{keyword}">{keytext}</A>:</TH>
+<TD><SELECT NAME="{keyword}" ID="select-{keyword}" ONCHANGE="update_paramtable('{keyword}')">
+{[choices]<OPTION {choices={defchoice-1}?SELECTED:} VALUE="{choices}">{text}}
+</SELECT>
+{iscustom=1?<TABLE NAME="paramtable" id="{keyword}-params">{[params]
+<TR><TH CLASS="sublabel">{paramtext}:</TH>
+<TD>{params=Units?<SELECT NAME="{keyword-1}.{params}">
+<OPTION VALUE="pt"{paramvalue=pt? SELECTED:}>ポイント</OPTION>
+<OPTION VALUE="mm"{paramvalue=mm? SELECTED:}>ミリメートル</OPTION>
+<OPTION VALUE="cm"{paramvalue=cm? SELECTED:}>センチメートル</OPTION>
+<OPTION VALUE="in"{paramvalue=in? SELECTED:}>インチ</OPTION>
+<OPTION VALUE="ft"{paramvalue=ft? SELECTED:}>フィート</OPTION>
+<OPTION VALUE="m"{paramvalue=m? SELECTED:}>メートル</OPTION>
+</SELECT>:<INPUT TYPE="{inputtype}" NAME="{keyword-1}.{params}" VALUE="{paramvalue}">}</TD></TR>
+}</TABLE>
+</TD>:}
+</TR>
--- /dev/null
+</TABLE>
+
+<P ALIGN="CENTER"><INPUT TYPE="SUBMIT" VALUE="デフォルトオプションの設定"></P>
+
+</DIV>
\ No newline at end of file
--- /dev/null
+<TABLE CLASS="inset" SUMMARY="Paging Bar">
+<TR>
+ <TD WIDTH="50%">{PREV?<FORM ACTION="{THISURL}" METHOD="GET"><INPUT TYPE="HIDDEN" NAME="QUERY" VALUE="{?QUERY}"><INPUT TYPE="HIDDEN" NAME="ORDER" VALUE="{?ORDER}"><INPUT TYPE="HIDDEN" NAME="WHICH_JOBS" VALUE="{?WHICH_JOBS}"><INPUT TYPE="HIDDEN" NAME="FIRST" VALUE="{PREV}"><INPUT TYPE="SUBMIT" VALUE="◀ 前を表示"></FORM>: }</TD>
+ <TD WIDTH="50%" ALIGN="RIGHT">{NEXT?<FORM ACTION="{THISURL}" METHOD="GET"><INPUT TYPE="HIDDEN" NAME="QUERY" VALUE="{?QUERY}"><INPUT TYPE="HIDDEN" NAME="ORDER" VALUE="{?ORDER}"><INPUT TYPE="HIDDEN" NAME="WHICH_JOBS" VALUE="{?WHICH_JOBS}"><INPUT TYPE="HIDDEN" NAME="FIRST" VALUE="{NEXT}"><INPUT TYPE="SUBMIT" VALUE="次を表示 ▶"></FORM>: }</TD>
+</TR>
+</TABLE>
--- /dev/null
+<H2 CLASS="title">{is_class?クラス:プリンター} {printer_name} のジョブの受け付け</H2>
+
+<P>{is_class?クラス:プリンター} <A
+HREF="/{is_class?classes:printers}/{printer_name}">{printer_name}</A>
+はジョブを受け付けるようになりました。</P>
--- /dev/null
+<H2 CLASS="title">プリンターの追加</H2>
+
+<P>プリンター <A HREF="/printers/{printer_name}">{printer_name}</A> は正しく追加されました。
+
--- /dev/null
+<H2 CLASS="title">Cancel Jobs On {is_class?クラス:プリンター} {printer_name} のジョブのキャンセル</H2>
+
+<P>{is_class?クラス:プリンター} <A
+HREF="/{is_class?classes:printers}/{printer_name}">{printer_name}</A>
+のすべてのジョブはキャンセルされました。</P>
--- /dev/null
+<H2 CLASS="title">{printer_name} のデフォルトオプションの設定</H2>
+
+<P>{OP=set-class-options?クラス <A HREF="/classes/{printer_name}">:プリンター <A HREF="/printers/{printer_name}">}{printer_name}</A>
+のデフォルトオプションは正しく設定されました。
--- /dev/null
+<H2 CLASS="title">プリンター {printer_name} の削除</H2>
+
+<P><B>警告:</B> 本当にプリンター {printer_name} を削除してよいですか?</P>
+
+<P ALIGN="CENTER"><FORM ACTION="/admin/" METHOD="POST"><INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}"><INPUT TYPE="HIDDEN" NAME="OP" VALUE="delete-printer"><INPUT TYPE="HIDDEN" NAME="printer_name" VALUE="{printer_name}"><INPUT TYPE="SUBMIT" NAME="confirm" VALUE="プリンターの削除"></FORM></P>
--- /dev/null
+<H2 CLASS="title">{is_class?クラス:プリンター} {printer_name} をデフォルトに設定</H2>
+
+<P>{is_class?クラス:プリンター} <A
+HREF="/{is_class?classes:printers}/{printer_name}">{printer_name}</A>
+をサーバーのデフォルトプリンターに設定しました。</P>
+
+<BLOCKQUOTE><B>注意:</B> <TT>lpoptions</TT> コマンドで設定されたユーザーのデフォルトは、
+このサーバーのデフォルト設定を上書きします。</BLOCKQUOTE>
--- /dev/null
+<H2 CLASS="title">プリンター {printer_name} の削除</H2>
+
+<P>プリンター {printer_name} は正しく削除されました。
--- /dev/null
+<H3 CLASS="title">ジョブ</H3>
--- /dev/null
+<H2 CLASS="title">プリンター {printer_name} の変更</H2>
+
+<P>プリンター <A HREF="/printers/{printer_name}">{printer_name}</A>
+は正しく変更されました。
--- /dev/null
+<H2 CLASS="title">{is_class?クラス:プリンター} {printer_name} のジョブの拒否</H2>
+
+<P>{is_class?クラス:プリンター} <A
+HREF="/{is_class?classes:printers}/{printer_name}">{printer_name}</A>
+はジョブを受け付けなくなりました。</P>
--- /dev/null
+<H2 CLASS="title">{is_class?クラス:プリンター} {printer_name} の再開</H2>
+
+<P>{is_class?クラス:プリンター} <A
+HREF="/{is_class?classes:printers}/{printer_name}">{printer_name}</A>
+は再開しました。</P>
--- /dev/null
+<H2 CLASS="title">{is_class?クラス:プリンター} {printer_name} の停止</H2>
+
+<P>{is_class?クラス:プリンター} <A
+HREF="/{is_class?classes:printers}/{printer_name}">{printer_name}</A>
+は停止しました。</P>
--- /dev/null
+<H2 CLASS="title"><A HREF="{printer_uri_supported}">{printer_name}</A>
+({printer_state=3?待機中:{printer_state=4?処理中:一時停止中}},
+{printer_is_accepting_jobs=0?ジョブを拒否中:ジョブを受け付け中},
+{server_is_sharing_printers=0?非:{printer_is_shared=0?非:}} 共有{default_name={printer_name}?, サーバーのデフォルト:})</H2>
+
+<FORM METHOD="POST" ACTION="{printer_uri_supported}" NAME="maintenance">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<SELECT NAME="OP" ONCHANGE="document.maintenance.submit();">
+<OPTION VALUE="">メンテナンス</OPTION>
+<OPTION VALUE="print-test-page">テストページの印刷</OPTION>
+{printer_commands~.*Clean.*?<OPTION VALUE="clean-print-heads">プリンターヘッドのクリーニング</OPTION>:}
+{printer_commands~.*PrintSelfTestPage.*?<OPTION VALUE="print-self-test-page">自己テストページの印刷</OPTION>:}
+{printer_state=5?<OPTION VALUE="start-printer">プリンターを開始</OPTION>:<OPTION VALUE="stop-printer">プリンターの停止</OPTION>}
+{printer_is_accepting_jobs=0?<OPTION VALUE="accept-jobs">ジョブを受け付け</OPTION>:<OPTION VALUE="reject-jobs">ジョブを拒否</OPTION>}
+<OPTION VALUE="move-jobs">すべてのジョブの移動</OPTION>
+<OPTION VALUE="purge-jobs">すべてのジョブをキャンセル</OPTION>
+</SELECT>
+<NOSCRIPT><INPUT TYPE="SUBMIT" VALUE="進む"></NOSCRIPT>
+</FORM>
+
+<FORM METHOD="POST" ACTION="{admin_uri}" NAME="administration">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="printer_name" VALUE="{printer_name}">
+<SELECT NAME="OP" ONCHANGE="document.administration.submit();">
+<OPTION VALUE="">管理</OPTION>
+<OPTION VALUE="modify-printer">プリンターの変更</OPTION>
+<OPTION VALUE="delete-printer">プリンターの削除</OPTION>
+<OPTION VALUE="set-printer-options">デフォルトオプションの設定</OPTION>
+<OPTION VALUE="set-as-default">サーバーのデフォルトの設定</OPTION>
+<OPTION VALUE="set-allowed-users">許可するユーザーの設定</OPTION>
+</SELECT>
+<NOSCRIPT><INPUT TYPE="SUBMIT" VALUE="進む"></NOSCRIPT>
+</FORM>
+
+<TABLE SUMMARY="{printer_name}">
+<TR><TH ALIGN="RIGHT" VALIGN="TOP">説明:</TH><TD>{printer_info}</TD></TR>
+<TR><TH ALIGN="RIGHT" VALIGN="TOP">場所:</TH><TD>{printer_location}</TD></TR>
+<TR><TH ALIGN="RIGHT" VALIGN="TOP">プリンタードライバー:</TH><TD>{printer_make_and_model} ({color_supported=1?カラー:白黒}{sides_supported?, 両面可:})<BR>
+<TR><TH ALIGN="RIGHT" VALIGN="TOP">接続:</TH><TD>{device_uri}</TD></TR>
+<TR><TH ALIGN="RIGHT" VALIGN="TOP">デフォルト設定:</TH><TD>バナー={job_sheets_default}
+用紙サイズ={media_default?{media_default}:不明}
+{sides_default?両面指定={sides_default}:}</TD></TR>
+</TABLE>
--- /dev/null
+<P ALIGN="CENTER">{total=0?プリンターはありません:{total} 台のプリンターのうち {#printer_name} 台を表示中}。</P>
--- /dev/null
+{#printer_name=0?:
+<TABLE CLASS="list" SUMMARY="プリンターの一覧">
+<THEAD>
+<TR><TH><A HREF="{THISURL}?QUERY={?QUERY}&WHICH_JOBS={?WHICH_JOBS}&FIRST={FIRST}&ORDER={ORDER=dec?asc:dec}">{ORDER=dec?<SMALL>▲</SMALL> キュー名 <SMALL>▲</SMALL>:<SMALL>▼</SMALL> キュー名 <SMALL>▼</SMALL>}</A></TH><TH>説明</TH><TH>場所</TH><TH>メーカーとモデル</TH><TH>状態</TH></TR>
+</THEAD>
+<TBODY>
+{[printer_name]
+<TR><TD><A HREF="{printer_uri_supported}">{printer_name}</A></TD><TD>{printer_info}</TD><TD>{printer_location}</TD><TD>{printer_make_and_model}</TD><TD>{printer_state=3?待機中:{printer_state=4?処理中:停止}}{printer_state_message? - "{printer_state_message}":}</TD></TR>
+}
+</TBODY>
+</TABLE></DIV>}
--- /dev/null
+<H2 CLASS="title">設定の変更</H2>
+
+<P><IMG SRC="data:image/gif;base64,R0lGODlhEAAQAIQAAP///wAAAPDw8IqKiuDg4EZGRnp6egAAAFhYWCQkJKysrL6+vhQUFJycnAQEBDY2NmhoaP///////////////////////////////////////////////////////////yH/C05FVFNDQVBFMi4wAwEAAAAh+QQABQD/ACwAAAAAEAAQAAAFdyAgAgIJIeWoAkRCCMdBkKtIHIngyMKsErPBYbADpkSCwhDmQCBethRB6Vj4kFCkQPG4IlWDgrNRIwnO4UKBXDufzQvDMaoSDBgFb886MiQadgNABAokfCwzBA8LCg0Egl8jAggGAA1kBIA1BAYzlyILczULC2UhACH5BAEFAB8ALAAAAAAQABAAAAV2ICACAmlAZTmOREEIyUEQjLKKxPHADhEvqxlgcGgkGI1DYSVAIAWMx+lwSKkICJ0QsHi9RgKBwnVTiRQQgwF4I4UFDQQEwi6/3YSGWRRmjhEETAJfIgMFCnAKM0KDV4EEEAQLiF18TAYNXDaSe3x6mjidN1s3IQAh+QQBBQAfACwAAAAAEAAQAAAFeCAgAgLZDGU5jgRECEUiCI+yioSDwDJyLKsXoHFQxBSHAoAAFBhqtMJg8DgQBgfrEsJAEAg4YhZIEiwgKtHiMBgtpg3wbUZXGO7kOb1MUKRFMysCChAoggJCIg0GC2aNe4gqQldfL4l/Ag1AXySJgn5LcoE3QXI3IQAh+QQBBQAfACwAAAAAEAAQAAAFdiAgAgLZNGU5joQhCEjxIssqEo8bC9BRjy9Ag7GILQ4QEoE0gBAEBcOpcBA0DoxSK/e8LRIHn+i1cK0IyKdg0VAoljYIg+GgnRrwVS/8IAkICyosBIQpBAMoKy9dImxPhS+GKkFrkX+TigtLlIyKXUF+NjagNiEAIfkEAQUAHwAsAAAAABAAEAAABWwgIAICaRhlOY4EIgjH8R7LKhKHGwsMvb4AAy3WODBIBBKCsYA9TjuhDNDKEVSERezQEL0WrhXucRUQGuik7bFlngzqVW9LMl9XWvLdjFaJtDFqZ1cEZUB0dUgvL3dgP4WJZn4jkomWNpSTIyEAIfkEAQUAHwAsAAAAABAAEAAABX4gIAICuSxlOY6CIgiD8RrEKgqGOwxwUrMlAoSwIzAGpJpgoSDAGifDY5kopBYDlEpAQBwevxfBtRIUGi8xwWkDNBCIwmC9Vq0aiQQDQuK+VgQPDXV9hCJjBwcFYU5pLwwHXQcMKSmNLQcIAExlbH8JBwttaX0ABAcNbWVbKyEAIfkEAQUAHwAsAAAAABAAEAAABXkgIAICSRBlOY7CIghN8zbEKsKoIjdFzZaEgUBHKChMJtRwcWpAWoWnifm6ESAMhO8lQK0EEAV3rFopIBCEcGwDKAqPh4HUrY4ICHH1dSoTFgcHUiZjBhAJB2AHDykpKAwHAwdzf19KkASIPl9cDgcnDkdtNwiMJCshACH5BAEFAB8ALAAAAAAQABAAAAV3ICACAkkQZTmOAiosiyAoxCq+KPxCNVsSMRgBsiClWrLTSWFoIQZHl6pleBh6suxKMIhlvzbAwkBWfFWrBQTxNLq2RG2yhSUkDs2b63AYDAoJXAcFRwADeAkJDX0AQCsEfAQMDAIPBz0rCgcxky0JRWE1AmwpKyEAIfkEAQUAHwAsAAAAABAAEAAABXkgIAICKZzkqJ4nQZxLqZKv4NqNLKK2/Q4Ek4lFXChsg5ypJjs1II3gEDUSRInEGYAw6B6zM4JhrDAtEosVkLUtHA7RHaHAGJQEjsODcEg0FBAFVgkQJQ1pAwcDDw8KcFtSInwJAowCCA6RIwqZAgkPNgVpWndjdyohACH5BAEFAB8ALAAAAAAQABAAAAV5ICACAimc5KieLEuUKvm2xAKLqDCfC2GaO9eL0LABWTiBYmA06W6kHgvCqEJiAIJiu3gcvgUsscHUERm+kaCxyxa+zRPk0SgJEgfIvbAdIAQLCAYlCj4DBw0IBQsMCjIqBAcPAooCBg9pKgsJLwUFOhCZKyQDA3YqIQAh+QQBBQAfACwAAAAAEAAQAAAFdSAgAgIpnOSonmxbqiThCrJKEHFbo8JxDDOZYFFb+A41E4H4OhkOipXwBElYITDAckFEOBgMQ3arkMkUBdxIUGZpEb7kaQBRlASPg0FQQHAbEEMGDSVEAA1QBhAED1E0NgwFAooCDWljaQIQCE5qMHcNhCkjIQAh+QQBBQAfACwAAAAAEAAQAAAFeSAgAgIpnOSoLgxxvqgKLEcCC65KEAByKK8cSpA4DAiHQ/DkKhGKh4ZCtCyZGo6F6iYYPAqFgYy02xkSaLEMV34tELyRYNEsCQyHlvWkGCzsPgMCEAY7Cg04Uk48LAsDhRA8MVQPEF0GAgqYYwSRlycNcWskCkApIyEAOw==" WIDTH="16" HEIGHT="16" ALIGN="ABSMIDDLE"
+ALT="Busy Indicator"> サーバーが再起動する間しばらくお待ちください...</P>
--- /dev/null
+<SCRIPT TYPE="text/javascript"><!--
+function select_printers() {
+ var list = document.export_samba.EXPORT_NAME;
+ var sel = document.export_samba.EXPORT_ALL.checked;
+
+ for (i = 0; i < list.length; i ++) {
+ list.options[i].selected = sel;
+ }
+}
+--></SCRIPT>
+
+<FORM METHOD="POST" ACTION="/admin/" NAME="export_samba">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="export-samba">
+
+<H2 CLASS="title">プリンターを Samba にエクスポート</H2>
+
+{error?<P>プリンターを Samba にエクスポートできません\:</P>
+<BLOCKQUOTE>{error}</BLOCKQUOTE>
+<P>より詳細な情報については <A HREF="/admin/log/error_log"
+TARGET="_blank">error_log</A> ファイルを参照してください。</P>:
+<P>このページは、Windows クライアントがデスクトップ上の
+<VAR>マイネットワーク</VAR> や <VAR>ネットワークの場所</VAR>
+アイコン経由でアクセスできるよう、プリンターの Samba
+へのエクスポートを許可します。<A
+HREF="/help/man-cupsaddsmb.html"
+TARGET="_blank">cupsaddsmb(8)</A> man ページに書かれているように、
+事前に Windows PostScript ドライバーをインストールしておく必要があります。</P>}
+
+<TABLE>
+<TR>
+<TH CLASS="label">プリンター:</TH>
+<TD>
+<SELECT NAME="EXPORT_NAME" SIZE="10" MULTIPLE>
+{[printer_name]<OPTION VALUE="{printer_name}"{export_all? SELECTED:{printer_export? SELECTED:}}>{printer_name}}
+</SELECT><BR>
+<INPUT TYPE="CHECKBOX" NAME="EXPORT_ALL"{export_all? CHECKED:}
+onChange="select_printers()"> すべてのプリンターをエクスポート
+</TD>
+</TR>
+<TR>
+<TH CLASS="label">Samba のユーザー名:</TH>
+<TD><INPUT TYPE="TEXT" NAME="USERNAME" VALUE="{?USERNAME}"> (必須)</TD>
+</TR>
+<TR>
+<TH CLASS="label">Samba のパスワード:</TH>
+<TD><INPUT TYPE="PASSWORD" NAME="PASSWORD" VALUE=""> (必須)</TD>
+</TR>
+<TR>
+<TD></TD>
+<TD><INPUT TYPE="SUBMIT" VALUE="プリンターを Samba にエクスポート"></TD>
+</TR>
+</TABLE>
+
+</FORM>
--- /dev/null
+<P>プリンターは Samba に正しくエクスポートされました。</P>
--- /dev/null
+<FORM ACTION="/{SECTION}/{?SEARCH_DEST}" METHOD="GET">
+{WHICH_JOBS?<INPUT TYPE="HIDDEN" NAME="WHICH_JOBS" VALUE="{WHICH_JOBS}">:}
+{ORDER?<INPUT TYPE="HIDDEN" NAME="ORDER" VALUE="{ORDER}">:}
+
+<P ALIGN="CENTER"><B>
+{SEARCH_DEST?{SEARCH_DEST}:{SECTION=classes?クラス:{SECTION=jobs?ジョブ:プリンター}}} 内を検索:</B>
+<INPUT TYPE="SEARCH" NAME="QUERY" VALUE="{?QUERY}" SIZE="40" PLACEHOLDER="" AUTOSAVE="org.cups.{SECTION}" RESULTS="20"> <INPUT
+TYPE="SUBMIT" VALUE="検索"> <INPUT TYPE="SUBMIT" NAME="CLEAR" VALUE="クリア"></P>
+
+</FORM>
--- /dev/null
+<H2 CLASS="title">{printer_name} のデフォルトオプションの変更</H2>
+
+<FORM METHOD="POST" ACTION="/admin">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="PRINTER_NAME" VALUE="{printer_name}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{op}">
+{HAVE_AUTOCONFIGURE?<INPUT TYPE="SUBMIT" NAME="AUTOCONFIGURE" VALUE="プリンターにデフォルトオプションを問い合わせる">:}
+
+<SCRIPT TYPE="text/javascript"><!--
+function update_paramtable(option)
+{
+ var cb = document.getElementById("select-" + option)
+ var paramstable = document.getElementById(option + "-params");
+ if (cb.value == "Custom")
+ paramstable.style.display = "table";
+ else
+ paramstable.style.display = "none";
+}
+--></SCRIPT>
+
+<H3 CLASS="title">{[group_id]
+<A HREF="#{group_id}">{group}</A> }</H3>
+
+<DIV CLASS="tabs">
--- /dev/null
+</DIV>
+
+<SCRIPT TYPE="text/javascript"><!--
+// Hide custom options parameters for browsers that understand Javascript
+var paramtables = document.getElementsByName("paramtable");
+for (var i = 0; i < paramtables.length; i++)
+{
+ var opt = paramtables[i].id.substr(0, paramtables[i].id.lastIndexOf("-"));
+ var cb = document.getElementById("select-" + opt);
+ if (cb.value != "Custom")
+ paramtables[i].style.display = "none";
+}
+--></SCRIPT>
+</FORM>
--- /dev/null
+<P>{subscription_name} の購読は正しく追加されました。</P>
--- /dev/null
+<P>購読 #{notify_subscription_id} はキャンセルされました。</P>
--- /dev/null
+<H2 CLASS="title">{printer_name} のテストページ印刷</H2>
+
+<P>テストページを送信しました; ジョブ ID は <A HREF="/{SECTION}/{printer_name}">
+{printer_name}-{job_id}</A> です。</P>
--- /dev/null
+ </div>
+ </div>
+ <div class="footer">CUPS and the CUPS logo are trademarks of <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2007-2015 Apple Inc. All rights reserved.</div>
+ </body>
+</html>
--- /dev/null
+<FORM METHOD="POST" ACTION="/admin">
+<INPUT TYPE="HIDDEN" NAME="org.cups.sid" VALUE="{$org.cups.sid}">
+<INPUT TYPE="HIDDEN" NAME="OP" VALUE="{OP}">
+<INPUT TYPE="HIDDEN" NAME="PRINTER_NAME" VALUE="{printer_name}">
+{IS_CLASS?<INPUT TYPE="HIDDEN" NAME="IS_CLASS" VALUE="{IS_CLASS}">:}
+
+<H2 CLASS="title">{printer_name} に許可するユーザー</H2>
+
+<TABLE>
+<TR>
+<TH CLASS="label">ユーザー:</TH>
+<TD>
+<INPUT TYPE='TEXT' NAME='users' SIZE='60' VALUE='{?requesting_user_name_allowed}{?requesting_user_name_denied}'>
+<BR>
+<INPUT TYPE='RADIO' NAME='type' VALUE='requesting-user-name-allowed' {requesting_user_name_allowed?checked:}>これらのユーザーの印刷を許可
+<INPUT TYPE='RADIO' NAME='type' VALUE='requesting-user-name-denied' {requesting_user_name_denied?checked:}>これらのユーザーの印刷を禁止
+</TD>
+</TR>
+<TR>
+<TD></TD>
+<TD>
+<INPUT TYPE="SUBMIT" VALUE="許可するユーザーの設定">
+</TD>
+</TR>
+</TABLE>
+
+</FORM>
</div>
</div>
- <div class="footer">CUPS and the CUPS logo are trademarks of <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2007-2014 Apple Inc. All rights reserved.</div>
+ <div class="footer">CUPS and the CUPS logo are trademarks of <a href="http://www.apple.com">Apple Inc.</a> Copyright © 2007-2015 Apple Inc. All rights reserved.</div>
</body>
</html>
#!/bin/sh
#
-# "$Id: 5.1-lpadmin.sh 11398 2013-11-06 20:11:11Z msweet $"
+# "$Id: 5.1-lpadmin.sh 12394 2014-12-19 15:33:36Z msweet $"
#
# Test the lpadmin command.
#
echo "Add Shared Printer Test"
echo ""
-echo " lpadmin -p Test3 -E -v ipp://localhost:8631/printers/Test2 -m raw"
-$VALGRIND ../systemv/lpadmin -p Test3 -E -v ipp://localhost:8631/printers/Test2 -m raw 2>&1
+echo " lpadmin -p Test3 -E -v ipp://localhost:$IPP_PORT/printers/Test2 -m raw"
+$VALGRIND ../systemv/lpadmin -p Test3 -E -v ipp://localhost:$IPP_PORT/printers/Test2 -m raw 2>&1
if test $? != 0; then
echo " FAILED"
exit 1
echo ""
#
-# End of "$Id: 5.1-lpadmin.sh 11398 2013-11-06 20:11:11Z msweet $".
+# End of "$Id: 5.1-lpadmin.sh 12394 2014-12-19 15:33:36Z msweet $".
#
#!/bin/sh
#
-# "$Id: 5.4-lpstat.sh 11398 2013-11-06 20:11:11Z msweet $"
+# "$Id: 5.4-lpstat.sh 12491 2015-02-06 18:46:09Z msweet $"
#
# Test the lpstat command.
#
echo ""
echo " lpstat -H"
server="`$VALGRIND ../systemv/lpstat -H 2>&1`"
-if test $? != 0 -o "x$server" != xlocalhost:8631; then
+if test $? != 0 -o "x$server" != x$CUPS_SERVER; then
echo " FAILED ($server)"
exit 1
else
echo ""
#
-# End of "$Id: 5.4-lpstat.sh 11398 2013-11-06 20:11:11Z msweet $".
+# End of "$Id: 5.4-lpstat.sh 12491 2015-02-06 18:46:09Z msweet $".
#
#
-# "$Id: Makefile 11129 2013-07-11 20:39:46Z msweet $"
+# "$Id: Makefile 12415 2015-01-21 00:03:08Z msweet $"
#
# IPP test makefile for CUPS.
#
#
clean:
- $(RM) $(TARGETS) $(OBJS)
+ $(RM) $(TARGETS) $(OBJS) ippfind-static
#
#
-# End of "$Id: Makefile 11129 2013-07-11 20:39:46Z msweet $".
+# End of "$Id: Makefile 12415 2015-01-21 00:03:08Z msweet $".
#
/*
- * "$Id: ippfind.c 12139 2014-08-29 17:50:38Z msweet $"
+ * "$Id: ippfind.c 12465 2015-02-01 02:47:23Z msweet $"
*
* Utility to find IPP printers via Bonjour/DNS-SD and optionally run
* commands such as IPP and Bonjour conformance tests. This tool is
* inspired by the UNIX "find" command, thus its name.
*
- * Copyright 2008-2014 by Apple Inc.
+ * Copyright 2008-2015 by Apple Inc.
*
* These coded instructions, statements, and computer programs are the
* property of Apple Inc. and are protected by Federal copyright
service->host = strdup(hostTarget);
service->port = ntohs(port);
+ value = service->host + strlen(service->host) - 1;
+ if (value >= service->host && *value == '.')
+ *value = '\0';
+
/*
* Loop through the TXT key/value pairs and add them to an array...
*/
service->host = strdup(hostTarget);
service->port = port;
+ value = service->host + strlen(service->host) - 1;
+ if (value >= service->host && *value == '.')
+ *value = '\0';
+
/*
* Loop through the TXT key/value pairs and add them to an array...
*/
/*
- * End of "$Id: ippfind.c 12139 2014-08-29 17:50:38Z msweet $".
+ * End of "$Id: ippfind.c 12465 2015-02-01 02:47:23Z msweet $".
*/
/*
- * "$Id: ippserver.c 12215 2014-10-20 18:24:56Z msweet $"
+ * "$Id: ippserver.c 12486 2015-02-04 13:13:21Z msweet $"
*
* Sample IPP Everywhere server for CUPS.
*
- * Copyright 2010-2014 by Apple Inc.
+ * Copyright 2010-2015 by Apple Inc.
*
* These coded instructions, statements, and computer programs are the
* property of Apple Inc. and are protected by Federal copyright
static void delete_job(_ipp_job_t *job);
static void delete_printer(_ipp_printer_t *printer);
#ifdef HAVE_DNSSD
-static void dnssd_callback(DNSServiceRef sdRef,
+static void DNSSD_API dnssd_callback(DNSServiceRef sdRef,
DNSServiceFlags flags,
DNSServiceErrorType errorCode,
const char *name,
* Globals...
*/
-# ifdef HAVE_DNSSD
+#ifdef HAVE_DNSSD
static DNSServiceRef DNSSDMaster = NULL;
-# else /* HAVE_AVAHI */
+#elif defined(HAVE_AVAHI)
static AvahiThreadedPoll *DNSSDMaster = NULL;
static AvahiClient *DNSSDClient = NULL;
-# endif /* HAVE_DNSSD */
+#endif /* HAVE_DNSSD */
static int KeepFiles = 0,
Verbosity = 0;
if (!directory[0])
{
- snprintf(directory, sizeof(directory), "/tmp/ippserver.%d", (int)getpid());
+ const char *tmpdir; /* Temporary directory */
- if (mkdir(directory, 0777) && errno != EEXIST)
+#ifdef WIN32
+ if ((tmpdir = getenv("TEMP")) == NULL)
+ tmpdir = "C:/TEMP";
+#elif defined(__APPLE__)
+ if ((tmpdir = getenv("TMPDIR")) == NULL)
+ tmpdir = "/private/tmp";
+#else
+ if ((tmpdir = getenv("TMPDIR")) == NULL)
+ tmpdir = "/tmp";
+#endif /* WIN32 */
+
+ snprintf(directory, sizeof(directory), "%s/ippserver.%d", tmpdir, (int)getpid());
+
+ if (mkdir(directory, 0755) && errno != EEXIST)
{
fprintf(stderr, "Unable to create spool directory \"%s\": %s\n",
directory, strerror(errno));
* 'dnssd_callback()' - Handle Bonjour registration events.
*/
-static void
+static void DNSSD_API
dnssd_callback(
DNSServiceRef sdRef, /* I - Service reference */
DNSServiceFlags flags, /* I - Status flags */
perror("Unable to start job processing command");
status = -1;
+
+ /*
+ * Free memory used for environment...
+ */
+
+ while (myenvc > 0)
+ free(myenvp[-- myenvc]);
}
else
{
while (myenvc > 0)
free(myenvp[-- myenvc]);
-
/*
* Wait for child to complete...
*/
int duplex, /* I - 1 = duplex, 0 = simplex */
const char *subtype) /* I - Service subtype */
{
+#if defined(HAVE_DNSSD) || defined(HAVE_AVAHI)
_ipp_txt_t ipp_txt; /* Bonjour IPP TXT record */
+#endif /* HAVE_DNSSD || HAVE_AVAHI */
#ifdef HAVE_DNSSD
DNSServiceErrorType error; /* Error from Bonjour */
char make_model[256],/* Make and model together */
/*
- * End of "$Id: ippserver.c 12215 2014-10-20 18:24:56Z msweet $".
+ * End of "$Id: ippserver.c 12486 2015-02-04 13:13:21Z msweet $".
*/
/*
- * "$Id: ipptool.c 12143 2014-09-02 13:37:30Z msweet $"
+ * "$Id: ipptool.c 12465 2015-02-01 02:47:23Z msweet $"
*
* ipptool command for CUPS.
*
- * Copyright 2007-2014 by Apple Inc.
+ * Copyright 2007-2015 by Apple Inc.
* Copyright 1997-2007 by Easy Software Products.
*
* These coded instructions, statements, and computer programs are the
if (httpSeparateURI(HTTP_URI_CODING_ALL, ptr, scheme, sizeof(scheme), userpass, sizeof(userpass), buffer, (int)bufsize, &port, resource, sizeof(resource)) < HTTP_URI_STATUS_OK)
buffer[0] = '\0';
+ ptr = buffer + strlen(buffer) - 1;
+ if (ptr >= buffer && *ptr == '.')
+ *ptr = '\0'; /* Drop trailing "." */
+
return (buffer);
}
else if (flags & _CUPS_WITH_RESOURCE)
/*
- * End of "$Id: ipptool.c 12143 2014-09-02 13:37:30Z msweet $".
+ * End of "$Id: ipptool.c 12465 2015-02-01 02:47:23Z msweet $".
*/
#!/bin/sh
#
-# "$Id: run-stp-tests.sh 12248 2014-11-12 16:32:57Z msweet $"
+# "$Id: run-stp-tests.sh 12398 2014-12-19 16:56:15Z msweet $"
#
# Perform the complete set of IPP compliance tests specified in the
# CUPS Software Test Plan.
fi
fi
-port=8631
+port="${CUPS_TESTPORT:=8631}"
cwd=`pwd`
root=`dirname $cwd`
CUPS_TESTROOT="$root"; export CUPS_TESTROOT
-if test -d /private/tmp; then
- BASE=/private/tmp/cups-$user
-else
- BASE=/tmp/cups-$user
+BASE="${CUPS_TESTBASE:=}"
+if test -z "$BASE"; then
+ if test -d /private/tmp; then
+ BASE=/private/tmp/cups-$user
+ else
+ BASE=/tmp/cups-$user
+ fi
fi
export BASE
ln -s $root/filter/rastertohp $BASE/bin/filter
ln -s $root/filter/rastertolabel $BASE/bin/filter
ln -s $root/filter/rastertopwg $BASE/bin/filter
+cat >$BASE/share/banners/standard <<EOF
+ ==== Cover Page ====
+
+
+ Job: {?printer-name}-{?job-id}
+ Owner: {?job-originating-user-name}
+ Name: {?job-name}
+ Pages: {?job-impressions}
+
+
+ ==== Cover Page ====
+EOF
+cat >$BASE/share/banners/classified <<EOF
+ ==== Classified - Do Not Disclose ====
+
+
+ Job: {?printer-name}-{?job-id}
+ Owner: {?job-originating-user-name}
+ Name: {?job-name}
+ Pages: {?job-impressions}
-ln -s $root/data/classified $BASE/share/banners
-ln -s $root/data/confidential $BASE/share/banners
-ln -s $root/data/secret $BASE/share/banners
-ln -s $root/data/standard $BASE/share/banners
-ln -s $root/data/topsecret $BASE/share/banners
-ln -s $root/data/unclassified $BASE/share/banners
+
+ ==== Classified - Do Not Disclose ====
+EOF
ln -s $root/data $BASE/share
ln -s $root/ppdc/sample.drv $BASE/share/drv
ln -s $root/conf/mime.types $BASE/share/mime
dst="$2"
format="$3"
- for dir in /usr/libexec/cups/filter /usr/lib/cups/filter; do
+ for dir in /usr/local/libexec/cups/filter /usr/libexec/cups/filter /usr/lib/cups/filter; do
if test -x "$dir/$src"; then
ln -s "$dir/$src" "$BASE/bin/filter/$dst"
return
pdf)
cat >"$BASE/bin/filter/$dst" <<EOF
#!/bin/sh
+trap "" TERM
+trap "" PIPE
+gziptoany "$1" "$2" "$3" "$4" "$5" \$6 \>/dev/null
case "\$5" in
*media=a4* | *media=iso_a4* | *PageSize=A4*)
- cat "$root/test/onepage-a4.pdf"
+ gziptoany "$1" "$2" "$3" "$4" "$5" "$root/test/onepage-a4.pdf"
;;
*)
- cat "$root/test/onepage-letter.pdf"
+ gziptoany "$1" "$2" "$3" "$4" "$5" "$root/test/onepage-letter.pdf"
;;
esac
EOF
ps)
cat >"$BASE/bin/filter/$dst" <<EOF
#!/bin/sh
+trap "" TERM
+trap "" PIPE
+gziptoany "$1" "$2" "$3" "$4" "$5" \$6 \>/dev/null
case "\$5" in
*media=a4* | *media=iso_a4* | *PageSize=A4*)
- cat "$root/test/onepage-a4.ps"
+ gziptoany "$1" "$2" "$3" "$4" "$5" "$root/test/onepage-a4.ps"
;;
*)
- cat "$root/test/onepage-letter.ps"
+ gziptoany "$1" "$2" "$3" "$4" "$5" "$root/test/onepage-letter.ps"
;;
esac
EOF
raster)
cat >"$BASE/bin/filter/$dst" <<EOF
#!/bin/sh
+trap "" TERM
+trap "" PIPE
+gziptoany "$1" "$2" "$3" "$4" "$5" \$6 \>/dev/null
case "\$5" in
*media=a4* | *media=iso_a4* | *PageSize=A4*)
- gunzip -c "$root/test/onepage-a4-300-black-1.pwg.gz"
+ gziptoany "$1" "$2" "$3" "$4" "$5" "$root/test/onepage-a4-300-black-1.pwg.gz"
;;
*)
- gunzip -c "$root/test/onepage-letter-300-black-1.pwg.gz"
+ gziptoany "$1" "$2" "$3" "$4" "$5" "$root/test/onepage-letter-300-black-1.pwg.gz"
;;
esac
EOF
ln -s $root/test/test.convs $BASE/share/mime
if test `uname` = Darwin; then
- instfilter cgbannertopdf bannertopdf pdf
instfilter cgimagetopdf imagetopdf pdf
instfilter cgpdftopdf pdftopdf passthru
instfilter cgpdftops pdftops ps
instfilter cgpdftoraster pdftoraster raster
instfilter cgtexttopdf texttopdf pdf
instfilter pstocupsraster pstoraster raster
- instfilter pstopdffilter pstopdf pdf
else
- instfilter bannertopdf bannertopdf pdf
- instfilter bannertops bannertops ps
instfilter imagetopdf imagetopdf pdf
instfilter pdftopdf pdftopdf passthru
instfilter pdftops pdftops ps
LogLevel $loglevel
LogTimeFormat usecs
PreserveJobHistory Yes
-PreserveJobFiles No
+PreserveJobFiles 5m
<Policy default>
<Limit All>
Order Allow,Deny
export SHLIB_PATH
CUPS_DISABLE_APPLE_DEFAULT=yes; export CUPS_DISABLE_APPLE_DEFAULT
-CUPS_SERVER=localhost:8631; export CUPS_SERVER
+CUPS_SERVER=localhost:$port; export CUPS_SERVER
CUPS_SERVERROOT=$BASE; export CUPS_SERVERROOT
CUPS_STATEDIR=$BASE; export CUPS_STATEDIR
CUPS_DATADIR=$BASE/share; export CUPS_DATADIR
if test "x$testtype" = x0; then
# Not running tests...
- echo "Scheduler is PID $cupsd and is listening on port 8631."
+ echo "Scheduler is PID $cupsd and is listening on port $port."
echo ""
# Create a helper script to run programs with...
#
date=`date "+%Y-%m-%d"`
-strfile=$BASE/cups-str-2.0-$date-$user.html
+
+if test -d $root/.svn; then
+ rev=`svn info . | grep Revision: | awk '{print $2}'`
+ strfile=$BASE/cups-str-2.0-r$rev-$user.html
+else
+ strfile=$BASE/cups-str-2.0-$date-$user.html
+fi
rm -f $strfile
cat str-header.html >$strfile
fi
done
-description="`lpstat -l -p Test1 | grep Description | sed -e '1,$s/^[^:]*: //g'`"
+description="`../systemv/lpstat -l -p Test1 | grep Description | sed -e '1,$s/^[^:]*: //g'`"
if test "x$description" != "xTest Printer 1"; then
echo "Failed, printer-info for Test1 is '$description', expected 'Test Printer 1'." >>$strfile
echo "FAIL (got '$description', expected 'Test Printer 1')"
if test $fail != 0; then
echo "$fail tests failed."
- cp $BASE/log/error_log error_log-$date-$user
+
+ if test -d $root/.svn; then
+ cp $BASE/log/error_log error_log-r$rev-$user
+ else
+ cp $BASE/log/error_log error_log-$date-$user
+ fi
+
cp $strfile .
else
echo "All tests were successful."
fi
#
-# End of "$Id: run-stp-tests.sh 12248 2014-11-12 16:32:57Z msweet $"
+# End of "$Id: run-stp-tests.sh 12398 2014-12-19 16:56:15Z msweet $"
#
application/pdf application/postscript 100 pdftops
application/pdf application/vnd.cups-raster 100 pdftoraster
application/postscript application/vnd.cups-raster 100 pstoraster
-application/vnd.cups-banner application/pdf 100 bannertopdf
image/jpeg application/pdf 100 imagetopdf
text/plain application/pdf 100 texttopdf
/*
- * "$Id: config.h 12254 2014-11-14 17:24:18Z msweet $"
+ * "$Id: config.h 12280 2014-12-02 01:49:48Z msweet $"
*
* Configuration file for CUPS on Windows.
*
/* #undef HAVE_GNUTLS_TRANSPORT_SET_PULL_TIMEOUT_FUNCTION */
+/*
+ * Do we have the gnutls_priority_set_direct function?
+ */
+
+/* #undef HAVE_GNUTLS_PRIORITY_SET_DIRECT */
+
+
/*
* What Security framework headers do we have?
*/
#endif /* !_CUPS_CONFIG_H_ */
/*
- * End of "$Id: config.h 12254 2014-11-14 17:24:18Z msweet $".
+ * End of "$Id: config.h 12280 2014-12-02 01:49:48Z msweet $".
*/
72F75A6A1336FA8A004BB496 /* interpret.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = interpret.c; path = ../filter/interpret.c; sourceTree = "<group>"; };
72F75A6B1336FA8A004BB496 /* raster.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = raster.c; path = ../filter/raster.c; sourceTree = "<group>"; };
72F7F1D719D1C0CC00870B09 /* org.cups.usb-quirks */ = {isa = PBXFileReference; lastKnownFileType = text; name = "org.cups.usb-quirks"; path = "../backend/org.cups.usb-quirks"; sourceTree = "<group>"; };
+ 72FC29CF1A37A1CA00BDF935 /* usb-libusb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "usb-libusb.c"; path = "../backend/usb-libusb.c"; sourceTree = "<group>"; };
+ 72FC29D01A37A1CA00BDF935 /* usb-unix.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "usb-unix.c"; path = "../backend/usb-unix.c"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
724378F71333E3CE009631B9 /* backends */ = {
isa = PBXGroup;
children = (
- 72F7F1D719D1C0CC00870B09 /* org.cups.usb-quirks */,
724379091333E4E3009631B9 /* backend-private.h */,
724379501333FEBB009631B9 /* dnssd.c */,
724379CA1334000E009631B9 /* ieee1284.c */,
724379281333E952009631B9 /* lpd.c */,
7243790B1333E4E3009631B9 /* network.c */,
724379121333E516009631B9 /* runloop.c */,
- 720DD6D21358FDDE0064AA82 /* snmp.c */,
7243790C1333E4E3009631B9 /* snmp-supplies.c */,
+ 720DD6D21358FDDE0064AA82 /* snmp.c */,
7243793C1333FD19009631B9 /* socket.c */,
724379C51333FFC7009631B9 /* usb.c */,
724379C41333FFC7009631B9 /* usb-darwin.c */,
+ 72FC29CF1A37A1CA00BDF935 /* usb-libusb.c */,
+ 72FC29D01A37A1CA00BDF935 /* usb-unix.c */,
+ 72F7F1D719D1C0CC00870B09 /* org.cups.usb-quirks */,
);
name = backends;
sourceTree = "<group>";
/*
- * "$Id: config.h 12254 2014-11-14 17:24:18Z msweet $"
+ * "$Id: config.h 12280 2014-12-02 01:49:48Z msweet $"
*
* Configuration file for CUPS and Xcode.
*
#define HAVE_SSL 1
+/*
+ * Do we have the gnutls_transport_set_pull_timeout_function function?
+ */
+
+/* #undef HAVE_GNUTLS_TRANSPORT_SET_PULL_TIMEOUT_FUNCTION */
+
+
+/*
+ * Do we have the gnutls_priority_set_direct function?
+ */
+
+/* #undef HAVE_GNUTLS_PRIORITY_SET_DIRECT */
+
+
/*
* What Security framework headers do we have?
*/
#endif /* !_CUPS_CONFIG_H_ */
/*
- * End of "$Id: config.h 12254 2014-11-14 17:24:18Z msweet $".
+ * End of "$Id: config.h 12280 2014-12-02 01:49:48Z msweet $".
*/