diff -u -r -N squid-3.4.7/cfgaux/ltmain.sh squid-3.4.8/cfgaux/ltmain.sh --- squid-3.4.7/cfgaux/ltmain.sh 2014-08-27 07:23:06.000000000 -0700 +++ squid-3.4.8/cfgaux/ltmain.sh 2014-09-15 01:17:39.000000000 -0700 @@ -70,7 +70,7 @@ # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.7 +# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.10 # automake: $automake_version # autoconf: $autoconf_version # @@ -80,7 +80,7 @@ PROGRAM=libtool PACKAGE=libtool -VERSION="2.4.2 Debian-2.4.2-1.7" +VERSION="2.4.2 Debian-2.4.2-1.10" TIMESTAMP="" package_revision=1.3337 diff -u -r -N squid-3.4.7/ChangeLog squid-3.4.8/ChangeLog --- squid-3.4.7/ChangeLog 2014-08-27 07:22:40.000000000 -0700 +++ squid-3.4.8/ChangeLog 2014-09-15 01:17:12.000000000 -0700 @@ -1,3 +1,8 @@ +Changes to squid-3.4.8 (15 Sep 2014): + + - Fix off by one in SNMP subsystem + - pinger: Fix various ICMP handling issues + Changes to squid-3.4.7 (28 Aug 2014): - Regression Fix: Kerberos LDAP authorizing groups with principle subdomain diff -u -r -N squid-3.4.7/compat/Makefile.in squid-3.4.8/compat/Makefile.in --- squid-3.4.7/compat/Makefile.in 2014-08-27 07:23:26.000000000 -0700 +++ squid-3.4.8/compat/Makefile.in 2014-09-15 01:17:58.000000000 -0700 @@ -83,9 +83,9 @@ build_triplet = @build@ host_triplet = @host@ DIST_COMMON = $(top_srcdir)/src/Common.am $(srcdir)/Makefile.in \ - $(srcdir)/Makefile.am strtoll.c strerror.c drand48.c \ - inet_pton.c getnameinfo.c tempnam.c inet_ntop.c psignal.c \ - getaddrinfo.c initgroups.c $(top_srcdir)/cfgaux/depcomp \ + $(srcdir)/Makefile.am drand48.c inet_pton.c psignal.c \ + strtoll.c strerror.c tempnam.c initgroups.c getaddrinfo.c \ + inet_ntop.c getnameinfo.c $(top_srcdir)/cfgaux/depcomp \ $(top_srcdir)/cfgaux/test-driver check_PROGRAMS = testPreCompiler$(EXEEXT) TESTS = testPreCompiler$(EXEEXT) testHeaders diff -u -r -N squid-3.4.7/configure squid-3.4.8/configure --- squid-3.4.7/configure 2014-08-27 07:24:14.000000000 -0700 +++ squid-3.4.8/configure 2014-09-15 01:18:44.000000000 -0700 @@ -1,7 +1,7 @@ #! /bin/sh # From configure.ac Revision. # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for Squid Web Proxy 3.4.7. +# Generated by GNU Autoconf 2.69 for Squid Web Proxy 3.4.8. # # Report bugs to . # @@ -595,8 +595,8 @@ # Identity of this package. PACKAGE_NAME='Squid Web Proxy' PACKAGE_TARNAME='squid' -PACKAGE_VERSION='3.4.7' -PACKAGE_STRING='Squid Web Proxy 3.4.7' +PACKAGE_VERSION='3.4.8' +PACKAGE_STRING='Squid Web Proxy 3.4.8' PACKAGE_BUGREPORT='http://bugs.squid-cache.org/' PACKAGE_URL='' @@ -1605,7 +1605,7 @@ # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures Squid Web Proxy 3.4.7 to adapt to many kinds of systems. +\`configure' configures Squid Web Proxy 3.4.8 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1675,7 +1675,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of Squid Web Proxy 3.4.7:";; + short | recursive ) echo "Configuration of Squid Web Proxy 3.4.8:";; esac cat <<\_ACEOF @@ -2071,7 +2071,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -Squid Web Proxy configure 3.4.7 +Squid Web Proxy configure 3.4.8 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -3175,7 +3175,7 @@ This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by Squid Web Proxy $as_me 3.4.7, which was +It was created by Squid Web Proxy $as_me 3.4.8, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -4042,7 +4042,7 @@ # Define the identity of the package. PACKAGE='squid' - VERSION='3.4.7' + VERSION='3.4.8' cat >>confdefs.h <<_ACEOF @@ -34229,7 +34229,7 @@ # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by Squid Web Proxy $as_me 3.4.7, which was +This file was extended by Squid Web Proxy $as_me 3.4.8, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -34295,7 +34295,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -Squid Web Proxy config.status 3.4.7 +Squid Web Proxy config.status 3.4.8 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff -u -r -N squid-3.4.7/configure.ac squid-3.4.8/configure.ac --- squid-3.4.7/configure.ac 2014-08-27 07:24:14.000000000 -0700 +++ squid-3.4.8/configure.ac 2014-09-15 01:18:43.000000000 -0700 @@ -1,4 +1,4 @@ -AC_INIT([Squid Web Proxy],[3.4.7],[http://bugs.squid-cache.org/],[squid]) +AC_INIT([Squid Web Proxy],[3.4.8],[http://bugs.squid-cache.org/],[squid]) AC_PREREQ(2.61) AC_CONFIG_HEADERS([include/autoconf.h]) AC_CONFIG_AUX_DIR(cfgaux) diff -u -r -N squid-3.4.7/errors/af/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/af/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/af/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:33:19.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:27:41.000000000 -0700 @@ -23,8 +23,8 @@

Tydkwota oorskry.

-

-

+

This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

+

These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

Die kasbediener se administrateur is %w.


diff -u -r -N squid-3.4.7/errors/af/ERR_AGENT_CONFIGURE squid-3.4.8/errors/af/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/af/ERR_AGENT_CONFIGURE 2014-08-27 07:33:20.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_AGENT_CONFIGURE 2014-09-15 01:27:42.000000000 -0700 @@ -24,19 +24,19 @@
For Firefox browsers go to:
For Internet Explorer browsers go to:
For Opera browsers go to:
diff -u -r -N squid-3.4.7/errors/af/ERR_AGENT_WPAD squid-3.4.8/errors/af/ERR_AGENT_WPAD --- squid-3.4.7/errors/af/ERR_AGENT_WPAD 2014-08-27 07:33:21.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_AGENT_WPAD 2014-09-15 01:27:43.000000000 -0700 @@ -29,14 +29,14 @@
For Internet Explorer browsers go to:
For Opera browsers go to:
diff -u -r -N squid-3.4.7/errors/af/ERR_CACHE_ACCESS_DENIED squid-3.4.8/errors/af/ERR_CACHE_ACCESS_DENIED --- squid-3.4.7/errors/af/ERR_CACHE_ACCESS_DENIED 2014-08-27 07:33:22.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_CACHE_ACCESS_DENIED 2014-09-15 01:27:44.000000000 -0700 @@ -23,9 +23,9 @@

Toegang tot kasgeheue geweier.

-

+

Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.

-

+

Please contact the cache administrator if you have difficulties authenticating yourself.


diff -u -r -N squid-3.4.7/errors/af/ERR_CACHE_MGR_ACCESS_DENIED squid-3.4.8/errors/af/ERR_CACHE_MGR_ACCESS_DENIED --- squid-3.4.7/errors/af/ERR_CACHE_MGR_ACCESS_DENIED 2014-08-27 07:33:23.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_CACHE_MGR_ACCESS_DENIED 2014-09-15 01:27:45.000000000 -0700 @@ -23,9 +23,9 @@

Toegang tot kasbestuur geweier.

-

+

Sorry, you are not currently allowed to request %U from this cache manager until you have authenticated yourself.

-

+

Please contact the cache administrator if you have difficulties authenticating yourself or, if you are the administrator, read Squid documentation on cache manager interface and check cache log for more detailed error messages.


diff -u -r -N squid-3.4.7/errors/af/ERR_CANNOT_FORWARD squid-3.4.8/errors/af/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/af/ERR_CANNOT_FORWARD 2014-08-27 07:33:24.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_CANNOT_FORWARD 2014-09-15 01:27:46.000000000 -0700 @@ -23,13 +23,13 @@

Kan nie dié versoek nou aanstuur nie

-

+

This request could not be forwarded to the origin server or to any parent caches.

Enkele moontlike probleme is:

Die kasbediener se administrateur is %w.

diff -u -r -N squid-3.4.7/errors/af/ERR_CONFLICT_HOST squid-3.4.8/errors/af/ERR_CONFLICT_HOST --- squid-3.4.7/errors/af/ERR_CONFLICT_HOST 2014-08-27 07:33:25.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_CONFLICT_HOST 2014-09-15 01:27:47.000000000 -0700 @@ -20,15 +20,15 @@

Die volgende fout is teëgekom tydens verkryging van die URL: %U

-

+
URI Host Conflict
-

+

This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

Enkele moontlike probleme is:

Die kasbediener se administrateur is %w.

diff -u -r -N squid-3.4.7/errors/af/ERR_DIR_LISTING squid-3.4.8/errors/af/ERR_DIR_LISTING --- squid-3.4.7/errors/af/ERR_DIR_LISTING 2014-08-27 07:33:27.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_DIR_LISTING 2014-09-15 01:27:49.000000000 -0700 @@ -19,13 +19,13 @@

Gidsinhoud:

-

+
%z
- + %g diff -u -r -N squid-3.4.7/errors/af/ERR_DNS_FAIL squid-3.4.8/errors/af/ERR_DNS_FAIL --- squid-3.4.7/errors/af/ERR_DNS_FAIL 2014-08-27 07:33:28.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_DNS_FAIL 2014-09-15 01:27:50.000000000 -0700 @@ -25,7 +25,7 @@

Die DNS-bediener het geantwoord:

-

+
%z

Dit beteken dat die kasbediener nie in staat was om die gasheernaam in die URL op te los nie. Kyk of die adres korrek is.

diff -u -r -N squid-3.4.7/errors/af/ERR_ESI squid-3.4.8/errors/af/ERR_ESI --- squid-3.4.7/errors/af/ERR_ESI 2014-08-27 07:33:29.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_ESI 2014-09-15 01:27:50.000000000 -0700 @@ -25,10 +25,10 @@

Die ESI-verwerker het geantwoord:

-

+
%Z
-

+

This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

U webmeester is %w.


diff -u -r -N squid-3.4.7/errors/af/ERR_FORWARDING_DENIED squid-3.4.8/errors/af/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/af/ERR_FORWARDING_DENIED 2014-08-27 07:33:30.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_FORWARDING_DENIED 2014-09-15 01:27:51.000000000 -0700 @@ -23,7 +23,7 @@

Aanstuur geweier.

-

+

This cache will not forward your request because it is trying to enforce a sibling relationship. Perhaps the client at %i is a cache which has been misconfigured.

Die kasbediener se administrateur is %w.

diff -u -r -N squid-3.4.7/errors/af/ERR_FTP_FAILURE squid-3.4.8/errors/af/ERR_FTP_FAILURE --- squid-3.4.7/errors/af/ERR_FTP_FAILURE 2014-08-27 07:33:32.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_FTP_FAILURE 2014-09-15 01:27:53.000000000 -0700 @@ -21,13 +21,13 @@

Squid het die volgende FTP-opdrag gestuur:

-

+
%f

Die bediener het geantwoord met:

-

-

+
%F
+
%g

Die kasbediener se administrateur is %w.

diff -u -r -N squid-3.4.7/errors/af/ERR_FTP_FORBIDDEN squid-3.4.8/errors/af/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/af/ERR_FTP_FORBIDDEN 2014-08-27 07:33:33.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_FTP_FORBIDDEN 2014-09-15 01:27:54.000000000 -0700 @@ -17,17 +17,17 @@
-

+

An FTP authentication failure occurred while trying to retrieve the URL: %U

Squid het die volgende FTP-opdrag gestuur:

-

+
%f

Die bediener het geantwoord met:

-

-

+
%F
+
%g

Die kasbediener se administrateur is %w.

diff -u -r -N squid-3.4.7/errors/af/ERR_FTP_NOT_FOUND squid-3.4.8/errors/af/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/af/ERR_FTP_NOT_FOUND 2014-08-27 07:33:34.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_FTP_NOT_FOUND 2014-09-15 01:27:55.000000000 -0700 @@ -21,16 +21,16 @@

Squid het die volgende FTP-opdrag gestuur:

-

+
%f

Die bediener het geantwoord met:

-

-

+
%F
+
%g
-

+

This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

Die kasbediener se administrateur is %w.


diff -u -r -N squid-3.4.7/errors/af/ERR_FTP_PUT_ERROR squid-3.4.8/errors/af/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/af/ERR_FTP_PUT_ERROR 2014-08-27 07:33:36.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_FTP_PUT_ERROR 2014-09-15 01:27:57.000000000 -0700 @@ -21,12 +21,12 @@

Squid het die volgende FTP-opdrag gestuur:

-

+
%f

Die bediener het geantwoord met:

-

+
%F

Dit beteken dat die FTP-bediener dalk nie toestemming of ruimte het om die lêer te stoor nie. Kontroleer die pad, toestemmings, skyfspasie en probeer weer.

diff -u -r -N squid-3.4.7/errors/af/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/af/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/af/ERR_FTP_UNAVAILABLE 2014-08-27 07:33:38.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_FTP_UNAVAILABLE 2014-09-15 01:27:59.000000000 -0700 @@ -22,13 +22,13 @@

Squid het die volgende FTP-opdrag gestuur:

-

+
%f

Die bediener het geantwoord met:

-

-

+
%F
+
%g

Die kasbediener se administrateur is %w.

diff -u -r -N squid-3.4.7/errors/af/ERR_GATEWAY_FAILURE squid-3.4.8/errors/af/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/af/ERR_GATEWAY_FAILURE 2014-08-27 07:33:39.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_GATEWAY_FAILURE 2014-09-15 01:28:00.000000000 -0700 @@ -20,12 +20,12 @@

Die volgende fout is teëgekom tydens verkryging van die URL: %U

-

+

Gateway Proxy Failure

-

+

A non-recoverable internal failure or configuration problem prevents this request from being completed.

-

+

This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

Die kasbediener se administrateur is %w.


diff -u -r -N squid-3.4.7/errors/af/ERR_INVALID_REQ squid-3.4.8/errors/af/ERR_INVALID_REQ --- squid-3.4.7/errors/af/ERR_INVALID_REQ 2014-08-27 07:33:41.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_INVALID_REQ 2014-09-15 01:28:02.000000000 -0700 @@ -20,7 +20,7 @@

Ongeldige versoek-fout is teëgekom tydens verwerking van die navraag:

-

+
%R

Enkele moontlike probleme is:

@@ -31,7 +31,7 @@
  • Navraag is te groot.

  • "Content-Length" ontbreek vir POST- of PUT-navrae.

  • Ongeldige karakter in gasheernaam; onderstreep word nie toegelaat nie.

  • -
  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • Die kasbediener se administrateur is %w.

    diff -u -r -N squid-3.4.7/errors/af/ERR_INVALID_RESP squid-3.4.8/errors/af/ERR_INVALID_RESP --- squid-3.4.7/errors/af/ERR_INVALID_RESP 2014-08-27 07:33:42.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_INVALID_RESP 2014-09-15 01:28:03.000000000 -0700 @@ -20,7 +20,7 @@

    Ongeldige antwoord-fout is teëgekom tydens verwerking van die navraag:

    -
    
    +
    %R

    Die ontvangde HTTP-antwoordboodskap van die bediener wat gekontak is, kon nie verstaan word nie of was op 'n ander manier misvormd. Kontak die werfoperateur.

    diff -u -r -N squid-3.4.7/errors/af/ERR_INVALID_URL squid-3.4.8/errors/af/ERR_INVALID_URL --- squid-3.4.7/errors/af/ERR_INVALID_URL 2014-08-27 07:33:43.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_INVALID_URL 2014-09-15 01:28:04.000000000 -0700 @@ -29,7 +29,7 @@ diff -u -r -N squid-3.4.7/errors/af/ERR_NO_RELAY squid-3.4.8/errors/af/ERR_NO_RELAY --- squid-3.4.7/errors/af/ERR_NO_RELAY 2014-08-27 07:33:45.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_NO_RELAY 2014-09-15 01:28:06.000000000 -0700 @@ -20,10 +20,10 @@

    Die volgende fout is teëgekom tydens verkryging van die URL: %U

    -

    +

    No Wais Relay

    -

    +

    There is no WAIS Relay host defined for this Cache! Yell at the administrator.

    Die kasbediener se administrateur is %w.


    diff -u -r -N squid-3.4.7/errors/af/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/af/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/af/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:33:46.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:28:06.000000000 -0700 @@ -23,7 +23,7 @@

    Geldige dokument is nie in die kas gevind nie, en only-if-cached is gespesifiseer.

    -

    +

    You have issued a request with a only-if-cached cache control directive. The document was not found in the cache, or it required revalidation prohibited by the only-if-cached directive.

    Die kasbediener se administrateur is %w.


    diff -u -r -N squid-3.4.7/errors/af/ERR_PRECONDITION_FAILED squid-3.4.8/errors/af/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/af/ERR_PRECONDITION_FAILED 2014-08-27 07:33:47.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_PRECONDITION_FAILED 2014-09-15 01:28:07.000000000 -0700 @@ -20,12 +20,12 @@

    Die volgende fout is teëgekom tydens verkryging van die URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    diff -u -r -N squid-3.4.7/errors/af/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/af/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/af/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:33:50.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:28:10.000000000 -0700 @@ -31,7 +31,7 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    Die kasbediener se administrateur is %w.


    diff -u -r -N squid-3.4.7/errors/af/ERR_TOO_BIG squid-3.4.8/errors/af/ERR_TOO_BIG --- squid-3.4.7/errors/af/ERR_TOO_BIG 2014-08-27 07:33:52.000000000 -0700 +++ squid-3.4.8/errors/af/ERR_TOO_BIG 2014-09-15 01:28:13.000000000 -0700 @@ -25,7 +25,7 @@

    Indien u 'n POST- of PUT-navraag maak, is die item wat u probeer oplaai te groot.

    Indien u 'n GET-navraag maak, is die item wat u probeer aflaai te groot.

    -

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    Die kasbediener se administrateur is %w.


    diff -u -r -N squid-3.4.7/errors/ar/ERR_ACCESS_DENIED squid-3.4.8/errors/ar/ERR_ACCESS_DENIED --- squid-3.4.7/errors/ar/ERR_ACCESS_DENIED 2014-08-27 07:33:58.000000000 -0700 +++ squid-3.4.8/errors/ar/ERR_ACCESS_DENIED 2014-09-15 01:28:18.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Ouergids (Root Directory)Ouergids (Wortelgids)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/ar/ERR_DNS_FAIL squid-3.4.8/errors/ar/ERR_DNS_FAIL --- squid-3.4.7/errors/ar/ERR_DNS_FAIL 2014-08-27 07:34:08.000000000 -0700 +++ squid-3.4.8/errors/ar/ERR_DNS_FAIL 2014-09-15 01:28:27.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    Operation successful

    +

    File created


    @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/ar/ERR_FTP_PUT_ERROR squid-3.4.8/errors/ar/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/ar/ERR_FTP_PUT_ERROR 2014-08-27 07:34:16.000000000 -0700 +++ squid-3.4.8/errors/ar/ERR_FTP_PUT_ERROR 2014-09-15 01:28:34.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: FTP upload failed
    -

    -

    +

    Operation successful

    +

    File updated


    @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/ar/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/ar/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/ar/ERR_FTP_UNAVAILABLE 2014-08-27 07:34:18.000000000 -0700 +++ squid-3.4.8/errors/ar/ERR_FTP_UNAVAILABLE 2014-09-15 01:28:36.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    +

    Directory: %U/


    @@ -19,13 +19,13 @@

    Direktoriyanın m�^�zmunu

    -
    
    +
    %z
    -
    Parent Directory (Root Directory)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_DNS_FAIL squid-3.4.8/errors/az/ERR_DNS_FAIL --- squid-3.4.7/errors/az/ERR_DNS_FAIL 2014-08-27 07:34:49.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_DNS_FAIL 2014-09-15 01:29:04.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Uzaqda yerləşən kompyuterin İP adresini təyin mumkun olmadı %H

    @@ -25,7 +25,7 @@

    DNS serverin cavabı:

    -
    
    +
    %z

    Bu o deməkdir ki keş URL-də göstərilmiş serveri təyin edə bilmir. Adresin düzgün yazıldığını yoxlayın.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_ESI squid-3.4.8/errors/az/ERR_ESI --- squid-3.4.7/errors/az/ERR_ESI 2014-08-27 07:34:50.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_ESI 2014-09-15 01:29:05.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/az/ERR_FORWARDING_DENIED squid-3.4.8/errors/az/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/az/ERR_FORWARDING_DENIED 2014-08-27 07:34:51.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_FORWARDING_DENIED 2014-09-15 01:29:05.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Yönləndirmə qadağandır.

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_FTP_DISABLED squid-3.4.8/errors/az/ERR_FTP_DISABLED --- squid-3.4.7/errors/az/ERR_FTP_DISABLED 2014-08-27 07:34:51.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_FTP_DISABLED 2014-09-15 01:29:06.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    FTP protokolu qadağandır

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_FTP_FAILURE squid-3.4.8/errors/az/ERR_FTP_FAILURE --- squid-3.4.7/errors/az/ERR_FTP_FAILURE 2014-08-27 07:34:52.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_FTP_FAILURE 2014-09-15 01:29:07.000000000 -0700 @@ -21,13 +21,13 @@

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Your cache administrator is %w.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_FTP_FORBIDDEN squid-3.4.8/errors/az/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/az/ERR_FTP_FORBIDDEN 2014-08-27 07:34:53.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_FTP_FORBIDDEN 2014-09-15 01:29:08.000000000 -0700 @@ -21,13 +21,13 @@

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Your cache administrator is %w.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_FTP_NOT_FOUND squid-3.4.8/errors/az/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/az/ERR_FTP_NOT_FOUND 2014-08-27 07:34:54.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_FTP_NOT_FOUND 2014-09-15 01:29:09.000000000 -0700 @@ -17,17 +17,17 @@
    -

    +

    The following URL could not be retrieved: %U

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_FTP_PUT_CREATED squid-3.4.8/errors/az/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/az/ERR_FTP_PUT_CREATED 2014-08-27 07:34:55.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_FTP_PUT_CREATED 2014-09-15 01:29:10.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_FTP_PUT_ERROR squid-3.4.8/errors/az/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/az/ERR_FTP_PUT_ERROR 2014-08-27 07:34:56.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_FTP_PUT_ERROR 2014-09-15 01:29:11.000000000 -0700 @@ -21,15 +21,15 @@

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    Your cache administrator is %w.


    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/az/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/az/ERR_FTP_PUT_MODIFIED 2014-08-27 07:34:57.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_FTP_PUT_MODIFIED 2014-09-15 01:29:12.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/az/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/az/ERR_FTP_UNAVAILABLE 2014-08-27 07:34:58.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_FTP_UNAVAILABLE 2014-09-15 01:29:12.000000000 -0700 @@ -22,13 +22,13 @@

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Your cache administrator is %w.

    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_GATEWAY_FAILURE squid-3.4.8/errors/az/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/az/ERR_GATEWAY_FAILURE 2014-08-27 07:34:59.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_GATEWAY_FAILURE 2014-09-15 01:29:13.000000000 -0700 @@ -17,13 +17,13 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_ICAP_FAILURE squid-3.4.8/errors/az/ERR_ICAP_FAILURE --- squid-3.4.7/errors/az/ERR_ICAP_FAILURE 2014-08-27 07:35:00.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_ICAP_FAILURE 2014-09-15 01:29:14.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    İCAP protokol s�^�hvi

    @@ -25,12 +25,12 @@

    Sistemdən gələn cavab: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    Mümkün probleml�^�rd�^�n b�^�zil�^�ri:

      -
    • -
    • +
    • The ICAP server is not reachable.

    • +
    • An Illegal response was received from the ICAP server.


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_INVALID_REQ squid-3.4.8/errors/az/ERR_INVALID_REQ --- squid-3.4.7/errors/az/ERR_INVALID_REQ 2014-08-27 07:35:01.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_INVALID_REQ 2014-09-15 01:29:15.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R

    Mümkün probleml�^�rd�^�n b�^�zil�^�ri:

    @@ -31,7 +31,7 @@
  • Sorğu həddən ziyadə böyükdür.

  • POST və PUT sorğuları üçün Content-Length göstərilməmişdir

  • Server adında qadağan edilmiş simvol; altxətt yol verilməzdir.

  • -
  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • Your cache administrator is %w.

    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_INVALID_RESP squid-3.4.8/errors/az/ERR_INVALID_RESP --- squid-3.4.7/errors/az/ERR_INVALID_RESP 2014-08-27 07:35:02.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_INVALID_RESP 2014-09-15 01:29:16.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R

    Serverd�^�n gönd�^�rilmi�^� HTTP cavab mesajı s�^�hvdir v�^� ya s�^�hv formala�^�ıb. Xahi�^� edirik sayt operatoru il�^� �^�laq�^� saxlayın

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_INVALID_URL squid-3.4.8/errors/az/ERR_INVALID_URL --- squid-3.4.7/errors/az/ERR_INVALID_URL 2014-08-27 07:35:03.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_INVALID_URL 2014-09-15 01:29:17.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Invalid URL

    @@ -29,7 +29,7 @@
    • Giriş protokol yoxdur və ya səhvdir (http:// və ya oxşar olmalıdır)

    • Server adı yoxdur

    • -
    • +
    • Illegal double-escape in the URL-Path

    • Server adında qadağan edilmiş simvol; altxətt yol verilməzdir.

    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_LIFETIME_EXP squid-3.4.8/errors/az/ERR_LIFETIME_EXP --- squid-3.4.7/errors/az/ERR_LIFETIME_EXP 2014-08-27 07:35:04.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_LIFETIME_EXP 2014-09-15 01:29:18.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Qoşulma müddəti bitdi

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_NO_RELAY squid-3.4.8/errors/az/ERR_NO_RELAY --- squid-3.4.7/errors/az/ERR_NO_RELAY 2014-08-27 07:35:05.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_NO_RELAY 2014-09-15 01:29:19.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Wais ötürücü təyin edilməmişdir

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/az/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/az/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:35:06.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:29:20.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Obyekt keşdə tapılmadı və only-if-cached əmri təyin olunmuşdur.

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_PRECONDITION_FAILED squid-3.4.8/errors/az/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/az/ERR_PRECONDITION_FAILED 2014-08-27 07:35:06.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_PRECONDITION_FAILED 2014-09-15 01:29:20.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_READ_ERROR squid-3.4.8/errors/az/ERR_READ_ERROR --- squid-3.4.7/errors/az/ERR_READ_ERROR 2014-08-27 07:35:07.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_READ_ERROR 2014-09-15 01:29:21.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Oxunma səhvi

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_READ_TIMEOUT squid-3.4.8/errors/az/ERR_READ_TIMEOUT --- squid-3.4.7/errors/az/ERR_READ_TIMEOUT 2014-08-27 07:35:08.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_READ_TIMEOUT 2014-09-15 01:29:22.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Gözləmə müddəti bitmişdir

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/az/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/az/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:35:09.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:29:23.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,7 +31,7 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    Your cache administrator is %w.


    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_SHUTTING_DOWN squid-3.4.8/errors/az/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/az/ERR_SHUTTING_DOWN 2014-08-27 07:35:10.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_SHUTTING_DOWN 2014-09-15 01:29:24.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    @@ -27,7 +27,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_SOCKET_FAILURE squid-3.4.8/errors/az/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/az/ERR_SOCKET_FAILURE 2014-08-27 07:35:11.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_SOCKET_FAILURE 2014-09-15 01:29:25.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Socket Failure

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_TOO_BIG squid-3.4.8/errors/az/ERR_TOO_BIG --- squid-3.4.7/errors/az/ERR_TOO_BIG 2014-08-27 07:35:12.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_TOO_BIG 2014-09-15 01:29:26.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Sorğu və ya cavab həddən ziyadə böyükdür.

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/az/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/az/ERR_UNSUP_HTTPVERSION 2014-08-27 07:35:13.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_UNSUP_HTTPVERSION 2014-09-15 01:29:27.000000000 -0700 @@ -12,18 +12,18 @@

    SƏHV

    -

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    Your cache administrator is %w.


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_UNSUP_REQ squid-3.4.8/errors/az/ERR_UNSUP_REQ --- squid-3.4.7/errors/az/ERR_UNSUP_REQ 2014-08-27 07:35:14.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_UNSUP_REQ 2014-09-15 01:29:28.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Dəstəklənməyən sorğu metodu və protokol

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_URN_RESOLVE squid-3.4.8/errors/az/ERR_URN_RESOLVE --- squid-3.4.7/errors/az/ERR_URN_RESOLVE 2014-08-27 07:35:15.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_URN_RESOLVE 2014-09-15 01:29:28.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    URN tapılmadı

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_WRITE_ERROR squid-3.4.8/errors/az/ERR_WRITE_ERROR --- squid-3.4.7/errors/az/ERR_WRITE_ERROR 2014-08-27 07:35:16.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_WRITE_ERROR 2014-09-15 01:29:29.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Yazma səhvi

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/az/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/az/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/az/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:35:17.000000000 -0700 +++ squid-3.4.8/errors/az/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:29:30.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Sıfır Uzunluqlu Cavab

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/bg/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/bg/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/bg/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:35:19.000000000 -0700 +++ squid-3.4.8/errors/bg/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:29:32.000000000 -0700 @@ -20,10 +20,10 @@

    Възникна следната грешка при опит за достъп до: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    Тези ограничения са поставени от Интернет доставчика, който администрира този кеш сървър. Ако считате това за неправилно, моля обърнете се към администратора.

    Вашият кеш администратор е %w.

    diff -u -r -N squid-3.4.7/errors/bg/ERR_AGENT_CONFIGURE squid-3.4.8/errors/bg/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/bg/ERR_AGENT_CONFIGURE 2014-08-27 07:35:20.000000000 -0700 +++ squid-3.4.8/errors/bg/ERR_AGENT_CONFIGURE 2014-09-15 01:29:33.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Ana direktoriya (Root Directory)Parent Directory (Root Directory)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_DNS_FAIL squid-3.4.8/errors/ca/ERR_DNS_FAIL --- squid-3.4.7/errors/ca/ERR_DNS_FAIL 2014-08-27 07:36:08.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_DNS_FAIL 2014-09-15 01:30:17.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    No ha estat possible determinar l'adreça IP del servidor %H

    @@ -25,7 +25,7 @@

    The DNS server returned:

    -
    
    +
    %z

    This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_ESI squid-3.4.8/errors/ca/ERR_ESI --- squid-3.4.7/errors/ca/ERR_ESI 2014-08-27 07:36:09.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_ESI 2014-09-15 01:30:18.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/ca/ERR_FORWARDING_DENIED squid-3.4.8/errors/ca/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/ca/ERR_FORWARDING_DENIED 2014-08-27 07:36:10.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_FORWARDING_DENIED 2014-09-15 01:30:19.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Reenviament denegat.

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_FTP_DISABLED squid-3.4.8/errors/ca/ERR_FTP_DISABLED --- squid-3.4.7/errors/ca/ERR_FTP_DISABLED 2014-08-27 07:36:11.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_FTP_DISABLED 2014-09-15 01:30:20.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    El protocol FTP està deshabilitat.

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_FTP_FAILURE squid-3.4.8/errors/ca/ERR_FTP_FAILURE --- squid-3.4.7/errors/ca/ERR_FTP_FAILURE 2014-08-27 07:36:12.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_FTP_FAILURE 2014-09-15 01:30:21.000000000 -0700 @@ -21,13 +21,13 @@

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    L'administrador d'aquesta cache és %w.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_FTP_FORBIDDEN squid-3.4.8/errors/ca/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/ca/ERR_FTP_FORBIDDEN 2014-08-27 07:36:12.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_FTP_FORBIDDEN 2014-09-15 01:30:21.000000000 -0700 @@ -21,13 +21,13 @@

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    L'administrador d'aquesta cache és %w.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_FTP_NOT_FOUND squid-3.4.8/errors/ca/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/ca/ERR_FTP_NOT_FOUND 2014-08-27 07:36:13.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_FTP_NOT_FOUND 2014-09-15 01:30:22.000000000 -0700 @@ -17,17 +17,17 @@
    -

    +

    The following URL could not be retrieved: %U

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_FTP_PUT_CREATED squid-3.4.8/errors/ca/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/ca/ERR_FTP_PUT_CREATED 2014-08-27 07:36:14.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_FTP_PUT_CREATED 2014-09-15 01:30:23.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_FTP_PUT_ERROR squid-3.4.8/errors/ca/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/ca/ERR_FTP_PUT_ERROR 2014-08-27 07:36:15.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_FTP_PUT_ERROR 2014-09-15 01:30:24.000000000 -0700 @@ -21,15 +21,15 @@

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    L'administrador d'aquesta cache és %w.


    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/ca/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/ca/ERR_FTP_PUT_MODIFIED 2014-08-27 07:36:16.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_FTP_PUT_MODIFIED 2014-09-15 01:30:25.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/ca/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/ca/ERR_FTP_UNAVAILABLE 2014-08-27 07:36:17.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_FTP_UNAVAILABLE 2014-09-15 01:30:26.000000000 -0700 @@ -22,13 +22,13 @@

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    L'administrador d'aquesta cache és %w.

    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_GATEWAY_FAILURE squid-3.4.8/errors/ca/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/ca/ERR_GATEWAY_FAILURE 2014-08-27 07:36:18.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_GATEWAY_FAILURE 2014-09-15 01:30:27.000000000 -0700 @@ -17,13 +17,13 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_ICAP_FAILURE squid-3.4.8/errors/ca/ERR_ICAP_FAILURE --- squid-3.4.7/errors/ca/ERR_ICAP_FAILURE 2014-08-27 07:36:19.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_ICAP_FAILURE 2014-09-15 01:30:28.000000000 -0700 @@ -17,20 +17,20 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    El sistema diu: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    Some possible problems are:

      -
    • -
    • +
    • The ICAP server is not reachable.

    • +
    • An Illegal response was received from the ICAP server.


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_INVALID_REQ squid-3.4.8/errors/ca/ERR_INVALID_REQ --- squid-3.4.7/errors/ca/ERR_INVALID_REQ 2014-08-27 07:36:20.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_INVALID_REQ 2014-09-15 01:30:29.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R

    Some possible problems are:

    @@ -31,7 +31,7 @@
  • La petici&ocute; és massa llarga.

  • Falta el camp Content-Length.

  • Caràcter no permès en el nom del servidor.

  • -
  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • L'administrador d'aquesta cache és %w.

    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_INVALID_RESP squid-3.4.8/errors/ca/ERR_INVALID_RESP --- squid-3.4.7/errors/ca/ERR_INVALID_RESP 2014-08-27 07:36:21.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_INVALID_RESP 2014-09-15 01:30:30.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R
    -

    +

    The HTTP Response message received from the contacted server could not be understood or was otherwise malformed. Please contact the site operator.

    -

    +

    Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

    L'administrador d'aquesta cache és %w.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_INVALID_URL squid-3.4.8/errors/ca/ERR_INVALID_URL --- squid-3.4.7/errors/ca/ERR_INVALID_URL 2014-08-27 07:36:22.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_INVALID_URL 2014-09-15 01:30:30.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    URL incorrecte.

    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_LIFETIME_EXP squid-3.4.8/errors/ca/ERR_LIFETIME_EXP --- squid-3.4.7/errors/ca/ERR_LIFETIME_EXP 2014-08-27 07:36:23.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_LIFETIME_EXP 2014-09-15 01:30:31.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    La connexió ha excedit el temps màxim

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_NO_RELAY squid-3.4.8/errors/ca/ERR_NO_RELAY --- squid-3.4.7/errors/ca/ERR_NO_RELAY 2014-08-27 07:36:24.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_NO_RELAY 2014-09-15 01:30:32.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    No hi ha reenviament de protocol WAIS

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/ca/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/ca/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:36:25.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:30:33.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    S'ha especificat una directiva only-if-cached i no s'ha trobat un document vàlid a la cache.

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_PRECONDITION_FAILED squid-3.4.8/errors/ca/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/ca/ERR_PRECONDITION_FAILED 2014-08-27 07:36:26.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_PRECONDITION_FAILED 2014-09-15 01:30:34.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_READ_ERROR squid-3.4.8/errors/ca/ERR_READ_ERROR --- squid-3.4.7/errors/ca/ERR_READ_ERROR 2014-08-27 07:36:27.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_READ_ERROR 2014-09-15 01:30:35.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Error de lectura

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_READ_TIMEOUT squid-3.4.8/errors/ca/ERR_READ_TIMEOUT --- squid-3.4.7/errors/ca/ERR_READ_TIMEOUT 2014-08-27 07:36:27.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_READ_TIMEOUT 2014-09-15 01:30:36.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    S'ha excedit el temps de lectura

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/ca/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/ca/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:36:28.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:30:37.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,7 +31,7 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    L'administrador d'aquesta cache és %w.


    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_SHUTTING_DOWN squid-3.4.8/errors/ca/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/ca/ERR_SHUTTING_DOWN 2014-08-27 07:36:29.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_SHUTTING_DOWN 2014-09-15 01:30:38.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    @@ -27,7 +27,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_SOCKET_FAILURE squid-3.4.8/errors/ca/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/ca/ERR_SOCKET_FAILURE 2014-08-27 07:36:30.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_SOCKET_FAILURE 2014-09-15 01:30:38.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Errada de connexió de xarxa

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_TOO_BIG squid-3.4.8/errors/ca/ERR_TOO_BIG --- squid-3.4.7/errors/ca/ERR_TOO_BIG 2014-08-27 07:36:31.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_TOO_BIG 2014-09-15 01:30:39.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    La petició o la resposta són massa llargues.

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/ca/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/ca/ERR_UNSUP_HTTPVERSION 2014-08-27 07:36:32.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_UNSUP_HTTPVERSION 2014-09-15 01:30:40.000000000 -0700 @@ -12,18 +12,18 @@

    ERROR

    -

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    L'administrador d'aquesta cache és %w.


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_UNSUP_REQ squid-3.4.8/errors/ca/ERR_UNSUP_REQ --- squid-3.4.7/errors/ca/ERR_UNSUP_REQ 2014-08-27 07:36:33.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_UNSUP_REQ 2014-09-15 01:30:41.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Mètode i protocol no admesos

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_URN_RESOLVE squid-3.4.8/errors/ca/ERR_URN_RESOLVE --- squid-3.4.7/errors/ca/ERR_URN_RESOLVE 2014-08-27 07:36:34.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_URN_RESOLVE 2014-09-15 01:30:42.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    No s'ha pogut resoldre la URN

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_WRITE_ERROR squid-3.4.8/errors/ca/ERR_WRITE_ERROR --- squid-3.4.7/errors/ca/ERR_WRITE_ERROR 2014-08-27 07:36:35.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_WRITE_ERROR 2014-09-15 01:30:43.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Error d'escriptura

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/ca/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/ca/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/ca/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:36:36.000000000 -0700 +++ squid-3.4.8/errors/ca/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:30:44.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Zero Sized Reply

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/cs/ERR_ACCESS_DENIED squid-3.4.8/errors/cs/ERR_ACCESS_DENIED --- squid-3.4.7/errors/cs/ERR_ACCESS_DENIED 2014-08-27 07:36:37.000000000 -0700 +++ squid-3.4.8/errors/cs/ERR_ACCESS_DENIED 2014-09-15 01:30:45.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Přístup odepřen.

    @@ -25,13 +25,13 @@

    Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/cs/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/cs/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/cs/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:36:38.000000000 -0700 +++ squid-3.4.8/errors/cs/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:30:46.000000000 -0700 @@ -17,22 +17,22 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/cs/ERR_AGENT_CONFIGURE squid-3.4.8/errors/cs/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/cs/ERR_AGENT_CONFIGURE 2014-08-27 07:36:39.000000000 -0700 +++ squid-3.4.8/errors/cs/ERR_AGENT_CONFIGURE 2014-09-15 01:30:47.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Parent Directory (Root Directory)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/da/ERR_DNS_FAIL squid-3.4.8/errors/da/ERR_DNS_FAIL --- squid-3.4.7/errors/da/ERR_DNS_FAIL 2014-08-27 07:37:30.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_DNS_FAIL 2014-09-15 01:31:32.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Kunne ikke finde IP nummeret for navnet %H

    -

    +

    The DNS server returned:

    -
    
    +
    %z

    This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_ESI squid-3.4.8/errors/da/ERR_ESI --- squid-3.4.7/errors/da/ERR_ESI 2014-08-27 07:37:31.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_ESI 2014-09-15 01:31:33.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_FORWARDING_DENIED squid-3.4.8/errors/da/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/da/ERR_FORWARDING_DENIED 2014-08-27 07:37:32.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_FORWARDING_DENIED 2014-09-15 01:31:34.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Videresendelse Nægtet.

    @@ -25,14 +25,14 @@

    This cache will not forward your request because it is trying to enforce a sibling relationship. Perhaps the client at %i is a cache which has been misconfigured.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_FTP_DISABLED squid-3.4.8/errors/da/ERR_FTP_DISABLED --- squid-3.4.7/errors/da/ERR_FTP_DISABLED 2014-08-27 07:37:33.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_FTP_DISABLED 2014-09-15 01:31:35.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    FTP er slået fra

    @@ -25,14 +25,14 @@

    Denne cache understøtter ikke FTP.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_FTP_FAILURE squid-3.4.8/errors/da/ERR_FTP_FAILURE --- squid-3.4.7/errors/da/ERR_FTP_FAILURE 2014-08-27 07:37:34.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_FTP_FAILURE 2014-09-15 01:31:35.000000000 -0700 @@ -21,22 +21,22 @@

    Proxy'en Squid sendte følgende FTP kommando:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_FTP_FORBIDDEN squid-3.4.8/errors/da/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/da/ERR_FTP_FORBIDDEN 2014-08-27 07:37:34.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_FTP_FORBIDDEN 2014-09-15 01:31:36.000000000 -0700 @@ -21,22 +21,22 @@

    Proxy'en Squid sendte følgende FTP kommando:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_FTP_NOT_FOUND squid-3.4.8/errors/da/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/da/ERR_FTP_NOT_FOUND 2014-08-27 07:37:35.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_FTP_NOT_FOUND 2014-09-15 01:31:37.000000000 -0700 @@ -21,24 +21,24 @@

    Proxy'en Squid sendte følgende FTP kommando:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_FTP_PUT_CREATED squid-3.4.8/errors/da/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/da/ERR_FTP_PUT_CREATED 2014-08-27 07:37:36.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_FTP_PUT_CREATED 2014-09-15 01:31:38.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/da/ERR_FTP_PUT_ERROR squid-3.4.8/errors/da/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/da/ERR_FTP_PUT_ERROR 2014-08-27 07:37:37.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_FTP_PUT_ERROR 2014-09-15 01:31:39.000000000 -0700 @@ -21,23 +21,23 @@

    Proxy'en Squid sendte følgende FTP kommando:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/da/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/da/ERR_FTP_PUT_MODIFIED 2014-08-27 07:37:38.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_FTP_PUT_MODIFIED 2014-09-15 01:31:40.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/da/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/da/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/da/ERR_FTP_UNAVAILABLE 2014-08-27 07:37:39.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_FTP_UNAVAILABLE 2014-09-15 01:31:41.000000000 -0700 @@ -22,22 +22,22 @@

    Proxy'en Squid sendte følgende FTP kommando:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_GATEWAY_FAILURE squid-3.4.8/errors/da/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/da/ERR_GATEWAY_FAILURE 2014-08-27 07:37:40.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_GATEWAY_FAILURE 2014-09-15 01:31:42.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    -

    +

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_ICAP_FAILURE squid-3.4.8/errors/da/ERR_ICAP_FAILURE --- squid-3.4.7/errors/da/ERR_ICAP_FAILURE 2014-08-27 07:37:41.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_ICAP_FAILURE 2014-09-15 01:31:43.000000000 -0700 @@ -17,20 +17,20 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    Systemet returnerede: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    Mulige problemer kan være:


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/da/ERR_INVALID_REQ squid-3.4.8/errors/da/ERR_INVALID_REQ --- squid-3.4.7/errors/da/ERR_INVALID_REQ 2014-08-27 07:37:42.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_INVALID_REQ 2014-09-15 01:31:44.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R

    Mulige problemer kan være:

    @@ -30,11 +30,11 @@
  • Manglende HTTP Identifikator (ved HTTP/1.0)

  • Forespørgslen er for stor.

  • Content-Length mangler til POST eller PUT forespørgsler

  • -
  • -
  • +
  • Illegal character in hostname; underscores are not allowed.

  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • -

    +

    Your cache administrator is %w.


    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/da/ERR_INVALID_RESP squid-3.4.8/errors/da/ERR_INVALID_RESP --- squid-3.4.7/errors/da/ERR_INVALID_RESP 2014-08-27 07:37:43.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_INVALID_RESP 2014-09-15 01:31:45.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R
    -

    +

    The HTTP Response message received from the contacted server could not be understood or was otherwise malformed. Please contact the site operator.

    -

    +

    Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_INVALID_URL squid-3.4.8/errors/da/ERR_INVALID_URL --- squid-3.4.7/errors/da/ERR_INVALID_URL 2014-08-27 07:37:44.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_INVALID_URL 2014-09-15 01:31:45.000000000 -0700 @@ -17,29 +17,29 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Ugyldig URL

    -

    +

    Some aspect of the requested URL is incorrect.

    Mulige problemer kan være:

    • Manglende eller ukendt adgangsprotokol (burde være http:// eller tilsvarende)

    • Manglende maskinnavn

    • Ugyldig dobbelt-escape i URL sti

    • -
    • +
    • Illegal character in hostname; underscores are not allowed.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_LIFETIME_EXP squid-3.4.8/errors/da/ERR_LIFETIME_EXP --- squid-3.4.7/errors/da/ERR_LIFETIME_EXP 2014-08-27 07:37:45.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_LIFETIME_EXP 2014-09-15 01:31:46.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Levetiden for forbindelsen udløb

    @@ -25,13 +25,13 @@

    Proxy'en Squid har afsluttet forespørgslen fordi den har overskredet den maksimale levetid for forbindelser (connection timeout).

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_NO_RELAY squid-3.4.8/errors/da/ERR_NO_RELAY --- squid-3.4.7/errors/da/ERR_NO_RELAY 2014-08-27 07:37:46.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_NO_RELAY 2014-09-15 01:31:47.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Ingen WAIS Relæ

    @@ -25,13 +25,13 @@

    There is no WAIS Relay host defined for this Cache! Yell at the administrator.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/da/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/da/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:37:47.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:31:48.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Dokumentet blev ikke fundet i cachen og only-if-cached (kun-hvis-gemt-i-cachen) direktivet var specificeret.

    @@ -25,13 +25,13 @@

    Du har sendt en forespørgsel med en only-if-cached cache kontrol direktiv. Dokumentet blev ikke fundet i cachen, eller det kræver en bekræftelse af gyldighed som bliver forbudt af only-if-cached direktivet.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_PRECONDITION_FAILED squid-3.4.8/errors/da/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/da/ERR_PRECONDITION_FAILED 2014-08-27 07:37:48.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_PRECONDITION_FAILED 2014-09-15 01:31:49.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/da/ERR_READ_ERROR squid-3.4.8/errors/da/ERR_READ_ERROR --- squid-3.4.7/errors/da/ERR_READ_ERROR 2014-08-27 07:37:49.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_READ_ERROR 2014-09-15 01:31:50.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Læse fejl

    @@ -27,13 +27,13 @@

    An error condition occurred while reading data from the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_READ_TIMEOUT squid-3.4.8/errors/da/ERR_READ_TIMEOUT --- squid-3.4.7/errors/da/ERR_READ_TIMEOUT 2014-08-27 07:37:50.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_READ_TIMEOUT 2014-09-15 01:31:51.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Read Timeout

    Systemet returnerede: %E

    A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/da/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/da/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:37:50.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:31:52.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,15 +31,15 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_SHUTTING_DOWN squid-3.4.8/errors/da/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/da/ERR_SHUTTING_DOWN 2014-08-27 07:37:51.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_SHUTTING_DOWN 2014-09-15 01:31:53.000000000 -0700 @@ -17,17 +17,17 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_SOCKET_FAILURE squid-3.4.8/errors/da/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/da/ERR_SOCKET_FAILURE 2014-08-27 07:37:52.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_SOCKET_FAILURE 2014-09-15 01:31:54.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Socket Fejl

    @@ -25,15 +25,15 @@

    Systemet returnerede: %E

    -

    +

    Squid is unable to create a TCP socket, presumably due to excessive load. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_TOO_BIG squid-3.4.8/errors/da/ERR_TOO_BIG --- squid-3.4.7/errors/da/ERR_TOO_BIG 2014-08-27 07:37:53.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_TOO_BIG 2014-09-15 01:31:55.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    The request or reply is too large.

    -

    -

    -

    +

    If you are making a POST or PUT request, then the item you are trying to upload is too large.

    +

    If you are making a GET request, then the item you are trying to download is too large.

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/da/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/da/ERR_UNSUP_HTTPVERSION 2014-08-27 07:37:54.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_UNSUP_HTTPVERSION 2014-09-15 01:31:55.000000000 -0700 @@ -12,26 +12,26 @@

    FEJL

    -

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_UNSUP_REQ squid-3.4.8/errors/da/ERR_UNSUP_REQ --- squid-3.4.7/errors/da/ERR_UNSUP_REQ 2014-08-27 07:37:55.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_UNSUP_REQ 2014-09-15 01:31:56.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Uunderstøttet Forespørgsels Metode og Protokol

    @@ -25,13 +25,13 @@

    Proxy'en Squid understøtter ikke alle forespørgselsmetoder for alle adgangs protokoller. For eksempel kan du ikke POST en Gopher forespørgsel.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_URN_RESOLVE squid-3.4.8/errors/da/ERR_URN_RESOLVE --- squid-3.4.7/errors/da/ERR_URN_RESOLVE 2014-08-27 07:37:56.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_URN_RESOLVE 2014-09-15 01:31:57.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    Kan Ikke Opløse URN

    @@ -25,13 +25,13 @@

    Hallo, forvent nu ikke for meget af URNs på %T :)

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_WRITE_ERROR squid-3.4.8/errors/da/ERR_WRITE_ERROR --- squid-3.4.7/errors/da/ERR_WRITE_ERROR 2014-08-27 07:37:57.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_WRITE_ERROR 2014-09-15 01:31:58.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Skrive Fejl

    @@ -27,13 +27,13 @@

    An error condition occurred while writing to the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/da/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/da/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/da/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:37:58.000000000 -0700 +++ squid-3.4.8/errors/da/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:31:59.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Nul Størrelse Svar

    @@ -25,13 +25,13 @@

    Squid did not receive any data for this request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/de/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/de/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/de/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:38:00.000000000 -0700 +++ squid-3.4.8/errors/de/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:32:01.000000000 -0700 @@ -20,10 +20,10 @@

    Der folgende Fehler wurde beim Versuch die URL %U zu holen festgestellt:

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    Diese Einschränkungen wurden vom Internetdienstanbieter eingerichtet der diesen Cache betreibt. Bitte kontaktieren sie ihn falls sie denken, dass dies ein Fehler ist.

    Ihr Cache Administrator ist %w.

    diff -u -r -N squid-3.4.7/errors/de/ERR_CANNOT_FORWARD squid-3.4.8/errors/de/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/de/ERR_CANNOT_FORWARD 2014-08-27 07:38:05.000000000 -0700 +++ squid-3.4.8/errors/de/ERR_CANNOT_FORWARD 2014-09-15 01:32:06.000000000 -0700 @@ -23,13 +23,13 @@

    Kann die Anfrage zurzeit nicht weiterleiten.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    Mögliche Probleme sind:

      -
    • -
    • -
    • +
    • An Internet connection needed to access this domains origin servers may be down.
    • +
    • All configured parent caches may be currently unreachable.
    • +
    • The administrator may not allow this cache to make direct connections to origin servers.

    Ihr Cache Administrator ist %w.

    diff -u -r -N squid-3.4.7/errors/de/ERR_CONFLICT_HOST squid-3.4.8/errors/de/ERR_CONFLICT_HOST --- squid-3.4.7/errors/de/ERR_CONFLICT_HOST 2014-08-27 07:38:05.000000000 -0700 +++ squid-3.4.8/errors/de/ERR_CONFLICT_HOST 2014-09-15 01:32:07.000000000 -0700 @@ -20,15 +20,15 @@

    Der folgende Fehler wurde beim Versuch die URL %U zu holen festgestellt:

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    Mögliche Probleme sind:

      -
    • -
    • +
    • The domain may have moved very recently. Trying again will resolve that.
    • +
    • The website may require you to use a local country-based version. Using your ISP provided DNS server(s) should resolve that.

    Ihr Cache Administrator ist %w.

    diff -u -r -N squid-3.4.7/errors/de/ERR_DIR_LISTING squid-3.4.8/errors/de/ERR_DIR_LISTING --- squid-3.4.7/errors/de/ERR_DIR_LISTING 2014-08-27 07:38:07.000000000 -0700 +++ squid-3.4.8/errors/de/ERR_DIR_LISTING 2014-09-15 01:32:09.000000000 -0700 @@ -25,7 +25,7 @@
    Parent Directory (Root Directory)
    - + %g diff -u -r -N squid-3.4.7/errors/de/ERR_GATEWAY_FAILURE squid-3.4.8/errors/de/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/de/ERR_GATEWAY_FAILURE 2014-08-27 07:38:18.000000000 -0700 +++ squid-3.4.8/errors/de/ERR_GATEWAY_FAILURE 2014-09-15 01:32:20.000000000 -0700 @@ -20,7 +20,7 @@

    Der folgende Fehler wurde beim Versuch die URL %U zu holen festgestellt:

    -

    +

    Gateway Proxy Failure

    Ein nicht-behebbarer interner Fehler oder ein Konfigurationsproblem verhindert die Ausführung der Anfrage.

    diff -u -r -N squid-3.4.7/errors/el/ERR_ACCESS_DENIED squid-3.4.8/errors/el/ERR_ACCESS_DENIED --- squid-3.4.7/errors/el/ERR_ACCESS_DENIED 2014-08-27 07:38:37.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_ACCESS_DENIED 2014-09-15 01:32:39.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Απαγορεύεται η Πρόσβαση.

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/el/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/el/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:38:38.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:32:40.000000000 -0700 @@ -17,13 +17,13 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    Ο διαχειριστής του μεσολαβητή σας είναι ο %w.

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_AGENT_CONFIGURE squid-3.4.8/errors/el/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/el/ERR_AGENT_CONFIGURE 2014-08-27 07:38:39.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_AGENT_CONFIGURE 2014-09-15 01:32:41.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Übergeordnetes Verzeichnis (Root Directory)Übergeordnetes Verzeichnis (Stammverzeichnis)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_DNS_FAIL squid-3.4.8/errors/el/ERR_DNS_FAIL --- squid-3.4.7/errors/el/ERR_DNS_FAIL 2014-08-27 07:38:47.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_DNS_FAIL 2014-09-15 01:32:48.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Δεν ήταν δυνατόν να εξακριβωθεί η διεύθυνση IP για το όνομα %H

    @@ -25,7 +25,7 @@

    The DNS server returned:

    -
    
    +
    %z

    This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_ESI squid-3.4.8/errors/el/ERR_ESI --- squid-3.4.7/errors/el/ERR_ESI 2014-08-27 07:38:47.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_ESI 2014-09-15 01:32:49.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/el/ERR_FORWARDING_DENIED squid-3.4.8/errors/el/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/el/ERR_FORWARDING_DENIED 2014-08-27 07:38:48.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_FORWARDING_DENIED 2014-09-15 01:32:50.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Απαγορεύεται η προώθηση.

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_FTP_DISABLED squid-3.4.8/errors/el/ERR_FTP_DISABLED --- squid-3.4.7/errors/el/ERR_FTP_DISABLED 2014-08-27 07:38:49.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_FTP_DISABLED 2014-09-15 01:32:51.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Το πρωτόκολλο FTP είναι απενεργοποιημένο

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_FTP_FAILURE squid-3.4.8/errors/el/ERR_FTP_FAILURE --- squid-3.4.7/errors/el/ERR_FTP_FAILURE 2014-08-27 07:38:50.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_FTP_FAILURE 2014-09-15 01:32:52.000000000 -0700 @@ -21,13 +21,13 @@

    Το Squid έστειλε τη ακόλουθη εντολή FTP:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Ο διαχειριστής του μεσολαβητή σας είναι ο %w.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_FTP_FORBIDDEN squid-3.4.8/errors/el/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/el/ERR_FTP_FORBIDDEN 2014-08-27 07:38:51.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_FTP_FORBIDDEN 2014-09-15 01:32:53.000000000 -0700 @@ -21,13 +21,13 @@

    Το Squid έστειλε τη ακόλουθη εντολή FTP:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Ο διαχειριστής του μεσολαβητή σας είναι ο %w.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_FTP_NOT_FOUND squid-3.4.8/errors/el/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/el/ERR_FTP_NOT_FOUND 2014-08-27 07:38:52.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_FTP_NOT_FOUND 2014-09-15 01:32:54.000000000 -0700 @@ -21,13 +21,13 @@

    Το Squid έστειλε τη ακόλουθη εντολή FTP:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_FTP_PUT_CREATED squid-3.4.8/errors/el/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/el/ERR_FTP_PUT_CREATED 2014-08-27 07:38:53.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_FTP_PUT_CREATED 2014-09-15 01:32:55.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_FTP_PUT_ERROR squid-3.4.8/errors/el/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/el/ERR_FTP_PUT_ERROR 2014-08-27 07:38:54.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_FTP_PUT_ERROR 2014-09-15 01:32:55.000000000 -0700 @@ -21,15 +21,15 @@

    Το Squid έστειλε τη ακόλουθη εντολή FTP:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    Ο διαχειριστής του μεσολαβητή σας είναι ο %w.


    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/el/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/el/ERR_FTP_PUT_MODIFIED 2014-08-27 07:38:55.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_FTP_PUT_MODIFIED 2014-09-15 01:32:56.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/el/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/el/ERR_FTP_UNAVAILABLE 2014-08-27 07:38:56.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_FTP_UNAVAILABLE 2014-09-15 01:32:57.000000000 -0700 @@ -22,13 +22,13 @@

    Το Squid έστειλε τη ακόλουθη εντολή FTP:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Ο διαχειριστής του μεσολαβητή σας είναι ο %w.

    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_GATEWAY_FAILURE squid-3.4.8/errors/el/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/el/ERR_GATEWAY_FAILURE 2014-08-27 07:38:57.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_GATEWAY_FAILURE 2014-09-15 01:32:58.000000000 -0700 @@ -17,13 +17,13 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_ICAP_FAILURE squid-3.4.8/errors/el/ERR_ICAP_FAILURE --- squid-3.4.7/errors/el/ERR_ICAP_FAILURE 2014-08-27 07:38:58.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_ICAP_FAILURE 2014-09-15 01:32:59.000000000 -0700 @@ -17,20 +17,20 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    Το σύστημα ενημέρωσε ότι: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    Some possible problems are:

      -
    • -
    • +
    • The ICAP server is not reachable.

    • +
    • An Illegal response was received from the ICAP server.


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_INVALID_REQ squid-3.4.8/errors/el/ERR_INVALID_REQ --- squid-3.4.7/errors/el/ERR_INVALID_REQ 2014-08-27 07:38:59.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_INVALID_REQ 2014-09-15 01:33:00.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R

    Some possible problems are:

    @@ -31,7 +31,7 @@
  • Η αίτηση είναι υπερμεγέθης.

  • Έλειπες Περιεχόμενο- Μήκος για τις αιτήσεις POST ή PUT

  • Άκυροι χαρακτήρες στο όνομα υπολογιστή, οι υπογεγραμμένες δεν επιτρέπονται.

  • -
  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • Ο διαχειριστής του μεσολαβητή σας είναι ο %w.

    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_INVALID_RESP squid-3.4.8/errors/el/ERR_INVALID_RESP --- squid-3.4.7/errors/el/ERR_INVALID_RESP 2014-08-27 07:39:00.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_INVALID_RESP 2014-09-15 01:33:01.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R
    -

    +

    The HTTP Response message received from the contacted server could not be understood or was otherwise malformed. Please contact the site operator.

    -

    +

    Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

    Ο διαχειριστής του μεσολαβητή σας είναι ο %w.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_INVALID_URL squid-3.4.8/errors/el/ERR_INVALID_URL --- squid-3.4.7/errors/el/ERR_INVALID_URL 2014-08-27 07:39:01.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_INVALID_URL 2014-09-15 01:33:02.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Λανθασμένη Διεύθυνση

    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_LIFETIME_EXP squid-3.4.8/errors/el/ERR_LIFETIME_EXP --- squid-3.4.7/errors/el/ERR_LIFETIME_EXP 2014-08-27 07:39:02.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_LIFETIME_EXP 2014-09-15 01:33:03.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Έληξε ο Χρόνος Σύνδεσής

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_NO_RELAY squid-3.4.8/errors/el/ERR_NO_RELAY --- squid-3.4.7/errors/el/ERR_NO_RELAY 2014-08-27 07:39:03.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_NO_RELAY 2014-09-15 01:33:04.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Δεν υπάρχει Wais Relay

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/el/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/el/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:39:04.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:33:05.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Δεν βρέθηκε έγκυρο αντίγραφο στην μνήμη και έχει καθοριστεί η επιλογή only-if-cached.

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_PRECONDITION_FAILED squid-3.4.8/errors/el/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/el/ERR_PRECONDITION_FAILED 2014-08-27 07:39:05.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_PRECONDITION_FAILED 2014-09-15 01:33:06.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_READ_ERROR squid-3.4.8/errors/el/ERR_READ_ERROR --- squid-3.4.7/errors/el/ERR_READ_ERROR 2014-08-27 07:39:06.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_READ_ERROR 2014-09-15 01:33:06.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Σφάλμα Ανάγνωσης

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_READ_TIMEOUT squid-3.4.8/errors/el/ERR_READ_TIMEOUT --- squid-3.4.7/errors/el/ERR_READ_TIMEOUT 2014-08-27 07:39:07.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_READ_TIMEOUT 2014-09-15 01:33:07.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Τέλος Χρόνου Ανάγνωσης

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/el/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/el/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:39:08.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:33:08.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,7 +31,7 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    Ο διαχειριστής του μεσολαβητή σας είναι ο %w.


    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_SHUTTING_DOWN squid-3.4.8/errors/el/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/el/ERR_SHUTTING_DOWN 2014-08-27 07:39:09.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_SHUTTING_DOWN 2014-09-15 01:33:09.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    @@ -27,7 +27,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_SOCKET_FAILURE squid-3.4.8/errors/el/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/el/ERR_SOCKET_FAILURE 2014-08-27 07:39:10.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_SOCKET_FAILURE 2014-09-15 01:33:10.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Σφάλμα Σύνδεσης

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_TOO_BIG squid-3.4.8/errors/el/ERR_TOO_BIG --- squid-3.4.7/errors/el/ERR_TOO_BIG 2014-08-27 07:39:11.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_TOO_BIG 2014-09-15 01:33:11.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Το αίτημα ή η απάντηση είναι υπερμεγέθη.

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/el/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/el/ERR_UNSUP_HTTPVERSION 2014-08-27 07:39:12.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_UNSUP_HTTPVERSION 2014-09-15 01:33:12.000000000 -0700 @@ -12,18 +12,18 @@

    ΣΦΑΛΜΑ

    -

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    Ο διαχειριστής του μεσολαβητή σας είναι ο %w.


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_UNSUP_REQ squid-3.4.8/errors/el/ERR_UNSUP_REQ --- squid-3.4.7/errors/el/ERR_UNSUP_REQ 2014-08-27 07:39:13.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_UNSUP_REQ 2014-09-15 01:33:13.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Μη υποστηριζόμενη μέθοδος αίτησης και πρωτόκολλο

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_URN_RESOLVE squid-3.4.8/errors/el/ERR_URN_RESOLVE --- squid-3.4.7/errors/el/ERR_URN_RESOLVE 2014-08-27 07:39:14.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_URN_RESOLVE 2014-09-15 01:33:14.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    Cannot Resolve URN

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_WRITE_ERROR squid-3.4.8/errors/el/ERR_WRITE_ERROR --- squid-3.4.7/errors/el/ERR_WRITE_ERROR 2014-08-27 07:39:15.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_WRITE_ERROR 2014-09-15 01:33:15.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Σφάλμα Εγγραφής

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/el/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/el/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/el/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:39:16.000000000 -0700 +++ squid-3.4.8/errors/el/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:33:15.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Απάντηση Μηδενικού Μεγέθους

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/es/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/es/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/es/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:39:57.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:33:56.000000000 -0700 @@ -20,10 +20,10 @@

    Se encontró el siguiente error al intentar recuperar la dirección URL: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    Estos límites han sido establecidos por el proveedor de servicios de Internet que opera este caché. Por favor, comuníquese con ellos directamente si cree que esto es un error

    Su administrador del caché es %w.

    diff -u -r -N squid-3.4.7/errors/es/ERR_CANNOT_FORWARD squid-3.4.8/errors/es/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/es/ERR_CANNOT_FORWARD 2014-08-27 07:40:02.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_CANNOT_FORWARD 2014-09-15 01:34:01.000000000 -0700 @@ -23,13 +23,13 @@

    Imposibilidad de enviar la petición en este momento.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    Algunos posibles problemas son:

      -
    • -
    • -
    • +
    • An Internet connection needed to access this domains origin servers may be down.
    • +
    • All configured parent caches may be currently unreachable.
    • +
    • The administrator may not allow this cache to make direct connections to origin servers.

    Su administrador del caché es %w.

    diff -u -r -N squid-3.4.7/errors/es/ERR_CONFLICT_HOST squid-3.4.8/errors/es/ERR_CONFLICT_HOST --- squid-3.4.7/errors/es/ERR_CONFLICT_HOST 2014-08-27 07:40:03.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_CONFLICT_HOST 2014-09-15 01:34:02.000000000 -0700 @@ -20,15 +20,15 @@

    Se encontró el siguiente error al intentar recuperar la dirección URL: %U

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    Algunos posibles problemas son:

      -
    • -
    • +
    • The domain may have moved very recently. Trying again will resolve that.
    • +
    • The website may require you to use a local country-based version. Using your ISP provided DNS server(s) should resolve that.

    Su administrador del caché es %w.

    diff -u -r -N squid-3.4.7/errors/es/ERR_DIR_LISTING squid-3.4.8/errors/es/ERR_DIR_LISTING --- squid-3.4.7/errors/es/ERR_DIR_LISTING 2014-08-27 07:40:05.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_DIR_LISTING 2014-09-15 01:34:04.000000000 -0700 @@ -19,13 +19,13 @@

    Contenido del Directorio:

    -
    
    +
    %z
    Parent Directory (Root Directory)
    - + %g diff -u -r -N squid-3.4.7/errors/es/ERR_DNS_FAIL squid-3.4.8/errors/es/ERR_DNS_FAIL --- squid-3.4.7/errors/es/ERR_DNS_FAIL 2014-08-27 07:40:06.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_DNS_FAIL 2014-09-15 01:34:05.000000000 -0700 @@ -25,7 +25,7 @@

    El servidor DNS devolvió:

    -
    
    +
    %z

    Esto significa que el caché no ha sido capaz de resolver el nombre de máquina presente en la URL. Compruebe que la dirección sea correcta.

    diff -u -r -N squid-3.4.7/errors/es/ERR_ESI squid-3.4.8/errors/es/ERR_ESI --- squid-3.4.7/errors/es/ERR_ESI 2014-08-27 07:40:07.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_ESI 2014-09-15 01:34:06.000000000 -0700 @@ -25,7 +25,7 @@

    El procesador ESI devolvió:

    -
    
    +
    %Z

    Esto significa que el sustituto no fue capaz de procesar la plantilla ESI. Por favor, informe de este error al administrador web.

    diff -u -r -N squid-3.4.7/errors/es/ERR_FTP_FAILURE squid-3.4.8/errors/es/ERR_FTP_FAILURE --- squid-3.4.7/errors/es/ERR_FTP_FAILURE 2014-08-27 07:40:10.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_FTP_FAILURE 2014-09-15 01:34:09.000000000 -0700 @@ -21,13 +21,13 @@

    Squid ha enviado el siguiente comando FTP:

    -
    
    +
    %f

    El servidor ha respondido con:

    -
    
    -
    
    +
    %F
    +
    %g

    Su administrador del caché es %w.

    diff -u -r -N squid-3.4.7/errors/es/ERR_FTP_FORBIDDEN squid-3.4.8/errors/es/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/es/ERR_FTP_FORBIDDEN 2014-08-27 07:40:11.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_FTP_FORBIDDEN 2014-09-15 01:34:10.000000000 -0700 @@ -21,13 +21,13 @@

    Squid ha enviado el siguiente comando FTP:

    -
    
    +
    %f

    El servidor ha respondido con:

    -
    
    -
    
    +
    %F
    +
    %g

    Su administrador del caché es %w.

    diff -u -r -N squid-3.4.7/errors/es/ERR_FTP_NOT_FOUND squid-3.4.8/errors/es/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/es/ERR_FTP_NOT_FOUND 2014-08-27 07:40:12.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_FTP_NOT_FOUND 2014-09-15 01:34:11.000000000 -0700 @@ -21,13 +21,13 @@

    Squid ha enviado el siguiente comando FTP:

    -
    
    +
    %f

    El servidor ha respondido con:

    -
    
    -
    
    +
    %F
    +
    %g

    Esto podria ser causado por una URL del FTP con ruta absoluta (La cual no cumple con el RFC 1738). si esto es la causa, entonces el archivo puede ser buscado en %B.

    diff -u -r -N squid-3.4.7/errors/es/ERR_FTP_PUT_ERROR squid-3.4.8/errors/es/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/es/ERR_FTP_PUT_ERROR 2014-08-27 07:40:14.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_FTP_PUT_ERROR 2014-09-15 01:34:13.000000000 -0700 @@ -21,12 +21,12 @@

    Squid ha enviado el siguiente comando FTP:

    -
    
    +
    %f

    El servidor ha respondido con:

    -
    
    +
    %F

    Esto significa que el servidor FTP puede que no tenga permiso o espacio para almacenar el archivo. Compruebe la ruta, permisos, espacio en disco y vuelva a intentarlo.

    diff -u -r -N squid-3.4.7/errors/es/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/es/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/es/ERR_FTP_UNAVAILABLE 2014-08-27 07:40:16.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_FTP_UNAVAILABLE 2014-09-15 01:34:15.000000000 -0700 @@ -22,13 +22,13 @@

    Squid ha enviado el siguiente comando FTP:

    -
    
    +
    %f

    El servidor ha respondido con:

    -
    
    -
    
    +
    %F
    +
    %g

    Su administrador del caché es %w.

    diff -u -r -N squid-3.4.7/errors/es/ERR_GATEWAY_FAILURE squid-3.4.8/errors/es/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/es/ERR_GATEWAY_FAILURE 2014-08-27 07:40:17.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_GATEWAY_FAILURE 2014-09-15 01:34:16.000000000 -0700 @@ -20,10 +20,10 @@

    Se encontró el siguiente error al intentar recuperar la dirección URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    diff -u -r -N squid-3.4.7/errors/es/ERR_INVALID_REQ squid-3.4.8/errors/es/ERR_INVALID_REQ --- squid-3.4.7/errors/es/ERR_INVALID_REQ 2014-08-27 07:40:19.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_INVALID_REQ 2014-09-15 01:34:17.000000000 -0700 @@ -20,7 +20,7 @@

    Petición Incorrecta se ha encontrado un error mientras se intentaba procesar la petición:

    -
    
    +
    %R

    Algunos posibles problemas son:

    diff -u -r -N squid-3.4.7/errors/es/ERR_INVALID_RESP squid-3.4.8/errors/es/ERR_INVALID_RESP --- squid-3.4.7/errors/es/ERR_INVALID_RESP 2014-08-27 07:40:20.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_INVALID_RESP 2014-09-15 01:34:18.000000000 -0700 @@ -20,7 +20,7 @@

    Respuesta Incorrecta se ha encontrado un error mientras se intentaba procesar la petición:

    -
    
    +
    %R

    El mensaje de Respuesta HTTP recibido del servidor contactado no pudo ser entendido o tenía alguna malformación. Por favor contacte al operador del sitio.

    diff -u -r -N squid-3.4.7/errors/es/ERR_PRECONDITION_FAILED squid-3.4.8/errors/es/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/es/ERR_PRECONDITION_FAILED 2014-08-27 07:40:25.000000000 -0700 +++ squid-3.4.8/errors/es/ERR_PRECONDITION_FAILED 2014-09-15 01:34:23.000000000 -0700 @@ -20,12 +20,12 @@

    Se encontró el siguiente error al intentar recuperar la dirección URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    diff -u -r -N squid-3.4.7/errors/et/ERR_ACCESS_DENIED squid-3.4.8/errors/et/ERR_ACCESS_DENIED --- squid-3.4.7/errors/et/ERR_ACCESS_DENIED 2014-08-27 07:40:36.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_ACCESS_DENIED 2014-09-15 01:34:35.000000000 -0700 @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/et/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/et/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:40:37.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:34:36.000000000 -0700 @@ -20,10 +20,10 @@

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    Teie teenusepakkuja aadress on %w.

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_AGENT_CONFIGURE squid-3.4.8/errors/et/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/et/ERR_AGENT_CONFIGURE 2014-08-27 07:40:38.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_AGENT_CONFIGURE 2014-09-15 01:34:37.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Directorio superior (Root Directory)Directorio superior (Directorio Raiz)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_DNS_FAIL squid-3.4.8/errors/et/ERR_DNS_FAIL --- squid-3.4.7/errors/et/ERR_DNS_FAIL 2014-08-27 07:40:46.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_DNS_FAIL 2014-09-15 01:34:45.000000000 -0700 @@ -25,7 +25,7 @@

    DNS server vastas:

    -
    
    +
    %z

    Mis tähendab vahemälu server ei suutnud lahendada URLis antud hosti nime. Palun kontrollige aadressi korrektsust.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_ESI squid-3.4.8/errors/et/ERR_ESI --- squid-3.4.7/errors/et/ERR_ESI 2014-08-27 07:40:47.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_ESI 2014-09-15 01:34:46.000000000 -0700 @@ -20,23 +20,23 @@

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/et/ERR_FORWARDING_DENIED squid-3.4.8/errors/et/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/et/ERR_FORWARDING_DENIED 2014-08-27 07:40:47.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_FORWARDING_DENIED 2014-09-15 01:34:46.000000000 -0700 @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_FTP_DISABLED squid-3.4.8/errors/et/ERR_FTP_DISABLED --- squid-3.4.7/errors/et/ERR_FTP_DISABLED 2014-08-27 07:40:48.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_FTP_DISABLED 2014-09-15 01:34:47.000000000 -0700 @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_FTP_FAILURE squid-3.4.8/errors/et/ERR_FTP_FAILURE --- squid-3.4.7/errors/et/ERR_FTP_FAILURE 2014-08-27 07:40:49.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_FTP_FAILURE 2014-09-15 01:34:48.000000000 -0700 @@ -21,13 +21,13 @@

    Squid saatis järgneva FTP käsu:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Teie teenusepakkuja aadress on %w.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_FTP_FORBIDDEN squid-3.4.8/errors/et/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/et/ERR_FTP_FORBIDDEN 2014-08-27 07:40:50.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_FTP_FORBIDDEN 2014-09-15 01:34:49.000000000 -0700 @@ -21,13 +21,13 @@

    Squid saatis järgneva FTP käsu:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Teie teenusepakkuja aadress on %w.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_FTP_NOT_FOUND squid-3.4.8/errors/et/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/et/ERR_FTP_NOT_FOUND 2014-08-27 07:40:51.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_FTP_NOT_FOUND 2014-09-15 01:34:50.000000000 -0700 @@ -21,13 +21,13 @@

    Squid saatis järgneva FTP käsu:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_FTP_PUT_CREATED squid-3.4.8/errors/et/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/et/ERR_FTP_PUT_CREATED 2014-08-27 07:40:52.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_FTP_PUT_CREATED 2014-09-15 01:34:51.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_FTP_PUT_ERROR squid-3.4.8/errors/et/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/et/ERR_FTP_PUT_ERROR 2014-08-27 07:40:53.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_FTP_PUT_ERROR 2014-09-15 01:34:52.000000000 -0700 @@ -21,15 +21,15 @@

    Squid saatis järgneva FTP käsu:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    Teie teenusepakkuja aadress on %w.


    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/et/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/et/ERR_FTP_PUT_MODIFIED 2014-08-27 07:40:54.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_FTP_PUT_MODIFIED 2014-09-15 01:34:53.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/et/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/et/ERR_FTP_UNAVAILABLE 2014-08-27 07:40:55.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_FTP_UNAVAILABLE 2014-09-15 01:34:54.000000000 -0700 @@ -22,13 +22,13 @@

    Squid saatis järgneva FTP käsu:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Teie teenusepakkuja aadress on %w.

    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_GATEWAY_FAILURE squid-3.4.8/errors/et/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/et/ERR_GATEWAY_FAILURE 2014-08-27 07:40:56.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_GATEWAY_FAILURE 2014-09-15 01:34:55.000000000 -0700 @@ -20,10 +20,10 @@

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_ICAP_FAILURE squid-3.4.8/errors/et/ERR_ICAP_FAILURE --- squid-3.4.7/errors/et/ERR_ICAP_FAILURE 2014-08-27 07:40:57.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_ICAP_FAILURE 2014-09-15 01:34:56.000000000 -0700 @@ -20,17 +20,17 @@

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    Süsteem vastas: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    Some possible problems are:


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_INVALID_REQ squid-3.4.8/errors/et/ERR_INVALID_REQ --- squid-3.4.7/errors/et/ERR_INVALID_REQ 2014-08-27 07:40:58.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_INVALID_REQ 2014-09-15 01:34:57.000000000 -0700 @@ -20,7 +20,7 @@

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R

    Some possible problems are:

    @@ -31,7 +31,7 @@
  • Päring võib olla liiga suur

  • POST või PUT päringutel puudub Content-Length

  • keelatud sümbolid hosti nimes; alakriipsud pole lubatud

  • -
  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • Teie teenusepakkuja aadress on %w.

    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_INVALID_RESP squid-3.4.8/errors/et/ERR_INVALID_RESP --- squid-3.4.7/errors/et/ERR_INVALID_RESP 2014-08-27 07:40:59.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_INVALID_RESP 2014-09-15 01:34:58.000000000 -0700 @@ -20,7 +20,7 @@

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R

    Vasti võetud HTTP vastus on tundmatu või muidu katki. Palun kontakteeruge saidi operaatoriga.

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_INVALID_URL squid-3.4.8/errors/et/ERR_INVALID_URL --- squid-3.4.7/errors/et/ERR_INVALID_URL 2014-08-27 07:41:00.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_INVALID_URL 2014-09-15 01:34:59.000000000 -0700 @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_LIFETIME_EXP squid-3.4.8/errors/et/ERR_LIFETIME_EXP --- squid-3.4.7/errors/et/ERR_LIFETIME_EXP 2014-08-27 07:41:01.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_LIFETIME_EXP 2014-09-15 01:34:59.000000000 -0700 @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_NO_RELAY squid-3.4.8/errors/et/ERR_NO_RELAY --- squid-3.4.7/errors/et/ERR_NO_RELAY 2014-08-27 07:41:02.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_NO_RELAY 2014-09-15 01:35:00.000000000 -0700 @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/et/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/et/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:41:03.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:35:01.000000000 -0700 @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_PRECONDITION_FAILED squid-3.4.8/errors/et/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/et/ERR_PRECONDITION_FAILED 2014-08-27 07:41:04.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_PRECONDITION_FAILED 2014-09-15 01:35:02.000000000 -0700 @@ -20,12 +20,12 @@

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_READ_ERROR squid-3.4.8/errors/et/ERR_READ_ERROR --- squid-3.4.7/errors/et/ERR_READ_ERROR 2014-08-27 07:41:05.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_READ_ERROR 2014-09-15 01:35:03.000000000 -0700 @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_READ_TIMEOUT squid-3.4.8/errors/et/ERR_READ_TIMEOUT --- squid-3.4.7/errors/et/ERR_READ_TIMEOUT 2014-08-27 07:41:06.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_READ_TIMEOUT 2014-09-15 01:35:04.000000000 -0700 @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/et/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/et/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:41:07.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:35:05.000000000 -0700 @@ -20,7 +20,7 @@

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,7 +31,7 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    Teie teenusepakkuja aadress on %w.


    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_SHUTTING_DOWN squid-3.4.8/errors/et/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/et/ERR_SHUTTING_DOWN 2014-08-27 07:41:08.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_SHUTTING_DOWN 2014-09-15 01:35:06.000000000 -0700 @@ -27,7 +27,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_SOCKET_FAILURE squid-3.4.8/errors/et/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/et/ERR_SOCKET_FAILURE 2014-08-27 07:41:09.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_SOCKET_FAILURE 2014-09-15 01:35:07.000000000 -0700 @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_TOO_BIG squid-3.4.8/errors/et/ERR_TOO_BIG --- squid-3.4.7/errors/et/ERR_TOO_BIG 2014-08-27 07:41:10.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_TOO_BIG 2014-09-15 01:35:08.000000000 -0700 @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/et/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/et/ERR_UNSUP_HTTPVERSION 2014-08-27 07:41:11.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_UNSUP_HTTPVERSION 2014-09-15 01:35:09.000000000 -0700 @@ -12,7 +12,7 @@

    VIGA

    -

    +

    Unsupported HTTP version


    @@ -20,10 +20,10 @@

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    Teie teenusepakkuja aadress on %w.


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_UNSUP_REQ squid-3.4.8/errors/et/ERR_UNSUP_REQ --- squid-3.4.7/errors/et/ERR_UNSUP_REQ 2014-08-27 07:41:12.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_UNSUP_REQ 2014-09-15 01:35:10.000000000 -0700 @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_URN_RESOLVE squid-3.4.8/errors/et/ERR_URN_RESOLVE --- squid-3.4.7/errors/et/ERR_URN_RESOLVE 2014-08-27 07:41:13.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_URN_RESOLVE 2014-09-15 01:35:11.000000000 -0700 @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_WRITE_ERROR squid-3.4.8/errors/et/ERR_WRITE_ERROR --- squid-3.4.7/errors/et/ERR_WRITE_ERROR 2014-08-27 07:41:14.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_WRITE_ERROR 2014-09-15 01:35:12.000000000 -0700 @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/et/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/et/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/et/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:41:15.000000000 -0700 +++ squid-3.4.8/errors/et/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:35:13.000000000 -0700 @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/fa/ERR_ACCESS_DENIED squid-3.4.8/errors/fa/ERR_ACCESS_DENIED --- squid-3.4.7/errors/fa/ERR_ACCESS_DENIED 2014-08-27 07:41:16.000000000 -0700 +++ squid-3.4.8/errors/fa/ERR_ACCESS_DENIED 2014-09-15 01:35:14.000000000 -0700 @@ -12,12 +12,12 @@

    خطا

    -

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    دسترسی رد شد.

    @@ -25,7 +25,7 @@

    Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

    -

    +

    Your cache administrator is %w.


    diff -u -r -N squid-3.4.7/errors/fa/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/fa/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/fa/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:41:17.000000000 -0700 +++ squid-3.4.8/errors/fa/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:35:15.000000000 -0700 @@ -12,21 +12,21 @@

    خطا

    -

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Time Quota Exceeded.

    -

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.


    diff -u -r -N squid-3.4.7/errors/fa/ERR_AGENT_CONFIGURE squid-3.4.8/errors/fa/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/fa/ERR_AGENT_CONFIGURE 2014-08-27 07:41:18.000000000 -0700 +++ squid-3.4.8/errors/fa/ERR_AGENT_CONFIGURE 2014-09-15 01:35:16.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Parent Directory (Root Directory)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_DNS_FAIL squid-3.4.8/errors/fi/ERR_DNS_FAIL --- squid-3.4.7/errors/fi/ERR_DNS_FAIL 2014-08-27 07:42:04.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_DNS_FAIL 2014-09-15 01:36:01.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Nimelle %H ei voitu määrittää IP-osoitetta.

    @@ -25,7 +25,7 @@

    DNS-palvelin palautti viestin:

    -
    
    +
    %z

    Tämä tarkoittaa, että Välityspalvelin ei voinut selvittää URL:ssä esitettyä palvelinnimeä. Tarkista, että osoite on oikein.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_ESI squid-3.4.8/errors/fi/ERR_ESI --- squid-3.4.7/errors/fi/ERR_ESI 2014-08-27 07:42:05.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_ESI 2014-09-15 01:36:02.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/fi/ERR_FORWARDING_DENIED squid-3.4.8/errors/fi/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/fi/ERR_FORWARDING_DENIED 2014-08-27 07:42:06.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_FORWARDING_DENIED 2014-09-15 01:36:03.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Edelleenohjaus evätty.

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_FTP_DISABLED squid-3.4.8/errors/fi/ERR_FTP_DISABLED --- squid-3.4.7/errors/fi/ERR_FTP_DISABLED 2014-08-27 07:42:07.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_FTP_DISABLED 2014-09-15 01:36:04.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    FTP on poistettu käytöstä

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_FTP_FAILURE squid-3.4.8/errors/fi/ERR_FTP_FAILURE --- squid-3.4.7/errors/fi/ERR_FTP_FAILURE 2014-08-27 07:42:08.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_FTP_FAILURE 2014-09-15 01:36:05.000000000 -0700 @@ -21,13 +21,13 @@

    Squid lähetti seuraavan FTP-komennon:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Your cache administrator is %w.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_FTP_FORBIDDEN squid-3.4.8/errors/fi/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/fi/ERR_FTP_FORBIDDEN 2014-08-27 07:42:09.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_FTP_FORBIDDEN 2014-09-15 01:36:06.000000000 -0700 @@ -17,17 +17,17 @@
    -

    +

    An FTP authentication failure occurred while trying to retrieve the URL: %U

    Squid lähetti seuraavan FTP-komennon:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Your cache administrator is %w.

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_FTP_NOT_FOUND squid-3.4.8/errors/fi/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/fi/ERR_FTP_NOT_FOUND 2014-08-27 07:42:10.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_FTP_NOT_FOUND 2014-09-15 01:36:07.000000000 -0700 @@ -17,20 +17,20 @@
    -

    +

    The following URL could not be retrieved: %U

    Squid lähetti seuraavan FTP-komennon:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    Your cache administrator is %w.


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_FTP_PUT_CREATED squid-3.4.8/errors/fi/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/fi/ERR_FTP_PUT_CREATED 2014-08-27 07:42:11.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_FTP_PUT_CREATED 2014-09-15 01:36:08.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_FTP_PUT_ERROR squid-3.4.8/errors/fi/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/fi/ERR_FTP_PUT_ERROR 2014-08-27 07:42:12.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_FTP_PUT_ERROR 2014-09-15 01:36:09.000000000 -0700 @@ -21,15 +21,15 @@

    Squid lähetti seuraavan FTP-komennon:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    Your cache administrator is %w.


    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/fi/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/fi/ERR_FTP_PUT_MODIFIED 2014-08-27 07:42:13.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_FTP_PUT_MODIFIED 2014-09-15 01:36:10.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/fi/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/fi/ERR_FTP_UNAVAILABLE 2014-08-27 07:42:14.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_FTP_UNAVAILABLE 2014-09-15 01:36:11.000000000 -0700 @@ -17,18 +17,18 @@
    -

    +

    The FTP server was too busy to retrieve the URL: %U

    Squid lähetti seuraavan FTP-komennon:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    Your cache administrator is %w.

    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_GATEWAY_FAILURE squid-3.4.8/errors/fi/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/fi/ERR_GATEWAY_FAILURE 2014-08-27 07:42:15.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_GATEWAY_FAILURE 2014-09-15 01:36:12.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    -

    +

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    Your cache administrator is %w.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_ICAP_FAILURE squid-3.4.8/errors/fi/ERR_ICAP_FAILURE --- squid-3.4.7/errors/fi/ERR_ICAP_FAILURE 2014-08-27 07:42:16.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_ICAP_FAILURE 2014-09-15 01:36:13.000000000 -0700 @@ -17,20 +17,20 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    Järjestelmä palautti viestin:%E

    -

    +

    This means that some aspect of the ICAP communication failed.

    Mahdollisia ongelmia:

      -
    • -
    • +
    • The ICAP server is not reachable.

    • +
    • An Illegal response was received from the ICAP server.


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_INVALID_REQ squid-3.4.8/errors/fi/ERR_INVALID_REQ --- squid-3.4.7/errors/fi/ERR_INVALID_REQ 2014-08-27 07:42:17.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_INVALID_REQ 2014-09-15 01:36:14.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R

    Mahdollisia ongelmia:

    @@ -31,7 +31,7 @@
  • Hakupyyntö on liian suuri

  • Content-Length puuttuu POST- tai PUT-hakupyynnostä

  • Virheellinen merkki palvelinnimessä; alaviivat eivät ole sallittuja

  • -
  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • Your cache administrator is %w.

    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_INVALID_RESP squid-3.4.8/errors/fi/ERR_INVALID_RESP --- squid-3.4.7/errors/fi/ERR_INVALID_RESP 2014-08-27 07:42:18.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_INVALID_RESP 2014-09-15 01:36:15.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R

    The HTTP Response message received from the contacted server could not be understood or was otherwise malformed. Please contact the site operator.

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_INVALID_URL squid-3.4.8/errors/fi/ERR_INVALID_URL --- squid-3.4.7/errors/fi/ERR_INVALID_URL 2014-08-27 07:42:19.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_INVALID_URL 2014-09-15 01:36:16.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Virheellinen URL-osoite

    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_LIFETIME_EXP squid-3.4.8/errors/fi/ERR_LIFETIME_EXP --- squid-3.4.7/errors/fi/ERR_LIFETIME_EXP 2014-08-27 07:42:20.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_LIFETIME_EXP 2014-09-15 01:36:16.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Yhteyden elinaika umpeutui

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_NO_RELAY squid-3.4.8/errors/fi/ERR_NO_RELAY --- squid-3.4.7/errors/fi/ERR_NO_RELAY 2014-08-27 07:42:21.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_NO_RELAY 2014-09-15 01:36:17.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Ei WAIS-linkkiä

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/fi/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/fi/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:42:22.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:36:18.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Valid document was not found in the cache and only-if-cached directive was specified.

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_PRECONDITION_FAILED squid-3.4.8/errors/fi/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/fi/ERR_PRECONDITION_FAILED 2014-08-27 07:42:22.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_PRECONDITION_FAILED 2014-09-15 01:36:19.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_READ_ERROR squid-3.4.8/errors/fi/ERR_READ_ERROR --- squid-3.4.7/errors/fi/ERR_READ_ERROR 2014-08-27 07:42:23.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_READ_ERROR 2014-09-15 01:36:20.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Lukuvirhe

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_READ_TIMEOUT squid-3.4.8/errors/fi/ERR_READ_TIMEOUT --- squid-3.4.7/errors/fi/ERR_READ_TIMEOUT 2014-08-27 07:42:24.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_READ_TIMEOUT 2014-09-15 01:36:21.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Lukemisen aikakatkaisu

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/fi/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/fi/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:42:25.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:36:22.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,7 +31,7 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    Your cache administrator is %w.


    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_SHUTTING_DOWN squid-3.4.8/errors/fi/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/fi/ERR_SHUTTING_DOWN 2014-08-27 07:42:26.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_SHUTTING_DOWN 2014-09-15 01:36:23.000000000 -0700 @@ -17,9 +17,9 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    Your cache administrator is %w.


    @@ -27,7 +27,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_SOCKET_FAILURE squid-3.4.8/errors/fi/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/fi/ERR_SOCKET_FAILURE 2014-08-27 07:42:27.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_SOCKET_FAILURE 2014-09-15 01:36:24.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Sokettivirhe

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_TOO_BIG squid-3.4.8/errors/fi/ERR_TOO_BIG --- squid-3.4.7/errors/fi/ERR_TOO_BIG 2014-08-27 07:42:28.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_TOO_BIG 2014-09-15 01:36:25.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    The request or reply is too large.

    -

    -

    -

    +

    If you are making a POST or PUT request, then the item you are trying to upload is too large.

    +

    If you are making a GET request, then the item you are trying to download is too large.

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    Your cache administrator is %w.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/fi/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/fi/ERR_UNSUP_HTTPVERSION 2014-08-27 07:42:29.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_UNSUP_HTTPVERSION 2014-09-15 01:36:26.000000000 -0700 @@ -12,18 +12,18 @@

    VIRHE

    -

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    Your cache administrator is %w.


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_UNSUP_REQ squid-3.4.8/errors/fi/ERR_UNSUP_REQ --- squid-3.4.7/errors/fi/ERR_UNSUP_REQ 2014-08-27 07:42:30.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_UNSUP_REQ 2014-09-15 01:36:27.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Hakupyynnon tyyppi ja yhteyskäytäntö ei tuettu

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_URN_RESOLVE squid-3.4.8/errors/fi/ERR_URN_RESOLVE --- squid-3.4.7/errors/fi/ERR_URN_RESOLVE 2014-08-27 07:42:31.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_URN_RESOLVE 2014-09-15 01:36:28.000000000 -0700 @@ -12,12 +12,12 @@

    VIRHE

    -

    +

    A URL for the requested URN could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    URN:ää ei voitu selvittää

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_WRITE_ERROR squid-3.4.8/errors/fi/ERR_WRITE_ERROR --- squid-3.4.7/errors/fi/ERR_WRITE_ERROR 2014-08-27 07:42:32.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_WRITE_ERROR 2014-09-15 01:36:29.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Virhe kirjoitettaessa

    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/fi/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/fi/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/fi/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:42:33.000000000 -0700 +++ squid-3.4.8/errors/fi/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:36:30.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Nollan pituinen vastaus

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/fr/ERR_CANNOT_FORWARD squid-3.4.8/errors/fr/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/fr/ERR_CANNOT_FORWARD 2014-08-27 07:42:40.000000000 -0700 +++ squid-3.4.8/errors/fr/ERR_CANNOT_FORWARD 2014-09-15 01:36:37.000000000 -0700 @@ -23,13 +23,13 @@

    En ce moment, il est impossible de retransmettre cette requête.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    Problèmes possibles :

      -
    • -
    • -
    • +
    • An Internet connection needed to access this domains origin servers may be down.
    • +
    • All configured parent caches may be currently unreachable.
    • +
    • The administrator may not allow this cache to make direct connections to origin servers.

    Votre administrateur proxy est %w.

    diff -u -r -N squid-3.4.7/errors/fr/ERR_CONFLICT_HOST squid-3.4.8/errors/fr/ERR_CONFLICT_HOST --- squid-3.4.7/errors/fr/ERR_CONFLICT_HOST 2014-08-27 07:42:41.000000000 -0700 +++ squid-3.4.8/errors/fr/ERR_CONFLICT_HOST 2014-09-15 01:36:38.000000000 -0700 @@ -20,15 +20,15 @@

    L'erreur suivante s'est produite en essayant d'accéder à l'URL : %U

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    Problèmes possibles :

      -
    • -
    • +
    • The domain may have moved very recently. Trying again will resolve that.
    • +
    • The website may require you to use a local country-based version. Using your ISP provided DNS server(s) should resolve that.

    Votre administrateur proxy est %w.

    diff -u -r -N squid-3.4.7/errors/fr/ERR_DIR_LISTING squid-3.4.8/errors/fr/ERR_DIR_LISTING --- squid-3.4.7/errors/fr/ERR_DIR_LISTING 2014-08-27 07:42:43.000000000 -0700 +++ squid-3.4.8/errors/fr/ERR_DIR_LISTING 2014-09-15 01:36:40.000000000 -0700 @@ -25,7 +25,7 @@
    Parent Directory (Root Directory)
    - + %g diff -u -r -N squid-3.4.7/errors/he/ERR_CANNOT_FORWARD squid-3.4.8/errors/he/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/he/ERR_CANNOT_FORWARD 2014-08-27 07:43:21.000000000 -0700 +++ squid-3.4.8/errors/he/ERR_CANNOT_FORWARD 2014-09-15 01:37:16.000000000 -0700 @@ -23,13 +23,13 @@

    לא ניתן להעביר את הבקשה בשלב זה.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    Some possible problems are:

    מנהל השרת הוא %w.

    diff -u -r -N squid-3.4.7/errors/he/ERR_CONFLICT_HOST squid-3.4.8/errors/he/ERR_CONFLICT_HOST --- squid-3.4.7/errors/he/ERR_CONFLICT_HOST 2014-08-27 07:43:22.000000000 -0700 +++ squid-3.4.8/errors/he/ERR_CONFLICT_HOST 2014-09-15 01:37:17.000000000 -0700 @@ -20,15 +20,15 @@

    השגיאה הבאה אירעה בעת ניסיון לפענח את כתובת הURL: %U

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    Some possible problems are:

    מנהל השרת הוא %w.

    diff -u -r -N squid-3.4.7/errors/he/ERR_INVALID_RESP squid-3.4.8/errors/he/ERR_INVALID_RESP --- squid-3.4.7/errors/he/ERR_INVALID_RESP 2014-08-27 07:43:39.000000000 -0700 +++ squid-3.4.8/errors/he/ERR_INVALID_RESP 2014-09-15 01:37:32.000000000 -0700 @@ -25,7 +25,7 @@

    התגובת ה HTTP שהתקבלה מהשרת אינה מובנת או פגומה. אנא צור קשר עם מפעיל האתר.

    -

    +

    Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

    מנהל השרת הוא %w.


    diff -u -r -N squid-3.4.7/errors/hu/ERR_DIR_LISTING squid-3.4.8/errors/hu/ERR_DIR_LISTING --- squid-3.4.7/errors/hu/ERR_DIR_LISTING 2014-08-27 07:44:05.000000000 -0700 +++ squid-3.4.8/errors/hu/ERR_DIR_LISTING 2014-09-15 01:37:57.000000000 -0700 @@ -25,7 +25,7 @@
    Répertoire Parent (Root Directory)Répertoire Parent (Répertoire Racine)
    - + %g diff -u -r -N squid-3.4.7/errors/hy/ERR_DIR_LISTING squid-3.4.8/errors/hy/ERR_DIR_LISTING --- squid-3.4.7/errors/hy/ERR_DIR_LISTING 2014-08-27 07:44:43.000000000 -0700 +++ squid-3.4.8/errors/hy/ERR_DIR_LISTING 2014-09-15 01:38:35.000000000 -0700 @@ -25,7 +25,7 @@
    Szülőkönyvtár (Root Directory)Szülőkönyvtár (Gyökérkönyvtár)
    - + %g diff -u -r -N squid-3.4.7/errors/id/ERR_ACCESS_DENIED squid-3.4.8/errors/id/ERR_ACCESS_DENIED --- squid-3.4.7/errors/id/ERR_ACCESS_DENIED 2014-08-27 07:45:14.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_ACCESS_DENIED 2014-09-15 01:39:06.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Akses Ditolak

    @@ -25,13 +25,13 @@

    Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/id/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/id/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:45:15.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:39:07.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Time Quota Exceeded.

    -

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_AGENT_CONFIGURE squid-3.4.8/errors/id/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/id/ERR_AGENT_CONFIGURE 2014-08-27 07:45:16.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_AGENT_CONFIGURE 2014-09-15 01:39:08.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    -

    +

    ERROR

    +

    Web Browser Configuration


    -

    +

    Your Web Browser configuration needs to be corrected to use this network.

    -

    +

    How to find these settings in your browser:

    For Firefox browsers go to:
      -
    • -
    • +
    • Tools -> Options -> Advanced -> Network -> Connection Settings
    • +
    • In the HTTP proxy box type the proxy name %h and port %b.
    For Internet Explorer browsers go to:
      -
    • -
    • +
    • Tools -> Internet Options -> Connection -> LAN Settings ->Proxy
    • +
    • In the HTTP proxy box type the proxy name %h and port %b.
    For Opera browsers go to:
      -
    • -
    • +
    • Tools -> Preferences -> Advanced -> Network -> Proxy Servers
    • +
    • In the HTTP proxy box type the proxy name %h and port %b.
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_AGENT_WPAD squid-3.4.8/errors/id/ERR_AGENT_WPAD --- squid-3.4.7/errors/id/ERR_AGENT_WPAD 2014-08-27 07:45:17.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_AGENT_WPAD 2014-09-15 01:39:09.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    -

    +

    ERROR

    +

    Web Browser Configuration


    -

    +

    Your Web Browser configuration needs to be corrected to use this network.

    -

    +

    How to find these settings in your browser:

    For Firefox browsers go to:
      -
    • -
    • +
    • Tools -> Options -> Advanced -> Network -> Connection Settings
    • +
    • Select Auto-detect proxy settings for this network
    For Internet Explorer browsers go to:
      -
    • -
    • +
    • Tools -> Internet Options -> Connection -> LAN Settings ->Proxy
    • +
    • Select Automatically detect settings
    For Opera browsers go to:
      -
    • -
    • +
    • Tools -> Preferences -> Advanced -> Network -> Proxy Servers
    • +
    • Select Use Automatic proxy configuration
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_CACHE_ACCESS_DENIED squid-3.4.8/errors/id/ERR_CACHE_ACCESS_DENIED --- squid-3.4.7/errors/id/ERR_CACHE_ACCESS_DENIED 2014-08-27 07:45:18.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_CACHE_ACCESS_DENIED 2014-09-15 01:39:10.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: Cache Access Denied
    -

    +

    ERROR

    Akses Cache Ditolak


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Akses Cache Ditolak

    -

    +

    Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.

    -

    +

    Please contact the cache administrator if you have difficulties authenticating yourself.



    diff -u -r -N squid-3.4.7/errors/id/ERR_CACHE_MGR_ACCESS_DENIED squid-3.4.8/errors/id/ERR_CACHE_MGR_ACCESS_DENIED --- squid-3.4.7/errors/id/ERR_CACHE_MGR_ACCESS_DENIED 2014-08-27 07:45:19.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_CACHE_MGR_ACCESS_DENIED 2014-09-15 01:39:11.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: Cache Manager Access Denied
    -

    +

    ERROR

    Cache manager Akses ditolak.


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Cache manager Akses ditolak.

    -

    +

    Sorry, you are not currently allowed to request %U from this cache manager until you have authenticated yourself.

    -

    +

    Please contact the cache administrator if you have difficulties authenticating yourself or, if you are the administrator, read Squid documentation on cache manager interface and check cache log for more detailed error messages.



    diff -u -r -N squid-3.4.7/errors/id/ERR_CANNOT_FORWARD squid-3.4.8/errors/id/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/id/ERR_CANNOT_FORWARD 2014-08-27 07:45:20.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_CANNOT_FORWARD 2014-09-15 01:39:12.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unable to forward this request at this time.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    -

    +

    Some possible problems are:

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_CONFLICT_HOST squid-3.4.8/errors/id/ERR_CONFLICT_HOST --- squid-3.4.7/errors/id/ERR_CONFLICT_HOST 2014-08-27 07:45:20.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_CONFLICT_HOST 2014-09-15 01:39:13.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    -

    +

    Some possible problems are:

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_CONNECT_FAIL squid-3.4.8/errors/id/ERR_CONNECT_FAIL --- squid-3.4.7/errors/id/ERR_CONNECT_FAIL 2014-08-27 07:45:21.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_CONNECT_FAIL 2014-09-15 01:39:14.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Connection to %I failed.

    -

    +

    The system returned: %E

    -

    +

    The remote host or network may be down. Please try the request again.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_DIR_LISTING squid-3.4.8/errors/id/ERR_DIR_LISTING --- squid-3.4.7/errors/id/ERR_DIR_LISTING 2014-08-27 07:45:22.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_DIR_LISTING 2014-09-15 01:39:15.000000000 -0700 @@ -1,7 +1,7 @@ - +Directory: %U
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Ծնողական դիրեկտորիա (Root Directory)Ծնողական դիրեկտորիա (Արմատական դիրեկտորիա)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/id/ERR_DNS_FAIL squid-3.4.8/errors/id/ERR_DNS_FAIL --- squid-3.4.7/errors/id/ERR_DNS_FAIL 2014-08-27 07:45:23.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_DNS_FAIL 2014-09-15 01:39:15.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unable to determine IP address from host name %H

    -

    +

    The DNS server returned:

    -
    
    +
    %z
    -

    +

    This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_ESI squid-3.4.8/errors/id/ERR_ESI --- squid-3.4.7/errors/id/ERR_ESI 2014-08-27 07:45:24.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_ESI 2014-09-15 01:39:16.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_FORWARDING_DENIED squid-3.4.8/errors/id/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/id/ERR_FORWARDING_DENIED 2014-08-27 07:45:25.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_FORWARDING_DENIED 2014-09-15 01:39:17.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Forwarding Denied.

    -

    +

    This cache will not forward your request because it is trying to enforce a sibling relationship. Perhaps the client at %i is a cache which has been misconfigured.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_FTP_DISABLED squid-3.4.8/errors/id/ERR_FTP_DISABLED --- squid-3.4.7/errors/id/ERR_FTP_DISABLED 2014-08-27 07:45:26.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_FTP_DISABLED 2014-09-15 01:39:18.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    FTP tidak aktif

    -

    +

    This cache does not support FTP.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_FTP_FAILURE squid-3.4.8/errors/id/ERR_FTP_FAILURE --- squid-3.4.7/errors/id/ERR_FTP_FAILURE 2014-08-27 07:45:27.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_FTP_FAILURE 2014-09-15 01:39:19.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    terjadi kesalahan Protokol FTP ketika mencoba untuk mengambil URL: %U

    -

    +

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_FTP_FORBIDDEN squid-3.4.8/errors/id/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/id/ERR_FTP_FORBIDDEN 2014-08-27 07:45:28.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_FTP_FORBIDDEN 2014-09-15 01:39:20.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    terjadi kegagalan otentikasi FTP ketika mencoba untuk mengambil URL: %U

    -

    +

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_FTP_NOT_FOUND squid-3.4.8/errors/id/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/id/ERR_FTP_NOT_FOUND 2014-08-27 07:45:29.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_FTP_NOT_FOUND 2014-09-15 01:39:21.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following URL could not be retrieved: %U

    -

    +

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_FTP_PUT_CREATED squid-3.4.8/errors/id/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/id/ERR_FTP_PUT_CREATED 2014-08-27 07:45:30.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_FTP_PUT_CREATED 2014-09-15 01:39:22.000000000 -0700 @@ -1,7 +1,7 @@ - +FTP PUT Successful.
    -

    -

    +

    Operation successful

    +

    File created


    @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/id/ERR_FTP_PUT_ERROR squid-3.4.8/errors/id/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/id/ERR_FTP_PUT_ERROR 2014-08-27 07:45:31.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_FTP_PUT_ERROR 2014-09-15 01:39:23.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: FTP upload failed
    -

    -

    +

    ERROR

    +

    FTP PUT upload failed


    terjadi kesalahan Protokol FTP ketika mencoba untuk mengambil URL: %U

    -

    +

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/id/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/id/ERR_FTP_PUT_MODIFIED 2014-08-27 07:45:32.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_FTP_PUT_MODIFIED 2014-09-15 01:39:24.000000000 -0700 @@ -1,7 +1,7 @@ - +FTP PUT Successful.
    -

    +

    Operation successful

    File sudah diperbaharui


    @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/id/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/id/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/id/ERR_FTP_UNAVAILABLE 2014-08-27 07:45:33.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_FTP_UNAVAILABLE 2014-09-15 01:39:25.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The FTP server was too busy to retrieve the URL: %U

    -

    +

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_GATEWAY_FAILURE squid-3.4.8/errors/id/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/id/ERR_GATEWAY_FAILURE 2014-08-27 07:45:34.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_GATEWAY_FAILURE 2014-09-15 01:39:26.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    -

    +

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_ICAP_FAILURE squid-3.4.8/errors/id/ERR_ICAP_FAILURE --- squid-3.4.7/errors/id/ERR_ICAP_FAILURE 2014-08-27 07:45:35.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_ICAP_FAILURE 2014-09-15 01:39:27.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    -

    +

    The system returned: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    -

    +

    Some possible problems are:

    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/id/ERR_INVALID_REQ squid-3.4.8/errors/id/ERR_INVALID_REQ --- squid-3.4.7/errors/id/ERR_INVALID_REQ 2014-08-27 07:45:35.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_INVALID_REQ 2014-09-15 01:39:28.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    @@ -20,21 +20,21 @@

    Cacat Meminta kesalahan ditemukan sedangkan mencoba mengolah permintaan:

    -
    
    +
    %R
    -

    +

    Some possible problems are:

    -

    +

    Your cache administrator is %w.


    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/id/ERR_INVALID_RESP squid-3.4.8/errors/id/ERR_INVALID_RESP --- squid-3.4.7/errors/id/ERR_INVALID_RESP 2014-08-27 07:45:36.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_INVALID_RESP 2014-09-15 01:39:28.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    @@ -20,20 +20,20 @@

    Cacat Jawaban kesalahan ditemukan sedangkan mencoba mengolah permintaan:

    -
    
    +
    %R
    -

    +

    The HTTP Response message received from the contacted server could not be understood or was otherwise malformed. Please contact the site operator.

    -

    +

    Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_INVALID_URL squid-3.4.8/errors/id/ERR_INVALID_URL --- squid-3.4.7/errors/id/ERR_INVALID_URL 2014-08-27 07:45:37.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_INVALID_URL 2014-09-15 01:39:29.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Invalid URL

    -

    +

    Some aspect of the requested URL is incorrect.

    -

    +

    Some possible problems are:

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_LIFETIME_EXP squid-3.4.8/errors/id/ERR_LIFETIME_EXP --- squid-3.4.7/errors/id/ERR_LIFETIME_EXP 2014-08-27 07:45:38.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_LIFETIME_EXP 2014-09-15 01:39:30.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Connection Lifetime Expired

    -

    +

    Squid has terminated the request because it has exceeded the maximum connection lifetime.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_NO_RELAY squid-3.4.8/errors/id/ERR_NO_RELAY --- squid-3.4.7/errors/id/ERR_NO_RELAY 2014-08-27 07:45:39.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_NO_RELAY 2014-09-15 01:39:31.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    No Wais Relay

    -

    +

    There is no WAIS Relay host defined for this Cache! Yell at the administrator.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/id/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/id/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:45:40.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:39:32.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Valid document was not found in the cache and only-if-cached directive was specified.

    -

    +

    You have issued a request with a only-if-cached cache control directive. The document was not found in the cache, or it required revalidation prohibited by the only-if-cached directive.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_PRECONDITION_FAILED squid-3.4.8/errors/id/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/id/ERR_PRECONDITION_FAILED 2014-08-27 07:45:41.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_PRECONDITION_FAILED 2014-09-15 01:39:33.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/id/ERR_READ_ERROR squid-3.4.8/errors/id/ERR_READ_ERROR --- squid-3.4.7/errors/id/ERR_READ_ERROR 2014-08-27 07:45:42.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_READ_ERROR 2014-09-15 01:39:34.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Read Error

    -

    +

    The system returned: %E

    An error condition occurred while reading data from the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_READ_TIMEOUT squid-3.4.8/errors/id/ERR_READ_TIMEOUT --- squid-3.4.7/errors/id/ERR_READ_TIMEOUT 2014-08-27 07:45:43.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_READ_TIMEOUT 2014-09-15 01:39:35.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Read Timeout

    -

    +

    The system returned: %E

    A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/id/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/id/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:45:44.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:39:36.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,15 +31,15 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_SHUTTING_DOWN squid-3.4.8/errors/id/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/id/ERR_SHUTTING_DOWN 2014-08-27 07:45:45.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_SHUTTING_DOWN 2014-09-15 01:39:37.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_SOCKET_FAILURE squid-3.4.8/errors/id/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/id/ERR_SOCKET_FAILURE 2014-08-27 07:45:46.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_SOCKET_FAILURE 2014-09-15 01:39:38.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Socket Failure

    -

    +

    The system returned: %E

    -

    +

    Squid is unable to create a TCP socket, presumably due to excessive load. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_TOO_BIG squid-3.4.8/errors/id/ERR_TOO_BIG --- squid-3.4.7/errors/id/ERR_TOO_BIG 2014-08-27 07:45:47.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_TOO_BIG 2014-09-15 01:39:38.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    The request or reply is too large.

    -

    -

    -

    +

    If you are making a POST or PUT request, then the item you are trying to upload is too large.

    +

    If you are making a GET request, then the item you are trying to download is too large.

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/id/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/id/ERR_UNSUP_HTTPVERSION 2014-08-27 07:45:47.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_UNSUP_HTTPVERSION 2014-09-15 01:39:39.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_UNSUP_REQ squid-3.4.8/errors/id/ERR_UNSUP_REQ --- squid-3.4.7/errors/id/ERR_UNSUP_REQ 2014-08-27 07:45:48.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_UNSUP_REQ 2014-09-15 01:39:40.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported Request Method and Protocol

    -

    +

    Squid does not support all request methods for all access protocols. For example, you can not POST a Gopher request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_URN_RESOLVE squid-3.4.8/errors/id/ERR_URN_RESOLVE --- squid-3.4.7/errors/id/ERR_URN_RESOLVE 2014-08-27 07:45:49.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_URN_RESOLVE 2014-09-15 01:39:41.000000000 -0700 @@ -11,27 +11,27 @@ -->
    -

    +

    ERROR

    URL untuk URN yang diminta tidak bisa didapatkan kembali


    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    Tidak dapat menyelesaikan URN

    -

    +

    Hey, don't expect too much from URNs on %T :)

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_WRITE_ERROR squid-3.4.8/errors/id/ERR_WRITE_ERROR --- squid-3.4.7/errors/id/ERR_WRITE_ERROR 2014-08-27 07:45:50.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_WRITE_ERROR 2014-09-15 01:39:42.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Write Error

    -

    +

    The system returned: %E

    An error condition occurred while writing to the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/id/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/id/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/id/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:45:51.000000000 -0700 +++ squid-3.4.8/errors/id/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:39:43.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Zero Sized Reply

    -

    +

    Squid did not receive any data for this request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/it/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/it/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/it/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:45:53.000000000 -0700 +++ squid-3.4.8/errors/it/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:39:45.000000000 -0700 @@ -20,10 +20,10 @@

    Mentre si cercava di accedere alla URL %U si è presentato il seguente errore:

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    Questi limiti sono stati stabiliti dall'ISP che gestisce questo proxy. Se ritieni sia un errore, contatta il fornitore del servizio.

    L'amministratore del proxy è %w.

    diff -u -r -N squid-3.4.7/errors/it/ERR_CANNOT_FORWARD squid-3.4.8/errors/it/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/it/ERR_CANNOT_FORWARD 2014-08-27 07:45:58.000000000 -0700 +++ squid-3.4.8/errors/it/ERR_CANNOT_FORWARD 2014-09-15 01:39:50.000000000 -0700 @@ -23,13 +23,13 @@

    Non è possibile inoltrare la richiesta in questo momento.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    Alcuni dei possibili problemi sono:

    L'amministratore del proxy è %w.

    diff -u -r -N squid-3.4.7/errors/it/ERR_CONFLICT_HOST squid-3.4.8/errors/it/ERR_CONFLICT_HOST --- squid-3.4.7/errors/it/ERR_CONFLICT_HOST 2014-08-27 07:45:59.000000000 -0700 +++ squid-3.4.8/errors/it/ERR_CONFLICT_HOST 2014-09-15 01:39:51.000000000 -0700 @@ -20,15 +20,15 @@

    Mentre si cercava di accedere alla URL %U si è presentato il seguente errore:

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    Alcuni dei possibili problemi sono:

    L'amministratore del proxy è %w.

    diff -u -r -N squid-3.4.7/errors/it/ERR_DIR_LISTING squid-3.4.8/errors/it/ERR_DIR_LISTING --- squid-3.4.7/errors/it/ERR_DIR_LISTING 2014-08-27 07:46:01.000000000 -0700 +++ squid-3.4.8/errors/it/ERR_DIR_LISTING 2014-09-15 01:39:53.000000000 -0700 @@ -25,7 +25,7 @@
    Parent Directory (Root Directory)
    - + %g diff -u -r -N squid-3.4.7/errors/it/ERR_GATEWAY_FAILURE squid-3.4.8/errors/it/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/it/ERR_GATEWAY_FAILURE 2014-08-27 07:46:12.000000000 -0700 +++ squid-3.4.8/errors/it/ERR_GATEWAY_FAILURE 2014-09-15 01:40:04.000000000 -0700 @@ -20,10 +20,10 @@

    Mentre si cercava di accedere alla URL %U si è presentato il seguente errore:

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    diff -u -r -N squid-3.4.7/errors/it/ERR_PRECONDITION_FAILED squid-3.4.8/errors/it/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/it/ERR_PRECONDITION_FAILED 2014-08-27 07:46:20.000000000 -0700 +++ squid-3.4.8/errors/it/ERR_PRECONDITION_FAILED 2014-09-15 01:40:11.000000000 -0700 @@ -20,12 +20,12 @@

    Mentre si cercava di accedere alla URL %U si è presentato il seguente errore:

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    diff -u -r -N squid-3.4.7/errors/ja/ERR_ACCESS_DENIED squid-3.4.8/errors/ja/ERR_ACCESS_DENIED --- squid-3.4.7/errors/ja/ERR_ACCESS_DENIED 2014-08-27 07:46:31.000000000 -0700 +++ squid-3.4.8/errors/ja/ERR_ACCESS_DENIED 2014-09-15 01:40:23.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    アクセスを拒否されました。

    @@ -25,7 +25,7 @@

    Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

    -

    +

    Your cache administrator is %w.


    diff -u -r -N squid-3.4.7/errors/ja/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/ja/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/ja/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:46:32.000000000 -0700 +++ squid-3.4.8/errors/ja/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:40:24.000000000 -0700 @@ -17,16 +17,16 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.


    diff -u -r -N squid-3.4.7/errors/ja/ERR_AGENT_CONFIGURE squid-3.4.8/errors/ja/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/ja/ERR_AGENT_CONFIGURE 2014-08-27 07:46:33.000000000 -0700 +++ squid-3.4.8/errors/ja/ERR_AGENT_CONFIGURE 2014-09-15 01:40:25.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Directory superiore (Root Directory)Directory superiore (Directory principale)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/ko/ERR_DNS_FAIL squid-3.4.8/errors/ko/ERR_DNS_FAIL --- squid-3.4.7/errors/ko/ERR_DNS_FAIL 2014-08-27 07:47:21.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_DNS_FAIL 2014-09-15 01:41:12.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    %H 에 대해서 IP 주소를 찾을 수 없습니다.

    @@ -25,18 +25,18 @@

    The DNS server returned:

    -
    
    +
    %z

    This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_ESI squid-3.4.8/errors/ko/ERR_ESI --- squid-3.4.7/errors/ko/ERR_ESI 2014-08-27 07:47:22.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_ESI 2014-09-15 01:41:13.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_FORWARDING_DENIED squid-3.4.8/errors/ko/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/ko/ERR_FORWARDING_DENIED 2014-08-27 07:47:23.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_FORWARDING_DENIED 2014-09-15 01:41:14.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    포워딩 불가

    @@ -25,14 +25,14 @@

    This cache will not forward your request because it is trying to enforce a sibling relationship. Perhaps the client at %i is a cache which has been misconfigured.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_FTP_DISABLED squid-3.4.8/errors/ko/ERR_FTP_DISABLED --- squid-3.4.7/errors/ko/ERR_FTP_DISABLED 2014-08-27 07:47:24.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_FTP_DISABLED 2014-09-15 01:41:15.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    FTP 서비스가 불가능 합니다.

    @@ -25,14 +25,14 @@

    FTP 서비스가 불가능 합니다.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_FTP_FAILURE squid-3.4.8/errors/ko/ERR_FTP_FAILURE --- squid-3.4.7/errors/ko/ERR_FTP_FAILURE 2014-08-27 07:47:25.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_FTP_FAILURE 2014-09-15 01:41:16.000000000 -0700 @@ -21,22 +21,22 @@

    Squid는 다음과 같은 FTP 명령어를 전송했고:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_FTP_FORBIDDEN squid-3.4.8/errors/ko/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/ko/ERR_FTP_FORBIDDEN 2014-08-27 07:47:26.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_FTP_FORBIDDEN 2014-09-15 01:41:17.000000000 -0700 @@ -21,22 +21,22 @@

    Squid는 다음과 같은 FTP 명령어를 전송했고:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_FTP_NOT_FOUND squid-3.4.8/errors/ko/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/ko/ERR_FTP_NOT_FOUND 2014-08-27 07:47:27.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_FTP_NOT_FOUND 2014-09-15 01:41:18.000000000 -0700 @@ -21,24 +21,24 @@

    Squid는 다음과 같은 FTP 명령어를 전송했고:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_FTP_PUT_CREATED squid-3.4.8/errors/ko/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/ko/ERR_FTP_PUT_CREATED 2014-08-27 07:47:27.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_FTP_PUT_CREATED 2014-09-15 01:41:19.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/ko/ERR_FTP_PUT_ERROR squid-3.4.8/errors/ko/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/ko/ERR_FTP_PUT_ERROR 2014-08-27 07:47:28.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_FTP_PUT_ERROR 2014-09-15 01:41:20.000000000 -0700 @@ -21,23 +21,23 @@

    Squid는 다음과 같은 FTP 명령어를 전송했고:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/ko/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/ko/ERR_FTP_PUT_MODIFIED 2014-08-27 07:47:29.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_FTP_PUT_MODIFIED 2014-09-15 01:41:21.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/ko/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/ko/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/ko/ERR_FTP_UNAVAILABLE 2014-08-27 07:47:30.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_FTP_UNAVAILABLE 2014-09-15 01:41:22.000000000 -0700 @@ -22,22 +22,22 @@

    Squid는 다음과 같은 FTP 명령어를 전송했고:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_GATEWAY_FAILURE squid-3.4.8/errors/ko/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/ko/ERR_GATEWAY_FAILURE 2014-08-27 07:47:31.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_GATEWAY_FAILURE 2014-09-15 01:41:23.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    -

    +

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_ICAP_FAILURE squid-3.4.8/errors/ko/ERR_ICAP_FAILURE --- squid-3.4.7/errors/ko/ERR_ICAP_FAILURE 2014-08-27 07:47:32.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_ICAP_FAILURE 2014-09-15 01:41:24.000000000 -0700 @@ -17,20 +17,20 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    시스템은 아래와 같은 메시지를 보내왔습니다: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    -

    +

    Some possible problems are:


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/ko/ERR_INVALID_REQ squid-3.4.8/errors/ko/ERR_INVALID_REQ --- squid-3.4.7/errors/ko/ERR_INVALID_REQ 2014-08-27 07:47:33.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_INVALID_REQ 2014-09-15 01:41:25.000000000 -0700 @@ -17,13 +17,13 @@
    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R
    -

    +

    Some possible problems are:

    • Request method가 잘못되었거나 빠져 있다.

    • URL이 빠져 있다.

    • @@ -31,10 +31,10 @@
    • Request가 너무 크다.

    • POST나 PUT 요청일 경우 Content-Length가 빠져 있다.

    • 호스트네임에 잘못 된 문자가 있다; 밑줄은 허용되지 않습니다.

    • -
    • +
    • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

    -

    +

    Your cache administrator is %w.


    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/ko/ERR_INVALID_RESP squid-3.4.8/errors/ko/ERR_INVALID_RESP --- squid-3.4.7/errors/ko/ERR_INVALID_RESP 2014-08-27 07:47:34.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_INVALID_RESP 2014-09-15 01:41:25.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R
    -

    +

    The HTTP Response message received from the contacted server could not be understood or was otherwise malformed. Please contact the site operator.

    -

    +

    Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_INVALID_URL squid-3.4.8/errors/ko/ERR_INVALID_URL --- squid-3.4.7/errors/ko/ERR_INVALID_URL 2014-08-27 07:47:35.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_INVALID_URL 2014-09-15 01:41:26.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    잘못된 URL

    @@ -25,7 +25,7 @@

    Some aspect of the requested URL is incorrect.

    -

    +

    Some possible problems are:

    • 접속 프로토콜이 잘못되었거나 빠져 있다. (http:// 와 같은 방식으로 되어 있어야 합니다)

    • 호스트네임이 빠져 있다.

    • @@ -33,13 +33,13 @@
    • 호스트네임에 잘못 된 문자가 있다; 밑줄은 허용되지 않습니다.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_LIFETIME_EXP squid-3.4.8/errors/ko/ERR_LIFETIME_EXP --- squid-3.4.7/errors/ko/ERR_LIFETIME_EXP 2014-08-27 07:47:36.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_LIFETIME_EXP 2014-09-15 01:41:27.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    접속 허용 시간이 경과되었습니다.

    @@ -25,13 +25,13 @@

    최대 접속 허용 시간이 경과하여 Squid로부터의 요청이 중지되었습니다.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_NO_RELAY squid-3.4.8/errors/ko/ERR_NO_RELAY --- squid-3.4.7/errors/ko/ERR_NO_RELAY 2014-08-27 07:47:37.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_NO_RELAY 2014-09-15 01:41:28.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    WAIS Relay가 없습니다.

    @@ -25,13 +25,13 @@

    There is no WAIS Relay host defined for this Cache! Yell at the administrator.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/ko/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/ko/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:47:38.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:41:29.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    캐쉬에 유효한 문서가 없고 only-if-cached 가 지정되었습니다.

    @@ -25,13 +25,13 @@

    You have issued a request with a only-if-cached cache control directive. The document was not found in the cache, or it required revalidation prohibited by the only-if-cached directive.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_PRECONDITION_FAILED squid-3.4.8/errors/ko/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/ko/ERR_PRECONDITION_FAILED 2014-08-27 07:47:39.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_PRECONDITION_FAILED 2014-09-15 01:41:30.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/ko/ERR_READ_ERROR squid-3.4.8/errors/ko/ERR_READ_ERROR --- squid-3.4.7/errors/ko/ERR_READ_ERROR 2014-08-27 07:47:40.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_READ_ERROR 2014-09-15 01:41:31.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    읽기 에러

    @@ -27,13 +27,13 @@

    An error condition occurred while reading data from the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_READ_TIMEOUT squid-3.4.8/errors/ko/ERR_READ_TIMEOUT --- squid-3.4.7/errors/ko/ERR_READ_TIMEOUT 2014-08-27 07:47:41.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_READ_TIMEOUT 2014-09-15 01:41:32.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    읽기 시간 초과

    @@ -27,13 +27,13 @@

    A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/ko/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/ko/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:47:42.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:41:33.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,15 +31,15 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_SHUTTING_DOWN squid-3.4.8/errors/ko/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/ko/ERR_SHUTTING_DOWN 2014-08-27 07:47:43.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_SHUTTING_DOWN 2014-09-15 01:41:34.000000000 -0700 @@ -17,17 +17,17 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_SOCKET_FAILURE squid-3.4.8/errors/ko/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/ko/ERR_SOCKET_FAILURE 2014-08-27 07:47:43.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_SOCKET_FAILURE 2014-09-15 01:41:35.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    소켓 생성 실패

    @@ -27,13 +27,13 @@

    Squid가 TCP 소켓을 생성할 수 없습니다. 심한 로드로 인한 결과일 수 있습니다. 다시 시도해 주십시오.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_TOO_BIG squid-3.4.8/errors/ko/ERR_TOO_BIG --- squid-3.4.7/errors/ko/ERR_TOO_BIG 2014-08-27 07:47:44.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_TOO_BIG 2014-09-15 01:41:36.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    The request or reply is too large.

    -

    -

    -

    +

    If you are making a POST or PUT request, then the item you are trying to upload is too large.

    +

    If you are making a GET request, then the item you are trying to download is too large.

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/ko/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/ko/ERR_UNSUP_HTTPVERSION 2014-08-27 07:47:45.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_UNSUP_HTTPVERSION 2014-09-15 01:41:37.000000000 -0700 @@ -12,26 +12,26 @@

    에러

    -

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_UNSUP_REQ squid-3.4.8/errors/ko/ERR_UNSUP_REQ --- squid-3.4.7/errors/ko/ERR_UNSUP_REQ 2014-08-27 07:47:46.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_UNSUP_REQ 2014-09-15 01:41:38.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    지원되지 않는 Request Method와 프로토콜입니다.

    @@ -25,13 +25,13 @@

    Squid는 모든 접속 프로토콜에 대한 request method를 지원하지 않습니다. 한가지 예로, Gopher에서 POST request를 사용할 수 없습니다.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_URN_RESOLVE squid-3.4.8/errors/ko/ERR_URN_RESOLVE --- squid-3.4.7/errors/ko/ERR_URN_RESOLVE 2014-08-27 07:47:47.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_URN_RESOLVE 2014-09-15 01:41:39.000000000 -0700 @@ -12,12 +12,12 @@

    에러

    -

    +

    A URL for the requested URN could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    URN을 처리할 수 없습니다.

    @@ -25,13 +25,13 @@

    %T의 URN에 대해 너무 많은 것을 기대하지 마세요. :)

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_WRITE_ERROR squid-3.4.8/errors/ko/ERR_WRITE_ERROR --- squid-3.4.7/errors/ko/ERR_WRITE_ERROR 2014-08-27 07:47:48.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_WRITE_ERROR 2014-09-15 01:41:40.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    쓰기 에러

    @@ -27,13 +27,13 @@

    An error condition occurred while writing to the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/ko/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/ko/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/ko/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:47:49.000000000 -0700 +++ squid-3.4.8/errors/ko/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:41:41.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    크기가 0인 응답이 돌아왔습니다.

    @@ -25,13 +25,13 @@

    Squid는 이 요청으로 부터 아무런 데이터도 받지 못했습니다.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_ACCESS_DENIED squid-3.4.8/errors/lt/ERR_ACCESS_DENIED --- squid-3.4.7/errors/lt/ERR_ACCESS_DENIED 2014-08-27 07:47:50.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_ACCESS_DENIED 2014-09-15 01:41:42.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Priėjimas draudžiamas.

    @@ -25,13 +25,13 @@

    Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/lt/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/lt/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:47:51.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:41:43.000000000 -0700 @@ -17,22 +17,22 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_AGENT_CONFIGURE squid-3.4.8/errors/lt/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/lt/ERR_AGENT_CONFIGURE 2014-08-27 07:47:53.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_AGENT_CONFIGURE 2014-09-15 01:41:44.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Parent Directory (Root Directory)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/lt/ERR_DNS_FAIL squid-3.4.8/errors/lt/ERR_DNS_FAIL --- squid-3.4.7/errors/lt/ERR_DNS_FAIL 2014-08-27 07:48:00.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_DNS_FAIL 2014-09-15 01:41:52.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Neįmanoma nustatyti %H serverio IP adreso

    @@ -25,18 +25,18 @@

    The DNS server returned:

    -
    
    +
    %z

    This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_ESI squid-3.4.8/errors/lt/ERR_ESI --- squid-3.4.7/errors/lt/ERR_ESI 2014-08-27 07:48:01.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_ESI 2014-09-15 01:41:53.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_FORWARDING_DENIED squid-3.4.8/errors/lt/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/lt/ERR_FORWARDING_DENIED 2014-08-27 07:48:02.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_FORWARDING_DENIED 2014-09-15 01:41:54.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Pervedimo komanda neleistina.

    @@ -25,14 +25,14 @@

    This cache will not forward your request because it is trying to enforce a sibling relationship. Perhaps the client at %i is a cache which has been misconfigured.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_FTP_DISABLED squid-3.4.8/errors/lt/ERR_FTP_DISABLED --- squid-3.4.7/errors/lt/ERR_FTP_DISABLED 2014-08-27 07:48:03.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_FTP_DISABLED 2014-09-15 01:41:54.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    FTP yra atjungtas

    @@ -25,14 +25,14 @@

    Šis proxy serveris nepalaiko FTP.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_FTP_FAILURE squid-3.4.8/errors/lt/ERR_FTP_FAILURE --- squid-3.4.7/errors/lt/ERR_FTP_FAILURE 2014-08-27 07:48:04.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_FTP_FAILURE 2014-09-15 01:41:55.000000000 -0700 @@ -21,22 +21,22 @@

    Squid nusiuntė šią FTP komandą:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_FTP_FORBIDDEN squid-3.4.8/errors/lt/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/lt/ERR_FTP_FORBIDDEN 2014-08-27 07:48:05.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_FTP_FORBIDDEN 2014-09-15 01:41:56.000000000 -0700 @@ -21,22 +21,22 @@

    Squid nusiuntė šią FTP komandą:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_FTP_NOT_FOUND squid-3.4.8/errors/lt/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/lt/ERR_FTP_NOT_FOUND 2014-08-27 07:48:06.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_FTP_NOT_FOUND 2014-09-15 01:41:57.000000000 -0700 @@ -21,24 +21,24 @@

    Squid nusiuntė šią FTP komandą:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_FTP_PUT_CREATED squid-3.4.8/errors/lt/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/lt/ERR_FTP_PUT_CREATED 2014-08-27 07:48:07.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_FTP_PUT_CREATED 2014-09-15 01:41:58.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/lt/ERR_FTP_PUT_ERROR squid-3.4.8/errors/lt/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/lt/ERR_FTP_PUT_ERROR 2014-08-27 07:48:08.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_FTP_PUT_ERROR 2014-09-15 01:41:59.000000000 -0700 @@ -21,23 +21,23 @@

    Squid nusiuntė šią FTP komandą:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/lt/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/lt/ERR_FTP_PUT_MODIFIED 2014-08-27 07:48:09.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_FTP_PUT_MODIFIED 2014-09-15 01:42:00.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/lt/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/lt/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/lt/ERR_FTP_UNAVAILABLE 2014-08-27 07:48:10.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_FTP_UNAVAILABLE 2014-09-15 01:42:01.000000000 -0700 @@ -22,22 +22,22 @@

    Squid nusiuntė šią FTP komandą:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_GATEWAY_FAILURE squid-3.4.8/errors/lt/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/lt/ERR_GATEWAY_FAILURE 2014-08-27 07:48:11.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_GATEWAY_FAILURE 2014-09-15 01:42:02.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_ICAP_FAILURE squid-3.4.8/errors/lt/ERR_ICAP_FAILURE --- squid-3.4.7/errors/lt/ERR_ICAP_FAILURE 2014-08-27 07:48:11.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_ICAP_FAILURE 2014-09-15 01:42:03.000000000 -0700 @@ -17,20 +17,20 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    Sistema atsakė: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    Some possible problems are:


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/lt/ERR_INVALID_REQ squid-3.4.8/errors/lt/ERR_INVALID_REQ --- squid-3.4.7/errors/lt/ERR_INVALID_REQ 2014-08-27 07:48:12.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_INVALID_REQ 2014-09-15 01:42:04.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R

    Some possible problems are:

    @@ -31,10 +31,10 @@
  • Užklausa per didelė

  • Trūksta Content-Length parametro POST arba PUT užklausoje

  • Neleistinas simbolis serverio varde; pabraukimo simboliai yra neleistini

  • -
  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • -

    +

    Your cache administrator is %w.


    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/lt/ERR_INVALID_RESP squid-3.4.8/errors/lt/ERR_INVALID_RESP --- squid-3.4.7/errors/lt/ERR_INVALID_RESP 2014-08-27 07:48:13.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_INVALID_RESP 2014-09-15 01:42:05.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R

    Iš serverio gautas nesuprantamas HTTP atsakymas arba jis buvo klaidingai suformuotas. Susisiekite su serverio operatoriumi. Jūsų proxy serverio administratorius gali suteikti jums daugiau informacijos apie šią problemą.

    Jūsų proxy serverio administratorius gali suteikti jums daugiau informacijos apie šią problemą.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_INVALID_URL squid-3.4.8/errors/lt/ERR_INVALID_URL --- squid-3.4.7/errors/lt/ERR_INVALID_URL 2014-08-27 07:48:14.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_INVALID_URL 2014-09-15 01:42:05.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Klaidingas adresas

    @@ -33,13 +33,13 @@
  • Neleistinas simbolis serverio varde; pabraukimo simboliai yra neleistini

  • -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_LIFETIME_EXP squid-3.4.8/errors/lt/ERR_LIFETIME_EXP --- squid-3.4.7/errors/lt/ERR_LIFETIME_EXP 2014-08-27 07:48:15.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_LIFETIME_EXP 2014-09-15 01:42:06.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Ryšio trukmės laiko pabaiga

    @@ -25,13 +25,13 @@

    Squid nutraukė užklausą, kadangi ji viršijo maksimalią ryšio trukmės reikšmę.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_NO_RELAY squid-3.4.8/errors/lt/ERR_NO_RELAY --- squid-3.4.7/errors/lt/ERR_NO_RELAY 2014-08-27 07:48:17.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_NO_RELAY 2014-09-15 01:42:07.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Nėra Wais Relay

    @@ -25,13 +25,13 @@

    There is no WAIS Relay host defined for this Cache! Yell at the administrator.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/lt/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/lt/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:48:17.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:42:08.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Tinkamas dokumentas nerastas proxy serveryje ir only-if-cached komanda buvo nurodyta.

    @@ -25,13 +25,13 @@

    Jūs davėte užklausą su only-if-cached proxy kontrolės komanda. Dokumentas nerastas serveryje, arba jis pareikalavopatvirtinimo uždrausto only-if-cached komandos.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_PRECONDITION_FAILED squid-3.4.8/errors/lt/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/lt/ERR_PRECONDITION_FAILED 2014-08-27 07:48:18.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_PRECONDITION_FAILED 2014-09-15 01:42:09.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/lt/ERR_READ_ERROR squid-3.4.8/errors/lt/ERR_READ_ERROR --- squid-3.4.7/errors/lt/ERR_READ_ERROR 2014-08-27 07:48:19.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_READ_ERROR 2014-09-15 01:42:10.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Skaitymo klaida

    @@ -27,13 +27,13 @@

    An error condition occurred while reading data from the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_READ_TIMEOUT squid-3.4.8/errors/lt/ERR_READ_TIMEOUT --- squid-3.4.7/errors/lt/ERR_READ_TIMEOUT 2014-08-27 07:48:20.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_READ_TIMEOUT 2014-09-15 01:42:11.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Leistino skaitymo laiko pabaiga

    @@ -27,13 +27,13 @@

    A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/lt/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/lt/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:48:21.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:42:12.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,15 +31,15 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_SHUTTING_DOWN squid-3.4.8/errors/lt/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/lt/ERR_SHUTTING_DOWN 2014-08-27 07:48:22.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_SHUTTING_DOWN 2014-09-15 01:42:13.000000000 -0700 @@ -17,17 +17,17 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_SOCKET_FAILURE squid-3.4.8/errors/lt/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/lt/ERR_SOCKET_FAILURE 2014-08-27 07:48:23.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_SOCKET_FAILURE 2014-09-15 01:42:14.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Socket klaida

    @@ -27,13 +27,13 @@

    Squid negalėjo sukurti TCP socket, greičiausiai dėl per didelio apkrovimo. Prašome pakartoti savo užklausą.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_TOO_BIG squid-3.4.8/errors/lt/ERR_TOO_BIG --- squid-3.4.7/errors/lt/ERR_TOO_BIG 2014-08-27 07:48:24.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_TOO_BIG 2014-09-15 01:42:15.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Užklausa arba atsakymas yra per dideli.

    @@ -27,13 +27,13 @@

    If you are making a GET request, then the item you are trying to download is too large.

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/lt/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/lt/ERR_UNSUP_HTTPVERSION 2014-08-27 07:48:25.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_UNSUP_HTTPVERSION 2014-09-15 01:42:16.000000000 -0700 @@ -12,26 +12,26 @@

    KLAIDA

    -

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_UNSUP_REQ squid-3.4.8/errors/lt/ERR_UNSUP_REQ --- squid-3.4.7/errors/lt/ERR_UNSUP_REQ 2014-08-27 07:48:26.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_UNSUP_REQ 2014-09-15 01:42:17.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Nepalaikomas užklausos metodas ir protokolas

    @@ -25,13 +25,13 @@

    Squid palaiko ne visus užklausos metodus daliai protokolų. Pavyzdžiui, jūs negalite vykdyti POST Gopher tipo užklausoje.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_URN_RESOLVE squid-3.4.8/errors/lt/ERR_URN_RESOLVE --- squid-3.4.7/errors/lt/ERR_URN_RESOLVE 2014-08-27 07:48:27.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_URN_RESOLVE 2014-09-15 01:42:18.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    Negaliu aptikti URN

    @@ -25,13 +25,13 @@

    Mielieji, siūlau daug nesitikėti iš URNų %T :)

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_WRITE_ERROR squid-3.4.8/errors/lt/ERR_WRITE_ERROR --- squid-3.4.7/errors/lt/ERR_WRITE_ERROR 2014-08-27 07:48:28.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_WRITE_ERROR 2014-09-15 01:42:19.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Rašymo klaida

    @@ -27,13 +27,13 @@

    An error condition occurred while writing to the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lt/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/lt/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/lt/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:48:29.000000000 -0700 +++ squid-3.4.8/errors/lt/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:42:20.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Atsakymas nulinis

    @@ -25,13 +25,13 @@

    Squid negavo jokių duomenų šiai užklausai.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/lv/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/lv/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/lv/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:48:31.000000000 -0700 +++ squid-3.4.8/errors/lv/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:42:22.000000000 -0700 @@ -20,10 +20,10 @@

    Iestājusies sekojoša kļūda mēģinot atvērt adresi: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    Jūsu kešatmiņas administrators ir %w.

    diff -u -r -N squid-3.4.7/errors/lv/ERR_AGENT_CONFIGURE squid-3.4.8/errors/lv/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/lv/ERR_AGENT_CONFIGURE 2014-08-27 07:48:32.000000000 -0700 +++ squid-3.4.8/errors/lv/ERR_AGENT_CONFIGURE 2014-09-15 01:42:23.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Parent Directory (Root Directory)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/pt/ERR_DNS_FAIL squid-3.4.8/errors/pt/ERR_DNS_FAIL --- squid-3.4.7/errors/pt/ERR_DNS_FAIL 2014-08-27 07:52:37.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_DNS_FAIL 2014-09-15 01:46:18.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Incapaz de determinar o endereço IP através do nome do host %H

    @@ -25,18 +25,18 @@

    O servidor DNS retornou:

    -
    
    +
    %z

    This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_ESI squid-3.4.8/errors/pt/ERR_ESI --- squid-3.4.7/errors/pt/ERR_ESI 2014-08-27 07:52:38.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_ESI 2014-09-15 01:46:19.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_FORWARDING_DENIED squid-3.4.8/errors/pt/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/pt/ERR_FORWARDING_DENIED 2014-08-27 07:52:39.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_FORWARDING_DENIED 2014-09-15 01:46:20.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Expedição proibida.

    @@ -25,14 +25,14 @@

    This cache will not forward your request because it is trying to enforce a sibling relationship. Perhaps the client at %i is a cache which has been misconfigured.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_FTP_DISABLED squid-3.4.8/errors/pt/ERR_FTP_DISABLED --- squid-3.4.7/errors/pt/ERR_FTP_DISABLED 2014-08-27 07:52:40.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_FTP_DISABLED 2014-09-15 01:46:21.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    FTP desabilitado

    @@ -25,14 +25,14 @@

    Este cache não está habilitado para FTP.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_FTP_FAILURE squid-3.4.8/errors/pt/ERR_FTP_FAILURE --- squid-3.4.7/errors/pt/ERR_FTP_FAILURE 2014-08-27 07:52:41.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_FTP_FAILURE 2014-09-15 01:46:22.000000000 -0700 @@ -21,22 +21,22 @@

    Squid emitiu o seguinte comando FTP:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_FTP_FORBIDDEN squid-3.4.8/errors/pt/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/pt/ERR_FTP_FORBIDDEN 2014-08-27 07:52:42.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_FTP_FORBIDDEN 2014-09-15 01:46:23.000000000 -0700 @@ -21,22 +21,22 @@

    Squid emitiu o seguinte comando FTP:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_FTP_NOT_FOUND squid-3.4.8/errors/pt/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/pt/ERR_FTP_NOT_FOUND 2014-08-27 07:52:43.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_FTP_NOT_FOUND 2014-09-15 01:46:24.000000000 -0700 @@ -21,24 +21,24 @@

    Squid emitiu o seguinte comando FTP:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_FTP_PUT_CREATED squid-3.4.8/errors/pt/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/pt/ERR_FTP_PUT_CREATED 2014-08-27 07:52:44.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_FTP_PUT_CREATED 2014-09-15 01:46:24.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/pt/ERR_FTP_PUT_ERROR squid-3.4.8/errors/pt/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/pt/ERR_FTP_PUT_ERROR 2014-08-27 07:52:45.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_FTP_PUT_ERROR 2014-09-15 01:46:25.000000000 -0700 @@ -21,23 +21,23 @@

    Squid emitiu o seguinte comando FTP:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/pt/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/pt/ERR_FTP_PUT_MODIFIED 2014-08-27 07:52:46.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_FTP_PUT_MODIFIED 2014-09-15 01:46:26.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/pt/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/pt/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/pt/ERR_FTP_UNAVAILABLE 2014-08-27 07:52:47.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_FTP_UNAVAILABLE 2014-09-15 01:46:27.000000000 -0700 @@ -22,22 +22,22 @@

    Squid emitiu o seguinte comando FTP:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_GATEWAY_FAILURE squid-3.4.8/errors/pt/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/pt/ERR_GATEWAY_FAILURE 2014-08-27 07:52:48.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_GATEWAY_FAILURE 2014-09-15 01:46:28.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_ICAP_FAILURE squid-3.4.8/errors/pt/ERR_ICAP_FAILURE --- squid-3.4.7/errors/pt/ERR_ICAP_FAILURE 2014-08-27 07:52:49.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_ICAP_FAILURE 2014-09-15 01:46:29.000000000 -0700 @@ -17,20 +17,20 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    O sistema retornou: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    Some possible problems are:


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/pt/ERR_INVALID_REQ squid-3.4.8/errors/pt/ERR_INVALID_REQ --- squid-3.4.7/errors/pt/ERR_INVALID_REQ 2014-08-27 07:52:50.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_INVALID_REQ 2014-09-15 01:46:30.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R

    Some possible problems are:

    @@ -29,12 +29,12 @@
  • Faltou a URL

  • Faltou o identificador HTTP (HTTP/1.0)

  • A requisição pode ser muito grande

  • -
  • +
  • Content-Length missing for POST or PUT requests.

  • Hostname com caracter inválido; não são permitidos underscores.

  • -
  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • -

    +

    Your cache administrator is %w.


    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/pt/ERR_INVALID_RESP squid-3.4.8/errors/pt/ERR_INVALID_RESP --- squid-3.4.7/errors/pt/ERR_INVALID_RESP 2014-08-27 07:52:51.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_INVALID_RESP 2014-09-15 01:46:31.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R
    -

    +

    The HTTP Response message received from the contacted server could not be understood or was otherwise malformed. Please contact the site operator.

    -

    +

    Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_INVALID_URL squid-3.4.8/errors/pt/ERR_INVALID_URL --- squid-3.4.7/errors/pt/ERR_INVALID_URL 2014-08-27 07:52:52.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_INVALID_URL 2014-09-15 01:46:32.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    URL inválida

    @@ -29,17 +29,17 @@
    • Protocolo de acesso incorreto ou faltando (deve ser http:// ou similar)

    • Faltou o hostname

    • -
    • +
    • Illegal double-escape in the URL-Path

    • Hostname com caracter inválido; não são permitidos underscores.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_LIFETIME_EXP squid-3.4.8/errors/pt/ERR_LIFETIME_EXP --- squid-3.4.7/errors/pt/ERR_LIFETIME_EXP 2014-08-27 07:52:53.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_LIFETIME_EXP 2014-09-15 01:46:33.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    O tempo limite de conexão expirou

    @@ -25,13 +25,13 @@

    Squid terminou a requisição porque excedeu o tempo máximo permitido.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_NO_RELAY squid-3.4.8/errors/pt/ERR_NO_RELAY --- squid-3.4.7/errors/pt/ERR_NO_RELAY 2014-08-27 07:52:54.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_NO_RELAY 2014-09-15 01:46:33.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    No Wais Relay

    @@ -25,13 +25,13 @@

    There is no WAIS Relay host defined for this Cache! Yell at the administrator.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/pt/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/pt/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:52:55.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:46:34.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Não foi encontrado documento válido no cache e a opção only-if-cached foi especificada.

    @@ -25,13 +25,13 @@

    Você requisitou com a diretiva de controle do cache only-if-cached ativa. O documento não foi encontrado no cache, ou requer revalidação proibida pela opção only-if-cached

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_PRECONDITION_FAILED squid-3.4.8/errors/pt/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/pt/ERR_PRECONDITION_FAILED 2014-08-27 07:52:56.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_PRECONDITION_FAILED 2014-09-15 01:46:35.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/pt/ERR_READ_ERROR squid-3.4.8/errors/pt/ERR_READ_ERROR --- squid-3.4.7/errors/pt/ERR_READ_ERROR 2014-08-27 07:52:56.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_READ_ERROR 2014-09-15 01:46:36.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Erro de leitura

    @@ -27,13 +27,13 @@

    An error condition occurred while reading data from the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_READ_TIMEOUT squid-3.4.8/errors/pt/ERR_READ_TIMEOUT --- squid-3.4.7/errors/pt/ERR_READ_TIMEOUT 2014-08-27 07:52:57.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_READ_TIMEOUT 2014-09-15 01:46:37.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Excedeu o tempo limite para leitura (timeout)

    @@ -27,13 +27,13 @@

    A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/pt/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/pt/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:52:58.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:46:38.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,15 +31,15 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_SHUTTING_DOWN squid-3.4.8/errors/pt/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/pt/ERR_SHUTTING_DOWN 2014-08-27 07:52:59.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_SHUTTING_DOWN 2014-09-15 01:46:39.000000000 -0700 @@ -17,17 +17,17 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_SOCKET_FAILURE squid-3.4.8/errors/pt/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/pt/ERR_SOCKET_FAILURE 2014-08-27 07:53:00.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_SOCKET_FAILURE 2014-09-15 01:46:40.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Falha no Socket

    @@ -27,13 +27,13 @@

    Squid foi incapaz de criar um socket TCP, talvez por excesso de carga no sistema. Por favor tente novamente.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_TOO_BIG squid-3.4.8/errors/pt/ERR_TOO_BIG --- squid-3.4.7/errors/pt/ERR_TOO_BIG 2014-08-27 07:53:01.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_TOO_BIG 2014-09-15 01:46:41.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    A requisição ou resposta é muito grande.

    @@ -27,13 +27,13 @@

    If you are making a GET request, then the item you are trying to download is too large.

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/pt/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/pt/ERR_UNSUP_HTTPVERSION 2014-08-27 07:53:02.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_UNSUP_HTTPVERSION 2014-09-15 01:46:41.000000000 -0700 @@ -12,26 +12,26 @@

    ERRO

    -

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_UNSUP_REQ squid-3.4.8/errors/pt/ERR_UNSUP_REQ --- squid-3.4.7/errors/pt/ERR_UNSUP_REQ 2014-08-27 07:53:03.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_UNSUP_REQ 2014-09-15 01:46:42.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Método ou protocolo não suportado.

    @@ -25,13 +25,13 @@

    Squid does not support all request methods for all access protocols. For example, you can not POST a Gopher request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_URN_RESOLVE squid-3.4.8/errors/pt/ERR_URN_RESOLVE --- squid-3.4.7/errors/pt/ERR_URN_RESOLVE 2014-08-27 07:53:04.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_URN_RESOLVE 2014-09-15 01:46:43.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    Não pode resolver a URN

    @@ -25,13 +25,13 @@

    Não espere muita coisa de URNS em %T :-)

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_WRITE_ERROR squid-3.4.8/errors/pt/ERR_WRITE_ERROR --- squid-3.4.7/errors/pt/ERR_WRITE_ERROR 2014-08-27 07:53:05.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_WRITE_ERROR 2014-09-15 01:46:44.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Erro de gravação

    @@ -27,13 +27,13 @@

    An error condition occurred while writing to the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/pt/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/pt/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:53:06.000000000 -0700 +++ squid-3.4.8/errors/pt/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:46:45.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Resposta com tamanho zero

    @@ -25,13 +25,13 @@

    Squid não recebeu nenhum dado para esta requisição.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/pt-br/ERR_DIR_LISTING squid-3.4.8/errors/pt-br/ERR_DIR_LISTING --- squid-3.4.7/errors/pt-br/ERR_DIR_LISTING 2014-08-27 07:51:57.000000000 -0700 +++ squid-3.4.8/errors/pt-br/ERR_DIR_LISTING 2014-09-15 01:45:40.000000000 -0700 @@ -25,7 +25,7 @@
    Parent Directory (Root Directory)
    - + %g diff -u -r -N squid-3.4.7/errors/ro/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/ro/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/ro/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:53:09.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:46:47.000000000 -0700 @@ -20,10 +20,10 @@

    S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    Aceste limite au fost impuse de către organizaţia care oferă serviciile de Internet şi care administreză acest cache. Vă rugăm să îi contactaţi în mod direct dacă sunteţi de părere că este o greşeală.

    Administratorul cache-ului este %w.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_CANNOT_FORWARD squid-3.4.8/errors/ro/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/ro/ERR_CANNOT_FORWARD 2014-08-27 07:53:14.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_CANNOT_FORWARD 2014-09-15 01:46:52.000000000 -0700 @@ -23,13 +23,13 @@

    Nu pot să forwardez această cerere la acest moment.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    Unele posibile probleme sunt:

    Administratorul cache-ului este %w.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_CONFLICT_HOST squid-3.4.8/errors/ro/ERR_CONFLICT_HOST --- squid-3.4.7/errors/ro/ERR_CONFLICT_HOST 2014-08-27 07:53:15.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_CONFLICT_HOST 2014-09-15 01:46:53.000000000 -0700 @@ -20,15 +20,15 @@

    S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    Unele posibile probleme sunt:

    Administratorul cache-ului este %w.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_DIR_LISTING squid-3.4.8/errors/ro/ERR_DIR_LISTING --- squid-3.4.7/errors/ro/ERR_DIR_LISTING 2014-08-27 07:53:18.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_DIR_LISTING 2014-09-15 01:46:55.000000000 -0700 @@ -19,13 +19,13 @@

    Conţinutul directorului:

    -
    
    +
    %z
    Diretório pai (Root Directory)Diretório pai (Diretório raiz)
    - + %g diff -u -r -N squid-3.4.7/errors/ro/ERR_DNS_FAIL squid-3.4.8/errors/ro/ERR_DNS_FAIL --- squid-3.4.7/errors/ro/ERR_DNS_FAIL 2014-08-27 07:53:19.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_DNS_FAIL 2014-09-15 01:46:56.000000000 -0700 @@ -25,7 +25,7 @@

    Serverul DNS a răspuns:

    -
    
    +
    %z

    Aceasta înseamnă că serverul de cache nu a putut rezolva numele host-ului scris în URL. Verificaţi dacă adresa este corectă.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_ESI squid-3.4.8/errors/ro/ERR_ESI --- squid-3.4.7/errors/ro/ERR_ESI 2014-08-27 07:53:20.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_ESI 2014-09-15 01:46:57.000000000 -0700 @@ -25,7 +25,7 @@

    Procesorul ESI a răspuns:

    -
    
    +
    %Z

    Aceasta înseamnă ca proxy-ul intermediar nu a putut procesa modelul ESI. Vă rugăm să raportaţi această eroare webmaster-ului.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_FTP_FAILURE squid-3.4.8/errors/ro/ERR_FTP_FAILURE --- squid-3.4.7/errors/ro/ERR_FTP_FAILURE 2014-08-27 07:53:23.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_FTP_FAILURE 2014-09-15 01:47:00.000000000 -0700 @@ -21,13 +21,13 @@

    Squid a trimis următoarea comandă FTP:

    -
    
    +
    %f

    Răspunsul serverului a fost:

    -
    
    -
    
    +
    %F
    +
    %g

    Administratorul cache-ului este %w.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_FTP_FORBIDDEN squid-3.4.8/errors/ro/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/ro/ERR_FTP_FORBIDDEN 2014-08-27 07:53:24.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_FTP_FORBIDDEN 2014-09-15 01:47:01.000000000 -0700 @@ -21,13 +21,13 @@

    Squid a trimis următoarea comandă FTP:

    -
    
    +
    %f

    Răspunsul serverului a fost:

    -
    
    -
    
    +
    %F
    +
    %g

    Administratorul cache-ului este %w.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_FTP_NOT_FOUND squid-3.4.8/errors/ro/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/ro/ERR_FTP_NOT_FOUND 2014-08-27 07:53:25.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_FTP_NOT_FOUND 2014-09-15 01:47:02.000000000 -0700 @@ -21,13 +21,13 @@

    Squid a trimis următoarea comandă FTP:

    -
    
    +
    %f

    Răspunsul serverului a fost:

    -
    
    -
    
    +
    %F
    +
    %g

    Acest lucru poate fi cauzat de un URL FTP cu o cale absolută (ceea ce nu este conform RFC-ului 1738). Dacă aceasta este cauza, atunci fişierul poate fi găsit la %B.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_FTP_PUT_ERROR squid-3.4.8/errors/ro/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/ro/ERR_FTP_PUT_ERROR 2014-08-27 07:53:27.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_FTP_PUT_ERROR 2014-09-15 01:47:04.000000000 -0700 @@ -21,12 +21,12 @@

    Squid a trimis următoarea comandă FTP:

    -
    
    +
    %f

    Răspunsul serverului a fost:

    -
    
    +
    %F

    Aceasta înseamnă probabil că serverul FTP nu are permisiunea sau spaţiul necesar pentru a stoca fişierul. Verificaţi calea, permisiunile, spaţiul pe disc şi încercaţi din nou.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/ro/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/ro/ERR_FTP_UNAVAILABLE 2014-08-27 07:53:29.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_FTP_UNAVAILABLE 2014-09-15 01:47:06.000000000 -0700 @@ -22,13 +22,13 @@

    Squid a trimis următoarea comandă FTP:

    -
    
    +
    %f

    Răspunsul serverului a fost:

    -
    
    -
    
    +
    %F
    +
    %g

    Administratorul cache-ului este %w.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_GATEWAY_FAILURE squid-3.4.8/errors/ro/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/ro/ERR_GATEWAY_FAILURE 2014-08-27 07:53:30.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_GATEWAY_FAILURE 2014-09-15 01:47:07.000000000 -0700 @@ -20,10 +20,10 @@

    S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_INVALID_REQ squid-3.4.8/errors/ro/ERR_INVALID_REQ --- squid-3.4.7/errors/ro/ERR_INVALID_REQ 2014-08-27 07:53:33.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_INVALID_REQ 2014-09-15 01:47:09.000000000 -0700 @@ -20,7 +20,7 @@

    Eroarea Cerere invalidă a fost întâlnită în timp ce se încerca procesarea cererii:

    -
    
    +
    %R

    Unele posibile probleme sunt:

    diff -u -r -N squid-3.4.7/errors/ro/ERR_INVALID_RESP squid-3.4.8/errors/ro/ERR_INVALID_RESP --- squid-3.4.7/errors/ro/ERR_INVALID_RESP 2014-08-27 07:53:34.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_INVALID_RESP 2014-09-15 01:47:10.000000000 -0700 @@ -20,7 +20,7 @@

    Eroarea Răspuns invalid a fost întâlnită în timp ce se încerca procesarea cererii:

    -
    
    +
    %R

    Mesajul HTTP primit de la serverul contactat nu a putut fi inţeles sau a fost malformat. Vă rugăm să contactaţi administratorul serverului respectiv.

    diff -u -r -N squid-3.4.7/errors/ro/ERR_PRECONDITION_FAILED squid-3.4.8/errors/ro/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/ro/ERR_PRECONDITION_FAILED 2014-08-27 07:53:38.000000000 -0700 +++ squid-3.4.8/errors/ro/ERR_PRECONDITION_FAILED 2014-09-15 01:47:15.000000000 -0700 @@ -20,12 +20,12 @@

    S-a recepţionat următoarea eroare când se încerca accesarea URL-ului: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    diff -u -r -N squid-3.4.7/errors/ru/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/ru/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/ru/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:53:52.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:47:27.000000000 -0700 @@ -20,10 +20,10 @@

    При получении URL %U произошла следующая ошибка

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    Эти ограничения были установлены администратором. Свяжитесь с ним для получения информации.

    Администратор Вашего кэша: %w.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_CANNOT_FORWARD squid-3.4.8/errors/ru/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/ru/ERR_CANNOT_FORWARD 2014-08-27 07:53:57.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_CANNOT_FORWARD 2014-09-15 01:47:31.000000000 -0700 @@ -23,13 +23,13 @@

    Невозможно переслать этот запрос в данное время.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    Возможные проблемы:

    Администратор Вашего кэша: %w.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_CONFLICT_HOST squid-3.4.8/errors/ru/ERR_CONFLICT_HOST --- squid-3.4.7/errors/ru/ERR_CONFLICT_HOST 2014-08-27 07:53:58.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_CONFLICT_HOST 2014-09-15 01:47:32.000000000 -0700 @@ -20,15 +20,15 @@

    При получении URL %U произошла следующая ошибка

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    Возможные проблемы:

    Администратор Вашего кэша: %w.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_DIR_LISTING squid-3.4.8/errors/ru/ERR_DIR_LISTING --- squid-3.4.7/errors/ru/ERR_DIR_LISTING 2014-08-27 07:54:00.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_DIR_LISTING 2014-09-15 01:47:34.000000000 -0700 @@ -19,13 +19,13 @@

    Содержимое каталога:

    -
    
    +
    %z
    Director părinte (Root Directory)Director părinte (Director rădăcină)
    - + %g diff -u -r -N squid-3.4.7/errors/ru/ERR_DNS_FAIL squid-3.4.8/errors/ru/ERR_DNS_FAIL --- squid-3.4.7/errors/ru/ERR_DNS_FAIL 2014-08-27 07:54:01.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_DNS_FAIL 2014-09-15 01:47:35.000000000 -0700 @@ -25,7 +25,7 @@

    Сервер DNS ответил:

    -
    
    +
    %z

    Это означает, что кэш не смог распознать имя узла в URL. Проверьте адрес на корректность.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_ESI squid-3.4.8/errors/ru/ERR_ESI --- squid-3.4.7/errors/ru/ERR_ESI 2014-08-27 07:54:02.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_ESI 2014-09-15 01:47:36.000000000 -0700 @@ -25,7 +25,7 @@

    Обработчик ESI ответил:

    -
    
    +
    %Z

    Это означает, что заместитель не сумел обработать ESI-шаблон. Пожалуйста, сообщите об этой ошибке веб-мастеру.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_FTP_FAILURE squid-3.4.8/errors/ru/ERR_FTP_FAILURE --- squid-3.4.7/errors/ru/ERR_FTP_FAILURE 2014-08-27 07:54:05.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_FTP_FAILURE 2014-09-15 01:47:39.000000000 -0700 @@ -21,13 +21,13 @@

    Squid послал следующую команду FTP:

    -
    
    +
    %f

    Сервер ответил:

    -
    
    -
    
    +
    %F
    +
    %g

    Администратор Вашего кэша: %w.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_FTP_FORBIDDEN squid-3.4.8/errors/ru/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/ru/ERR_FTP_FORBIDDEN 2014-08-27 07:54:06.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_FTP_FORBIDDEN 2014-09-15 01:47:40.000000000 -0700 @@ -21,13 +21,13 @@

    Squid послал следующую команду FTP:

    -
    
    +
    %f

    Сервер ответил:

    -
    
    -
    
    +
    %F
    +
    %g

    Администратор Вашего кэша: %w.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_FTP_NOT_FOUND squid-3.4.8/errors/ru/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/ru/ERR_FTP_NOT_FOUND 2014-08-27 07:54:07.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_FTP_NOT_FOUND 2014-09-15 01:47:41.000000000 -0700 @@ -21,13 +21,13 @@

    Squid послал следующую команду FTP:

    -
    
    +
    %f

    Сервер ответил:

    -
    
    -
    
    +
    %F
    +
    %g

    Это могло произойти из-за абсолютной ссылки на FTP (которая не соответствует RFC 1738). В этом случае файл может быть получен по адресу %B.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_FTP_PUT_ERROR squid-3.4.8/errors/ru/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/ru/ERR_FTP_PUT_ERROR 2014-08-27 07:54:09.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_FTP_PUT_ERROR 2014-09-15 01:47:43.000000000 -0700 @@ -21,12 +21,12 @@

    Squid послал следующую команду FTP:

    -
    
    +
    %f

    Сервер ответил:

    -
    
    +
    %F

    Это означает, что сервер FTP может не иметь прав или свободного места для хранения файла. Проверьте путь, права, свободное место и попробуйте снова.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/ru/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/ru/ERR_FTP_UNAVAILABLE 2014-08-27 07:54:11.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_FTP_UNAVAILABLE 2014-09-15 01:47:45.000000000 -0700 @@ -22,13 +22,13 @@

    Squid послал следующую команду FTP:

    -
    
    +
    %f

    Сервер ответил:

    -
    
    -
    
    +
    %F
    +
    %g

    Администратор Вашего кэша: %w.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_GATEWAY_FAILURE squid-3.4.8/errors/ru/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/ru/ERR_GATEWAY_FAILURE 2014-08-27 07:54:12.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_GATEWAY_FAILURE 2014-09-15 01:47:46.000000000 -0700 @@ -20,10 +20,10 @@

    При получении URL %U произошла следующая ошибка

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_INVALID_REQ squid-3.4.8/errors/ru/ERR_INVALID_REQ --- squid-3.4.7/errors/ru/ERR_INVALID_REQ 2014-08-27 07:54:14.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_INVALID_REQ 2014-09-15 01:47:48.000000000 -0700 @@ -20,7 +20,7 @@

    Обнаружен недопустимый запрос:

    -
    
    +
    %R

    Возможные проблемы:

    @@ -31,7 +31,7 @@
  • Запрос слишком велик.

  • В запросе POST или PUT отсутствует заголовок Content-Length.

  • Недопустимый символ в имени узла (hostname), подчёркивания запрещены.

  • -
  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • Администратор Вашего кэша: %w.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_INVALID_RESP squid-3.4.8/errors/ru/ERR_INVALID_RESP --- squid-3.4.7/errors/ru/ERR_INVALID_RESP 2014-08-27 07:54:15.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_INVALID_RESP 2014-09-15 01:47:49.000000000 -0700 @@ -20,7 +20,7 @@

    Получен недопустимый ответ при попытке обработки запроса:

    -
    
    +
    %R

    Ответ HTTP, полученный от сервера, не может быть распознан, или он был неверно сформирован. Пожалуйста, свяжитесь с оператором сайта.

    diff -u -r -N squid-3.4.7/errors/ru/ERR_PRECONDITION_FAILED squid-3.4.8/errors/ru/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/ru/ERR_PRECONDITION_FAILED 2014-08-27 07:54:19.000000000 -0700 +++ squid-3.4.8/errors/ru/ERR_PRECONDITION_FAILED 2014-09-15 01:47:54.000000000 -0700 @@ -20,12 +20,12 @@

    При получении URL %U произошла следующая ошибка

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    diff -u -r -N squid-3.4.7/errors/sk/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/sk/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/sk/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:54:32.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:48:06.000000000 -0700 @@ -20,10 +20,10 @@

    Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    Tieto obmedzenia zaviedol poskytovateľ tohto cache servera. Prosím, kontaktujte ho priamo ak máte pocit, že to je chyba.

    Vaším správcom cache je %w.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_CANNOT_FORWARD squid-3.4.8/errors/sk/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/sk/ERR_CANNOT_FORWARD 2014-08-27 07:54:37.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_CANNOT_FORWARD 2014-09-15 01:48:11.000000000 -0700 @@ -23,13 +23,13 @@

    Požiadavku teraz nie je možné presmerovať.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    Niektoré možné problémy:

    Vaším správcom cache je %w.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_CONFLICT_HOST squid-3.4.8/errors/sk/ERR_CONFLICT_HOST --- squid-3.4.7/errors/sk/ERR_CONFLICT_HOST 2014-08-27 07:54:38.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_CONFLICT_HOST 2014-09-15 01:48:12.000000000 -0700 @@ -20,15 +20,15 @@

    Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    Niektoré možné problémy:

    Vaším správcom cache je %w.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_DIR_LISTING squid-3.4.8/errors/sk/ERR_DIR_LISTING --- squid-3.4.7/errors/sk/ERR_DIR_LISTING 2014-08-27 07:54:40.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_DIR_LISTING 2014-09-15 01:48:14.000000000 -0700 @@ -19,13 +19,13 @@

    Obsah adresára:

    -
    
    +
    %z
    Родительский каталог (Root Directory)Родительская директория (Корневая директория)
    - + %g diff -u -r -N squid-3.4.7/errors/sk/ERR_DNS_FAIL squid-3.4.8/errors/sk/ERR_DNS_FAIL --- squid-3.4.7/errors/sk/ERR_DNS_FAIL 2014-08-27 07:54:41.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_DNS_FAIL 2014-09-15 01:48:15.000000000 -0700 @@ -25,7 +25,7 @@

    DNS server odpovedal:

    -
    
    +
    %z

    To znamená, že cache server nebol schopný získať adresu uvedenú v URL. Prosím, skontrolujte správnosť adresy.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_ESI squid-3.4.8/errors/sk/ERR_ESI --- squid-3.4.7/errors/sk/ERR_ESI 2014-08-27 07:54:41.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_ESI 2014-09-15 01:48:15.000000000 -0700 @@ -25,7 +25,7 @@

    ESI procesor vrátil:

    -
    
    +
    %Z

    To znamená, že zástupca nedokázal spracovať šablónu ESI. Prosím, ohláste túto chybu webmasterovi.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_FTP_FAILURE squid-3.4.8/errors/sk/ERR_FTP_FAILURE --- squid-3.4.7/errors/sk/ERR_FTP_FAILURE 2014-08-27 07:54:44.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_FTP_FAILURE 2014-09-15 01:48:18.000000000 -0700 @@ -21,13 +21,13 @@

    Squid odoslal nasledujúci FTP príkaz:

    -
    
    +
    %f

    Server odpovedal:

    -
    
    -
    
    +
    %F
    +
    %g

    Vaším správcom cache je %w.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_FTP_FORBIDDEN squid-3.4.8/errors/sk/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/sk/ERR_FTP_FORBIDDEN 2014-08-27 07:54:45.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_FTP_FORBIDDEN 2014-09-15 01:48:19.000000000 -0700 @@ -21,13 +21,13 @@

    Squid odoslal nasledujúci FTP príkaz:

    -
    
    +
    %f

    Server odpovedal:

    -
    
    -
    
    +
    %F
    +
    %g

    Vaším správcom cache je %w.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_FTP_NOT_FOUND squid-3.4.8/errors/sk/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/sk/ERR_FTP_NOT_FOUND 2014-08-27 07:54:46.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_FTP_NOT_FOUND 2014-09-15 01:48:20.000000000 -0700 @@ -21,13 +21,13 @@

    Squid odoslal nasledujúci FTP príkaz:

    -
    
    +
    %f

    Server odpovedal:

    -
    
    -
    
    +
    %F
    +
    %g

    To môže byť spôsobené uvedením absolútnej cesty v FTP URL (čo odporuje RFC 1738). V tom prípade by ste súbor mohli nájsť na %B.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_FTP_PUT_ERROR squid-3.4.8/errors/sk/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/sk/ERR_FTP_PUT_ERROR 2014-08-27 07:54:48.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_FTP_PUT_ERROR 2014-09-15 01:48:22.000000000 -0700 @@ -21,12 +21,12 @@

    Squid odoslal nasledujúci FTP príkaz:

    -
    
    +
    %f

    Server odpovedal:

    -
    
    +
    %F

    To znamená, že FTP server nemusí mať oprávnenie alebo priestor na uloženie súboru. Skontrolujte cestu, oprávnenia, miesto na disku a skúste to znova.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/sk/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/sk/ERR_FTP_UNAVAILABLE 2014-08-27 07:54:50.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_FTP_UNAVAILABLE 2014-09-15 01:48:24.000000000 -0700 @@ -22,13 +22,13 @@

    Squid odoslal nasledujúci FTP príkaz:

    -
    
    +
    %f

    Server odpovedal:

    -
    
    -
    
    +
    %F
    +
    %g

    Vaším správcom cache je %w.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_GATEWAY_FAILURE squid-3.4.8/errors/sk/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/sk/ERR_GATEWAY_FAILURE 2014-08-27 07:54:51.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_GATEWAY_FAILURE 2014-09-15 01:48:25.000000000 -0700 @@ -20,10 +20,10 @@

    Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_INVALID_REQ squid-3.4.8/errors/sk/ERR_INVALID_REQ --- squid-3.4.7/errors/sk/ERR_INVALID_REQ 2014-08-27 07:54:53.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_INVALID_REQ 2014-09-15 01:48:27.000000000 -0700 @@ -20,7 +20,7 @@

    Vyskytla sa chyba Neplatná požiadavka pri pokuse o spracovanie požiadavky:

    -
    
    +
    %R

    Niektoré možné problémy:

    diff -u -r -N squid-3.4.7/errors/sk/ERR_INVALID_RESP squid-3.4.8/errors/sk/ERR_INVALID_RESP --- squid-3.4.7/errors/sk/ERR_INVALID_RESP 2014-08-27 07:54:54.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_INVALID_RESP 2014-09-15 01:48:28.000000000 -0700 @@ -20,7 +20,7 @@

    Vyskytla sa chyba Neplatná odpoveď pri pokuse o spracovanie požiadavky:

    -
    
    +
    %R

    HTTP odpovedi prijatej z kontaktovaného servera nebolo možné porozumieť alebo bola nejako poškodená. Kontaktujte prosím správcu servera.

    diff -u -r -N squid-3.4.7/errors/sk/ERR_PRECONDITION_FAILED squid-3.4.8/errors/sk/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/sk/ERR_PRECONDITION_FAILED 2014-08-27 07:54:59.000000000 -0700 +++ squid-3.4.8/errors/sk/ERR_PRECONDITION_FAILED 2014-09-15 01:48:32.000000000 -0700 @@ -20,12 +20,12 @@

    Pri pokuse o získanie URL sa vyskytla nasledovná chyba: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    diff -u -r -N squid-3.4.7/errors/sl/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/sl/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/sl/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:55:12.000000000 -0700 +++ squid-3.4.8/errors/sl/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:48:44.000000000 -0700 @@ -20,10 +20,10 @@

    Prišlo je do napake med poskusom nalaganja naslova URL: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    Te omejitve je določil internetni ponudnik, ki oskrbuje ta predpomnilnik. Obrnite se neposredno nanj, če menite, da gre za napako.

    Skrbnik vašega predpomnilnika je %w.

    diff -u -r -N squid-3.4.7/errors/sl/ERR_CANNOT_FORWARD squid-3.4.8/errors/sl/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/sl/ERR_CANNOT_FORWARD 2014-08-27 07:55:16.000000000 -0700 +++ squid-3.4.8/errors/sl/ERR_CANNOT_FORWARD 2014-09-15 01:48:49.000000000 -0700 @@ -23,13 +23,13 @@

    Te zahteve trenutno ni mogoče posredovati.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    Težave so lahko med drugim:

    Skrbnik vašega predpomnilnika je %w.

    diff -u -r -N squid-3.4.7/errors/sl/ERR_CONFLICT_HOST squid-3.4.8/errors/sl/ERR_CONFLICT_HOST --- squid-3.4.7/errors/sl/ERR_CONFLICT_HOST 2014-08-27 07:55:17.000000000 -0700 +++ squid-3.4.8/errors/sl/ERR_CONFLICT_HOST 2014-09-15 01:48:50.000000000 -0700 @@ -20,15 +20,15 @@

    Prišlo je do napake med poskusom nalaganja naslova URL: %U

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    Težave so lahko med drugim:

    Skrbnik vašega predpomnilnika je %w.

    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_ACCESS_DENIED squid-3.4.8/errors/sr-cyrl/ERR_ACCESS_DENIED --- squid-3.4.7/errors/sr-cyrl/ERR_ACCESS_DENIED 2014-08-27 07:55:53.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_ACCESS_DENIED 2014-09-15 01:49:21.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Access Denied.

    -

    +

    Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/sr-cyrl/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/sr-cyrl/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:55:54.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:49:22.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Time Quota Exceeded.

    -

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_AGENT_CONFIGURE squid-3.4.8/errors/sr-cyrl/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/sr-cyrl/ERR_AGENT_CONFIGURE 2014-08-27 07:55:55.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_AGENT_CONFIGURE 2014-09-15 01:49:23.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    -

    +

    ERROR

    +

    Web Browser Configuration


    -

    +

    Your Web Browser configuration needs to be corrected to use this network.

    -

    +

    How to find these settings in your browser:

    For Firefox browsers go to:
      -
    • -
    • +
    • Tools -> Options -> Advanced -> Network -> Connection Settings
    • +
    • In the HTTP proxy box type the proxy name %h and port %b.
    For Internet Explorer browsers go to:
      -
    • -
    • +
    • Tools -> Internet Options -> Connection -> LAN Settings ->Proxy
    • +
    • In the HTTP proxy box type the proxy name %h and port %b.
    For Opera browsers go to:
      -
    • -
    • +
    • Tools -> Preferences -> Advanced -> Network -> Proxy Servers
    • +
    • In the HTTP proxy box type the proxy name %h and port %b.
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_AGENT_WPAD squid-3.4.8/errors/sr-cyrl/ERR_AGENT_WPAD --- squid-3.4.7/errors/sr-cyrl/ERR_AGENT_WPAD 2014-08-27 07:55:56.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_AGENT_WPAD 2014-09-15 01:49:24.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    -

    +

    ERROR

    +

    Web Browser Configuration


    -

    +

    Your Web Browser configuration needs to be corrected to use this network.

    -

    +

    How to find these settings in your browser:

    For Firefox browsers go to:
      -
    • -
    • +
    • Tools -> Options -> Advanced -> Network -> Connection Settings
    • +
    • Select Auto-detect proxy settings for this network
    For Internet Explorer browsers go to:
      -
    • -
    • +
    • Tools -> Internet Options -> Connection -> LAN Settings ->Proxy
    • +
    • Select Automatically detect settings
    For Opera browsers go to:
      -
    • -
    • +
    • Tools -> Preferences -> Advanced -> Network -> Proxy Servers
    • +
    • Select Use Automatic proxy configuration
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED squid-3.4.8/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED --- squid-3.4.7/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED 2014-08-27 07:55:57.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_CACHE_ACCESS_DENIED 2014-09-15 01:49:25.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: Cache Access Denied
    -

    -

    +

    ERROR

    +

    Cache Access Denied.


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Cache Access Denied.

    -

    +

    Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.

    -

    +

    Please contact the cache administrator if you have difficulties authenticating yourself.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_CACHE_MGR_ACCESS_DENIED squid-3.4.8/errors/sr-cyrl/ERR_CACHE_MGR_ACCESS_DENIED --- squid-3.4.7/errors/sr-cyrl/ERR_CACHE_MGR_ACCESS_DENIED 2014-08-27 07:55:58.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_CACHE_MGR_ACCESS_DENIED 2014-09-15 01:49:26.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: Cache Manager Access Denied
    -

    -

    +

    ERROR

    +

    Cache Manager Access Denied.


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Cache Manager Access Denied.

    -

    +

    Sorry, you are not currently allowed to request %U from this cache manager until you have authenticated yourself.

    -

    +

    Please contact the cache administrator if you have difficulties authenticating yourself or, if you are the administrator, read Squid documentation on cache manager interface and check cache log for more detailed error messages.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_CANNOT_FORWARD squid-3.4.8/errors/sr-cyrl/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/sr-cyrl/ERR_CANNOT_FORWARD 2014-08-27 07:55:59.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_CANNOT_FORWARD 2014-09-15 01:49:27.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unable to forward this request at this time.

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    -

    +

    Some possible problems are:

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_CONFLICT_HOST squid-3.4.8/errors/sr-cyrl/ERR_CONFLICT_HOST --- squid-3.4.7/errors/sr-cyrl/ERR_CONFLICT_HOST 2014-08-27 07:56:00.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_CONFLICT_HOST 2014-09-15 01:49:28.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    -

    +

    Some possible problems are:

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_CONNECT_FAIL squid-3.4.8/errors/sr-cyrl/ERR_CONNECT_FAIL --- squid-3.4.7/errors/sr-cyrl/ERR_CONNECT_FAIL 2014-08-27 07:56:01.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_CONNECT_FAIL 2014-09-15 01:49:29.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Connection to %I failed.

    -

    +

    The system returned: %E

    -

    +

    The remote host or network may be down. Please try the request again.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_DIR_LISTING squid-3.4.8/errors/sr-cyrl/ERR_DIR_LISTING --- squid-3.4.7/errors/sr-cyrl/ERR_DIR_LISTING 2014-08-27 07:56:02.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_DIR_LISTING 2014-09-15 01:49:30.000000000 -0700 @@ -1,7 +1,7 @@ - +Directory: %U
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Nadradený adresár (Root Directory)Rodičovský adresár (Koreňový adresár)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_DNS_FAIL squid-3.4.8/errors/sr-cyrl/ERR_DNS_FAIL --- squid-3.4.7/errors/sr-cyrl/ERR_DNS_FAIL 2014-08-27 07:56:03.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_DNS_FAIL 2014-09-15 01:49:31.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unable to determine IP address from host name %H

    -

    +

    The DNS server returned:

    -
    
    +
    %z
    -

    +

    This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_ESI squid-3.4.8/errors/sr-cyrl/ERR_ESI --- squid-3.4.7/errors/sr-cyrl/ERR_ESI 2014-08-27 07:56:04.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_ESI 2014-09-15 01:49:32.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_FORWARDING_DENIED squid-3.4.8/errors/sr-cyrl/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/sr-cyrl/ERR_FORWARDING_DENIED 2014-08-27 07:56:05.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_FORWARDING_DENIED 2014-09-15 01:49:32.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Forwarding Denied.

    -

    +

    This cache will not forward your request because it is trying to enforce a sibling relationship. Perhaps the client at %i is a cache which has been misconfigured.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_FTP_DISABLED squid-3.4.8/errors/sr-cyrl/ERR_FTP_DISABLED --- squid-3.4.7/errors/sr-cyrl/ERR_FTP_DISABLED 2014-08-27 07:56:06.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_FTP_DISABLED 2014-09-15 01:49:33.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    FTP is Disabled

    -

    +

    This cache does not support FTP.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_FTP_FAILURE squid-3.4.8/errors/sr-cyrl/ERR_FTP_FAILURE --- squid-3.4.7/errors/sr-cyrl/ERR_FTP_FAILURE 2014-08-27 07:56:07.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_FTP_FAILURE 2014-09-15 01:49:34.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    An FTP protocol error occurred while trying to retrieve the URL: %U

    -

    +

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_FTP_FORBIDDEN squid-3.4.8/errors/sr-cyrl/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/sr-cyrl/ERR_FTP_FORBIDDEN 2014-08-27 07:56:07.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_FTP_FORBIDDEN 2014-09-15 01:49:35.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    An FTP authentication failure occurred while trying to retrieve the URL: %U

    -

    +

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_FTP_NOT_FOUND squid-3.4.8/errors/sr-cyrl/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/sr-cyrl/ERR_FTP_NOT_FOUND 2014-08-27 07:56:08.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_FTP_NOT_FOUND 2014-09-15 01:49:36.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following URL could not be retrieved: %U

    -

    +

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_FTP_PUT_CREATED squid-3.4.8/errors/sr-cyrl/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/sr-cyrl/ERR_FTP_PUT_CREATED 2014-08-27 07:56:09.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_FTP_PUT_CREATED 2014-09-15 01:49:37.000000000 -0700 @@ -1,7 +1,7 @@ - +FTP PUT Successful.
    -

    -

    +

    Operation successful

    +

    File created


    @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_FTP_PUT_ERROR squid-3.4.8/errors/sr-cyrl/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/sr-cyrl/ERR_FTP_PUT_ERROR 2014-08-27 07:56:10.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_FTP_PUT_ERROR 2014-09-15 01:49:38.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: FTP upload failed
    -

    -

    +

    ERROR

    +

    FTP PUT upload failed


    -

    +

    An FTP protocol error occurred while trying to retrieve the URL: %U

    -

    +

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/sr-cyrl/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/sr-cyrl/ERR_FTP_PUT_MODIFIED 2014-08-27 07:56:11.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_FTP_PUT_MODIFIED 2014-09-15 01:49:39.000000000 -0700 @@ -1,7 +1,7 @@ - +FTP PUT Successful.
    -

    -

    +

    Operation successful

    +

    File updated


    @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/sr-cyrl/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/sr-cyrl/ERR_FTP_UNAVAILABLE 2014-08-27 07:56:12.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_FTP_UNAVAILABLE 2014-09-15 01:49:39.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The FTP server was too busy to retrieve the URL: %U

    -

    +

    Squid sent the following FTP command:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_GATEWAY_FAILURE squid-3.4.8/errors/sr-cyrl/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/sr-cyrl/ERR_GATEWAY_FAILURE 2014-08-27 07:56:13.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_GATEWAY_FAILURE 2014-09-15 01:49:40.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    -

    +

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_ICAP_FAILURE squid-3.4.8/errors/sr-cyrl/ERR_ICAP_FAILURE --- squid-3.4.7/errors/sr-cyrl/ERR_ICAP_FAILURE 2014-08-27 07:56:14.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_ICAP_FAILURE 2014-09-15 01:49:41.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    -

    +

    The system returned: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    -

    +

    Some possible problems are:


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_INVALID_REQ squid-3.4.8/errors/sr-cyrl/ERR_INVALID_REQ --- squid-3.4.7/errors/sr-cyrl/ERR_INVALID_REQ 2014-08-27 07:56:15.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_INVALID_REQ 2014-09-15 01:49:42.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R
    -

    +

    Some possible problems are:

      -
    • -
    • -
    • -
    • -
    • -
    • -
    • +
    • Missing or unknown request method.

    • +
    • Missing URL.

    • +
    • Missing HTTP Identifier (HTTP/1.0).

    • +
    • Request is too large.

    • +
    • Content-Length missing for POST or PUT requests.

    • +
    • Illegal character in hostname; underscores are not allowed.

    • +
    • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

    -

    +

    Your cache administrator is %w.


    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_INVALID_RESP squid-3.4.8/errors/sr-cyrl/ERR_INVALID_RESP --- squid-3.4.7/errors/sr-cyrl/ERR_INVALID_RESP 2014-08-27 07:56:16.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_INVALID_RESP 2014-09-15 01:49:43.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R
    -

    +

    The HTTP Response message received from the contacted server could not be understood or was otherwise malformed. Please contact the site operator.

    -

    +

    Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_INVALID_URL squid-3.4.8/errors/sr-cyrl/ERR_INVALID_URL --- squid-3.4.7/errors/sr-cyrl/ERR_INVALID_URL 2014-08-27 07:56:17.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_INVALID_URL 2014-09-15 01:49:44.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Invalid URL

    -

    +

    Some aspect of the requested URL is incorrect.

    -

    +

    Some possible problems are:

      -
    • -
    • -
    • -
    • +
    • Missing or incorrect access protocol (should be http:// or similar)

    • +
    • Missing hostname

    • +
    • Illegal double-escape in the URL-Path

    • +
    • Illegal character in hostname; underscores are not allowed.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_LIFETIME_EXP squid-3.4.8/errors/sr-cyrl/ERR_LIFETIME_EXP --- squid-3.4.7/errors/sr-cyrl/ERR_LIFETIME_EXP 2014-08-27 07:56:18.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_LIFETIME_EXP 2014-09-15 01:49:45.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Connection Lifetime Expired

    -

    +

    Squid has terminated the request because it has exceeded the maximum connection lifetime.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_NO_RELAY squid-3.4.8/errors/sr-cyrl/ERR_NO_RELAY --- squid-3.4.7/errors/sr-cyrl/ERR_NO_RELAY 2014-08-27 07:56:19.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_NO_RELAY 2014-09-15 01:49:46.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    No Wais Relay

    -

    +

    There is no WAIS Relay host defined for this Cache! Yell at the administrator.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/sr-cyrl/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/sr-cyrl/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:56:20.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:49:47.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Valid document was not found in the cache and only-if-cached directive was specified.

    -

    +

    You have issued a request with a only-if-cached cache control directive. The document was not found in the cache, or it required revalidation prohibited by the only-if-cached directive.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_PRECONDITION_FAILED squid-3.4.8/errors/sr-cyrl/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/sr-cyrl/ERR_PRECONDITION_FAILED 2014-08-27 07:56:21.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_PRECONDITION_FAILED 2014-09-15 01:49:47.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_READ_ERROR squid-3.4.8/errors/sr-cyrl/ERR_READ_ERROR --- squid-3.4.7/errors/sr-cyrl/ERR_READ_ERROR 2014-08-27 07:56:22.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_READ_ERROR 2014-09-15 01:49:48.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Read Error

    -

    +

    The system returned: %E

    -

    +

    An error condition occurred while reading data from the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_READ_TIMEOUT squid-3.4.8/errors/sr-cyrl/ERR_READ_TIMEOUT --- squid-3.4.7/errors/sr-cyrl/ERR_READ_TIMEOUT 2014-08-27 07:56:22.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_READ_TIMEOUT 2014-09-15 01:49:49.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Read Timeout

    -

    +

    The system returned: %E

    -

    +

    A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/sr-cyrl/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/sr-cyrl/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:56:23.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:49:50.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,15 +31,15 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_SHUTTING_DOWN squid-3.4.8/errors/sr-cyrl/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/sr-cyrl/ERR_SHUTTING_DOWN 2014-08-27 07:56:24.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_SHUTTING_DOWN 2014-09-15 01:49:51.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_SOCKET_FAILURE squid-3.4.8/errors/sr-cyrl/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/sr-cyrl/ERR_SOCKET_FAILURE 2014-08-27 07:56:25.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_SOCKET_FAILURE 2014-09-15 01:49:52.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Socket Failure

    -

    +

    The system returned: %E

    -

    +

    Squid is unable to create a TCP socket, presumably due to excessive load. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_TOO_BIG squid-3.4.8/errors/sr-cyrl/ERR_TOO_BIG --- squid-3.4.7/errors/sr-cyrl/ERR_TOO_BIG 2014-08-27 07:56:26.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_TOO_BIG 2014-09-15 01:49:53.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    The request or reply is too large.

    -

    -

    -

    +

    If you are making a POST or PUT request, then the item you are trying to upload is too large.

    +

    If you are making a GET request, then the item you are trying to download is too large.

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/sr-cyrl/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/sr-cyrl/ERR_UNSUP_HTTPVERSION 2014-08-27 07:56:27.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_UNSUP_HTTPVERSION 2014-09-15 01:49:54.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_UNSUP_REQ squid-3.4.8/errors/sr-cyrl/ERR_UNSUP_REQ --- squid-3.4.7/errors/sr-cyrl/ERR_UNSUP_REQ 2014-08-27 07:56:28.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_UNSUP_REQ 2014-09-15 01:49:54.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported Request Method and Protocol

    -

    +

    Squid does not support all request methods for all access protocols. For example, you can not POST a Gopher request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_URN_RESOLVE squid-3.4.8/errors/sr-cyrl/ERR_URN_RESOLVE --- squid-3.4.7/errors/sr-cyrl/ERR_URN_RESOLVE 2014-08-27 07:56:29.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_URN_RESOLVE 2014-09-15 01:49:55.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URN could not be retrieved
    -

    -

    +

    ERROR

    +

    A URL for the requested URN could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    -

    +

    Cannot Resolve URN

    -

    +

    Hey, don't expect too much from URNs on %T :)

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_WRITE_ERROR squid-3.4.8/errors/sr-cyrl/ERR_WRITE_ERROR --- squid-3.4.7/errors/sr-cyrl/ERR_WRITE_ERROR 2014-08-27 07:56:30.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_WRITE_ERROR 2014-09-15 01:49:56.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Write Error

    -

    +

    The system returned: %E

    -

    +

    An error condition occurred while writing to the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-cyrl/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/sr-cyrl/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/sr-cyrl/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:56:31.000000000 -0700 +++ squid-3.4.8/errors/sr-cyrl/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:49:57.000000000 -0700 @@ -1,7 +1,7 @@ - +ERROR: The requested URL could not be retrieved
    -

    -

    +

    ERROR

    +

    The requested URL could not be retrieved


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Zero Sized Reply

    -

    +

    Squid did not receive any data for this request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/sr-latn/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/sr-latn/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/sr-latn/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:56:33.000000000 -0700 +++ squid-3.4.8/errors/sr-latn/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:49:59.000000000 -0700 @@ -20,10 +20,10 @@

    Greška učitavanja podataka sa adrese (URL): %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    Vaš keš/proksi administrator je: %w.

    diff -u -r -N squid-3.4.7/errors/sr-latn/ERR_AGENT_CONFIGURE squid-3.4.8/errors/sr-latn/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/sr-latn/ERR_AGENT_CONFIGURE 2014-08-27 07:56:34.000000000 -0700 +++ squid-3.4.8/errors/sr-latn/ERR_AGENT_CONFIGURE 2014-09-15 01:50:00.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -20,10 +20,10 @@

    พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

    -

    +

    Access Denied.

    -

    +

    Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/th/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/th/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:57:55.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:51:13.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -20,11 +20,11 @@

    พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

    -

    +

    Time Quota Exceeded.

    -

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_AGENT_CONFIGURE squid-3.4.8/errors/th/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/th/ERR_AGENT_CONFIGURE 2014-08-27 07:57:56.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_AGENT_CONFIGURE 2014-09-15 01:51:14.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    -

    +

    ERROR

    +

    Web Browser Configuration


    -

    +

    Your Web Browser configuration needs to be corrected to use this network.

    -

    +

    How to find these settings in your browser:

    For Firefox browsers go to:
      -
    • -
    • +
    • Tools -> Options -> Advanced -> Network -> Connection Settings
    • +
    • In the HTTP proxy box type the proxy name %h and port %b.
    For Internet Explorer browsers go to:
      -
    • -
    • +
    • Tools -> Internet Options -> Connection -> LAN Settings ->Proxy
    • +
    • In the HTTP proxy box type the proxy name %h and port %b.
    For Opera browsers go to:
      -
    • -
    • +
    • Tools -> Preferences -> Advanced -> Network -> Proxy Servers
    • +
    • In the HTTP proxy box type the proxy name %h and port %b.
    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_AGENT_WPAD squid-3.4.8/errors/th/ERR_AGENT_WPAD --- squid-3.4.7/errors/th/ERR_AGENT_WPAD 2014-08-27 07:57:57.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_AGENT_WPAD 2014-09-15 01:51:15.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    -

    +

    ERROR

    +

    Web Browser Configuration


    -

    +

    Your Web Browser configuration needs to be corrected to use this network.

    -

    +

    How to find these settings in your browser:

    For Firefox browsers go to:
      -
    • -
    • +
    • Tools -> Options -> Advanced -> Network -> Connection Settings
    • +
    • Select Auto-detect proxy settings for this network
    For Internet Explorer browsers go to:
      -
    • -
    • +
    • Tools -> Internet Options -> Connection -> LAN Settings ->Proxy
    • +
    • Select Automatically detect settings
    For Opera browsers go to:
      -
    • -
    • +
    • Tools -> Preferences -> Advanced -> Network -> Proxy Servers
    • +
    • Select Use Automatic proxy configuration
    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_CACHE_ACCESS_DENIED squid-3.4.8/errors/th/ERR_CACHE_ACCESS_DENIED --- squid-3.4.7/errors/th/ERR_CACHE_ACCESS_DENIED 2014-08-27 07:57:58.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_CACHE_ACCESS_DENIED 2014-09-15 01:51:16.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    การเรียกใช้ระบบแคชไม่ได้รับอนุญาต


    @@ -23,16 +23,16 @@

    การเรียกใช้ระบบแคชไม่ได้รับอนุญาต

    -

    +

    Sorry, you are not currently allowed to request %U from this cache until you have authenticated yourself.

    -

    +

    Please contact the cache administrator if you have difficulties authenticating yourself.



    diff -u -r -N squid-3.4.7/errors/th/ERR_CACHE_MGR_ACCESS_DENIED squid-3.4.8/errors/th/ERR_CACHE_MGR_ACCESS_DENIED --- squid-3.4.7/errors/th/ERR_CACHE_MGR_ACCESS_DENIED 2014-08-27 07:57:59.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_CACHE_MGR_ACCESS_DENIED 2014-09-15 01:51:17.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    การเรียกใช้ระบบจัดการแคชไม่ได้รับอนุญาต


    @@ -23,16 +23,16 @@

    การเรียกใช้ระบบจัดการแคชไม่ได้รับอนุญาต

    -

    +

    Sorry, you are not currently allowed to request %U from this cache manager until you have authenticated yourself.

    -

    +

    Please contact the cache administrator if you have difficulties authenticating yourself or, if you are the administrator, read Squid documentation on cache manager interface and check cache log for more detailed error messages.



    diff -u -r -N squid-3.4.7/errors/th/ERR_CANNOT_FORWARD squid-3.4.8/errors/th/ERR_CANNOT_FORWARD --- squid-3.4.7/errors/th/ERR_CANNOT_FORWARD 2014-08-27 07:58:00.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_CANNOT_FORWARD 2014-09-15 01:51:18.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -23,13 +23,13 @@

    ในขณะนี้ไม่สามารถส่งต่อ (forward) คำขอนี้

    -

    +

    This request could not be forwarded to the origin server or to any parent caches.

    ปัญหาที่เป็นไปได้อาจจะเป็น:

      -
    • -
    • -
    • +
    • An Internet connection needed to access this domains origin servers may be down.
    • +
    • All configured parent caches may be currently unreachable.
    • +
    • The administrator may not allow this cache to make direct connections to origin servers.

    ผู้ดูแลระบบแคชของคุณคือ %w

    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_CONFLICT_HOST squid-3.4.8/errors/th/ERR_CONFLICT_HOST --- squid-3.4.7/errors/th/ERR_CONFLICT_HOST 2014-08-27 07:58:01.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_CONFLICT_HOST 2014-09-15 01:51:19.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -20,15 +20,15 @@

    พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

    -
    
    +
    URI Host Conflict
    -

    +

    This means the domain name you are trying to access apparently no longer exists on the machine you are requesting it from.

    ปัญหาที่เป็นไปได้อาจจะเป็น:

      -
    • -
    • +
    • The domain may have moved very recently. Trying again will resolve that.
    • +
    • The website may require you to use a local country-based version. Using your ISP provided DNS server(s) should resolve that.

    ผู้ดูแลระบบแคชของคุณคือ %w

    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_CONNECT_FAIL squid-3.4.8/errors/th/ERR_CONNECT_FAIL --- squid-3.4.7/errors/th/ERR_CONNECT_FAIL 2014-08-27 07:58:02.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_CONNECT_FAIL 2014-09-15 01:51:20.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -25,7 +25,7 @@

    ระบบส่งค่าคืนดังนี้: %E

    -

    +

    The remote host or network may be down. Please try the request again.

    ผู้ดูแลระบบแคชของคุณคือ %w

    @@ -34,7 +34,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_DIR_LISTING squid-3.4.8/errors/th/ERR_DIR_LISTING --- squid-3.4.7/errors/th/ERR_DIR_LISTING 2014-08-27 07:58:03.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_DIR_LISTING 2014-09-15 01:51:20.000000000 -0700 @@ -1,7 +1,7 @@ - +Directory: %U
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Parent Directory (Root Directory)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_DNS_FAIL squid-3.4.8/errors/th/ERR_DNS_FAIL --- squid-3.4.7/errors/th/ERR_DNS_FAIL 2014-08-27 07:58:04.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_DNS_FAIL 2014-09-15 01:51:21.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -25,10 +25,10 @@

    เครื่องบริการ DNS ส่งค่ากลับมาดังนี้:

    -
    
    +
    %z
    -

    +

    This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_ESI squid-3.4.8/errors/th/ERR_ESI --- squid-3.4.7/errors/th/ERR_ESI 2014-08-27 07:58:04.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_ESI 2014-09-15 01:51:22.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -25,10 +25,10 @@

    หน่วยประมวลผล ESI ส่งค่ากลับมาดังนี้:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    ผู้ดูแลเว็บของคุณคือ %w


    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_FORWARDING_DENIED squid-3.4.8/errors/th/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/th/ERR_FORWARDING_DENIED 2014-08-27 07:58:05.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_FORWARDING_DENIED 2014-09-15 01:51:23.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -23,7 +23,7 @@

    การส่งต่อ (forwarding) ไม่ได้รับอนุญาต

    -

    +

    This cache will not forward your request because it is trying to enforce a sibling relationship. Perhaps the client at %i is a cache which has been misconfigured.

    ผู้ดูแลระบบแคชของคุณคือ %w

    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_FTP_DISABLED squid-3.4.8/errors/th/ERR_FTP_DISABLED --- squid-3.4.7/errors/th/ERR_FTP_DISABLED 2014-08-27 07:58:06.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_FTP_DISABLED 2014-09-15 01:51:24.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -32,7 +32,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_FTP_FAILURE squid-3.4.8/errors/th/ERR_FTP_FAILURE --- squid-3.4.7/errors/th/ERR_FTP_FAILURE 2014-08-27 07:58:07.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_FTP_FAILURE 2014-09-15 01:51:25.000000000 -0700 @@ -11,23 +11,23 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    -

    +

    An FTP protocol error occurred while trying to retrieve the URL: %U

    squid ได้ส่งคำสั่ง FTP ดังต่อไปนี้:

    -
    
    +
    %f

    เครื่องให้บริการ (server) ตอบกลับดังนี้:

    -
    
    -
    
    +
    %F
    +
    %g

    ผู้ดูแลระบบแคชของคุณคือ %w

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_FTP_FORBIDDEN squid-3.4.8/errors/th/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/th/ERR_FTP_FORBIDDEN 2014-08-27 07:58:08.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_FTP_FORBIDDEN 2014-09-15 01:51:26.000000000 -0700 @@ -11,23 +11,23 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    -

    +

    An FTP authentication failure occurred while trying to retrieve the URL: %U

    squid ได้ส่งคำสั่ง FTP ดังต่อไปนี้:

    -
    
    +
    %f

    เครื่องให้บริการ (server) ตอบกลับดังนี้:

    -
    
    -
    
    +
    %F
    +
    %g

    ผู้ดูแลระบบแคชของคุณคือ %w

    @@ -36,7 +36,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_FTP_NOT_FOUND squid-3.4.8/errors/th/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/th/ERR_FTP_NOT_FOUND 2014-08-27 07:58:09.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_FTP_NOT_FOUND 2014-09-15 01:51:27.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -21,16 +21,16 @@

    squid ได้ส่งคำสั่ง FTP ดังต่อไปนี้:

    -
    
    +
    %f

    เครื่องให้บริการ (server) ตอบกลับดังนี้:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_FTP_PUT_CREATED squid-3.4.8/errors/th/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/th/ERR_FTP_PUT_CREATED 2014-08-27 07:58:10.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_FTP_PUT_CREATED 2014-09-15 01:51:28.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_FTP_PUT_ERROR squid-3.4.8/errors/th/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/th/ERR_FTP_PUT_ERROR 2014-08-27 07:58:11.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_FTP_PUT_ERROR 2014-09-15 01:51:29.000000000 -0700 @@ -11,25 +11,25 @@ -->
    -

    +

    ERROR

    FTP PUT upload failed


    -

    +

    An FTP protocol error occurred while trying to retrieve the URL: %U

    squid ได้ส่งคำสั่ง FTP ดังต่อไปนี้:

    -
    
    +
    %f

    เครื่องให้บริการ (server) ตอบกลับดังนี้:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/th/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/th/ERR_FTP_PUT_MODIFIED 2014-08-27 07:58:12.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_FTP_PUT_MODIFIED 2014-09-15 01:51:29.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/th/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/th/ERR_FTP_UNAVAILABLE 2014-08-27 07:58:13.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_FTP_UNAVAILABLE 2014-09-15 01:51:30.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -22,13 +22,13 @@

    squid ได้ส่งคำสั่ง FTP ดังต่อไปนี้:

    -
    
    +
    %f

    เครื่องให้บริการ (server) ตอบกลับดังนี้:

    -
    
    -
    
    +
    %F
    +
    %g

    ผู้ดูแลระบบแคชของคุณคือ %w

    @@ -37,7 +37,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_GATEWAY_FAILURE squid-3.4.8/errors/th/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/th/ERR_GATEWAY_FAILURE 2014-08-27 07:58:14.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_GATEWAY_FAILURE 2014-09-15 01:51:31.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -20,12 +20,12 @@

    พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    -

    +

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_ICAP_FAILURE squid-3.4.8/errors/th/ERR_ICAP_FAILURE --- squid-3.4.7/errors/th/ERR_ICAP_FAILURE 2014-08-27 07:58:15.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_ICAP_FAILURE 2014-09-15 01:51:32.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -25,12 +25,12 @@

    ระบบส่งค่าคืนดังนี้: %E

    -

    +

    This means that some aspect of the ICAP communication failed.

    ปัญหาที่เป็นไปได้อาจจะเป็น:

      -
    • -
    • +
    • The ICAP server is not reachable.

    • +
    • An Illegal response was received from the ICAP server.


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_INVALID_REQ squid-3.4.8/errors/th/ERR_INVALID_REQ --- squid-3.4.7/errors/th/ERR_INVALID_REQ 2014-08-27 07:58:16.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_INVALID_REQ 2014-09-15 01:51:33.000000000 -0700 @@ -11,16 +11,16 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R

    ปัญหาที่เป็นไปได้อาจจะเป็น:

    @@ -30,8 +30,8 @@
  • ไม่ได้ระบุชื่อตัวแแปร (identifier) ใน HTTP (HTTP/1.0)

  • คำสั่งหรือคำร้อง (request) ที่ส่ง มีขนาดใหญ่เกินไป

  • ไม่ได้ระบุ Content-Length ในการสั่ง POST หรือ PUT

  • -
  • -
  • +
  • Illegal character in hostname; underscores are not allowed.

  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • ผู้ดูแลระบบแคชของคุณคือ %w

    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_INVALID_RESP squid-3.4.8/errors/th/ERR_INVALID_RESP --- squid-3.4.7/errors/th/ERR_INVALID_RESP 2014-08-27 07:58:17.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_INVALID_RESP 2014-09-15 01:51:34.000000000 -0700 @@ -11,21 +11,21 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R
    -

    +

    The HTTP Response message received from the contacted server could not be understood or was otherwise malformed. Please contact the site operator.

    -

    +

    Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_INVALID_URL squid-3.4.8/errors/th/ERR_INVALID_URL --- squid-3.4.7/errors/th/ERR_INVALID_URL 2014-08-27 07:58:18.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_INVALID_URL 2014-09-15 01:51:35.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -29,8 +29,8 @@
    • ไม่ได้ระบุโปรโตคอล หรือ โปรโตคอลที่เรียกใช้ไม่ถูกต้อง (รูปแบบที่ถูกต้อง ควรจะเป็นในลักษณะ http:// เป็นต้น)

    • ไม่ได้ระบุชื่อเครื่อง

    • -
    • -
    • +
    • Illegal double-escape in the URL-Path

    • +
    • Illegal character in hostname; underscores are not allowed.

    ผู้ดูแลระบบแคชของคุณคือ %w

    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_LIFETIME_EXP squid-3.4.8/errors/th/ERR_LIFETIME_EXP --- squid-3.4.7/errors/th/ERR_LIFETIME_EXP 2014-08-27 07:58:19.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_LIFETIME_EXP 2014-09-15 01:51:36.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -20,10 +20,10 @@

    พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

    -

    +

    Connection Lifetime Expired

    -

    +

    Squid has terminated the request because it has exceeded the maximum connection lifetime.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_NO_RELAY squid-3.4.8/errors/th/ERR_NO_RELAY --- squid-3.4.7/errors/th/ERR_NO_RELAY 2014-08-27 07:58:20.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_NO_RELAY 2014-09-15 01:51:37.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -20,10 +20,10 @@

    พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

    -

    +

    No Wais Relay

    -

    +

    There is no WAIS Relay host defined for this Cache! Yell at the administrator.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/th/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/th/ERR_ONLY_IF_CACHED_MISS 2014-08-27 07:58:21.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:51:37.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -20,10 +20,10 @@

    พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

    -

    +

    Valid document was not found in the cache and only-if-cached directive was specified.

    -

    +

    You have issued a request with a only-if-cached cache control directive. The document was not found in the cache, or it required revalidation prohibited by the only-if-cached directive.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_PRECONDITION_FAILED squid-3.4.8/errors/th/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/th/ERR_PRECONDITION_FAILED 2014-08-27 07:58:22.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_PRECONDITION_FAILED 2014-09-15 01:51:38.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -20,12 +20,12 @@

    พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_READ_ERROR squid-3.4.8/errors/th/ERR_READ_ERROR --- squid-3.4.7/errors/th/ERR_READ_ERROR 2014-08-27 07:58:24.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_READ_ERROR 2014-09-15 01:51:39.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_READ_TIMEOUT squid-3.4.8/errors/th/ERR_READ_TIMEOUT --- squid-3.4.7/errors/th/ERR_READ_TIMEOUT 2014-08-27 07:58:25.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_READ_TIMEOUT 2014-09-15 01:51:40.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/th/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/th/ERR_SECURE_CONNECT_FAIL 2014-08-27 07:58:26.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:51:41.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -31,7 +31,7 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -39,7 +39,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_SHUTTING_DOWN squid-3.4.8/errors/th/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/th/ERR_SHUTTING_DOWN 2014-08-27 07:58:27.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_SHUTTING_DOWN 2014-09-15 01:51:42.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -27,7 +27,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_SOCKET_FAILURE squid-3.4.8/errors/th/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/th/ERR_SOCKET_FAILURE 2014-08-27 07:58:28.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_SOCKET_FAILURE 2014-09-15 01:51:43.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -25,7 +25,7 @@

    ระบบส่งค่าคืนดังนี้: %E

    -

    +

    Squid is unable to create a TCP socket, presumably due to excessive load. Please retry your request.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_TOO_BIG squid-3.4.8/errors/th/ERR_TOO_BIG --- squid-3.4.7/errors/th/ERR_TOO_BIG 2014-08-27 07:58:29.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_TOO_BIG 2014-09-15 01:51:44.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -25,7 +25,7 @@

    ถ้าคุณกำลังสั่ง POST หรือ PUT, ข้อมูลที่คุณกำลังส่งขึ้นไปนั้น มีขนาดใหญ่เกินไป

    ถ้าคุณกำลังสั่ง GET, ข้อมูลที่คุณกำลังส่งถ่ายเข้ามา (ดาวน์โหลด) นั้น มีขนาดใหญ่เกินไป

    -

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/th/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/th/ERR_UNSUP_HTTPVERSION 2014-08-27 07:58:29.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_UNSUP_HTTPVERSION 2014-09-15 01:51:45.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่รองรับ HTTP รุ่นนี้


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_UNSUP_REQ squid-3.4.8/errors/th/ERR_UNSUP_REQ --- squid-3.4.7/errors/th/ERR_UNSUP_REQ 2014-08-27 07:58:30.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_UNSUP_REQ 2014-09-15 01:51:46.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -23,7 +23,7 @@

    ไม่รองรับโปรโตคอลและวิธีการหรือคำสั่งที่เรียกมา (request method)

    -

    +

    Squid does not support all request methods for all access protocols. For example, you can not POST a Gopher request.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_URN_RESOLVE squid-3.4.8/errors/th/ERR_URN_RESOLVE --- squid-3.4.7/errors/th/ERR_URN_RESOLVE 2014-08-27 07:58:31.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_URN_RESOLVE 2014-09-15 01:51:47.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL สำหรับ URN ที่ได้รับการร้องขอ


    @@ -20,7 +20,7 @@

    พบความผิดพลาดดังต่อไปนี้ระหว่างที่พยายามเรียกดู URN: %U

    -

    +

    Cannot Resolve URN

    เฮ้, อย่าคาดหวังจาก URN บน %T มากเกินไปนัก :)

    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_WRITE_ERROR squid-3.4.8/errors/th/ERR_WRITE_ERROR --- squid-3.4.7/errors/th/ERR_WRITE_ERROR 2014-08-27 07:58:32.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_WRITE_ERROR 2014-09-15 01:51:48.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/th/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/th/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/th/ERR_ZERO_SIZE_OBJECT 2014-08-27 07:58:33.000000000 -0700 +++ squid-3.4.8/errors/th/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:51:49.000000000 -0700 @@ -11,7 +11,7 @@ -->
    -

    +

    ERROR

    ไม่สามารถเรียกดู URL ที่ได้รับการร้องขอ


    @@ -23,7 +23,7 @@

    สิ่งที่ตอบกลับมา ว่างเปล่า

    -

    +

    Squid did not receive any data for this request.

    ผู้ดูแลระบบแคชของคุณคือ %w


    @@ -31,7 +31,7 @@
    diff -u -r -N squid-3.4.7/errors/tr/ERR_ACL_TIME_QUOTA_EXCEEDED squid-3.4.8/errors/tr/ERR_ACL_TIME_QUOTA_EXCEEDED --- squid-3.4.7/errors/tr/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-08-27 07:58:35.000000000 -0700 +++ squid-3.4.8/errors/tr/ERR_ACL_TIME_QUOTA_EXCEEDED 2014-09-15 01:51:51.000000000 -0700 @@ -20,10 +20,10 @@

    URL adresine erişilmeye çalışıyorken hata meydana geldi: %U

    -

    +

    Time Quota Exceeded.

    -

    +

    This proxy limits your time online with a quota. Your time budget is now empty but will be refilled when the configured time period starts again.

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    Önbellk yöneticiniz %w.

    diff -u -r -N squid-3.4.7/errors/tr/ERR_AGENT_CONFIGURE squid-3.4.8/errors/tr/ERR_AGENT_CONFIGURE --- squid-3.4.7/errors/tr/ERR_AGENT_CONFIGURE 2014-08-27 07:58:36.000000000 -0700 +++ squid-3.4.8/errors/tr/ERR_AGENT_CONFIGURE 2014-09-15 01:51:52.000000000 -0700 @@ -1,7 +1,7 @@ - +Web Browser Configuration
    -

    +

    Directory: %U/


    -

    +

    Directory Content:

    -
    
    +
    %z
    -
    Parent Directory (Root Directory)
    +
    - + %g @@ -35,7 +35,7 @@
    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_DNS_FAIL squid-3.4.8/errors/zh-tw/ERR_DNS_FAIL --- squid-3.4.7/errors/zh-tw/ERR_DNS_FAIL 2014-08-27 08:02:03.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_DNS_FAIL 2014-09-15 01:55:07.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    無法將您輸入的網站主機位置轉譯成正確的 IP 位置 %H

    @@ -25,18 +25,18 @@

    The DNS server returned:

    -
    
    +
    %z

    This means that the cache was not able to resolve the hostname presented in the URL. Check if the address is correct.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_ESI squid-3.4.8/errors/zh-tw/ERR_ESI --- squid-3.4.7/errors/zh-tw/ERR_ESI 2014-08-27 08:02:04.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_ESI 2014-09-15 01:55:08.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ESI Processing failed.

    -

    +

    The ESI processor returned:

    -
    
    +
    %Z
    -

    +

    This means that the surrogate was not able to process the ESI template. Please report this error to the webmaster.

    -

    +

    Your webmaster is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_FORWARDING_DENIED squid-3.4.8/errors/zh-tw/ERR_FORWARDING_DENIED --- squid-3.4.7/errors/zh-tw/ERR_FORWARDING_DENIED 2014-08-27 08:02:05.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_FORWARDING_DENIED 2014-09-15 01:55:08.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    轉送要求被拒

    @@ -25,14 +25,14 @@

    This cache will not forward your request because it is trying to enforce a sibling relationship. Perhaps the client at %i is a cache which has been misconfigured.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_FTP_DISABLED squid-3.4.8/errors/zh-tw/ERR_FTP_DISABLED --- squid-3.4.7/errors/zh-tw/ERR_FTP_DISABLED 2014-08-27 08:02:06.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_FTP_DISABLED 2014-09-15 01:55:09.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    禁止使用檔案傳輸

    @@ -25,14 +25,14 @@

    本快取伺服器並未開放支援檔案傳輸服務。

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_FTP_FAILURE squid-3.4.8/errors/zh-tw/ERR_FTP_FAILURE --- squid-3.4.7/errors/zh-tw/ERR_FTP_FAILURE 2014-08-27 08:02:07.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_FTP_FAILURE 2014-09-15 01:55:10.000000000 -0700 @@ -21,22 +21,22 @@

    Squid 伺服器替您送出下列檔案傳輸命令:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_FTP_FORBIDDEN squid-3.4.8/errors/zh-tw/ERR_FTP_FORBIDDEN --- squid-3.4.7/errors/zh-tw/ERR_FTP_FORBIDDEN 2014-08-27 08:02:08.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_FTP_FORBIDDEN 2014-09-15 01:55:11.000000000 -0700 @@ -17,26 +17,26 @@
    -

    +

    An FTP authentication failure occurred while trying to retrieve the URL: %U

    Squid 伺服器替您送出下列檔案傳輸命令:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_FTP_NOT_FOUND squid-3.4.8/errors/zh-tw/ERR_FTP_NOT_FOUND --- squid-3.4.7/errors/zh-tw/ERR_FTP_NOT_FOUND 2014-08-27 08:02:09.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_FTP_NOT_FOUND 2014-09-15 01:55:12.000000000 -0700 @@ -17,28 +17,28 @@
    -

    +

    The following URL could not be retrieved: %U

    Squid 伺服器替您送出下列檔案傳輸命令:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    This might be caused by an FTP URL with an absolute path (which does not comply with RFC 1738). If this is the cause, then the file can be found at %B.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_FTP_PUT_CREATED squid-3.4.8/errors/zh-tw/ERR_FTP_PUT_CREATED --- squid-3.4.7/errors/zh-tw/ERR_FTP_PUT_CREATED 2014-08-27 08:02:10.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_FTP_PUT_CREATED 2014-09-15 01:55:13.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_FTP_PUT_ERROR squid-3.4.8/errors/zh-tw/ERR_FTP_PUT_ERROR --- squid-3.4.7/errors/zh-tw/ERR_FTP_PUT_ERROR 2014-08-27 08:02:11.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_FTP_PUT_ERROR 2014-09-15 01:55:14.000000000 -0700 @@ -21,23 +21,23 @@

    Squid 伺服器替您送出下列檔案傳輸命令:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    +
    %F
    -

    +

    This means that the FTP server may not have permission or space to store the file. Check the path, permissions, diskspace and try again.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_FTP_PUT_MODIFIED squid-3.4.8/errors/zh-tw/ERR_FTP_PUT_MODIFIED --- squid-3.4.7/errors/zh-tw/ERR_FTP_PUT_MODIFIED 2014-08-27 08:02:12.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_FTP_PUT_MODIFIED 2014-09-15 01:55:15.000000000 -0700 @@ -20,7 +20,7 @@
    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_FTP_UNAVAILABLE squid-3.4.8/errors/zh-tw/ERR_FTP_UNAVAILABLE --- squid-3.4.7/errors/zh-tw/ERR_FTP_UNAVAILABLE 2014-08-27 08:02:12.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_FTP_UNAVAILABLE 2014-09-15 01:55:16.000000000 -0700 @@ -17,27 +17,27 @@
    -

    +

    The FTP server was too busy to retrieve the URL: %U

    Squid 伺服器替您送出下列檔案傳輸命令:

    -
    
    +
    %f
    -

    +

    The server responded with:

    -
    
    -
    
    +
    %F
    +
    %g
    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_GATEWAY_FAILURE squid-3.4.8/errors/zh-tw/ERR_GATEWAY_FAILURE --- squid-3.4.7/errors/zh-tw/ERR_GATEWAY_FAILURE 2014-08-27 08:02:13.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_GATEWAY_FAILURE 2014-09-15 01:55:16.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Gateway Proxy Failure

    -

    +

    A non-recoverable internal failure or configuration problem prevents this request from being completed.

    -

    +

    This may be due to limits established by the Internet Service Provider who operates this cache. Please contact them directly for more information.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_ICAP_FAILURE squid-3.4.8/errors/zh-tw/ERR_ICAP_FAILURE --- squid-3.4.7/errors/zh-tw/ERR_ICAP_FAILURE 2014-08-27 08:02:14.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_ICAP_FAILURE 2014-09-15 01:55:17.000000000 -0700 @@ -17,20 +17,20 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    ICAP protocol error.

    系統回應了下列錯誤訊息:%E

    -

    +

    This means that some aspect of the ICAP communication failed.

    Some possible problems are:


    @@ -38,7 +38,7 @@
    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_INVALID_REQ squid-3.4.8/errors/zh-tw/ERR_INVALID_REQ --- squid-3.4.7/errors/zh-tw/ERR_INVALID_REQ 2014-08-27 08:02:15.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_INVALID_REQ 2014-09-15 01:55:18.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    Invalid Request error was encountered while trying to process the request:

    -
    
    +
    %R

    Some possible problems are:

    @@ -31,10 +31,10 @@
  • 要求命令過長

  • Content-Length missing for POST or PUT requests.

  • 欲連結的主機名稱包含不合法的字元;底線這個字元是不被允許存在的。

  • -
  • +
  • HTTP/1.1 Expect: feature is being asked from an HTTP/1.0 software.

  • -

    +

    Your cache administrator is %w.


    @@ -46,7 +46,7 @@
    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_INVALID_RESP squid-3.4.8/errors/zh-tw/ERR_INVALID_RESP --- squid-3.4.7/errors/zh-tw/ERR_INVALID_RESP 2014-08-27 08:02:16.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_INVALID_RESP 2014-09-15 01:55:19.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    Invalid Response error was encountered while trying to process the request:

    -
    
    +
    %R
    -

    +

    The HTTP Response message received from the contacted server could not be understood or was otherwise malformed. Please contact the site operator.

    -

    +

    Your cache administrator may be able to provide you with more details about the exact nature of the problem if needed.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_INVALID_URL squid-3.4.8/errors/zh-tw/ERR_INVALID_URL --- squid-3.4.7/errors/zh-tw/ERR_INVALID_URL 2014-08-27 08:02:17.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_INVALID_URL 2014-09-15 01:55:20.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    不正確的位置

    @@ -33,13 +33,13 @@
  • 欲連結的主機名稱包含不合法的字元;底線這個字元是不被允許存在的。

  • -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_LIFETIME_EXP squid-3.4.8/errors/zh-tw/ERR_LIFETIME_EXP --- squid-3.4.7/errors/zh-tw/ERR_LIFETIME_EXP 2014-08-27 08:02:18.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_LIFETIME_EXP 2014-09-15 01:55:21.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    超過連線等待時限

    @@ -25,13 +25,13 @@

    快取伺服器已終止您的連線要求,因為已經超過連線等待時限。

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_NO_RELAY squid-3.4.8/errors/zh-tw/ERR_NO_RELAY --- squid-3.4.7/errors/zh-tw/ERR_NO_RELAY 2014-08-27 08:02:19.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_NO_RELAY 2014-09-15 01:55:22.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    不提供 Wais(廣域資訊伺服器)轉接

    @@ -25,13 +25,13 @@

    There is no WAIS Relay host defined for this Cache! Yell at the administrator.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_ONLY_IF_CACHED_MISS squid-3.4.8/errors/zh-tw/ERR_ONLY_IF_CACHED_MISS --- squid-3.4.7/errors/zh-tw/ERR_ONLY_IF_CACHED_MISS 2014-08-27 08:02:20.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_ONLY_IF_CACHED_MISS 2014-09-15 01:55:23.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    您要求的文件並未存在於本快取伺服器上,而且您設定了 only-if-cached 指令。

    @@ -25,13 +25,13 @@

    您送出了一個包含 only-if-cached 快取控制指令的連結要求。而文件並未存在快取伺服器中,或者 這個連線要求被 only-if-cached 指令認定是禁用的。

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_PRECONDITION_FAILED squid-3.4.8/errors/zh-tw/ERR_PRECONDITION_FAILED --- squid-3.4.7/errors/zh-tw/ERR_PRECONDITION_FAILED 2014-08-27 08:02:21.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_PRECONDITION_FAILED 2014-09-15 01:55:24.000000000 -0700 @@ -17,15 +17,15 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Precondition Failed.

    -

    +

    This means:

    -

    +

    At least one precondition specified by the HTTP client in the request header has failed.


    @@ -33,7 +33,7 @@
    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_READ_ERROR squid-3.4.8/errors/zh-tw/ERR_READ_ERROR --- squid-3.4.7/errors/zh-tw/ERR_READ_ERROR 2014-08-27 08:02:22.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_READ_ERROR 2014-09-15 01:55:25.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    讀取錯誤

    @@ -27,13 +27,13 @@

    An error condition occurred while reading data from the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_READ_TIMEOUT squid-3.4.8/errors/zh-tw/ERR_READ_TIMEOUT --- squid-3.4.7/errors/zh-tw/ERR_READ_TIMEOUT 2014-08-27 08:02:23.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_READ_TIMEOUT 2014-09-15 01:55:25.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    超過讀取時限

    @@ -27,13 +27,13 @@

    A Timeout occurred while waiting to read data from the network. The network or server may be down or congested. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_SECURE_CONNECT_FAIL squid-3.4.8/errors/zh-tw/ERR_SECURE_CONNECT_FAIL --- squid-3.4.7/errors/zh-tw/ERR_SECURE_CONNECT_FAIL 2014-08-27 08:02:24.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_SECURE_CONNECT_FAIL 2014-09-15 01:55:26.000000000 -0700 @@ -17,10 +17,10 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Failed to establish a secure connection to %I

    @@ -31,15 +31,15 @@
    -

    +

    This proxy and the remote host failed to negotiate a mutually acceptable security settings for handling your request. It is possible that the remote host does not support secure connections, or the proxy is not satisfied with the host security credentials.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_SHUTTING_DOWN squid-3.4.8/errors/zh-tw/ERR_SHUTTING_DOWN --- squid-3.4.7/errors/zh-tw/ERR_SHUTTING_DOWN 2014-08-27 08:02:25.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_SHUTTING_DOWN 2014-09-15 01:55:27.000000000 -0700 @@ -17,17 +17,17 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    This cache is in the process of shutting down and can not service your request at this time. Please retry your request again soon.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_SOCKET_FAILURE squid-3.4.8/errors/zh-tw/ERR_SOCKET_FAILURE --- squid-3.4.7/errors/zh-tw/ERR_SOCKET_FAILURE 2014-08-27 08:02:26.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_SOCKET_FAILURE 2014-09-15 01:55:28.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    Socket 建立失敗

    @@ -27,13 +27,13 @@

    Squid (網路快取程式)無法建立 TCP socket,可能是因為過重的負荷導致這個問題,請重新嘗試一遍您的連結要求。

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_TOO_BIG squid-3.4.8/errors/zh-tw/ERR_TOO_BIG --- squid-3.4.7/errors/zh-tw/ERR_TOO_BIG 2014-08-27 08:02:27.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_TOO_BIG 2014-09-15 01:55:29.000000000 -0700 @@ -17,23 +17,23 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    The request or reply is too large.

    -

    -

    -

    +

    If you are making a POST or PUT request, then the item you are trying to upload is too large.

    +

    If you are making a GET request, then the item you are trying to download is too large.

    +

    These limits have been established by the Internet Service Provider who operates this cache. Please contact them directly if you feel this is an error.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_UNSUP_HTTPVERSION squid-3.4.8/errors/zh-tw/ERR_UNSUP_HTTPVERSION --- squid-3.4.7/errors/zh-tw/ERR_UNSUP_HTTPVERSION 2014-08-27 08:02:27.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_UNSUP_HTTPVERSION 2014-09-15 01:55:30.000000000 -0700 @@ -12,26 +12,26 @@

    錯誤

    -

    +

    Unsupported HTTP version


    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    -

    +

    Unsupported HTTP version

    -

    +

    This Squid does not accept the HTTP version you are attempting to use.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_UNSUP_REQ squid-3.4.8/errors/zh-tw/ERR_UNSUP_REQ --- squid-3.4.7/errors/zh-tw/ERR_UNSUP_REQ 2014-08-27 08:02:28.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_UNSUP_REQ 2014-09-15 01:55:31.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    尚未支援的要求方式或通訊協定

    @@ -25,13 +25,13 @@

    因為 Squid (網路快取程式)並未支援所有的連結要求方式在各式通訊協定上。比如說,你不能要求一個 GOPHER 的 POST 連結要求。

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_URN_RESOLVE squid-3.4.8/errors/zh-tw/ERR_URN_RESOLVE --- squid-3.4.7/errors/zh-tw/ERR_URN_RESOLVE 2014-08-27 08:02:29.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_URN_RESOLVE 2014-09-15 01:55:32.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URN: %U

    無法解譯 URN

    @@ -25,13 +25,13 @@

    抱歉!您不能對 URNs 在 %T 上期待太多 :)

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_WRITE_ERROR squid-3.4.8/errors/zh-tw/ERR_WRITE_ERROR --- squid-3.4.7/errors/zh-tw/ERR_WRITE_ERROR 2014-08-27 08:02:30.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_WRITE_ERROR 2014-09-15 01:55:33.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    寫入錯誤

    @@ -27,13 +27,13 @@

    An error condition occurred while writing to the network. Please retry your request.

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/errors/zh-tw/ERR_ZERO_SIZE_OBJECT squid-3.4.8/errors/zh-tw/ERR_ZERO_SIZE_OBJECT --- squid-3.4.7/errors/zh-tw/ERR_ZERO_SIZE_OBJECT 2014-08-27 08:02:31.000000000 -0700 +++ squid-3.4.8/errors/zh-tw/ERR_ZERO_SIZE_OBJECT 2014-09-15 01:55:33.000000000 -0700 @@ -17,7 +17,7 @@
    -

    +

    The following error was encountered while trying to retrieve the URL: %U

    大小為零的資料回應

    @@ -25,13 +25,13 @@

    您的此次連線要求,Squid(網路快取程式)並未自欲連結的網站伺服器接收到任何資料。

    -

    +

    Your cache administrator is %w.



    diff -u -r -N squid-3.4.7/helpers/basic_auth/DB/basic_db_auth.8 squid-3.4.8/helpers/basic_auth/DB/basic_db_auth.8 --- squid-3.4.7/helpers/basic_auth/DB/basic_db_auth.8 2014-08-27 08:02:40.000000000 -0700 +++ squid-3.4.8/helpers/basic_auth/DB/basic_db_auth.8 2014-09-15 01:55:44.000000000 -0700 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "BASIC_DB_AUTH 1" -.TH BASIC_DB_AUTH 1 "2014-08-27" "perl v5.20.0" "User Contributed Perl Documentation" +.TH BASIC_DB_AUTH 1 "2014-09-15" "perl v5.20.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff -u -r -N squid-3.4.7/helpers/external_acl/SQL_session/ext_sql_session_acl.8 squid-3.4.8/helpers/external_acl/SQL_session/ext_sql_session_acl.8 --- squid-3.4.7/helpers/external_acl/SQL_session/ext_sql_session_acl.8 2014-08-27 08:02:58.000000000 -0700 +++ squid-3.4.8/helpers/external_acl/SQL_session/ext_sql_session_acl.8 2014-09-15 01:56:06.000000000 -0700 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EXT_SQL_SESSION_ACL 1" -.TH EXT_SQL_SESSION_ACL 1 "2014-08-27" "perl v5.20.0" "User Contributed Perl Documentation" +.TH EXT_SQL_SESSION_ACL 1 "2014-09-15" "perl v5.20.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff -u -r -N squid-3.4.7/helpers/external_acl/wbinfo_group/ext_wbinfo_group_acl.8 squid-3.4.8/helpers/external_acl/wbinfo_group/ext_wbinfo_group_acl.8 --- squid-3.4.7/helpers/external_acl/wbinfo_group/ext_wbinfo_group_acl.8 2014-08-27 08:03:01.000000000 -0700 +++ squid-3.4.8/helpers/external_acl/wbinfo_group/ext_wbinfo_group_acl.8 2014-09-15 01:56:08.000000000 -0700 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "EXT_WBINFO_GROUP_ACL.PL.IN 1" -.TH EXT_WBINFO_GROUP_ACL.PL.IN 1 "2014-08-27" "perl v5.20.0" "User Contributed Perl Documentation" +.TH EXT_WBINFO_GROUP_ACL.PL.IN 1 "2014-09-15" "perl v5.20.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff -u -r -N squid-3.4.7/helpers/log_daemon/DB/log_db_daemon.8 squid-3.4.8/helpers/log_daemon/DB/log_db_daemon.8 --- squid-3.4.7/helpers/log_daemon/DB/log_db_daemon.8 2014-08-27 08:03:02.000000000 -0700 +++ squid-3.4.8/helpers/log_daemon/DB/log_db_daemon.8 2014-09-15 01:56:10.000000000 -0700 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "LOG_DB_DAEMON 1" -.TH LOG_DB_DAEMON 1 "2014-08-27" "perl v5.20.0" "User Contributed Perl Documentation" +.TH LOG_DB_DAEMON 1 "2014-09-15" "perl v5.20.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff -u -r -N squid-3.4.7/helpers/storeid_rewrite/file/storeid_file_rewrite.8 squid-3.4.8/helpers/storeid_rewrite/file/storeid_file_rewrite.8 --- squid-3.4.7/helpers/storeid_rewrite/file/storeid_file_rewrite.8 2014-08-27 08:03:13.000000000 -0700 +++ squid-3.4.8/helpers/storeid_rewrite/file/storeid_file_rewrite.8 2014-09-15 01:56:22.000000000 -0700 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "STOREID_FILE_REWRITE 1" -.TH STOREID_FILE_REWRITE 1 "2014-08-27" "perl v5.20.0" "User Contributed Perl Documentation" +.TH STOREID_FILE_REWRITE 1 "2014-09-15" "perl v5.20.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff -u -r -N squid-3.4.7/include/version.h squid-3.4.8/include/version.h --- squid-3.4.7/include/version.h 2014-08-27 07:24:14.000000000 -0700 +++ squid-3.4.8/include/version.h 2014-09-15 01:18:44.000000000 -0700 @@ -7,7 +7,7 @@ */ #ifndef SQUID_RELEASE_TIME -#define SQUID_RELEASE_TIME 1409149346 +#define SQUID_RELEASE_TIME 1410769025 #endif #ifndef APP_SHORTNAME diff -u -r -N squid-3.4.7/libltdl/aclocal.m4 squid-3.4.8/libltdl/aclocal.m4 --- squid-3.4.7/libltdl/aclocal.m4 2014-08-27 07:23:12.000000000 -0700 +++ squid-3.4.8/libltdl/aclocal.m4 2014-09-15 01:17:44.000000000 -0700 @@ -573,7 +573,8 @@ END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi -fi]) +fi +]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further diff -u -r -N squid-3.4.7/libltdl/config/ltmain.sh squid-3.4.8/libltdl/config/ltmain.sh --- squid-3.4.7/libltdl/config/ltmain.sh 2014-08-27 07:23:08.000000000 -0700 +++ squid-3.4.8/libltdl/config/ltmain.sh 2014-09-15 01:17:41.000000000 -0700 @@ -70,7 +70,7 @@ # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) -# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.7 +# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1.10 # automake: $automake_version # autoconf: $autoconf_version # @@ -80,7 +80,7 @@ PROGRAM=libtool PACKAGE=libtool -VERSION="2.4.2 Debian-2.4.2-1.7" +VERSION="2.4.2 Debian-2.4.2-1.10" TIMESTAMP="" package_revision=1.3337 diff -u -r -N squid-3.4.7/libltdl/configure squid-3.4.8/libltdl/configure --- squid-3.4.7/libltdl/configure 2014-08-27 07:23:12.000000000 -0700 +++ squid-3.4.8/libltdl/configure 2014-09-15 01:17:45.000000000 -0700 @@ -2853,6 +2853,7 @@ fi + ## ------------------------------- ## ## Libtool specific configuration. ## ## ------------------------------- ## diff -u -r -N squid-3.4.7/libltdl/Makefile.in squid-3.4.8/libltdl/Makefile.in --- squid-3.4.7/libltdl/Makefile.in 2014-08-27 07:23:17.000000000 -0700 +++ squid-3.4.8/libltdl/Makefile.in 2014-09-15 01:17:49.000000000 -0700 @@ -87,7 +87,7 @@ subdir = . DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/configure $(am__configure_deps) \ - $(srcdir)/config-h.in argz.c lt__dirent.c lt__strl.c \ + $(srcdir)/config-h.in lt__dirent.c argz.c lt__strl.c \ $(top_srcdir)/config/depcomp $(am__include_HEADERS_DIST) \ $(am__ltdlinclude_HEADERS_DIST) README \ config/compile config/config.guess config/config.sub \ diff -u -r -N squid-3.4.7/RELEASENOTES.html squid-3.4.8/RELEASENOTES.html --- squid-3.4.7/RELEASENOTES.html 2014-08-27 08:04:03.000000000 -0700 +++ squid-3.4.8/RELEASENOTES.html 2014-09-15 01:57:18.000000000 -0700 @@ -2,10 +2,10 @@ - Squid 3.4.7 release notes + Squid 3.4.8 release notes -

    Squid 3.4.7 release notes

    +

    Squid 3.4.8 release notes

    Squid Developers


    @@ -57,7 +57,7 @@

    1. Notice

    -

    The Squid Team are pleased to announce the release of Squid-3.4.7 for testing.

    +

    The Squid Team are pleased to announce the release of Squid-3.4.8 for testing.

    This new release is available for download from http://www.squid-cache.org/Versions/v3/3.4/ or the mirrors.

    diff -u -r -N squid-3.4.7/src/cf.data.pre squid-3.4.8/src/cf.data.pre --- squid-3.4.7/src/cf.data.pre 2014-08-27 07:22:40.000000000 -0700 +++ squid-3.4.8/src/cf.data.pre 2014-09-15 01:17:12.000000000 -0700 @@ -176,7 +176,7 @@ NAME: ignore_ims_on_miss TYPE: obsolete DOC_START - Remove this line. The HTTP/1.1 feature is now fully supported by default. + Remove this line. The HTTP/1.1 feature is now configured by 'cache_miss_revalidate'. DOC_END # Options Removed in 3.2 @@ -5021,7 +5021,7 @@ downloads. When the user aborts a request, Squid will check the - quick_abort values to the amount of data transfered until + quick_abort values to the amount of data transferred until then. If the transfer has less than 'quick_abort_min' KB remaining, @@ -7349,17 +7349,25 @@ DEFAULT: on LOC: Config.onoff.cache_miss_revalidate DOC_START - Whether Squid on cache MISS will pass client revalidation requests - to the server or tries to fetch new content for caching. - This is useful while the cache is mostly empty to more quickly - have the cache populated. + RFC 7232 defines a conditional request mechanism to prevent + response objects being unnecessarily transferred over the network. + If that mechanism is used by the client and a cache MISS occurs + it can prevent new cache entries being created. + + This option determines whether Squid on cache MISS will pass the + client revalidation request to the server or tries to fetch new + content for caching. It can be useful while the cache is mostly + empty to more quickly have the cache populated by generating + non-conditional GETs. When set to 'on' (default), Squid will pass all client If-* headers - to the server. + to the server. This permits server responses without a cacheable + payload to be delivered and on MISS no new cache entry is created. When set to 'off' and if the request is cacheable, Squid will remove the clients If-Modified-Since and If-None-Match headers from - the request sent to the server. + the request sent to the server. This requests a 200 status response + from the server to create a new cache entry with. DOC_END NAME: always_direct diff -u -r -N squid-3.4.7/src/client_side_reply.cc squid-3.4.8/src/client_side_reply.cc --- squid-3.4.7/src/client_side_reply.cc 2014-08-27 07:22:40.000000000 -0700 +++ squid-3.4.8/src/client_side_reply.cc 2014-09-15 01:17:12.000000000 -0700 @@ -1401,7 +1401,7 @@ if (!request->flags.accelerated && !request->flags.intercepted) { httpHeaderPutStrf(hdr, HDR_PROXY_SUPPORT, "Session-Based-Authentication"); /* - We send "[Proxy-]Connection: Proxy-Support" header to mark + We send "Connection: Proxy-Support" header to mark Proxy-Support as a hop-by-hop header for intermediaries that do not understand the semantics of this header. The RFC should have included this recommendation. diff -u -r -N squid-3.4.7/src/icmp/Icmp4.cc squid-3.4.8/src/icmp/Icmp4.cc --- squid-3.4.7/src/icmp/Icmp4.cc 2014-08-27 07:22:40.000000000 -0700 +++ squid-3.4.8/src/icmp/Icmp4.cc 2014-09-15 01:17:12.000000000 -0700 @@ -41,26 +41,38 @@ #include "IcmpPinger.h" #include "Debug.h" -const char *icmpPktStr[] = { - "Echo Reply", - "ICMP 1", - "ICMP 2", - "Destination Unreachable", - "Source Quench", - "Redirect", - "ICMP 6", - "ICMP 7", - "Echo", - "ICMP 9", - "ICMP 10", - "Time Exceeded", - "Parameter Problem", - "Timestamp", - "Timestamp Reply", - "Info Request", - "Info Reply", - "Out of Range Type" -}; +static const char * +IcmpPacketType(uint8_t v) +{ + static const char *icmpPktStr[] = { + "Echo Reply", + "ICMP 1", + "ICMP 2", + "Destination Unreachable", + "Source Quench", + "Redirect", + "ICMP 6", + "ICMP 7", + "Echo", + "ICMP 9", + "ICMP 10", + "Time Exceeded", + "Parameter Problem", + "Timestamp", + "Timestamp Reply", + "Info Request", + "Info Reply", + "Out of Range Type" + }; + + if (v > 17) { + static char buf[50]; + snprintf(buf, sizeof(buf), "ICMP %u (invalid)", v); + return buf; + } + + return icmpPktStr[v]; +} Icmp4::Icmp4() : Icmp() { @@ -187,6 +199,12 @@ from->ai_addr, &from->ai_addrlen); + if (n <= 0) { + debugs(42, DBG_CRITICAL, HERE << "Error when calling recvfrom() on ICMP socket."); + Ip::Address::FreeAddrInfo(from); + return; + } + preply.from = *from; #if GETTIMEOFDAY_NO_TZP @@ -243,9 +261,15 @@ preply.psize = n - iphdrlen - (sizeof(icmpEchoData) - MAX_PKT4_SZ); + if (preply.psize < 0) { + debugs(42, DBG_CRITICAL, HERE << "Malformed ICMP packet."); + Ip::Address::FreeAddrInfo(from); + return; + } + control.SendResult(preply, (sizeof(pingerReplyData) - MAX_PKT4_SZ + preply.psize) ); - Log(preply.from, icmp->icmp_type, icmpPktStr[icmp->icmp_type], preply.rtt, preply.hops); + Log(preply.from, icmp->icmp_type, IcmpPacketType(icmp->icmp_type), preply.rtt, preply.hops); Ip::Address::FreeAddrInfo(from); } diff -u -r -N squid-3.4.7/src/icmp/Icmp6.cc squid-3.4.8/src/icmp/Icmp6.cc --- squid-3.4.7/src/icmp/Icmp6.cc 2014-08-27 07:22:40.000000000 -0700 +++ squid-3.4.8/src/icmp/Icmp6.cc 2014-09-15 01:17:12.000000000 -0700 @@ -50,57 +50,61 @@ // Icmp6 OP-Codes // see http://www.iana.org/assignments/icmpv6-parameters -// NP: LowPktStr is for codes 0-127 -static const char *icmp6LowPktStr[] = { - "ICMP 0", // 0 - "Destination Unreachable", // 1 - RFC2463 - "Packet Too Big", // 2 - RFC2463 - "Time Exceeded", // 3 - RFC2463 - "Parameter Problem", // 4 - RFC2463 - "ICMP 5", // 5 - "ICMP 6", // 6 - "ICMP 7", // 7 - "ICMP 8", // 8 - "ICMP 9", // 9 - "ICMP 10" // 10 -}; - -// NP: HighPktStr is for codes 128-255 -static const char *icmp6HighPktStr[] = { - "Echo Request", // 128 - RFC2463 - "Echo Reply", // 129 - RFC2463 - "Multicast Listener Query", // 130 - RFC2710 - "Multicast Listener Report", // 131 - RFC2710 - "Multicast Listener Done", // 132 - RFC2710 - "Router Solicitation", // 133 - RFC4861 - "Router Advertisement", // 134 - RFC4861 - "Neighbor Solicitation", // 135 - RFC4861 - "Neighbor Advertisement", // 136 - RFC4861 - "Redirect Message", // 137 - RFC4861 - "Router Renumbering", // 138 - Crawford - "ICMP Node Information Query", // 139 - RFC4620 - "ICMP Node Information Response", // 140 - RFC4620 - "Inverse Neighbor Discovery Solicitation", // 141 - RFC3122 - "Inverse Neighbor Discovery Advertisement", // 142 - RFC3122 - "Version 2 Multicast Listener Report", // 143 - RFC3810 - "Home Agent Address Discovery Request", // 144 - RFC3775 - "Home Agent Address Discovery Reply", // 145 - RFC3775 - "Mobile Prefix Solicitation", // 146 - RFC3775 - "Mobile Prefix Advertisement", // 147 - RFC3775 - "Certification Path Solicitation", // 148 - RFC3971 - "Certification Path Advertisement", // 149 - RFC3971 - "ICMP Experimental (150)", // 150 - RFC4065 - "Multicast Router Advertisement", // 151 - RFC4286 - "Multicast Router Solicitation", // 152 - RFC4286 - "Multicast Router Termination", // 153 - [RFC4286] - "ICMP 154", - "ICMP 155", - "ICMP 156", - "ICMP 157", - "ICMP 158", - "ICMP 159", - "ICMP 160" -}; +static const char * +IcmpPacketType(uint8_t v) +{ + // NP: LowPktStr is for codes 0-127 + static const char *icmp6LowPktStr[] = { + "ICMPv6 0", // 0 + "Destination Unreachable", // 1 - RFC2463 + "Packet Too Big", // 2 - RFC2463 + "Time Exceeded", // 3 - RFC2463 + "Parameter Problem", // 4 - RFC2463 + }; + + // low codes 1-4 registered + if (0 < v && v < 5) + return icmp6LowPktStr[(int)(v&0x7f)]; + + // NP: HighPktStr is for codes 128-255 + static const char *icmp6HighPktStr[] = { + "Echo Request", // 128 - RFC2463 + "Echo Reply", // 129 - RFC2463 + "Multicast Listener Query", // 130 - RFC2710 + "Multicast Listener Report", // 131 - RFC2710 + "Multicast Listener Done", // 132 - RFC2710 + "Router Solicitation", // 133 - RFC4861 + "Router Advertisement", // 134 - RFC4861 + "Neighbor Solicitation", // 135 - RFC4861 + "Neighbor Advertisement", // 136 - RFC4861 + "Redirect Message", // 137 - RFC4861 + "Router Renumbering", // 138 - Crawford + "ICMP Node Information Query", // 139 - RFC4620 + "ICMP Node Information Response", // 140 - RFC4620 + "Inverse Neighbor Discovery Solicitation", // 141 - RFC3122 + "Inverse Neighbor Discovery Advertisement", // 142 - RFC3122 + "Version 2 Multicast Listener Report", // 143 - RFC3810 + "Home Agent Address Discovery Request", // 144 - RFC3775 + "Home Agent Address Discovery Reply", // 145 - RFC3775 + "Mobile Prefix Solicitation", // 146 - RFC3775 + "Mobile Prefix Advertisement", // 147 - RFC3775 + "Certification Path Solicitation", // 148 - RFC3971 + "Certification Path Advertisement", // 149 - RFC3971 + "ICMP Experimental (150)", // 150 - RFC4065 + "Multicast Router Advertisement", // 151 - RFC4286 + "Multicast Router Solicitation", // 152 - RFC4286 + "Multicast Router Termination", // 153 - [RFC4286] + }; + + // high codes 127-153 registered + if (127 < v && v < 154) + return icmp6HighPktStr[(int)(v&0x7f)]; + + // give all others a generic display + static char buf[50]; + snprintf(buf, sizeof(buf), "ICMPv6 %u", v); + return buf; +} Icmp6::Icmp6() : Icmp() { @@ -236,6 +240,12 @@ from->ai_addr, &from->ai_addrlen); + if (n <= 0) { + debugs(42, DBG_CRITICAL, HERE << "Error when calling recvfrom() on ICMPv6 socket."); + Ip::Address::FreeAddrInfo(from); + return; + } + preply.from = *from; #if GETTIMEOFDAY_NO_TZP @@ -291,8 +301,7 @@ default: debugs(42, 8, HERE << preply.from << " said: " << icmp6header->icmp6_type << "/" << (int)icmp6header->icmp6_code << " " << - ( icmp6header->icmp6_type&0x80 ? icmp6HighPktStr[(int)(icmp6header->icmp6_type&0x7f)] : icmp6LowPktStr[(int)(icmp6header->icmp6_type&0x7f)] ) - ); + IcmpPacketType(icmp6header->icmp6_type)); } Ip::Address::FreeAddrInfo(from); return; @@ -331,7 +340,7 @@ Log(preply.from, icmp6header->icmp6_type, - ( icmp6header->icmp6_type&0x80 ? icmp6HighPktStr[(int)(icmp6header->icmp6_type&0x7f)] : icmp6LowPktStr[(int)(icmp6header->icmp6_type&0x7f)] ), + IcmpPacketType(icmp6header->icmp6_type), preply.rtt, preply.hops); diff -u -r -N squid-3.4.7/src/snmp_core.cc squid-3.4.8/src/snmp_core.cc --- squid-3.4.7/src/snmp_core.cc 2014-08-27 07:22:40.000000000 -0700 +++ squid-3.4.8/src/snmp_core.cc 2014-09-15 01:17:12.000000000 -0700 @@ -362,7 +362,7 @@ void snmpHandleUdp(int sock, void *not_used) { - LOCAL_ARRAY(char, buf, SNMP_REQUEST_SIZE); + static char buf[SNMP_REQUEST_SIZE]; Ip::Address from; SnmpRequest *snmp_rq; int len; @@ -371,16 +371,11 @@ Comm::SetSelect(sock, COMM_SELECT_READ, snmpHandleUdp, NULL, 0); - memset(buf, '\0', SNMP_REQUEST_SIZE); + memset(buf, '\0', sizeof(buf)); - len = comm_udp_recvfrom(sock, - buf, - SNMP_REQUEST_SIZE, - 0, - from); + len = comm_udp_recvfrom(sock, buf, sizeof(buf)-1, 0, from); if (len > 0) { - buf[len] = '\0'; debugs(49, 3, "snmpHandleUdp: FD " << sock << ": received " << len << " bytes from " << from << "."); snmp_rq = (SnmpRequest *)xcalloc(1, sizeof(SnmpRequest));
    Parent Directory (Root Directory)