From 82bf22839737d582be96704bdd0b7e4a0005a058 Mon Sep 17 00:00:00 2001 From: msweet Date: Thu, 8 May 2014 22:57:57 +0000 Subject: [PATCH] Fix bug in cupsGetResponse. git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@11860 a1ca3aef-8c08-0410-bb20-df032aa958be --- cups/request.c | 20 ++- doc/help/man-client.conf.html | 74 ++++----- doc/help/man-cups-files.conf.html | 227 ++++++++++++-------------- doc/help/man-cupsd.conf.html | 4 +- doc/help/man-cupsd.html | 89 ++--------- locale/cups.pot | 254 +++++++++++++++--------------- locale/cups.strings | 2 + locale/cups_ca.po | 8 +- locale/cups_cs.po | 8 +- locale/cups_es.po | 8 +- locale/cups_fr.po | 8 +- locale/cups_it.po | 8 +- locale/cups_ja.po | 8 +- locale/cups_ru.po | 8 +- 14 files changed, 348 insertions(+), 378 deletions(-) diff --git a/cups/request.c b/cups/request.c index caf01eedc..3ee1da04c 100644 --- a/cups/request.c +++ b/cups/request.c @@ -334,17 +334,31 @@ cupsGetResponse(http_t *http, /* I - Connection to server or @code CUPS_HTTP DEBUG_printf(("cupsGetResponse(http=%p, resource=\"%s\")", http, resource)); + DEBUG_printf(("1cupsGetResponse: http->state=%d", http ? http->state : HTTP_STATE_ERROR)); /* * Connect to the default server as needed... */ if (!http) - http = _cupsConnect(); + { + _cups_globals_t *cg = _cupsGlobals(); + /* Pointer to library globals */ - if (!http || (http->state != HTTP_STATE_POST_RECV && - http->state != HTTP_STATE_POST_SEND)) + if ((http = cg->http) == NULL) + { + _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("No active connection."), 1); + DEBUG_puts("1cupsGetResponse: No active connection - returning NULL."); + return (NULL); + } + } + + if (http->state != HTTP_STATE_POST_RECV && http->state != HTTP_STATE_POST_SEND) + { + _cupsSetError(IPP_STATUS_ERROR_INTERNAL, _("No request sent."), 1); + DEBUG_puts("1cupsGetResponse: Not in POST state - returning NULL."); return (NULL); + } /* * Check for an unfinished chunked request... diff --git a/doc/help/man-client.conf.html b/doc/help/man-client.conf.html index a25435927..ec11b96f5 100644 --- a/doc/help/man-client.conf.html +++ b/doc/help/man-client.conf.html @@ -8,50 +8,46 @@

client.conf(5)

Name

-client.conf - client configuration file for cups (deprecated) +client.conf - client configuration file for cups

Description

-The client.conf file configures the CUPS client and is normally located in the /etc/cups and/or ~/.cups directories. -Each line in the file can be a configuration directive, a blank line, or a comment. Comment lines start with the # character. -

Note: Starting with OS X 10.7, this file is only used by command-line and X11 applications. -The ServerName directive is not supported on OS X at all. -

Directives

-The following directives are understood by the client. Consult the online help for detailed descriptions: +The client.conf file configures the CUPS client and is +normally located in the /etc/cups or ~/.cups +directory. Each line in the file can be a configuration +directive, a blank line, or a comment. Comment lines start with +the # character. +

Directives

+The following directives are understood by the client. Consult the +on-line help for detailed descriptions:
-
AllowAnyRoot Yes -
AllowAnyRoot No -
Specifies whether to allow TLS with certificates that have not been signed by a trusted Certificate Authority. -The default is "Yes". -
AllowExpiredCerts Yes -
AllowExpiredCerts No -
Specifies whether to allow TLS with expired certificates. -The default is "Yes". -
Encryption IfRequested -
Encryption Never -
Encryption Required -
Specifies the level of encryption that should be used. -
GSSServiceName name -
Specifies the Kerberos service name that is used for authentication, typically "host", "http", or "ipp". -CUPS adds the remote hostname ("name@server.example.com") for you. The default name is "http". -
ServerName hostname-or-ip-address[:port] -
ServerName /domain/socket -
Specifies the address and optionally the port to use when connecting to the server. -Note: This directive it not supported on OS X 10.7 or later. -
ServerName hostname-or-ip-address[:port]/version=1.1 -
Specifies the address and optionally the port to use when connecting to a server running CUPS 1.3.12 and earlier. -
User name -
Specifies the default user name to use for requests. -
ValidateCerts Yes -
ValidateCerts No -
Specifies whether to only allow TLS with certificates whose common name matches the hostname. -The default is "No". +
Encryption IfRequested +
Encryption Never +
Encryption Required +

+Specifies the level of encryption that is required for a particular +location. +
GSSServiceName name +
Specifies the Kerberos service name that is used for authentication, typically +"host", "http", or "ipp". CUPS adds the remote hostname +("name@server.example.com") for you. The default name is +"http". +
ServerName hostname-or-ip-address[:port] +
ServerName /domain/socket +

+Specifies the address and optionally the port to use when connecting to the +server. Note: Not supported on OS X 10.7 or later. +
ServerName hostname-or-ip-address[:port]/version=1.1 +

+Specifies the address and optionally the port to use when connecting to a +server running CUPS 1.3.12 and earlier. Note: Not supported on OS X 10.7 or +later. +
User name +

+Specifies the default user name to use for requests.
-

Notes

-The client.conf file is deprecated and will no longer be supported in a future version of CUPS.

See Also

-cups(1), -CUPS Online Help (http://localhost:631/help) +http://localhost:631/help

Copyright

-Copyright © 2007-2014 by Apple Inc. +Copyright 2007-2013 by Apple Inc. diff --git a/doc/help/man-cups-files.conf.html b/doc/help/man-cups-files.conf.html index b4778bfdb..f23cbdbd0 100644 --- a/doc/help/man-cups-files.conf.html +++ b/doc/help/man-cups-files.conf.html @@ -10,138 +10,109 @@

Name

cups-files.conf - file and directory configuration file for cups

Description

-The cups-files.conf file configures the files and directories used by the CUPS scheduler, -cupsd(8). -It is normally located in the /etc/cups directory. -

Each line in the file can be a configuration directive, a blank line, or a comment. -Comment lines start with the # character. -

Directives

-The following directives are understood by -cupsd(8): +The cups-files.conf file configures the files and directories used by the +CUPS scheduler, cupsd(8). It is normally located in the +/etc/cups directory. +

Each line in the file can be a configuration directive, a blank line, +or a comment. Comment lines start with the # character. +

Directives

+The following directives are understood by cupsd(8). Consult the +on-line help for detailed descriptions:
-
AccessLog filename -
AccessLog [ filename ] -
AccessLog syslog -
Defines the access log filename. -The value "syslog" causes log entries to be sent to the system log daemon. -Specifying a blank filename disables access log generation. -The server name may be included in filenames using the string "%s", for example: -
-
-    AccessLog /var/log/cups/%s-access_log
-
-
-
ConfigFilePerm mode -
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. -Note: The permissions for the printers.conf 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 path -
Specifies the directory where data files can be found. The default is usually /usr/share/cups. -
DocumentRoot directory -
Specifies the root directory for the CUPS web interface content. The default is usually /usr/share/doc/cups. -
ErrorLog [ filename ] -
ErrorLog syslog -
Defines the error log filename. -The value "syslog" causes log entries to be sent to the system log daemon. -Specifying a blank filename disables error log generation. -The server name may be included in filenames using the string "%s", for example: -
-
-    ErrorLog /var/log/cups/%s-error_log
-
-
-
FatalErrors none -
FatalErrors all -kind [ ... -kind ] -
FatalErrors kind [ ... kind ] -
Specifies which errors are fatal, causing the scheduler to exit. -The default setting is "config". -The kind strings are: -
-
-
none -
No errors are fatal. -
all -
All of the errors below are fatal. -
browse -
Browsing initialization errors are fatal, for example failed connections to the DNS-SD daemon. -
config -
Configuration file syntax errors are fatal. -
listen -
Listen or Port errors are fatal, except for IPv6 failures on the loopback or "any" addresses. -
log -
Log file creation or write errors are fatal. -
permissions -
Bad startup file permissions are fatal, for example shared TLS certificate and key files with world-read permissions. -
-
FileDevice Yes -
FileDevice No -
Specifies whether the file pseudo-device can be used for new printer queues. -The URI "file:///dev/null" is always allowed. -
FontPath directory[:...:directory] -
Specifies the search path for fonts. -This directive is deprecated and will no longer be supported in a future release of CUPS. -
Group group-name-or-number -
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 mode -
Specifies the permissions of all log files that the scheduler writes. The default is 0644. -
PageLog [ filename ] -
PageLog syslog -
Defines the page log filename. -The value "syslog" causes log entries to be sent to the system log daemon. -Specifying a blank filename disables page log generation. -The server name may be included in filenames using the string "%s", for example: -
-
-    PageLog /var/log/cups/%s-page_log
-
-
-
Printcap [ filename ] -
Defines the printcap filename that the scheduler automatically updates with the current list of available printers, which is sometimes used by legacy applications. -Specifying a blank filename disables printcap generation. -This directive is deprecated and will no longer be supported in a future release of CUPS. -
RemoteRoot username -
Specifies the username that is associated with unauthenticated accesses by clients claiming to be the root user. -
RequestRoot directory -
Specifies the directory that contains print jobs and other HTTP request data. -
Sandboxing off -
Sandboxing relaxed -
Sandboxing strict -
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 on OS X. -
ServerBin directory -
Specifies the directory containing the backends, CGI programs, filters, helper programs, notifiers, and port monitors. -
ServerKeychain path -
Specifies the location of TLS certificates and private keys. -
ServerRoot directory -
Specifies the directory containing the server configuration files. -
SyncOnClose Yes -
SyncOnClose No -
Specifies whether the scheduler calls -fsync(2) -after writing configuration or state files. The default is No. -
SystemGroup group-name [ ... group-name ] -
Specifies the group(s) to use for @SYSTEM group authentication. -
TempDir directory -
Specifies the directory where temporary files are stored. -
User username -
Specifies the user name or ID that is used when running external programs. +
AccessLog filename +
AccessLog syslog +

+Defines the access log filename. +
ConfigFilePerm mode +

+Specifies the permissions for all configuration files that the scheduler +writes. +
DataDir path +

+Specified the directory where data files can be found. +
DocumentRoot directory +

+Specifies the root directory for the internal web server documents. +
ErrorLog filename +
ErrorLog syslog +

+Specifies the error log filename. +
FatalErrors none +
FatalErrors all -kind [... -kind] +
FatalErrors kind [... kind] +

+Specifies which errors are fatal, causing the scheduler to exit. "Kind" is +"browse", "config", "listen", "log", or "permissions". +
FileDevice Yes +
FileDevice No +

+Specifies whether the file pseudo-device can be used for new +printer queues. +
FontPath directory[:directory:...] +

+Specifies the search path for fonts. +
Group group-name-or-number +

+Specifies the group name or ID that will be used when executing +external programs. +
LogFilePerm mode +

+Specifies the permissions for all log files that the scheduler writes. +
PageLog filename +
PageLog syslog +

+Specifies the page log filename. +
Printcap +
Printcap filename +

+Specifies the filename for a printcap file that is updated +automatically with a list of available printers (needed for +legacy applications); specifying Printcap with no filename +disables printcap generation. +
RemoteRoot user-name +

+Specifies the username that is associated with unauthenticated root +accesses. +
RequestRoot directory +

+Specifies the directory to store print jobs and other HTTP request +data. +
Sandboxing off +
Sandboxing relaxed +
Sandboxing strict +
Specifies the level of security sandboxing that is applied to print filters, backends, and other child processes of the scheduler. The default is "strict". (OS X only) +
ServerBin directory +

+Specifies the directory where backends, CGIs, daemons, and filters may +be found. +
ServerKeychain path +

+Specifies the location of TLS certificates and private keys. +
ServerRoot directory +

+Specifies the directory where the server configuration files can be found. +
SyncOnClose Yes +
SyncOnClose No +
Specifies whether the scheduler calls fsync(2) after writing configuration +or state files. The default is No. +
SystemGroup group-name [group-name ...] +

+Specifies the group(s) to use for System class authentication. +
TempDir directory +

+Specifies the directory where temporary files are stored. +
User user-name +

+Specifies the user name or ID that is used when running external programs.

See Also

-classes.conf(5), -cups(1), -cupsd(8), -cupsd.conf(5), -mime.convs(5), -mime.types(5), -printers.conf(5), -subscriptions.conf(5), -CUPS Online Help (http://localhost:631/help) +classes.conf(5), cupsd(8), cupsd.conf(5), mime.convs(5), +mime.types(5), printers.conf(5), +subscriptions.conf(5), +
+http://localhost:631/help

Copyright

-Copyright © 2007-2014 by Apple Inc. +Copyright 2007-2014 by Apple Inc. diff --git a/doc/help/man-cupsd.conf.html b/doc/help/man-cupsd.conf.html index c6c71fe62..bdc544a12 100644 --- a/doc/help/man-cupsd.conf.html +++ b/doc/help/man-cupsd.conf.html @@ -14,9 +14,7 @@ The cupsd.conf file configures the CUPS scheduler, cupsd(8). -It is normally located in the -/etc/cups -directory. Note: File, directory, and user configuration directives that used to be allowed in the cupsd.conf file are now stored in the cups-files.conf(5) instead in order to prevent certain types of privilege escalation attacks. +It is normally located in the /etc/cups directory. Note: File, directory, and user configuration directives that used to be allowed in the cupsd.conf file are now stored in the cups-files.conf(5) instead in order to prevent certain types of privilege escalation attacks.

Each line in the file can be a configuration directive, a blank line, or a comment. Comment lines start with the # character. The configuration directives are intentionally similar to those used by the popular Apache web server software and are described below.

Top-level Directives

The following directives are understood by diff --git a/doc/help/man-cupsd.html b/doc/help/man-cupsd.html index 1050d3a52..7f8242408 100644 --- a/doc/help/man-cupsd.html +++ b/doc/help/man-cupsd.html @@ -11,20 +11,9 @@ cupsd - cups scheduler

Synopsis

cupsd -[ --c +[ -c config-file -] [ --f -] [ --F -] [ --h -] [ --l -] [ --t -] +] [ -f ] [ -F ] [ -h ] [ -l ] [ -t ]

Description

cupsd is the scheduler for CUPS. It implements a printing system based upon the Internet Printing Protocol, version 2.1. If no options are specified on the command-line then the default configuration file @@ -32,83 +21,33 @@ is the scheduler for CUPS. It implements a printing system based upon the Intern will be used.

Options

-
-c config-file +
-c config-file
Uses the named configuration file. -
-f +
-f
Run cupsd in the foreground; the default is to run in the background as a "daemon". -
-F +
-F
Run cupsd in the foreground but detach the process from the controlling terminal and current directory. This is useful for running -cupsd -from -init(8). -
-h +cupsdfrominit(8). +
-h
Shows the program usage. -
-l +
-l
This option is passed to cupsd when it is run from -launchd(8) -or -systemd(8). -
-t +launchd(8). +
-t
Test the configuration file for syntax errors.
-

Files

-
-/etc/cups/classes.conf
-/etc/cups/cups-files.conf
-/etc/cups/cupsd.conf
-/usr/share/cups/mime/mime.convs
-/usr/share/cups/mime/mime.types
-/etc/cups/printers.conf
-
-

Conforming To

-cupsd -implements all of the required IPP/2.1 attributes and operations. It also implements several CUPS-specific administrative operations. -

Examples

-Run -cupsd -in the background with the default configuration file: -
-
-    cupsd
-
-
-Test a configuration file called -test.conf: -
-
-    cupsd -t -c test.conf
-
-
-Run +

Compatibility

cupsd -in the foreground with a test configuration file called -test.conf: -
-
-    cupsd -f -c test.conf
-
-
+implements all of the required IPP/2.1 attributes and operations. It also implements several CUPS-specific administration operations.

See Also

-backend(7), -classes.conf(5), -cups(1), -cups-deviced(8), -cups-driverd(8), -cups-lpd(8), -cupsd.conf(5), -filter(7), -launchd(8), -mime.convs(5), -mime.types(5), -printers.conf(5), -systemd(8), -CUPS Online Help (http://localhost:631/help) +backend(7),classes.conf(5),cups-deviced(8),cups-driverd(8),cups-lpd(8),cupsd.conf(5),filter(7),launchd(8),mime.convs(5),mime.types(5),printers.conf(5), +http://localhost:631/help

Copyright

Copyright © 2007-2014 by Apple Inc. diff --git a/locale/cups.pot b/locale/cups.pot index 36df6e742..20eb432fd 100644 --- a/locale/cups.pot +++ b/locale/cups.pot @@ -30,7 +30,7 @@ msgid "" msgstr "" "Project-Id-Version: CUPS 1.6\n" "Report-Msgid-Bugs-To: http://www.cups.org/str.php\n" -"POT-Creation-Date: 2014-04-08 15:48-0400\n" +"POT-Creation-Date: 2014-05-08 15:57-0700\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1101,15 +1101,15 @@ msgstr "" msgid " --version Show program version." msgstr "" -#: test/ippfind.c:2716 test/ipptool.c:4676 +#: test/ippfind.c:2716 test/ipptool.c:4713 msgid " -4 Connect using IPv4." msgstr "" -#: test/ippfind.c:2717 test/ipptool.c:4677 +#: test/ippfind.c:2717 test/ipptool.c:4714 msgid " -6 Connect using IPv6." msgstr "" -#: test/ipptool.c:4678 +#: test/ipptool.c:4715 msgid " -C Send requests using chunking (default)." msgstr "" @@ -1125,7 +1125,7 @@ msgstr "" msgid " -E Encrypt the connection." msgstr "" -#: test/ipptool.c:4680 +#: test/ipptool.c:4717 msgid " -E Test with HTTP Upgrade to TLS." msgstr "" @@ -1137,7 +1137,7 @@ msgstr "" msgid " -H samba-server Use the named SAMBA server." msgstr "" -#: test/ipptool.c:4682 +#: test/ipptool.c:4719 msgid " -I Ignore errors." msgstr "" @@ -1149,7 +1149,7 @@ msgstr "" msgid " -I {filename,filters,none,profiles}" msgstr "" -#: test/ipptool.c:4683 +#: test/ipptool.c:4720 msgid " -L Send requests using content-length." msgstr "" @@ -1165,7 +1165,7 @@ msgstr "" msgid " -R root-directory Set alternate root." msgstr "" -#: test/ipptool.c:4685 +#: test/ipptool.c:4722 msgid " -S Test with SSL encryption." msgstr "" @@ -1173,7 +1173,7 @@ msgstr "" msgid " -T seconds Set the browse timeout in seconds." msgstr "" -#: test/ipptool.c:4687 +#: test/ipptool.c:4724 msgid " -T seconds Set the receive/send timeout in seconds." msgstr "" @@ -1181,7 +1181,7 @@ msgstr "" msgid " -U username Specify username." msgstr "" -#: test/ippfind.c:2720 test/ipptool.c:4689 +#: test/ippfind.c:2720 test/ipptool.c:4726 msgid " -V version Set default IPP version." msgstr "" @@ -1189,7 +1189,7 @@ msgstr "" msgid " -W {all,none,constraints,defaults,duplex,filters,profiles,sizes,translations}" msgstr "" -#: test/ipptool.c:4691 +#: test/ipptool.c:4728 msgid " -X Produce XML plist instead of plain text." msgstr "" @@ -1217,7 +1217,7 @@ msgstr "" msgid " -d domain Browse/resolve in specified domain." msgstr "" -#: test/ipptool.c:4693 +#: test/ipptool.c:4730 msgid " -d name=value Set named variable to value." msgstr "" @@ -1241,7 +1241,7 @@ msgstr "" msgid " -f Run in the foreground." msgstr "" -#: test/ipptool.c:4695 +#: test/ipptool.c:4732 msgid " -f filename Set default request filename." msgstr "" @@ -1261,7 +1261,7 @@ msgstr "" msgid " -i mime/type Set input MIME type (otherwise auto-typed)." msgstr "" -#: test/ipptool.c:4697 +#: test/ipptool.c:4734 msgid " -i seconds Repeat the last file with the given time interval." msgstr "" @@ -1293,7 +1293,7 @@ msgstr "" msgid " -n copies Set number of copies." msgstr "" -#: test/ipptool.c:4699 +#: test/ipptool.c:4736 msgid " -n count Repeat the last file the given number of times." msgstr "" @@ -1329,7 +1329,7 @@ msgstr "" msgid " -q Quietly report match via exit code." msgstr "" -#: systemv/cupstestppd.c:3826 test/ipptool.c:4701 +#: systemv/cupstestppd.c:3826 test/ipptool.c:4738 msgid " -q Run silently." msgstr "" @@ -1345,7 +1345,7 @@ msgstr "" msgid " -s Print service name if true." msgstr "" -#: test/ipptool.c:4702 +#: test/ipptool.c:4739 msgid " -t Produce a test report." msgstr "" @@ -1377,7 +1377,7 @@ msgstr "" msgid " -u regex Match URI to regular expression." msgstr "" -#: systemv/cupsaddsmb.c:291 systemv/cupstestppd.c:3828 test/ipptool.c:4703 +#: systemv/cupsaddsmb.c:291 systemv/cupstestppd.c:3828 test/ipptool.c:4740 #: ppdc/ppdc.cxx:447 ppdc/ppdpo.cxx:259 msgid " -v Be verbose." msgstr "" @@ -1543,172 +1543,172 @@ msgstr "" msgid " PASS" msgstr "" -#: cups/ipp.c:5219 +#: cups/ipp.c:5227 #, c-format msgid "\"%s\": Bad URI value \"%s\" - %s (RFC 2911 section 4.1.5)." msgstr "" -#: cups/ipp.c:5230 +#: cups/ipp.c:5238 #, c-format msgid "\"%s\": Bad URI value \"%s\" - bad length %d (RFC 2911 section 4.1.5)." msgstr "" -#: cups/ipp.c:4850 +#: cups/ipp.c:4858 #, c-format msgid "\"%s\": Bad attribute name - bad length %d (RFC 2911 section 4.1.3)." msgstr "" -#: cups/ipp.c:4842 +#: cups/ipp.c:4850 #, c-format msgid "\"%s\": Bad attribute name - invalid character (RFC 2911 section 4.1.3)." msgstr "" -#: cups/ipp.c:4868 +#: cups/ipp.c:4876 #, c-format msgid "\"%s\": Bad boolen value %d (RFC 2911 section 4.1.11)." msgstr "" -#: cups/ipp.c:5282 +#: cups/ipp.c:5290 #, c-format msgid "\"%s\": Bad charset value \"%s\" - bad characters (RFC 2911 section 4.1.7)." msgstr "" -#: cups/ipp.c:5291 +#: cups/ipp.c:5299 #, c-format msgid "\"%s\": Bad charset value \"%s\" - bad length %d (RFC 2911 section 4.1.7)." msgstr "" -#: cups/ipp.c:4968 +#: cups/ipp.c:4976 #, c-format msgid "\"%s\": Bad dateTime UTC hours %u (RFC 2911 section 4.1.14)." msgstr "" -#: cups/ipp.c:4976 +#: cups/ipp.c:4984 #, c-format msgid "\"%s\": Bad dateTime UTC minutes %u (RFC 2911 section 4.1.14)." msgstr "" -#: cups/ipp.c:4960 +#: cups/ipp.c:4968 #, c-format msgid "\"%s\": Bad dateTime UTC sign '%c' (RFC 2911 section 4.1.14)." msgstr "" -#: cups/ipp.c:4920 +#: cups/ipp.c:4928 #, c-format msgid "\"%s\": Bad dateTime day %u (RFC 2911 section 4.1.14)." msgstr "" -#: cups/ipp.c:4952 +#: cups/ipp.c:4960 #, c-format msgid "\"%s\": Bad dateTime deciseconds %u (RFC 2911 section 4.1.14)." msgstr "" -#: cups/ipp.c:4928 +#: cups/ipp.c:4936 #, c-format msgid "\"%s\": Bad dateTime hours %u (RFC 2911 section 4.1.14)." msgstr "" -#: cups/ipp.c:4936 +#: cups/ipp.c:4944 #, c-format msgid "\"%s\": Bad dateTime minutes %u (RFC 2911 section 4.1.14)." msgstr "" -#: cups/ipp.c:4912 +#: cups/ipp.c:4920 #, c-format msgid "\"%s\": Bad dateTime month %u (RFC 2911 section 4.1.14)." msgstr "" -#: cups/ipp.c:4944 +#: cups/ipp.c:4952 #, c-format msgid "\"%s\": Bad dateTime seconds %u (RFC 2911 section 4.1.14)." msgstr "" -#: cups/ipp.c:4882 +#: cups/ipp.c:4890 #, c-format msgid "\"%s\": Bad enum value %d - out of range (RFC 2911 section 4.1.4)." msgstr "" -#: cups/ipp.c:5197 +#: cups/ipp.c:5205 #, c-format msgid "\"%s\": Bad keyword value \"%s\" - bad length %d (RFC 2911 section 4.1.3)." msgstr "" -#: cups/ipp.c:5188 +#: cups/ipp.c:5196 #, c-format msgid "\"%s\": Bad keyword value \"%s\" - invalid character (RFC 2911 section 4.1.3)." msgstr "" -#: cups/ipp.c:5391 +#: cups/ipp.c:5399 #, c-format msgid "\"%s\": Bad mimeMediaType value \"%s\" - bad characters (RFC 2911 section 4.1.9)." msgstr "" -#: cups/ipp.c:5401 +#: cups/ipp.c:5409 #, c-format msgid "\"%s\": Bad mimeMediaType value \"%s\" - bad length %d (RFC 2911 section 4.1.9)." msgstr "" -#: cups/ipp.c:5159 +#: cups/ipp.c:5167 #, c-format msgid "\"%s\": Bad name value \"%s\" - bad UTF-8 sequence (RFC 2911 section 4.1.2)." msgstr "" -#: cups/ipp.c:5168 +#: cups/ipp.c:5176 #, c-format msgid "\"%s\": Bad name value \"%s\" - bad length %d (RFC 2911 section 4.1.2)." msgstr "" -#: cups/ipp.c:5337 +#: cups/ipp.c:5345 #, c-format msgid "\"%s\": Bad naturalLanguage value \"%s\" - bad characters (RFC 2911 section 4.1.8)." msgstr "" -#: cups/ipp.c:5347 +#: cups/ipp.c:5355 #, c-format msgid "\"%s\": Bad naturalLanguage value \"%s\" - bad length %d (RFC 2911 section 4.1.8)." msgstr "" -#: cups/ipp.c:4896 +#: cups/ipp.c:4904 #, c-format msgid "\"%s\": Bad octetString value - bad length %d (RFC 2911 section 4.1.10)." msgstr "" -#: cups/ipp.c:5039 +#: cups/ipp.c:5047 #, c-format msgid "\"%s\": Bad rangeOfInteger value %d-%d - lower greater than upper (RFC 2911 section 4.1.13)." msgstr "" -#: cups/ipp.c:5020 +#: cups/ipp.c:5028 #, c-format msgid "\"%s\": Bad resolution value %dx%d%s - bad units value (RFC 2911 section 4.1.15)." msgstr "" -#: cups/ipp.c:4989 +#: 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 "" -#: cups/ipp.c:5004 +#: cups/ipp.c:5012 #, c-format msgid "\"%s\": Bad resolution value %dx%d%s - feed resolution must be positive (RFC 2911 section 4.1.15)." msgstr "" -#: cups/ipp.c:5101 +#: cups/ipp.c:5109 #, c-format msgid "\"%s\": Bad text value \"%s\" - bad UTF-8 sequence (RFC 2911 section 4.1.1)." msgstr "" -#: cups/ipp.c:5110 +#: cups/ipp.c:5118 #, c-format msgid "\"%s\": Bad text value \"%s\" - bad length %d (RFC 2911 section 4.1.1)." msgstr "" -#: cups/ipp.c:5253 +#: cups/ipp.c:5261 #, c-format msgid "\"%s\": Bad uriScheme value \"%s\" - bad characters (RFC 2911 section 4.1.6)." msgstr "" -#: cups/ipp.c:5262 +#: cups/ipp.c:5270 #, c-format msgid "\"%s\": Bad uriScheme value \"%s\" - bad length %d (RFC 2911 section 4.1.6)." msgstr "" @@ -3403,7 +3403,7 @@ msgstr "" msgid "Cancel RSS Subscription" msgstr "" -#: backend/ipp.c:2156 +#: backend/ipp.c:2182 msgid "Canceling print job." msgstr "" @@ -3456,11 +3456,11 @@ msgstr "" msgid "Community name uses indefinite length" msgstr "" -#: backend/ipp.c:813 backend/lpd.c:879 backend/socket.c:400 +#: backend/ipp.c:839 backend/lpd.c:879 backend/socket.c:400 msgid "Connected to printer." msgstr "" -#: backend/ipp.c:718 backend/lpd.c:702 backend/socket.c:319 +#: backend/ipp.c:744 backend/lpd.c:702 backend/socket.c:319 msgid "Connecting to printer." msgstr "" @@ -3476,7 +3476,7 @@ msgstr "" msgid "Control file sent successfully." msgstr "" -#: backend/ipp.c:1308 backend/lpd.c:472 +#: backend/ipp.c:1334 backend/lpd.c:472 msgid "Copying print data." msgstr "" @@ -4019,95 +4019,95 @@ msgstr "" msgid "Help file not in index." msgstr "" -#: cups/ipp.c:3175 cups/ipp.c:3202 cups/ipp.c:3225 +#: cups/ipp.c:3183 cups/ipp.c:3210 cups/ipp.c:3233 msgid "IPP 1setOf attribute with incompatible value tags." msgstr "" -#: cups/ipp.c:3138 +#: cups/ipp.c:3146 msgid "IPP attribute has no name." msgstr "" -#: cups/ipp.c:6992 +#: cups/ipp.c:7000 msgid "IPP attribute is not a member of the message." msgstr "" -#: cups/ipp.c:3586 +#: cups/ipp.c:3594 msgid "IPP begCollection value not 0 bytes." msgstr "" -#: cups/ipp.c:3368 +#: cups/ipp.c:3376 msgid "IPP boolean value not 1 byte." msgstr "" -#: cups/ipp.c:3429 +#: cups/ipp.c:3437 msgid "IPP date value not 11 bytes." msgstr "" -#: cups/ipp.c:3607 +#: cups/ipp.c:3615 msgid "IPP endCollection value not 0 bytes." msgstr "" -#: cups/ipp.c:3343 +#: cups/ipp.c:3351 msgid "IPP enum value not 4 bytes." msgstr "" -#: cups/ipp.c:3067 +#: cups/ipp.c:3075 msgid "IPP extension tag larger than 0x7FFFFFFF." msgstr "" -#: cups/ipp.c:3340 +#: cups/ipp.c:3348 msgid "IPP integer value not 4 bytes." msgstr "" -#: cups/ipp.c:3539 +#: cups/ipp.c:3547 msgid "IPP language length overflows value." msgstr "" -#: cups/ipp.c:3548 +#: cups/ipp.c:3556 msgid "IPP language length too large." msgstr "" -#: cups/ipp.c:3252 +#: cups/ipp.c:3260 msgid "IPP member name is not empty." msgstr "" -#: cups/ipp.c:3633 +#: cups/ipp.c:3641 msgid "IPP memberName value is empty." msgstr "" -#: cups/ipp.c:3625 +#: cups/ipp.c:3633 msgid "IPP memberName with no attribute." msgstr "" -#: cups/ipp.c:3121 +#: cups/ipp.c:3129 msgid "IPP name larger than 32767 bytes." msgstr "" -#: cups/ipp.c:3506 +#: cups/ipp.c:3514 msgid "IPP nameWithLanguage value less than minimum 4 bytes." msgstr "" -#: cups/ipp.c:3663 +#: cups/ipp.c:3671 msgid "IPP octetString length too large." msgstr "" -#: cups/ipp.c:3474 +#: cups/ipp.c:3482 msgid "IPP rangeOfInteger value not 8 bytes." msgstr "" -#: cups/ipp.c:3447 +#: cups/ipp.c:3455 msgid "IPP resolution value not 9 bytes." msgstr "" -#: cups/ipp.c:3566 +#: cups/ipp.c:3574 msgid "IPP string length overflows value." msgstr "" -#: cups/ipp.c:3502 +#: cups/ipp.c:3510 msgid "IPP textWithLanguage value less than minimum 4 bytes." msgstr "" -#: cups/ipp.c:3326 +#: cups/ipp.c:3334 msgid "IPP value larger than 32767 bytes." msgstr "" @@ -4383,7 +4383,7 @@ msgstr "" msgid "Long-Edge (Portrait)" msgstr "" -#: cups/http-support.c:1723 +#: cups/http-support.c:1725 msgid "Looking for printer." msgstr "" @@ -4572,10 +4572,14 @@ msgstr "" msgid "No Windows printer drivers are installed." msgstr "" -#: cups/request.c:556 cups/request.c:905 +#: cups/request.c:570 cups/request.c:919 msgid "No active connection" msgstr "" +#: cups/request.c:350 +msgid "No active connection." +msgstr "" + #: scheduler/ipp.c:3418 #, c-format msgid "No active jobs on %s." @@ -4646,14 +4650,18 @@ msgstr "" msgid "No printer-uri in request." msgstr "" -#: cups/http.c:2273 +#: cups/http.c:2260 msgid "No request URI." msgstr "" -#: cups/http.c:2290 +#: cups/http.c:2277 msgid "No request protocol version." msgstr "" +#: cups/request.c:358 +msgid "No request sent." +msgstr "" + #: cups/snmp.c:970 msgid "No request-id" msgstr "" @@ -4762,7 +4770,7 @@ msgstr "" #: scheduler/cupsfilter.c:1482 scheduler/main.c:2158 systemv/cupsaddsmb.c:284 #: systemv/cupsctl.c:203 systemv/cupstestdsc.c:429 systemv/cupstestppd.c:3817 -#: test/ippfind.c:2715 test/ipptool.c:4675 ppdc/ppdc.cxx:432 +#: test/ippfind.c:2715 test/ipptool.c:4712 ppdc/ppdc.cxx:432 #: ppdc/ppdhtml.cxx:174 ppdc/ppdi.cxx:130 ppdc/ppdmerge.cxx:363 #: ppdc/ppdpo.cxx:254 msgid "Options:" @@ -4772,7 +4780,7 @@ msgstr "" msgid "Out of date PPD cache file." msgstr "" -#: cups/ppd-cache.c:1409 +#: cups/ppd-cache.c:1410 msgid "Out of memory." msgstr "" @@ -4918,7 +4926,7 @@ msgstr "" msgid "Postcard Long Edge" msgstr "" -#: backend/ipp.c:920 backend/ipp.c:928 +#: backend/ipp.c:946 backend/ipp.c:954 msgid "Preparing to print." msgstr "" @@ -4962,15 +4970,15 @@ msgstr "" msgid "Print file sent." msgstr "" -#: backend/ipp.c:2130 +#: backend/ipp.c:2156 msgid "Print job canceled at printer." msgstr "" -#: backend/ipp.c:2122 +#: backend/ipp.c:2148 msgid "Print job too large." msgstr "" -#: backend/ipp.c:1600 +#: backend/ipp.c:1626 msgid "Print job was not accepted." msgstr "" @@ -4998,11 +5006,11 @@ msgstr "" msgid "Printer Settings" msgstr "" -#: backend/ipp.c:2125 +#: backend/ipp.c:2151 msgid "Printer cannot print supplied content." msgstr "" -#: backend/ipp.c:2128 +#: backend/ipp.c:2154 msgid "Printer cannot print with supplied options." msgstr "" @@ -5115,7 +5123,7 @@ msgstr "" msgid "Server Stopped" msgstr "" -#: cups/tls-darwin.c:1136 +#: cups/tls-darwin.c:1028 msgid "Server credentials not set." msgstr "" @@ -5311,7 +5319,7 @@ msgstr "" msgid "The optical photoconductor will need to be replaced soon." msgstr "" -#: backend/ipp.c:940 +#: backend/ipp.c:966 msgid "The printer configuration is incorrect or the printer no longer exists." msgstr "" @@ -5319,8 +5327,8 @@ msgstr "" msgid "The printer did not respond." msgstr "" -#: backend/ipp.c:784 backend/ipp.c:903 backend/ipp.c:1017 backend/ipp.c:1408 -#: backend/ipp.c:1572 backend/lpd.c:836 backend/socket.c:379 +#: backend/ipp.c:810 backend/ipp.c:929 backend/ipp.c:1043 backend/ipp.c:1434 +#: backend/ipp.c:1598 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 "" @@ -5337,7 +5345,7 @@ msgstr "" msgid "The printer is not connected." msgstr "" -#: backend/ipp.c:762 backend/ipp.c:795 backend/ipp.c:899 backend/lpd.c:815 +#: backend/ipp.c:788 backend/ipp.c:821 backend/ipp.c:925 backend/lpd.c:815 #: backend/lpd.c:856 backend/socket.c:358 backend/socket.c:391 msgid "The printer is not responding." msgstr "" @@ -5354,7 +5362,7 @@ msgstr "" msgid "The printer is offline." msgstr "" -#: backend/ipp.c:777 backend/lpd.c:829 backend/socket.c:372 +#: backend/ipp.c:803 backend/lpd.c:829 backend/socket.c:372 msgid "The printer is unreachable at this time." msgstr "" @@ -5366,7 +5374,7 @@ msgstr "" msgid "The printer may be out of toner." msgstr "" -#: backend/ipp.c:771 backend/lpd.c:823 backend/socket.c:366 +#: backend/ipp.c:797 backend/lpd.c:823 backend/socket.c:366 msgid "The printer may not exist or is unavailable at this time." msgstr "" @@ -5546,7 +5554,7 @@ msgstr "" msgid "Unable to add class" msgstr "" -#: backend/ipp.c:1754 +#: backend/ipp.c:1780 msgid "Unable to add document to print job." msgstr "" @@ -5575,7 +5583,7 @@ msgstr "" msgid "Unable to cancel RSS subscription" msgstr "" -#: backend/ipp.c:2035 backend/ipp.c:2470 +#: backend/ipp.c:2061 backend/ipp.c:2496 msgid "Unable to cancel print job." msgstr "" @@ -5591,12 +5599,12 @@ msgstr "" msgid "Unable to change server settings" msgstr "" -#: cups/ipp.c:5381 +#: cups/ipp.c:5389 #, c-format msgid "Unable to compile mimeMediaType regular expression: %s." msgstr "" -#: cups/ipp.c:5327 +#: cups/ipp.c:5335 #, c-format msgid "Unable to compile naturalLanguage regular expression: %s." msgstr "" @@ -5605,11 +5613,11 @@ msgstr "" msgid "Unable to configure printer options." msgstr "" -#: cups/adminutil.c:900 cups/request.c:1038 +#: cups/adminutil.c:900 cups/request.c:1052 msgid "Unable to connect to host." msgstr "" -#: backend/ipp.c:740 backend/ipp.c:1213 backend/lpd.c:795 backend/socket.c:338 +#: backend/ipp.c:766 backend/ipp.c:1239 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 "" @@ -5657,7 +5665,7 @@ msgstr "" msgid "Unable to create printer-uri" msgstr "" -#: cups/tls-darwin.c:1244 +#: cups/tls-darwin.c:1136 msgid "Unable to create server credentials." msgstr "" @@ -5681,35 +5689,35 @@ msgstr "" msgid "Unable to edit cupsd.conf files larger than 1MB" msgstr "" -#: cups/tls-darwin.c:1412 cups/tls-sspi.c:493 +#: cups/tls-darwin.c:1304 cups/tls-sspi.c:493 msgid "Unable to establish a secure connection to host (certificate chain invalid)." msgstr "" -#: cups/tls-darwin.c:1402 cups/tls-sspi.c:483 +#: cups/tls-darwin.c:1294 cups/tls-sspi.c:483 msgid "Unable to establish a secure connection to host (certificate not yet valid)." msgstr "" -#: cups/tls-darwin.c:1397 cups/tls-sspi.c:478 +#: cups/tls-darwin.c:1289 cups/tls-sspi.c:478 msgid "Unable to establish a secure connection to host (expired certificate)." msgstr "" -#: cups/tls-darwin.c:1407 cups/tls-sspi.c:488 +#: cups/tls-darwin.c:1299 cups/tls-sspi.c:488 msgid "Unable to establish a secure connection to host (host name mismatch)." msgstr "" -#: cups/tls-darwin.c:1417 cups/tls-sspi.c:498 +#: cups/tls-darwin.c:1309 cups/tls-sspi.c:498 msgid "Unable to establish a secure connection to host (peer dropped connection before responding)." msgstr "" -#: cups/tls-darwin.c:1392 cups/tls-sspi.c:473 +#: cups/tls-darwin.c:1284 cups/tls-sspi.c:473 msgid "Unable to establish a secure connection to host (self-signed certificate)." msgstr "" -#: cups/tls-darwin.c:1387 cups/tls-sspi.c:468 +#: cups/tls-darwin.c:1279 cups/tls-sspi.c:468 msgid "Unable to establish a secure connection to host (untrusted certificate)." msgstr "" -#: cups/tls-darwin.c:1444 cups/tls-sspi.c:269 cups/tls-sspi.c:525 +#: cups/tls-darwin.c:1336 cups/tls-sspi.c:269 cups/tls-sspi.c:525 #: cups/tls-sspi.c:558 cups/tls-sspi.c:575 msgid "Unable to establish a secure connection to host." msgstr "" @@ -5718,15 +5726,15 @@ msgstr "" msgid "Unable to find destination for job" msgstr "" -#: cups/http-support.c:1914 +#: cups/http-support.c:1949 msgid "Unable to find printer." msgstr "" -#: cups/tls-darwin.c:1258 +#: cups/tls-darwin.c:1150 msgid "Unable to find server credentials." msgstr "" -#: backend/ipp.c:3448 +#: backend/ipp.c:3474 msgid "Unable to get backend exit status." msgstr "" @@ -5754,7 +5762,7 @@ msgstr "" msgid "Unable to get printer status" msgstr "" -#: backend/ipp.c:964 +#: backend/ipp.c:990 msgid "Unable to get printer status." msgstr "" @@ -5819,7 +5827,7 @@ msgstr "" msgid "Unable to open help file." msgstr "" -#: backend/ipp.c:376 backend/ipp.c:1501 backend/ipp.c:1709 backend/lpd.c:496 +#: backend/ipp.c:376 backend/ipp.c:1527 backend/ipp.c:1735 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" @@ -5873,7 +5881,7 @@ msgstr "" msgid "Unable to set server default" msgstr "" -#: backend/ipp.c:3307 backend/ipp.c:3384 backend/ipp.c:3392 +#: backend/ipp.c:3333 backend/ipp.c:3410 backend/ipp.c:3418 msgid "Unable to start backend process." msgstr "" @@ -5955,11 +5963,11 @@ msgstr "" msgid "Unknown printer-op-policy \"%s\"." msgstr "" -#: cups/http.c:2322 +#: cups/http.c:2309 msgid "Unknown request method." msgstr "" -#: cups/http.c:2342 +#: cups/http.c:2329 msgid "Unknown request version." msgstr "" @@ -6110,7 +6118,7 @@ msgid "" " ippfind --version" msgstr "" -#: test/ipptool.c:4673 +#: test/ipptool.c:4710 msgid "Usage: ipptool [options] URI filename [ ... filenameN ]" msgstr "" @@ -6166,7 +6174,7 @@ msgstr "" msgid "Version uses indefinite length" msgstr "" -#: backend/ipp.c:1871 +#: backend/ipp.c:1897 msgid "Waiting for job to complete." msgstr "" diff --git a/locale/cups.strings b/locale/cups.strings index ee34e0453..7e8d5eba9 100644 --- a/locale/cups.strings +++ b/locale/cups.strings @@ -1005,6 +1005,7 @@ "No VarBind SEQUENCE" = "No VarBind SEQUENCE"; "No Windows printer drivers are installed." = "No Windows printer drivers are installed."; "No active connection" = "No active connection"; +"No active connection." = "No active connection."; "No active jobs on %s." = "No active jobs on %s."; "No attributes in request." = "No attributes in request."; "No authentication information provided." = "No authentication information provided."; @@ -1024,6 +1025,7 @@ "No printer-uri in request." = "No printer-uri in request."; "No request URI." = "No request URI."; "No request protocol version." = "No request protocol version."; +"No request sent." = "No request sent."; "No request-id" = "No request-id"; "No subscription attributes in request." = "No subscription attributes in request."; "No subscriptions found." = "No subscriptions found."; diff --git a/locale/cups_ca.po b/locale/cups_ca.po index 79829844c..18a677f99 100644 --- a/locale/cups_ca.po +++ b/locale/cups_ca.po @@ -32,7 +32,7 @@ msgid "" msgstr "" "Project-Id-Version: CUPS 1.4.6\n" "Report-Msgid-Bugs-To: http://www.cups.org/str.php\n" -"POT-Creation-Date: 2014-04-08 15:48-0400\n" +"POT-Creation-Date: 2014-05-08 15:57-0700\n" "PO-Revision-Date: 2012-09-29 11:21+0200\n" "Last-Translator: Àngel Mompó \n" "Language-Team: Catalan \n" @@ -3716,6 +3716,9 @@ msgstr "No hi ha cap controlador d'impressores de Windows instal·lat." msgid "No active connection" msgstr "No hi ha cap connexió activa" +msgid "No active connection." +msgstr "" + #, c-format msgid "No active jobs on %s." msgstr "No hi ha cap feina activa a %s." @@ -3776,6 +3779,9 @@ msgstr "" msgid "No request protocol version." msgstr "" +msgid "No request sent." +msgstr "" + msgid "No request-id" msgstr "No hi ha cap request-id" diff --git a/locale/cups_cs.po b/locale/cups_cs.po index 79dcbde4f..76fb4f5ab 100644 --- a/locale/cups_cs.po +++ b/locale/cups_cs.po @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: CUPS 1.6\n" "Report-Msgid-Bugs-To: http://www.cups.org/str.php\n" -"POT-Creation-Date: 2014-04-08 15:48-0400\n" +"POT-Creation-Date: 2014-05-08 15:57-0700\n" "PO-Revision-Date: 2012-09-14 10:26+0100\n" "Last-Translator: Jan Bartos \n" "Language-Team: Czech\n" @@ -3506,6 +3506,9 @@ msgstr "" msgid "No active connection" msgstr "Není aktivní spojení" +msgid "No active connection." +msgstr "" + #, c-format msgid "No active jobs on %s." msgstr "" @@ -3564,6 +3567,9 @@ msgstr "" msgid "No request protocol version." msgstr "" +msgid "No request sent." +msgstr "" + msgid "No request-id" msgstr "Žádný ID požadavek" diff --git a/locale/cups_es.po b/locale/cups_es.po index 66cfc4053..b12e2d595 100644 --- a/locale/cups_es.po +++ b/locale/cups_es.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: CUPS 1.6\n" "Report-Msgid-Bugs-To: http://www.cups.org/str.php\n" -"POT-Creation-Date: 2014-04-08 15:48-0400\n" +"POT-Creation-Date: 2014-05-08 15:57-0700\n" "PO-Revision-Date: 2012-07-01 20:21+0100\n" "Last-Translator: Juan Pablo González Riopedre \n" "Language-Team: Spanish\n" @@ -3703,6 +3703,9 @@ msgstr "No está instalado ningún controlador de impresora de Windows." msgid "No active connection" msgstr "No hay conexión activa" +msgid "No active connection." +msgstr "" + #, c-format msgid "No active jobs on %s." msgstr "No hay trabajos activos en %s." @@ -3763,6 +3766,9 @@ msgstr "" msgid "No request protocol version." msgstr "" +msgid "No request sent." +msgstr "" + msgid "No request-id" msgstr "No hay request-id" diff --git a/locale/cups_fr.po b/locale/cups_fr.po index 4388fb82c..76700f761 100644 --- a/locale/cups_fr.po +++ b/locale/cups_fr.po @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: CUPS 1.6\n" "Report-Msgid-Bugs-To: http://www.cups.org/str.php\n" -"POT-Creation-Date: 2014-04-08 15:48-0400\n" +"POT-Creation-Date: 2014-05-08 15:57-0700\n" "PO-Revision-Date: 2012-12-12 11:12+0100\n" "Last-Translator: denis meramdjougoma \n" "Language-Team: LANGUAGE \n" @@ -3503,6 +3503,9 @@ msgstr "" msgid "No active connection" msgstr "Aucune connexion active" +msgid "No active connection." +msgstr "" + #, c-format msgid "No active jobs on %s." msgstr "" @@ -3561,6 +3564,9 @@ msgstr "" msgid "No request protocol version." msgstr "" +msgid "No request sent." +msgstr "" + msgid "No request-id" msgstr "Paramètre request-id absent" diff --git a/locale/cups_it.po b/locale/cups_it.po index 99ed64c61..1ded3aea4 100644 --- a/locale/cups_it.po +++ b/locale/cups_it.po @@ -29,7 +29,7 @@ msgid "" msgstr "" "Project-Id-Version: CUPS 1.6\n" "Report-Msgid-Bugs-To: http://www.cups.org/str.php\n" -"POT-Creation-Date: 2014-04-08 15:48-0400\n" +"POT-Creation-Date: 2014-05-08 15:57-0700\n" "PO-Revision-Date: 2013-07-14 12:00+0200\n" "Last-Translator: Giovanni Scafora \n" "Language-Team: Arch Linux Italian Team \n" @@ -3790,6 +3790,9 @@ msgstr "Non è stato installato nessun driver della stampante di Windows." msgid "No active connection" msgstr "Nessuna connessione attiva" +msgid "No active connection." +msgstr "" + #, c-format msgid "No active jobs on %s." msgstr "Nessun processo attivo su %s." @@ -3850,6 +3853,9 @@ msgstr "" msgid "No request protocol version." msgstr "" +msgid "No request sent." +msgstr "" + msgid "No request-id" msgstr "Nessun request-id" diff --git a/locale/cups_ja.po b/locale/cups_ja.po index fe98cda88..6f421abf4 100644 --- a/locale/cups_ja.po +++ b/locale/cups_ja.po @@ -28,7 +28,7 @@ msgid "" msgstr "" "Project-Id-Version: CUPS 1.7\n" "Report-Msgid-Bugs-To: http://www.cups.org/str.php\n" -"POT-Creation-Date: 2014-04-08 15:48-0400\n" +"POT-Creation-Date: 2014-05-08 15:57-0700\n" "PO-Revision-Date: 2013-08-19 11:51+0900\n" "Last-Translator: OPFC TRANSCUPS \n" "Language-Team: OPFC TRANSCUPS \n" @@ -3748,6 +3748,9 @@ msgstr "Windows プリンタードライバーがインストールされてい msgid "No active connection" msgstr "アクティブな接続はありません" +msgid "No active connection." +msgstr "" + #, c-format msgid "No active jobs on %s." msgstr "%s にはアクティブなジョブはありません。" @@ -3806,6 +3809,9 @@ msgstr "" msgid "No request protocol version." msgstr "" +msgid "No request sent." +msgstr "" + msgid "No request-id" msgstr "リクエストID がありません" diff --git a/locale/cups_ru.po b/locale/cups_ru.po index d13dc6094..3285d797b 100644 --- a/locale/cups_ru.po +++ b/locale/cups_ru.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: CUPS 1.4\n" "Report-Msgid-Bugs-To: http://www.cups.org/str.php\n" -"POT-Creation-Date: 2014-04-08 15:48-0400\n" +"POT-Creation-Date: 2014-05-08 15:57-0700\n" "PO-Revision-Date: 2009-02-16 12:00-0800\n" "Last-Translator: Apple Inc.\n" "Language-Team: Apple Inc.\n" @@ -3479,6 +3479,9 @@ msgstr "" msgid "No active connection" msgstr "Нет рабочего подключения" +msgid "No active connection." +msgstr "" + #, c-format msgid "No active jobs on %s." msgstr "" @@ -3537,6 +3540,9 @@ msgstr "" msgid "No request protocol version." msgstr "" +msgid "No request sent." +msgstr "" + msgid "No request-id" msgstr "Нет идентификатора request-id" -- 2.39.2